From 20abb2c2dfd15eb339d9730589cf65fada4299cb Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 21 Apr 2017 13:01:10 +0100 Subject: [PATCH 001/147] Add Forward Message button to m.room.message events Conform this file to eslint Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .../views/context_menus/MessageContextMenu.js | 64 ++++++++++++------- 1 file changed, 41 insertions(+), 23 deletions(-) diff --git a/src/components/views/context_menus/MessageContextMenu.js b/src/components/views/context_menus/MessageContextMenu.js index db416b8a..4a6c9788 100644 --- a/src/components/views/context_menus/MessageContextMenu.js +++ b/src/components/views/context_menus/MessageContextMenu.js @@ -16,13 +16,13 @@ limitations under the License. 'use strict'; -var React = require('react'); +const React = require('react'); -var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg'); -var dis = require('matrix-react-sdk/lib/dispatcher'); -var sdk = require('matrix-react-sdk'); -var Modal = require('matrix-react-sdk/lib/Modal'); -var Resend = require("matrix-react-sdk/lib/Resend"); +const MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg'); +const dis = require('matrix-react-sdk/lib/dispatcher'); +const sdk = require('matrix-react-sdk'); +const Modal = require('matrix-react-sdk/lib/Modal'); +const Resend = require("matrix-react-sdk/lib/Resend"); import * as UserSettingsStore from 'matrix-react-sdk/lib/UserSettingsStore'; module.exports = React.createClass({ @@ -45,7 +45,7 @@ module.exports = React.createClass({ }, onViewSourceClick: function() { - var ViewSource = sdk.getComponent('structures.ViewSource'); + const ViewSource = sdk.getComponent('structures.ViewSource'); Modal.createDialog(ViewSource, { content: this.props.mxEvent.event, }, 'mx_Dialog_viewsource'); @@ -70,12 +70,12 @@ module.exports = React.createClass({ MatrixClientPeg.get().redactEvent( this.props.mxEvent.getRoomId(), this.props.mxEvent.getId() ).catch(function(e) { - var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); + const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); // display error message stating you couldn't delete this. - var code = e.errcode || e.statusCode; + const code = e.errcode || e.statusCode; Modal.createDialog(ErrorDialog, { title: "Error", - description: "You cannot delete this message. (" + code + ")" + description: "You cannot delete this message. (" + code + ")", }); }).done(); }, @@ -88,6 +88,14 @@ module.exports = React.createClass({ if (this.props.onFinished) this.props.onFinished(); }, + onForwardClick: function() { + dis.dispatch({ + action: 'forward_message', + content: this.props.mxEvent.getContent(), + }); + this.closeMenu(); + }, + closeMenu: function() { if (this.props.onFinished) this.props.onFinished(); }, @@ -99,7 +107,7 @@ module.exports = React.createClass({ if (this.props.onFinished) this.props.onFinished(); }, - onQuoteClick: function () { + onQuoteClick: function() { console.log(this.props.mxEvent); dis.dispatch({ action: 'quote', @@ -108,15 +116,16 @@ module.exports = React.createClass({ }, render: function() { - var eventStatus = this.props.mxEvent.status; - var resendButton; - var viewSourceButton; - var viewClearSourceButton; - var redactButton; - var cancelButton; - var permalinkButton; - var unhidePreviewButton; - var externalURLButton; + const eventStatus = this.props.mxEvent.status; + let resendButton; + let redactButton; + let cancelButton; + let forwardButton; + let viewSourceButton; + let viewClearSourceButton; + let unhidePreviewButton; + let permalinkButton; + let externalURLButton; if (eventStatus === 'not_sent') { resendButton = ( @@ -142,6 +151,14 @@ module.exports = React.createClass({ ); } + if (this.props.mxEvent.getType() === 'm.room.message') { + forwardButton = ( + <div className="mx_MessageContextMenu_field" onClick={this.onForwardClick}> + Forward Message + </div> + ); + } + viewSourceButton = ( <div className="mx_MessageContextMenu_field" onClick={this.onViewSourceClick}> View Source @@ -162,7 +179,7 @@ module.exports = React.createClass({ <div className="mx_MessageContextMenu_field" onClick={this.onUnhidePreviewClick}> Unhide Preview </div> - ) + ); } } @@ -185,7 +202,7 @@ module.exports = React.createClass({ externalURLButton = ( <div className="mx_MessageContextMenu_field"> <a href={ this.props.mxEvent.event.content.external_url } - rel="noopener" target="_blank" onClick={ this.closeMenu }>Source URL</a> + rel="noopener" target="_blank" onClick={ this.closeMenu }>Source URL</a> </div> ); } @@ -196,6 +213,7 @@ module.exports = React.createClass({ {resendButton} {redactButton} {cancelButton} + {forwardButton} {viewSourceButton} {viewClearSourceButton} {unhidePreviewButton} @@ -204,5 +222,5 @@ module.exports = React.createClass({ {externalURLButton} </div> ); - } + }, }); From 77ce58b59d8e382568cf436f5eeaef56d6a495f6 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 21 Apr 2017 12:58:43 +0100 Subject: [PATCH 002/147] add .idea to .gitignore so I don't accidentally push my IDE config Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index c28df64c..c9e9b250 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ npm-debug.log electron/dist electron/pub +/.idea From 92b52a61e71f808a65afc0e4d93aa9a08f5a022b Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 24 Apr 2017 18:33:25 +0100 Subject: [PATCH 003/147] don't show forward option for things we cannot decrypt Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/components/views/context_menus/MessageContextMenu.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/views/context_menus/MessageContextMenu.js b/src/components/views/context_menus/MessageContextMenu.js index 4a6c9788..5de8d18d 100644 --- a/src/components/views/context_menus/MessageContextMenu.js +++ b/src/components/views/context_menus/MessageContextMenu.js @@ -151,7 +151,8 @@ module.exports = React.createClass({ ); } - if (this.props.mxEvent.getType() === 'm.room.message') { + if (this.props.mxEvent.getType() === 'm.room.message' + && this.props.mxEvent.getContent().msgtype !== 'm.bad.encrypted') { forwardButton = ( <div className="mx_MessageContextMenu_field" onClick={this.onForwardClick}> Forward Message From 9124c1475aecbe6dd6713e3ec5e2c80c5528c3c9 Mon Sep 17 00:00:00 2001 From: turt2live <travpc@gmail.com> Date: Mon, 24 Apr 2017 12:48:32 -0600 Subject: [PATCH 004/147] Change redact -> remove to improve clarity Addresses #2814 Non-technical users may not understand what 'redact' means and can more easily understand what 'Remove' does. See discussion on vector-im/riot-web#2814 for more information. Signed-off-by: Travis Ralston <travpc@gmail.com> --- src/components/views/context_menus/MessageContextMenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/context_menus/MessageContextMenu.js b/src/components/views/context_menus/MessageContextMenu.js index db416b8a..5a7356a1 100644 --- a/src/components/views/context_menus/MessageContextMenu.js +++ b/src/components/views/context_menus/MessageContextMenu.js @@ -129,7 +129,7 @@ module.exports = React.createClass({ if (!eventStatus && !this.props.mxEvent.isRedacted()) { // sent and not redacted redactButton = ( <div className="mx_MessageContextMenu_field" onClick={this.onRedactClick}> - Redact + Remove </div> ); } From 0a1ebc2487cf3f85f017b93f21088215136342a2 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 24 Apr 2017 22:43:02 +0100 Subject: [PATCH 005/147] Don't show for anything that doesn't have a msgtype and body otherwise the server will just reject it anyway Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .../views/context_menus/MessageContextMenu.js | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/components/views/context_menus/MessageContextMenu.js b/src/components/views/context_menus/MessageContextMenu.js index 5de8d18d..002ec5bc 100644 --- a/src/components/views/context_menus/MessageContextMenu.js +++ b/src/components/views/context_menus/MessageContextMenu.js @@ -151,13 +151,17 @@ module.exports = React.createClass({ ); } - if (this.props.mxEvent.getType() === 'm.room.message' - && this.props.mxEvent.getContent().msgtype !== 'm.bad.encrypted') { - forwardButton = ( - <div className="mx_MessageContextMenu_field" onClick={this.onForwardClick}> - Forward Message - </div> - ); + if (this.props.mxEvent.getType() === 'm.room.message') { + const content = this.props.mxEvent.getContent(); + if (content.msgtype // truthy check msgtype + && content.msgtype !== 'm.bad.encrypted' + && content.hasOwnProperty('body')) { + forwardButton = ( + <div className="mx_MessageContextMenu_field" onClick={this.onForwardClick}> + Forward Message + </div> + ); + } } viewSourceButton = ( From bbda658b7f7e0dd4b173b2b4ed02484ff9eba170 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Sat, 13 May 2017 12:37:13 +0100 Subject: [PATCH 006/147] make Electron tray icon mimic the Favico.js one DRY: moved Favicon stuff into the base platform Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/tray.js | 16 ++++---- src/vector/platform/VectorBasePlatform.js | 47 ++++++++++++++++++++++- src/vector/platform/WebPlatform.js | 44 --------------------- 3 files changed, 55 insertions(+), 52 deletions(-) diff --git a/electron_app/src/tray.js b/electron_app/src/tray.js index 2ccdf40c..ab3a8e1c 100644 --- a/electron_app/src/tray.js +++ b/electron_app/src/tray.js @@ -15,12 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -const path = require('path'); -const electron = require('electron'); - -const app = electron.app; -const Tray = electron.Tray; -const MenuItem = electron.MenuItem; +const {app, Tray, Menu, nativeImage} = require('electron'); let trayIcon = null; @@ -44,7 +39,7 @@ exports.create = function (win, config) { } }; - const contextMenu = electron.Menu.buildFromTemplate([ + const contextMenu = Menu.buildFromTemplate([ { label: 'Show/Hide ' + config.brand, click: toggleWin @@ -64,4 +59,11 @@ exports.create = function (win, config) { trayIcon.setToolTip(config.brand); trayIcon.setContextMenu(contextMenu); trayIcon.on('click', toggleWin); + + win.webContents.on('page-favicon-updated', function(ev, favicons) { + try { + const img = nativeImage.createFromDataURL(favicons[0]); + trayIcon.setImage(img); + } catch (e) {console.error(e);} + }); }; diff --git a/src/vector/platform/VectorBasePlatform.js b/src/vector/platform/VectorBasePlatform.js index 1466b76a..00c9c47c 100644 --- a/src/vector/platform/VectorBasePlatform.js +++ b/src/vector/platform/VectorBasePlatform.js @@ -17,12 +17,57 @@ See the License for the specific language governing permissions and limitations under the License. */ -import BasePlatform from 'matrix-react-sdk/lib/BasePlatform' +import BasePlatform from 'matrix-react-sdk/lib/BasePlatform'; +import Favico from 'favico.js'; /** * Vector-specific extensions to the BasePlatform template */ export default class VectorBasePlatform extends BasePlatform { + constructor() { + super(); + + // The 'animations' are really low framerate and look terrible. + // Also it re-starts the animationb every time you set the badge, + // and we set the state each time, even if the value hasn't changed, + // so we'd need to fix that if enabling the animation. + this.favicon = new Favico({animation: 'none'}); + this._updateFavicon(); + } + + _updateFavicon() { + try { + // This needs to be in in a try block as it will throw + // if there are more than 100 badge count changes in + // its internal queue + let bgColor = "#d00", + notif = this.notificationCount; + + if (this.errorDidOccur) { + notif = notif || "×"; + bgColor = "#f00"; + } + + this.favicon.badge(notif, { + bgColor: bgColor, + }); + } catch (e) { + console.warn(`Failed to set badge count: ${e.message}`); + } + } + + setNotificationCount(count: number) { + if (this.notificationCount === count) return; + super.setNotificationCount(count); + this._updateFavicon(); + } + + setErrorStatus(errorDidOccur: boolean) { + if (this.errorDidOccur === errorDidOccur) return; + super.setErrorStatus(errorDidOccur); + this._updateFavicon(); + } + /** * Check for the availability of an update to the version of the * app that's currently running. diff --git a/src/vector/platform/WebPlatform.js b/src/vector/platform/WebPlatform.js index 72ca19f0..204317ba 100644 --- a/src/vector/platform/WebPlatform.js +++ b/src/vector/platform/WebPlatform.js @@ -18,7 +18,6 @@ limitations under the License. */ import VectorBasePlatform from './VectorBasePlatform'; -import Favico from 'favico.js'; import request from 'browser-request'; import dis from 'matrix-react-sdk/lib/dispatcher.js'; import q from 'q'; @@ -27,49 +26,6 @@ import url from 'url'; import UAParser from 'ua-parser-js'; export default class WebPlatform extends VectorBasePlatform { - constructor() { - super(); - this.runningVersion = null; - // The 'animations' are really low framerate and look terrible. - // Also it re-starts the animationb every time you set the badge, - // and we set the state each time, even if the value hasn't changed, - // so we'd need to fix that if enabling the animation. - this.favicon = new Favico({animation: 'none'}); - this._updateFavicon(); - } - - _updateFavicon() { - try { - // This needs to be in in a try block as it will throw - // if there are more than 100 badge count changes in - // its internal queue - let bgColor = "#d00", - notif = this.notificationCount; - - if (this.errorDidOccur) { - notif = notif || "×"; - bgColor = "#f00"; - } - - this.favicon.badge(notif, { - bgColor: bgColor, - }); - } catch (e) { - console.warn(`Failed to set badge count: ${e.message}`); - } - } - - setNotificationCount(count: number) { - if (this.notificationCount === count) return; - super.setNotificationCount(count); - this._updateFavicon(); - } - - setErrorStatus(errorDidOccur: boolean) { - if (this.errorDidOccur === errorDidOccur) return; - super.setErrorStatus(errorDidOccur); - this._updateFavicon(); - } /** * Returns true if the platform supports displaying From 8927afca036cda1f0cc2b1c0cac23f4510fa351d Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Sat, 13 May 2017 12:37:27 +0100 Subject: [PATCH 007/147] re-add electron node modules to gitignore Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6dd2b988..6072f0ff 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ /key.pem /lib /node_modules -/electron/node_modules +/electron_app/node_modules /packages/ /webapp /.npmrc From 6aae97b81204e20ef463ecbfa903af7658dbd6de Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Sat, 13 May 2017 12:39:55 +0100 Subject: [PATCH 008/147] Update tray tooltip based on document.title Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/tray.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/electron_app/src/tray.js b/electron_app/src/tray.js index ab3a8e1c..b0a657a0 100644 --- a/electron_app/src/tray.js +++ b/electron_app/src/tray.js @@ -66,4 +66,8 @@ exports.create = function (win, config) { trayIcon.setImage(img); } catch (e) {console.error(e);} }); + + win.webContents.on('page-title-updated', function(ev, title) { + trayIcon.setToolTip(title); + }); }; From 808240eef9bfef0a4e685933bd986b8347bead1e Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Sat, 13 May 2017 12:40:17 +0100 Subject: [PATCH 009/147] shouldn't need this try-catch Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/tray.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/electron_app/src/tray.js b/electron_app/src/tray.js index b0a657a0..75104042 100644 --- a/electron_app/src/tray.js +++ b/electron_app/src/tray.js @@ -61,10 +61,7 @@ exports.create = function (win, config) { trayIcon.on('click', toggleWin); win.webContents.on('page-favicon-updated', function(ev, favicons) { - try { - const img = nativeImage.createFromDataURL(favicons[0]); - trayIcon.setImage(img); - } catch (e) {console.error(e);} + trayIcon.setImage(nativeImage.createFromDataURL(favicons[0])); }); win.webContents.on('page-title-updated', function(ev, title) { From aa7728cad39f388f607cea1eb810eec5ea33a4f2 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Sat, 13 May 2017 12:41:13 +0100 Subject: [PATCH 010/147] tidy up tray.js - it made my eyes hurt Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/tray.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/electron_app/src/tray.js b/electron_app/src/tray.js index 75104042..7198356c 100644 --- a/electron_app/src/tray.js +++ b/electron_app/src/tray.js @@ -21,15 +21,15 @@ let trayIcon = null; exports.hasTray = function hasTray() { return (trayIcon !== null); -} +}; -exports.create = function (win, config) { +exports.create = function(win, config) { // no trays on darwin if (process.platform === 'darwin' || trayIcon) { return; } - const toggleWin = function () { + const toggleWin = function() { if (win.isVisible() && !win.isMinimized()) { win.hide(); } else { @@ -42,17 +42,17 @@ exports.create = function (win, config) { const contextMenu = Menu.buildFromTemplate([ { label: 'Show/Hide ' + config.brand, - click: toggleWin + click: toggleWin, }, { - type: 'separator' + type: 'separator', }, { label: 'Quit', - click: function () { + click: function() { app.quit(); - } - } + }, + }, ]); trayIcon = new Tray(config.icon_path); From cef26a5b20601904ae104cf1688f9721edfb83c8 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@googlemail.com> Date: Mon, 15 May 2017 21:14:01 +0100 Subject: [PATCH 011/147] fix #3894 --- scripts/package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/package.sh b/scripts/package.sh index cffb6d28..23d0925b 100755 --- a/scripts/package.sh +++ b/scripts/package.sh @@ -21,7 +21,7 @@ npm run build$dev cp config.sample.json webapp/ mkdir -p dist -cp -r webapp vector-$version +cp -r webapp riot-$version # if $version looks like semver with leading v, strip it before writing to file if [[ ${version} =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then From 3cead032c2fe1a0b0034c2a3b2c06248ebc2c564 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 16 May 2017 16:27:58 +0100 Subject: [PATCH 012/147] Revert "Merge pull request #3804 from vector-im/dbkr/left_panel_for_newbies_2" This reverts commit e6133820a2f70f94e693f6352da71c03ef5a079a, reversing changes made to d1db602b3a3e735430016af2fc837841feafdb43. --- src/components/structures/BottomLeftMenu.js | 127 +++++++++++++++--- src/components/structures/RoomSubList.js | 19 ++- .../structures/RoomSubListHeader.js | 44 +++--- src/skins/vector/css/_components.scss | 1 - .../views/elements/_RoleButton.scss | 33 ----- .../views/rooms/_RoomList.scss | 23 ---- .../css/vector-web/structures/_LeftPanel.scss | 34 +++-- 7 files changed, 170 insertions(+), 111 deletions(-) delete mode 100644 src/skins/vector/css/matrix-react-sdk/views/elements/_RoleButton.scss diff --git a/src/components/structures/BottomLeftMenu.js b/src/components/structures/BottomLeftMenu.js index 63dfac60..f378cac6 100644 --- a/src/components/structures/BottomLeftMenu.js +++ b/src/components/structures/BottomLeftMenu.js @@ -1,6 +1,5 @@ /* Copyright 2015, 2016 OpenMarket Ltd -Copyright 2017 Vector Creations Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15,8 +14,13 @@ See the License for the specific language governing permissions and limitations under the License. */ -import React from 'react'; -import sdk from 'matrix-react-sdk'; +'use strict'; + +var React = require('react'); +var ReactDOM = require('react-dom'); +var sdk = require('matrix-react-sdk') +var dis = require('matrix-react-sdk/lib/dispatcher'); +var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); module.exports = React.createClass({ displayName: 'BottomLeftMenu', @@ -26,28 +30,121 @@ module.exports = React.createClass({ teamToken: React.PropTypes.string, }, + getInitialState: function() { + return({ + directoryHover : false, + roomsHover : false, + homeHover: false, + peopleHover : false, + settingsHover : false, + }); + }, + + // Room events + onDirectoryClick: function() { + dis.dispatch({ action: 'view_room_directory' }); + }, + + onDirectoryMouseEnter: function() { + this.setState({ directoryHover: true }); + }, + + onDirectoryMouseLeave: function() { + this.setState({ directoryHover: false }); + }, + + onRoomsClick: function() { + dis.dispatch({ action: 'view_create_room' }); + }, + + onRoomsMouseEnter: function() { + this.setState({ roomsHover: true }); + }, + + onRoomsMouseLeave: function() { + this.setState({ roomsHover: false }); + }, + + // Home button events + onHomeClick: function() { + dis.dispatch({ action: 'view_home_page' }); + }, + + onHomeMouseEnter: function() { + this.setState({ homeHover: true }); + }, + + onHomeMouseLeave: function() { + this.setState({ homeHover: false }); + }, + + // People events + onPeopleClick: function() { + dis.dispatch({ action: 'view_create_chat' }); + }, + + onPeopleMouseEnter: function() { + this.setState({ peopleHover: true }); + }, + + onPeopleMouseLeave: function() { + this.setState({ peopleHover: false }); + }, + + // Settings events + onSettingsClick: function() { + dis.dispatch({ action: 'view_user_settings' }); + }, + + onSettingsMouseEnter: function() { + this.setState({ settingsHover: true }); + }, + + onSettingsMouseLeave: function() { + this.setState({ settingsHover: false }); + }, + + // Get the label/tooltip to show + getLabel: function(label, show) { + if (show) { + var RoomTooltip = sdk.getComponent("rooms.RoomTooltip"); + return <RoomTooltip className="mx_BottomLeftMenu_tooltip" label={label} />; + } + }, + render: function() { - const HomeButton = sdk.getComponent('elements.HomeButton'); - const StartChatButton = sdk.getComponent('elements.StartChatButton'); - const RoomDirectoryButton = sdk.getComponent('elements.RoomDirectoryButton'); - const CreateRoomButton = sdk.getComponent('elements.CreateRoomButton'); - const SettingsButton = sdk.getComponent('elements.SettingsButton'); + var TintableSvg = sdk.getComponent('elements.TintableSvg'); var homeButton; if (this.props.teamToken) { - homeButton = <HomeButton tooltip={true} />; + homeButton = ( + <AccessibleButton className="mx_BottomLeftMenu_homePage" onClick={ this.onHomeClick } onMouseEnter={ this.onHomeMouseEnter } onMouseLeave={ this.onHomeMouseLeave } > + <TintableSvg src="img/icons-home.svg" width="25" height="25" /> + { this.getLabel("Welcome page", this.state.homeHover) } + </AccessibleButton> + ); } return ( <div className="mx_BottomLeftMenu"> <div className="mx_BottomLeftMenu_options"> { homeButton } - <StartChatButton tooltip={true} /> - <RoomDirectoryButton tooltip={true} /> - <CreateRoomButton tooltip={true} /> - <span className="mx_BottomLeftMenu_settings"> - <SettingsButton tooltip={true} /> - </span> + <AccessibleButton className="mx_BottomLeftMenu_people" onClick={ this.onPeopleClick } onMouseEnter={ this.onPeopleMouseEnter } onMouseLeave={ this.onPeopleMouseLeave } > + <TintableSvg src="img/icons-people.svg" width="25" height="25" /> + { this.getLabel("Start chat", this.state.peopleHover) } + </AccessibleButton> + <AccessibleButton className="mx_BottomLeftMenu_directory" onClick={ this.onDirectoryClick } onMouseEnter={ this.onDirectoryMouseEnter } onMouseLeave={ this.onDirectoryMouseLeave } > + <TintableSvg src="img/icons-directory.svg" width="25" height="25"/> + { this.getLabel("Room directory", this.state.directoryHover) } + </AccessibleButton> + <AccessibleButton className="mx_BottomLeftMenu_createRoom" onClick={ this.onRoomsClick } onMouseEnter={ this.onRoomsMouseEnter } onMouseLeave={ this.onRoomsMouseLeave } > + <TintableSvg src="img/icons-create-room.svg" width="25" height="25" /> + { this.getLabel("Create new room", this.state.roomsHover) } + </AccessibleButton> + <AccessibleButton className="mx_BottomLeftMenu_settings" onClick={ this.onSettingsClick } onMouseEnter={ this.onSettingsMouseEnter } onMouseLeave={ this.onSettingsMouseLeave } > + <TintableSvg src="img/icons-settings.svg" width="25" height="25" /> + { this.getLabel("Settings", this.state.settingsHover) } + </AccessibleButton> </div> </div> ); diff --git a/src/components/structures/RoomSubList.js b/src/components/structures/RoomSubList.js index ab6c4422..c315ae46 100644 --- a/src/components/structures/RoomSubList.js +++ b/src/components/structures/RoomSubList.js @@ -1,5 +1,4 @@ /* -Copyright 2017 Vector Creations Ltd Copyright 2015, 2016 OpenMarket Ltd Licensed under the Apache License, Version 2.0 (the "License"); @@ -84,8 +83,6 @@ var RoomSubList = React.createClass({ incomingCall: React.PropTypes.object, onShowMoreRooms: React.PropTypes.func, searchFilter: React.PropTypes.string, - emptyContent: React.PropTypes.node, // content shown if the list is empty - headerItems: React.PropTypes.node, // content shown in the sublist header }, getInitialState: function() { @@ -472,15 +469,16 @@ var RoomSubList = React.createClass({ render: function() { var connectDropTarget = this.props.connectDropTarget; + var RoomDropTarget = sdk.getComponent('rooms.RoomDropTarget'); var TruncatedList = sdk.getComponent('elements.TruncatedList'); var label = this.props.collapsed ? null : this.props.label; - let content; - if (this.state.sortedList.length == 0) { - content = this.props.emptyContent; - } else { - content = this.makeRoomTiles(); + //console.log("render: " + JSON.stringify(this.state.sortedList)); + + var target; + if (this.state.sortedList.length == 0 && this.props.editable) { + target = <RoomDropTarget label={ 'Drop here to ' + this.props.verb }/>; } var roomCount = this.props.list.length > 0 ? this.props.list.length : ''; @@ -500,7 +498,8 @@ var RoomSubList = React.createClass({ if (!this.state.hidden) { subList = <TruncatedList className={ classes } truncateAt={this.state.truncateAt} createOverflowElement={this._createOverflowTile} > - { content } + { target } + { this.makeRoomTiles() } </TruncatedList>; } else { @@ -522,7 +521,6 @@ var RoomSubList = React.createClass({ roomNotificationCount={ this.roomNotificationCount() } onClick={ this.onClick } onHeaderClick={ this.props.onHeaderClick } - headerItems={this.props.headerItems} /> { subList } </div> @@ -544,7 +542,6 @@ var RoomSubList = React.createClass({ roomNotificationCount={ this.roomNotificationCount() } onClick={ this.onClick } onHeaderClick={ this.props.onHeaderClick } - headerItems={this.props.headerItems} /> : undefined } { (this.props.showSpinner && !this.state.hidden) ? <Loader /> : undefined } diff --git a/src/components/structures/RoomSubListHeader.js b/src/components/structures/RoomSubListHeader.js index 74094ae0..ad9aff5f 100644 --- a/src/components/structures/RoomSubListHeader.js +++ b/src/components/structures/RoomSubListHeader.js @@ -14,11 +14,16 @@ See the License for the specific language governing permissions and limitations under the License. */ -import React from 'react'; -import classNames from 'classnames'; -import sdk from 'matrix-react-sdk'; -import { formatCount } from 'matrix-react-sdk/lib/utils/FormattingUtils'; -import AccessibleButton from 'matrix-react-sdk/lib/components/views/elements/AccessibleButton'; +'use strict'; + +var React = require('react'); +var ReactDOM = require('react-dom'); +var classNames = require('classnames'); +var sdk = require('matrix-react-sdk') +var FormattingUtils = require('matrix-react-sdk/lib/utils/FormattingUtils'); +var RoomNotifs = require('matrix-react-sdk/lib/RoomNotifs'); +var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); +var ConstantTimeDispatcher = require('matrix-react-sdk/lib/ConstantTimeDispatcher'); module.exports = React.createClass({ displayName: 'RoomSubListHeader', @@ -37,7 +42,6 @@ module.exports = React.createClass({ hidden: React.PropTypes.bool, onClick: React.PropTypes.func, onHeaderClick: React.PropTypes.func, - headerItems: React.PropTypes.node, // content shown in the sublist header }, getDefaultProps: function() { @@ -59,34 +63,35 @@ module.exports = React.createClass({ // }, render: function() { - const TintableSvg = sdk.getComponent("elements.TintableSvg"); + var TintableSvg = sdk.getComponent("elements.TintableSvg"); - const subListNotifications = this.props.roomNotificationCount; - const subListNotifCount = subListNotifications[0]; - const subListNotifHighlight = subListNotifications[1]; + var subListNotifications = this.props.roomNotificationCount; + var subListNotifCount = subListNotifications[0]; + var subListNotifHighlight = subListNotifications[1]; - const chevronClasses = classNames({ + var chevronClasses = classNames({ 'mx_RoomSubList_chevron': true, 'mx_RoomSubList_chevronRight': this.props.hidden, 'mx_RoomSubList_chevronDown': !this.props.hidden, }); - const badgeClasses = classNames({ + var badgeClasses = classNames({ 'mx_RoomSubList_badge': true, 'mx_RoomSubList_badgeHighlight': subListNotifHighlight, }); - let badge; + var badge; if (subListNotifCount > 0) { - badge = <div className={badgeClasses}>{ formatCount(subListNotifCount) }</div>; - } else if (subListNotifHighlight) { + badge = <div className={badgeClasses}>{ FormattingUtils.formatCount(subListNotifCount) }</div>; + } + else if (subListNotifHighlight) { badge = <div className={badgeClasses}>!</div>; } // When collapsed, allow a long hover on the header to show user // the full tag name and room count - let title; - const roomCount = this.props.roomCount; + var title; + var roomCount = this.props.roomCount; if (this.props.collapsed) { title = this.props.label; if (roomCount !== '') { @@ -94,9 +99,9 @@ module.exports = React.createClass({ } } - let incomingCall; + var incomingCall; if (this.props.isIncomingCallRoom) { - const IncomingCallBox = sdk.getComponent("voip.IncomingCallBox"); + var IncomingCallBox = sdk.getComponent("voip.IncomingCallBox"); incomingCall = <IncomingCallBox className="mx_RoomSubList_incomingCall" incomingCall={ this.props.incomingCall }/>; } @@ -104,7 +109,6 @@ module.exports = React.createClass({ <div className="mx_RoomSubList_labelContainer" title={ title } ref="header"> <AccessibleButton onClick={ this.props.onClick } className="mx_RoomSubList_label" tabIndex="0"> { this.props.collapsed ? '' : this.props.label } - {this.props.headerItems} <div className="mx_RoomSubList_roomCount">{ roomCount }</div> <div className={chevronClasses}></div> { badge } diff --git a/src/skins/vector/css/_components.scss b/src/skins/vector/css/_components.scss index 5b23bb82..df3c4600 100644 --- a/src/skins/vector/css/_components.scss +++ b/src/skins/vector/css/_components.scss @@ -27,7 +27,6 @@ @import "./matrix-react-sdk/views/elements/_MemberEventListSummary.scss"; @import "./matrix-react-sdk/views/elements/_ProgressBar.scss"; @import "./matrix-react-sdk/views/elements/_RichText.scss"; -@import "./matrix-react-sdk/views/elements/_RoleButton.scss"; @import "./matrix-react-sdk/views/login/_InteractiveAuthEntryComponents.scss"; @import "./matrix-react-sdk/views/login/_ServerConfig.scss"; @import "./matrix-react-sdk/views/messages/_MEmoteBody.scss"; diff --git a/src/skins/vector/css/matrix-react-sdk/views/elements/_RoleButton.scss b/src/skins/vector/css/matrix-react-sdk/views/elements/_RoleButton.scss deleted file mode 100644 index 094e0b9b..00000000 --- a/src/skins/vector/css/matrix-react-sdk/views/elements/_RoleButton.scss +++ /dev/null @@ -1,33 +0,0 @@ -/* -Copyright 2107 Vector Creations Ltd - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -.mx_RoleButton { - margin-left: 4px; - margin-right: 4px; - cursor: pointer; - display: inline-block; -} - -.mx_RoleButton object { - pointer-events: none; -} - -.mx_RoleButton_tooltip { - display: inline-block; - position: relative; - top: -25px; - left: 6px; -} diff --git a/src/skins/vector/css/matrix-react-sdk/views/rooms/_RoomList.scss b/src/skins/vector/css/matrix-react-sdk/views/rooms/_RoomList.scss index 35787ca0..110dcd5b 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/rooms/_RoomList.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/rooms/_RoomList.scss @@ -1,6 +1,5 @@ /* Copyright 2015, 2016 OpenMarket Ltd -Copyright 2107 Vector Creations Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -38,25 +37,3 @@ limitations under the License. .mx_RoomList_scrollbar .gm-scrollbar.-vertical { z-index: 6; } - -.mx_RoomList_emptySubListTip { - font-size: 13px; - margin-left: 18px; - margin-right: 18px; - margin-top: 8px; - margin-bottom: 7px; - padding: 5px; - border: 1px dashed $accent-color; - color: $primary-fg-color; - background-color: $droptarget-bg-color; - border-radius: 4px; -} - -.mx_RoomList_emptySubListTip .mx_RoleButton { - vertical-align: -3px; -} - -.mx_RoomList_headerButtons { - position: absolute; - right: 60px; -} diff --git a/src/skins/vector/css/vector-web/structures/_LeftPanel.scss b/src/skins/vector/css/vector-web/structures/_LeftPanel.scss index f171591c..d3bbce1b 100644 --- a/src/skins/vector/css/vector-web/structures/_LeftPanel.scss +++ b/src/skins/vector/css/vector-web/structures/_LeftPanel.scss @@ -64,25 +64,43 @@ limitations under the License. pointer-events: none; } -.collapsed .mx_RoleButton { +.mx_LeftPanel .mx_BottomLeftMenu_homePage, +.mx_LeftPanel .mx_BottomLeftMenu_directory, +.mx_LeftPanel .mx_BottomLeftMenu_createRoom, +.mx_LeftPanel .mx_BottomLeftMenu_people, +.mx_LeftPanel .mx_BottomLeftMenu_settings { + display: inline-block; + cursor: pointer; +} + +.collapsed .mx_BottomLeftMenu_homePage, +.collapsed .mx_BottomLeftMenu_directory, +.collapsed .mx_BottomLeftMenu_createRoom, +.collapsed .mx_BottomLeftMenu_people, +.collapsed .mx_BottomLeftMenu_settings { margin-right: 0px ! important; padding-top: 3px ! important; padding-bottom: 3px ! important; } -.mx_BottomLeftMenu_options .mx_RoleButton { - margin-left: 0px; +.mx_LeftPanel .mx_BottomLeftMenu_homePage, +.mx_LeftPanel .mx_BottomLeftMenu_directory, +.mx_LeftPanel .mx_BottomLeftMenu_createRoom, +.mx_LeftPanel .mx_BottomLeftMenu_people { margin-right: 10px; } -.mx_BottomLeftMenu_options .mx_BottomLeftMenu_settings { +.mx_LeftPanel .mx_BottomLeftMenu_settings { float: right; } -.mx_BottomLeftMenu_options .mx_BottomLeftMenu_settings .mx_RoleButton { - margin-right: 0px; -} - .mx_LeftPanel.collapsed .mx_BottomLeftMenu_settings { float: none; } + +.mx_LeftPanel .mx_BottomLeftMenu_tooltip { + display: inline-block; + position: relative; + top: -25px; + left: 6px; +} From 03476705b1cccf03070bdc55af5139450dd1c1cc Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 16 May 2017 16:35:06 +0100 Subject: [PATCH 013/147] Revert "better solution to incomingcallbox weirdness" This reverts commit be527874730d959fa980e81c897a658a03952aad. --- src/components/structures/RoomSubListHeader.js | 2 +- .../css/matrix-react-sdk/views/voip/_IncomingCallbox.scss | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/structures/RoomSubListHeader.js b/src/components/structures/RoomSubListHeader.js index ad9aff5f..eb73f721 100644 --- a/src/components/structures/RoomSubListHeader.js +++ b/src/components/structures/RoomSubListHeader.js @@ -112,8 +112,8 @@ module.exports = React.createClass({ <div className="mx_RoomSubList_roomCount">{ roomCount }</div> <div className={chevronClasses}></div> { badge } + { incomingCall } </AccessibleButton> - { incomingCall } </div> ); }, diff --git a/src/skins/vector/css/matrix-react-sdk/views/voip/_IncomingCallbox.scss b/src/skins/vector/css/matrix-react-sdk/views/voip/_IncomingCallbox.scss index 64eac25d..e63814f5 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/voip/_IncomingCallbox.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/voip/_IncomingCallbox.scss @@ -25,6 +25,8 @@ limitations under the License. margin-top: -3px; margin-left: -20px; width: 200px; + font-weight: initial; + text-transform: initial; } .mx_IncomingCallBox_chevron { From 9399b7ddf0cf7b272e527b9086fc6fe68db2e66d Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 16 May 2017 16:35:17 +0100 Subject: [PATCH 014/147] Revert "fix incoming call box" This reverts commit b3431bb75008b068a2a1805803b91d0ff2616571. --- src/components/structures/RoomSubList.js | 1 - src/components/structures/RoomSubListHeader.js | 1 - .../vector/css/matrix-react-sdk/structures/_RoomView.scss | 4 ++-- .../css/matrix-react-sdk/views/voip/_IncomingCallbox.scss | 2 -- 4 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/structures/RoomSubList.js b/src/components/structures/RoomSubList.js index c315ae46..f741a30f 100644 --- a/src/components/structures/RoomSubList.js +++ b/src/components/structures/RoomSubList.js @@ -516,7 +516,6 @@ var RoomSubList = React.createClass({ roomCount={ roomCount } collapsed={ this.props.collapsed } hidden={ this.state.hidden } - incomingCall={ this.props.incomingCall } isIncomingCallRoom={ isIncomingCallRoom } roomNotificationCount={ this.roomNotificationCount() } onClick={ this.onClick } diff --git a/src/components/structures/RoomSubListHeader.js b/src/components/structures/RoomSubListHeader.js index eb73f721..5618b39b 100644 --- a/src/components/structures/RoomSubListHeader.js +++ b/src/components/structures/RoomSubListHeader.js @@ -36,7 +36,6 @@ module.exports = React.createClass({ React.PropTypes.number ]), collapsed: React.PropTypes.bool.isRequired, // is LeftPanel collapsed? - incomingCall: React.PropTypes.object, isIncomingCallRoom: React.PropTypes.bool, roomNotificationCount: React.PropTypes.array, hidden: React.PropTypes.bool, diff --git a/src/skins/vector/css/matrix-react-sdk/structures/_RoomView.scss b/src/skins/vector/css/matrix-react-sdk/structures/_RoomView.scss index e251ecd1..3d5fe029 100644 --- a/src/skins/vector/css/matrix-react-sdk/structures/_RoomView.scss +++ b/src/skins/vector/css/matrix-react-sdk/structures/_RoomView.scss @@ -172,7 +172,7 @@ hr.mx_RoomView_myReadMarker { max-height: 0px; background-color: $primary-bg-color; - z-index: 5; + z-index: 1000; overflow: hidden; -webkit-transition: all .2s ease-out; @@ -260,4 +260,4 @@ hr.mx_RoomView_myReadMarker { .mx_RoomView_ongoingConfCallNotification a { color: $accent-fg-color ! important; -} +} \ No newline at end of file diff --git a/src/skins/vector/css/matrix-react-sdk/views/voip/_IncomingCallbox.scss b/src/skins/vector/css/matrix-react-sdk/views/voip/_IncomingCallbox.scss index e63814f5..64eac25d 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/voip/_IncomingCallbox.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/voip/_IncomingCallbox.scss @@ -25,8 +25,6 @@ limitations under the License. margin-top: -3px; margin-left: -20px; width: 200px; - font-weight: initial; - text-transform: initial; } .mx_IncomingCallBox_chevron { From fdf326c9f0651c9766d55bc5aeddd60d5e0372d1 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 16 May 2017 17:13:39 +0100 Subject: [PATCH 015/147] Revert "Cancel quick-search on Escape, clearing it and returning focus to composer." This reverts commit 52a119244b2ff221c32c082166e77f9913833573. --- src/components/structures/SearchBox.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/components/structures/SearchBox.js b/src/components/structures/SearchBox.js index d0868b69..d79617c0 100644 --- a/src/components/structures/SearchBox.js +++ b/src/components/structures/SearchBox.js @@ -100,10 +100,6 @@ module.exports = React.createClass({ } switch (ev.keyCode) { - case KeyCode.ESCAPE: - this._clearSearch(); - dis.dispatch({action: 'focus_composer'}); - break; case KeyCode.KEY_K: if (ctrlCmdOnly) { if (this.refs.search) { From 844ea390c87eab83c9f287313d32e727c958a6fb Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 16 May 2017 17:13:55 +0100 Subject: [PATCH 016/147] Revert "clear the searchbox after quick-search" This reverts commit ddd12edc064bdd81fffbad941e199eaa065e3ae0. --- src/components/structures/RoomSubList.js | 3 +-- src/components/structures/SearchBox.js | 6 +++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/structures/RoomSubList.js b/src/components/structures/RoomSubList.js index f741a30f..a1291eeb 100644 --- a/src/components/structures/RoomSubList.js +++ b/src/components/structures/RoomSubList.js @@ -165,11 +165,10 @@ var RoomSubList = React.createClass({ } }, - onRoomTileClick(roomId, ev) { + onRoomTileClick(roomId) { dis.dispatch({ action: 'view_room', room_id: roomId, - clear_search: (ev && (ev.keyCode == 13 || ev.keyCode == 32)), }); }, diff --git a/src/components/structures/SearchBox.js b/src/components/structures/SearchBox.js index d79617c0..a3848dcc 100644 --- a/src/components/structures/SearchBox.js +++ b/src/components/structures/SearchBox.js @@ -48,14 +48,18 @@ module.exports = React.createClass({ }, onAction: function(payload) { + // Disabling this as I find it really really annoying, and was used to the + // previous behaviour - see https://github.com/vector-im/riot-web/issues/3348 +/* switch (payload.action) { // Clear up the text field when a room is selected. case 'view_room': - if (payload.clear_search && this.refs.search) { + if (this.refs.search) { this._clearSearch(); } break; } +*/ }, onChange: function() { From 9fc9de3af53e6457a6f83e1305c1f2247ab95421 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 16 May 2017 17:21:49 +0100 Subject: [PATCH 017/147] Revert "Merge pull request #3654 from vector-im/matthew/quick-search" This reverts commit 8f20fcfa6b6828421d1278b169df663e80d2a743, reversing changes made to 751f715e77a73fa704298dd1dbad0035eb7a75e8. --- package.json | 3 +- src/components/structures/LeftPanel.js | 94 +---------- src/components/structures/RoomSubList.js | 147 ++++++++++-------- .../structures/RoomSubListHeader.js | 120 -------------- src/components/structures/SearchBox.js | 31 ---- 5 files changed, 86 insertions(+), 309 deletions(-) delete mode 100644 src/components/structures/RoomSubListHeader.js diff --git a/package.json b/package.json index a1f06b00..644e9309 100644 --- a/package.json +++ b/package.json @@ -61,6 +61,7 @@ "favico.js": "^0.3.10", "filesize": "3.5.6", "flux": "~2.0.3", + "gemini-scrollbar": "matrix-org/gemini-scrollbar#b302279", "gfm.css": "^1.1.1", "highlight.js": "^9.0.0", "linkifyjs": "^2.1.3", @@ -73,7 +74,7 @@ "react-dnd": "^2.1.4", "react-dnd-html5-backend": "^2.1.2", "react-dom": "^15.4.0", - "react-gemini-scrollbar": "matrix-org/react-gemini-scrollbar#39d858c", + "react-gemini-scrollbar": "matrix-org/react-gemini-scrollbar#5e97aef", "sanitize-html": "^1.11.1", "ua-parser-js": "^0.7.10", "url": "^0.11.0" diff --git a/src/components/structures/LeftPanel.js b/src/components/structures/LeftPanel.js index 2d97313a..a9df37a8 100644 --- a/src/components/structures/LeftPanel.js +++ b/src/components/structures/LeftPanel.js @@ -19,11 +19,9 @@ limitations under the License. var React = require('react'); var DragDropContext = require('react-dnd').DragDropContext; var HTML5Backend = require('react-dnd-html5-backend'); -var KeyCode = require('matrix-react-sdk/lib/KeyCode'); var sdk = require('matrix-react-sdk') var dis = require('matrix-react-sdk/lib/dispatcher'); - var VectorConferenceHandler = require('../../VectorConferenceHandler'); var CallHandler = require("matrix-react-sdk/lib/CallHandler"); @@ -42,10 +40,6 @@ var LeftPanel = React.createClass({ }; }, - componentWillMount: function() { - this.focusedElement = null; - }, - componentDidMount: function() { this.dispatcherRef = dis.register(this.onAction); }, @@ -68,91 +62,6 @@ var LeftPanel = React.createClass({ } }, - _onFocus: function(ev) { - this.focusedElement = ev.target; - }, - - _onBlur: function(ev) { - this.focusedElement = null; - }, - - _onKeyDown: function(ev) { - if (!this.focusedElement) return; - let handled = false; - - switch (ev.keyCode) { - case KeyCode.UP: - this._onMoveFocus(true); - handled = true; - break; - case KeyCode.DOWN: - this._onMoveFocus(false); - handled = true; - break; - } - - if (handled) { - ev.stopPropagation(); - ev.preventDefault(); - } - }, - - _onMoveFocus: function(up) { - var element = this.focusedElement; - - // unclear why this isn't needed - // var descending = (up == this.focusDirection) ? this.focusDescending : !this.focusDescending; - // this.focusDirection = up; - - var descending = false; // are we currently descending or ascending through the DOM tree? - var classes; - - do { - var child = up ? element.lastElementChild : element.firstElementChild; - var sibling = up ? element.previousElementSibling : element.nextElementSibling; - - if (descending) { - if (child) { - element = child; - } - else if (sibling) { - element = sibling; - } - else { - descending = false; - element = element.parentElement; - } - } - else { - if (sibling) { - element = sibling; - descending = true; - } - else { - element = element.parentElement; - } - } - - if (element) { - classes = element.classList; - if (classes.contains("mx_LeftPanel")) { // we hit the top - element = up ? element.lastElementChild : element.firstElementChild; - descending = true; - } - } - - } while(element && !( - classes.contains("mx_RoomTile") || - classes.contains("mx_SearchBox_search") || - classes.contains("mx_RoomSubList_ellipsis"))); - - if (element) { - element.focus(); - this.focusedElement = element; - this.focusedDescending = descending; - } - }, - _recheckCallElement: function(selectedRoomId) { // if we aren't viewing a room with an ongoing call, but there is an // active call, show the call element - we need to do this to make @@ -211,8 +120,7 @@ var LeftPanel = React.createClass({ } return ( - <aside className={classes} style={{ opacity: this.props.opacity }} - onKeyDown={ this._onKeyDown } onFocus={ this._onFocus } onBlur={ this._onBlur }> + <aside className={classes} style={{ opacity: this.props.opacity }}> <SearchBox collapsed={ this.props.collapsed } onSearch={ this.onSearch } /> { collapseButton } { callPreview } diff --git a/src/components/structures/RoomSubList.js b/src/components/structures/RoomSubList.js index a1291eeb..6490e456 100644 --- a/src/components/structures/RoomSubList.js +++ b/src/components/structures/RoomSubList.js @@ -27,11 +27,9 @@ var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg'); var RoomNotifs = require('matrix-react-sdk/lib/RoomNotifs'); var FormattingUtils = require('matrix-react-sdk/lib/utils/FormattingUtils'); var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); -var ConstantTimeDispatcher = require('matrix-react-sdk/lib/ConstantTimeDispatcher'); -var RoomSubListHeader = require('./RoomSubListHeader.js'); import Modal from 'matrix-react-sdk/lib/Modal'; -// turn this on for drag & drop console debugging galore +// turn this on for drop & drag console debugging galore var debug = false; const TRUNCATE_AT = 10; @@ -74,12 +72,14 @@ var RoomSubList = React.createClass({ order: React.PropTypes.string.isRequired, + // undefined if no room is selected (eg we are showing settings) + selectedRoom: React.PropTypes.string, + startAsHidden: React.PropTypes.bool, showSpinner: React.PropTypes.bool, // true to show a spinner if 0 elements when expanded collapsed: React.PropTypes.bool.isRequired, // is LeftPanel collapsed? onHeaderClick: React.PropTypes.func, alwaysShowHeader: React.PropTypes.bool, - selectedRoom: React.PropTypes.string, incomingCall: React.PropTypes.object, onShowMoreRooms: React.PropTypes.func, searchFilter: React.PropTypes.string, @@ -101,31 +101,13 @@ var RoomSubList = React.createClass({ }, componentWillMount: function() { - constantTimeDispatcher.register("RoomSubList.sort", this.props.tagName, this.onSort); - constantTimeDispatcher.register("RoomSubList.refreshHeader", this.props.tagName, this.onRefresh); this.sortList(this.applySearchFilter(this.props.list, this.props.searchFilter), this.props.order); - this._fixUndefinedOrder(this.props.list); - }, - - componentWillUnmount: function() { - constantTimeDispatcher.unregister("RoomSubList.sort", this.props.tagName, this.onSort); - constantTimeDispatcher.unregister("RoomSubList.refreshHeader", this.props.tagName, this.onRefresh); }, componentWillReceiveProps: function(newProps) { // order the room list appropriately before we re-render //if (debug) console.log("received new props, list = " + newProps.list); this.sortList(this.applySearchFilter(newProps.list, newProps.searchFilter), newProps.order); - this._fixUndefinedOrder(newProps.list); - }, - - onSort: function() { - this.sortList(this.applySearchFilter(this.props.list, this.props.searchFilter), this.props.order); - // we deliberately don't waste time trying to fix undefined ordering here - }, - - onRefresh: function() { - this.forceUpdate(); }, applySearchFilter: function(list, filter) { @@ -138,7 +120,7 @@ var RoomSubList = React.createClass({ // The header is collapsable if it is hidden or not stuck // The dataset elements are added in the RoomList _initAndPositionStickyHeaders method isCollapsableOnClick: function() { - var stuck = this.refs.header.refs.header.dataset.stuck; + var stuck = this.refs.header.dataset.stuck; if (this.state.hidden || stuck === undefined || stuck === "none") { return true; } else { @@ -161,7 +143,7 @@ var RoomSubList = React.createClass({ this.props.onHeaderClick(isHidden); } else { // The header is stuck, so the click is to be interpreted as a scroll to the header - this.props.onHeaderClick(this.state.hidden, this.refs.header.refs.header.dataset.originalPosition); + this.props.onHeaderClick(this.state.hidden, this.refs.header.dataset.originalPosition); } }, @@ -230,6 +212,9 @@ var RoomSubList = React.createClass({ if (order === "manual") comparator = this.manualComparator; if (order === "recent") comparator = this.recentsComparator; + // Fix undefined orders here, and make sure the backend gets updated as well + this._fixUndefinedOrder(list); + //if (debug) console.log("sorting list for sublist " + this.props.label + " with length " + list.length + ", this.props.list = " + this.props.list); this.setState({ sortedList: list.sort(comparator) }); }, @@ -264,9 +249,10 @@ var RoomSubList = React.createClass({ if (badges) { result[0] += notificationCount; + if (highlight) { + result[1] = true; + } } - - result[1] |= highlight; } return result; }, [0, false]); @@ -374,6 +360,7 @@ var RoomSubList = React.createClass({ var self = this; var DNDRoomTile = sdk.getComponent("rooms.DNDRoomTile"); return this.state.sortedList.map(function(room) { + var selected = room.roomId == self.props.selectedRoom; // XXX: is it evil to pass in self as a prop to RoomTile? return ( <DNDRoomTile @@ -381,7 +368,9 @@ var RoomSubList = React.createClass({ roomSubList={ self } key={ room.roomId } collapsed={ self.props.collapsed || false} - selectedRoom={ self.props.selectedRoom } + selected={ selected } + unread={ Unread.doesRoomHaveUnreadMessages(room) } + highlight={ room.getUnreadNotificationCount('highlight') > 0 || self.props.label === 'Invites' } isInvite={ self.props.label === 'Invites' } refreshSubList={ self._updateSubListCount } incomingCall={ null } @@ -391,6 +380,70 @@ var RoomSubList = React.createClass({ }); }, + _getHeaderJsx: function() { + var TintableSvg = sdk.getComponent("elements.TintableSvg"); + + var subListNotifications = this.roomNotificationCount(); + var subListNotifCount = subListNotifications[0]; + var subListNotifHighlight = subListNotifications[1]; + + var roomCount = this.props.list.length > 0 ? this.props.list.length : ''; + + var chevronClasses = classNames({ + 'mx_RoomSubList_chevron': true, + 'mx_RoomSubList_chevronRight': this.state.hidden, + 'mx_RoomSubList_chevronDown': !this.state.hidden, + }); + + var badgeClasses = classNames({ + 'mx_RoomSubList_badge': true, + 'mx_RoomSubList_badgeHighlight': subListNotifHighlight, + }); + + var badge; + if (subListNotifCount > 0) { + badge = <div className={badgeClasses}>{ FormattingUtils.formatCount(subListNotifCount) }</div>; + } + + // When collapsed, allow a long hover on the header to show user + // the full tag name and room count + var title; + if (this.props.collapsed) { + title = this.props.label; + if (roomCount !== '') { + title += " [" + roomCount + "]"; + } + } + + var incomingCall; + if (this.props.incomingCall) { + var self = this; + // Check if the incoming call is for this section + var incomingCallRoom = this.props.list.filter(function(room) { + return self.props.incomingCall.roomId === room.roomId; + }); + + if (incomingCallRoom.length === 1) { + var IncomingCallBox = sdk.getComponent("voip.IncomingCallBox"); + incomingCall = <IncomingCallBox className="mx_RoomSubList_incomingCall" incomingCall={ this.props.incomingCall }/>; + } + } + + var tabindex = this.props.searchFilter === "" ? "0" : "-1"; + + return ( + <div className="mx_RoomSubList_labelContainer" title={ title } ref="header"> + <AccessibleButton onClick={ this.onClick } className="mx_RoomSubList_label" tabIndex={tabindex}> + { this.props.collapsed ? '' : this.props.label } + <div className="mx_RoomSubList_roomCount">{ roomCount }</div> + <div className={chevronClasses}></div> + { badge } + { incomingCall } + </AccessibleButton> + </div> + ); + }, + _createOverflowTile: function(overflowCount, totalCount) { var content = <div className="mx_RoomSubList_chevronDown"></div>; @@ -446,7 +499,7 @@ var RoomSubList = React.createClass({ // gets triggered and another list is passed in. Doing it one at a time means that // we always correctly calculate the highest order for the list - stops multiple // rooms getting the same order. This is only really relevant for the first time this - // is run with historical room tag data, after that there should only be one undefined + // is run with historical room tag data, after that there should only be undefined // in the list at a time anyway. for (let i = 0; i < list.length; i++) { if (list[i].tags[self.props.tagName] && list[i].tags[self.props.tagName].order === undefined) { @@ -480,16 +533,6 @@ var RoomSubList = React.createClass({ target = <RoomDropTarget label={ 'Drop here to ' + this.props.verb }/>; } - var roomCount = this.props.list.length > 0 ? this.props.list.length : ''; - - var isIncomingCallRoom; - if (this.props.incomingCall) { - // Check if the incoming call is for this section - isIncomingCallRoom = this.props.list.find(room=>{ - return this.props.incomingCall.roomId === room.roomId; - }) ? true : false; - } - if (this.state.sortedList.length > 0 || this.props.editable) { var subList; var classes = "mx_RoomSubList"; @@ -508,18 +551,7 @@ var RoomSubList = React.createClass({ return connectDropTarget( <div> - <RoomSubListHeader - ref='header' - label={ this.props.label } - tagName={ this.props.tagName } - roomCount={ roomCount } - collapsed={ this.props.collapsed } - hidden={ this.state.hidden } - isIncomingCallRoom={ isIncomingCallRoom } - roomNotificationCount={ this.roomNotificationCount() } - onClick={ this.onClick } - onHeaderClick={ this.props.onHeaderClick } - /> + { this._getHeaderJsx() } { subList } </div> ); @@ -528,20 +560,7 @@ var RoomSubList = React.createClass({ var Loader = sdk.getComponent("elements.Spinner"); return ( <div className="mx_RoomSubList"> - { this.props.alwaysShowHeader ? - <RoomSubListHeader - ref='header' - label={ this.props.label } - tagName={ this.props.tagName } - roomCount={ roomCount } - collapsed={ this.props.collapsed } - hidden={ this.state.hidden } - isIncomingCallRoom={ isIncomingCallRoom } - roomNotificationCount={ this.roomNotificationCount() } - onClick={ this.onClick } - onHeaderClick={ this.props.onHeaderClick } - /> - : undefined } + { this.props.alwaysShowHeader ? this._getHeaderJsx() : undefined } { (this.props.showSpinner && !this.state.hidden) ? <Loader /> : undefined } </div> ); diff --git a/src/components/structures/RoomSubListHeader.js b/src/components/structures/RoomSubListHeader.js deleted file mode 100644 index 5618b39b..00000000 --- a/src/components/structures/RoomSubListHeader.js +++ /dev/null @@ -1,120 +0,0 @@ -/* -Copyright 2017 Vector Creations Ltd - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -'use strict'; - -var React = require('react'); -var ReactDOM = require('react-dom'); -var classNames = require('classnames'); -var sdk = require('matrix-react-sdk') -var FormattingUtils = require('matrix-react-sdk/lib/utils/FormattingUtils'); -var RoomNotifs = require('matrix-react-sdk/lib/RoomNotifs'); -var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); -var ConstantTimeDispatcher = require('matrix-react-sdk/lib/ConstantTimeDispatcher'); - -module.exports = React.createClass({ - displayName: 'RoomSubListHeader', - - propTypes: { - label: React.PropTypes.string.isRequired, - tagName: React.PropTypes.string, - roomCount: React.PropTypes.oneOfType([ - React.PropTypes.string, - React.PropTypes.number - ]), - collapsed: React.PropTypes.bool.isRequired, // is LeftPanel collapsed? - isIncomingCallRoom: React.PropTypes.bool, - roomNotificationCount: React.PropTypes.array, - hidden: React.PropTypes.bool, - onClick: React.PropTypes.func, - onHeaderClick: React.PropTypes.func, - }, - - getDefaultProps: function() { - return { - onHeaderClick: function() {}, // NOP - }; - }, - - componentWillMount: function() { - // constantTimeDispatcher.register("RoomSubList.refreshHeader", this.props.tagName, this.onRefresh); - }, - - componentWillUnmount: function() { - // constantTimeDispatcher.unregister("RoomSubList.refreshHeader", this.props.tagName, this.onRefresh); - }, - - // onRefresh: function() { - // this.forceUpdate(); - // }, - - render: function() { - var TintableSvg = sdk.getComponent("elements.TintableSvg"); - - var subListNotifications = this.props.roomNotificationCount; - var subListNotifCount = subListNotifications[0]; - var subListNotifHighlight = subListNotifications[1]; - - var chevronClasses = classNames({ - 'mx_RoomSubList_chevron': true, - 'mx_RoomSubList_chevronRight': this.props.hidden, - 'mx_RoomSubList_chevronDown': !this.props.hidden, - }); - - var badgeClasses = classNames({ - 'mx_RoomSubList_badge': true, - 'mx_RoomSubList_badgeHighlight': subListNotifHighlight, - }); - - var badge; - if (subListNotifCount > 0) { - badge = <div className={badgeClasses}>{ FormattingUtils.formatCount(subListNotifCount) }</div>; - } - else if (subListNotifHighlight) { - badge = <div className={badgeClasses}>!</div>; - } - - // When collapsed, allow a long hover on the header to show user - // the full tag name and room count - var title; - var roomCount = this.props.roomCount; - if (this.props.collapsed) { - title = this.props.label; - if (roomCount !== '') { - title += " [" + roomCount + "]"; - } - } - - var incomingCall; - if (this.props.isIncomingCallRoom) { - var IncomingCallBox = sdk.getComponent("voip.IncomingCallBox"); - incomingCall = <IncomingCallBox className="mx_RoomSubList_incomingCall" incomingCall={ this.props.incomingCall }/>; - } - - return ( - <div className="mx_RoomSubList_labelContainer" title={ title } ref="header"> - <AccessibleButton onClick={ this.props.onClick } className="mx_RoomSubList_label" tabIndex="0"> - { this.props.collapsed ? '' : this.props.label } - <div className="mx_RoomSubList_roomCount">{ roomCount }</div> - <div className={chevronClasses}></div> - { badge } - { incomingCall } - </AccessibleButton> - </div> - ); - }, -}); - diff --git a/src/components/structures/SearchBox.js b/src/components/structures/SearchBox.js index a3848dcc..729e7ef7 100644 --- a/src/components/structures/SearchBox.js +++ b/src/components/structures/SearchBox.js @@ -21,7 +21,6 @@ var sdk = require('matrix-react-sdk') var dis = require('matrix-react-sdk/lib/dispatcher'); var rate_limited_func = require('matrix-react-sdk/lib/ratelimitedfunc'); var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); -var KeyCode = require('matrix-react-sdk/lib/KeyCode'); module.exports = React.createClass({ displayName: 'SearchBox', @@ -39,12 +38,10 @@ module.exports = React.createClass({ componentDidMount: function() { this.dispatcherRef = dis.register(this.onAction); - document.addEventListener('keydown', this._onKeyDown); }, componentWillUnmount: function() { dis.unregister(this.dispatcherRef); - document.removeEventListener('keydown', this._onKeyDown); }, onAction: function(payload) { @@ -93,34 +90,6 @@ module.exports = React.createClass({ this.onChange(); }, - _onKeyDown: function(ev) { - let handled = false; - const isMac = navigator.platform.toUpperCase().indexOf('MAC') >= 0; - let ctrlCmdOnly; - if (isMac) { - ctrlCmdOnly = ev.metaKey && !ev.altKey && !ev.ctrlKey && !ev.shiftKey; - } else { - ctrlCmdOnly = ev.ctrlKey && !ev.altKey && !ev.metaKey && !ev.shiftKey; - } - - switch (ev.keyCode) { - case KeyCode.KEY_K: - if (ctrlCmdOnly) { - if (this.refs.search) { - this.refs.search.focus(); - this.refs.search.select(); - } - handled = true; - } - break; - } - - if (handled) { - ev.stopPropagation(); - ev.preventDefault(); - } - }, - render: function() { var TintableSvg = sdk.getComponent('elements.TintableSvg'); From 39b6c7c65d08942e197cf5f7c5f110d8f641b774 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 17 May 2017 09:53:33 +0100 Subject: [PATCH 018/147] ignore electron_app subdirs properly, missed these too :L Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6072f0ff..7f753927 100644 --- a/.gitignore +++ b/.gitignore @@ -6,12 +6,11 @@ /lib /node_modules /electron_app/node_modules +/electron_app/dist /packages/ /webapp /.npmrc .DS_Store npm-debug.log -electron/dist -electron/pub /config.json /src/component-index.js From 826a571b602783c33e9177d9026147c27c675e91 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 17 May 2017 10:05:50 +0100 Subject: [PATCH 019/147] apply same image to the window/taskbar too; as per request LETS MAKE IT CLEAR WE ARE NEEDY AND WANT ATTENTION Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/tray.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/electron_app/src/tray.js b/electron_app/src/tray.js index 7198356c..98ffb9f4 100644 --- a/electron_app/src/tray.js +++ b/electron_app/src/tray.js @@ -61,7 +61,14 @@ exports.create = function(win, config) { trayIcon.on('click', toggleWin); win.webContents.on('page-favicon-updated', function(ev, favicons) { - trayIcon.setImage(nativeImage.createFromDataURL(favicons[0])); + if (favicons && favicons.length > 0 && favicons[0].startsWith('data:')) { + const image = nativeImage.createFromDataURL(favicons[0]); + trayIcon.setImage(image); + win.setIcon(image); + } else { + trayIcon.setImage(config.icon_path); + win.setIcon(config.icon_path); + } }); win.webContents.on('page-title-updated', function(ev, title) { From 9352e5d78ea1b003ec74939d4299106f2fa4103b Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 17 May 2017 10:39:43 +0100 Subject: [PATCH 020/147] Lets make it abundantly clear that we want attention. FLASH FLASH FLASH also improve favicon updating to not change if we're same as previous not sure how intensive the nativeImage stuff is but cheap efficiency For FLASH FLASH I moved the setBadgeCount stuff RPC -> IPC should be more reliable now, its in electron-main Win only: if mainWindow is set and is not in focus make it FLASH clear flash if notification gets cleared elsewhere debounce focus handler so we don't set a million of them if the app is backgrounded a while Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/electron-main.js | 21 ++++++++++++++++++++- electron_app/src/tray.js | 21 +++++++++++++++------ src/vector/platform/ElectronPlatform.js | 14 +++----------- 3 files changed, 38 insertions(+), 18 deletions(-) diff --git a/electron_app/src/electron-main.js b/electron_app/src/electron-main.js index 32e305d8..b632708f 100644 --- a/electron_app/src/electron-main.js +++ b/electron_app/src/electron-main.js @@ -155,12 +155,31 @@ function startAutoUpdate(update_base_url) { // no other way to catch this error). // Assuming we generally run from the console when developing, // this is far preferable. -process.on('uncaughtException', function (error) { +process.on('uncaughtException', function(error) { console.log("Unhandled exception", error); }); electron.ipcMain.on('install_update', installUpdate); +let focusHandlerAttached = false; +electron.ipcMain.on('setBadgeCount', function(ev, count) { + electron.app.setBadgeCount(count); + if (process.platform === 'win32' && mainWindow && !mainWindow.isFocused()) { + if (count > 0) { + if (!focusHandlerAttached) { + mainWindow.once('focus', () => { + mainWindow.flashFrame(false); + focusHandlerAttached = false; + }); + focusHandlerAttached = true; + } + mainWindow.flashFrame(true); + } else { + mainWindow.flashFrame(false); + } + } +}); + electron.app.commandLine.appendSwitch('--enable-usermedia-screen-capturing'); const shouldQuit = electron.app.makeSingleInstance((commandLine, workingDirectory) => { diff --git a/electron_app/src/tray.js b/electron_app/src/tray.js index 98ffb9f4..5409194d 100644 --- a/electron_app/src/tray.js +++ b/electron_app/src/tray.js @@ -60,15 +60,24 @@ exports.create = function(win, config) { trayIcon.setContextMenu(contextMenu); trayIcon.on('click', toggleWin); + let lastFavicon = null; win.webContents.on('page-favicon-updated', function(ev, favicons) { + let newFavicon = config.icon_path; if (favicons && favicons.length > 0 && favicons[0].startsWith('data:')) { - const image = nativeImage.createFromDataURL(favicons[0]); - trayIcon.setImage(image); - win.setIcon(image); - } else { - trayIcon.setImage(config.icon_path); - win.setIcon(config.icon_path); + newFavicon = favicons[0]; } + + // No need to change, shortcut + if (newFavicon === lastFavicon) return; + lastFavicon = newFavicon; + + // if its not default we have to construct into nativeImage + if (newFavicon !== config.icon_path) { + newFavicon = nativeImage.createFromDataURL(favicons[0]); + } + + trayIcon.setImage(newFavicon); + win.setIcon(newFavicon); }); win.webContents.on('page-title-updated', function(ev, title) { diff --git a/src/vector/platform/ElectronPlatform.js b/src/vector/platform/ElectronPlatform.js index 82ef0b51..5710e66e 100644 --- a/src/vector/platform/ElectronPlatform.js +++ b/src/vector/platform/ElectronPlatform.js @@ -20,7 +20,7 @@ limitations under the License. import VectorBasePlatform from './VectorBasePlatform'; import dis from 'matrix-react-sdk/lib/dispatcher'; import q from 'q'; -import electron, {remote} from 'electron'; +import electron, {remote, ipcRenderer} from 'electron'; remote.autoUpdater.on('update-downloaded', onUpdateDownloaded); @@ -58,16 +58,8 @@ export default class ElectronPlatform extends VectorBasePlatform { setNotificationCount(count: number) { if (this.notificationCount === count) return; super.setNotificationCount(count); - // this sometimes throws because electron is made of fail: - // https://github.com/electron/electron/issues/7351 - // For now, let's catch the error, but I suspect it may - // continue to fail and we might just have to accept that - // electron's remote RPC is a non-starter for now and use IPC - try { - remote.app.setBadgeCount(count); - } catch (e) { - console.error('Failed to set notification count', e); - } + + ipcRenderer.send('setBadgeCount', count); } supportsNotifications(): boolean { From 089740a840ae0fbca5a8055c29c49eb7f1bb8a1b Mon Sep 17 00:00:00 2001 From: Luke Barnard <lukeb@openmarket.com> Date: Wed, 17 May 2017 14:25:43 +0100 Subject: [PATCH 021/147] CSS for putting country dd on same line as phone input (For login and registration) --- .../matrix-react-sdk/structures/login/_Login.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss index 35370464..2501b1b1 100644 --- a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss +++ b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss @@ -231,8 +231,22 @@ limitations under the License. border-bottom-right-radius: 0px; } +.mx_Login_phoneSection { + display:flex; +} + .mx_Login_phoneCountry { margin-bottom: 14px; + width: 145px; + + /* To override mx_Login_field_prefix */ + text-align: left; + padding: 0px; +} + +.mx_Login_field_prefix .mx_Dropdown_input { + /* To use prefix border instead of dropdown border */ + border: 0; } .mx_Login_phoneCountry .mx_Dropdown_option { From 15ab1732a2e417eaf398f0a6ea69e314d1f19ea5 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <richard@matrix.org> Date: Wed, 17 May 2017 14:43:21 +0100 Subject: [PATCH 022/147] Reduce rageshake log size to 1MB ... 50MB turned out to be quite a lot. --- src/vector/rageshake.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/vector/rageshake.js b/src/vector/rageshake.js index 0b977949..0138d624 100644 --- a/src/vector/rageshake.js +++ b/src/vector/rageshake.js @@ -37,8 +37,12 @@ import q from "q"; // actually timestamps. We then purge the remaining logs. We also do this // purge on startup to prevent logs from accumulating. +// the frequency with which we flush to indexeddb const FLUSH_RATE_MS = 30 * 1000; +// the length of log data we keep in indexeddb (and include in the reports) +const MAX_LOG_SIZE = 1024 * 1024 * 1; // 1 MB + // A class which monkey-patches the global console and stores log lines. class ConsoleLogger { constructor() { @@ -232,7 +236,6 @@ class IndexedDBLogStore { * is a big string with all the new-line delimited logs. */ async consume() { - const MAX_LOG_SIZE = 1024 * 1024 * 50; // 50 MB const db = this.db; // Returns: a string representing the concatenated logs for this ID. From fac8906102be707b1a0b3bdec8f5e6788e5fe4d3 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Wed, 17 May 2017 16:11:34 +0100 Subject: [PATCH 023/147] Add script to fetch correct dep branches Fetch branches of js-sdk and react-sdk that match the current branch name, if they exist. This will mostly be used in the automated tests. --- scripts/fetch-develop.deps.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 scripts/fetch-develop.deps.sh diff --git a/scripts/fetch-develop.deps.sh b/scripts/fetch-develop.deps.sh new file mode 100755 index 00000000..c5756a86 --- /dev/null +++ b/scripts/fetch-develop.deps.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +# Fetches the js-sdk and matrix-react-sdk dependencies for development +# or testing purposes +# If there exists a branch of that dependency with the same name as +# the branch the current checkout is on, use that branch. Otherwise, +# use develop. + +curbranch=`git rev-parse --abbrev-ref HEAD` + +cd node_modules + +function dodep() { + org=$1 + repo=$2 + rm -rf $repo || true + git clone https://github.com/$org/$repo.git $repo + pushd $repo + git checkout $curbranch || git checkout develop + echo "$repo set to branch "`git rev-parse --abbrev-ref HEAD` + popd +} + +dodep matrix-org matrix-js-sdk +dodep matrix-org matrix-react-sdk From 94ac4bf490a02f026c5f47d6e8174360c215ade4 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Wed, 17 May 2017 16:17:08 +0100 Subject: [PATCH 024/147] Use fetch dep script in jenkins script --- scripts/fetch-develop.deps.sh | 1 + scripts/jenkins.sh | 10 ++++------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/scripts/fetch-develop.deps.sh b/scripts/fetch-develop.deps.sh index c5756a86..4053666f 100755 --- a/scripts/fetch-develop.deps.sh +++ b/scripts/fetch-develop.deps.sh @@ -17,6 +17,7 @@ function dodep() { git clone https://github.com/$org/$repo.git $repo pushd $repo git checkout $curbranch || git checkout develop + npm install echo "$repo set to branch "`git rev-parse --abbrev-ref HEAD` popd } diff --git a/scripts/jenkins.sh b/scripts/jenkins.sh index 312eea45..17f86fe1 100755 --- a/scripts/jenkins.sh +++ b/scripts/jenkins.sh @@ -8,10 +8,13 @@ nvm use 6 set -x +# check out corresponding branches of dependencies +`dirname $0`/fetch-develop.deps.sh + npm install # apparently npm 3.10.3 on node 6.4.0 doesn't upgrade #develop target with npm install unless explicitly asked. -npm install matrix-react-sdk matrix-js-sdk olm +npm install olm # install olm. A naive 'npm i ./olm/olm-*.tgz' fails because it uses the url # from our package.json (or even matrix-js-sdk's) in preference. @@ -23,11 +26,6 @@ npm install matrix-react-sdk matrix-js-sdk olm #rm -r node_modules/olm #cp -r olm/package node_modules/olm - -# we may be using dev branches of js-sdk and react-sdk, in which case we need to build them -(cd node_modules/matrix-js-sdk && npm install) -(cd node_modules/matrix-react-sdk && npm install) - # run the mocha tests npm run test From 60d33f50a7e30de6f16e610025f40586acbed8be Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Wed, 17 May 2017 16:19:19 +0100 Subject: [PATCH 025/147] Create node_modules if it doesn't exist --- scripts/fetch-develop.deps.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/fetch-develop.deps.sh b/scripts/fetch-develop.deps.sh index 4053666f..1a3c0996 100755 --- a/scripts/fetch-develop.deps.sh +++ b/scripts/fetch-develop.deps.sh @@ -8,6 +8,7 @@ curbranch=`git rev-parse --abbrev-ref HEAD` +mkdir -p node_modules cd node_modules function dodep() { From 18afbc5becae4c65906d98e2b48ff511524b34aa Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Wed, 17 May 2017 18:14:28 +0100 Subject: [PATCH 026/147] Make dep install script work --- scripts/fetch-develop.deps.sh | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/scripts/fetch-develop.deps.sh b/scripts/fetch-develop.deps.sh index 1a3c0996..a8abcef1 100755 --- a/scripts/fetch-develop.deps.sh +++ b/scripts/fetch-develop.deps.sh @@ -8,9 +8,6 @@ curbranch=`git rev-parse --abbrev-ref HEAD` -mkdir -p node_modules -cd node_modules - function dodep() { org=$1 repo=$2 @@ -18,10 +15,32 @@ function dodep() { git clone https://github.com/$org/$repo.git $repo pushd $repo git checkout $curbranch || git checkout develop - npm install echo "$repo set to branch "`git rev-parse --abbrev-ref HEAD` popd } dodep matrix-org matrix-js-sdk dodep matrix-org matrix-react-sdk + +mkdir -p node_modules +cd node_modules + +ln -s ../matrix-js-sdk ./ +pushd matrix-js-sdk +npm install +popd + +ln -s ../matrix-react-sdk ./ +pushd matrix-react-sdk +mkdir -p node_modules +cd node_modules +ln -s ../../matrix-js-sdk matrix-js-sdk +cd .. +npm install +popd +# Link the reskindex binary in place: if we used npm link, +# npm would do this for us, but we don't because we'd have +# to define the npm prefix somewhere so it could put the +# intermediate symlinks there. Instead, we do it ourselves. +mkdir -p .bin +ln -s ../matrix-react-sdk/scripts/reskindex.js .bin/reskindex From b3b44dd99e31ebccf3f4f4472f256eb73235bdb5 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Wed, 17 May 2017 18:20:25 +0100 Subject: [PATCH 027/147] Use fetch dep script for travis --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9720d887..ff58bf37 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,5 @@ language: node_js node_js: - 6 # node v6, to match jenkins install: + - scripts/fetch-develop.deps.sh - npm install - - (cd node_modules/matrix-js-sdk && npm install) - - (cd node_modules/matrix-react-sdk && npm install) From c929cb1337f565e44da48da298f4b07c77c3703b Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Wed, 17 May 2017 18:21:58 +0100 Subject: [PATCH 028/147] Do I mean bash? Probably --- scripts/fetch-develop.deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fetch-develop.deps.sh b/scripts/fetch-develop.deps.sh index a8abcef1..50c3af1a 100755 --- a/scripts/fetch-develop.deps.sh +++ b/scripts/fetch-develop.deps.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Fetches the js-sdk and matrix-react-sdk dependencies for development # or testing purposes From a9a4b1c44e6a9cebceeb5a039c45a01f2f8c0d9e Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Thu, 18 May 2017 11:05:19 +0100 Subject: [PATCH 029/147] Get branch from various CI env vars So we hopefully get the right branch for PRs from the same repo (but not forks). From @t3chguy's comment (tweaked a bit) --- scripts/fetch-develop.deps.sh | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/scripts/fetch-develop.deps.sh b/scripts/fetch-develop.deps.sh index 50c3af1a..8048d4bc 100755 --- a/scripts/fetch-develop.deps.sh +++ b/scripts/fetch-develop.deps.sh @@ -6,7 +6,22 @@ # the branch the current checkout is on, use that branch. Otherwise, # use develop. -curbranch=`git rev-parse --abbrev-ref HEAD` +# Look in the many different CI env vars for which branch we're +# building +if [[ "$TRAVIS" == true ]]; then + curbranch="${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH}" +else + # ghprbSourceBranch for jenkins github pull request builder + # GIT_BRANCH for other jenkins builds + curbranch="${ghprbSourceBranch:-$GIT_BRANCH}" + # Otherwise look at the actual branch we're on + if [ -z "$curbranch" ] + then + curbranch=`git rev-parse --abbrev-ref HEAD` + fi +fi + +echo "Determined branch to be $curbranch" function dodep() { org=$1 From e879fb0eef08f68c2b4a4ac706da7e19737e5abb Mon Sep 17 00:00:00 2001 From: Luke Barnard <lukeb@openmarket.com> Date: Thu, 18 May 2017 11:25:42 +0100 Subject: [PATCH 030/147] Add square flag pngs /w genflags.sh script This uses the github.com:googlei18n/region-flags and imagemagick to generate 27x27 flag pngs. The flags have a 1px #e0e0e0 border and transparent padding such that each flag is of the same height (17px including the border). --- res/flags/AD.png | Bin 0 -> 1143 bytes res/flags/AE.png | Bin 0 -> 841 bytes res/flags/AF.png | Bin 0 -> 1144 bytes res/flags/AG.png | Bin 0 -> 1394 bytes res/flags/AI.png | Bin 0 -> 1515 bytes res/flags/AL.png | Bin 0 -> 1262 bytes res/flags/AM.png | Bin 0 -> 744 bytes res/flags/AO.png | Bin 0 -> 1070 bytes res/flags/AQ.png | Bin 0 -> 1405 bytes res/flags/AR.png | Bin 0 -> 955 bytes res/flags/AS.png | Bin 0 -> 1651 bytes res/flags/AT.png | Bin 0 -> 701 bytes res/flags/AU.png | Bin 0 -> 1719 bytes res/flags/AW.png | Bin 0 -> 938 bytes res/flags/AX.png | Bin 0 -> 900 bytes res/flags/AZ.png | Bin 0 -> 978 bytes res/flags/BA.png | Bin 0 -> 1271 bytes res/flags/BB.png | Bin 0 -> 1065 bytes res/flags/BD.png | Bin 0 -> 1301 bytes res/flags/BE.png | Bin 0 -> 689 bytes res/flags/BF.png | Bin 0 -> 954 bytes res/flags/BG.png | Bin 0 -> 737 bytes res/flags/BH.png | Bin 0 -> 842 bytes res/flags/BI.png | Bin 0 -> 1534 bytes res/flags/BJ.png | Bin 0 -> 777 bytes res/flags/BL.png | Bin 0 -> 692 bytes res/flags/BM.png | Bin 0 -> 1601 bytes res/flags/BN.png | Bin 0 -> 1599 bytes res/flags/BO.png | Bin 0 -> 733 bytes res/flags/BQ.png | Bin 0 -> 726 bytes res/flags/BR.png | Bin 0 -> 1612 bytes res/flags/BS.png | Bin 0 -> 1110 bytes res/flags/BT.png | Bin 0 -> 1608 bytes res/flags/BV.png | Bin 0 -> 866 bytes res/flags/BW.png | Bin 0 -> 697 bytes res/flags/BY.png | Bin 0 -> 950 bytes res/flags/BZ.png | Bin 0 -> 1592 bytes res/flags/CA.png | Bin 0 -> 1085 bytes res/flags/CC.png | Bin 0 -> 1637 bytes res/flags/CD.png | Bin 0 -> 1581 bytes res/flags/CF.png | Bin 0 -> 1124 bytes res/flags/CG.png | Bin 0 -> 1539 bytes res/flags/CH.png | Bin 0 -> 800 bytes res/flags/CI.png | Bin 0 -> 692 bytes res/flags/CK.png | Bin 0 -> 1437 bytes res/flags/CL.png | Bin 0 -> 964 bytes res/flags/CM.png | Bin 0 -> 908 bytes res/flags/CN.png | Bin 0 -> 1069 bytes res/flags/CO.png | Bin 0 -> 726 bytes res/flags/CR.png | Bin 0 -> 734 bytes res/flags/CU.png | Bin 0 -> 1204 bytes res/flags/CV.png | Bin 0 -> 1271 bytes res/flags/CW.png | Bin 0 -> 970 bytes res/flags/CX.png | Bin 0 -> 1369 bytes res/flags/CY.png | Bin 0 -> 1208 bytes res/flags/CZ.png | Bin 0 -> 1172 bytes res/flags/DE.png | Bin 0 -> 734 bytes res/flags/DJ.png | Bin 0 -> 1253 bytes res/flags/DK.png | Bin 0 -> 797 bytes res/flags/DM.png | Bin 0 -> 1169 bytes res/flags/DO.png | Bin 0 -> 946 bytes res/flags/DZ.png | Bin 0 -> 1095 bytes res/flags/EC.png | Bin 0 -> 1162 bytes res/flags/EE.png | Bin 0 -> 723 bytes res/flags/EG.png | Bin 0 -> 914 bytes res/flags/EH.png | Bin 0 -> 1203 bytes res/flags/ER.png | Bin 0 -> 1715 bytes res/flags/ES.png | Bin 0 -> 1064 bytes res/flags/ET.png | Bin 0 -> 1321 bytes res/flags/FI.png | Bin 0 -> 841 bytes res/flags/FJ.png | Bin 0 -> 1523 bytes res/flags/FK.png | Bin 0 -> 1634 bytes res/flags/FM.png | Bin 0 -> 1195 bytes res/flags/FO.png | Bin 0 -> 834 bytes res/flags/FR.png | Bin 0 -> 692 bytes res/flags/GA.png | Bin 0 -> 753 bytes res/flags/GB.png | Bin 0 -> 1574 bytes res/flags/GD.png | Bin 0 -> 1393 bytes res/flags/GE.png | Bin 0 -> 1120 bytes res/flags/GF.png | Bin 0 -> 1295 bytes res/flags/GG.png | Bin 0 -> 1001 bytes res/flags/GH.png | Bin 0 -> 1010 bytes res/flags/GI.png | Bin 0 -> 1129 bytes res/flags/GL.png | Bin 0 -> 1216 bytes res/flags/GM.png | Bin 0 -> 743 bytes res/flags/GN.png | Bin 0 -> 699 bytes res/flags/GP.png | Bin 0 -> 1361 bytes res/flags/GQ.png | Bin 0 -> 1289 bytes res/flags/GR.png | Bin 0 -> 1157 bytes res/flags/GS.png | Bin 0 -> 1640 bytes res/flags/GT.png | Bin 0 -> 949 bytes res/flags/GU.png | Bin 0 -> 1120 bytes res/flags/GW.png | Bin 0 -> 972 bytes res/flags/GY.png | Bin 0 -> 1332 bytes res/flags/HK.png | Bin 0 -> 1216 bytes res/flags/HM.png | Bin 0 -> 1719 bytes res/flags/HN.png | Bin 0 -> 971 bytes res/flags/HR.png | Bin 0 -> 1096 bytes res/flags/HT.png | Bin 0 -> 951 bytes res/flags/HU.png | Bin 0 -> 728 bytes res/flags/ID.png | Bin 0 -> 685 bytes res/flags/IE.png | Bin 0 -> 694 bytes res/flags/IL.png | Bin 0 -> 1006 bytes res/flags/IM.png | Bin 0 -> 1117 bytes res/flags/IN.png | Bin 0 -> 914 bytes res/flags/IO.png | Bin 0 -> 1806 bytes res/flags/IQ.png | Bin 0 -> 1055 bytes res/flags/IR.png | Bin 0 -> 1356 bytes res/flags/IS.png | Bin 0 -> 851 bytes res/flags/IT.png | Bin 0 -> 694 bytes res/flags/JE.png | Bin 0 -> 1531 bytes res/flags/JM.png | Bin 0 -> 1694 bytes res/flags/JO.png | Bin 0 -> 1240 bytes res/flags/JP.png | Bin 0 -> 1109 bytes res/flags/KE.png | Bin 0 -> 1196 bytes res/flags/KG.png | Bin 0 -> 1282 bytes res/flags/KH.png | Bin 0 -> 1209 bytes res/flags/KI.png | Bin 0 -> 1385 bytes res/flags/KM.png | Bin 0 -> 1399 bytes res/flags/KN.png | Bin 0 -> 1569 bytes res/flags/KP.png | Bin 0 -> 1038 bytes res/flags/KR.png | Bin 0 -> 1456 bytes res/flags/KW.png | Bin 0 -> 985 bytes res/flags/KY.png | Bin 0 -> 1604 bytes res/flags/KZ.png | Bin 0 -> 1346 bytes res/flags/LA.png | Bin 0 -> 1046 bytes res/flags/LB.png | Bin 0 -> 1091 bytes res/flags/LC.png | Bin 0 -> 1139 bytes res/flags/LI.png | Bin 0 -> 973 bytes res/flags/LK.png | Bin 0 -> 1635 bytes res/flags/LR.png | Bin 0 -> 960 bytes res/flags/LS.png | Bin 0 -> 938 bytes res/flags/LT.png | Bin 0 -> 745 bytes res/flags/LU.png | Bin 0 -> 729 bytes res/flags/LV.png | Bin 0 -> 701 bytes res/flags/LY.png | Bin 0 -> 891 bytes res/flags/MA.png | Bin 0 -> 908 bytes res/flags/MC.png | Bin 0 -> 684 bytes res/flags/MD.png | Bin 0 -> 1104 bytes res/flags/ME.png | Bin 0 -> 1267 bytes res/flags/MF.png | Bin 0 -> 692 bytes res/flags/MG.png | Bin 0 -> 759 bytes res/flags/MH.png | Bin 0 -> 1381 bytes res/flags/MK.png | Bin 0 -> 1282 bytes res/flags/ML.png | Bin 0 -> 699 bytes res/flags/MM.png | Bin 0 -> 1288 bytes res/flags/MN.png | Bin 0 -> 1089 bytes res/flags/MO.png | Bin 0 -> 1203 bytes res/flags/MP.png | Bin 0 -> 1445 bytes res/flags/MQ.png | Bin 0 -> 1744 bytes res/flags/MR.png | Bin 0 -> 1235 bytes res/flags/MS.png | Bin 0 -> 1534 bytes res/flags/MT.png | Bin 0 -> 826 bytes res/flags/MU.png | Bin 0 -> 759 bytes res/flags/MV.png | Bin 0 -> 1127 bytes res/flags/MW.png | Bin 0 -> 1076 bytes res/flags/MX.png | Bin 0 -> 994 bytes res/flags/MY.png | Bin 0 -> 1215 bytes res/flags/MZ.png | Bin 0 -> 1267 bytes res/flags/NA.png | Bin 0 -> 1442 bytes res/flags/NC.png | Bin 0 -> 1317 bytes res/flags/NE.png | Bin 0 -> 970 bytes res/flags/NF.png | Bin 0 -> 1019 bytes res/flags/NG.png | Bin 0 -> 682 bytes res/flags/NI.png | Bin 0 -> 961 bytes res/flags/NL.png | Bin 0 -> 726 bytes res/flags/NO.png | Bin 0 -> 866 bytes res/flags/NP.png | Bin 0 -> 1255 bytes res/flags/NR.png | Bin 0 -> 941 bytes res/flags/NU.png | Bin 0 -> 1126 bytes res/flags/NZ.png | Bin 0 -> 1544 bytes res/flags/OM.png | Bin 0 -> 989 bytes res/flags/PA.png | Bin 0 -> 987 bytes res/flags/PE.png | Bin 0 -> 680 bytes res/flags/PF.png | Bin 0 -> 1099 bytes res/flags/PG.png | Bin 0 -> 1490 bytes res/flags/PH.png | Bin 0 -> 1196 bytes res/flags/PK.png | Bin 0 -> 1338 bytes res/flags/PL.png | Bin 0 -> 689 bytes res/flags/PM.png | Bin 0 -> 1741 bytes res/flags/PN.png | Bin 0 -> 1684 bytes res/flags/PR.png | Bin 0 -> 1363 bytes res/flags/PS.png | Bin 0 -> 1060 bytes res/flags/PT.png | Bin 0 -> 1138 bytes res/flags/PW.png | Bin 0 -> 1223 bytes res/flags/PY.png | Bin 0 -> 924 bytes res/flags/QA.png | Bin 0 -> 844 bytes res/flags/RE.png | Bin 0 -> 692 bytes res/flags/RO.png | Bin 0 -> 699 bytes res/flags/RS.png | Bin 0 -> 1260 bytes res/flags/RU.png | Bin 0 -> 734 bytes res/flags/RW.png | Bin 0 -> 1003 bytes res/flags/SA.png | Bin 0 -> 1320 bytes res/flags/SB.png | Bin 0 -> 1612 bytes res/flags/SC.png | Bin 0 -> 1318 bytes res/flags/SD.png | Bin 0 -> 1063 bytes res/flags/SE.png | Bin 0 -> 780 bytes res/flags/SG.png | Bin 0 -> 1021 bytes res/flags/SH.png | Bin 0 -> 1433 bytes res/flags/SI.png | Bin 0 -> 933 bytes res/flags/SJ.png | Bin 0 -> 866 bytes res/flags/SK.png | Bin 0 -> 1162 bytes res/flags/SL.png | Bin 0 -> 726 bytes res/flags/SM.png | Bin 0 -> 1147 bytes res/flags/SN.png | Bin 0 -> 963 bytes res/flags/SO.png | Bin 0 -> 1031 bytes res/flags/SR.png | Bin 0 -> 1003 bytes res/flags/SS.png | Bin 0 -> 1236 bytes res/flags/ST.png | Bin 0 -> 1247 bytes res/flags/SV.png | Bin 0 -> 942 bytes res/flags/SX.png | Bin 0 -> 1238 bytes res/flags/SY.png | Bin 0 -> 1002 bytes res/flags/SZ.png | Bin 0 -> 1479 bytes res/flags/TC.png | Bin 0 -> 1448 bytes res/flags/TD.png | Bin 0 -> 699 bytes res/flags/TF.png | Bin 0 -> 692 bytes res/flags/TG.png | Bin 0 -> 1133 bytes res/flags/TH.png | Bin 0 -> 731 bytes res/flags/TJ.png | Bin 0 -> 993 bytes res/flags/TK.png | Bin 0 -> 1225 bytes res/flags/TL.png | Bin 0 -> 1210 bytes res/flags/TM.png | Bin 0 -> 1335 bytes res/flags/TN.png | Bin 0 -> 1153 bytes res/flags/TO.png | Bin 0 -> 919 bytes res/flags/TR.png | Bin 0 -> 1239 bytes res/flags/TT.png | Bin 0 -> 1476 bytes res/flags/TV.png | Bin 0 -> 1682 bytes res/flags/TW.png | Bin 0 -> 1029 bytes res/flags/TZ.png | Bin 0 -> 1507 bytes res/flags/UA.png | Bin 0 -> 694 bytes res/flags/UG.png | Bin 0 -> 1053 bytes res/flags/US.png | Bin 0 -> 1112 bytes res/flags/UY.png | Bin 0 -> 1085 bytes res/flags/UZ.png | Bin 0 -> 942 bytes res/flags/VA.png | Bin 0 -> 977 bytes res/flags/VC.png | Bin 0 -> 1065 bytes res/flags/VE.png | Bin 0 -> 1074 bytes res/flags/VG.png | Bin 0 -> 1612 bytes res/flags/VI.png | Bin 0 -> 1631 bytes res/flags/VN.png | Bin 0 -> 1120 bytes res/flags/VU.png | Bin 0 -> 1387 bytes res/flags/WF.png | Bin 0 -> 1215 bytes res/flags/WS.png | Bin 0 -> 1004 bytes res/flags/YE.png | Bin 0 -> 715 bytes res/flags/YT.png | Bin 0 -> 1540 bytes res/flags/ZA.png | Bin 0 -> 1494 bytes res/flags/ZM.png | Bin 0 -> 991 bytes res/flags/ZW.png | Bin 0 -> 1116 bytes res/genflags.sh | 53 ++++++++++++++++++++++++++++++++++++++++++++ scripts/copy-res.js | 1 + 250 files changed, 54 insertions(+) create mode 100644 res/flags/AD.png create mode 100644 res/flags/AE.png create mode 100644 res/flags/AF.png create mode 100644 res/flags/AG.png create mode 100644 res/flags/AI.png create mode 100644 res/flags/AL.png create mode 100644 res/flags/AM.png create mode 100644 res/flags/AO.png create mode 100644 res/flags/AQ.png create mode 100644 res/flags/AR.png create mode 100644 res/flags/AS.png create mode 100644 res/flags/AT.png create mode 100644 res/flags/AU.png create mode 100644 res/flags/AW.png create mode 100644 res/flags/AX.png create mode 100644 res/flags/AZ.png create mode 100644 res/flags/BA.png create mode 100644 res/flags/BB.png create mode 100644 res/flags/BD.png create mode 100644 res/flags/BE.png create mode 100644 res/flags/BF.png create mode 100644 res/flags/BG.png create mode 100644 res/flags/BH.png create mode 100644 res/flags/BI.png create mode 100644 res/flags/BJ.png create mode 100644 res/flags/BL.png create mode 100644 res/flags/BM.png create mode 100644 res/flags/BN.png create mode 100644 res/flags/BO.png create mode 100644 res/flags/BQ.png create mode 100644 res/flags/BR.png create mode 100644 res/flags/BS.png create mode 100644 res/flags/BT.png create mode 100644 res/flags/BV.png create mode 100644 res/flags/BW.png create mode 100644 res/flags/BY.png create mode 100644 res/flags/BZ.png create mode 100644 res/flags/CA.png create mode 100644 res/flags/CC.png create mode 100644 res/flags/CD.png create mode 100644 res/flags/CF.png create mode 100644 res/flags/CG.png create mode 100644 res/flags/CH.png create mode 100644 res/flags/CI.png create mode 100644 res/flags/CK.png create mode 100644 res/flags/CL.png create mode 100644 res/flags/CM.png create mode 100644 res/flags/CN.png create mode 100644 res/flags/CO.png create mode 100644 res/flags/CR.png create mode 100644 res/flags/CU.png create mode 100644 res/flags/CV.png create mode 100644 res/flags/CW.png create mode 100644 res/flags/CX.png create mode 100644 res/flags/CY.png create mode 100644 res/flags/CZ.png create mode 100644 res/flags/DE.png create mode 100644 res/flags/DJ.png create mode 100644 res/flags/DK.png create mode 100644 res/flags/DM.png create mode 100644 res/flags/DO.png create mode 100644 res/flags/DZ.png create mode 100644 res/flags/EC.png create mode 100644 res/flags/EE.png create mode 100644 res/flags/EG.png create mode 100644 res/flags/EH.png create mode 100644 res/flags/ER.png create mode 100644 res/flags/ES.png create mode 100644 res/flags/ET.png create mode 100644 res/flags/FI.png create mode 100644 res/flags/FJ.png create mode 100644 res/flags/FK.png create mode 100644 res/flags/FM.png create mode 100644 res/flags/FO.png create mode 100644 res/flags/FR.png create mode 100644 res/flags/GA.png create mode 100644 res/flags/GB.png create mode 100644 res/flags/GD.png create mode 100644 res/flags/GE.png create mode 100644 res/flags/GF.png create mode 100644 res/flags/GG.png create mode 100644 res/flags/GH.png create mode 100644 res/flags/GI.png create mode 100644 res/flags/GL.png create mode 100644 res/flags/GM.png create mode 100644 res/flags/GN.png create mode 100644 res/flags/GP.png create mode 100644 res/flags/GQ.png create mode 100644 res/flags/GR.png create mode 100644 res/flags/GS.png create mode 100644 res/flags/GT.png create mode 100644 res/flags/GU.png create mode 100644 res/flags/GW.png create mode 100644 res/flags/GY.png create mode 100644 res/flags/HK.png create mode 100644 res/flags/HM.png create mode 100644 res/flags/HN.png create mode 100644 res/flags/HR.png create mode 100644 res/flags/HT.png create mode 100644 res/flags/HU.png create mode 100644 res/flags/ID.png create mode 100644 res/flags/IE.png create mode 100644 res/flags/IL.png create mode 100644 res/flags/IM.png create mode 100644 res/flags/IN.png create mode 100644 res/flags/IO.png create mode 100644 res/flags/IQ.png create mode 100644 res/flags/IR.png create mode 100644 res/flags/IS.png create mode 100644 res/flags/IT.png create mode 100644 res/flags/JE.png create mode 100644 res/flags/JM.png create mode 100644 res/flags/JO.png create mode 100644 res/flags/JP.png create mode 100644 res/flags/KE.png create mode 100644 res/flags/KG.png create mode 100644 res/flags/KH.png create mode 100644 res/flags/KI.png create mode 100644 res/flags/KM.png create mode 100644 res/flags/KN.png create mode 100644 res/flags/KP.png create mode 100644 res/flags/KR.png create mode 100644 res/flags/KW.png create mode 100644 res/flags/KY.png create mode 100644 res/flags/KZ.png create mode 100644 res/flags/LA.png create mode 100644 res/flags/LB.png create mode 100644 res/flags/LC.png create mode 100644 res/flags/LI.png create mode 100644 res/flags/LK.png create mode 100644 res/flags/LR.png create mode 100644 res/flags/LS.png create mode 100644 res/flags/LT.png create mode 100644 res/flags/LU.png create mode 100644 res/flags/LV.png create mode 100644 res/flags/LY.png create mode 100644 res/flags/MA.png create mode 100644 res/flags/MC.png create mode 100644 res/flags/MD.png create mode 100644 res/flags/ME.png create mode 100644 res/flags/MF.png create mode 100644 res/flags/MG.png create mode 100644 res/flags/MH.png create mode 100644 res/flags/MK.png create mode 100644 res/flags/ML.png create mode 100644 res/flags/MM.png create mode 100644 res/flags/MN.png create mode 100644 res/flags/MO.png create mode 100644 res/flags/MP.png create mode 100644 res/flags/MQ.png create mode 100644 res/flags/MR.png create mode 100644 res/flags/MS.png create mode 100644 res/flags/MT.png create mode 100644 res/flags/MU.png create mode 100644 res/flags/MV.png create mode 100644 res/flags/MW.png create mode 100644 res/flags/MX.png create mode 100644 res/flags/MY.png create mode 100644 res/flags/MZ.png create mode 100644 res/flags/NA.png create mode 100644 res/flags/NC.png create mode 100644 res/flags/NE.png create mode 100644 res/flags/NF.png create mode 100644 res/flags/NG.png create mode 100644 res/flags/NI.png create mode 100644 res/flags/NL.png create mode 100644 res/flags/NO.png create mode 100644 res/flags/NP.png create mode 100644 res/flags/NR.png create mode 100644 res/flags/NU.png create mode 100644 res/flags/NZ.png create mode 100644 res/flags/OM.png create mode 100644 res/flags/PA.png create mode 100644 res/flags/PE.png create mode 100644 res/flags/PF.png create mode 100644 res/flags/PG.png create mode 100644 res/flags/PH.png create mode 100644 res/flags/PK.png create mode 100644 res/flags/PL.png create mode 100644 res/flags/PM.png create mode 100644 res/flags/PN.png create mode 100644 res/flags/PR.png create mode 100644 res/flags/PS.png create mode 100644 res/flags/PT.png create mode 100644 res/flags/PW.png create mode 100644 res/flags/PY.png create mode 100644 res/flags/QA.png create mode 100644 res/flags/RE.png create mode 100644 res/flags/RO.png create mode 100644 res/flags/RS.png create mode 100644 res/flags/RU.png create mode 100644 res/flags/RW.png create mode 100644 res/flags/SA.png create mode 100644 res/flags/SB.png create mode 100644 res/flags/SC.png create mode 100644 res/flags/SD.png create mode 100644 res/flags/SE.png create mode 100644 res/flags/SG.png create mode 100644 res/flags/SH.png create mode 100644 res/flags/SI.png create mode 100644 res/flags/SJ.png create mode 100644 res/flags/SK.png create mode 100644 res/flags/SL.png create mode 100644 res/flags/SM.png create mode 100644 res/flags/SN.png create mode 100644 res/flags/SO.png create mode 100644 res/flags/SR.png create mode 100644 res/flags/SS.png create mode 100644 res/flags/ST.png create mode 100644 res/flags/SV.png create mode 100644 res/flags/SX.png create mode 100644 res/flags/SY.png create mode 100644 res/flags/SZ.png create mode 100644 res/flags/TC.png create mode 100644 res/flags/TD.png create mode 100644 res/flags/TF.png create mode 100644 res/flags/TG.png create mode 100644 res/flags/TH.png create mode 100644 res/flags/TJ.png create mode 100644 res/flags/TK.png create mode 100644 res/flags/TL.png create mode 100644 res/flags/TM.png create mode 100644 res/flags/TN.png create mode 100644 res/flags/TO.png create mode 100644 res/flags/TR.png create mode 100644 res/flags/TT.png create mode 100644 res/flags/TV.png create mode 100644 res/flags/TW.png create mode 100644 res/flags/TZ.png create mode 100644 res/flags/UA.png create mode 100644 res/flags/UG.png create mode 100644 res/flags/US.png create mode 100644 res/flags/UY.png create mode 100644 res/flags/UZ.png create mode 100644 res/flags/VA.png create mode 100644 res/flags/VC.png create mode 100644 res/flags/VE.png create mode 100644 res/flags/VG.png create mode 100644 res/flags/VI.png create mode 100644 res/flags/VN.png create mode 100644 res/flags/VU.png create mode 100644 res/flags/WF.png create mode 100644 res/flags/WS.png create mode 100644 res/flags/YE.png create mode 100644 res/flags/YT.png create mode 100644 res/flags/ZA.png create mode 100644 res/flags/ZM.png create mode 100644 res/flags/ZW.png create mode 100755 res/genflags.sh diff --git a/res/flags/AD.png b/res/flags/AD.png new file mode 100644 index 0000000000000000000000000000000000000000..8e777b98227af5bb2cf1994491f8fbe8841922a7 GIT binary patch literal 1143 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`z(E;1l8sRB-?PeFljY z45F+3!%BYLVg7fY0fPSCVZ0Zhah})uf`ApWI9wL2p6UMshCg?if8AySl0f!9ur9D^ z#oumlK0c;<dymQSHDR~+nLIqA{qs8e{XmeJKm`F|#cwZ)othkUV`9+72`)D$7@S_} z_5Qr@{Xlhy0{^h$E4!?Z^(MSt6nn4B>RG$!$$0_ScUavIfGP+GFMfPn>C{~R2d(;d z=NmknC4Xjx_p@UPa1#Q;i|!uOIX*k!af{T$<*JY7$sAuA@Zf;P{XjLK6+qd?$JGxm zNjNY&ZvUdR1B+q~EQx=1Oa&+l^xDtcEMKqjJ~*O%Y<2j9Lt0<1^8UHS3=9ysum9d- z_<4&JNCJHg2`hNeK^VZWEx55v3P>@Q1o;IsI6S+N2I3@nySp%Su*!M>Ih+L^k;Ond z0gOLnJDmqI*h@TpUD+S93JNd@mTKDY0)<w3x;TbtoKH@W2x$<sZa87s$Y9K^Ep2UW z&8{wP&d(vBfBf`ueFY7b9$!C~5T6*QAg?I4V81ZGILAQGNY_wbS!X}zVDD)6aR2)U zE^s)XyK&^onLCFrow{{Q%=z58dj~I`ym|EM*}Kfn=PsYVef;`)dj$gxiOX{p7bZRw zoEUh~FyfDZwD|l9Gp5X$)a9zDYpZOmZLMz3pFQKLxQLkOWVv|}Pd^;FzkrcpiKYC_ z(A(})fR0uzag8WRNi0dVN-jzTQVd20hUU5krn-jaA%<pF21Ztf=Gq2^Rt5%_Z)ZF} z(U6;;l9^VCTf?HZ3o$?q<{%r2^V3So6N^$A^h=A2^mFo)6La*7Gk^m6Df!9zp1FzX zslJKnnaSC@=KA`Xc`2zCdKo3TIW=Xo)&Y%>02vXIQJR}%W#y8eT$-DjS7K!q0Mt~> zV7UDMZhbU0VDqf3JW?~$GfEiD4GgMft~X&<6P}q;lEGkTU|?|EWRX2kjU<v?zL~kH zC6xuK44EJY>KB)#?|)z52UH}EtSAJiiowvt($v5h2+W(OoXZ0$5kgWDoLQC1U~X=1 zWa1Q*dgM7!Ruf4!G{}=7Ei)(8N?*SyH9a#wPd6<mF})aMoxY=s9+2vmssqIpgQu&X J%Q~loCIDg?v5^1( literal 0 HcmV?d00001 diff --git a/res/flags/AE.png b/res/flags/AE.png new file mode 100644 index 0000000000000000000000000000000000000000..1c4a2bb790ded3eaf2792cefe1122dca99000ee1 GIT binary patch literal 841 zcmZ`zT}V@57=EXlmSIh(v`pw<CFc3gOqVB#Ha6U`w&q-DV6fwMcFw{5v2%{;>cV~y zyDIvTQg2L#<b~;lLyhplZo2RfiAF-J3#A{#t^%X6z9SSX>V@}v-k;}rpYOKAUYDP@ zKMw%%X{*_Zu~^A%+4!B#Q*#*9oY7_k7{9aQ2cyCLL66mG1Bf06=(+{)9gn&`0>}v9 zvm1bV1W*_rm~N=Wi>r?FE(^wFGMNV0%vRCP!wOR*w(3K_>w0BQsw9-ssAuk7A6lA> z%}roQIwvPRIhn?Ri+Eglr>0VB^^7bJ4G+g+u}y$_l?qf!C>8)T_WM<I6qi=vMkP7z zjc|4?;ZvH{b9H9u(Ue$mvpsCRBw}=L<<~aT0xohT+Gff9pefL170Bha`FO<8W}~ZY z;q{VXXBX0%8~O+Czp9x{UFf-+@ac|}rQSY!+O4G>r0HS*$fuldvB$mZ?!}gcU5ICP zmnN2*`&JJm_Qb}<NA_;?#lMjJ?5VlLa<9BnGj@7DxxSi9w=DJ)ow=M<vWCr$NtR~G z%SbHciLe+zk4S?KRq05Bi>#)Qo+1q=5J@4lyu!c#Ll6jg1z+d?1y8ycTd=^OIEW#i zbcKnqK*(Z*@P|B%pAdOGAiN<DK?fL)wK1IFY10`9LI`@<jtX81_^-A1jp7qU$_W=Q z2U;o09P-EkHYib)1B*l;httoAzc^d>D9XwT94|pNLeY0GCjQN761)-*q#mJ{W9<!? zvoFKTCInciGt7dZe2@^^xtWcy9g_+(NiNI+@?=dFs>ETq`CvYXDcTH5qY!1GQcs!& yM=RdoU3tdtqLT)n;Abg<h_IXx3hI1*h7%Pt!f2_$5RWz;#Uh|BcJrvoed8yUBoaLU literal 0 HcmV?d00001 diff --git a/res/flags/AF.png b/res/flags/AF.png new file mode 100644 index 0000000000000000000000000000000000000000..7d369371f5e6264edda38124db900c281a7ba76d GIT binary patch literal 1144 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`z(E;1l8sRB-?PeIV(= zz_5>jVLuq{V`OkiW?-1Zz%Uab2$2GkAX%8=1I)|^SXuWoF+s(Fx?n~f=Hol9r+3!E z;<Ud0Q3(m4;ZQRf7@Qdxjwpzq^RhXisd_oY|D?9Yc|XS^iW1I=AWL0Xm@b67pYyW4 z6z=zQ*{n;UzUMq`fFdqwOboLb-1xX}H5Xit3Az~LbvZfstheQr*x*|&1#X4hKv`FI z)~or^mt*~}WyIc})Oa~M;BuTlP{cKh6(|b?K&wxhXy5HFzn-0RH7fFYMm&&x(o`E_ zHN^2i@0_+ayw_5Dx1#KBedTFuqy5ZGE=gdw!90GDlk*S{_aQDWkjKGZgNGh+K-E+w zeghiHSQ6wH%;50sMjD8d<n8Xl(7`I}0pxHNctjQh=>#zTknMCH$Y3w=^mS!_$SNqn zBv`6x!wVEz?djqeqH#VsLBgj&P@LhUp(BGax3;vjw6-<7y10aZ?(wsSPaoG;=<xOP zh;Rw<iE#?z3igX~3-gO}4D^h26?OLWjdc$8j&=|Czt3>l$5}a9IM}$D+gsbmGFv*@ zx|-cxJzd<#GTgkJ-(NppKHi?k@_)mD1rH`%*zlplgJ<W87c*|`_|bA?$rBMD<KWAe zjEy#LDlXdC>K#|-m>5{ddGcYWFQ5M(UO5H^*+2yWxAanww^U19BT7;dOH!?pi&B9U zgOP!uxvqh!uAzB|p_!F|k(Hsjwt=CQfx+e584pl2<mRVjrd8tBu&C`q3{ZnP$cEzl zw370~qErU`(&8fhoc!d(9R1=9pn!f#ezLx2Zen_>Z(@38a<;CyzJ6w2N@|5(MoDf? zP1&q<KqDkTMucRP<|bKLx#TC8=BDPASXl)CH5D@$F8{w<A59I|JS!`Y)XemZ5(X0k zgUYDP+dwtqNajG*glDFdWH6W+7`)Vf3(SWMl1NH?Gjmf*DhpB>GC}UsFD^^p|GvNv z%^cqlpehDK6H8MAV<0eZo^mb^s6+_KoZ!r=R0b1s19MBKU(QBhKv_*B+0Y<QhP2F_ rR4aY`qSW-v{5;*XoW%5EkahZwZhAoK<1O7UKurvuu6{1-oD!M<Zwg>+ literal 0 HcmV?d00001 diff --git a/res/flags/AG.png b/res/flags/AG.png new file mode 100644 index 0000000000000000000000000000000000000000..78c03626bae174c6201b23be4bf25b07960bfebb GIT binary patch literal 1394 zcmZ`#drXs86u&L)z(Q&3ke8VugBFb7*Oo`&8zF!#&`1#qDn!{R<?Dk!>DPjY8X^>i zxS32Qgb)|m91AX{!m=2^;ha2Wg@I-U|3HEu4-u!#Ww?!<3R%!(C+D7X?(h75=iJ=7 z%#2hfBand*VoKA*a>zSf$HNU`7lWpTL{lfpk`TIf&hsw?9qvKOG`S3+<2-~as}WiQ zsB#`58y}&?0)+4;g#64cU0Lx6Q3f;9b0k2RnwmP`&VpjAQ7D@?XnoImKZ@ph2AB_< z>cyahhtMEG4Xs}|p<gn01yEh<!Q9+XP@r2ZMpw$Woltv1gc=aQ!JHi47>8Ho>F+_I zQYi?ANaNpWJjuN0cz3492O`vf01jOsgWuusKJwTO&xr}A)|D{kZfsw_>$5)L0}<*v zGXrqwZjeVgyqm1xc<(^u7e?P1#*N-naZ)(Y6F2<Brb7(~;Lrt*>pg7lm0ceM9leB% zJ<QT>c6m4J*c%QA;Lrum#uku#!q4;4-$0fDRMNlcmH|LE2tRW|bxBrs`5>!em{l<Z z4)`dWJK&G?He4B*eK|6-y5TN9E98Ep<j=dmuCK3e%DsahWGP-PE&qo&+1#0O`#)>1 zTm&|EEFj`ZYx{=wo?zedH;(8XeW&1mDOPz#HcFhkuX0@q_os@{$MpBo;Ihq}mPbM^ zczvGfl1HI%w@PIa_h~wZP372j$1_2bAQdO&gpDc-{L?ErerQM_=yY^A9M>G34zt5y zrsgFk_=$2qt!=cQ`-1L4quHw^iC(7?d_T-`v@~6()qmwv|J~VdTY65nekQCx6H;G& z-9I<upe(=2F3H}1B=zutsheYiO?Jt?eA$k0bz!l}d8<&NB@9ZPdgbB#?OTOLRWbDf zSz2Nv|9H0g{N-=IzhHTIF}zF4NLxwGU|emDJyo0{8Mxiw7aGFjwpG{K@t+>aC&nX% zogJiwB*~5!&m+et<kJ=>-7e|lUM6N|XNk+)K8c;~^oV<WX1IN^d9rJ*YqEK<eVCyx zihEqs|Mi?NTVpKNn^Qj58FVZ2`i0_!CmNGZa-MwpbYXePw6L<Yyil6bNM7WZj6b?C zbe@-C?r$J33T>0C+U&O2;5*ZGy+67ktfDa8ckS;o_*|}4l4~teSP5KdAs`_kUm%L$ zM@I-mIf59RFT@3+J$wPq=TAJ)JbXi7FcoQ4<^L~etr<HC0+DM2X;N9s6cz$uHqwIW zO-h9xBQ*eEMJ6RCH7L}COrh2)brB*A(;AD2V|z7LgZ@Nm^Hmt(?;4S#u^9?+Tx?R> z4202&<C!2Lk)Un88+(iMdLE9a5n8pzilSop7;@$V$8XD=P0nF$kyV3Y;`p)4hb{pn zU<*a2H4xTvGl8_O_hDqIx_8B#@zxw!4zQ3QDlVEI2_~v)a2kQa-ZCd!dz?U`=&0mF zt49){w|h(Ppj?VnT0Mbdn1xVlO~we7UZEyk%dn)>y^uz_Xkri{sU$;uHM!vQzgr3F A5C8xG literal 0 HcmV?d00001 diff --git a/res/flags/AI.png b/res/flags/AI.png new file mode 100644 index 0000000000000000000000000000000000000000..8a707823107c6539e77e852aeb80f08445cb55ee GIT binary patch literal 1515 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`#@x;1l8sRB-?P{o@t= zch~G{=-eh_*UP5cyegyPrc;Pd)Jz7odIzVrb@_b{=B!N2Uc{hO!=O@Y<kr`eI_c_^ zrAJmDDCpe1y=>wQr_kD(RXwTwH)pNdyZUfc@ftzX4hH2~pkiETeP+kToURKM-Op<~ zU(8&5JE`c3zVm~+9w7JWlm+|BCv3=Qk8p277y`6fp_)Otnn4kaR6s7dWgmFmHsG3V z;0?#%TekjJbsaCt7~Qf9xM>$~-Nyf#UEm%2fLx<=29-LXVrI3Pu$<o9`k6h`=9RWD z%5R#Z;nvKcR2!Bsr>1%1wF4L4uH3Z0Z`t|UiP!A{k8C;l@Zi}ObCxY^T9TBxK+~xg z;u2=H>a{x#{r_<8|C#dtFZO-^_Qok@0)t{rbH|ob^EU6PnVRU=E@#udHmmcFQ%FeS zT+^VLbEj;-JY(g;tX@5fMu;Jdsx^yNZTo+J`Tu)s{$FVSczc_9a39c+in#tbk0wdu zW}t(aH5)_SnsbaZ)$O~19%t2Rbc~r-RkYC3q7E7+O4Xe+HvGRf;s5#8|JSBIJ~da_ zsTJrQpgAA~@W2N#U|N9D0SrC36qxImKJD4V^DiG?e*5yynw^I^b->zzQp&Yly0y8J zwl2E#XWD`LCZS!B*at<ZaxK4MZAis@<FFnEm1>kI23ZZX0u(z~5CenCjMs6%G{;yH z<QL4~@a#q!h?C^)?!wT)D(eB{a29w(76a)7F#eG3bRNiHFY)wsWq-&jD8M9Gs%gUu z)WhrP;uxZFJ~=@`sX@>@At5CxEipCu`GY5qo;`f}SloeO!JGvXHgv3*v7=?llr24L z=Im)&G-*@Us##VMe$K(((eB~?_YYh+apTC9Gj|SMI(6&VH9np6_YYn?dGqMivv&_) zK7IT6^>cXv2@x3~u4&xd{T)4BeVx7C{vJMFexAPG=TDqDb&m1$(`Qe`MZ`p>Pnk9~ zJR~gi`ju-}%}vZqo1aES-M(dQwR=}})$d>GK66YePhH8poPK5w>$KUn>F@UZ<QCJ5 z+LQ8f(^KuRby0iM-tPJ;ZPxUZCE&oav(ek~ZtqKeuBTJPwEO#;yW9UCIOu%i37@=W z)teuklbLQjVey-5SNv@bLz(514@ZRgomm(d3U)_J{*?GG0SqhE64!{5l*E!$tK_0o zAjM#0U}&yuV5)0q9%5)_Wng4wXs&HwXk}n<`F6$w6b-rgDVb@NxHT+lyAT7^U=FgO zI6tkVJh3R1LBF)PNIxe(IWb4SI0Go4pOT-f@0pvJp6Z*Jo|&AjYp$=KnU|7Up_fsT zn^RLZYaP%C36K#X8Kt>NR#q<g$)&lec_mg>0YFW~42H}9@770C12)gf$|E&1J)?xd z%)p@P-rlX))r4oJlw>d%8W|WI*-#b;R3nLGmv3fnYDr~5Dnlm7f%?T|>HFUo_yHA( zBP$94s$wuSu{1R>1_JZuDd+NlN(7OV1ZP&IGME@xS~yMA`D6~1)I^dD4f142%gjl& q($_CaP0!5F(@o1sOfLr6rtj#f2c(L-cBuk2F?hQAxvX<aXaWE&q(tKY literal 0 HcmV?d00001 diff --git a/res/flags/AL.png b/res/flags/AL.png new file mode 100644 index 0000000000000000000000000000000000000000..b19c7bc52de9b2a60b4a737224c75a4951673668 GIT binary patch literal 1262 zcmZ`%ZERCj7(VT~0{z(5!P?78w}u3D!gg;5rQxz4v}vV<b&jsX%@ys}ZF{?Z+1}1= zS)f6~#E@W&2IxSN`D4<_M2%UpX^cxu&?sXX6OG6emDGXp<EJ6&Q)-%O;?23w`@GNl zyze=uy(fEn_A6!0GD3*bVYj*vwWW7`4RApw2_s0tW~Z5uH&4s&`D&5t19q2_knsly z$vsQRACPiILb41YYhFUwvxI0;=NArj5hA+M+wHc&u)4bXLyNw$er(ZWA+3-~3FM}( z_4^k6$`;*qtqv&=918TZ4P6B_b#7Brs=mQ3S6ot4KyWC~%ad=n=x5YapIp&aEA5vn z^b!dW9Lj5I3RR2(&T6Oug<`!(Bo~QsP9QiG=oQap4Ru7Jl!-)GAV@2vE1J#N*Cki9 zN+f6pf<u8`@yuzcGn<-@su~9siVmq12o42$*@Khd%=1+9g(meYO=?bA*B}-H!J$Ae z->7`|TP=G06yNAtPc&}aA(aBbp+GMiDu}LYT3w>99#}o0VnAbsSCg0J8)#fcB)EF| z$iCZOhDwS5;C?H4u2yG9vLR(3%piL2zrPM!mO<7D4ySG1ceSbpu`1ivrG&KNu$tWu zEeE`mJEz*4yK3;&Tupzn<Mr6xE$2Nqy523OC+>-lTb8y?`)@VAI1x#^KI?od{k!b> z10O$Jh!#VI;YgIfQ(XH=OHEJl!I(c9O89s#9vGgSTfX_h%128}OJ9BXh4RS7#mSj7 z^QYgqcx<2dg}r%C${raQwFccncg)k3_gMU{^nvK(<Bx<6kJRNoi6@SleTSZM@PlKv zZ3{z%!f^D?nznf=Kg2AZI(g}x%kRDV_N?~csM!2y^2uZM8%OrUe#<@hrxaIW0^5fU z&t52fD%%9xfDrTv92-b;2&9uSnA#a*yTRl(>}Hux)?nJs7+8k+{OicK|7wUQgM4W0 z{~M-HT=$^CRN5hv3<*#B(j1|)nKT_s27EC(6M;YnlL6Wh_k}s9FU$vq+f6jhCxYB) zM?{FnCPwme7(tarxFgxPpJlDdKsL@L1eWbZQ-&C3{#q>k&()s$^H|o-@!^O-j0`h+ zw&pH8nyNYfcpl?}LWGzYrug&ZDlD6;EKWYo31caa@TK$7nUV1OzodHpGso$Mix_t8 zF)};xn4Wp*S^^eT)to+loFlt;?KE0$%zrwCVp~<Q-{l}7KE|;$o#w)PGSME2`NEmf YZnU|(17R_0>_-!E*m|sU7Vq)D0rHBFG5`Po literal 0 HcmV?d00001 diff --git a/res/flags/AM.png b/res/flags/AM.png new file mode 100644 index 0000000000000000000000000000000000000000..b39695fd4985429e3e5be9d040bffec6661ce9f3 GIT binary patch literal 744 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`YL6XFV_@87?FlR*fG zZZHV@D&{emEMhQTz+kvIEH?e)a>h?97=Q=}CSLhd38WZHg8YIR9G=|(S<jf{?e4<R z!7A$k<Zu>vL>2?-1Tg-P?Q|Z<U@!6Xb!C6ZDk#7tSgL8m3ls|Uba4!kxV-herD%fz z1IxvU8}6jHwniLq(mBE;wxNMlCxJ0=%Wsdl_kAq`e4e`OovAZB!DYAfMOWotDMtz< z4ClG|Oc(r|d*qYE#(iq1?*|&n7pD0{JyW)x4m4b~#5JNMC9x#cD!C{XNHG{07@F%E znCcpuhZve!85mg^nrj;vS{WEzzMb&^MMG|WN@iLmZVijtF2n#en1gI6&QB{TPb^Ah z&@U}6($C3HPR!9S&HxJNr{pK=d*&vlr}`$QXC`Osn(OOl=B1=o=w+1T=G2tUS_d>j z0%Sx;Mrm%6m6c0=a%paAUWt`e08mpggW>Z3yY<o3fX%bA@<`20&nRIqGcc&Sw|6Uc zHQ|{lB^eBcMg|5)Hk1Vd)kq@Q<(rwCT2fh%%8&_ipnh>#`u_I?en3Uy$cjRMsu&DS zEKLoJfxx_Z%DFtC5&<M7!I@RSfHgC4VrRGja;qkiTxgIdLt17|s+GQeQEGZ-ex7bx fPGWj7$TEFLUp*kz#wGI<sENVT)z4*}Q$iB}c_8Oa literal 0 HcmV?d00001 diff --git a/res/flags/AO.png b/res/flags/AO.png new file mode 100644 index 0000000000000000000000000000000000000000..5aee75af1b8f2984e2ac0f7f5aeaaaefe710415d GIT binary patch literal 1070 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`!UQ;1l8sRB-?P{d0n9 zP{glxP5{OhR68%Odeunzg0$*6pg3HOpxRk}wJX{xFFItNH_2W#P)3%$YN-6ARPMT^ z@`F_Q=WVhV<y3(NUKCUZq6-4*H*A&P&z8PrqkK_B?NzVLZ6~D*{OakP!fEWn)p8=+ zV<iftgwpwhQrUzz6^hOe7XdPWF68E6T+q!|l+4A+$;iygFuRS<+Ju#nkwIF5NnMG# zB$=x!lRG_vv!{YbfR_=dJ~N7Qeg|K7InTTfzK&9!Xg>}XP?&)L9}lB}7E6FDyQVS= zknL*C7VN<emjx<NlwoECg(L_RrpdblDaMi@zhDN3XE)M7oFs2|7lsa2Sq~tGv%n*= z7)U38@rP`u^FRiBiKnkC`$JYi0VcsxO&eaI&=OA<#}JM4$q5oZ4T9nfCk+$XRZbXg z-mqz7^7O|Ko;-T?@af~@O6m$4DmqG9YI=>XenDPQZef0Lj)I<koLo~vL#|#iHQBmF zF=oRYK9Lu%UP?<yNzR_(v?IaNSi)fYhAo@6ZEXD%@Z`-KS(&+WVq?zUF?f3Bj;+n! zJ+(Dw{}?>^bC!vzxyjk-@FByqJsm8;ffo%U-Y_>uDD)jxY-i|Ud6fTwf#KOK{o8r{ zZ<>MbRV{IiC`m~yNwrEYN(E93Mh1rFx(24YhUOuLW>yA9R)*%<28LD!2A6MVJV4Qq zo1c=IR*74~qP7b$Kn>;~8;bMOO3D+9QW^A1i;MJg@{<#D^ouiq0{SWW$@-qTiRr1n ziRqci*}CTX`k8qtsTFz|CAm2@WwX`+jgSBt5t31wn`C9>lAm0fo0?Z*WfcI_RLo$w z{Qqu!G&NxJtgJjzGt)Cl7>o@JYDDYffNI2%%z>&2&rB)FU@$Q?n11K%VW1L8BqhF? zxv3?U1*r^~AouAPm!<E2U*Lykj&BH16@#IPrKy225STYlIhO}iB8X&8aAp-yg{6g= z)9%*N5}>3el4NL*Cqr6hPO6o@eo<<AW`3S-T25kmF~~N3M}Iva_2-m-D^L@Ir>mdK II;Vst05+0I-~a#s literal 0 HcmV?d00001 diff --git a/res/flags/AQ.png b/res/flags/AQ.png new file mode 100644 index 0000000000000000000000000000000000000000..fa76fbb278419bf8f476d23c7d50d79c6d720617 GIT binary patch literal 1405 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`(>3;1l8sRB-?PeXH7Y zKxA2S&b<085LwiKxNrm%cWJqhGw)W`+*_f2S1oJLS=5{bk_ZJbHc+K&%f(G+-hBV{ z_s6flkKg=Qed1NoqB}0l7l2Z5^)4+J?HkTRYynzVu<*{W-~ayq|NrURpGyzFG_HAI z4K@&HOY)2xv-ds=?z;kH1Jy4&_yVX52rfSO><ly$tjxag{L1669=!fOYtOT_Cttt& z@*Ak&#fP6ky+B=1OM#52N!Kns_zaYK|K)e-lDjtb=i%<Lt~<B+>>HpI(2#(hD?q0L zk!SlQpksi7K=AhS@0iKgAg0;Wohw^%7wA-o6p+0C>U#*tg&@0tPI73xu=~=xe;^Nm zz`Xs>k^Sz~eyL&ggM|lQOxyKz)$vy+ZhZuX6;Rpj=ih*aAgctjL2&_&5g;RJ`i+m@ zet-G#r)I@HWMyz)03DD%`zFxp<F`JpJN3G3>0LV{KSGq*)}IGD56A`@2oV7$fX<?3 zJs`zc666=m;PC858i<qR?e4<R!7A$k<Zu>vL>2?-1Tg-P?Q|Z<U@!6Xb!C6ZDk#7t zSgL8m3)I8o>EaloaXvXg!lyw{oZ+OQBcn05wzM_7y7-iCo#ST@pFXayprN9p)TN`Y zrl)vPMO9Z>TYde46-(AE>QY(0Y~8|@OV=)5&Cc?Rt<CM2N0HjHv}a<|!W<;CrEP7a zt*ccm+1=IC#ly{Q%O|+m^84%Ox6J8ZKi@vUfI(-exP*vI(*$l_?*0pxyRS4it#~1! zVt?e=(buXDsX|{TO$wgyB<S)b<1a>EzietKx>;qpv(lsJCu^(g(S%slrBzj_Peo5W z42lem4UP`Ke__S-CD-p<y49w0{oci!SMOfFeSQ6M^TbC>P6h`YE`GJ;rE%K1S+?o# z_Wa})ThwkUe0kAP?`e9``;wk&xkNnf+<%an!BpDi_{`@kjsk;9wZt`|BqgyV)hf9t z6-Y4{85o-D8kp)Dnui#gSs55v8JcSw7+M(^T)v(007XM?eoAIqC2kFi+AhQZHJF2J zD9%qSDNig)Wza7zF4E7*PfpCyFU|l8=%?f->wD%Vrl<NQre`K+>zeE9XXd4(R_JAv z<mS|r%~}UELIPw&NJeRHl9iQ9esXDUYF>$zRRB;^F@xdq|GV|k)PT*ivhqmHOwTA` zFtIdq{9V2rs74&g9H^S`%#@N026GdW?l*0RfJ!8hl=x=mrj}F|q%vfJ+^1h$mcIXe zfghSVz9B$W42C9_rUu49VBS3CTpmz~Ad)%3nN_I_W){XKPW@HRNkB<WB+1YqPlmM2 soK!1){i4+L%=|pvw4B8BVvue6j)8hWN?9rml<XNiUHx3vIVCg!0Kc4e#Q*>R literal 0 HcmV?d00001 diff --git a/res/flags/AR.png b/res/flags/AR.png new file mode 100644 index 0000000000000000000000000000000000000000..28750f42a84aca02908a5c7af99f452d6a8357ef GIT binary patch literal 955 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lsFmS6XFV_@87>)vgUsA zY6NQC_85V-KWPObn8>@YzrpCw>-V1?-njxqK*qbTe}IDjf#BcY*H?GlSQ-IDKn9Te z=jZqPd;4$C5C@|Bd-{P~sG4OFH<m%w;4u?!FNlHa5@ZJheZg_{Fwm0>j3q&S!3+-1 zZlr-YN#5=*3>~bp9zYIffk$L9kWK*O57|!VfeiK%PhVH|hpd7EOoFAFHoQQgR!<kl z5RLQ62@)<1g6a&X3?DK~IbnF1ky~4uyNP{Layt{BpI)9^oL!xSyox#lYm?I<rA0}P zgbeIF{Djz+EJ;my`s87Zh$XA5YN}}Ho1&~&QnR9NX%txnELgofKOrL}hv{+i6Q6|# z&fGb4>C~-bV#nA|-aOd2w|TK`ll$rqM}+H}IT#q0y_c4mYo$3G=pfY+*NBpo#FA92 z<f2p{#b9J$Xs&Bus%vN-VrXV%U}R-zu5DmwWnggmcE$q~4Y~O#nQ4`{H7sho5Cha; z4zi&*Kdq!Zu_%>6zqGhWKPNvqF-N~R11O-MlAo;anVXoN>YJFJnVhX_uCJe&my%kc zmr;_NQ&To;9nc5~kP#snrMXE~RxbI;rManjC014eKuyIAhRgr&)<;tVHqXk+BQ-NU zqlCfKz@TCV^BbTVaU^q~YQi&9N-`KM3=AG`Jn#spL=s7fZ)R?4No7GQLng?5`o(4G z``;J%p_$_w0#wCdXkuw<U<?H2%~Q_h0hI_MnG>8@mC9gZX=&o*F!9qyprj^}WN45l vLt17|s+GQeQEGZ-ex7bxPGWj7$Toe)AUz<JvP)(gP!ofvtDnm{r-UW|R{w>n literal 0 HcmV?d00001 diff --git a/res/flags/AS.png b/res/flags/AS.png new file mode 100644 index 0000000000000000000000000000000000000000..36ba9b34df2ad79233575adbeb183e9b1e98b847 GIT binary patch literal 1651 zcmZ{i2~<-@6ov-~qIdvNDO&NgrJ@nU_X4IV50HXTKz$e?9B|<zA-g6JlNS*ymSc*_ zX)TKzYFr9c>jH`t5D=-LC4ek0ELA`StP}%+AVvtL6HyyW`_9bVH#6UV@7$T2Ob-dP zvi#T*0ALjy<R1#{97CUM2FGGck^mZ#z!&!gAU9>Ij%^O-pK^jiaR9c?2O#k~07l?a zVmAN^6o4KU09Xb9_EJ^xYA*mxE9om40T6ib-~j;q4;%Ci8_yCjodAPAdHL?oLyDF| z2k)_QfIkVa9YCay`Kp-NtB(7ytK>;tr*brEwYI0n2!<-i^GP6j7FdIk=mI-DgSM_h z_)X`DU!K?8{OeYALtf^Eqz##y7@E%Z2||Gx;LHT;+)Y=rZ1FToWGPG0e(=O#)y*-D zMz7bu80alXWTkxVupKca$l$C}GNv1S=frSM6TqDY)-N^*jkLy-UBU|^WAFWVsK5M% zuDe^W)4hKEy82{lDmG;|3gTTr%39CXrrSe9FGzql&4lGliU_r#?^wXNNZ;7FGrg~* zY^1YGKQaR2!ta$<+frSTolNYZnx?pew3YLID=uhlYom}D#1zl7_LL^Rbg;BcKhXaM zHw=&4YaVyCKka^UNh$gP1!v;c_Vx7*4-ZcWx1lj9y|?)4`*1IZo_4AeJL*;1p(pn% zb5-k{8_SC(rs+DKrgL~<#M?AS$J5l0^><b@7R#EhCfvwcS(m5Kbk^ubweLKPzpUZ9 z-rqLU7EeVZN|}oG11FxVYsPweN40|wYxmyD=U-L%)D~>%YR(_g4o>j!_MttD9{SO- zQ@!Pvdv5)z>1r_ICsq;t*wSdVRM~YZ`^DWRUH^a)JYGdm@=sara>R>*nXraecwY*H z#)JqB2?JmK*#cQ$61^hOAM7@t8w4j)q(N)s(6Zk2{*8Y1@W+A(#se%KncGe?wN)(i zvVt1#V1Hi*xt_zC<(OzoW3jk?lWs0LFV;Ay*0*|H*+!P>On3N|J7z|AOivHJ?RH7( z;Sp~h;KZ{Frz)&)SIOKc?*y}ps-Mzwlg}I~N;<hee^2(&Qf1cOyzkE)@ub&P+^M-= z*<A1QDN6ow-rZ~0K3nAF=;n;g|A=gFe>^o~pDO+E0qdD@YBiy*uB)o8LCB<PJG+DX z4(wN6cX9URhAVJMRKhaO40=w{$^7inth{q27W3{rZD{skcl=xx=HQSh3p<S;r^uT$ z9`Yx(%!|@AWkrY6ii57qT-koJmZRsI&qoz*ulOB5QYdaKNT{rfDtW1CE7T{NwSH@1 zGk2+MsAXWrf>lSC%7<HDO|`bRCO?u5+<xp5aUrT~(_mAtXWX;4K%06Cn@_yAKOg#I z&>mry@~_XaSw;fj@<Kv&4awRC@79S3h$Ogdf`@TrJZOL$N};);R96a(LHPnh-7pHx z1*Kppdgs3I;RgaqELX&j|9?T|&W80+Kr=*;$MT6dwu}c5g<OV+V>xUwA{W91gd592 zf+cJL4`&NRoQ<wD1QEq>d0Q3>35j^y=EFJA#VmshhEO4i#xVa_jzYqVAux;%MRGtn ztuI0T#k}!{VL?2RKu7>8if+j;)BHCRA>tB3KtWNoa!IBSWM&)1!bK7u5ijKdk>P-d ze6yhJnKT4K_QntcQh>6=gNnMtkEYyL7Xy*$Mo5@wD<s_AsWiWaD`75hccIa4cxW)- qi^Mz(L1a9EC^p8GFJ=qmhH!{)*kWkb+@nr{A`l!9;-BNk+VMBRe}(1% literal 0 HcmV?d00001 diff --git a/res/flags/AT.png b/res/flags/AT.png new file mode 100644 index 0000000000000000000000000000000000000000..487fee823c27681db99d78f3a3f06f3eb6dd1416 GIT binary patch literal 701 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBC?OHx6XFV_@87@wR@3sW zy7_zOz`swQ|Ns9VC^*6X(IFtkSQ6wH%;50s2FNnTByV>Yh7ML)4<LuLz$3C4NGE{t zhis?wKn8n>r>`sfLsmfnCc#oo8(yH0rKgKyh{WaOgavX5A}&l0>x7szgq}z#Hz-bc z-Nex6kf*`K!n8A!V}i$o?q%X<Q%tHoi;P#*uViO%5YXu^Vl)H!S+&G9q9i4;B-JXp zC>2OC7#SFv>l&Eq8k&a~npqhbSs9vZ8yH#{7+k)c@c>0bZhlH;S|x4`i`p*405zC{ zY$(o8D=AMbN@dV5EiTf}$xlwq(J#&b3h1ZgC+mCWCZ?zQCZ=a5XX~2l>u2Vrq*mx< zl;q~rl+9WPG(rMoL`X(yZjzOiOMY@`ZfahMl~n*xQ!#_#^8dT_(bRy=v$FC?%}mcI zVK6f=sJgdzD^QI%k~vT{;h8BV84Q*N29JtYT?HzUL{j3LnVVWtS&+(*338u)aasEQ z_XU1v=J<vHRWTTvSehCb1A%$-lyiANB?3t11ZP$O!`0B(Ni%6`CQwcjNiH<VlOZiL sC)G+{zbG|5Ge1u^EhjO(7-X5gV~8G*dj0FA7*G>~r>mdKI;Vst06FQ@)Bpeg literal 0 HcmV?d00001 diff --git a/res/flags/AU.png b/res/flags/AU.png new file mode 100644 index 0000000000000000000000000000000000000000..7004861f7fcf4afb3baa9e4991a2c827ebf51e42 GIT binary patch literal 1719 zcmZ`(3sjR;9KVCj;eykUYA6rEN~Jx%4TR;68pF}HaD+IO1tNQIj6K{-5f#SF02u>8 zQo=AKA4oGFDWU=<K0=g^m3odCg5WDPD+3i|-Lb&gv7PVx?!CYJ`~B|!@qH^yN@V-t zrr-boeq0VK8ID1&+s7L|n{a439MEzmj|sqj`)k8O3|xnaImtW#R!;{YZ#@9dAe46p z0238}dl>*Qwg5oTRW~i11Ay0H(gJ=wBy@LocV(`<w_{(vxhW{L3WM8pV##V}WMpFO zcHm|EaC%W|y5-OEDhYo#07U?79J}EB-{q``EhR}Mw+bsSY(K6wx3$ZxBau=0iiWL8 z1$RrU+iF?`X@~Ivo83Y*+Q#8DgojtT<)>1zPp9SFQLS|9b<a!7hWJaIAt6r<W~X7r zvyHY(3d`w~l_FBUTZ_e(n9V2Y^t$n*A?`%TP7>)knc}3;oMfUiD9AZ+qLV^$lF1{) zQ5+#z2x$Nmk45fE0fyn_<w7tR8w%w@1nk;e?RVFYo*${*anbTczb<!#Olhw_bFb;l zQ2FKteT{VC*TlC!hfEZz*w3#FI>7npRYV|cwpz~y2gCXneQIvJQog5CU7(8IFg3Wc zRgmM1qAlgrMaR_DetP7lt@=Ppe$?awD8%D8*=*;D#G0{mihO-bc{~Ti;jWcaoJq+G znp6TK_r}<lldQRu(<8!Q84EF3J2P&NWm#?P6jx;?OeldhajT$JU|=PIPzh<HvB3yo zn_kKt<qbW@Tj`#R6JFpj9d|}!KCWbOI6IrYH#76tv}v$|?({vMQ2xRJM$*#KJ2*Hb z5*_g*j~Cw!1_V^VI-EMy$70pHn*#Ay_S&6YXy{fSAN#l=bYrt$yiudLXBh7AJP}Yq z(OcoGk1{4FE&{Q)uF6~sQ39I<3NRrYxR|Kp2n=w{7`-2<;yU33Yvl6cu{{`nyqCWz zVvZlwBy(9z{>)BsM&PtOe|koSL?jbR#kX(t_1@~~ze&L3-<b54|C<4LJZLXW;C#eA zf3E!p;>`CV_WJnjuHU0lWHS2>nT&rw_VcwB^A=p_AfwTwZyMBD5AKJ=>Pr$YQXHCx zp<kx|I<I-%2+G1d8UB^9$3N`ox!rfRTy1=^zOAmW;^#w;i#r<bS9cvB_9{&iE?mJ? z3bNy+i%mTBvbFQYiwp^>)Eq3wad7XkT}Srie&5C|-?d;{%-S;@f`hj^w$XD@98FK{ z>4Zv3YO|=n{uk9{M{0}k=FSVLhc(xlz2BJ;_O0Q{!?`(w4?Y0KK_<#F|1*2=Tyt<Q z7G(*T@$t5KhJmhZ6tz+J$EAMaQlb8nD~|5Q?B51L3c9Z63{IW123?*r+;{ijZ6v)p z|J;dne+^t8dYw8OWwF=H%YBL~oAhMh`Pt6pE#dlAy+Zg|bh7g5)?Ez_gav=s7@uO4 z2#r#PSTBVGh@{f!WNI{-M(5LF7}Q7xjZUP}7*y&{*AzEi5~#Hjr7ZjZ1+^P~gntQu z?mEGsl^ItG^-_SC40<F>D;8!U1_cBViB^no)k3+HCzLD2Dl#2Glp2Y26-8lGXRR?; zIiN+L%Yv^ksYMJ1ODi_1r5YoHkpx8sK-=X!hWv*!>c?Pkq)NHM2x4YYLl3Ol|7y-s zrNpQJw8;0VzRF<%<V^NBi>FjejoCUWP`Uy{3}$)D@47@tB6yPckOgS7W=B(_;E!&t zxTt{?e-Fwc<!Z=?o*fhSsBHTX+>G$pT%61WGG&&OfgpORT&dNNWm!VG!F3wKTugz( S<*L@5Pz1Q~i7ZE4M*cr$n^WNc literal 0 HcmV?d00001 diff --git a/res/flags/AW.png b/res/flags/AW.png new file mode 100644 index 0000000000000000000000000000000000000000..238084e4a895810b51b34591ac6c92047110506e GIT binary patch literal 938 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l-L{K6XFV_@87@g*m)O- zoVxD1^+MS|u0!Wtub#WL(=R!7-2<}WYW#ZdR5kA38`Y5AaoW2VD(>2IzkK@D?MYpi zG`-gr&dHu}8>kDS#i8?FeD~$m<%<G(Z$U)hq+9ph)EOXq;Uc&g4juQSCLh|iE3SW4 z=bZJ`_8kv^E;nWGX$Mk_B|(0{3=Yq3q=7g|-tI089jvk*Kn`btM`SUOP5|Q%*-qzy z4E7RFUsv{rtbzhef~A@^yg;EwPZ!4!jq}L~5<U%r;tVGZ4L5Jtw9$AW^9C7qb#Zfk zeR+E`OGZb<M8QDA!ki+ZNkNy4HWhuk@kB&q>Xgust5-Ij%*@EjeEs58Vk!6JeT@qz z8kUtC&73i7rg7r*%?J1n6ivIq7;%ovn&EV0GJArh^cx19^ln*)KMk@5LLK`LGBeB) zR_Fg?a&i&SF{&l55hW>!C8<`)MX5lF!N|bST-U%<*U&t~(9Fuf$jZ=M+rZGuz~J)j zj0Y$ha`RI%(<*UmSk!hQ2B^UtWJ7U&T1k0gQ7VIeX>pN$PJVJ?j(%|lP(VK=KUv>1 zH!(fcH!(dkIa}9UUq3T1CAC5?qa-({rfk+apb-)vBSJDtbCayBT=J7kb5rw5tgHfn znu-|=m;c|bkERA}o|TnHYG!&y34@t|LDjvzTY+lCk<5Xr3C~O^$zZTFFnCnF>MBr) zB$5)}%-qzH%7RpeOpyEZi_6mYzc27ZGsiassEWbR#M0Ej7zoUpr<}_JDiJ_3Cpfbz zl>w;0Da6618z`rVBo`Xw$&i+rlWL`}UzD1jnV+YdmXnxX46;n$F<cKwt%;g^45*30 M)78&qol`;+02B33vH$=8 literal 0 HcmV?d00001 diff --git a/res/flags/AX.png b/res/flags/AX.png new file mode 100644 index 0000000000000000000000000000000000000000..07ac7742ab09aff4309cddedda2148583b91b9d0 GIT binary patch literal 900 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l$amj6XFV_@87@A5WJKj zXqjm2^sBq2pC`y(7B&8{gsWk45JTW{G%2_^bI4+*kR=lF)2@NF0L7c81OgSWTV=9# zrRkQn2A|GwJWG%R8ue`%*YyLEYgU?mY!&*{Dg-3owTRrcSHCQ5{5(VEL#r@Q@DjfX z6bYDI0wORM=r-;=u>ToLg8YIR9G=}s1Bx*wdAqwXbg;^L06Clm9+AaBIsuG7WILS) zGT2KzeO=ifvI+_?36^Tw@B)P@JY5_^G|nd{Ncc1eiZh%vY-BLz)|R$rR~HwS2~auC z%Ve{s=Fc0ZCZ{_E4AX?!7zG0j3(Gh?H4`luPJ1>t^sJe)r)kloO(rr8PeU9WLVaVM zgT15OS@{kW?Mhg%JU<~LWlc8&%h!jS`R7}I{Mj$|uv7gX8$Sa>(gyL*Q?^w(0NtQk z;u=wsl30>zm0Xkxq!^4049#^7Omz*-Lk!KV42-M{&9w~-tqcq<-_Ce|q9HdwB{QuO zw}wS+7h-@K%t1C3=ckpFCl;kL=$953>F4ApC+6rEX8;BCQ}UDbJ#!P&Q+*TDGn2D* z&Gq#&^HNeP^fF3vb85<Ftpge%0Wu;aqck_k%E~1_ximL5uf)nK0H~>$!EpKi-TG*1 zz~)(5d8B5hXOu8lm>Te!r+|_jvN=#S;h8BV84QNT1_noqWI!<~iDZ{=W^QUpWkD)K zCdh&M#bxRH-xv4+6^SD&3IVEOFf_3=H82JO^X4h%@_<SNkdy>xR;4nS8k;!%D0p89 zl+#3#3k~vQNXyJgwbIuwN=?tq&(lrINlY&WS*Gt8p$DY&xLCx2nixD?{an^LB{Ts5 DNmwD5 literal 0 HcmV?d00001 diff --git a/res/flags/AZ.png b/res/flags/AZ.png new file mode 100644 index 0000000000000000000000000000000000000000..686dbed76c41ffd984d60360fa5ede5669d3eabb GIT binary patch literal 978 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l(-$>6XFV_@87@AFyk-~ zF-|`OMN<wiPCE$aPBcpgq6wyHlbi}>)-Rl%H+hm>-UQ<mi1-r*qbCf8K=d)Q{X<;c zGXaMeO8&2O!=Esi00kc~m;lj3cFRwbS3Z&RxzC{gHmB?B`u&gi>>n@~KY^i-nVlcv z8lLexy-*Bzr4#vt!4xPp(asf!CfK@8^75bARzJP0Xp)=H1Z!uAIOEz>5L%PMxGD)m zt_32H2*WxsVqnnX+4BkLJ;stCzhDN3XE)M7oFs2|7lsa2Sq~tGv%n*=7)U38@rP`u z^FRiBiKnkC`$JYi0VcsxO&eaIP?x8RV~EE2s~5L29SY!SeHh)fd$)7+ox5|t*DIf! zP{KX;cdq4siKQ`4lQqvO7iR2YIeWV1pM!x&-wpGqDMuc4rfAJQ`K-d>^kk=vA?rf2 zzq0XX_+H8?-_@4+^_R^8-V+5T^L)}jADzU$MKm&h+wQ*)E37^@lqFuj{r6+d-nY_k zl^uV3$=sT6zvBph+#j9$9Orr1fv!?5ag8WRNi0dVN-jzTQVd20hUU5krn-jaA%<pF z21Ztf=Gq2^Rt5%_Z)ZF}(U6;;l9^VCTf?HZ3o$?q<{%r2^V3So6N^$A^h=A2^mFo) z6La*7Gk^m6Df!9zp1FzXslJKnnaSC@=KA`Xc`2zCdKo3TIW=Xo)&Y%>02vXIQJR}% zW#y8eT$-DjS7K!q0Mt~>V7UDMZhbU0VDqf3JW?~$GfEiD3=FF7?cIu9O?YNXNd|+V zk%7UH4P}8qHIhhn`DW&(mQ)s`GGu}rs9#)`zW;rJA5f7vvZ4^6Dh5LnOH%`5ATV#9 zaxM?3L;y)iaAs91gSnxJQ{dmvbAWQ1NOGY;o(yT3IjL6q`bDYfnfZCTX*r4M#URV{ Y9i#MsRLH6Da-b##Pgg&ebxsLQ055Y|0RR91 literal 0 HcmV?d00001 diff --git a/res/flags/BA.png b/res/flags/BA.png new file mode 100644 index 0000000000000000000000000000000000000000..5cfbb6d657bd65bf241170b98e67c3acd13d3a73 GIT binary patch literal 1271 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`(dCz$e5NsNnwn`wYrc z85E}|*e{AH-fa`U!7gOR_BmSr&ocZw4MqRYFuXg!Y2;GDpg0|<m{DaayXK4u3ocf4 zpVW1#Ke|)_t{7w#Sb?hZ5{IY_#qB4&qB>5lkVR9#pfDMzV8*g5M*eFZ1M4rWkw#O% ztTv5XXI4e`@s_FQt-UKQuaiJiz@RkMI&5uF)^?AiZ6OJ@H#Ui)D^Q#wYqN0uu6vF# zn_U76?`{=FSD-wVO=G&8?V`wnT|kcnMi)HTE&x#j^e@CCKzF()ZU#C-(|tuua{kj@ zd_V<|(17`LnwZ(V6<cnH<?arQNO`e`2dDrVR^XrjDg)YL8?nwaX-j0m?$pe*H~YCh z9O3{4CPab!WViTD^Vi%^bXby>kpOh3v1>UboFNK0wP(uPEoz=}CZTLkYFdnrLp4a2 zfkAWbYzH94SQ6wH%;50sMjD8d<n8Xl(7`I}0pxHNctjQh=>#zTknMCH$Y3w=^mS!_ z$SNqnBv`6x!wVET@9E+gqH#VsK|-lP&^#d_B`GN_F*W)5gC~!kF*3*5)iJ6mFr4P( z;_U9|>h$*TN<8Ix`oyV|+8SD#t5+nQFkHDZJ0mOe^@~?8r4vpVN=ix2o-u1?bVO8S z@(IJ6H*Vduwy?6?y<=D63B#S$6;+kLfBgE%&XRP3m9@R4t<~Md&Gq<^MW+o7j~-Q5 zQBz&MWZBYmpfRawsn4H0dnzs>CYpR=>Xd0y!$ZPCuV1+aG{x|$xrv$S_AT4CmM5Gl zEi3*0<=a>P85W#c?do!E91IK<UAkYZzdd^f^qOjkYeY#(Vo9o1a#1RfVlXl=G}kpS z)ipE^F*LI>FtRc<*ETS;GBCJ&JL3V0hTQy=%(P0}8Wy!(hyiLa2iZ`ZpH@<ySd_}3 zUs_zGpOc@Qn4@2u0Tj?r$xqhz%uP&B^-WCAOwQId*VoU?OG&NJ%P7gssVSSa4rqh~ z$cT`P(%d8~E0_G_(%jU%5-Y0!pr&F5!{z^X>!Yawn`dR^k(!yFQNmziU{D#Ac^jxk z9LXH0n()k&k_-k51B1sK4?F@YkwjABo0*$hQdyA7kO^|1esNj){`UobXy*8a097#< znpm0|7z2TM^OSRWKqUf5<^*R}r81Zr8ab_9H)kSHP7_HkG{}=7Ei)(8N?*SyH9a#w iPd6<mF})aMnZA>w9*{bk*X#w<#Ng@b=d#Wzp$PyTJkf#x literal 0 HcmV?d00001 diff --git a/res/flags/BB.png b/res/flags/BB.png new file mode 100644 index 0000000000000000000000000000000000000000..dcdbae7a9a0b325778a71d503914bbbd36b0a7f4 GIT binary patch literal 1065 zcmZ`$Ye*DP6h2nwrud4|HR)x!n~BbhwoQ)y$YpJJ%iV0-s8rltcV}m(_QmXMJ}9#- zq@psSA0ZLd4}~C0dtyTNKv78TK}G%0Bt#_0ih?Y%Gg+}k4R^kC?svZLoO@>ul^C_L z(F>vhAXcx_m@uYFuWTk_NAxTX!z`}QPzcc081vN@iTfpXoyh=Ds{p7!05FME{TM)y z1Q@phFsA^L{ii!N6#zsmEGae@p<rle2o!r^*}hVX<y*I6s^=dIt7R6;RF87HI(aYs zmrRMg<gKub-<HMCbAoLJ}h8$RLkZT;*2lxw@32-uVyCE>>m85HUvv`QL)!OKA>c z{L_{t73<>=F-K-vfM>($4g9>D$5Yvj@ralsgS=GgQ?`Us%CvE+l`=%kk(su<Zcl3t zrD*9GM9k45-LY5k_SSOVlz@o&^sT?#PakSs`tx4B_ys|G@l!E|2+?HR3~NW9JEcwK z2CW7TMlRIhW{zLCJ%G{r<DJ;49>63@)EkPTUPUG*%t#Do6vQHRMz1L}uNbgf<;C@h z$<Ryfi^z@1OwG^FPtA<U)znw##Tm1`i`+uz?yoaK>bq&@D?8=F$lMdAM>*}n`{=`R zVSV4q3p>UaG?l(!<U&X7<m`rZ-HK-C=qYd8<*V)2+pb-y>KZX>m0a>xx+;F7yKdtB zr*|Je#CMI~?m9bseDJdWO<m)`BZrT4C1yXQ+Ng()1Inblf_HQ^z%y=sO@{2tVmxWO zShP)a*hH4G3oHi6At^eGRAo`LnOe<|ISfT-k`zOdk6*fm|1fxb4&GVwf5Z8P!E!Xv z(u9D|DOTA87KmU#AlyE?%}oScNDvO6ozQ!19BZ&~ynSaDO%S}-!B%IxM2~y-uBKLO zA(vX1T|rMJ!)Sc=pojH}3{!%p08lMcw+PgvglT^CV;CLFb1o4mk|ZDPsgr(ic%z@9 zt-M2Y0i`0zJ5$yte>F1j9#*XJv%pIyBm%p*+i(3w6eWjEGni2Y)T%rcnTrp-|75=x zB?)1Y&3r8jd23Yama$_ttYw7NwwUzb<lQVo5CY5bK5v%OZQ}ycFhZ@)#t`cN+=M33 L7a29JYHR2_%@BYH literal 0 HcmV?d00001 diff --git a/res/flags/BD.png b/res/flags/BD.png new file mode 100644 index 0000000000000000000000000000000000000000..3bd977a442ef9ab0064ca1da90a817f9d0a8cdff GIT binary patch literal 1301 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`%Gez$e5NsNnwn`wUrr z2$b!|07uB;U^aV(pJlXnwx36tw?|m8r%bXhLL*Q?wx3k8?{p`(=ekbcG#$TdI)2h} zJZ<V66yn8*Y7}p}?;?9wpn|Vjj$dF1$bGEu<QeV-asWhqwqIz7=Lc;RWkB^mG#$5F zx$veTYzJBj6oeQBH1nyRlToZU#2nU4zcse5aM^b{jxG@hE8rT@bOH6ES&eBa56~A5 zSbXtF-^l~n7g>Ii$-dK^-Ja<og5?x2SVGZ*1?X!w<PZ+=lm><{JT%~82#+9SDF%j) zUwKP`G0IpH<QL4~@a#q!h?C^)?!wT)D(eB{a29w(76a)7F#eG3bRNiHFY)wsWq-&j zD8M9Gs%gUu6uRx{;uxZFJ~=_cr9sd<AtB`u>w}^*I%{&?$jphkV<S<tr{)h+lhYxk zMM;l@UKC9Vx@5Ge=o43$*D0-4D~hsSNzID7Wwop77h9X#u@yyX%hH~SO$!UVX11;D z8{dkeKEHE%>%tr!JbU->WvkZnw~t>x=byBhi-U*DZ7Me>FLytK=TCPx*W(LL9X)nb zT}6%Yt+$`2uebZu(<jcHI(PEyX?+bHEj>-w&+(C!uBoA=zPYir&dI{FVv4=9qpRK1 z!^{2i<=ra2`OmP({4{0d<z?p&@MORF*r5K8O^|_sb&7G@lO^AO1HGwQ;u=wsl30>z zm0Xkxq!^4049#^7Omz*-Lk!KV42-M{&9w~-tqcq<-_Ce|q9HdwB{QuOw}wS+7h-@K z%t1C3=ckpFCl;kL=$953>F4ApC+6rEX8;BCQ}UDbJ#!P&Q+*TDGn2D*&Gq#&^HNeP z^fF3vb85<Ftpge%0Wu;aqck_k%E~1_ximL5uf)nK0H~>$!EpKi-TG*1z~)(5d8B5h zXOu7)8yM7x*2e+Wh$EQ;RTG|>Qj)=7YGCj>Gk7CVi6oK|-^|?9lFEWqhD?zA^oz^V z_rEXjLo>%W1gMI^(8SWzz!(V3o2Q)111b?fGAB5*3K*`2mQI&@YaavUG?C;&gFG41 tGILU`^!1BU(=+q)bklMY(~Cit={vdT0V&=-9xI?G22WQ%mvv4FO#u3av6=t? literal 0 HcmV?d00001 diff --git a/res/flags/BE.png b/res/flags/BE.png new file mode 100644 index 0000000000000000000000000000000000000000..555ac8bb743cc4a22bb621e39e5dd882dc0d96a6 GIT binary patch literal 689 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87=<BqROB zf8KZc^#F$MJAKNsd8=mmR@2fuX9v&>2F8*gzhDN3XE#6=GbVYvyD)UH%6b4foCO|{ z#Xvd%j6Y;Mod+`5OFVsD*&nhB3NQ(lYTEDug%mwq977~7CnqdW6KG*%Gzj<bJgKrK z>Ds%yho^Qwi_c<Y_)%*b{l~h#3#eGN#5JNMC9x#cD!C{XNHG{07@F%EnCcpuhZve! z85mg^nrj;vS{WEzzMb&^MMG|WN@iLmZVijtF2n#en1gI6&QB{TPb^Ah&@U}6($C3H zPR!9S&HxJNr{pK=d*&vlr}`$QXC`Osn(OOl=B1=o=w+1T=G2tUS_d>j0%Sx;Mrm%6 zm6c0=a%paAUWt`e08mpggW>Z3yY<o3fX%bA@<`20&nRIqwlr9K{fIbFjX07yP&MJ1 zDJ2;UCZ-0{@0>jhR3eF_#5XfHwWP8jl_3-4KK<gd^!@J({Lswt4FRfRFf_3=H82JO z^X4h%@_<SNkjx3rtOA9rk(1%>bMinrO(eO{AWw$0%$!s!ef^@;^vwJ`-L#y<^kR@@ Z`cAHTK+52qDk!2DJYD@<);T3K0RXgX)${-W literal 0 HcmV?d00001 diff --git a/res/flags/BF.png b/res/flags/BF.png new file mode 100644 index 0000000000000000000000000000000000000000..5a80be2aaad75c37e946cda3af74a98f1b2e7f85 GIT binary patch literal 954 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lsFmS6XFV_@87@wURxIn z(m@r})P1k3`#D+-NWKTMwRJyff{~W)S2xXXSt>u*NCQbA`;!((ydu@QJOzX*>&=fI zQ2Kva1V{qeKoN!oo)E-1-?MX<?wW&YKoZCX3C;r{js@;&%N*I}djLrw8zP90WMEjm zdFer*XBbO@{DK)Ap4~_Tagw~<T^Kr8Wj%l#&H|6fVj!IW#vihs&I1|jC7!;n><?K5 z1(*a&HEno-Lam-Ijv*T7lM^I-8U)1|P8ue%UzwPkmYAA+O!4@+gC~#nhW52j?~iu~ z@R-3K>Bqw4a`cF*%F-pNDGO^h%#mR^p{=2%xq8K_lg>XAEK4~qT)1-S+QqAvuQz-; zSi}~Pkdcy;l$FN!c+rW-h^WZhH*O_P-E3}9U|>*iM5~=mW71*a`et?p2JKZUKVp}3 zYy&z-wZt`|BqgyV)hf9t6-Y4{85o-D8kp)Dnui#gSs55v8JcSw7+M(^T)v(007XM? zeoAIqC2kFi+AhQZHJF2JD9%qSDNig)Wza7zF4E7*PfpCyFU|l8=%?f->wD%Vrl<NQ zre`K+>zeE9XXd4(R_JAv<mS|r%~}UELIPw&NJeRHl9iQ9esXDUYF>$zRRB;^F@xdq z|GV|k)PT*ivhqmHOwTA`Ff%Zyy0>>LP>nc}IZ!p>nJFb143-84kBV1a1uBt5QsSGL zn_5y?kjjt=a-V*2S^EC>1%7De_=W&gF&LUyni?1bfqC<kb9q1|0!ZcrXI7;$n3-BS zML%=O0Lp11$%O`aGNfhZq+03g7p10W=I80A<s_yTgDlf`a?=A+<$m!|Kurvuu6{1- HoD!M<htEH% literal 0 HcmV?d00001 diff --git a/res/flags/BG.png b/res/flags/BG.png new file mode 100644 index 0000000000000000000000000000000000000000..6d8be358f998154fb2be198da7177c710a07bc2d GIT binary patch literal 737 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`zU6XFV_@87@w|Ns97 zpWewYu4kB<%P=jEVS2t)NAeyM*&C{Y*VKf7YM6@FJ_1sVB|(0{3=Yq3fb3>W@^*J& z=wOxg0CG4BJR*yMbOIQE$aXppWU!Zb`ns||WEB)(5-ioU;ROo$db&7<NL)@%SRg0h z!p6ko<mJ)evTlQ+kU)Y!p(7I$&!UAM4h@bvyqp{c9n+N=8QD7dR1^*<SPBCLJk~k^ zRb1LVkwH;!R{ctLhVq?$CM&#WgIuFp;u=wsl30>zm0Xkxq!^4049#^7Omz*-Lk!KV z42-M{&9w~-tqcq<-_Ce|q9HdwB{QuOw}wS+7h-@K%t1C3=ckpFCl;kL=$953>F4Ap zC+6rEX8;BCQ}UDbJ#!P&Q+*TDGn2D*&Gq#&^HNeP^fF3vb85<Ftpge%0Wu;aqck_k z%E~1_ximL5uf)nK0H~>$!EpKi-TG*1z~)(5d8B5hXOu9Q85mUE+q)IJn()k&k_-kz z0|SHOCX4KWY9x{D^3BXmEvYO>Wyl0MP`|h=egFFcKcFIUWJMuBRSbqEmZk>AKw#cH z<y;<6i2#z4;LIvuz*<;19d$3)1<Gk6$%O`aGNfhZq+03g7p10W=I80A<s_yTgDlf` Ya@PY=UV3G(fSMRQUHx3vIVCg!0Ew{LSpWb4 literal 0 HcmV?d00001 diff --git a/res/flags/BH.png b/res/flags/BH.png new file mode 100644 index 0000000000000000000000000000000000000000..0d98e0e051079efff97caf5c856f353ddc6480bf GIT binary patch literal 842 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lxPX?32_C|_wV2T|NsB5 zr_WzbnR~+}<bssmIYBiD0*V8{x69Y>CFGqGRtE}xzjg0vW6yPKp9_+@5H*-0P+eDV zz;!`IE?)=PGI{O|XM`<42XJY=hyYTIB|(0{3=Yq3q=7g|-tI089jvk*Kn`btM`SUO zP5|Q%*-qzy4E7RFUsv{rtbzhef~A@^yg;EyPZ!4!jq}L~5-tsb<_QTYOw4IwVP<7~ zeklx7A3sV<di3z=<Kt?_kEkeUsOTtl#rpZgI0bo0&7RYvBRqM|o~B10Cc&OFJ3U#` zD^{&qnVpff@btsZ{f;aQ#|-)ZZk$}`4zxtI#5JNMC9x#cD!C{XNHG{07@F%EnCcpu zhZve!85mg^nrj;vS{WEzzMb&^MMG|WN@iLmZVijtF2n#en1gI6&QB{TPb^Ah&@U}6 z($C3HPR!9S&HxJNr{pK=d*&vlr}`$QXC`Osn(OOl=B1=o=w+1T=G2tUS_d>j0%Sx; zMrm%6m6c0=a%paAUWt`e08mpggW>Z3yY<o3fX%bA@<`20&nRKAG%zS^`qhD5O?YNX zNd|+Vse!@4{|Q%sY9x{D^3BXmEvYO>Wyl0MP`|h=egFFcKcFIUWJMuBRSbqEmZk>A zKw#cH<y;<6i2#z4;LIvuz?vI4u^rka0hH53k_!#;WJt@*Nww0~FG@|%%+J$J%SlWx c23e-><e>+oPSicL25MsPboFyt=akR{0K<GG?f?J) literal 0 HcmV?d00001 diff --git a/res/flags/BI.png b/res/flags/BI.png new file mode 100644 index 0000000000000000000000000000000000000000..e2659e3bc1219ab9f50f341d0630f0206420ef2d GIT binary patch literal 1534 zcmZ`&do<K(82*fy+zQpY=Pn)0{Dzp!Dw#%RFs`FnCu@zFF*9q%3^T4-5-T>O(#FIo z7OhP(h~pAMhE*tPDumkT;+{*XQ~R@L|FE62?>X=HeBb*%&+~rgeCNyb@p4mB)>Q@o zsF8>SKN$5ka;qY|W)Ck1z_5koLUsW_az^D7O#wa|(TRR!01_+!IFSaxI$S#O3V>(` zfHxrk;PL^`5)?N1I>8OaP!Bf(jBtE7+?))9l7JW}gfZlwTnNVxz#F89M0Q0^Drl%9 zG@|!9sR1BgP9nHah|<}-ac_T?{;A7rg`pl+!*aZ`LDjzYEVb3t>@0E$zzM3&xxLzV z^-5mgUq+=bAn#T;>!3%owEVR_9BMNBOH!1~=uHJFV$}VfGa=y|rU`+~8HkVdePt%p z_N=!$IK5gpFYJ$Z9!EOVoV7RUmP%iKQLqCHCNm|i@w4$<(yD?A)y>7-CvU}jI9eSc zob)JdsLu^*-Lb{f)3d9!a!*2LQ`V2Rng)cqQS-Q(^94iW8U@=-b}FRB*%I7KtIkhU zpIu)>J{Ic|dpxDh`^gP!PB+tQv@5%Y4h8#d`#82T6L~b((qVByrh#ztUYO`GU%mt3 zeRG@AeFD;MpU66LR-EobDXsd=Ojk08>P%uA{wn(+%oi2eFOyQ~-^WeyG5Io`)C&o^ z_e*m~_I?po<xj?llXmEi(0u2CWzGFD=LYYMm|fUeTNb9J)PJ4Ok`$KQ((`EoDj(&} zAjQP^24&6cpj*kQFX#r#$Wuxj8l@P@l`Udb4<VX{tM&Xp3<mT)W4#rKX9(qq)<N%b zDSn<kS6+PNX-|jW$uCiUm)e=HvP2X(F8+)t6wgeJRP07f>g+78i30NR29lFq*OY$8 zzkK%Kr<}3R;>(E6nOK>Bk#Ek!0HyZP$A+Foa|~g*%Deh$NvnVF$=y>~Yl)vON}Q%8 zyid}D)@=jXjhE_z`K;R89V0oKfE(DDKjJJsm#5j5Y#CSZ=<TdE+nBOAuNGW8@`q1` zyPASr6QkQX^PB8k?#*IX)4T8YxLmZ{TH<$X$1)+`B3c!%V4Sa(pu-FAoY#?SpVy() zUC(}UMJuh{h_bKZhM~p98;Rj4x25g1ok!Em?|H@ax%iEZ$PuHb&y7W?dx(n+>P>R~ zGPD>M>m{#7Vk*-s>oC~~RGZ_qZ;05Z&v~K?w=zR9@*yNI<HbhA)Nv%F)pDrl+Aq)R z@Lpumkp08MMv43YJ?ibFtCbzW?zPP+)CTMMK-qT5foA(75Bjmyk7i70*HSZ*#Yh&~ z)_GZ_TpznCPcChv-n%+-sY29pXHnv{j&PQ)sm65~^*Scj%$lz5@55x0om!T@9dh%A zVrk$&UAhZpSH){f3)9|ak4XKer^;UK!bfEaTa#M#zbFojnkqW#8C*ftDqrn&Vf?8j zq)XSl=exVt=n*3L8OvX{4tZo3?^8T|tc@>tvMvkV^S<tpTL{WJBe1Q6adSoH9BHce zVf&KS8&27?S>rPspV(aF`kjbD6ESi0C?*WR7Q$d{AbT4OmV$A>LAE#y)(XPlAZTcW zJ@Fp_kI&$Q#s9ycBz-Ul7GO6f2>D^6SXvYlpreIRXfB^l<D!LZxPWHx>1Yy<#$u9b zEDk-~28%{>A{fj#6kEjOCdP=XU<>UH3ko}$7mC9X`1EKVGeU&J`M@F}z+C;(jQ)!A zj~@<4WO7(+5wL@x#9hh3Fh^^X&%YchhaqAEdkA{V@t439olO)nhsPAf3z&ejaX+*$ zhSfGN@cPP!Oo3Sdv(M2UvV#Mgn%5rzQ`9&4_;V7Nz|jH156V$daBuIXUVtA7gmJh` n92y<PWO4WrHep;EOSmx%jVGaCSlQik8WsVPs~4dPA9C_<EW>|5 literal 0 HcmV?d00001 diff --git a/res/flags/BJ.png b/res/flags/BJ.png new file mode 100644 index 0000000000000000000000000000000000000000..13fa3c91e76b9d58cac653e13c7098f7da88acd6 GIT binary patch literal 777 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5ln4*-32_C|_wV0lXb%J; z&MyDG`&Iv668&>g49Y#I^8c#npDSQ)oBy^l-EW18p9+<LvK-9;>vYUs^Xk6f(}i;N z%wF^Byb#m{n)!mI2xK>7NswPKgTu2MX&_FLx4R2N2dk_Hki%Kv5m^kR6TtXGw$pha zgT2Jl*OmPttDpdrV5z1JFHp$E)5S4F<9u?0ginK@IKxRpM+ReVZE0&Ei8Vzsb7Jn; zcrZlvP4AC)5a3ie&B@u_(WS_kVp+)PshO!_@Z!mbBljOLGNkSksEypTu?c9NYKdz^ zNlIc#s#S7PDv)9@GB7mPH89mRG!HQ}vobKUGBnpVFtjo-xO_X~0g8s){FKbJO57S2 zwOxn-YA^@cP@JDuQl40p%Aj9bT%@0qpPZPZUz`CH&`-%v*7wX!Oi%SqOwUZt)-~7H z&&*3nt<cLT$<3)Lo3##TgapWlkc`sYBr7YI{N&Qy)VvZas{o*;Vg|$I|99&H)kq?# z0h?!K<&m11o>9VJXkcJ)skRQ71W*iuDhkg`Dal|kG&L|d_&?zannAvqxv3?U1*r^~ zAQ$Qvm!<E2U*HE+B#va8ZwOEogQ1C~sev&Nm^V*3mj_fLfTScivnrLr*vQ1`&dpns zfO48ha-l(<3~8A;saE>>MXBkT`FXl&If?1TAj|Zfy!3$7rhS{DftnaRUHx3vIVCg! E0B~dPPyhe` literal 0 HcmV?d00001 diff --git a/res/flags/BL.png b/res/flags/BL.png new file mode 100644 index 0000000000000000000000000000000000000000..8e50a79605926e8662a0e344de52b925313125a1 GIT binary patch literal 692 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87@Apgfg9 zesWad?tlOOgTTLkpG)iCs+zskv;-=+$84Ynq!>$r{DK)Ap4|Xh%$Vfu?!wT)D(eB{ za29w(76a)7F#eG3bRNiHFY)wsWq-&jD8M9Gs%gUu6jJeYaSV~ToSd*gE<wbF$zk23 zNs~MyqN0wj30*D5=dHJ@ekD6Y)G|-;?d)mJK=rC6t`Q|Ei6yC4$wjF^iowXh&|KHR zRM*fv#L&#jz{twbT-(6V%D~|A?TiN~8glbfGSez?Ygp8FAqJ?y9Ararep*R+Vo@rC zera)$eolUJVvc@s22emhB|ll;GdD3k)i*IcGdWw=TwgykFD11?FQX(kr>1PyI-n5} zAR|IDN^_H}tX%SwOLJ56O028`fSQUK4441kt&gS#Y@U^sM`~tzMhSzNfkD;1y<355 z#F5N_stM0bDal~4G%$Enyy_}Yi6oK|-^|?9lFEWqhD?zA^oz^V_rEXjLo>%W1gMI^ z(8SWzz!(V3o2Q)111b?fGAB5*3K*^?mQGjQ_HzK`G?C;&gFG41GILU`^!1BU(=+q) ibklMY(~Cit={x!80V&&m?!SSW7(8A5T-G@yGywo^Qq=tb literal 0 HcmV?d00001 diff --git a/res/flags/BM.png b/res/flags/BM.png new file mode 100644 index 0000000000000000000000000000000000000000..53de7c39b26a36e8db2e7ae4d0202ba86a72fcd9 GIT binary patch literal 1601 zcmZ`%2~bm46n$Fvjx$1#MJXz+VhG_U2&8@iLj)nR1_DU5n(b#10+fU$$dUrp1X<Lg zAZ939wSXFzvdL0{paNnD5?NIi*_2{C?bPYmPU(wGJ9PVV-@Dtn=id9~tAYc4)~?yG z1^}>@?&}o-^+w}a^&Y(I*DMo4wM^(4;0eI3g7<&pEQkJPo^MD104du5P-Fw}7KRiv z03?tAc*O<)Ee60MPF>G%17PWmV1K4J1dNP~JV-8hcCB8as<HOSTS3gK6e$O3On=rn zuq}g1JEn=vf2OW%=gGTG@!e(wr@i@^*y$&Qm)ovt<5Uf`iKhl=VQHzAxmdwqNoCX3 z)(EL4nRvJdX9Pph|4SC)H^j<Y(K-6$6Vqv`nR8zabK?!jp3(GN=uQ@veVcUhx>%{* z9odbuhxjftLaQaQ)ylDT0|Mo)mE%2ghXtOY-Hd+s;68W8fM@8Cd(ac2XOFehkVo*K zM{vJeP@e~5a5uwX?*V!AIQ!-;&JW5i4>UGw!Xj%vl?}GEHAs>=-|ZF7R;Om&>eK4y zDsDIDU+GRe)$hS*tLhkQc{HQGav}55Vey4iC?D<xd9-#rr-p{#%+7v8bZFsof1jW4 z`l6)6WIG&5p{joHW!0V3qC<hojc&P>M{)-DgfTd!J3>oJ3hVU6SI<YCJVT0vBv4xH z(B6CP<!5qL9EMUBS6$oCQBbtNGZHSiPmTPHz{0G<qPFaB@?aSV)O-q;YZ)T3-Cw~> z7&{_2I8Yb%YQej8l$RG}gmR^<1DSb6$CYi0<DI6)d310pV=w$;GkYkoDRki$(C&dY z%$gcs7>aQ(yjxv%R&f$5T}02494h@JwE8gi(98(v!4Yb0h|<ql*@*|#MS16y@~AYw z%m~j%f0lQe*?;D+IcT4?m&(;AYU{y|t*&g|s>d0bjpT3=9HC;<Ho@La**k2t=6FcB zkXpE*3#lL;A{WR1vf;m)=iViUYKbf)FceUy1_VZj>*wPIl*>Qxh0f|Y-$*Ic?04sf zC|Wl(R?6rB-YdtJo2*-El7M$x3u`{4dwDXqck|emwh9vpo6YA6I2dnwbYgsJZ1RN# z6_lyVPTo|O7uRK9Dy+)Arf$r<c=~ouWl8-C-@s7613nQ!BU*j?K%1fK>D|YjL-+f1 z&zF2OJu~s$_^YYcV=pJ?Ud&E!T4!lyZMwnSX36OjxjFf&yc0pb{`&&y0e;=>U7fm) zM-LIuvEF=rQQ_G$5zO$gena0AinFUrZB<Qml41gFs6U$W>svd2wX?j_Anp}*sa=lh zp2~l+P)wLRvKsj>Z%-1!HLNDVT>Z}*U1NqCvDuorUDWuc+u75aXGh<>9?lpY-Qs_z z)hFL(SNixwMX!)FsVm);F*bhrVT9&TYay;K{l(Pv;iT8kaavouxcQb=pMncxDm$BF zs{qjIqRy87@?#c!!L2gy{W3mBhM~N83@YG6B2$PY7b2O$B)g&{CzMPfkjN;B)H^I1 z{ab+~mM<2_|G(hkG5tYUKrwcZ#tLLfoOlc%3DS5ZI+n+YMx-JbK=`pdgf8I-u>g)x z%!?vY5JViq$C4dIGD&o5Vu=P)SQ;sqq67&SMZIEq2@)(uhN8i+ND9bb&o?0dz`Wx_ zQD00f6v==qiInoZsrtV$5n{ef1jtS#Qrpc$2E<q`>J=cCU^00e2E@hz5ow~Z`TMv) z2(nlVVnP%kJMVNM?SLO8t56pMA*PEUq2d$_xWGAFY5C=MSHmoRQ8p}u4g}(83`LN5 jOel_xAqt{7LaDJGLJM$&3Y5n9!6HES4)oH{*qMI-CohOk literal 0 HcmV?d00001 diff --git a/res/flags/BN.png b/res/flags/BN.png new file mode 100644 index 0000000000000000000000000000000000000000..3ed976ebff6e2d310f0401e72a80a0d9c88944e8 GIT binary patch literal 1599 zcmZ{iX;4#F6vr=M1X;uY$s=rov^qqEBp67OVHbp0pbEhi8DjDhB7q=z!KG9Imyv#` zIE4-(Ri{IzosMOQMOnnk2L?J;1nU;6NPs}Xjv2|zLPBqpaj>1fIrpA-@BN+sIrqF* zwL2rl!`06f0N}w*P0EDc-#%QN;N0Q5Mhx8=aYA|m0Ln{lOMC)c2Mba&(*ZcO8G!P0 z0GQ!cxefpY9e}Ak06293AjJ(Gd!hkwys<ltmkfd7;bEhOiH`*1Y7#!|jjMfdH5peU zAIxSMvKsDN-qf0>kD4ZujH6Us?e`9YFlhxIS>c!MkIiOXu$i7OEh;VZ=S`D`jN@#4 zBm@e+eT*1h!4POG{Pgs+#bQ~unQcp2oB4rx=IT^kvSBdAI6=op0_<7-Q&M<%cve<c zWo4yOsZ^;{dcEGFotdou{$=`M?Zqmiy4#B1wdgOKr-a7wc;o11T<wdiVW}(C!YdO9 z1PX=1X0uTgt*xmUxY<1UTD|aRzwUgsI_K!*`OAjBr%QT+;mP2#&0@38SWS<Y-u_~l zJ7dyizwcEHYi&?~lZ&%MnwwX7XoNI**9lC~rYL*-uy3N{zV6Z$y|QiDhTAM-R=j8S z1zFYYbGwmPRpxOp(<LH|;N#`!-~>M>p_t&k-`(8{fE*XEEeKNn8Le&`tFG)!YkT|9 z(9q)IqHzQ<jUtvYyBUTN?O)`F?cR;Go?lBns}j90Y$1I|^{prSf4d1O_4nH0=;jR^ z*E%}~1_s8(#Yv^ohK7dT-d>$fXEvKZ^c-rMp{52gYmk`^%9CBef2W2#PYCIY+1MEs z6yvv!VE>oE`t|FnRBBpU+WSDmD@5NznQ!x(z3IPj*Y8aaMb$-Wy0)RR)SZ{+vMqEC z(bLhv0jy*hMetF?IA))r*{=Z8jUjJeBbt6vZ;SW!YR_XL*QD6BpKf&esIW0)Nn_{d zROG>KpJu<fPFRWqmYI<S;wMxh`{KywDM{cWAuts#))l87kVBvMZY&fe_QMxvjGLb9 zJVGFDa3m_I(H<~{&P__-h4u^bd_&5Kth_wo5fL91Xw{n0olf!WpxoHg4hb9i#665- z>$p@OwnQSK9AKX$ByU1V*^vs5^ssXccfMiz>ZT_Bef=m`>*}u@+JErC*>S0Kb|x?& z;a0|@@TQ`<pli9WV}CzwbBJ&6>gu|ot{!M!xcJA<x;j;x@mzPKrsio2b|Yt}Xm7BK zP^+03M|{YnvxTA5FsBE#`*?e^Up#&OjKz$KY;C!7`#4rw@nc2FP|Urrtlpb5>Z8%A zmdWj+NA)q{xlWTCIsBk|&DcclEo@Lv+Pd%8+}}!v%pU%%ifyV+bULazz*jn~l)spZ z`4XRvD_$5F`6Q)6@4}uF^nTG0tuQ|vlxt}@otWvtvx3wTda<>q?@;Uft9!?<6J^ov zL;wc+3M%IOTV=4Fo3P~ln2?X596<>R9f+VaSYh<YFb0dqh~m&AI1JWSI)g)}KY5w2 z{wSbOCX|Ry{(ry^7Y1@*0Lz|1E)!wL`6VczDdZ(IsZ79^(&YJYgC>*-Xxu`+7)|Gk zC4z!57L6t;5~3%<^RYr{S!sO}l<>7n@bVRfM>w1$nLts97GWIDZWts7jGvb8(*DJ~ z)8lYbQHeMo1FQ%-cgt;ve5A9&?2`zwe86Bb>5Y5(wUD8#%9SoDM6r{_D3I6-q{&Og z_vec<AcU-jc#wh$>`3}{_^{5_JSu{S*D54Satbz<8Np;F9xh$zg{Rb2r`efYAd*N? n4vkiViY2n5Fp-ommfO?O5;MY~ONsTl3WESQIU}hlF|YC;o&>`f literal 0 HcmV?d00001 diff --git a/res/flags/BO.png b/res/flags/BO.png new file mode 100644 index 0000000000000000000000000000000000000000..8e20ea8cee8a5447c0dbc999370aefd513dd26bb GIT binary patch literal 733 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`YL6XFV_@87?FRa@?= zmfTH8sjp{Qem-IN`IzDN6NcN@*yP&u7%EH{DoudOR0>{n04c_jAirP+hi5lH)-xt~ zySp%Su*!M>Ih+L^k;Ond0gOLnJDmqI*h@TpUD+S93JNd@mTKDY0)^Z>T^vIsE+;1} zkV_D8VPI4U=Vat4?iFM>QtHScU@pSwaL0s&q3|?N;H?9LK)D)I!;aMg3`g$vGAO*0 zWKlTd`c?lc1H+7^{@%U~$-jXns+PD$l%yn<q*^5xr2;7iBLhQoT?12HL-P<rGb;ll zD?@W_14AnVgUh!w9-wH*%}>cptHiBgQQL(Wpayf04aNCsCFO}lsSNt1#YOr#`N@en z`o$SQ0sWNxWPQ)v#Pn3(#PrPMY+ZAG{mi_S)C#?flH8n{vRUhZMo55+2+1hTO|r6b z$xklLP0cH@vI+odDrPWT{(rYVni{ZqR#qOVnduoN4CbZ=Y}v}kv8xHsOex7=Ff=qU zIQH!X2T+Y9l3l);xv3?U1*r^~AP4Ffm!<E2U*HE+B#x{o1gMI^(8SWzz!(V3o2Q)1 z11b?fQWBh51q@g-BPUa{O>2R2nn-e?L7oh0nK`Le`uatw>6!U?x@kFy>BS(+^qu_m VfK*kStu{~-gQu&X%Q~loCIGg7+WP<i literal 0 HcmV?d00001 diff --git a/res/flags/BQ.png b/res/flags/BQ.png new file mode 100644 index 0000000000000000000000000000000000000000..1547226606d8fbc3814e9e486d826e1acf1f4e1b GIT binary patch literal 726 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87?_PDW#` zl-dq+r>{?*{{R2~$;*#6F*D^|yA<8JfeIXMbjt!M#*!evU<QY0H$WCMCV9KNFm$lW zdH^|`1s;*bKso`8KV&<d2Qt`8Jbhi+AF>JxFbS4w+VBE}+&o<zLnJOICoGUl5OHC0 zSSQ4!A@oE_xj}Kl>n4Uihdd1?7N(t<91}byME5bYI^?l4nK11%7EDl@u$zlfOz6p? zU(>4?7(CB;ir<`bHxFo{YKdz^NlIc#s#S7PDv)9@GB7mPH89mRG!HQ}vobKUGBnpV zFtjo-xO_X~0g8s){FKbJO57S2wOxn-YA^@cP@JDuQl40p%Aj9bT%@0qpPZPZUz`CH z&`-%v*7wX!Oi%SqOwUZt)-~7H&&*3nt<cLT$<3)Lo3##TgapWlkc`sYBr7YI{N&Qy z)VvZas{o*;Vg|$I|99)7sR5g3W#y5YnVwO?U}j)Yb#L!hpc-)`bD(O%GgC@37%UA8 z9u=>;3REJAq{KHfH?^d)AeA8#<Ual4vh@A$3;fW`@eKj0VlXtZG&L{=0`ul6=Rn~q zfMiZ^W)(18jSQR^I4eE_<usAxLW4XR(lT>Wt@QPaQqwc@^K{d464Q%8mgzeM>H(>x TeIh4-nixD?{an^LB{Ts5H&oqe literal 0 HcmV?d00001 diff --git a/res/flags/BR.png b/res/flags/BR.png new file mode 100644 index 0000000000000000000000000000000000000000..7a2bc17adcf2a83ad69262607751e202dfc1247f GIT binary patch literal 1612 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`(RAz$e5NsNnwn`wX+K z5NH+>8!XN|$5M8&F_1*4fvcZoEwRX?^Ptqd8*D%l$Yz*jjiPLp71JC`?+qFU&+uQ| zC%SvB!liwpKsHbWD9(Uk7f?IUuKq)kH&5|o6}kwU<gjTMi<;%+l(^nL!wVD#%3@ey z%`(R_XrubsOWgk-Fm+G%SMY3?b7|u@tz%HHU{EeEsBrpwj}a&fR0C9rrd?&J(e%R- zpYJgJf5`CkyjW60mvhdv;IetKjf+ET<|=!4$k}GzIw}B^1*!q61geL7kbl1UvJ)cz zA25K>LxyA9rT7dB8Pv*|G|D;ktCT(4{K{s9RZcp;Uk)e>Q3g~G)CD&IXxcQ8?aV+0 zw~q;`I_I(J)-Y>Ua2wPxsFyKoRR!iXy}c$0)C*JtREcam$dFkGzXSbPRO!s3UCpdj z$*Nt+rd!QpSYJ`+_UA56ze7xrS!@CfSYYtxl(+zcnq8+@(kj2G(gPCUKv}d91I8LS zPBjml;lH#W6sN$L1+u+2XyS@fV8ZACClVluC6N$LX0SBLz|gogX%{fnGL{7S1v5B2 zyO9RsBze2LFm$lWdH^|`1s;*bKso`8KV&<d2Qt`8Jbhi+AF>JxFbS4w+VBGP=z6+1 zhG?8mPLK#`5VUSMVd%(U%&jeL&2BuUUFrDAqh}AFKCZ9Op{TB+qok##r>Lo_tE}Ck zrLMky!HOko7Oh&gZsE$MYnxS;uU?*?kdcy;l$Dm3n3<ZJoV}cT^5*h_lA^N0(&FzQ zzI^)j@#|-P4j!(yQ>`s+t?n*vuE&oYJF2dtrn-E|vZd(`PmMNjDlYo`iJPmt%iHVp zDQ&IQtFp5e7L|VG?e#sYyEgZ&?A+M9wtH*;3aj}wo${S$RC?=+q;dM$dB)}U{;+b3 z>&9&=xmh&BI($vc)~d6&N?)7j+}Toj`daSo@;5P!Pxi;|{{H6f_WuVCI=A=B*p~fa z$=Wf;ru5gDo5j!dWA>E%JQdpWVNcoLV`rnczrVA$U3JaOclH%OUVNPVd&S2F^?z)@ z;IjUnu{B&=9$45gsFt`!l%yn<q*^5xr2;7iBLhQoT?12HL-P<rGb;llD?@W_14AnV zgUh!w9-wH*%}>cptHiBgQQL(Wpayf04aNCsCFO}lsSNt1#YOr#`N@en`o$SQ0sWNx zWPQ)v#Pn3(#PrPMY+ZAG{mi_S)C#?flH8n{vRUhZMo55+2+1hTO|r6b$xklLP0cH@ zvI+odDrPWT{(rYVni{ZqR#qOVnduoN45kJq^<R&F1*#E8G6$+AJTs*vgTdU$;MVP@ zu|Oq~NJ@M&b5lzy3sM;}LGIHpE=%A4zQ7O79N!S2Dh5LnOH%`5ATV#9axM?3L=efG z;LNI2peu|moEF}W3j|7PB1wh@c`~GB=A>Hb>ldY_XXfYWrsX827lUlmcM8%2QjhfV RB!HS2JYD@<);T3K0RY1BM6dt= literal 0 HcmV?d00001 diff --git a/res/flags/BS.png b/res/flags/BS.png new file mode 100644 index 0000000000000000000000000000000000000000..2a152575c6b51d25fd7b0ce0794bc46f87db31b5 GIT binary patch literal 1110 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`$r4;1l8sRB-?PeFh^d zhNhVeYfdq&InA*8BoqPVghUy_QW<7#WmtQLVf875xUwcgVGF~u!whRt)w8lOSi3TG zEMQ)9f_d#p#?>bv2xt-r2#RRO`*m*5S$d&((Yd09XQ2op$-=;3q0hZ?ist9*w*MbG z`~xG9CVrMh6SaRobo%uGgisVuMJR@dGYE=;tk{9D0wfM`Rp&xvSAoPqzGy}91<1c? z470YO_}9pqp&2D`>is7*0kt!h1o;IsI6S+N2I3@nySp%Su*!M>Ih+L^k;Ond0gOLn zJDmqI*h@TpUD+S93JNd@mTKDY0)@7Ex;TbtoKH@WP-+k~Pe@2fN=r;letv+(!O~AJ zPcF``jxndGY0ey{LrRO19tmYIEb*T-IoK=8EzB>@QINIaiN(|@mX@I*SFf0wY~3=E zA);?`u>162|N93noVdZl>G0IT($~`R>=|91wG$XZ&fRLeeC^!5gBLlS=Wpg#U%q<w z?)K&4ZMFC2%(2^7_m8pBQQ{rXvnM>9yxjdAN1p9p@nXh}9Y0ud9!{DuWzM8oZMHTa zj~o_YWZ3sl^PSgstvf&usFt`!l%yn<q*^5xr2;7iBLhQoT?12HL-P<rGb;llD?@W_ z14AnVgUh!w9-wH*%}>cptHiBgQQL(Wpayf04aNCsCFO}lsSNt1#YOr#`N@en`o$SQ z0sWNxWPQ)v#Pn3(#PrPMY+ZAG{mi_S)C#?flH8n{vRUhZMo55+2+1hTO|r6b$xklL zP0cH@vI+odDrPWT{(rYVni{ZqR#qOVnduoN48{fqHKO%#KsDk>=0MeiXQq^7Fqjz_ zywraS%x4UeNJ@M&b5lzy3sM;}LGIHpE=%A4zQ7O79N!S2Dh5LnOH%`5ATV#9axM?3 zL;%U0;LIvuxSAO|>F74U0m^A2$%O`aGNfhZq+03g7p10W=I80A<s_yTgDlf`3f2Qs U_x;>g05vgqy85}Sb4q9e09=iDtpET3 literal 0 HcmV?d00001 diff --git a/res/flags/BT.png b/res/flags/BT.png new file mode 100644 index 0000000000000000000000000000000000000000..4782cf34a635ceed016635320705acc2f61ca1f1 GIT binary patch literal 1608 zcmZ{i3rtg27{?DPVQNrtAou{vd?G2g<zZ=MIuMiwF3&2WC@p=jlp-x4PA3t3O*6A- z91)#}MivK%%njucUl^1bBuYU<Y|+{`h*GeWws+@(B-Ly;=bZ06e*f?L?)lEKq=e0` za~9750Jzd)qf?+=g7>dx!m)AAEIu@|_>pKN0M}2>wX&Syn!t`tK>^si5`f}T04#8; zSPMWt2>?A409qLUUb*KQlOq6_QJ)mgh=G7Yp}^#X|8Cs`tcQR#`Cvs0rvX1qKGl3D zCj@)<GOUw;RV>D`JTP>@H0D3v6+HNq`L1WT<@qL?JkZ*Wm|G+5`@FH_1vr*4Mf#1) zsY89o^{Nh|;q9QlU-znhr2qU#dEP|YHyG-UW1mPoL$iFHQT0Hp)#y~+gNh#AojPNE z#Ya(uJ$d2h<Yb0jOD*znqpC%x*Xr7<O{Lon7mpd5t4+r^wj@tS-X<rS`f}d)9~tds ze|RD@>a+&cYyJJd4GmX@yV^(3A8>^2a{u@JKWR0ub#Ih<jZ*)zL$A{fK58C0!Zv3| zSTh6cTYVk*$qVtdbg$E^+Ku-wjFq5chcbt2%QT9Y?@vkXNuJhi1Ppci{Ac}fRhQ4m z3xWEr(%9BG(s;$1MYLqBGFBWmR2(+dogKMeZcFpSRe0_EtX*qNy}O3`kE=WCHO;lU zhAU$=r>!Cy7C#?L^sq1kP0d$L1AP<Uhhy<>lM;fhXXWS%;b2>(q5h(|DA809r@v8Y zmTmf!JiK<)&AM~tgk*y~brHS^1Ht$3)NlM+u=zx~ZPyxGvKJON&r%roLGxzx2+KZI ztf>(u218HHq3W(LR^n}Ec;L~e%8I(%cPzJ@6xq_J3w?DdCh)}Kr=N$TpXrwXpX-^b zmN00XWGM-$;5+qm9=^zm+Z+v!I{U=J#q8YJbSbpV$v!NKdIBddGCCULGT`j)Hp4wX zAi@=DR@0*+8LOYLncnfm?q1*#+24t`aO>KFc?m%|zPm!H>wk2L^k=yzlXuUi2Qa9@ zMd{Qc=a>~-&n;p3t_&(l6#MM_cK^(c%h+G1hImk=bK?R<OLnaL!DaI*z88m@Mk$=1 zh)Dc0H(<qgDwJ-VTb*^oM<4#KEqi{`T-th>6SDl)>8=~56OXHn=Uz5j58kWHD$Sq^ z(~DxbTk=uy&ixzNsnWQ>sM?yAOMm{+RMl|pz`a)bsjB#}kdlAU^7U+Wb+1(2QGS~_ zQ28M4Owh)M#LVk?a($Snr$$k?`<a@!qd}~2`nB(t=;LoK6Jvhid$hy9Tx$FILU@rr zG-K#-uT+C%G|R@@<)R)**<Gh?L+YBo!l73oO_*}vQd?rDYPeOQbOJ8RbGKhM@;u=+ zu8_rSlW|xwE{&bXg$4wZ$P^+ej7X+1$ZKh&U>cbcNFvinq-T8s<!1u1gd^k?{lB2{ zaAyV-Q1A#+2~SqY%HskgUz&$xOW3SzL@IzA2uH$3=wcS1i?aAawuneU5Md67yC+B> z6KC%$I9m%{c;hY@f_!lnjTS9o=Zm>HG8!!jill&Cg*72xFq8ghv{<f?FOY$?B+}kj zEq_7A%fZhlCQZnZ2>_KudM&*whsYua1Qm+8vZ7or5aRhE(gObNcex2)_(2(v0_0F? z7%2pPl#<gOIS^Uk;3rkMmkUC}gDK>w#rHL{;Aw!v>6R2a;0d$2Gz7`x@`aKdA}^c8 bm*U}&C`J%8;+*oEPz2~P3DLDt%!B^|isSD? literal 0 HcmV?d00001 diff --git a/res/flags/BV.png b/res/flags/BV.png new file mode 100644 index 0000000000000000000000000000000000000000..991a6cd76c9dc9ca138a7bbed09cef9638f327b7 GIT binary patch literal 866 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l;{oc32_C|_wV0-udVxD zUF%1F!HP{M7}V0UTUY;_KmWa^HdtKqor>Cz++3(s+v=Zl=e<`|f3L3jv$64Kef|G6 zt5<D14b+v}w(9@M6F(aofZ}}%_5jg@Mf+mQ=QF6MTSs;GFW3tdVNgkhBGohojSQeJ zga`ve4yTk0&_RqPL4Lsu4$p3+fjCLt?k)@+tg;?J4rhT!WHFFV0OJqYPUnFP_7YED zSN4ajf&xr}rJ6RpK%opz7sn8d^T`PkAq|4o4JQm48I8HMrLEc3#f5n;1oTOBR8;)@ z!OGIwvNMrEOPz^jQPLx!NkNy4lnfZAPG)7YtYmdnO%;u_XgIZ!sd3h>wq?_{^{vz5 z5m?ASzxKx+&-Vt0h3lKy7#IrM1iFg-yDk9jR4s9hC`m~yNwrEYN(E93Mh1rFx(24Y zhUOuLW>yA9R)*%<28LD!2A6MVJV4Qqo1c=IR*74~qP7b$Kn>;~8;bMOO3D+9QW^A1 zi;MJg@{<#D^ouiq0{SWW$@-qTiRr1niRqci*}CTX`k8qtsTFz|CAm2@WwX`+jgSBt z5t31wn`C9>lAm0fo0?Z*WfcI_RLo$w{Qqu!G&NxJtgJjzGt)Cl7%U773LGZv$F3$k zGo>Vh!O+ma;Mlhl96&XaNOt*V=BAcZ7Njy{f*hz{T$aB7eSsfPkvOuV5TGgsLla9= z17jdCZ=P~452!={Nl9>KRVst2p}EtAn;BPta+*kTp+TMuX_+~xR{Huysp*;ddAeyi fiRr~4%k-VX^njH3x)V2mnixD?{an^LB{Ts5n6?<C literal 0 HcmV?d00001 diff --git a/res/flags/BW.png b/res/flags/BW.png new file mode 100644 index 0000000000000000000000000000000000000000..cd78895521fcdfccf0555c5e1c164947719ac97d GIT binary patch literal 697 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBC?Oi)6XFV_@87>)y6SfE z%G*niKKAtV1d7DjdHVq=#*!evU<QY0H$XNqCV9KNFm$lWdH^|`1s;*bKso`8KV&<d z2Qt`8Jbhi+AF>JxFbS4w+VBE}%spKkLnJOICoGUl5OHC0SSQ4!G3k`48-ugLbyh~1 z#ybHl94tkb1r!8>#eDT=ot$DJbanp~W(KRjYQ~GX%t2PEmbgZgq$HN4S|t~y0x1R~ z14DCN15;f?^AJNbD+41dLvw8dLn{M=%eONgplHa=PsvQH#I0db+l3gABSAJ4=ckpF zCl;kL=$953>F4ApC+6rEX8;BCQ}UDbJ#!P&Q+*TDGn2D*&Gq#&^HNeP^fF3vb85<F ztpge%0Wu;aqck_k%E~1_ximL5uf)nK0H~>$!EpKi-TG*1z~)(5d8B5hXOu8l7#I{d zOxTZIO?YNXNd|+Vk%7UH4P}8qHIhhn`DW&(mQ)s`GGu}rs9#)`zW;pzDC)$K6@>s* zF&LUyni?1bfqC<kb9q1|0!T`NGpm3BYi8n<oFl3Yl+#3#3k~vQNXyJgwbIuwN=?tq j&(lrINlY&WS*Gt4t_P&F&OOWkYGUwo^>bP0l+XkKPQ1;x literal 0 HcmV?d00001 diff --git a/res/flags/BY.png b/res/flags/BY.png new file mode 100644 index 0000000000000000000000000000000000000000..40cdd8a7dd363d1210f8e72c2fcb8e0b87abcc7d GIT binary patch literal 950 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lsFUM6XFV_@87@wuy5+K z1<P)g)}1tUI$>xBM31J-e!g_|?aHQ;W+0KL^On3=wf=5H2SmZGlG+E|ldmS_KxFTC zOt_I(0n%>b2vq!d>YOJt7u>0CfpVwMeX(-=otl<Y<}N^4uvGJDBZpJ^wx{&%ZswJr zYiO7o<2gIZ9f%%vP1@2}9I!mvYiYRm((qR+*6&%+@4r0CYgsrDy<EI{*NhH-pe&gC zV&1ZyQ(7RhK#$}kL<ayV#*!evU<QY0H_||yByV>Yh7ML)4<LuLz$3C4NGE{this?w zKn8n>r>`sfLsmfnCc#oo8(yGLt*47)h{pNk1PP@ELGy%!l%%x8)a2t#4Mj3@V(!>j zJgNBkgO#Q51Se;AN7us%!qX>AnRHB1U0GXweS@=Kpl773=yW^NQeIzO9fp+o+xphc zvlC+|THd&D;zmv}hEMZX&fM9mD#pMiuAMC%ZLPx~GVdE-pP$8(4@V9QFf!ChsX92T zdEEs%M76{<q9i4;B-JXpC>2OC7#SFv>l&Eq8k&a~npqhbSs9vZ8yH#{7+k)c@c>0b zZhlH;S|x4`i`p*405zC{Y$(o8D=AMbN@dV5EiTf}$xlwq(J#&b3h1ZgC+mCWCZ?zQ zCZ=a5XX~2l>u2Vrq*mx<l;q~rl+9WPG(rMoL`X(yZjzOiOMY@`ZfahMl~n*xQ!#_# z^8dT_(bRy=v$FC?%}mcIVK6Z@V9}jB52!{Q$sDMf@XVBw3<gUBgGa@yt^$=vA}R6B z%uOw+EJ$U@1i4SYxGa7D`vN~Sb9_U9su&DSEKLoJfxx_Z%DFtC5<w($f-|dtDvT{n zo&H^4^8_fVi6j{s<jIhhnUiXzuV0j!o|&Jgo0gN9UJSBL-zicLNKO40&k5AT;OXk; Jvd$@?2>|lMPg(!~ literal 0 HcmV?d00001 diff --git a/res/flags/BZ.png b/res/flags/BZ.png new file mode 100644 index 0000000000000000000000000000000000000000..5de79b76302015933fdc454f9673127d60afd83b GIT binary patch literal 1592 zcmZ`(2~bm46n&x;m2oPx7F#P*L0n29iHI>@+-Oojg|UbtYHdPx$bux%1UE#Ms54>} z17a*7ARr_P@(Eca$eIuc7(qdlAXQOh#I}mK%(O2;Q|e6r-1qK#=bd}*{r}zh$2Nxr z&6@euOaQ>FkYHjs^z&?E`cyb;W=>;5H;uVIbUgs&>CW#dj&T1CH8?yJfP_T=Bqjs! z7D9<n01#mT7$O6JWC7q7C)fNK0DwdG=1mbKNU&P1nmHJ|sXp^XU42kj+YHy^xF>$! zxGh+*cM&4lu=SWwBu_k?BNAPJYluL6oB-BJZMIGd)}+mk%-o-+x@x>$W6@Tb%bU9D zD_ZnPh1cC9v*4+Xvo_6Ut5ZFqGB2pLN@HP3OK!%El;p}ir*wxaZ<eXd%HrDQg*(nc z&Nz8G>BRBN8q}=lyla#fh~sm&AC&E+9&%4PzO$+G25K%#SLh+fu8e2rR+!Mb21Qqa z_*U_*Ggm~Sqnq}e-Eiaw-*V}p>c*04vz8EZ(XI~yQkf^Op>2x3d+iS@k9QU_jGA1N z`j;9dPeu=~NSEHe*IL<H%1TE;K#Dy}f?SKXl?}fd9vyxCXy8G&p{ctqzfaG3Xzdsq zdjoO!A`-cFB1=FDI~~=uS3Df~?e*)i!J)zWu7S&XlffVxerkRD<{iXqELAb5R1+yy zr@#ue?KQeiRBb7g-#GBouT+YRLC)cxMumnhZS&o_>m9X7Y(7{$QIZq!#F;A%s<twH zS5-y5`hqH>wCPw*Rd$Z5KzFlJZC1+4n<2+uzh_j|C4Hm*W|gWH)ft<bEo~ZOBWk*) zHeXfLwJzA6IZ^qCYyEngOj^>Q>oDpp8l6Q|+gVfH-Y6|@fcW^e+FQkoAl|s`gg_)u zK9VmGori0P*jr`1wf^Zh*mD2&8*ED#>*CqaO%aBNZ2{{ZcQb68=#4={Aa$G{3^z04 zf};e`lRu0Xv4QPy;Uo+RB{@BCbeZkoB3c?S3&vnWi0dPkv{T7*Hzm5b0VD3n6hCM0 zd8?cjyWv0eBZBXmogEImcSs7X^SBs2;Ceco>~dAUe73>RV)S0}?b6cX%O$a_mc-=R z_#NwV75Sw_d@_s1iH>3LC^KA>Oi@w2-FJIdtwadgYK?mTHzrAf<lWfYH%`+&aZF22 zO$j1;7)hk&hNi~F3m1766<jK0(ijVj^udRZAGv-0#hlCx+1bd5ZCgE`m6j+<`7BNh zkIju8c`_V$`_BDay?5491`3Q@E`^<6Lw#J<V|Xt2+t>Hr(b>&scZIO$k2&6vd1I7U z+32&|{O)S@pE5;n)kyb@%&BQ6<^BDm&wCH|_vh6Iopk>`*?Hy5lQ}CTLod%=8#Mo1 zEq=PpBOvehxJN_iGd!<PbI^(4{-VL!KLwPGay?Ir(_g^P=_Mp>7t$y~Izo-7LkE^& zad;oBzYh){fm?xKmmxU3Hx`FrvA23z{r?Hz@@Z^_<o^RMrgrRt0eD*m0iPk<M~SBc zj7SiV;qa*x4o1L&0EWh=VnVnSCOwqGWK&~(@E8o6N27~<Swb%7z}{>nl$dLih+v7h z(Fj81Q$<`lPlzC!VUPgeivH4KKH_}PLy%xPo5>Oae=Js<HFX$r+$QNva3a|>Aq(LB zv1hXd*^u((BuXfoOBYJw=zwjj4<p#i)Q`l4eWVi_0a*aIoZyf3gAe{_hM5N`u9I}O zuoLKjfL-D5A9$#U0RP-z>7>)G;UR#*=FkxgCZ5h@^LaiD4uvVOrNad7@P*E@+p7l# Nfe=y{Q5i^1`Ws=2pcw!F literal 0 HcmV?d00001 diff --git a/res/flags/CA.png b/res/flags/CA.png new file mode 100644 index 0000000000000000000000000000000000000000..68bcac99970681322594d1181388e5a3bb1bdf13 GIT binary patch literal 1085 zcmZ`%S!fec6un(y+O$!FOA{B|s8(v7nc5f}+)@*pshu&VG47gek_=6n&`hco(OTDj zDMUm<{i%u+7i<Ns6;Z4r_)!Ia1V3s&)EX28f3#?y_enpZ;N!k~&pr3t``#>_PN`0> zo23H)z2LC9FwUmCr~v(dt}u+DFl-gA0KI2Qe)=?+&ks0UBEZ4L0PV*C#*k_s1xT>~ zSuX&80iZ0=HLzthK;B$ugWHaR;o)HdKqgHhckYnf_2UP*dzYZc_2C2Q=^^Fi)FVda zzyO&xjT!<>QTgo~dGdr@x<vZ=h|x$50j5Y|2?c1`Ea5n!(GatFq8$OINMZ>E{r%+K zJ5o_WuY?{kGRS}bPC7bBX({E=5MYWVmhkjnzepxSii@csz!XUwm`ISeHWG_bj~JQp zacU?S9Gt+I;=;$oma#Ef8XZNCZ)T)$@DqkS)g?8;`uDFxH1Th$v%zW2Tn8q_3CE5k zM(>~fwW;<60<9{DcI}A9Fg4$hTDn?~RG(n8x+`7;yvBv?28-7l%+CwW^msfg=ZCcZ znW0<8zB$^;C1sY%DV|lHy=xEWS(l9+Z}&f5*wF1?zjKZ#)w=3;ZagnYd#zgplPKA@ zihDMsg-yHawr!p#4n2BV<S-TVcJ`PuUH490nUOZ9_30ZI9~5M|7F|o<E;&1reLs{v z`cb=?iO<`&?#T7=lA==G<YN8c;<BOVvka!Ey34&MN}AM$WtH{)Z#z#d$cN8srZ-Br zG)}yIxoY3827Ri`2U=tdP|b3dD%M=ZS=`)8o~`CNOC`(kEc@zB<n3P#v3O7kwf(=L z`{c{r*kGY2B;z4<zpq6GCY5YqqVa$)$|NI5Fu{0$5n{fuEc(JqpsC8jFiLY!KCnEZ z#-fK>GdFRBk&bXjQZYZz+v0&#Om0?r-ib{~;I5MU%s-kx^LXANE8&O=W|lp0p@4qu z+&L4PZAws$0LQZIvzqR8s4?Z7B`PslZA-|Y&<irj*6_nG2?<4Ixgs~JfU8+$W>?^{ z96LAEj1ohRq)|CY71cGhtx`Sx`IhDsx4HxfDN&hcm=-y##G9)^QC~PoPh&P%mt&Y* Q?fimGAlN0_&025AZy~S3X#fBK literal 0 HcmV?d00001 diff --git a/res/flags/CC.png b/res/flags/CC.png new file mode 100644 index 0000000000000000000000000000000000000000..13fe2b7f4d49db51cc475e1cdee7f1c4c53ab3c0 GIT binary patch literal 1637 zcmZ`(YfMvT7=E~kq9pRe0E!OGhE{=dibAs!-2@@DaRmenBV0x)hqlsEY!3>8w4fsb z3V1;ffecNi$Yo)RY%p=b#o-0U#<FNc1wrNFWzJ>(Ko<6$UZfgrzSFngbDrmYpYMH7 zPib^ygsaPP7XYpjaaatAEBI@n1NrWDaa54ts0fjU03DT!XJt-g?=2U{NP)e+fbjq@ zLm=ZMkV6C0sQ^<8xM$aQZ{Gyi_eFme7fuKxBO@>p9$<ibDb`eCF_9Wfh#9xuwFT{r zNIHZ50bIR-6J7AFn3p&fL3|26hpdPJ8;@gn2$h|PY{c;&(9{FxVw?P=mU&srIq%2r zR*0&t8O(SgcAmq~Ah=ct$`DbDo<6K9pXYcV!sZ%ym4kS*oX7}b#=eN(Iu%>-LL@Zd z)d(Km#JRH=_=P{kvV#^6(T(W623-pRj$lDCT)%{aN&dP&`#bm&X2Yai#KYWO+-t_a zx3H_lRM)^~BRO;1EVQL1ID7%?tE^THSaJZ;1`yoh(|`{SA+Hq`?bz`Z$nnkPh-B<f zd`hNP$RorL>B(!AM=3uq+o70M7UcB=t$y;Xek?TWSiQ<X*4ue(dT8cHnL494b%r#P z2j9QmJ&R(?Earvp9DUmxqbC!Luzj4Yw&x84M<;I+N3i2!B4e@T(X9-AleR4)3<sT7 zipgeCwm3mgVyfwSo*6nwemHXyX}I%!C%2{cZaIQYu0$i0goVVd9h9eftTwudQd85@ zGGwfLV)VgS309?iQfL?A?XY&uhkmQq`3Cq1oT`tVI8uEq-gs58PSA4hd~>F9r|R+K z^wbKE<({W%>rN&bANaMkYSd4ktn_NAPfogfXY;0>i~9=xn|0WtD+=lLX_DP{JF@+E zVaKk&7nMq`37S<?p59&ktxxLjT%0Ywe0uEY(6=wjuAiT-yWKsrpejiotKXKHm>;2t z-xH<%V(vicG2f_@jAmv@)t&x??<V>iM26nW;pH`c$(;pPuJ35M*_!-)p@X<0fBfr# z#Lleodza)B?RWEEJ{vZSjyC-q;azClTmEXYV|-0yBeU<(ldgZ<15!e($1fE;oWAf_ zly$Fr-^8<?S4v&<^U?cf`l1@sYVu#sUbzwfjgKyOOh*1SAqCmxUCs;hNk2d0!awKI zWgN@Mbu0-8q=h1XI>=uriW3GibRZ)Xt*3<yP5&{h9DPHe(Wa|1^4>2vUGiHJ5s3H- zdTj=`N2X&z<>+;kS}T{SDZP>aRJvA9Ni;GAE0rl!@=SjbMX9pV+1vmnr%@N|u4^YL zJoprG${bA^!-Q$&IT|*LW0+_n(nEN5?nmk^jwv6*h*_0F$zcOc7c4WR5RSV|9t$U4 zmCh*<Ow&`;Q}Wh@rwv7_(y&}!HVYN+kJ9f}{Pb6L<Xd^9afAio#*c&O4df%*fBe@h zLUFUn6RX<GB8UzS3{9Tn$ZH(}o0~ggB*;*yS%#u?tU{&D^3PDq6nefIwRLL%3ET^Z PN+N<JJTk03G`0ADuhRJJ literal 0 HcmV?d00001 diff --git a/res/flags/CD.png b/res/flags/CD.png new file mode 100644 index 0000000000000000000000000000000000000000..c19304093e2824b4d873a3832804323902689d34 GIT binary patch literal 1581 zcmZ`%2~b;A6n$(`uxtZUpoK|+VH<@1e_2vKFcwG#QkDit19TD65W*KiQWA<_g^(ai zTR}>hfuM1~akSL|p{)a<sKt>f`&PDsQfjqIr`mQ@Dxi1+6)@<Z_y4=^y>rez_x@MG zj*T!g-D`>vGGj$D;$hyWeRmnaS7T}@gvn4C8WW08Yt@UZJR?}|=SRlJAXMOnkh}z; zW!RGch)^z$&|)e=WF11bl6N$5!3gPBvZFan0L;(NqoTEqVJKhKEBb45i3-<VP%d-T z&AqDN*~5<7{X#ABaJ|N&<jF?79SpHo_0*-toJq0AZCBcmxs!o>)xP|JSLM{T&$-d6 zc87}ZcPW;(DC>eY<&Pwdwf*JvnLvkO%l(79oknbEK;*vL($^FA>%`t~2Jxa#%FRoj zZV?ODj1<ctc)gxIn?M`2r2z}LGo<5)k^mS~QQeleGG%kCCwx!Y!{=7l&A(JVRoi%a zTI@dI>NsTP1OtL8u{+o%YQ}(TqF8#fS;=o|s%p)5yD+Qe7Ow3y2}x%;v}^V3C{+iT z*+^lmc($i(5n^x)!%(sEA0`7GpjapwG&fjVb^X&}Xk%@oWT#1R4o6!2dM%s8o%VE$ zZBW4HX2-Pc3Utu%K-7#vA9OkcNr679B%r;}XPv^~XTc^&=@bQjAMU`U*b@YGJi}dr z8^u+(!0p;91R+Yo(_VKyS$u2)I`qSIx^{6YDuRK^jT|FkVIql4mcpF6{yxqO8-~DG z#)@GYFBn-_>RaV{2AcuLm&FL>cntGX?KpBPFL@t9T>Z4I)i)FwyW7$&Fj{nF${}`S z5`(kb!^OwR)79I>%iW?Tfz65M#vM%%j*Z+Nn;e}Or{jK#Ui*eRRsHd#W687AcV>bP zl7XG=nw$6MLV~+)ym9u=RRevcB0TJ?ZWrhGQ*%a%*3(Z+Dp<Xqm#LrZ>yu{!JM!_4 zRYiBxy^CXQPtWyTSybK8ESL7U)t!(=WgdS$LYSC$M4Yl#Qc>e}q`uFvrXe7N>KRDB z`e0yiKt(UQ+08s(tS;{LPCoWo)*t7t)PDTxLvBlQXLgA7#ktbAPBsLHXEdUqTkVc- z-!1NaH0Li|Qg^NVPLtb}Ip;lQ|F+-~QRVou9%0V>`Tpf`;gCA0Xu;Xqx^(V?{>0{2 zIt!H*Cg&a0&-VEt)Sr_6(buM-anMm$88b<i#*+z1evSYpbO0yl-nhRvLFW(wBz}M- z=w3KM;`sP%#@&ArMB+3mJ^%j+O{F6zfI!z~kc!h~dAu9}!g8fKSeBU2%fh4?uz{tC z`4~&Y6AEH@LW-a1O~)`QJ5BJKPlimCb@q&^86@nq5}b@&(J7K-i21o9LAHz}*+7ya z;={F0Ob4^BN0N~ON|+%-0XSapZP#_c*lyE#j!C4_WEtonj(^ws<voDdZ-c~8B7rPl zB0!YZA0|B`{Nfi$td33$2T+Lc3-rf*;h`%p4P^twa+^*9RUknAzVxv1lQ%SQ=DF?c tXgmw0Q&|EM!*T>dN}TPTp2ZVNwaKt>h7U|VWApC;39*>5jOMUZ#ot{Rfwuqv literal 0 HcmV?d00001 diff --git a/res/flags/CF.png b/res/flags/CF.png new file mode 100644 index 0000000000000000000000000000000000000000..6df7750774eaef306712db2f5cb3363b4ed269ac GIT binary patch literal 1124 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`&>(;1l8sRB-?PeFlRj z5Ylf}a4F)qtO7EiB8JUTN{N>Rj4uh8Kt%L?vsTa2Zf>*}v8@0p(`{hTX_Rxy-?l)p zv&DkRpq4?W0VJr~7_N|T1+39Cdl?Xg6fI1yo(V)gxl17;?zt;kTuLwVgAD)q>kk<H z{qYloAlzU7{=b~I{1P8X!T<mN-^^SIVZWQT3c{Fjddj48Q`c2zUjiGVI!#q+hH8GS z_GNw(pcakk8mcoj3SxC3T-_P!TC>%Q<DlGw`?wDt<UUa%dkL)g|9OW0ml)pFib1*O z82(>mcmv}CL+NLt)FvRsSQ6wH%;50sMjD8d<n8Xl(7`I}0pxHNctjQh=>#zTknMCH z$Y3w=^mS!_$SNqnBv`6x!wVET@9E+gqH+H0MOQwjKmnJ)J9qEO+PwpUP5*rbtp0j< zOwddZ+j)4=#ebZCC%Y#bMCR~KKQ7MUnlv%sfcpiNpqViXL-yuo^@c4sm+(#NzM8gm zhA+pgyAMlt+Q!Yd7vN!Ku9I(aYgN7&VdJP8{L;s2>Jou1IulQef7<!HD)(s6&XAg1 z(U7%QrN2f^^~vzPl2yKIZdtcahV2!39{0nJ^L;XsO=g~Zw)tg?PX_mvn6>7wuTJvG zh~9ErzOVgnpHGH*$-bEU>!)X)ng8~5{r|^&!S4bV8_#sm0(wog#5JNMC9x#cD!C{X zNHG{07@F%EnCcpuhZve!85mg^nrj;vS{WEzzMb&^MMG|WN@iLmZVijtF2n#en1gI6 z&QB{TPb^Ah&@U}6($C3HPR!9S&HxJNr{pK=d*&vlr}`$QXC`Osn(OOl=B1=o=w+1T z=G2tUS_d>j0%Sx;Mrm%6m6c0=a%paAUWt`e08mpggW>Z3yY<o3fX%bA@<`20&nRIq zHZZ6Wt&an$5l1oyswO-$r6hyF#MEH=owJ95N+gk#_-5v&mQ)s`GGv0>r(ax_zW;rJ zADTJ7AwX3Oh9;J#2F5^O-aO@89#Dw@k~zVdRjCYS7M4!Ib{DOIa+*kTp+TMuX_+~x qR{Huysp*;ddAeyiiRr~4%k-Vy^nlbJp`QOhO$?r{elF{r5}E)w)R)Zw literal 0 HcmV?d00001 diff --git a/res/flags/CG.png b/res/flags/CG.png new file mode 100644 index 0000000000000000000000000000000000000000..2d37cd50a89eebdd39f6373333c4196c1793ad9c GIT binary patch literal 1539 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`#@);1l8sRB-?PeTJ#d zP&CCkWUcF~n_hqJdHsf<`(D4Ud%UhUfh+J??RxK;=imEC3T}A5t~I%<r2sc4V2$ge z>z@DMYJf(8&3RR2d`Dg3j<P&lW$;?pCzvX)dAuq&x}yeCc}E4IIDDP!vl~cOLyW!Z z@v;=CSRSGnS$))cw-*@de_ru;S!8%e6{;TYlDG|SK#wE*1vdQWWsev6255>Ir#dHX zbbF1g_<`5YOYSdn41l&n5X4xZ%G6D6Z*L(P3sia0{Y92Ono6c=&Y4@>-XW_5IsmBn zg8TDyEQ)ity1l=RWGq<mk8^I%Q}ocnfq9y9!8W&#K*c~caP+|I$62>$NxI02S*AIc zY<K&Fsq&25vv`C`j_J-7JKR3sK}jUvPr5#h(Se&*y%WjC`yela>{5aS4g*6Jk5~yX z@iCSJ`2{mLJiCzw;v{*yyD)UH%6b4foCO|{#Xvd%j6Y;Mod+`5OFVsD*&nhB3NQ(l zYTEDu^~ia;IEHAPPfn2VX%G}=IBBTJV9c#8ZOyK(E^f}RKTAe_f5U<a8#tD)n6aZp zW!0Q1TYA>a+0(RW(x$Fev#h%2v@M&qt#94DeT@qzZtPqsxoOVM)}>Ro_O6|~w|Vj8 z&E2b|C(YU2zI^)j{`K?g9TEZxJXT0giixOjNeL<O$%(0PN(w6K0*YisRk@{wmF4*5 z#nm|`P6Ub+dS*sex~ArYmip$#);0r0l7oxAv!kos)5FXC^W*nRPrB36Ia$qrrd95* zo|&7|&d;<y&+D1@uc@_LOh0m0&d;u?tHahuzHZamp7*z{ceYvn&0V>_`{wR0+r99_ z+nc-d|1+LzZs(J?ta`IUdexoI$;<tUi{@EYzx&hLotIHm@hJZT1A}aIrp1<U%{pM< zsg}4#l%yn<q*^5xr2;7iBLhQoT?12HL-P<rGb;llD?@W_14AnVgUh!w9-wH*%}>cp ztHiBgQQL(Wpayf04aNCsCFO}lsSNt1#YOr#`N@en`o$SQ0sWNxWPQ)v#Pn3(#PrPM zY+ZAG{mi_S)C#?flH8n{vRUhZMo55+2+1hTO|r6b$xklLP0cH@vI+odDrPWT{(rYV zni{ZqR#qOVnduoN3?>E!l~I|ufojB&%z>&2&rB)FU@$W<c&YyuSST_`A}R6B%uOw+ zEJ$U@1i4SYxGa7D`vN~Sb9_U9su&DSEKLoJfxx_Z%DFtC5&<N0f-|d98B7e#oC@pg zfT7Qzi6j>q<jIhhnUiXzuV0j!o|&Jgo0gN9UJSBK-`QOcNHrEM^#^KV@O1TaS?83{ F1OS!=g|7er literal 0 HcmV?d00001 diff --git a/res/flags/CH.png b/res/flags/CH.png new file mode 100644 index 0000000000000000000000000000000000000000..00d3871728fbd492dbe268651a35b37c27f42b33 GIT binary patch literal 800 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lyD9332_C|_wV2T&%gje ztgQcyjQ-o({}&Saf9ll#U%x<%%a{KHfvW2NYu7-sKyjeR_wOKOKn4GS`WP<g=WYN} zj3q&S!3+-1Zlr-YN#5=*3>~bp9zYIffk$L9kWK*O57|!VfeiK%PhVH|hpd7EOoFAF zHoQQgTu&Fr5RLO^15ficDDXJ5I7;OI`5*ta(BM?TvDv=cyf5dymiR5*CKldzzj4RJ z`LeHD<}7*fddH>BVX}GKjl|Yi=19*CI9B=LoJOOKvyYwgH%+!9Q@I#Uhi$F7B>4G+ zZRhW}BE`=&KbSx6uTNl|{hw9Mdg`lhK#NsNTq8<S5=&C8l8aJ-6oZk0p}DSssji`U zh@qL4fsvJ=xwe6!m4U(K+Zhi~H00)|WTsW(*08AULJUxYImm|M{Irtt#G+IN{nFwh z{ha*d#2o$N44{C1N`A7wXKrG8s&8U?W^%T!xxRj8UP@|(UPei7PEFaYbwDE|Kt_aQ zl;$Q`S-IpVm*%GCl~`E?05uge7%u<6TOX)K5=jl%JS!`Y)XemZ5(Yy91A|Mob-<K? zVh~hOcxFmT23XB;lSTGu2Ki>@rj}F|q%vfJT&Q1MmcIXefgezjIFfC?AwX3Oh9;J# z2F5^O-aO@89#Dw@l9J%eDqzT37&+Omn7<q-r->vN8sy24mYI`krLSL<nx2`Tr<<0O em|hIBOyAi<4@fa98O;M~V(@hJb6Mw<&;$VfQxjSM literal 0 HcmV?d00001 diff --git a/res/flags/CI.png b/res/flags/CI.png new file mode 100644 index 0000000000000000000000000000000000000000..82c7606ee9e0fbfd50f4ed4801c55563dad7a982 GIT binary patch literal 692 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87@wy`JHF zEyJ%hQUCw_`~Uy{zyJTD4$NSf6U#6UsEOgryZLNDim@cfFPOpM*$t4zj7i?^E({&4 zvK~MVXMsm#F_2CG;}6+R=Yb6N5>H=O_J^#30!)IXnl`*ZAr(&-#}J9j$q5VO5=2~> z9M(;mG|4j}D(dK((A8pm-g>L*SF$riE%OxL&YtEBRIgg%8c~vxSdwa$T$Bo=7>o=I z&2<e-bq&o!49%<zjI0dJwG9ld3=A&c&Uk>LAvZrIGp!Q0hDB``Vt^XVK{gcUr<If^ z7Ns)imlhZ4=j10R=I9q^00s0@@{{#Fa}(23eG}6&le2Zr_4PCJQc^4QGD>oDYRYD< z0~#R#G9o0SG&jl0$|XO!G&eP`#L6lFsHvF2aQXk;`e<sv=2=;Jq-LgPlrR_@7}SW? z#{t!dBbftL6P}q;lEGkNYB2rI*~363l1NH?Gjmf*DhpB>GC}UsFD^^p|GvNv%^cql zpehDK6H8MAV<0eZo^mb^s6+tCoZ!r=R0b0xBPa0?*R?=7O(eO{AWw$0%$!s!ef^@; l^vwJ`-L#y<^kR@@`p%wuK+4WZS`Vm+!PC{xWt~$(69B0F)A#@Y literal 0 HcmV?d00001 diff --git a/res/flags/CK.png b/res/flags/CK.png new file mode 100644 index 0000000000000000000000000000000000000000..26bca5f9c909dcc3f5d03dcf1a92f06153112249 GIT binary patch literal 1437 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i1|)m0d<g|oEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8ZKG?d}4kf#9d}?s_1_ zS>O>_45Sml_(QhSc_4$m#M9T6{UNKM0Fz*;rVTFx1G9^#i(`n#@wZdFbD~{E+V;<^ z&Q<sGyqnP8vL}N{D<H_j!!b}pS16S+M1f`MjfMtQCQe2ng@_HwoI=tnDq^fFgIu|V zbX#<0tqNJHq1$HWH)nd`tQ#9;kFSrjU-!Pb_3jPFSl1P=l<w!9lQ~=eY)(Dfwi}Pa z99x_ef2Vb>WYCWP>+t$QUf&t%n%bhS3a#_omHFi6%zSWnTk{_i!G{jZySM+2<@r|r z>E(RYeLpMNmaLeQbUT6hs;b%6y;=)5Ue`{_kK0sfXL;7UI`8>|XlEJjmnQ4kHVE>3 zdH0|p`tb$jxjL1%e!Os+6I}1&5W>GXr{-SnjyYV+-?wirFg?0;&$%L<?m)Bb%Io>x zJm>d?@SHj=SoPSu=0>IZ&X)#9pGf7OaE*DZHf^4J%$_5OYa6ZxJ$oUg(RJi?>E}1X zy9-uKT9lU%W%m2~y`vN5|10g8qqcmiS=U>>m;+mKa#$oom3W(rth#5OTG0RBjdO#} zY%|T5VrKj9$R=zrik>{VJWl%AkBo){4NtZ3BMY^DFbDG4|7Cdi)I_~*CX4H}BX;+G z^6dUqv*%9*|GufN|KfJFsn1>T@QlUB@AeB;M;<kmPBBR;RLd%`+tD@a{Koth?ZJ<Y ze=HBXP|Do0AZLb4Qsh2)UIU{WzW4p~KR;Aq5L)nmpBZ1Nhf?zMiub!c<7_t`aoQC0 z^!f4iA0CMd&(V38u;J>#x`{^?W_oD8eEDI+tW%4p_wa6Z<WSnEb9>gDEfrGQZ9D6X zbBm_wKejw3)ReKT=TU%#mAd5lA3OGJa5I>5%zp2o<mOnO?Nx=7kKMh|kr}mS*(X!+ zYl*YWF1qmf7a#t$kL$zDn<-~kF`e0TaAT#z4~4m`p+VPp{pQbpzGcmq`<w4BTQS>0 z_7v~^DIqLOjw@5HB{66$S`-(*aE0BBUo(`hf4=mRX{Ar&@^5!zIj_|7PV+7QUH0wW z%Lk`?-q<J2cI5cesL{FPSh4>-@8ssLDNL?h?_Pd2`c%Nbf8JbY?J3uvugr_%`4<_p z_~hG^iUr-_aS{qr=PzEr>tr$M*g~(m@9{@X-u4>bHt9+!GCOxArpaCYmCNbZ8LV?p zAC&mGB+R_;zw?@|)Z26R@7S^MsCm%~-@jkC-*|NGVSLSk2<0V>%E`birdr|}QIe8a zl4_M)lnSI6j0_CTbq!2)4b4Lg&8!TJtPIVy4GgUe3@+c!cz~iIH$NpatrE9}MQs;i zfEvs}HWcTlm6RtIr84N378mK~<R>TQ=oe=I1@u$$ll47w6Vp?D6Vo%3vvtk&^)vHQ zQY-W_N^)~*%4V$t8X*BPA|#_UH_6J%B|o_|H#M)s$|?Y;shGiV`TyPeXllUbSy_3c zW~OJ9Fc=#c)QHx{0o8~jnFCc5o|#gT!C+=!@KXORu(V>3L{j3LnVVWtS&+(*338u) zaasEQ_XU1v=J<vHRWTTvSehCb1A%$-lyiANC4xxi1ZP%(RG1h!smz>s5-6#OBpDjy v$&i+rlWL`}UzD1jnV+YdmXnxX46;q%*;@}txioozEM@R?^>bP0l+XkK2v1W? literal 0 HcmV?d00001 diff --git a/res/flags/CL.png b/res/flags/CL.png new file mode 100644 index 0000000000000000000000000000000000000000..317ec573fc882f575048d5b05cf9465e59dc4101 GIT binary patch literal 964 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l(-$>6XFV_@87@AV7Uwh znJtN`Klbn6e;|O0TP$O?Ue0I*RtA;@iUYY^4lDi34jRO5XR}?wU<%R&5%(=Uc<<@w zt;e3Kgl=Xqfr>MjFI5fQyl~sS=J{9H>=5dKTDTln0TI9JY8IR2Kyw%@S0IoDm~FN! zvf%{KMcGD483u_nLW^Eb?Rzz~ABb*f%K*`JEtxAC(hzi2TMp>2=2Z`bffQp&kY6x^ z!?PP{AWo9Ey9+}HtE>l*!&%@FSq!8T!1zP9(|I6+y~NYkmHi>Bpa7F#siqAtP^j9| z#W6(Vd~$+>PlKR1!%0I!!_6BuZ7eP*TF9_L#++YYet*LP0W-@)!9c@8PEXC8qDw}b ziav35dEIz2B{byf6;qR~8%}1ve(~z1v_w*A_r#5zD`)O(T`DSOnQgFP<JQgP4r~dQ z?gj-#Wrd~AKxX-ygbODhcJ4pO%rGh5mf^IP;&Y%gR7+eVN>UO_QmvAUQh^kMk%6JP zu7Rnpp?Qd*nU#T&m7%$|fuWUw!R6Z-4^TAZ=BH$)RpQpLsO>@wP=h(hhT{CRlJdl& zR0jRh;v)T={N%(O{o)LufPPATvc6|-VtT4?VtQtBwywFper8@uYK2}#Np4O}*{pRy zBP2jZgk+TFCRtgz<R_QrrskDcSp@(!6*Cwv|G!%ws74Y=4cI&@E05I7^o$Y)LjwbY zOSN^t)Qe&eR8e?lN=XKTp{aqv!T$+Y&<yg;%uOw+EJ$U@1i4VZxGa7D`vO0pB5@?! zd_#b$7z|A;O%05Jz`S|Nxjdi}0VE~CnN_I_rj}+-$1if|0_8N3<U)fy8PYOyQmyp$ oi&E1w^Ye7mauU;vL6+$|`{)6wZ;PhH0W~pry85}Sb4q9e01t*kT>t<8 literal 0 HcmV?d00001 diff --git a/res/flags/CM.png b/res/flags/CM.png new file mode 100644 index 0000000000000000000000000000000000000000..c5605d6391d29913ff73288e1857d498ef41b5d7 GIT binary patch literal 908 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l-M5N6XFV_@87@AP!-2e z6Ym-7byiUA92^O$z3G+tdqwQeMKP$L08|#F49FHxyQHKFVVo0E0}5V{QoU)b^s+$~ zNCMeFT@b++HL`y$hyh8s;5mM^yMBt#isgVLkPXoeRDVGnWFUwHS^+i_YBiFpfNt(L z*c%F@7)yfuf*Bm1-ADs*lDyqr7&=&GJ%Aj}0*}aIAe{ilAF`d!0~zckp1!W^4_O5T zm;_5TZFqq~nVv3=AsXkC6C`{Z1jQLn8a6T-b8AamTU)cMi<|RHT!`zN-XHHEuzSvg z4IL|H>|hDA^wi9hjI^v=Q^eKfbxLbhR>adQrY2jrl$LBf_41{(gp}m$gsH}+#@jb+ z*|aQvN5aIz!u8GU3=AFj`Gxxruxties#@Y2QIe8al4_M)lnSI6j0_CTbq!2)4b4Lg z&8!TJtPIVy4GgUe3@+c!cz~iIH$NpatrE9}MQs;ifEvs}HWcTlm6RtIr84N378mK~ z<R>TQ=oe=I1@u$$ll47w6Vp?D6Vo%3vvtk&^)vHQQY-W_N^)~*%4V$t8X*BPA|#_U zH_6J%B|o_|H#M)s$|?Y;shGiV`TyPeXllUbSy_3cW~OJ9Fqjw^R7Pdq2C5N9G6$+A zJTs*vgTc(e;HCasVCrO$L{j3LnVVWtS&+(*338u)aasEQ_XU1v=J<vHRWTTvSehCb z1A%$-lyiANB?3t11ZP&IGMF11I_dLW-VT)0M3M^)@?=QM%t^J<*Dp#<&&<!$P0LA4 dF9unr@9e7wq)s2&`wpmy!PC{xWt~$(69BQ|A(a3C literal 0 HcmV?d00001 diff --git a/res/flags/CN.png b/res/flags/CN.png new file mode 100644 index 0000000000000000000000000000000000000000..1c25ab8662f0b319307cc3f71f4fd831ad16a968 GIT binary patch literal 1069 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`&>z;1l8sRB-?P{d<}M zAfy2%febBy2PXXYbzoeGth&GhGyePf{6J;*bp>AKay_!;yQhXw0~CB{$^Wj7<3$4Z z15^Hc+5!)Z_#Zj&Jq_Z4oBzO&|6K#e-z$v24luun;|5xEPh9|L&eH&1s2ZSMY68!~ zcz$eU`Lcu+Xd}o~8X)&Pvgbpn(GUQd{Lq^3u?rti3gYs|uDmZ2xslaC^a4qsUtXqj zgB%R;3nr;0@Ysp(z9G~ogfdu|00XK;q2@1;Vk`;r3ubV5b|VeMN%D4gVd!9$^#F1> z3p^r=fph{Gf5>(^4`i^Hc>21sKV%gYU=l3VwBZE`P4#qf4AD5BoFL)TASljo($LUw z^M*|uiwlYhjTIR;$nfjS?{8QzVME7?85X<dv@DsjrDx5YJxz-y8SR?WwQAO`wq?_{ z^{ty{w`)%0!igI@SI*qox^$}Pt~tGH=k9G@Jb82X>e<%2WG1&SpT50+{rq}|1cA1g z0*{P{3YV0S5+9v58IB`I)m79KtNA_ogn6tiZ9bY;Ffb&0iyFs06jTN}P_@K0q9i4; zB-JXpC>2OC7#SFv>l&Eq8k&a~npqhbSs9vZ8yH#{7+k)c@c>0bZhlH;S|x4`i`p*4 z05zC{Y$(o8D=AMbN@dV5EiTf}$xlwq(J#&b3h1ZgC+mCWCZ?zQCZ=a5XX~2l>u2Vr zq*mx<l;q~rl+9WPG(rMoL`X(yZjzOiOMY@`ZfahMl~n*xQ!#_#^8dT_(bRy=v$FC? z%}mcIVK6f=sJgdzD^QI%k~vT{;h8BV84Q*N29JtYT?HzUL{j3LnVVWtS&+(*338u) zaasEQ_XU1v=J<vHRWTTvSehCb1A%$-lyiANB?3t11ZP&IGMJfLI5}1>cL&O8BFTjY xc`~GB=A>Hb>ldY_XXfYWrsX827lSO*clOf*Qawq>?SPsXJYD@<);T3K0RV>gY0Urt literal 0 HcmV?d00001 diff --git a/res/flags/CO.png b/res/flags/CO.png new file mode 100644 index 0000000000000000000000000000000000000000..b328c1ea823bc86b7beaf585e530963326843134 GIT binary patch literal 726 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87@w=c3sE z%OZ8Hp$ukI87wBVnopc8<9bm*<(weUAO>H)pYcG7u_VYZn8D%M4Uol*N#5=*3>~bp z9zYIffk$L9kWK*O57|!VfeiK%PhVH|hpd7EOoFAFHoQO~H%}MG5Q)pl2@B*BL|m90 z)(J6b1WnKGVQ6z$$IWEHv~wYc0LPPMiVjK>qWc(H9rD<jOqg~W3nnN{*v-W#mQ)n@ z*V~qXK|sVNz4VaJW1xwuC9V-ADTyViR>?)FK#IZ0z|dURz*N`JJjBq<%D~9V&|KTV z(8|Ez^6iWVC>nC}Q!>*kacfxAb|D6+!5m~maei7!d16s2gMMjok$z5oa$=5taRyL8 zKP5j|-!nHcJ=HfcJu^95*IZveGcP5zLNB8vH>aj-);gdO5+EZ&GD>rktgKw}lS^|` z^Gd9&0)U!|84Q>I->r|P25g>{l}Bo3dPWI@nSnvoy}et3YQ&MufvO45Oex7=urx4u zRJ`gcP>Cdx65q_+)RM}AREA8D`}B*;()YhF@Iy1lHw37P!O+Cg)W8@B%$uj2%L6JA zKr$ydvnrLr*xb@7e@~hTP)-v`E;PuKAuTf})k<H#C^bDZKTkI;Co#PkWSPFRzaEg< T$n>rcsENVT)z4*}Q$iB};CR=g literal 0 HcmV?d00001 diff --git a/res/flags/CR.png b/res/flags/CR.png new file mode 100644 index 0000000000000000000000000000000000000000..df959197fe7f40b2b5ca43fe44ca457f6b98f97d GIT binary patch literal 734 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`hO6XFV_@87@Apk2?P zQQI(e|NsC0e?EG8MbF_Jzsfm5peYPSeVa^y6k|z{UoeBivl}2=8I!!-T^Kr8Wj%l# z&H|6fVj!IW#vihs&I1|jC7!;n><?K51(*a&HEno-LIIvGjv*44lM@!m3AnH^@i=*T zI5arkkl^Gn=-8pa$jEjvKt<tz!n8IP7KtOLCpIuNyRZuhButpo$zqUl@ynu_J!$&0 zR$sW&^Gw;~e-J+d1M_{SfA#`8NkFqzOI#yLQW8s2t&)pUffR$0fuXssfvK*cd5EEz zm4T6!p}Dq!p_PHb<=Yt#P&DM`r(~v8;?}UJ?LrJtgE`2C;{3Fd^2DN42L00FBK@5F z<is5P;tZgGeoB6_zGrS?da7??dS-IAuDQN`W?o8ag<eKUZca_vtaU&mBtS-lWR&J6 zSy{Q{Czs}?=9O4k1pqY_GZ-%azgr(o4cI&@E05I7^o$Y)GXsOFdwaKHR}-F@Qj)=7 zXkcJ)++>kGP>m##UA~#QsU?*KsSKGQ2kIA>rSE@V;0IJBj;tsIsEWbR#M0Ej7zoUp zr<}_JDiJ_Z5}a8D3|KQGCsVUcYk_i_NOGY;o(yT3IjL6q`bDYfnfZCTX*r4M#URV{ YorCm%lxET1y+BP2p00i_>zopr0M!NGbpQYW literal 0 HcmV?d00001 diff --git a/res/flags/CU.png b/res/flags/CU.png new file mode 100644 index 0000000000000000000000000000000000000000..60f6a8c8f2a4ff97be43609ef019691beb1b77ee GIT binary patch literal 1204 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`)oU;1l8sRB-?P{mD`u zhN|TZTKx=K6Tl>p(SJciYp0lLx_qpNMk`2My^ley7lO`<Xai+0h-fd7uurkBO0U|M z)p{VaX)go;Wg+OIkmhAs<A-S_-!ESM|NlQ!TuAehiWQK3PC(;|w!`zTY2Tl{{PN@P z*YCf-!4OdPf`tBc8~+y*=iK&*yC`dXUPu#Y-8t)^_J~f;xMlY7t04$vrkL*IvgUt3 ze!iZ)^rD=}d0{P(Aivs9emy6d3<i}R2m;wCsCm;p@_GB@dvST^g|x7m39?$s07Oda z1Jz&AL3bg@a1rf`!a%PXJxnVFdJUvl1Y{{FG;B~p1005CY4UN%VK@mhv>6yWB^JK{ zMh0U^kY6x^!?PP{AWo9Ey9+}HtE>l*!&%@FSq!8T!1zP9(|I6+y~NYkmHi>Bpa7F# zsiqAtP-wrWi(`n!`Q!u%r3OLsgoKo&w8Yfp=Lc9EEdBKI<l^k=7#&L(rU(m(35p6& zpD<;T8?%F@WTa&!tE*}%55tt;z|i397p`2ocJb<Ea|0J92TSE-;b7xpZg1^u>1gX} z6^1Fr1tmpgg{8&cKYaQ0?V~GDiT(eE0}CEZxUk_v#|aISTBD1G8w)>jc6y%FT>0YL z$t6qEQ_@nCOVj=G;_4g|0}DCD{!g7YH9RCNG?{n$tXsQ&wYj}{*r_hp#=*dlRBh$Y zD8tDK^onYUYeY#(Vo9o1a#1RfVlXl=G}kpS)ipE^F*LI>FtRc<*ETS;GBCJ&JL3V0 zhTQy=%(P0}8Wy!(hyiLa2iZ`ZpH@<ySd_}3Us_zGpOc@Qn4@2u0Tj?r$xqhz%uP&B z^-WCAOwQId*VoU?OG&NJ%P7gssVSSa4rqh~$cT`P(%d8~E0_G_(%jU%5-Y0!pr&F5 z!{z^X>!Yawn`dR^k(!yFQNmziU{D#Ac^jxk9LXH0n()k&k_-k51B1sK4?F@YkwjAB zo0*$hQdyA7kO^|1esNj){`UobXy*8a097#<npm0|7z2TM^OSRWKqUf5<^*R}r7{>> znmIk%75)(@r->vN8sy24mYI`krLSL<nx2`Tr<<0Om|hIBOy4<F4@k`pN?Z%n#Ng@b K=d#Wzp$PyooUcIu literal 0 HcmV?d00001 diff --git a/res/flags/CV.png b/res/flags/CV.png new file mode 100644 index 0000000000000000000000000000000000000000..2dfe516d2958efac5e6a5f519dea767d328993b4 GIT binary patch literal 1271 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`(dRz$e5NsNnwn`wSM7 zaU%06jFywwZ6<&em`_1g#%<p#=GGzZ)*e-m#%0$h?a{_+JrSzFbRq);nM_ggZSYRZ zWVY-Rc5dUe?GDdP;j!;#Fr5rk&@lf@!~C;AR6lcl)7%}ci%x^s^UgNTKhwJCRKu+G z4YPNF6`c8U;2;<s`n09x^NyKc4jhJw0L8(AJ7+-zuQ|BEkli&0M;IF-h!FXF{}B*< zdGPq-<+-1(Z~c7#DMSQFe!BnU<0YWrwl5E!0J&bpTOi1@U`0^*@|e2Sp2b_-3%B}| zY>sbO>07+avv3Vi0o1=hUz<!;@~!ht&j5N>JE)S&t}7xhiO0T+!DJFh4LGQottPVB zOb~MJ@<`1CGB|Aefq{%1wjefYXai&F=sNMgK#H*>$S;_|;n|He5GTpo-G!lpRn`N@ z;VkfoEC$jEVEiH5={%6ZUgGKN%Kng5P=HCWRMUnRD0I)$#W6(Vd~$+>OM{?!LPE+R zR*mV&X^E-H$JLG>JbCo&;nT<U6*@H4RdkfJ)btcJRdt({)U~y>)z>drv1HAnRm;{b z)Z}J&u+-Jn&6SO{tz~vrP8JR}F4mP`I29QY5fK%6`^K%C))rQlyLUt#U<f#O_Uzfa zhcBPLef;e8^Y#h`CwSQ!iVhw;sJJlkq2R>8i-sEuKXM*4V3^|V<KyGy=jrQx{=}J6 z=T7>zFfWLSi;JssObjga%#5sbO%0Wkarhe^8yp>e|H6$ccbZhsMBTn+ZMAz>byeWg z4@d4RFfnXUwLA3GB=;@Qr>Z5c5hW>!C8<`)MX5lF!N|bST-U%<*U&t~(9Fuf$jZ=M z+rZGuz~J)jj0Y$ha`RI%(<*UmSk!hQ2B^UtWJ7U&T1k0gQ7VIeX>pN$PJVJ?j(%|l zP(VK=KUv>1H!(fcH!(dkIa}9UUq3T1CAC5?qa-({rfk+apb-)vBSJDtbCayBT=J7k zb5rw5tgHfnnu-|=m;c|bkERA}o|TnHYG!&y34^hLL5*mA98irok~vT{;h8BV84RX| z2A_(OJ^+<SA}R6B%uOw+EJ$U@1i4SYxGa7D`vN~Sb9_U9su&DSEKLoJfxx_Z%DFtC z5&<N0f-|d987$3Aoz|8u&IZb9BFTjYc`~GB=A>Hb>ldY_XXfYWrsX827lSO*cMj77 VQg=Q{*8(*$c)I$ztaD0e0ssqp+Ohxu literal 0 HcmV?d00001 diff --git a/res/flags/CW.png b/res/flags/CW.png new file mode 100644 index 0000000000000000000000000000000000000000..2380de156827849ddcaaa2d92e47709d705a6f6f GIT binary patch literal 970 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l(-t;6XFV_@87@Apk2?P zRnMSV2O@!N7~(c*F^`<hZ_y4H0je<wp1$woJ;%faVD)tfDXls_vo_Q4SwdDF0v7Gk zPQ46TNU}gPHEPA}y80F#TeahgmfsX)Sq{VI35$=f-F;2cp$9I`tk)=J+a+q-1(ZeD z0&yGAWF*69%(wgTT+}@=fkC4Y=%b)rt7ii##*!evU<QY0H_||yByV>Yh7ML)4<LuL zz$3C4NGE{this?wKn8n>r>`sfLsmfnCc#oo8(yGLr>Bc!h{pNk1PPx8L2-tYhK8Fr zY}#17fO&(Ay0|&NzPx>yC8MKaqF|t5A*W8!q@YVin~FYhbwxaxG9@(R>J?Lyts72c z7QcA$>ZP=VRN}<P4-Cu<O^vs2IHHuEnwp!Oo&G+dmFqxJ-wnoybDY);r!AA&6D-Bw zFz7t*l6CmoASy8BuyB1dJ1~;k^d2txyZ9*3QK}`b5hW>!C8<`)MX5lF!N|bST-U%< z*U&t~(9Fuf$jZ=M+rZGuz~J)jj0Y$ha`RI%(<*UmSk!hQ2B^UtWJ7U&T1k0gQ7VIe zX>pN$PJVJ?j(%|lP(VK=KUv>1H!(fcH!(dkIa}9UUq3T1CAC5?qa-({rfk+apb-)v zBSJDtbCayBT=J7kb5rw5tgHfnnu-|=m;c|bkERA}o|TnHYG!&y34@t|LDjvzTY+lC zk<5Xr3C~O^$zZTFFnCnF>MBr)B$5)}%-qzH%7RpeOpyEZi_6mYzc27ZGsiassEWbR z#M0Ej7zoUpr<}_JDiJ_3CpfbzmBGx^-05g){xhJQCX!rekS9Z0W=^V=zJ5_^dS-r} hZdy)adNIf{edlmJAoXyP(OIA-22WQ%mvv4FO#s`wEcO5Z literal 0 HcmV?d00001 diff --git a/res/flags/CX.png b/res/flags/CX.png new file mode 100644 index 0000000000000000000000000000000000000000..49a51c164b214f1c5352234094570a44de8700f5 GIT binary patch literal 1369 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i1|)m0d<g|oEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8ZKG?d}4kf#9d}?s_1_ zS>O>_45Sml_(QhSc_4$m#M9T6{UNKM0Fz*;rVTFx1Ji#`7sn8f<8P;U=Ld(2wC*o{ z_wnmvD@A^5#j}SC4=X=eST@14C4g0Hv&Y*O$EAG}9R4sYd&~c#hp~xKqa%=QuBgDO zS%D{7!g3d1bI5GUHdj^Ic(VCM-}}9m?TrUdwt8@|t?-E4tgQQX>-VT?`5TAj{^<+c z%(=El-;njf|F67{4ja1!S-PBH*1f-S2BQr3uEVqTpE@WNynNlYBdh+GJ`xpjsVcH) zmOS)Z{J<?H<$F<Qu6{@@>Yjg{ce1vawf2fxGuhtWn)2VyNA<q5#nh#R8qIh2aRlvG z%WAlL>&1rbPM`IWb6$S=S?e71#bxg5rjp*pGQZXYzWYBzZOW{pk|z?>r#njY2zn@J zB?dR&Q(V=kmTGbR>E>tL-!z?-QX-02U$MTNTEL_0Yo^|>8gOgjm*WDhvy<2O$sg8L z@zD68_SVoa=4s8T#gUS6dDB_mO;^4D)aeFOo6OmWr0#tg6E+`~KDeJdRj=oK;JP0s zCQ&9g&*q$|ar$^oBL0VL&9z6ulLJ1ms7IF^@MC;p&N^9pl56+{Y11QXa}8M&JRLWg z`V?M0`q^aO`h(^&vYAV>>!)Z7|5rH8cX!&+Ba4pC6+OBj+2Y=#&(49@jCsAC{f}H& z@!*T??44alOm7QoHtbkz@jF!i`o8m%=j$hGdS+M8cp2a2q3O`DUG=2B->0`Pob${w z9yxuw9i#rQYAW;F)kjn+qJZxCK23EVn`V=xW<$E_{O;@W8@D}d6wpw$n9^5Vp2m9p z>Q~(ze=aXKagAlG5}z^aZ-@7Gca2k8tC=N}*wY0!3eAv;eYa_y((JRdzI4Vn|6X(U zU5>KAC4tShT6r96;|p32`sqF9N$IGwY3~V(v!4Dd@cL!eMS|V`_OTi9UoW)%>y^!x zydZ@4>V5r(dRrfg2~CmvA}oJKz%zZ~M6U<tT=!-+9;@g$-@omnMm$%<4>t~Gw+D7F zAG|D*e#q`#!1iC|(q!kh)w?@5Bee305^J`ZUA_G`?DnFlpt<i4#pb9_IwdGS@8-ET zvR>~J`Q<I<F>jfxdDiK;R0S}1sFt`!l%yn<q*^5xr2;7iBLhQoT?12HL-P<rGb;ll zD?@W_14AnVgUh!w9-wH*%}>cptHiBgQQL(Wpayf04aNCsCFO}lsSNt1#YOr#`N@en z`o$SQ0sWNxWPQ)v#Pn3(#PrPMY+ZAG{mi_S)C#?flH8n{vRUhZMo55+2+1hTO|r6b z$xklLP0cH@vI+odDrPWT{(rYVni{ZqR#qOVnduoN45kJK6*HLMU{@2KnNpI$U}#`q zaNJ~(Jy4A#l3l);xv3?U1*r^~AP4Ffm!<E2U*HE+B#x{o1gMI^(8SWzz!(V3o2Q)1 z11b?jQWBh5mC9gZU}WGFx?uV}prj^}WN45lLt17|s+GQeQEGZ-ex7bxPGWj7$TofF X2t6Q`d}yf*P!ofvtDnm{r-UW|dypWt literal 0 HcmV?d00001 diff --git a/res/flags/CY.png b/res/flags/CY.png new file mode 100644 index 0000000000000000000000000000000000000000..08a0e372e283cb3f258fc9950297165e8bad82ff GIT binary patch literal 1208 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`$4@;1l8sRB-?P{r{-o z*ZW6*KEH&B{rU3x!<mI|_O$%|@B||A^YyJ?Z}0v6`Q_j5A3tB+e0O-#<Jq2X5BC1~ z`WB)9DE{y7@7FsU?zG4~oM!)cmiwJng*#1BAI~oS|L-qE&EKD2f4#l`VqMnbxjy$g zHLe#kKv5yXohIq;k52=Y{r>a<X!4CRR-n|462=>)%pg?42sHEg%B0U%HUQPU-cfg> zlnJZ=sD|lgIs1c27T=$oh1l}r)5|vp`=2d|d^pAW^^V$47uNv&_51g)KY#w*x_foY zu2o+?zyI^@{=eVfU%Y&>cGLVf?_PfT{C@6|-i0eB0TulG`QyviPiHS2nL4L=<Mt&$ zjX+~Reg1Ih*p3CuCoWqv<KmT*^Op22T|EuR`0?{Q#8M#n?fcie_pe{La`M@WM-W|b zDIfzF<`=6jTnAE&B|(0{3=Yq3q=7g|-tI089jvk*Kn`btM`SUOP5|Q%*-qzy4E7RF zUsv{rtbzhef~A@^yg;GLo-U3d8t0P}BzzhK#TiZ-E@VnmNMlU$u?#a)Q!C?BGqLp3 z<2ZZv@acA~<N61VsA#C@C~2wbDV|hm)loltL`7L!ef@$JOV%tpwPab}B7f&#?`ZdM z|N93nbex>QdDTZa*tnS6TRU4i+PWHOmKwXedb)VHdAY)6=FoGKPoBPg{Q7zOhE7cb z4(Ip+kBkV534I+shbDCQb@q0rdwKYH`8iJaPWAFWf8xxkb0^OxpK_n9t&x(XrKP8- zo1CO|++gy`MM6HIp~i`)7BagreKfCNU|8@>{)U;({Vt&QR7+eVN>UO_QmvAUQh^kM zk%6JPu7Rnpp?Qd*nU#T&m7%$|fuWUw!R6Z-4^TAZ=BH$)RpQpLsO>@wP=h(hhT{CR zlJdl&R0jRh;v)T={N%(O{o)LufPPATvc6|-VtT4?VtQtBwywFper8@uYK2}#Np4O} z*{pRyBP2jZgk+TFCRtgz<R_QrrskDcSp@(!6*Cwv|G!%wO%2#QD=UxG%=C;B215&j z?H-C2KsDk>=0MeiXQq^7Fc_JeUgTA;0V<J1QsSGLn_5y?kjjt=a-V*2S^EC>1%7De z_=W&gF&LUyni?1bfqC<kb9q1|LP+KWXI24Kn3@|~I0bhHE(FSIBFTmZc`~GB=A>Hb p>ldY_XXfYWrsX827lW+RcaGEpQgMrV)&Mmzc)I$ztaD0e0suquEIj}K literal 0 HcmV?d00001 diff --git a/res/flags/CZ.png b/res/flags/CZ.png new file mode 100644 index 0000000000000000000000000000000000000000..90ceaa242a22783f68d78a44c4770d6baa7b24e2 GIT binary patch literal 1172 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`&Rk;1l8sRB-?P{n*Ck z7jHlN4+8=&wI&G@7j8TA?Z+>mn4oJNzjLjaXJbP1%1d{iLsS6;fk?o$j?cM9H@bJm z`s1I!{(vZkNCCBoxHm-9E<JPo39=SGry9+O?g=XnzyJIVuAbkeR>-YBuzcasOAr2l zZ3LRk?ObOb*m$(A>up!>>#kmyjrBsVwQd&4%j69&3rbuU6u%}Y4w2$>t5<a>sn+&9 zC9Zf&Sn|4v6a+!t<61B5QtM-uuvSk0hKSS+5vT&VUQPR=CQa9~;_^3PdVx~>uJxiW zHNmE_n`Cuwibw)ALd+C!t=F^5?^Jg@FD3_9A7~o45vWWUp$r(jI_n!^ffQp&kY6x^ z!?PP{AWo9Ey9+}HtE>l*!&%@FSq!8T!1zP9(|I6+y~NYkmHi>Bpa7F#siqAtQ0SPa zi(`n!`Q!u%p9Vp3hLeVdn>TFOv~dCR1{rI1b#ZQP^Ds-fIJ-JVF)>F)ouWfZi;^A* zP14Z`no)G=lF_E3Ph4F(I$ozhJgrq(ucT(_=tM<4S+cdX<m(q+o{cY=nUs@-gN=*1 zEgVinMn&GfaqFhF#UaL+b0=>ey?XZU;mfC``4$w}?W_C8*ywmrapAp;qC<%f1t$hx zG~8Ht@7{}|kDQ&JCpA}QzPvZ1NOET6P0O8?_wGeJ`NYlD-Q~S!<Ee+8`wucRoVa7H z=6H3^51@}!OI#yLQW8s2t&)pUffR$0fuXssfvK*cd5EEzm4T6!p}Dq!p_PHb<=Yt# zP&DM`r(~v8;?}UJ?LrJtgE`2C;{3Fd^2DN42L00FBK@5F<is5P;tZgGeoB6_zGrS? zda7??dS-IAuDQN`W?o8ag<eKUZca_vtaU&mBtS-lWR&J6Sy{Q{Czs}?=9O4k1pqY_ zGZ-%azgr(o4cI&@E05I7^o$Y)GXsOFdwaJ6)rcdR1632AnNpI$U}<3RsCd;?pb|+W zCBB)tsU?*KsSKGQ_vsgxrSE@V;D=_8ZwOEogQ1C~sev&Nm^V*3mj_fLfMiZ^W)(18 z%?+L8Z+1rl<usAxLW4XR(lT>Wt@QPaQqwc@^K{d464Q%8mgzf3=>aK8rf)SsO$?r{ KelF{r5}E*jvZ%HI literal 0 HcmV?d00001 diff --git a/res/flags/DE.png b/res/flags/DE.png new file mode 100644 index 0000000000000000000000000000000000000000..90cab7e9a4e0ad63707dd5af8a2e23a45fc301c6 GIT binary patch literal 734 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87=<B!NaB z0<swx?t;-nNrvBB8U9~j_<xS!!TQQdpbEy4AirP+hi5lH7BeP!ySp%Su*!M>Ih+L^ zk;Ond0gOLnJDmqI*h@TpUD+S93JNd@mTKDY0)>1%T^vIsE+;1}kP~oWW8!i0@@Q~b zx4}?IAVHwek%@_C(LxW021gxUP7Z^P>B@|ZY@K{63I`M{g@FPdYn^~9F72Mkpr|*i zekD6Y`A$ER72dN!u2C&<jVMV;EJ?LWE=mPb3`Pcq=DG%^x`yT<hGtd<MplOA+6IPJ z1_qaJXFNdBkei>9nO2Eg!=kneF+dIGARCJF(@M${i&7c%ON)#2bMliDbM%WdfCBm{ z`N{g8xrynizKQ9X$=SN*`udr9DXA5D86~+nHD$Bb0gaFV84;3Enww;0<&vLVnwy$e zVr3No)Ktu1xcvWaeKa*-^Q^2qQZv&tN*K%x465$!-HKgJcxFmT27{r2fx&T;MfN~7 zl1O&>X6B}rR2HN%WP%*1UtE^H|9ycUP?0#Yq7a}e2164|Qv+ilFmIl6E)S?g07*%3 zW>qSKiKVd<lhkZbY-%FOg$8*tq-Ex$TIuT-rKV@*=jo>9B&HXGEYo*!)dNz`wjY}g P)WqQF>gTe~DWM4f^p)0( literal 0 HcmV?d00001 diff --git a/res/flags/DJ.png b/res/flags/DJ.png new file mode 100644 index 0000000000000000000000000000000000000000..c424a807a8cd6a20f3b138c9b68e07e1c55ecccd GIT binary patch literal 1253 zcmZ`&e@q)?82;Em97>?e2t!@e#BCs!yPK5mPBwwH(z>>xtYib1NY@^{la{jfx>3}m zI%h`AG}GbO>>tbK{1JgsW?jH#XpqcBW$4&sBO9R90)xWwOA2lAE#RysetExp?|t6q zeV)5~`DzMO`SEd$*@<uXYj<VVB%!PW3=jf*xwiZ<jba}jdA_fS9^1N9R+S)mf4 z>P-ka-a=>|Ajc3wHXNamQiP~Fgpw<rt?F!qqG}5i8YvL^`uctynfu_1ul$0Sad}^9 zUWvuU#VLQV?e5GQm+!GIFT`>S@X?t-)6L1MmSNzt5qxM3jL)C$oY?=>(0wTY1Hn-D z@Z9@X#*7gbfQS74;Oy+|La1Y4_V73NK<XctP$<arlkSV-XFmz}e2c;0_@4pyt*O^9 zjT)Or%9moMz2ok4Ilbuw-{=AY2)6vzz0-Yc+xa8gn`*+oKA+cY_2?P@ojab{p_-c? zW?bAMXh;(@q(XpoU~CLrg8U>uKXs<Be%mFrpyBDn`n0tT>B|8k^Pz=S@3-o9T~cF4 z!rv{xVRibtnIEb)xI_u{sgWc7)4w~eznkiQ9&iv`ZjH|Q>Uz&+wJJbAv3>=-Jls*( zPOobe-dBbb**^F)1}TawRP91JfAo}vi+wxuCFn@Z1{oA<DrLo1$fZkrqCD>!yu@;H zr8IURMv%BlU`xx62WU_($<?G@)0M7QI0VV)DnVRmYIa#quWov5bFw%Ad%O*0k+~|> zlUjkA*uUnP`KL(o+{d)uGnj;XwvtICS$n)lbE8|-<;f&T_m?DT<7TGgA3oYOo$^uL zsgo~NT1rZadwXu@M*XOGH8y{<L6xjh?G_(QNOgQ~w^Z8~=2q3t`D3FWh}jXPcv;5m z*=msJHJrk@H+x-<XRYIx8u`_<&)H#~|ICu&be=4}MYh=eF+5{A>~u;yHlCwBNjyJf zan=^y5V>tLJYQ#tKdSsm*ue8WgA?EN^+zFfk}U4fZR`a6??z6#htq30n$lTlNN5XA zh=sUFNQgB=7KLx22yr@2P&j_Qm+Al4fXS?9%k2L@aOUl<y)YmSJ6O$S+(E5{MwrcN z!Hi~|)`(dd05H8-hsjM^1Fh5=SY5eLjA3krp03JZIFs?U1E(56VtrUb!`MvwC`w}1 z*-Uf=M^ObZWJScMi(iM2K9aMfM^Q4GH832?#BqBG+Y6lJ2%QzqZdT7RC=17ju`#&z zC?$fTWKA?@ucQ$h{yxllz|b~csrrwOQUfeRWRfEMSy<vj$2%*4k{F@0i>;=Sh{W@b zy>tEx=%q#UiVEeZj5X2}hFNF>YpxKM8MOv$*bI}rm;p)eRlfj3NG?@L8uLou{0rx- BC)EG| literal 0 HcmV?d00001 diff --git a/res/flags/DK.png b/res/flags/DK.png new file mode 100644 index 0000000000000000000000000000000000000000..5a3845ad103adf1d6ab03a496c829346660cfe7b GIT binary patch literal 797 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5ln4*-32_C|_wV07#$#}l zQ}=PltpET2zgoHp$b}$?AVP#o?<l+W<Mx@amTWo(WOL~~o4WMb<i(#)U;cLE9*8}4 zDbNI<nfZ6#oCQ*hB|(0{3=Yq3q=7g|-tI089jvk*Kn`btM`SUOP5|Q%*-qzy4E7RF zUsv{rtbzhef~A@^yg;ESPZ!4!jq}L~5+MzO+6|`+8ySqbwWY1ug?TOn^$D}=*b!M- z@zWxaLG3s{6I0U~r$b7A3>YR0voabMhH-jo21+!X-00L`qAjH0CU5uq!_LX~65G`O zu>sBQY~{S1siZ3lv_-YVHKHUXu_V<hxhNG#F&G&bn(G>v>KdAd7@Aob7+D#bYa19^ z85mr?o$&xgLvDUbW?Cg~4U5_?!~ivzgKQ|yPb(=;EJ|h2FD)+8&&f|t%+W8-01D`* z<R|NU<|d}6`X;7lCTHuK>+5IcrKDEqWt8OR)RfIy2Q)$gWJE|tX>O90l}mndX>Mv> ziIr6VP*X93;qw2x_0iOT&9k!dNX<;oC}A+NFxbjBKM|-#9LXH0n()k&k_-l8bAts- zcOC&MkwjABo0*$hQdyA7kO^|1esNj){`UobXy*8a097#<npm0|7z2TM^OSRWKqUf5 z<^*R}0mIeI#3?yPR2wL#i6j>q<jIhhnUiXzuV0j!o|&Jgo0gN9UJSBK-^E)GNJX|+ Rd;@A?@O1TaS?83{1OUQ80F(d# literal 0 HcmV?d00001 diff --git a/res/flags/DM.png b/res/flags/DM.png new file mode 100644 index 0000000000000000000000000000000000000000..e7fb60c04a030945c3370a0c66650c3281fc37d8 GIT binary patch literal 1169 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`&Rk;1l8sRB-?PeTHm% zhAexnTFXPLM6FHakDfoH)e_H;WeX9pf{TEaY1COBUL$I6qHy%WS<Ti2hD=+qb_a$m z5HioSJdvO}MN|7^L4|pqKSP!sP|&2&9EgmY%<c0nrWqP<RyEqF<G4l10LTW40L723 z76GE;YlV;ID{WQMKca3`<(;!f%^t`GiU7rdvL^a65Y(rpaZo}3jEZY)K>k!c<HHID zKoN-4$qVN|=+cE_%^h2m^-n1p6#Ck=nCfp=(g%tF#euRWUFjgylVM*PG0o6qlZx&t zQ_aPiI@5uUDT@G#17$&;0-`KCh<B!H=$wLhC({PzUwf?KfF5ED40#_HWdK8&u_VYZ zn8D%MjWiG^$=lt9p@UV{1IXbl@Q5r1(g|SvA=~LZkilN!>Fdh=kX2BCNw8GYh8HMw zz|+MsMB{vNf`n3opm{<<N)uz6SeRKEpPz-iYhU;5_UZhqW%f5Ln6RN^#SDu{b67+? zygW~zICWB6;}A<jk(a=NHH%g)TeooK(zT0uL>W)LbZVHluW{kTjh!oJ?qm&N(MacH z47+Bwt?V0LpWivX0Ko-wv{`oStgfi4{QcwCPj&~_hN4CR0TCG?DKR-gNl{s5pdm+{ z9Aj#nl7fo7vZQ<%PS(GaoEdr3a%bhwh{H=4Y*?{_#eGI%oBF&82_*&wwrs<+%O`C< z0{x;|;u=wsl30>zm0Xkxq!^4049#^7Omz*-Lk!KV42-M{&9w~-tqcq<-_Ce|q9Hdw zB{QuOw}wS+7h-@K%t1C3=ckpFCl;kL=$953>F4ApC+6rEX8;BCQ}UDbJ#!P&Q+*TD zGn2D*&Gq#&^HNeP^fF3vb85<Ftpge%0Wu;aqck_k%E~1_ximL5uf)nK0H~>$!EpKi z-TG*1z~)(5d8B5hXOu9Q85mUE+q)IJn()k&k_-kzBLjmY8_EKKY9x{D^3BXmEvYO> zWyl0MP`|h=egFFcKcFIUWJMuBRSbqEmZk>AKw#cH<y;<6i4c;K;LIwJ3Ih{!r^44> zkASk8NV1_po(yT3IjL6q`bDYfnfZCTX*r4M#UShSU3~R`)V1TiVL(j`p00i_>zopr E05VmE+yDRo literal 0 HcmV?d00001 diff --git a/res/flags/DO.png b/res/flags/DO.png new file mode 100644 index 0000000000000000000000000000000000000000..03c2f1b9d4e23a060b1c350710bb6e2972747337 GIT binary patch literal 946 zcmZ`#du&T_6h33im<(evk4VI0%+lR^Yi;Ld9-B66L%XTY5Ttj#x9z1}oA!20B&HZb zBJ+yK1eK5p6=A|U1Yw)$Y9vEEwj#{1c4OXCr~Vq@m+yDKd(QdJ`A&Y@3p9C&31brg zAW@~1YmvuA@1TMBtxbqEA;p?<)HwiWcMbW$#9=(apwy}X)};cJZwB~=sqzj07YWd* z2cQoCq}Z!!7iMF@Td+W<KyGVm15q&|mSoRd_D3R-@OfV#IjuP<6#?mbn68fz6?^Oa zp>ws(Bc}R?PC^j64G8h#jh7o*KYjkv`}J$jwfcv13m(kUAl`>RB0}B0FFHGqojy}@ z>O|+;j=oU$kFGEx5Nz4M!(Fj;O;cM_U%31I^LBr==SKCB*Dr%zJ)dyMhwJrM8Xw?r zv_n(0#szTIyv?zLkYWU_W)aMN_0Sj%is$FaVO!jIB?g1-%B4<Z{qGxIog2WPctNFB z#0TS&h7U+`rDZ2#YOhM3qnj4+w>%o^CWmiflC#R6yC=G*T?}SS_w@YCuh?^^W8bsN z@Kec#`=we%b>*%6P%C@#_`nLjW=Y{`|2s`eNAIDSV^X%OVchp?ldHt5W{kS|;ijWT zBi%W6_61*G(C110zWc?Ss+Hc#s(I?>VYV^$z=}(U57sr6Wp6BEntaub+535@J$}2c zux3uAXwsA?%aU2;y*ICMzbS%ZiNG=fM;ja*5{OAkCL$#wN~WWvG%2PjSvpD4Bzga_ zx&4m@tBvK2W&dyRRNP&T4YH_%(`FRbFb)m~m(xL5YzD?cIL(+KSet=RSs4?jW=y<c zwMa$~d<n~~%`gjA%lguTUK}wxIznf5S&L~}ZZo*7T!}!_1=!>S>O{mx{H6IlkEWFz zZ!!xY6-%<*=@<X4DdJhd3=~O{^_iYIs2S7GOU+w3q0G(!A6<}emYS}H>>3oM^cU$+ z1ytrt2{{9gY}4N65|oVWCt1X=!-thnnX;_hQAb-JV>zu~xlpSDBX8kof^cvq-c}+q cS{Rcv>PN`)GmuWjKa*k;s1zExH&^fe1vp1*sQ>@~ literal 0 HcmV?d00001 diff --git a/res/flags/DZ.png b/res/flags/DZ.png new file mode 100644 index 0000000000000000000000000000000000000000..9d63939e7fbc17517c0c68a3c98148b1331f2cef GIT binary patch literal 1095 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`$q`;1l8sRB-?PeTF1s zh6IC#jWhrM{|{nAP@+NI=Gj0IgkZ8UTY|A#pyBkUnx7YM{QdeJA)9P08DZS6YqCMw zXm3dJn`z5FZawhl-AABN9P!3I+9n6ZO>Eo^nl{e*{pQ`D51&A0CL0_28=n?7DK#-+ zNHVON+VpAV_Scga|NHS1DCOa1d{Mw8*vXh7*|2(g^F7;`n<hb@51jn}?;jS8t9C#& z!mSg-uny=cup`^_us9OrWw7s5QGJI!G#D7J#_DkZ!;Y~e$S;_|;n|He5GTpo-G!lp zRn`N@;VkfoEC$jEVEiH5={%6ZUgGKN%Kng5P=HCWRMUnRD74tq#W6(Vd~$+>PlKR1 z!%4$~jK<vBOaj`+kDWVs^605kXPY&TpFXayprN93NK30tQC&|_Q&m@4TfP6N538$c zs%U7KX(_LdrLS(TY^-f9v$M{xo*rMHvuAX5)~+#pnv?VPjjYVvIk6jF6qgo%|L`U0 z>$i_br+og*&%wjR$H{wmk-m+Rk(QO3S)Zxg<$52^PS2B?Yu2pHRB2NWv$XkWUctc7 zu|gu@ReNeM(7CE5t`Q|Ei6yC4$wjF^iowXh&|KHRRM*fv#L&#jz{twbT-(6V%D~|A z?TiN~8glbfGSez?Ygp8FAqJ?y9Ararep*R+Vo@rCera)$eolUJVvc@s22emhB|ll; zGdD3k)i*IcGdWw=TwgykFD11?FQX(kr>1PyI-n5}AR|IDN^_H}tX%SwOLJ56O028` zfSQUK4441kt&gS#Y@U^sM`~tzMhSzNfkD;1y<355#F5N_stM0bDal~4G%$Enyy_}Y zi6oK|-^|?9lFEWqhD?zA^oz^V_rEXjLo>%W1gMI^(8SWzz!(V3o2Q)111b?fGAB5* zDwV;~*vRS0pYQHKIZY(F&>&BSw9K4TD}DW<)bz~!Jl(XM#Pnj2W%@2rdO(VW{n!zp OCI(MeKbLh*2~7Y@)Qp?} literal 0 HcmV?d00001 diff --git a/res/flags/EC.png b/res/flags/EC.png new file mode 100644 index 0000000000000000000000000000000000000000..92e2a9e929496dc49907eb0d7ea4c7138b716de7 GIT binary patch literal 1162 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`z(2;1l8sRB-?P{r`6v zpy(dM|NCGzkOZ<};(u;4K0d<p;IR1j>)iJa2){VV`S&&>T+8Q6%v)!Q^cJd5Dz|RT zkl!*x<jZAdWbGd>3!d8}wsNszRkhQR?UEOF3j;-<+JP1U(F2BeX9OnAG-#OD)3IY! z?yT0H**fpf3IN3$rv)}n4Q!YiG;yxWj83P@zS^?Y6N~$+rgu02MS$WAK1&$9muaMQ z&T4ZmN>8(FZYxepnAzeC6ak7e`z>PhT`UznW!5~8>G>YL+2(!O?lb1O07Zb}9KQ2` zh}&<zW_*8GepY*&i+^68R(wBD1Sq~r%L9T|YI&~FbUUPCxmwE|$c6}hlvYAU?`4$X z+_y3+z<_l-vaSh8F_r}R1v5B2yO9RsBze2LFm$lWdH^|`1s;*bKso`8KV&<d2Qt`8 zJbhi+AF>JxFbS4w+VBE}_IbKEhG?8mPLS|v5EN%PX_&}<<dos&4VyL=7ZepHPkj9F z>0@yL5h1aIQ-no@r%#wNY1+i8laEgb4hRVf3k(gue&LGKq|0o~vaz<c%+AWm!oji~ z3=!vec+TkRtX-3v^Y)GG8AYZ9OLvZfqO!u$;_n~6G<`Z)bWh;H<JZsS1tdgdn4UI2 zby8H&u~9P8vQjhSJH>wbsI!ApQc#gsR#X++6#i+aTN>89nR92)pQb}P8uB{fEwTbr z4hz>evokQ9ed+1q^hN6i&?l-Tt`Q|Ei6yC4$wjF^iowXh&|KHRRM*fv#L&#jz{twb zT-(6V%D~|A?TiN~8glbfGSez?Ygp8FAqJ?y9Ararep*R+Vo@rCera)$eolUJVvc@s z22emhB|ll;GdD3k)i*IcGdWw=TwgykFD11?FQX(kr>1PyI-n5}AR|IDN^_H}tX%Sw zOLJ56O028`fSQUK4441kt&gS#Y@U^sM`~tzMhSzZnSuI^SU&7(!ZTA!G8ha^ObnI; zo_`KhBZ*{}Z)R?4No7GQLng?9`o(4G``;J%0TqcOD+&Rs0-9iHYG4cm=FL;i<pGrl zBPj{atO5qCxw*NSh12mk_mx0tO(f~iAWw$0%$!s!ef^@;^vwJ`-L#y<^kR^G`mWA; WKx)zI2a|xB7(8A5T-G@yGywp>_^HGI literal 0 HcmV?d00001 diff --git a/res/flags/EE.png b/res/flags/EE.png new file mode 100644 index 0000000000000000000000000000000000000000..081568695fef9bf354edff7725176b98383c75d4 GIT binary patch literal 723 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBC?OZ%6XFV_@87@gG4ZD7 zq}%ol`#A-rfFknp@(&(7`2YX^JG+!(AfK@$$S;_|;n@w4m5fQ=?k)@+tg;?J4rhT! zBuGU97=OriIuB&9mw5WRvOi=M6krl8)wJOS3VC|EIEF}EPEJ@LC*Z=y!{g+|vB0B4 zJEw=CjfY1`kK@6K0}4`I42?WINtqlIfHHA?46QsoLb4nefHIcCjB1lkxPI3E%D~`j z?ZGD+d{_%;sA`F8L`h0wNvc(HQ7VvPFfuSS*EKNJH8c+~G_x`=vNAN+HZZg@Ft~g> z;{l3>-29Zxv`X9>7PVc70ctP@*-)IHR#Ki=l**uAT3n=`lb@WJqhFi>6wpt}PuBO$ zO-xVqO-#>B&ek>8*U!vLNv+V!D9O#KDVwzpXoLjFh>(oZ+$1Y2m;B_?+|;}hE2{vY zreX%e<^Ol<qp1O#XJzG)nwg$a!eC}>5cv6B8BmQlk~vT{;h8BV84Q+|2F4o&=Kz&R zA}R6B%uOw+EJ$U@1i4SYxGa7D`vN~Sb9_U9su&DSEKLoJfxx_Z%DFtC5&<N0f-|dt z;c98&bfi@llr%Jv<U)fy8PYOyQmyp$i&E1w^Ye7mauU;vL6+&ey6OQb-PfW<Kurvu Lu6{1-oD!M<!ra!M literal 0 HcmV?d00001 diff --git a/res/flags/EG.png b/res/flags/EG.png new file mode 100644 index 0000000000000000000000000000000000000000..7e9d6c5cc1b75bc1b99b6437373c52b33b23c121 GIT binary patch literal 914 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lvo|$6XFV_@87?FPEhR} zzX}YgLKs){9H2<o{<5|;g#Gi;QxJOi==;4pAFmw#{@~t^hmU|F|NsC0_VM<!YqQ@z z-1_X=EFk;i^W)ccMn1VT<=T!2Ap7&HQ%}x!KfT!h<U;S4SEn8T!NZ4lZ(X`{V%gaP zlP{fE4rBvG<Y7QgR$5j@LQYl+A^>#fqz!iefD~g%kY6x^!?PP{AWo9Ey9+}HtE>l* z!&%@FSq!8T!1zP9(|I6+y~NYkmHi>Bpa7F#siqAtP^i+=#W6(Vd~$+>PlKR1!%4$L zc9D~YhZ(rFrLEcLuups3!laic7iU+eCn2t*&cNE_bVzAY(jx=C2tOt^m8DBkQy$uc zSXx%Hx~j?)ozhyB^=d_tRKS9jOV=)5y`2AX(^H-W2QHkrapcMwnPaS{BNNz7CLb2A zZ)Rs;5HL}@@bhU0Fm@PJOI#yLQW8s2t&)pUffR$0fuXssfvK*cd5EEzm4T6!p}Dq! zp_PHb<=Yt#P&DM`r(~v8;?}UJ?LrJtgE`2C;{3Fd^2DN42L00FBK@5F<is5P;tZgG zeoB6_zGrS?da7??dS-IAuDQN`W?o8ag<eKUZca_vtaU&mBtS-lWR&J6Sy{Q{Czs}? z=9O4k1pqY_GZ-%azgr(o4cI&@E05I7^o$Y)GXsOFdwaJ6)rcdR1632AnNpI$U}<3R zsCd;?pb|+WCBB)tsU?*KsSKGQ_vsgxrSE@V;D=_8ZwOEogQ1C~sev&Nm^V*3mj_fL zgk(-|W)(18jZI7}oP3w&9|6j0BFTmZc`~GB=A>Hb>ldY_XXfYWrsX827lW+RcXihT UQsLTepj^k`>FVdQ&MBb@05H%<`2YX_ literal 0 HcmV?d00001 diff --git a/res/flags/EH.png b/res/flags/EH.png new file mode 100644 index 0000000000000000000000000000000000000000..f8e59b21fc73a3c0fa40ae73fe87236f691b07ad GIT binary patch literal 1203 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`)oL;1l8sRB-?P{c<h= zQ6`YFKyX-4dIFD#Dl^EqBZAV$1f^H<i#xJ$GJ?4fk(~lki5$E<%*>2HgbbLN7=Z`| zfQljLsG#&g0jU{EnsZv(mabT_6b2SdoCHKmmo0+{EQP2)E+lis&F{;xlmCI>!^fA? z=X^PO0?2^K9_ALk;OP0|@srQzE<9-NxRH|ea@i`VMgi$7F1}xmocRCl!;2|1KkeN6 z_t^`m8w8{e3QEmzw3xGD&eF?!mtNQfLKk;0*t-IVfDDKTMDZ~J>7C-T32r((Wwwm9 z4vf`y2vlRw2t+Uupn9O<l?n=u;YN&=whYy_3{_AB3Q1iR)iiTt!E!4N(R@p|$Ucet zO~8O=ED7=pW^j0RBMrn!@^*J&=wOxg0CG4BJR*yMbOIQE$aXppWU!Zb`ns||WEB)( z5-ioU;ROmE_jGX#(Kw%+AfePCXr7Rel9ZO1n0k<@p(y8#jE>Hn8&7xasI2%|@Zzz! zfQXQops4Wl2~#Fbn>e+ZdBL1LO^YUN>RL5xSKG2_+xphcv*T%a^5iKmPj8Q}kMG$t zx;nms3`*+xskzD7=~?d|yl7E;{^rrEXL(t#9=?3qtM>fy>*w+U5+X7}Qetv~lC10w zJ73JWvExU}ktI*2T-oxa=Zua8!>QEgPo6y$7ZDR(%)B7RGc&T%HC0rN;Z*4LE7z`u zCr&>s%<s&?z>sR@v*-GaV_HBjsg}4#l%yn<q*^5xr2;7iBLhQoT?12HL-P<rGb;ll zD?@W_14AnVgUh!w9-wH*%}>cptHiBgQQL(Wpayf04aNCsCFO}lsSNt1#YOr#`N@en z`o$SQ0sWNxWPQ)v#Pn3(#PrPMY+ZAG{mi_S)C#?flH8n{vRUhZMo55+2+1hTO|r6b z$xklLP0cH@vI+odDrPWT{(rYVni{ZqR#qOVnduoN48{fqHKO%#KsDk>=0MeiXQq^7 zFqjz_ywraS%)|_mNJ@M&b5lzy3sM;}LGIHpE=%A4zQ7O79N!S2Dh5LnOH%`5ATV#9 zaxM?3L;%U0;LNI21~W4YCx_i<3xIN(NOGY;o(yT3IjL6q`bDYfnfZCTX*r4M#URV{ YT|M-G)Ya;X%|J~Ip00i_>zopr0MSUK3jhEB literal 0 HcmV?d00001 diff --git a/res/flags/ER.png b/res/flags/ER.png new file mode 100644 index 0000000000000000000000000000000000000000..ffeb28dac81a0164b2da6866eaf38e94e28e883c GIT binary patch literal 1715 zcmZ{i2~ZPP7{_0Th+;uf5%4TpWY8qLn`3uNKrTrkqXEP)UK|M_3DJbm93lt^h{$2B zii)7(HEIEYTCEgm?M!K9rgXp-N3@85C};=)m8-UezCf$gsXK4?+qduc|9{79URX$w zo$W$f0Dzq!I4~T>MV5OO6+Um+&QQQGL*Xy<2jI$QbN-ZA!@a9CI9v!oiaP)q*#NwP zpE8~TV88${iUHsq2f#V;<c;;-08l~LIuRcN9UUDlPQ(QsM=i&E3YbgJGiX(G`!DDY z)pS}V{r!JeAC)vw$=;b{>pY@{&dm>DZ_%NgLgvCt7IH4+tKPuI8RXRJvm(v5#DEk2 zY(8;!8U7{0%@(ml$tY69bSb0HeYddRjXM;J4l9tMXmn&7^87<?Kb3r9L*8~FDsXP< z7M3s_SyjStDxWlgrB2TdOLZhhb}$E5vtNX;hGNh`FZO5()9k@DT3Nd2r;sKqvU@i9 z^I{w}ZV+QZ*@$~7!|}4E5m?of8-&eF&Ts-^a>hq@F-Nq_J_iDBUxZ>t%0CTGwF%wK z(347b%^_~N;-!9;VFu(f-A=D^D))f!pdWigZ;=m4(P25#H-~^#4T(`B^^Fglu$h7n z0&X9bxHI4Hj88<QJ`vV1z~zkXV+`P&u|168?MVMpd^D5sQiM&{!ZJ)$qTkA*?Y8x4 zS{Po%(dMo%lB;UN(thFRv_rV>Jz`je!1|xBVGnOZpw-x31{{>-Xi{sU;!kFI|LPoi z4OJajcW7JuwXn3NfZPW@1)aVH9e()_{qx!_{X*WJ81!WitC7(p=F4^1z+$$Eg7?^X z-E~}BOII8T-mj5WZ%Anj-1i$4zSctd)S4O^e8RjYfDbrxjEl(obAxZLh%H%@V-S~b z+}Xg-xetXf^;F&|A>`qDI@7bw;p6Y!qEGu|CU3pC)$l`5cB^mx+wi@40@w%~f;8cq zwV8LIkEN0Pj@M<tpP$`md;tSRA0Dy+`1RbATQ;$4g91UW^^#z?nVlHCSqGzd@*dnC z&<tN}^a3H@rpub<U_~>m^tOW<z97(F<k2h@yDZP3kz#RNtXv|K_I5sg)YHYM_<8!I zQ~Z}nXzN*@%oeOvE^zeR?3rxMUm=?xfg9|EO!bne)oEX!%shMON?uuU?cNJVzxuTD z)VF)i7hWx>SQOaQUf<H#*3jDQ>xy}N<i=%qFK4gfxfAwo&ZiF^KXUSL$+6Ny#YayS zo+ye5+a!t%-!k(sz54UZ<yB>s6`FW1$hz2b?C$lE15L=m$fQtB%tUrxp?hdCPyK3t z@l|<qv6p5%Yj1&{wxEa+bv^aRpCT$+FGtm+*WVJJs8O|FPitt3a;<IOHDYet-Pw7z zKIp(wuk=Tc%UTporCz(c9`VmSxX`$<D!MMcyQi`($^5WxqO<FKLnx9(2{S*t+KWct zO!=#)zi#vcpY&I$H2Vx~%+2&a#=Co~J9dwc*X3HdJik@%KmiM|6NN_2mEYlvSLpeh z^l=isj3?E~U;u24MKUp*$s$E8f`_qrERv3~co^2w7T@_Ffm#!%lqbJia4zR|BovUA z3_6WmpCr-B0BX=_QI$q2QK7nc_yLX6NKt`WqL2wC3Z-;AlSENvLY!<T60cXQQg@V8 zK?@g)g(%*jj^*(JHBy6GmZ0bH!k|b8SeGX1(6^XLKOQewrc}i10ghoik5f(m&umo2 z>Ei(l!>|VKIbX;un3hYZRLk_qi87$H6o~3}D83s=41tjIbVvj#z~Xx17zbYDo+C{O z5TQ*&HYihMfFN-!pk~aN1rJwFJB$by0J%~n<DsZlrci1Um~xdwp|fN|`QZo*6ZGga OPy_`0kie<{an|34gr1TB literal 0 HcmV?d00001 diff --git a/res/flags/ES.png b/res/flags/ES.png new file mode 100644 index 0000000000000000000000000000000000000000..3ce59fe89167b22e03b3c8114fa2143542996d07 GIT binary patch literal 1064 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`!UH;1l8sRB-?P{bSs6 zM>*uKIf%m1bq7%(f^h#GV1%PT2bjL>X8E<B87}hw2m=KDKFD}w3eT=e!Q(AFAGfjm zKMEBG%KkjScy|Tcz9P<<LGqjH%<ilbdbgbks^BQY*WH|_CKxU75t<g}wSW4Y(+h$g zuaShye%#1&yv2HDq+peo<(mAU6K&4-<|-j%ck>)wYPqM1dug1)_86h#Q?&1FfXe<m z!0>es+wJw@Z#J;sS)uT9IsfAgf-ko5|3AP0^cT=~HylN-JA%j?PEa;b92g+~&Ui!s zDaMi@zhDN3XE)M7oFs2|7lsa2Sq~tGv%n*=7)U38@rP`u^FRiBiKnkC`$JYi0Vcsx zO&eaI&@xXK#}JM4$q5oZ4T9nfCk+$XS)R_=$h<*@TVTVcjl~5;g_{)^H^}hw^Xtp+ zZ&)y4Lx%=GQ^V6EK%lC!bV+K;(<es-7<85|Sg>Hlk~ND~EnBy6<x&QA1It|5Sle1= zXXRvJAIo6lVs3BkZ0Trg6UzlRzw!0?ozq*F_f9V38{^$4FQ2}B{Q9}PK*u}31@TQy z&Q6C9DJw0$@V8w*<^*rH%}4VJ28R9$DF?H6iJ<hPTH+c}l9E`GYL#4+3Zxi}3=GY6 z4NP?n%|i^$tPG5-49&F-46O_dF5k|0fTAHcKP5A*61Rp$Z5LvI8q7g96z8XvlqVLY zGU%5U7wPBZCnx6U7iRzk^i%Sa^*wVF(^GvD(=(H^b<OqlGxJhXEA%o-a&v0RW~~Dn zAptTXB%?Gp$;!$lKe;qFHLt|VDgdadn89%Q|K0j%YQW}MS$U*pre~Bem>L*V%wT>4 zR3naL4pdEeW=cs0gSn}})LF%|fJ!8hl=x=mrj}F|q%vfJ+^1h$mcIXefghSVz9B$W z42C9_rUu49VBS3CTpmz~5Ry5;nN_I_rj{0_hE5H~G(lNf6G=8S$de&0GbhzbU%x0d lJu^Q~H!UYIy%=PjzH6`^kUHdDE&$ZT;OXk;vd$@?2>@ougOvaP literal 0 HcmV?d00001 diff --git a/res/flags/ET.png b/res/flags/ET.png new file mode 100644 index 0000000000000000000000000000000000000000..f9d92859c4fda7fc497088b40011302ab9d55073 GIT binary patch literal 1321 zcmaKpZA@Eb6vrRl(gI`hHeh9J1cq#4xwo)#;Q|YEZD@g(QVIxr>ur16-qBLldkcdN zYzlTQ6Ic+HfQ#E4G94lDB{7>CB$<g>44@-IV3UmmGcmelelrj}UHyP0+WhZ1=lP%C zIrnL<PpvA8iV#E~grXF3sRnYg|KW!~yb}>>h7@WpRhA<3$w1@=6$a;2gIuFTsN-dX zTs;W=1(xdxLQWi^bsa+FFhYqf@7<{`LMUiPU8$7;u(Gnk^Wp!e-fW&XhvyOdBh))! zZ*Dl-u<K;c?)u9Rq2_sW0}S7XgTj5HNXE8T{Xs(c#4&SUV#Ng1;D8U^v8hDR&FMYt zm7_70;|Hq8ii`uz-L_)m0My`cSB^p#n601rem&y3`t-uak<%S*4$m2TkM-;uXHK=B z%WfQT_3NPv%*Mm;faoqZu6&}#@j5WCHjFwvOfB2Br{Wg)0buiSIB08?*L9iNUwxy1 z8U)7aH3Oed4T1wcbb)#H_Di5Y---I7jS$Gj^Yw4R1r$~fb>1nahQI+Iy1*>O2|$bS z``WYg>B?(y%8B&4Yw-}3SHS__55)Sl94q)KE@e2qTr2LB6!+GMJD~;#`~VP$4`Y%R z;`aRzp9&G`?XAF)fCHa$RWqLfDTvdkYEa29izfd;Ur{DS-mnxo9Ku`V4J>5ci|1LB zWEKh@r%=jxkHcc3gJYbBi=x1Ks*sjy56v2MNolSaLZ>sjgG>o^d9Axu`3DsJmqstX zJ8-&0%~z<Bf~C@L?`9kvyFnY*uBMd~wDZ+!t){NJwq{{&-rbAVKA$crtFK!5X70Pi zyYt^a2u=$f`Ybdgt10<-;dx$Jra7^m@J6d=Qg#&;ef?GEh0TqS;BNP^R7uHgHO`M5 z@V?pG@9Vo%C9ibzgVqM8Q!~WE;`H3C!b}32La;2W$8~*m@W)S|_ul(>U2v1Ho=gZ{ zUr!c{jvQ}XUMhq;-BulXvi`@fzyJ0=em1reDJI$HLm%D$aCZ2C@8HGE{T@C-_Isz2 zQ``$)`0E**>^06vaWrXg(2!6LE+T}uSSTX2qC67MAw@(ME+TRK{<7uKzXoh}BV%g+ z?}6){xf3uz_}{?VO<Wu0pb_R|9hlW_psW~c0RuDI4Vc14nQ0|uW(-Y20>hYQBYiI0 z!r81BT1O^fMUsDo*5b73Nm6PzIBj$@N0Mq7Vv%Tk>q~40^I{)K%4x=I;ZSZK{z}#2 zA~1>D_WZ-tGe*vWh#Y)rdF>=1d$%D<#zu4PEi_{M_rus$^VHK8)s8(%El@~wq(F@4 z!jI@4nrQ|kdfT2Frh`WL_z?;Jgl`jihqv`=H40>6tTc&X4%*Dvn}sGTWoG>^!(`fQ TNG(mbU<M(DOeLL^=-ht;j|j-q literal 0 HcmV?d00001 diff --git a/res/flags/FI.png b/res/flags/FI.png new file mode 100644 index 0000000000000000000000000000000000000000..0930988c298032b6d255a356c2f4c496d4751754 GIT binary patch literal 841 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l&B8y32_C|_wV2T|NsAu z2X7=idKgUVfk@D~^Zd={m?F0yy@jh0a_+oz`$g%bU1gJZC%0_mwrgcDX<#sI;IM9q zZ(LtKc{hVm9Tb^@#Gwcx2;?#_EO5Ez52P4Ng8YIR9G=}s196hP-CY<uSY<tc9L@rd z$YLO!0LCA(oz4Rp>?NMQuIvw41qGM{OEqnHL2{lhjv*T7lM^Id8U)P~5>l9$)5OBe z%J|e$95%|Ri<|T7%a>W!F*+(H3YJ&~3J3^KpD<<8w27jwOb(Wo0u#amLW05qLnk`} zxur1;4R$r(9u})7{tq;_`FP~M0uuxKWg(BeEAA73cBz)QMwFx^mZVxG7o`Fz1|tJQ zb6o>dT|@H_Lo+J_BP&C5Z39Cq1B1)AGajI5$jwj5OsmALVNu(K7@!7okPXH8X(i=} zMX3z>rNu@1Ir+(nIr_yJKmq-f{A7L4+{E-$-^BFH<ZNAYef`Y5l++5njFQ}(nzC8z zfJR7wj0njn%}uhha>-9F%}vcKv9byPYAR+hT>gKzK2VJ$k{YmiR#qOVnduoN42Fh4 z$L|*rL^BAgC_FQzB!j`w!oc99`sa2ugM2e{Q%fofQW-KqF4QkBOW*&#zz?WM9LYA{ z5TGgsLla9=17jdCZ=P~452!={Nl9>K6)<GYO`WQ@`o#j}G?C;&gFG41GILU`^!1BU l(=+q)bklMY(~Cit>AQLA0ja$HuDL)>44$rjF6*2UngAEb1I+*c literal 0 HcmV?d00001 diff --git a/res/flags/FJ.png b/res/flags/FJ.png new file mode 100644 index 0000000000000000000000000000000000000000..2a78075da484e3050134968bcea448530e1e1fa6 GIT binary patch literal 1523 zcmZ`(X;4#F6uw%i3WMWT!K%|vXS%4sOAttTs09TjW)UF@MLJDL-g|kngpv>h0ofrC zKnx&4u&4}D17UNa2}`gUhaw7U2%8!}lAy(<Ke}k!u{Y>UsnfnW_nmvr`M&SGd*;rQ z1+n)!+P`lP0C1!S`UgY5!M2vY1K%3^B?NR!2tSq|0IeksfAZ{L{2@Oum<2%cCjg{p z1Mm{2(q{okpaAfg3jkUPfK!}Ob6`6Fi={zKP5=a$Os4CJviqtl>4mC|e#!4rMc)ZC zMty^r5d~n&5#Io5lPK@O>ALa`1Kwj1_L$x2shN1bL2*{E(#FY~uO<|Z_#Q}2{k9Ox z8Lg`CQgwxiYXY*{Nu3RBGq_o3^T}p1qcu8fC^64^EO++Q*$J-buFDsuRGB3u&#b8F zmKLb-G<jJ&@mi#NM%Xq&HXGhpi$SO{LFKXStPzws?86-0xqr-uVc4=`Xuazg41JhJ zZ^p0>YaC_Nrk%!ntq@FfJSaQzjXG*u6YkX}@@R}erA19d@9ZIdaY|0TQ8zHx(9%;> zJD4Ij`mpqu^i#e4*6O;mSxPQh`c>)owj<1oG|1BK6#5z^E_ZUb>0^CUt1d#3jQoZ^ zWuqpk_-ppjO*^D2Vfxrkb_lP?gOgjWXu4fqcLvXl%u&A<Av-7Kms_f}^#gHfwbjMP zTPsquLqw0IQFZNPc{?k!nJT_OJ9<%8)?RzO`fzavBC7LFQYENvs=Ez&jW>wbQ`MMM z<>zn8PmYI)hEoe~oT$uc{1Mk#@NP4%v%*GXuN4{`pzZiN%Mn{>!FyoU@@A?~M`LO$ zt(z*TnFxv+PfEI-EzYRdLxAn1-7_Wn(Xq*?nbZ@t=VgVxXX3jj-?WCruIcP9V^fNv zw5B;)d+(n-B-*BQpXi(x&fgX&^_Iaa_hNOf47x><V0H-bwT$AnAd<1yALQF@3WUM( zxWF&P&~xY4^Qc{eaI;iGX9X;svRk!s@v4N)+Z`ci1>N6|^VuMu>-<srDjJt7h{Smq z-#R%nZJ9DZbn*qY%Gwhx`3;pF*>z=?<c-SC%yTE(3NBWmVeH)@jKh0F_nUM>eWQBA zz`bjC`p2&uSGW+*CTC~nrXO3LPCYU|dH9p{gO$!}H?Fp?aBwKemlqVviVF7!GWW6R zEXH8pK>w{pH_R5Z)7o|Kohqv+59J&>IASmk(>%O9v&`Y)6XQOpR&y-*kC&e^l^#j` z2J$X3ptP%~-a$O=eBrRpExc3ksLj0fkUG2zf1>$igIA_`NszAo=HV-`6Wx5Pn@ha* zx4HXQU+H>x=e71N-{_q@_q$ASfz4N}`CR<#y%!Eclr=g#=bx|tuyPSt<`_|VEi{n< zhxM@}AWS0QNidWjk3k3ADO8#(#nY8a<50a&iaScBZKY6A3gzyEaPnV-7?FU)lm4G@ zE_Wyb5@@y#Vi7J$<i%qENf5^)(IP%C8W9U&0uhM#2t9^JU@RU%@}pd72tvjRu%m85 zNlbK#v`P&noNW>uVM0tKiu#NA2{Bl#1Vw`&NerkLUTKlHF!OpS8i<jEPy)Otl;j6p zm;W0RN(v-GKy{~3^exf@5VL+kFBTbtNs{6)K-xYK5le}lXK`!@a#{%DKop>QczaT| z!H1Srb}JS_Rxf~rkjWVE^zibg?kZLA|AN)c3#tc$=>R9AF%&`KF@hAuy5iA1LTqb? Y?AhlA-Dc!D{96M+4`BPNcX2cS2D`w#v;Y7A literal 0 HcmV?d00001 diff --git a/res/flags/FK.png b/res/flags/FK.png new file mode 100644 index 0000000000000000000000000000000000000000..52543390c77d9c37bc4192f6059e501f2fd38c3a GIT binary patch literal 1634 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`%4Wz$e5NsNnwn`^PK# z@2=U^(78><u9r=>c~wToO{Wl_sF@6E^$t#L>+<^^%vqV3y@)}nhC!tk4>EG=Yf7DT zb;{Bss}B@(?%rND@rF}qZOy8l)c%{ZR_$GVII4J!plJt#GLj+6HH<2?5Ck!KeP+kT zoURKM-Op<~U(8&5JE`c3zVm~+9w7JWlm+|BCv3=Qk8p2-7{aJprxHBZB4@o^+)AmK zl?rhy`OP{RlxuF;2VS=gxMmx8!!h`lt^ZYB$BQyXx9kFL+67#<@xNvlc*i~<*C?Gq zr4DE*lUkj9#kLhkZ+36HQnu!jLHh|2$4NlXh9%6YY2JA4z=gLfH|_6RcD{Dvb-TbL zTTVVac=pAdWeb~@BxNqpbn1n;ghjnhK7C`?rgOLM+&g#ew%4SSf({@<nme|fnzwmR z&D2D{b~&5wwOO5aoI*kp=b8r1oI7Rv<rym%X7%b>G{OzhFWl<UF)zHe#iya(sdJr# z%M_p?6><G>9!-+Q%|Hh;Yc__uHRl*-s@r!nC{(j*H9E%3t14P(X;B9;1n8ZtiAQFx zUA1m*&b$THz1uHq`A%n0s%B8E0V#k7K8OL;0t$J>YJ?P!t6bxnwQTB=<;&)G&z;d; zHfe*fMK@3o5=THQ(u?PGPg}ffLfeu_-IFITP_nFtYFDn6wrE{8ZN}oslaB7#zIy(m z#Z?*Mfklv@25RTfs`m(K@r~?=PiplGDD(C!SF>qAwHo3`VAKGe2Z|uVh=JkOu3k{a zU@Qsp3ubV5b|VeMN%D4gVd!9$^#F1>3p^r=fph{Gf5>(^4`i^Hc>21sKV%gYU=l3V zwBZHn(e!k24AD5BoFJjpAZVVDkdl;^n40|j!IMYN9zK06E+8T#CMYUAeZmx$Q=Xou zPn<fbt)Zp4dc~@h*%?`xuV1`+Dc$gtr?<z~=j<6>owaLnbKbs@m6<yyHs<b~gGF-l z;_lh)tNX{;=y*_ZVd6u<iGddlHx?%B{Lyk`$&)EpwtVS1v*yj5JA3{#9a{8gQqYE& z$V%7L&{E&r*jnf0;9~FW=xX=$@N)i$b=%k1A3EYWdAZMAv)W^4A~!!jGuOQS;33!U zgGJuc^rH7AJzaG*``Wtb{fUp4osHg>cY9y*^L2L>EImawq`%+ymz__}s^*EtvO60e ztNYEfs(tom=jRzk;(BqrYM#E@`r14%>D1j_wa?$}{mn0DSJk8W{mIMC&-LT>RsCgq z<7e~Hz=eT<e`#5S>3fFxz;IM8ag8WRNi0dVN-jzTQVd20hUU5krn-jaA%<pF21Ztf z=Gq2^Rt5%_Z)ZF}(U6;;l9^VCTf?HZ3o$?q<{%r2^V3So6N^$A^h=A2^mFo)6La*7 zGk^m6Df!9zp1FzXslJKnnaSC@=KA`Xc`2zCdKo3TIW=Xo)&Y%>02vXIQJR}%W#y8e zT$-DjS7K!q0Mt~>V7UDMZhbU0VDqf3JW?~$GfEiD3=FF7?cIu9O?YNXNd|+Vk%7UH z4P}8qHIhhn`DW&(mQ)s`GGu}rs9#)`zW;rJA5f7vvZ4^6Dh5LnOH%`5ATV#9axM?3 zL<mVqaAs91gNcc`nUT{Wro)GUvYJS;p+TMuX_+~xR{Huysp*;ddAeyiiRr~4>-62c W^?;O!|INQZO$?r{elF{r5}E)Eyk<!N literal 0 HcmV?d00001 diff --git a/res/flags/FM.png b/res/flags/FM.png new file mode 100644 index 0000000000000000000000000000000000000000..0ba546ed38eb684335ef5c8587a857330608029a GIT binary patch literal 1195 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`)oL;1l8sRB-?P{nAZ$ z;izOIf(;a`+Ip|=z+)hZtYF%ar}y4|2a;%tfoe)N-EG|YVD8E1KoZD?=mIK(vx{No z14YoZ*KE5FG_zsH1Grrf22cbj4wQwOw(0JqLr?C%{XXmXGl*$G637OM0L9@J0o6~% zFb!xFP!MhuNzQ}Y4)oeQR1X5BfPTRmELZ~&ViYj&C7E;`fD~g%kY6x^!?PP{AWo9E zy9+}HtE>l*!&%@FSq!8T!1zP9(|I6+y~NYkmHi>Bpa7F#siqAtP-wrWi(`n!`Q!u% zr3OLsgoKnP#x$`ovogLk3;D>t$=$Qtr}xXRp3|^k!iJ6&63gc7Xjw94OV64)d!{UD zv6wZdY0;!jU8`p8YFjpK8{euq>*noiTsU!K=gOHoTbEAN>zcE*ckSH0&B~J(Pu|?U zdbaf{JAQxteEE3$`2P(D7CaCL`R#Q0kh0R^MafBz9|;RxyfbOaoJq5$&6_xL>a4kw zTVC$Jv*%CKp+!k+>hv{rwb!rEIjD6!CNwrUx?N~q#iPUy1_o~q<;gp5uU-Z8ifV~# zL`h0wNvc(HQ7VvPFfuSS*EKNJH8c+~G_x`=vNAN+HZZg@Ft~g>;{l3>-29Zxv`X9> z7PVc70ctP@*-)IHR#Ki=l**uAT3n=`lb@WJqhFi>6wpt}PuBO$O-xVqO-#>B&ek>8 z*U!vLNv+V!D9O#KDVwzpXoLjFh>(oZ+$1Y2m;B_?+|;}hE2{vYreX%e<^Ol<qp1O# zXJzG)nwg$a!eC-xP#KkZ8>mJc$sDMf@XVBw3<h&EgMHf-B7sUIk(Bsm=BAcZ7Njy{ zg50NHT$aB7eSsgEIldu4RSbqEmZk>AKw#cH<y;<6i2#y0!I@R54Ca=WPOlv9WCG<h zk>o;yJQ>n5b5gDJ^@~!|GxPIw({d8ii$Rv@yZPz?soDHGu|Q1>p00i_>zopr0DWv1 A;Q#;t literal 0 HcmV?d00001 diff --git a/res/flags/FO.png b/res/flags/FO.png new file mode 100644 index 0000000000000000000000000000000000000000..2a0cd6457928968675f823ac08f30f7f85669b75 GIT binary patch literal 834 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l&A>s32_C|_wV2T|NsBm zi*G}NC%)IPXmiLfS#xK@<#%vy+1k4^jy#`r^hL^wyMe)zKx!NdohDtLdGrNPJkzTQ zh|;~Ar`cz|)3n%T9+BbI3=#aOVGc%SA2iJ0YFfV6w19{JEj{E=@fAohmIV0)GdMiE zkp|)<dAqwXbg;^L06Clm9+AaBIsuG7WILS)GT2KzeO=ifvI+_?36^Tw@B)QmJzX3_ zG|nd{NQ5*9S~r|9Y-BLz)|R#wX1Wm7*F3p<HhXZNILD74tSqf9t}c~{3|i`JERTdH z1zj@QRFq`EFm*CJ6RWFgs%WTbrG<i%yxs2)J15^uY*YWo1~lF!kb9lXdY_d*i&RTo zBT7;dOH!?pi&B9UgOP!uxvqh!uAzB|p_!F|k(Hsjwt=CQfx+e584pl2<mRVjrd8tB zu&C`q3{ZnP$cEzlw370~qErU`(&8fhoc!d(9R1=9pn!f#ezLx2Zen_>Z(@38a<;Cy zzJ6w2N@|5(MoDf?P1&q<KqDkTMucRP<|bKLx#TC8=BDPASXl)CH5D@$F8{w<A59I| zJS!`Y)XemZ5(Wzcg93*M`?0GD&rB)FU@$Z^FgW(@1P4%!B$8denYpPYl?AB`nIH%1 z7nh~)e_!ASR3wh9C<LgA!O+Cg)W8@B%$uj2%L6JAKvEK%S(VCQVr=GA^y}3;pqwU> zTxgIdLt17|s+GQeQEGZ-ex7bxPGWj7$TEF5e?1`e@O-^3P!ofvtDnm{r-UW|o{A8} literal 0 HcmV?d00001 diff --git a/res/flags/FR.png b/res/flags/FR.png new file mode 100644 index 0000000000000000000000000000000000000000..ef05d74bc7d20db824b0ea6da9abb8c1473390ec GIT binary patch literal 692 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87@Apgfg9 zesWad?tlOOgTTLkpG)iCs+zskv;-=+$84Ynq!>$r{DK)Ap4|Xh%$Vfu?!wT)D(eB{ za29w(76a)7F#eG3bRNiHFY)wsWq-&jD8M9Gs%gUu6jJeYaSV~ToSd*gE<wbF$zk23 zNs~MyqN0wj30*D5=dHJ@ekD6Y)G|-;?d)mJK=rC6t`Q|Ei6yC4$wjF^iowXh&|KHR zRM*fv#L&#jz{twbT-(6V%D~|A?TiN~8glbfGSez?Ygp8FAqJ?y9Ararep*R+Vo@rC zera)$eolUJVvc@s22emhB|ll;GdD3k)i*IcGdWw=TwgykFD11?FQX(kr>1PyI-n5} zAR|IDN^_H}tX%SwOLJ56O028`fSQUK4441kt&gS#Y@U^sM`~tzMhSzNfkD;1y<355 z#F5N_stM0bDal~4G%$Enyy_}Yi6oK|-^|?9lFEWqhD?zA^oz^V_rEXjLo>%W1gMI^ z(8SWzz!(V3o2Q)111b?fGAB5*3K*^?mQGjQ_HzK`G?C;&gFG41GILU`^!1BU(=+q) hbklMY(~Cit>AMB#0jbLUI($G)44$rjF6*2UngC(6)BFGc literal 0 HcmV?d00001 diff --git a/res/flags/GA.png b/res/flags/GA.png new file mode 100644 index 0000000000000000000000000000000000000000..6539d6dd21bb264a10120ddba5c859b7ce0dea99 GIT binary patch literal 753 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`YL6XFV_@87@AFfV~& zUZUKR@O!7_|6LUQb5ZQyCDEtHv;!N~Ta+BNDm?;JwuEWzEFi^L666=m;PC7Q$a=;k zZ+91l4pvzYAcwQSBeEDsCxG#XY^U=;278I8uPggQRzU$K!BR~dUZ7C4r;B5V#O36K z1xf-g3<BXEoNOYT#jU-G2Lz6Y7B(`v3xu19urWEtY&4PZU@1I$I&p!(k*O~l8r=lK zi`000SPGYh9X#M95ME`@lfzP&dhWmh$3rnD|AT;rUzqD*u-wDZ4`_{QiEBhjN@7W> zRdP`(kYX@0Ff`XSFx53Q4>2^eGBC0-G}ksTv@$Tbd^_U-iiX_$l+3hB+!_|OU5Ei{ zFbCOCoS#-wo>-L1pkG>Cq@R<YoS36uoB<TjPsvZ#_smU9PxVbq&rHtNHP_eA%u7kF z(90;v&8aDywGL>61jvYxjMCgBD=U}$<kH;Kyb>#`0HCH~2E*n5ck8360h?!K<&m11 zo>9VJY+z6$S|0~gBaUPaR84qhN=XKTiGjhZ)s}5QC6Y)=d^2-XODYRe88Sic(=RSd z-~YY<6lloi_=W&gF&LUyni?1bfqC<kb9q1|0!ZcrXI25j)zr)>SmxvhpqwU>TxgId vLt17|s+GQeQEGZ-ex7bxPGWj7$TEF*M?D}lb+OP-pe6=SS3j3^P6<r_H52C3 literal 0 HcmV?d00001 diff --git a/res/flags/GB.png b/res/flags/GB.png new file mode 100644 index 0000000000000000000000000000000000000000..2938e61b8bc0caab9a5850bfe6819d1b7a8436a0 GIT binary patch literal 1574 zcmZ{jX;4#F6vrP4$iCW<K%xQ(g2j-8E%1skge3$@0s%x3k&rx+2q6&?mPExOS_QEc zD2sw1qK=fEurw?xpa_CWgNRE}tQs0bVQ^GjpbtOUPJ3t0{oi}e?|;tya*u`5sfK!% zdH?_z(gOXMu%cH(XAQjPkH3k8MU(3j;sXH9Kk0vBX~B0Zb|5nZ0Hm7$;9w2_e1KC2 zX8=G#1ORm$0Dz?cU@j_Ggn7b+HSxhzKUm?l<lB`6i>@eeM=GpwUt&IyavMHqi)kVL z+S6L5CJ0l>W=}%^K#tP<d?Eq|=ZXa1--S@uvu>}H_fKaSxL*NnaHKRub`!;?u<1&{ zb;SDij52xgmYcEn_Vkz3ulqH>zQuS`>(XJprlI3jNI#vhZ>~j0h|EmlyJ_7wZfY2b zmKht38rwa*J-kKxdn;9n##zN{^tPsKnO1dA&#o!F6aL_2<soX2*^y4vFj_G*RDbr> z9y@g%(j~W*8Pq%S;MNH>Vok2YJY8D6@eKX>9OI^s4maPox>G%g+4G{!YW+!pVJFJ4 z)LHqLvkV+^tTTl6hk0C3>kn+QYnoo<<km*NSIq0>Pk4pe9(^dU3(BGQV~sNl6UNq( zA6);uUs=jD3p;0XN#Qoozc}pVKs{=tn?P3jJv;Ctzn(0M4dkerUG#=ec^s(LNDTI7 zI;O`2=~ArS@8rp!L=G_I><!H<spGn4*HgQfH$1&@RXIMs`{E^BKh4d9b@6GCx#ZQF zr+pKJUWwRG^Lrm{c=LQzUh(olF+FxKwm0!nsjARy-)J(&R`X}~&&FQloxc&>Ebq-V z$Gns;M835czTFmw?!dmNzJquM*=^bPB-B>Qz;2i|8{2uhIsM)AYgPZ*k<m#(xL7r6 zqd9VGq`>4kwfiIP!~tOpwr}j?649O0?<Oi#RnBv%;wzN$JmveT!H!8}ZBdoIl`S*U zyroRu{se^y_!H_giTB~TSmm?^{Gy|g8?cl$P`N(kTeMfWOx0Db%&vy1ggV8m6OYSY z2wb)<K1+cPszWQ5>=C5KJJWG3na5h<^zG?}l(2G#s#<%>mR8~YGZk42cWuiqWhl^- zEmt=Z3Qc8EgzzZzSZU9g=8l<6w)Z(GvQFw^@c0qtO+Zv>i}SV>bgcj(6X}$EH)w%r zKf8lsxs_48ciyhX_gZH(W8d+^_tJ%ZRkxgqvT~bi7vG?I?DsCH7Tl3&Npy{7Jw2Ge zOFK(qu*hV(d-W!whP|)N3@Il^*X3&GM=amJ{r(2dKKpHMNd>1tif8z1H4)frcOLRQ z>Dp$1slUKTtQo<UBW5)xX6G<Q`nZ&aaO<irVUh7=_h1$c+gOu?lRS?7Bm+e&%hWzh zJ#KLO`?p8T+d`0eZf86ThKsEjMZqN&V5rY!HRZg_ehHtp%$v=&(AF{O(6r70G$tmp zGFJ*KmoCgiy{!ponf;?9qiW7F+5f!f1+?m&;D<a;^9R#pjQg-$ko)0^PD;IVO!s&m z=!&$Q#vn3J%eInn`5`^si(#AXf+iNOPNAN*wi3^59aQ(l<8;&CsT<?8-We?;U7Qcc z7Wh_J!++gY?7v;iVTmD-odUrEI1x!?Jkb?TB1e$iK%x^!B0CUCAd#qi$b0e+gFwjP zCuIJ=q58<37}!8woscR_5T~<JAb=oAO(7%+*{mc&Di2N&I6^joCSY-)5EhruPQ;T5 z1b#9H%5da~1xfqTPBp+SP^&E>coIQ82>J=x5&@Jf2EkC+lnRh8u5=Op#eC@pf`Jg9 z%M$}`M51)6r|rL)C_YEb14vFp;y_bc7|d9FH7kTKfW(<12;i?ikdT_jz5H54havN? zp$M1)NG=|(L}z%B4;9@?h7psmkZ`^f0$iP(D2+2VH{jaluWFG@8j!$Gf<OWx1>*9B g$@qjM7B_Wu7=cQ0gynZ6Z!>HHX#RA+21;D^-wQyD^8f$< literal 0 HcmV?d00001 diff --git a/res/flags/GD.png b/res/flags/GD.png new file mode 100644 index 0000000000000000000000000000000000000000..a55638e7ed4a68f622c6fce78994f69e560a0521 GIT binary patch literal 1393 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i1|)m0d<g|oEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8ZKG?d}4kf#9d}?s_1_ zS>O>_45Sml_(QhSc_4$m#M9T6{UNKM0Fz*;rVTFx1G9vui(`n#@wZdXX2+z89IJo6 z_w(A9XO=uZV{)!#Qpwe(ZK{`AodT!mZAn_45-#GU`Inh1_6Pe8L2<n$x~zqg8>X#V zpwXew^@H)zA$}v-6Dg18n!LQ@_t{W>=ljA!^|>=8CP$V|O)uWbe(&?1^VRb{ACUXD zfq6-c-s{Cm+>BTH=X3r0l_~0!sam<|?B9IloGYpp20p&Op0dpUvOb<Ig+WW9-%%y! zV`u>D<d8X2k|uS%j7ym@i^F2k7HhUx=8JZzOg0?WHGhiw#FtO2$op@bbnKDxf(bSI zE(hzri6{=3b?w95Pa5(6=REuxZTfBNUpYyxYaH`W3fH{o`#9^$j*1nBj2Fu#E{=Fx zKmBc@%gcy|%d0ilofF&n^w|lIcH^{<50^UqWtRz+I%^<5m8&N1Y|*v{MTwgZZ7gY? zps|nbvjB5ev$xfvoE0CuZBKp;nmGG&<+Ry?1`{rStLNR6I*mbR`=OZmvd_y*Pk-5Q z`e!GX`y}lWF`l)R&RY^V<v09!)?4t{Z{p0IHe0_&7${uSy}NC~%0vG$W}j})t_eK* zVYfNcqAS-H@A-e-F)yq*Mrx(O-(GK>)Sa&-)8bBic3kXHsw#J4%G~WIzRc0<aWUI5 zW!~erKAjaO-k%g*x@*>h%krBhG`yMZ>v7=i`^_QY!m*~#?;<Y*7hYey=ks@#RC7o5 zlwW236`wwu`pu6x@`vNyRtvX>SB1Mn!WY+`YEu=CxLvTLtX!t2Nq)kU$G*#s|9|-B zh>d%Yb_t*KwRG7>?KSJ3c+dHkb!SI#LfSiqchAn0DN7r4aLtV9-rOoBuBI*Xwm8`$ zzq99NdtQy!*M{=`zbAJ#bH|!Li^y`@9%||Etb2q0wTEXSdb=l!F8lTEjM9m;<~%Qj z1i_vIA<yjm`^_q{H=Vi~G|^wI=!eqn37itE_blq(GbR4f&62q@(lf8hMhRJzK4AT~ zyzNk6=7+dn{P#BK#h*<#*k<mnIsJ5$eVx{cV=m^>YZtIE&bGRF?6%OZ-B(!(&Lo)e zv24`Xz?561w}ok6`i6N4dl!5RFjYKp)%WNZ&D*uk-!`<nH`Fs;)-F4Fk9m(eFx#k> zxJHzuB$lLFB^RXvDF!10LvvjNQ(Z&z5JNL710yR#b8Q1dD+7bew=*7~Xvob^$xN%n ztzl8yg&3d)bC3<i`DrEPiAAXl`lZE1`Z@W@i8=bk89)L3l>B6U&)mfHRNut(%;aoc zbAA2Hyp+@my^NCFoSL#(>wrc`fQ$&qD9uf>vU15!F3nBNE3vW)0BR~`FkJqBw?3L0 zuz6Ni9;un>86^zHW(HdRH*Nsch$EQ;RTG|>Qj)=7W?=AA|1GctVvs~q;+vV9T2fh% z%8&_ipMG&!`u_I?erV?Sh5%JD7@Am`8W;nCdGnNWc|awCNah4*R)JKQTRI)p{uT|C z)I^dD4f142%gjl&($_CaP0!5F(@o1sOfLr6rtj{e2c%-1=XL@$F?hQAxvX<aXaWGF C3qZgC literal 0 HcmV?d00001 diff --git a/res/flags/GE.png b/res/flags/GE.png new file mode 100644 index 0000000000000000000000000000000000000000..c6cfd2b069fe9620191968b453fe71be44b7388e GIT binary patch literal 1120 zcmZ`!ZEQ<n6h6~^Fvg~mI~&=s&4%sXtEP5IY}2MK>r_`^iyy7q+xAAgHtp@ONGv1R zpN%mS@eyAg7L{TMK}Mu8vtcoW*=&i3kMP4sB9iM|TcpTN&ikHop7%M=drqC9RFe>& z5)S|gI<3lxF;zNaWq4nUkG5lowioG(074Dpe_CR&PG_}7JwSC9K+Sf59|+aF1@Kb< z@5}(q0RX~t=-R3!08xaY#H2<-e}BLD$6me^Q&L2L5um+YeDFZZ@x~nO=1p<gGSOfV z@86dk6D$!7hsBZ-v7$nJ{8(~Kutc!4Q|#>(`})MxR4Ku7U|__DhQz@^DaRYd31TEi z9Kp0S$#EE&OqvIgNd7QqSbSJ^v;jsN7<c)9J847w4X)hn^k9e*jHP8z_~w~SD%P*i zs9;yjbS)O+Jlb*}M)U9Uc|&nGCUJsJua0{ilax3n$)B?%0iiyfs>qbx&6<--YLW=J zN24j|5JiVBgf50^%cm96r>D)96H56cQ~l1m=7zeoyl_T(cE*IKvuDo9s(%>Hn30p2 z(7bm~(_T#@YcxbpUf%JcV|ihPx@lZiOCS(DcIMQ%z=_syu%-1xz-@M%3<hHND|U>L zmno_gW%6WVUbr6KXq~k`YQB}Ptth|qvFCEAZQJuW@4g$d#>LYQAK3kK;KSg%*zZTL z?`$C&4_#?EpSG@RX*xA_2GKcXa>ta|rtxfiL*c}g=Bt|9U)40NzVqdE-K};RJo2Wm zk-v|+jEiOp>a~K^B5(}r<uJf}idN=Q`MI>xL@#8h`3$X`OVJEP^}KKl{MF!cTY1~& z(HoBMc(@K5l+q7Aw@uh+@p3@=eO}V(W-U(A=Rkn8x>-`^ve-Gj#m=)Ea+M^>S6aDE zc@Dwl+){Ngh!V+?gvsG|t!EgOoAtZ6N`YYv*yIDcMZ8Y_!}+bpFj|hcI|NurQPr<* zv>}Ix&>7*Z;jMxL3MgvOclHTVrbbZoyo(bydpO{w`AA=t{njT>=|4Jp6S9C_P>@e4 z(3IQubyXrIF+!(|ujZg2e^GJD5q2xS<wU%#HtN8}J2{3Vy_}tQSLWKB7Q0XSjMS*} TFqmguD!?YtsY_MCVsq^;pSbBW literal 0 HcmV?d00001 diff --git a/res/flags/GF.png b/res/flags/GF.png new file mode 100644 index 0000000000000000000000000000000000000000..dfc1badffcc9564efa3f7894840b4d3a70be51ec GIT binary patch literal 1295 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`%Gqz$e5NsNnwn`|A&j zna|W@=`dvLG+>9JzjrxrUgXbQtti-|&(Z-E|8tk~-#yOnx4G6F5;vQv$=YE6*8-FR zBA~AS_c-rg<||sKAkwD?*9bQj$bhJX81?fG*XARlHnTN==0J?%K(Y&{=Knp8Cs%o^ zHp)v()Z=V7a8B3aYByl*LbwNF&hI;%n-_~G#jCB-k&lSh&@R#80DA;v*FDak`?w#v zirwasT4JD}R;mlJ2qXnWw>e+s3q21O*&Q$CF;AVN%K+#ph--nezprzB-_P^=2ItQM z+^;Y3bZ?hYn4}8~D7bf^hTI1mb&vBe5Z&cGd0HrNu__m;Q9zYIzkImKJ$a|J>SP_{ z(1sWS)CdgQ^XCL3m#Xk|>qDFYkpc$k=Ud!!_DE_^(*`;ot{y0U?yO+=5*1)PuIhjC z21qfM1o;IsI6S+N2I3@nySp%Su*!M>Ih+L^k;Ond0gOLnJDmqI*h@TpUD+S93JNd@ zmTKDY0)=jPx;TbtoKH@W@M#bfXE<qSxOu~-jl~O?H^``qoAc|-+lN^)Iw~d#1{xM} z>J&{1x@5Ge=o43$*D0-4Su2WOy^@+0b<1j3)i1U-w_`7We6?k1&%~yMT{GKO_6^AA z>+?IOw=VCU+`KpmpzJ-neRcmB8yycuJaKY5d`MYo@uK9U#|BTXJQfz3JSjNn@+D)V z%@>|-DlYo`iJPmt%iHVpsf$kzELgN@)vjgR*6mv;80@!q<<6yB*X~`snY(+=uBvkX z{P_PZoe@v3sQb<{D!o<W#`Mv=0+{^0?IWUM9~c4ss9NG0QIe8al4_M)lnSI6j0_CT zbq!2)4b4Lg&8!TJtPIVy4GgUe3@+c!cz~iIH$NpatrE9}MQs;ifEvs}HWcTlm6RtI zr84N378mK~<R>TQ=oe=I1@u$$ll47w6Vp?D6Vo%3vvtk&^)vHQQY-W_N^)~*%4V$t z8X*BPA|#_UH_6J%B|o_|H#M)s$|?Y;shGiV`TyPeXllUbSy_3cW~OJ9Fqjz_RNdRV z6{toW$sDMf@XVBw3<gUBgGa@yt^$=vA}R6B%uOw+EJ$U@1i4SYxGa7D`vN~Sb9_U9 zsu&DSEKLoJfxx_Z%DFtC5&<N0f-|d9fmRqh{a;uS50ukHk_!#;WJt@*Nww0~FG@|% k%+J$J%SlWx23e->?xqK%)SJ(}1ZraNboFyt=akR{02v$OC;$Ke literal 0 HcmV?d00001 diff --git a/res/flags/GG.png b/res/flags/GG.png new file mode 100644 index 0000000000000000000000000000000000000000..a79f8c1f309001cb3ba951729079a806d81dab26 GIT binary patch literal 1001 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lsFdP6XFV_@87@w|NsB5 zvzET#(|N(C`*r5hS8AHCtu($)U-s5p_4^S?Amg>A`uAg!UuUj(Z3SX{TeKF67OedS zM2j|jh%X1JIV$-=K=%c|?kj!Gw;pP*Ei_(RYP>erco(Dk{glKDL0zEvZ++ChpOE-| zSQ3g(O8mSfhO7nIWQ5gl$H1Kjb1={gOUs>rK4V}k3GxeOaCmkj4a7<Ec6VXuV3qX% zaySb-B8!1^0vLbDb~+Dau$OrHy0SlH6%=3+EY-B(1qyBVba4#PIDdBHalR%85m#M~ zE(ML)z^<UFaUusl{f}35E)fztd~0*{_b2D7PxiR|KO(_eFj+o0r_J}_m2wM1^@5h@ z3EoAG1tNPFX|^QaFg^X{?y}a$tbvoJu2u40bf8$_)tz;&cjZm)8uTw)nBBgYYtgy6 zQ98E^ZU5I;{+{>xhFC{}KF8u8x4Rb`G}wNqn3VRjJbvC%&O7EM>T|k2MTv2guYPxx z_u;E&7q4)9uh|=aexLM@{r?{_8($ZldZSA$59kHe64!{5l*E!$tK_0oAjM#0U}&yu zV5)0q9%5)_Wng4wXs&HwXk}n<`F6$w6b-rgDVb@NxHT+lyAT7^U=FgOI6tkVJh3R1 zLBF)PNIxe(IWb4SI0Go4pOT-f@0pvJp6Z*Jo|&AjYp$=KnU|7Up_fsTn^RLZYaP%C z36K#X8Kt>NR#q<g$)&lec_mg>0YFW~42H}9@770C12)gf$|E&1J)?xd%)p@P-rlW1 zHR4F-K-Gk2rj%qbSQ;2SDqeLJs6-M;iEn0ZYDr~5Dnlm7efq^^>HFUo_@SBO8v<0t zU}$1#YG4cm=FL;ifx=Y)$(-QKs#FG3b2F#2{;KLgIZY(F&>&BSw9K4TD}DW<)bz~! iJl(XM#Pnj2W%};!dO%9*@$*QaCI(MeKbLh*2~7ZCAAl49 literal 0 HcmV?d00001 diff --git a/res/flags/GH.png b/res/flags/GH.png new file mode 100644 index 0000000000000000000000000000000000000000..bda5d6f6610ec681e774146e009e4e2b10560e1c GIT binary patch literal 1010 zcmZ`!ZAepL6h2nNni$h?o0+9lX5_qgPF-Ch(>C1D4YP@vQLgQ7_vXIZ?)++$WQ6&n zD2n_jWRi(QMqeUoh((1zoVtP}E9;L%5Jf?0XzN_-he=(Y_nhZ_&U4Or@96@4ZlrLv z5C9^z8dV|YIQ}eOim_L?%!+B5HCvYraO-TutWkjX1e2yv2T+p)P<s;K2THZ?0lXx@ zhcW=F5kTU)+`D@_7Csi_8`PL5Cnp0@NdeJfJWJm28^KL~$hTf8;(M=jreFG{TiSIj z8Y6O4P@fHo=bnnEM`E7eUDe$v+L0mXZW19!1@+l69@7EwwT6|+iTp2MM2-sTKZ86% zLGer=#-I+5i3-Dr9F^CP;wB%*4c(3Pd7|(5B|a`1IVx)_sdbgq8ZQ-JK_%Ak5jiSw zIP2di&nn8B8^^_AT%mps?3^06@Rvh*xhkj^#B1=f!lfzkU@n_KpUZPbkc4wuojUxj zAWF0(%DZ`cBuY(MRkk5{WO(eJ_(6e4J(iGNS33G8@bJ}@vQTJS%GB^xVLE%euTNhs z7|c%@@U;}R`Yr1##@=#lL~~13|M`)dGA1llD$H%WRh9ENQa02cY_jQxBn>_Oi#_i4 zeb<%EH!>Ye{2A}jxj|RDrN^%u<uVVZ6qh%TW-@&f>&|p2bc}?%-}(K?SM{nFrLF#N z@3Ov5L;WtrxsuhN>+q2qIrU!7Y~*Ol<fbt}8Yx%G$PAfWX^>}9WEv$`ZXx9qNj{xm z-u%^IcbZvC_5T~%PL1xz1|`42<Fs&<MmG(F*W)H^PLt6_co-B2v(rRq?M5rDGg?_w zxlBnAtiw!Kr81n|=BsG#!Vyw_gn{we4^foLY4X}>2S-r_*yI6uN2rfj<e8sGQ5u@H zG8`yK(ie050D2?~=KS##vu2Kg^bGRS%i)J;iCtjPv38oPcG1A{?;|`F)`3qh{h~QK z1G+$-zAb}P;HRv+5OAPHv|!F2wuT0UVr$Nku23h|HZQ0Z6>7o4+GvU(+_aT-I%F1` b(dyxs5xJUFOpSM3_1FYjwO-YgQ+DDPLa}A8 literal 0 HcmV?d00001 diff --git a/res/flags/GI.png b/res/flags/GI.png new file mode 100644 index 0000000000000000000000000000000000000000..620b50b3dfa399982246879abf67cb971fb63f6e GIT binary patch literal 1129 zcmZ{iZA@Eb6vt27+jXT>TG`kTX9nAdOyNG4Q7+t&Il4BqqivuoD%mtG?d|QAzF>R1 zH}?T?0W@)nnT9RIkVV}f84LTcH<p-f*+$f~Bt*jo39^V1x40$S2cXq?+L?$(Z=UCz z|M{K&d7hh_`+k$7L7Vej4ghGa7LyZmQD(1JV7#0|379CM-d+zd`jIB>QDVK(YjN5E z4wV9Q9syWJ)VTl<Cjh^?0l0pEbsYnjo9h5%rY4)qjE33S*(cfO_jEdyN<FwUefQE> z;)A2tTlQc?jm^2?GuKMC-V}nzL5&eLlG*bYKi<6c*8X?eC^bgZNFFULTxr?Um79N& zu<y!NV?>Pvd1`U-hh5DRpt=d_Z$N_)H4@~1q|-@fYadWUpmt;<Y9z>0OH1c04jagO zDOHI^-lI^VMuPm&nbF5*&)pjsOzdjDN@~W6H}zE)UMk*%8VPdj-cjV?nx=F!s{EN% z&n63WXX~^RYjmiQAkP>e_vxBa<c@FAOv(Q$pTcj8G&gEAw`G6B@nX$YgXVU23P0du z?u~g&GRf)K4Lg3G@@I;+#s(AgDmPfLP<L2bW0>99{jlAbM4^(bcC%_usn^N%@v=HC zq6=12z3auK*S)@^Q_s5HzAm}Hw6x&W0-}{!qPF1u=Lh!A1a1A%I@^`QX?d6N+Kz&+ zw(Fajx7F6NmzVp$;C=HytzGl!vC;9N)5AmUfw#na?!L+ICs|TeS<T!i5&U6~$cMb` zJ)4C**)vBSiHec%Z!diQW|Mw!fTb1}mzPx3DrL`+?s{`)bdKosg=;tD7s-B6%-?ly z++NI-)hZJo?)<FL-k2Q!&e(T7KW`@m(EG5mWw2Y7`P;Tg=GP^kN8&kel*a^>gkj5x zp`2k|Of^R;Ifi|SFdQM1(}5rVF%XLQME}A6A2``Pu@?u}%nh-KU)t}9@<7L9Q92m$ zdV+K;fPnTzytFms5qP^t5WVf?EKQ4HAAg`CAcca5_njEQBi3h*a0TL_HjXnzyzvkp zmN>2nhho5-dNM};%ac8i<1D-=1SBvJa-d&v|Gz!2i9RU+3?bxJ)yY@TQ@G+TyBOl7 zgB?7GnHQvE`-HC_bU4toZl%eEE?}x^4P+ZW?0d%&VYKL1Sayqtcres%V~kq;@F&<T uThVNBTEQ;{d5)%|ydXxx<^G^Yh-Gf08>|(WzMO2W!6C4k9i|bZyX#NL$&ID} literal 0 HcmV?d00001 diff --git a/res/flags/GL.png b/res/flags/GL.png new file mode 100644 index 0000000000000000000000000000000000000000..c3d6bcf36b0b4a4473972e3f80c664193f0a9b70 GIT binary patch literal 1216 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`$4@;1l8sRB-?P{r?!? z_v?2bHtl=aGw)^Jf{!~6|M~C<qU6)w6So}WFAA8S=QKFaX?Rh{;*NL5*Hf2)vR{s0 zxT@}Tp2Oe*k1-T+8=vRUzhM&c{n}lif`31L-j6H+iXaq#RRXm<&Tsqw_ur2@kFF@X zoM+bu8xAzz;5?h&b%Q{lV_vk)1fu7yAcV#SsnHMk{p#J1+YhfOfV5xWHohoq33NZ) zTW{v9xxi-vu@~s<+b&7J9>0Lde!qVAhDqoJE<=Q?xQ*`mWdS|)@Aq$@n?LVAdCMUl zMFG&+T!uiq?nf3stDpR=cGA6|yvx!K=xVr)fL?>63*1H!D}Z5siCNGCNHLZK`2{mL zJiCzw;v{*yyD)UH%7SD#3p^r=fph{Gf5>(^4`i^Hc>21sKV%gYU=l3VwBZE`-Su>F z4AD5BoFL)TASljo(lC*|z%os&gF#!mO~zVSm|b1moL^s9Sbmm_z3}9Q1rs)Ote9cZ zHdDxFQqU!%O+}x$y1aZ&Wu&cIv1(;@Mpjnl>ld#U-d>)ckdeZ}qP8sUnMRSA*tD=~ zW?~5m+3D{Y5+fU)_Vmimos+mKHs)@RB7@HIl`r2tJo)75*&|O5A9?cn`Fc*qfSnBo z79^-Gn-HM3Y{Q2RkC2@!Ud*_$qe5+2%aJ8dri6r8p55}L=ggWnbMEZ<)8yo9VtIDa zqe+)Ged;>3D$AG0Qm0{}!yjHb28Ie2gVsFWrMH0|RV{IiC`m~yNwrEYN(E93Mh1rF zx(24YhUOuLW>yA9R)*%<28LD!2A6MVJV4Qqo1c=IR*74~qP7b$Kn>;~8;bMOO3D+9 zQW^A1i;MJg@{<#D^ouiq0{SWW$@-qTiRr1niRqci*}CTX`k8qtsTFz|CAm2@WwX`+ zjgSBt5t31wn`C9>lAm0fo0?Z*WfcI_RLo$w{Qqu!G&NxJtgJjzGt)Cl7|aX|s_yOG z3REMGWDZnKcxFmT27{%6!K30;SAj|-k(Bsm=BAcZ7Njy{g50NHT$aB7eSsgEIldu4 zRSbqEmZk>AKw#cH<y;<6i2#y0!I@RSa5XV^@;*AL4JfCHBo`Xw$&i+rlWL`}UzD1j jnV+YdmXnxX46;n$-A4~d<r-fDrCbJ2S3j3^P6<r_?85T# literal 0 HcmV?d00001 diff --git a/res/flags/GM.png b/res/flags/GM.png new file mode 100644 index 0000000000000000000000000000000000000000..fa2d771ee2477ff979f3d7087f64779c4bc39961 GIT binary patch literal 743 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`YL6XFV_@87?FPEhR} zzsfa3r$g&cOK48!mhP6+n7nb%>CkQ$i!wE<at)xeSz9)911ZLmAirP+hi5lH)-xt~ zySp%Su*!M>Ih+L^k;Ond0gOLnJDmqI*h@TpUD+S93JNd@mTKDY0)+xST^vIsE+;1} zkV_D8VRBd}#H1ngL`u0qal-2+hCYWp4JH<*otYdHIG#*Xc2JyfyOE*S;hhi542~!3 zoElmk-sQ2};CM36v7wn|=Zb$z<ro+w#X|lpPCS?dG+edBHKHUXu_V<hxhNG#F&G&b zn(G>v>KdAd7@Aob7+D#bYa19^85mr?o$&xgLvDUbW?Cg~4U5_?!~ivzgKQ|yPb(=; zEJ|h2FD)+8&&f|t%+W8-01D`*<R|NU<|d}6`X;7lCTHuK>+5IcrKDEqWt8OR)RfIy z2Q)$gWJE|tX>O90l}mndX>Mv>iIr6VP*X93;qw2x_0iOT&9k!dNX<;oC}A)$FsO{m zybV+%j${s0O?YNXNd|+Nfx%1tx4?*JkVI1Ao0*$hQdyA7kO^|1esNj){`UobXy*8a z097#<npm0|7z2TM^OSRWKqUf5<^*R}0mIe8!s)1cxh_yn6G<*K$de&0GbhzbU%x0d lJu^Q~H!UYIy%=PfzPqm;kO~O?{{yIr!PC{xWt~$(697_<<KO@Q literal 0 HcmV?d00001 diff --git a/res/flags/GN.png b/res/flags/GN.png new file mode 100644 index 0000000000000000000000000000000000000000..dabe7ce4940a2e9db3af5f06380b35bfbb2d6f72 GIT binary patch literal 699 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`YL6XFV_@87?FPEhSE zpW3}pg+CX>{#=Bj-xtLqSGh4vPGpz@)XKmncEk!uF_r}R1v5B2y8*JEG0EHAg`tC0 z)&t1lEbxdd2GR*&{2|-vJdnX&;_2(k{*YBrfJv}a(}ou)r0VJ77$R{wIbnfZf`|)~ z!@5b6CV56w9$jObeojVaT1?3QAbtjhg_A=5yxMGe0HmSBHKHUXu_V<hxhNG#F&G&b zn(G>v>KdAd7@Aob7+D#bYa19^85mr?o$&xgLvDUbW?Cg~4U5_?!~ivzgKQ|yPb(=; zEJ|h2FD)+8&&f|t%+W8-01D`*<R|NU<|d}6`X;7lCTHuK>+5IcrKDEqWt8OR)RfIy z2Q)$gWJE|tX>O90l}mndX>Mv>iIr6VP*X93;qw2x_0iOT&9k!dNX<;oC}A)*FsKo& zj{~X^M=}ShCOk8xB!j`k)L{CZvxk97B$1T(X6B}rR2HN%WP;qMUtE^H|9ycUnmN89 zKvfKeCYGiK#z0`+Jmp*-P>BGNIl-A#sX$klINgus`va8IM3M^)@?=QM%t^J<*Dp#< l&&<!$P0LA4F9unr@9w7uq{KhBY5+Acc)I$ztaD0e0sxL&)zbg~ literal 0 HcmV?d00001 diff --git a/res/flags/GP.png b/res/flags/GP.png new file mode 100644 index 0000000000000000000000000000000000000000..7bf7695635af7e9653a8448da8f0e21a35b4c94e GIT binary patch literal 1361 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i1|)m0d<g|oEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8ZKG?d}4kf#9d}?s_1_ zS>O>_45Sml_(QhSc_4$m#M9T6{UNKM0Fz*;rVTFx1Jid;7sn8f<8P<l^`8<haIF6G zyG?pIjGT;O5i1i!oHG_^)=iD-6%$T&*_mZxw)dmc|JHwsvkERA;r7kBv}C2(%8N^a zE=eqHyyQ`~_>ofghTD3l#U}Qr-Z$P`as4j?i|NBY^~%Yg&l#uBn`v2Gl)xPw!OkSW z*Iv50RZ3d==-j_AcfHi<aa~|_^5!{#@chz*+j<jx^xRh5u{+<ozU}4Sy9W;i1@<uq zJiPRh@t3^0fzd1W>5K|B-?JIkFjb1K(t2ib$?Vw7^UiPX{}zfb)H)qH<$UpuudKFn z9r?DoXnfXnayuQIvN``f%W^)OhY{5?+HTF%`Oemw<YsY2XyJ0>BT1*uKE2F*CG=dA zV8Ft)n#X=Vt~cKP;Nhc_j%8O>9c0(-N$KoXXAgW(@Y*7Fey>%G+?}0E8@zvhJ%86F z-RtE~r4v)<e>arWKfPqhAHz?Emp9w(d-<#TUc8k=ci#DB((}K5y!$;i=3U*9#Q_cb z9?q5YyCx9r$1uU`;AX=gccV{*lt|v5cXH>F2S0Z_{O2I~SpV{p;FCEztjm@!tlu!@ zqG$Kg>ziAj&$RFD-EFU%v93ZSR>)xIldio1fqFl@ru<}8oERb|7JhE7SO~K~omGfM z?~=)uW$YQU6Ij&dtZg*1__(w?xm{<KR%^ZRseFE(@?SY>ix#{usJydUhv~)vcL&)E z457DM^6d)?SKju`?NxZhVqfI2a;;cZ{*5D#q*q6-*5Pt#RQSNPCMzRf_+07kmEXBn zCG;qV#Xr7rJ6cC4+gbNonV|!ZMAIS#lWLu^DcotUpWGB5h|ikM(qHYYd+%KmGp7Qp z6=&A|qy7y_0oU8Zrd_}E)RLoDLMgaQRojf)<zKK<+~FeQ3oXUxROOYXWnL`^*!eGb z)`=;X-A@;Bb@^ysulF#%vRs1kRby<!_uAVt+AExPep`Gt#mBPhf@`VjA7kF{^0)51 zHb0Wgb(>-TW!|)FoYN|k%>H!k%{ZXHYq_V%199DN>mI7F&dr}^P(JU$Zjqg>x;b+H z*x45t793abVFu<3)e_f;l9a@fRIB8oR3OD*WMF8nYhbEtXdYr{W@TVxWoWK#U}$Av zaQSw|0~8Ip`6-!cmAEx5YP%2v)L;&>p*TOSq&%@Gl|jF>xJW-IKRGc+zc>RZpr4YT ztnZndn4apJn4X!Ot!u8YpP84ETA`OwlABXgHftTw2nmo8AsMB)Nmf=a`N^fZsd*(< zRsldw#SDha|L@jEQv){7%E}`(Gd-h(!NkCzGAi>nP>nc}IZ!p>nJFb13}yxfFZJI7 z3m67TBqhF?xv3?U1*r^~AouAPm!<E2U*Lykj&BH16@#IPrKy225STYlIhO}iB7|g4 zaAp-STrEvajhtLsChY~vY9h&o26-~1W#*(>>FXDzrf25o>89l*rWb>(({~Th15ziH S*PI4wV(@hJb6Mw<&;$VI7asZm literal 0 HcmV?d00001 diff --git a/res/flags/GQ.png b/res/flags/GQ.png new file mode 100644 index 0000000000000000000000000000000000000000..edae61e9e8fabb758dad8f397d2216004204641c GIT binary patch literal 1289 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`(dOz$e5NsNnwn`)b|( zcC#4Zh`oH9-UJi-*-#ONqKmxMi_NA=+Jn_F6rW=#z98P%Y(0a+b|!-j5`u8S3eGVW zpH}Tk30Wo^woE=04K0-oT_y(+geYbxI?q#ea_*^1ufINg@%aH5J$(H3@{N0&uH0D% zB!TP~pFvVE_2+bZZd`x)^FI*${eA7(wX%JE`|cb8vY`qJ&(`mJ_UF%^hi{+mKC|t? z+owP_T(3^=jcc!de)#n1`SWMD&mVvO{Q3KjAHlNc1<Out+;jE+vnPL^JO-hsPrly0 z^Wens+lLQ6IC%od{__+h4l#<k=ybJr;WKOF=QbwKU<k+tqNi3ML5Mg=amj_C(4Jc= z@=xT&9%DlcB^ULRRvg#Xd#WJzSWyCqq_TFdG;@0f<MuejLBxS1FxFg3bM^x%#*!ev zU<QY0H_||yByV>Yh7ML)4<LuLz$3C4NGE{this?wKn8n>r>`sfLsmfnCc#oo8(yH$ zBTpB{5RLQ62@*aHg5nG(4GlMM*p$e$LB^V0UEG|{QZCM}j!~wl$?1^NqNGQU9tlkf zx+L_-fMMF?iBl(s2ZRKL1%?J+zi=g}jcLQ2ZGG$J?Q2{(abxGonLAsTii$WqS(BUd z_KmEJjLh6Qu`#j<3`)!2K703&^GRjp?;pPwp8Uzq!p6#6skkulp<qVQ#K4P&8w)>j zc6y%FT$%YYfMMF{6K77HJ9+lBzJ`vLo~G{UcBTz6m9D9wrM|hjxv{m*$-%lj4Nqr9 zN8P?<ZNLz*Zu9Eh%f;Jc;{UgF%33`6aOD02MusZyg!#2^H<<x_t6Jh3QIe8al4_M) zlnSI6j0_CTbq!2)4b4Lg&8!TJtPIVy4GgUe3@+c!cz~iIH$NpatrE9}MQs;ifEvs} zHWcTlm6RtIr84N378mK~<R>TQ=oe=I1@u$$ll47w6Vp?D6Vo%3vvtk&^)vHQQY-W_ zN^)~*%4V$t8X*BPA|#_UH_6J%B|o_|H#M)s$|?Y;shGiV`TyPeXllUbSy_3cW~OJ9 zFjyEE6gW%(B@SeBplZT1Q%W)z42=v7j%+9k1geolvdcF!H?^d)AeA8#<Usx6vh@A$ z3;ckJ#E}(+097#<npm0|7z2TM^OSRWKqZ1mN`f=1QW-3a49%U&<7S-#N@^lWh6Z^u vq-Ex$TIuT-rKV@*=jo>9B&HXGY}0oS)B{pqom;DcnixD?{an^LB{Ts5mm~sc literal 0 HcmV?d00001 diff --git a/res/flags/GR.png b/res/flags/GR.png new file mode 100644 index 0000000000000000000000000000000000000000..5abc59d393ee6571a505d0ea05e23fa23346cb5a GIT binary patch literal 1157 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`z(8;1l8sRB-?PecrhB zK*STfe)gVwpTGaMs@caCvkoZ29kY%jdMyM&)NseHLskRSVph2~dHR{8>8F8+FMd4` z0aec43o^&Lb{|kZ(2%Az*Z%+i|M%ZNAX<I=F$CRt@#XiQf4eWeSat02niEgj*I!SV zdOC3$2t9lE9fH38`19}I|JNUX0J$$e{OH_xLnU{cTK;w*(kk2uM4E*=mLGZa<;U-! zo?{vXJJbtyw644U;sZ!M5P@uuUB?--Zq}ZApT7ULtlkUs3upAYhzTdwo_GRr239u% z1^MGQz!BWdcVB+_^B3smmq0he1tE4ldHe0ro3BsbeFJiVp&A}=eIAfvED7=pW^j0R zBMrn!@^*J&=wOxg0CG4BJR*yMbOIQE$aXppWU!Zb`ns||WEB)(5-ioU;ROmE@N{tu z(Kw%+AmP&>D9&)w&~WpHO&f~~iV8n}P-5I5Bfr04!GsMRD`xCyQ4wM|?df^?#Ho|o z8d{pGR{*8w%-YqqY}&TIb@TQ$Dgvb?C1=l=H8VOQD)ROXko4TW&5I{*?p{56ce^@J zy0Y^3k6%C8S=d<HTY%Cr5fv^eAtgRJF*Qy~KxtLg<x7?=O;1TnZBKgf`OL|)r}Z_y zxG*PJM!#XuN$-$tcp9>idBYr)GKOi7kMc=y9=ZR3k)ijZo0fUVJYW)JP%UwdC`m~y zNwrEYN(E93Mh1rFx(24YhUOuLW>yA9R)*%<28LD!2A6MVJV4Qqo1c=IR*74~qP7b$ zKn>;~8;bMOO3D+9QW^A1i;MJg@{<#D^ouiq0{SWW$@-qTiRr1niRqci*}CTX`k8qt zsTFz|CAm2@WwX`+jgSBt5t31wn`C9>lAm0fo0?Z*WfcI_RLo$w{Qqu!G&NxJtgJjz zGt)Cl7)%TdDx)%Q1J#HlnFCc5o|#gT!C+=!@KXORFk3Q6A}R6B%uOw+EJ$U@1i4SY zxGa7D`vN~Sb9_U9su&DSEKLoJfxx_Z%DFtC5&<N0f-|d98H|n1oZjnRQU}UuBFTjY xc`~GB=A>Hb>ldY_XXfYWrsX827lSO*cMsA7Qkx$CUk%j6;OXk;vd$@?2>|Q9=A!@r literal 0 HcmV?d00001 diff --git a/res/flags/GS.png b/res/flags/GS.png new file mode 100644 index 0000000000000000000000000000000000000000..baa930d0a3eb35f5e081175bda185d01a162dc85 GIT binary patch literal 1640 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`%4iz$e5NsNnwn`^PK# z@2=Td-?>%Vu9r=>c~wToO{Wl_sF@6E^$t#L>+<^^%vqV3y@)}nhC!tkg4i`GxwXm} zRY4*~ZhcLuldeu#dSvy1g3jIB%O>7%3azbK)sxzPW7ev@s}DyNuMsfqU{HqY1!~c@ zNHDVrXI8C-8@N8RV`EO&g^KRywVf|!F20>qbVc9!L0!-Dy3VIl7VImZupy&8!o3M@ z2%Bbus8+VGzMh<B9EVOLlN!kITlRt1Z3C{^2HtQCzGdrwRoC&NjL|K-fSYy!*KPc- z*#+LQ56Cr2XHcmFDrQ!z3(j2V8aCO<%+K5=FEncjuRhfLu!K1^%^R;BIRAF#rv1Ik z&eu-7ZWnlD^T~$?&pe;Ad|}g)q|61HPQ5V4)QB5*>zb|(4Ja_Rm@ci^&!bxe@mF)l zmQ(XK?WviX=+`c1)3r9M^Nw>!Na9@6pqX=~Y`;8X<-)99J&Q(&IZUdxmfq#IUJW6U z;U0lyc8)3H+TIYSR>n_=^JtPZZU%ChH5<d+oAXSv)E&AR6slRZ8XaTiRTV9?w5Wra z!=Y8@8j$J{kq}!WpWGM|om|7rug{<ijyuH~kQ#VIfEZ9+AO|Z}BTLC!mW4(}N5-d? zObm&ut~0bx7E!QgPzFbta-F0>hM%WXl(&sfVRp%srS*+7j2zM!l&ZiUuj5cH^0Tq@ zcQH2$unI0rXe`UKu}eo7u2dW6Xx*8vU}zie=;|{uMO0rmf<d_+5@<jtsp%)WTlxYS zeA=ZR=3e}og&=pr(jJ2{(9JL|hyi9ZFg%}m`zA0!GnNGT1v5B2yO9RsBze2LFm$lW zdH^|`1s;*bKso`8KV&<d2Qt`8Jbhi+AF>JxFbS4w+VBGP=y<v~hG?8mPLNP)5HwFn zNJ&adOih0N;K`$B51&337Z4E=6BHF@U|KL|N6V5aTYA>a+0(RW(x$Fevv##Do3^b_ zFT&6N{(%c8ZXCIC=FXu@r*0j)cJAK6izjcg>O6n-?A^ncPv1U%{aju^LPSPLN=!~r zQdE|CQg?5+zlV>PpQo?)`4eYOojZB<w7!OpmLB8Dsne#0hlGV*zjE!Wxrv$S_AT4C zmY0;3es6eE_4}8)&m5D=Q&%!Cr=OW)T7B+L<!5o7m@O5Y9(gY}J=G3d7qvI-?XIuV zW_h>vq`uzv*1GK7t-b6j>J3ca-rcT$@L=I#_ddD9Q>^PAJz04<{oFk3ddA>)kCvVe zUl+H#?(s8SpPjeM-`(5&|G~q>$NdeS&a<oj_vq>B>-qPZ4zv2(@CY(6c(|2tPq3_e z01Qgi64!{5l*E!$tK_0oAjM#0U}&yuV5)0q9%5)_Wng4wXs&HwXk}n<`E~}XhTQy= z%(P0}8Wy!(hymJQ4zi&*Kdq!Zu_%>6zqGhWKPNvqF-N~R11O-MlAo;anVXoN>YJFJ znVhX_uCJe&my%kcmr;_NQ&To;9nc5~kP#snrMXE~RxbI;rManjC014eKuyIAhRgr& z)<;tVHqXk+BQ-NUqlCfO+|=1lRt%^{9LXH0n()k&k_-lOQ-i6qie~|pNFpim&CE?L zsVqok$OO4hzql-Y|N8<zG;@4IfT|b_O)O0fjDf(sdCIvwpb}vubAmIgfGP~lEX~cF zk_49v1En>Qq(g%|8PYOyQmyp$i&E1w^Ye7mauU;vLH6mp2kQZ;{^o0-dW6B#)z4*} HQ$iB};<-$O literal 0 HcmV?d00001 diff --git a/res/flags/GT.png b/res/flags/GT.png new file mode 100644 index 0000000000000000000000000000000000000000..10ef0cdd16a543cb63d42baa88d414d2b8843f51 GIT binary patch literal 949 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lsFmS6XFV_@87@gIsJmi zv<vY|uD$&9^Z)<<a1zM)2j&8$UVZ-c`Rn^f&+oi=b^F$%^UvQr{`~a=P!K5f`pfSt zcTZowef;B#%{Ol@JAP%~rCTR~f<P&V?8z&8Z#}s5;o0uH*XHg!yW#ZJgRfw+uRi~N z`r_W&wUh7OId}Z*)&<Mj9zVYWmwoy9*T27iPo3Ry<@SkFmv)~#wGGGx3IdIVIP%}W ze?SJvH~DuOffQp&kY6x^!?PP{AWo9Ey9+}HtE>l*!&%@FSq!8T!1zP9(|I6+y~NYk zmHi>Bpa7F#siqAtP^iw+#W6(Vd~$+>OM{>~!zsf?Mq_SmX^9P+44hq7C?4mV^f2M^ z5w+t-j~(Nk^7Nq6@zclk6*N?Il)7B~d}5q}yrSH~{N#fD90NTgT|<3iorQz_yrbR2 z{qG;Ra6%&Z+>tA1?i{*w>eex_ZtJ%<ZoHAbaYJUMq~4NK4?FievM^Mi=JCG1{>(j~ zOH@l-BT7;dOH!?pi&B9UgOP!uxvqh!uAzB|p_!F|k(Hsjwt=CQfx+e584pl2<mRVj zrd8tBu&C`q3{ZnP$cEzlw370~qErU`(&8fhoc!d(9R1=9pn!f#ezLx2Zen_>Z(@38 za<;CyzJ6w2N@|5(MoDf?P1&q<KqDkTMucRP<|bKLx#TC8=BDPASXl)CH5D@$F8{w< zA59I|JS!`Y)XemZ5(YB^gQ|Obw*u9OBbftL6P}q;lEGkUX0Sz*HyEfy5=n_~W^QUp zWkD)KCdhsI#bxRH-xv6ynd2J*RK;LuVrgn%3<T!QQ_kf9l?Wl36P#I<%3xt;WM<;D zu7y1ZD65Gi8ye)vkd~Q~YNfAVl$xHIpQoFalbBu%vQFPUL=Q;WF6QC}YGUwo^>bP0 Hl+XkK+GCA- literal 0 HcmV?d00001 diff --git a/res/flags/GU.png b/res/flags/GU.png new file mode 100644 index 0000000000000000000000000000000000000000..166c121e1aea7cf62ca7a0670211c672cd3af469 GIT binary patch literal 1120 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`$r1;1l8sRB-?P{n^Uy z8LAQKs*yl4TQ!_fvzh@L!Xl+n#iL%vpiu=;k5z%bWnD_zEK{pmMwl{?VvTAw<Lb!f zRptv;L^dteF{uKIKn!71uZT{X6S4HH%Z#OwOV1@F&Sq0Dhe+{jmZg`jt6p@uxNlAI z#BF)G(*!iipt>|F9D*ii&f96<wAiP2dT2-~&>V;q*sg-I){NrSWm{$$7@KD>Xw*QZ zz%DVg%%59r@9q%KppGOCmf`|h4RaVm3nXwD7?}OCGk_t;SQ6wH%;50sMjD8d<n8Xl z(7`I}0pxHNctjQh=>#zTknMCH$Y3w=^mS!_$SNqnBv`6x!wVGJ;_2cTqH#VsK|-lP z&^#d_B`GcOD2vV+9|udbGCn_!2aldTeA>Lp^2W`EqCZScP6-M+N?K}qikuHQxIQpH zU9u!K#nHhp&N0w4(lwO#%;bsFoF)Zdzi{Q!wTo9TA6H6G$Vkaa%1X;?bUk<J)U9LJ z&fPmG*ga?R=I+(AcegJW7qiTlkGKEda9}}#PLblm#D{_t11}nS6czkGdhDpWikhnO zZ+<~N&6SxiB{d#4>Dzofa#(<o;fI#$F}-j5-GS~`Epd$~Nl7e8wMs5Z1yT$~28QOk z2Bx}(<{^e=Rt82^hUVG^hE@g!mv3i0K+%w!pOTqYiCe>>whJ*p4dx&liu2P-$`gxH z8T3nwi}Z8ylM{3Fi!*=%`YHLz`kuLo>8ZYn>6yvdy5{=&nRzLx6?z#Zxj8juv(^EP zkN_DGl2MwQWM$=&pIn-onpa|F6#&#!%wV|u|89LWHDL3stUOXP(=$pKOiT=9&DPup zsu4#r2dXAKGo>Vh!NSPkV*8>5pb|+WCBB)tsU?*KsSKGQ_vsgxrSE@V;D=_8ZwOEo zgQ1C~sev&Nm^V*3mj_fLgk(-|W))C{frW*sQ`P5qZJ?|sl5A*@Cqr6hPO6o@eo<<A kW`3S-T25kmF~~Z7_fS0`#c)`8H&7FUr>mdKI;Vst05s8H`2YX_ literal 0 HcmV?d00001 diff --git a/res/flags/GW.png b/res/flags/GW.png new file mode 100644 index 0000000000000000000000000000000000000000..fb59de837c05fbad23b276384875868e8711f4eb GIT binary patch literal 972 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lz1566XFV_@87?FPEZYm zgw)>j%KW_|_UED)R0JXpCeI_WF9@m~5m4E|uXIsR9ikDUejC416_;2PyWlE5`BQ?b zKm*_PO8>tq`u~zBPyx_{HGB#h%<P<uOl{nfXTdhks?n+4Wl*=n0HWZifJ!=ta3s3` z&;+0@XNA<<b8HzFcrncN0xAHS3A7hT0+j)|Kv_?S>^x5(7h(dO1TuiWd%M9L<VnVo zAirP+hi5m^K%69RcNc~ZR#^`qhqJ&VvKUAwfboZHr}IDtdx@v7EBixMK>;SgQcW9P zpirHsi(`n!`Q!u%r3OLsgoG3(<}|S|v$7C}fWGF*-O|%#`1R%O%Pbik6%z#m4GVLM zgeC=DGTK!1iL1+N1%t-&HH%g)TeooK(zT1bxf+V9ezCQ=9aCGD_DpOA!xJ%Y?QH32 z>uPp)^$><h#bt%1#orI;v9rw!nR-~5-<gGhVUDGC5z8S~cA!gCOI#yLQW8s2t&)pU zffR$0fuXssfvK*cd5EEzm4T6!p}Dq!p_PHb<=Yt#P&DM`r(~v8;?}UJ?LrJtgE`2C z;{3Fd^2DN42L00FBK@5F<is5P;tZgGeoB6_zGrS?da7??dS-IAuDQN`W?o8ag<eKU zZca_vtaU&mBtS-lWR&J6Sy{Q{Czs}?=9O4k1pqY_GZ-%azgr(o4cI&@E05I7^o$Y) zGXsOFdwaKHR}-F@Qj)=7Xk=h;WJ6gXP>m##UA~#QsU?*KsSKGQ2kIA>rSE@V;0IJB zj;tsIsEWbR#M0Ej7zoUpr<}_JDiJ_Z5}a9;%3x+`;`BV|C@_aHXd=ml26-~1W#*(> q>FXDzrf25o>89l*rWb=O({~To15#DY1-F5k7(8A5T-G@yGywo;NiFCA literal 0 HcmV?d00001 diff --git a/res/flags/GY.png b/res/flags/GY.png new file mode 100644 index 0000000000000000000000000000000000000000..65499a7ca3a130d9e660b13e1d4ff9c157d26c40 GIT binary patch literal 1332 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i1|)m0d<g|oEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8ZKG?d}4kf#9d}?s_1_ zS>O>_45Sml_(QhSc_4$m#M9T6{UNKM0Fz*;rVTFx1JfN(7sn8f<8P;)^%g0VIBsve z`CZmJQMZ7M$Ynvx)WkSk^V_p*BRQQCv|P9M{pE~RR$AeFVX5C-rq>G+)@EG1#4XmE z9cG+$bl=N!Z+5Lam)(9>H28MUqRH_yZu8sifBxC#{GSBf?32Qd(^8+;AB<smd-v^? zvR^aS>O6URMO<xCVvaYvBZK1~b%mcl*7B_Re6@UDul<5wcM|osnhJdqyDZ=NNom;v z73VXvH%Ia_Dg2px%w;nFS)&)mLOoY!%-I{@*uB1U%J#nND}(-AHs(1h;&x?yMir9` zx4`BPSHsm#Y<hEKw%^3vo0DFA>Ck#~&_sN9S7zQFuGZb1-d}rW-Ilnb^XFnd&v8+w z&B3d${T0>`7c`KqSb6@^e#gcCwz!thp8YmDMqv$mxoW0A^J72L#+gp@jw!J$6M1s~ zMV#QY?v{qM=r2;9ZslhSb~!Klx<fi&@W!@g4Y9`EJePyrBi5u=<O%<)n6&VPh4QN> zMt3U{Q{GPt%)X$!Y6suTlJXsyw}Kl~7;ikd(UHX1lwIsr?r6K%&9ZscL5Gq_+dpzH z%Itk`QTk`%&K&|XigWVRmrLH9`{3MFp>JV3H@rQ%Jg0!i#nI_QPWvR`jC*DCR<M=Z ze=FL&%G&tXewnLpzTdo1sj_N^|ErkyAA*7>GV89(@!qzHt;tQ&S&;dEd;6Yle*w?z z3H)k`3vP+k?wmJwdWLP-l(#ddzKyh8w!H6slJ4Q+r9YHC*^;>&zaH+=-o!I)_OXU} zi|QA<)vi9ewKek&!#l5Mw!9jCp=naif=t25+WPwybTf|&rEXeyS^3z+zB7eOSI>BM ztgF?Qd)8B)OtHG3+J`Ueb1a?y=4O7`*{ut7ezX4!NiO<!h%c(<w`b++iaA<G<^2pK zq}5k^)4i_jwZ=@ZfzkHl=d-GBtjgQEbANM)u76x);q~CJ`;?gipVO??&$Dm3YaQU0 zJH7wn+}1nc_Y7wC{FylK>a+d((z7GI@BLwT*<Q=oE3B&rO!}%Nt`Q|Ei6yC4$wjF^ ziowXh&|KHRRM*fv#L&#jz{twbT-(6V%D~|A?TiN~8glbfGSez?Ygp8FAqJ?y9Arar zep*R+Vo@rCera)$eolUJVvc@s22emhB|ll;GdD3k)i*IcGdWw=TwgykFD11?FQX(k zr>1PyI-n5}AR|IDN^_H}tX%SwOLJ56O028`fSQUK4441kt&gS#Y@U^sM`~tzMhSzl zfkBOEeH>7YIFdO~HQ|{lB^eB+1_rM)gEs<|NFpim&CE?LsVqok$OO4hzql-Y|N8<z zG;@4IfT|b_O)O0fjDf(sdCIvwpb`NjbAmIgQW;DP44l-SeFm0f44O!Cp+TMuX_+~x rR{Huysp*;ddAeyiiRr~4%k<qN^?=k-<8!-!nixD?{an^LB{Ts5GBq00 literal 0 HcmV?d00001 diff --git a/res/flags/HK.png b/res/flags/HK.png new file mode 100644 index 0000000000000000000000000000000000000000..3958838402a3bec534e54329063dd8d53a970a10 GIT binary patch literal 1216 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`!^)z$e5NsNnwn`}Z^j za3XcS`?@0c^~BH>sPjDuu>QPm>C;fhd+NL>vKst%ReA0kNqyP9`Om8tFY{u7+<WSL zAcSPm^F+VrNdeDdy?)-j`t$0A53~C}E}i{;O2;ENgL@kMP?hR@?`QP^4f%F--{<wq z-t{+qJF@rplZSuay!yCw)_nsBs7jz?g6+SbJNf(B<M-1#pGLU6o6!7u<BHb}g%2Gx z@979bP1E3i>}C34!PHM{7QLU@`(@Y0pEs^N@v{Uu5AHAxzDF*4-%lR}8ujhqE|7Ik zAHA;2hpTy2k@@r1)i1j?0X_aAC;I2DYtK^x@2NpU0O;$7_8LGE<XJ62pql%Jk_f|r zwrKDn`wm44>;_<ryh{GK2S_oN1o;IsI6S+N2I3@nySp%Su*!M>Ih+L^k;Ond0gOLn zJDmqI*h@TpUD+S93JNd@mTKDY0)_T@x;TbtoKH@W@M#bfXE<q?$iAZJjLw>zH!=}V zEq3mxtoZq3;|Wd<F3#?bu1;@{q!XT=r%#+ZsjZ=<xq8K_g(p{LXJlo*e(~z1w1kx8 z;*&FH%$gY;5fyp+#;u#y3r<>ES?=DkYiD&uRpsv=i*_G9Z?9mWVWDE8W1}P#tEXk9 zW~OJSXs9W9nO}2d=1a+$kvA=O&M2z<$=d3ARCQ_U(-}pgQ$w$sZY}-F+Z%Csa_7pG zJC{!7Y?pDfdC<B4ATz_hqbetFR{AXk`b4$FHKHUXu_V<hxhNG#F&G&bn(G>v>KdAd z7@Aob7+D#bYa19^85mr?o$&xgLvDUbW?Cg~4U5_?!~ivzgKQ|yPb(=;EJ|h2FD)+8 z&&f|t%+W8-01D`*<R|NU<|d}6`X;7lCTHuK>+5IcrKDEqWt8OR)RfIy2Q)$gWJE|t zX>O90l}mndX>Mv>iIr6VP*X93;qw2x_0iOT&9k!dNX<;oC}A)&FsQn>cPmhhIFdO~ zHQ|{lB^eBs1_qCcS6u}vkwjABo0*$hQdyA7kO^|1esNj){`UobXy*8a097#<npm0| z7z2TM^OSRWKqZ1m<^*R}0aX~8SvdWe`ROB2QWHrsG{}=7Ei)(8N?*SyH9a#wPd6<m eF})aMo4$v)9+1*=-O&rw#Ng@b=d#Wzp$P!99omEd literal 0 HcmV?d00001 diff --git a/res/flags/HM.png b/res/flags/HM.png new file mode 100644 index 0000000000000000000000000000000000000000..26a61cbff431773bca08c3ed9bc41adbcfa439d6 GIT binary patch literal 1719 zcmZ`(3sjR;9KVCj;eykUYA6rEN~Jx%4TR;68pF}HaD+IO1tNQIj6K{-5f#SN02u>8 zQo>NARHT`Y6j4DFA0bM|9(s-#g5WDPD+3i|-LZh#v7PVx?!CYJ`~B|!@qH^yN@V-t zrr-boeq0VK8ID1&+s7L|n{a439MEzmj|sp5`)fl&3|xnaImtW#R!;{YZ#@9dA(VF) z0238}`xyW*wgN!VRW~i11Ax~+(gJ=wBy@Fkb!M);ziWTKxhW{L3WM8xa>;6EWMpFO z4&Y_`aC*_HbjzRRRTBOl0Ez(EG<w1Lzsp$>TT7BkZWmTw+Hpc_Zf%oUha;o%6%E^x z3htFwx7M5zq#eNrY;g<GXd8#q5FTFTmY+$<KAV<vSGCfq*S#n$8{{u>hJ-vbn4N|d z&o|kwC@g1FR*FdZZY>sDVm6<q)9c2LhPV?UJ4vJ$WQvnUbCQY9pdjbOiB1a1NhS{y zM{tB>A*2CNJQ}$x1sH~xmkYsQY$%iq5wL4>wcp-2c5%3N*JaD+eY)IXGNrBl-2J9= zgXLQq^fl6jUlQN`3^GxuVn4q!=m6&<R}q1*#cDkt91QDQw87kXwR~@fx<D1ZacXeo zDM5}iinf$f7adbqyW!|9TlK+|{HVzVP>9EGw%INci8Z6?6#4p=@^}u2!(A(<IFphW zG^qqe?v1f8Cs}hRr$>arG8SU6c4pjO%d*<oDXz*)m{0<1;#NVcz`#lZp%T(YVuKOF zHocTP${Tu)wbDHqBaGuP9d|~fKCWbOI6IrYFEjJ_v}v$|?({vMP(JPeBWY>r85kH8 ziH>@b$BOR;0|F{w9nPHTWwGkrO@a6;d+p9HG<2JfkA2J#y0O{gZ`26x8HPJNPXts@ z^j7%lqm0Rki$Lt{YckhDl)z?z0!#=8E+*<Y0s|Z~M()R|xDGhM8o9i9Y&XUq@8xfb znBxaE$y^qbKeI!e5jZW+pPrE+5y^y7@tvE!J-562ZV~YKHzvL1|7HLl584V7I3IB@ zUTFKCIP<-TeLg;W>i4P?natk9Cga~v{CsW2yakuq$!Ij`>jrh!!v`U;`jW)U6o=+f z=ojg~&TC#bjIuCKhwl`2`-dI7u;=d9YmHCWx7PJm{B-z9aeKpq>dq5GUZrWmg)6v9 zL3X@!v5BW%wsyXFks(2qnuFyy4(&U>`{@4M?^?O#yBBPaS$nQsaOh6^c6u&~qv@_a zn@~wfZ5H*_|E&7Ok=i1>_0^@+Bbw{Y-tWu^`^Iqf(cGMYhaUjr025`I|EWEAt~s~| zi?RgF_;~v~Lw{#BirT3A<4PZKsZjsPRYzB2_HX?m1)Vo?2BywggD%e*>b-a94wBxS zf8pf1zxr<szD}Kuve;|p<vzoeO?uk@;(W*QmT>*59wGcJI#_vi>#hX{!h*kRj88F2 zghnYtte3(8L{e#VGBuh^qw{Go3~D5UMki8f3@Y`<>x!E%3DjDNQkMPyg4&Hgz`q1Q zcb#C+%8V<8dMQ9m20fCc6$`Tvg8~AGL@P$PYN1@p6Uvoh6`778N{vLiilQ*8v(}ia z9MB@rWx-dN)FK9hr4^ghQjL+pNP;2*pzU@ZNB+YZ@nbMJQl(sB1TnLyp$AtTcr|CK zQesp9TIBmwU*(VhawdD6#Z#)K#%!GwC|v;}2D7~7cU>YR5j;tJ$O5!kv!kg|@JF{+ zT-HE}zXxTJay4W`&yI<ET()BnZbo=)E>7kGnKDbtKoGrDuGDJCvMiz8;5rTA@F;ND SiQ$o<2yo*QS&q1j{C@yW6H+Pw literal 0 HcmV?d00001 diff --git a/res/flags/HN.png b/res/flags/HN.png new file mode 100644 index 0000000000000000000000000000000000000000..bf923cb81b5b1884cbcfe180a6e88089d82906bf GIT binary patch literal 971 zcmZ`&ZAepL6h7*fYhh`DT49N#B{lE8rmbC!R5shnjWt(!!(j97?(X8|hP(5Nen{!C zei)dAm_Y~@ga`%&*^eU13`~Rm1pUzEN2OwcALVM;nT9N>%X!c9oacScdEfivy<#++ zh?DP<13;Wkt2QC-4lh{@=6<<^N09IZ`T~HyYg>L<rC6u3T9Y22J_Dek5g>?C!)E{= z2{3H|pxXhGJe~cg^KfIxSZvlHj*gCkcLXC!{1egQ2*!GeWL@cgGZ&8Gxf?HM+Fr~c zSu58vDyXBlva&Kfu{0Q1{2mNpM!vWlT38Ov{|KQIGjddh#uo?17SMwk`Pz`q*R!_< zXE#hn1$7i7FB8e}M_75n7lbI$WGI3BsrUA9QGV)#8k(gkS}Znuw2T+gvbw%i6pkQ? z6?J+|Y(Sb2AD!UK%!@;*Ri`d69~faR$!QG<N{hwzTq+x+#-sC9iKK;NKaEY42c`m( z<9w4WYEtqn->5BBn~Tc|O()M6#ivQyt~W)i>KI1KFq-ssXzhG(wda0Ee~&*SQKfJ( zObWwXIJQsK90+dm7Y$_GwNEA9JR9`<Ol>Led(`(Z#<aAx#c;?|^KpLfW2=Av9={A= zn{oSe`t8O$c)N5_Q!3i5B1f}T90FvMlu|+FDk!CyIzp4#G^IR9QZz}v``{S+tHI^A z3HG}GH+1>mmSKZ3e1g|)7i+9l91uQl72$NVRwv<gpg`E%ETMB*c}{QT1-3$=BnY9> z#?@vyM3?hobw@9bNDhxMJAAHknpV46pNp#$Y1)WQUZC!+JRvrCR_D>QmJ@h~2)QI# z+a5FfZ_hcwCOUv3N%B=r*Kzdhj5td#xHz%S!+{XKAmOd%pMLci(3BKuGNTKq991rP z7(eCZw&6;O_4gnABCs-uNF8au+TE;C~9j7bM}!O77CQN{6syHa6yT6u5yFhXm{ TLYV4ShOh~A8iTsG&~oWFurGOz literal 0 HcmV?d00001 diff --git a/res/flags/HR.png b/res/flags/HR.png new file mode 100644 index 0000000000000000000000000000000000000000..139e143b8fbce862a61d3c291019ab7045588290 GIT binary patch literal 1096 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`&>$;1l8sRB-?P{r?OM zaP*If`3nc{8zG5L?EFABQ2eH%W{*$yG>wpqvbt>h+%~`bJBsT685z%NnR(Q#Z`MgF zOsdTD$Su$4x~r=5f9X;n`n7P;y@;ewRSiF#Tt8MeJPwQhvtS`e3Icxq{6Ay*|Heir znla-)Py`6Refz&~;s1(?|E;Yc637OM{QUmEtK)xr`~R{s5ZToU6j{6W77(pjee>+{ zL;uT4|M&F($+OE314V%15)#vZNL+lnp~}>`6>HCUr_Zfe2V?_9z~VqD5E2!eCMiBu zNoFdL1hOH5a8eAc2FL{lQBVA>-9U=5B*-tA!Qt7BG!Q4r+uensgH_f8$l)yTh%5%u z31Ivo+vz-z!CvC&>&pI+RZxIQuvF8A7bvvZ)5S4F<NVc&rb34eL|g--6VuWPX3PYF zZ~MDeOfZ_&Gx^^3pNq@A0!7>x)w^G0IO;sTpZySvgNBgz5{F|+4(kF|U6ImN@M&kN zYQC7VErL;Q!OeiO_RCMdRn*qmI3x!&CTPfX9(%-TBXCS5_@$58^z<8R0(7QoUzN%% z4Ox6Mt9;kqe+>K=+E!ewFq(T-{Isatg0+FO-{#d@%sVG-<FNa|y6wLo|J+q~Z%M8D z|G(^gU)Z=?EWV1W{rm)UzG{hUL`h0wNvc(HQ7VvPFfuSS*EKNJH8c+~G_x`=vNAN+ zHZZg@Ft~g>;{l3>-29Zxv`X9>7PVc70ctP@*-)IHR#Ki=l**uAT3n=`lb@WJqhFi> z6wpt}PuBO$O-xVqO-#>B&ek>8*U!vLNv+V!D9O#KDVwzpXoLjFh>(oZ+$1Y2m;B_? z+|;}hE2{vYreX%e<^Ol<qp1O#XJzG)nwg$a!eC}#P<3zbR_toRGgC@37z~XJ432Cl z3k0f>M6$~_GdH!QvLKZq6XZbs;<EJp?+g5Zio}r>g#cAC7@Am`8W;nCdGnNWc|avX zNJ@e;t5O-vEQ}2-oUE;SmH}lokz_-IJQ>n5b5gDJ^@~!|GxPIw({d8ii$T`udj#nL UDd(-ebwEuFp00i_>zopr066QU5dZ)H literal 0 HcmV?d00001 diff --git a/res/flags/HT.png b/res/flags/HT.png new file mode 100644 index 0000000000000000000000000000000000000000..2583da392f5f40926d7e6ca877c6a2f1c3afaadb GIT binary patch literal 951 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lsFUM6XFV_@87@ApfDeb zWalvek=z0h2}BC>*;E$>W$cSA++i6p3rGUlKoJIo1q|{Fc=eW@zWD0wm6H{7OU_+A z31kCBfZ~}FSsCJ)B^o71*B@>!YuMQq(NfxQY{L<t2vGd0fbms+qpLDDt0&c$S2<5i z(XOm?S~IyGC;}9}BwzwW=Y&lbn3~OUw4GyTJJZp2zNr~d1R@0_ukZnpF`R^m13h99 zaq&2iVk`;r3ubV5b|VeMN%D4gVd!9$^#F1>3p^r=fph{Gf5>(^4`i^Hc>21sKV%gY zU=l3VwBZE`)q1)(hG?8mPLObE5HwFnNIArsp>zDqp;O1s9Xxrc$F;9}cKh`Hc!vqx zo_-u$Ev_y{kEp6FU6RP;U@56FVd~`YfRLcDz*bI%r&ks@#5xCiN4tmn%d0U=F>YXT zR!$ZUHZJD&p209_&eW~FYv=B5UMwtT$>X4GY4g#%gMs1N6!oqfRc63wWl$|~jVMV; zEJ?LWE=mPb3`Pcq=DG%^x`yT<hGtd<MplOA+6IPJ1_qaJXFNdBkei>9nO2Eg!=kne zF+dIGARCJF(@M${i&7c%ON)#2bMliDbM%WdfCBm{`N{g8xrynizKQ9X$=SN*`udr9 zDXA5D86~+nHD$Bb0gaFV84;3Enww;0<&vLVnwy$eVr3No)Ktu1xcvWaeKa*-^Q^2q zQZv&tN*Ig{3~EH{<A7?!k<5Xr3C~O^$zU)wFnFCAyb-8G5=n_~W^QUpWkD)KCdhsI z#bxRH-xv6ynd2J*RK;LuVrgn%3<T!QQ_kf9l?Wl36P#I<%3y3{Y-HlpS2ph&P*xL3 zHZ;hSAuTf})k<H#C^bDZKTkI;Co#PkWSzc8h#rtS^L58Ppe6=SS3j3^P6<r_-ibD6 literal 0 HcmV?d00001 diff --git a/res/flags/HU.png b/res/flags/HU.png new file mode 100644 index 0000000000000000000000000000000000000000..625846af539e471b5c79310781fd93e856c6d890 GIT binary patch literal 728 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87?FR?7~A zwC&$+-u?go|2=08xD@y~=lcQ?P=U+acY#2Pu_VYZn8D%M4Uol*N#5=*3>~bp9zYIf zfk$L9kWK*O57|!VfeiK%PhVH|hpd7EOoFAFHoQO~cTX3`5Q)pl2@50zT-ca+oV+|3 znzeI!SXd-nVkR^&G-qfC2_y)3J2SQHc=Xi6p}}zxGbe|E$2k`!CZ3?x6ByXU&$^p1 zGw7;2eq6Nh|8$^{swJ)wB`Jv|saDBFsX&Us$iUEC*T7WQ&^*M@%*w#X%FtZfz|hLT z;PUN^2PhhH^HVa@DsgLA)OH~TsKFd$LvemuNqJ&XDuaG$aglybesW@tesKm+KtClv zS>H1^F+J5cF+DRmTi0A)KQk{SwL&kWBsZs~Y}PuU5fUIHLNZEoldP;<@{>z*Q}ar! ztO9_ViWv--|KF{TrUq=Dm6b<oW_m^mgPDOr)xEu2v8xHsOex7=Ff=kSII^J(6ibpw zcKK%Jrj}F|q%vfJ9H?JhmcIXefgezjII^M;pehDK6H8MAV<0eZo^mb^s6+rsNpNNr zFkp=gog{@kHv#1|k>o;yJQ>n5b5gDJ^@~!|GxPIw({d8ii$Rv@dxYu%sgF}9f(&Hv MboFyt=akR{0NpLyg#Z8m literal 0 HcmV?d00001 diff --git a/res/flags/ID.png b/res/flags/ID.png new file mode 100644 index 0000000000000000000000000000000000000000..f88d48af94f4e36d5de26e20abf49cfc6930f878 GIT binary patch literal 685 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBC?Oi)6XFV_@87?FPEhSE zpYrpL$^ZZV2a4>DJ97s}F_r}R1v5B2y8*I^G0EHAg`tC0)&t1lEbxdd2GR*&{2|-v zJdnX&;_2(k{*YBrfJv}a(}ou)r0wbA7$R{wIbnfZf`|)~!#W`*jiBk-Jq&FQ>$sUL zn07AY5by}rTUEc3ogrnaPWS(qCFVeFswJ)wB`Jv|saDBFsX&Us$iUEC*T7WQ&^*M@ z%*w#X%FtZfz|hLT;PUN^2PhhH^HVa@DsgLA)OH~TsKFd$LvemuNqJ&XDuaG$aglyb zesW@tesKm+KtClvS>H1^F+J5cF+DRmTi0A)KQk{SwL&kWBsZs~Y}PuU5fUIHLNZEo zldP;<@{>z*Q}ar!tO9_ViWv--|KF{TrUq=Dm6b<oW_m^mgN1=Xfy0FT*wut*rj%qb z7#bNE9NAD72vj49WS4JdZfZ$oK`KKg$btIBW$F9h7x)1ci6bit0jgp!G_f=_Fa`qi z<|*g$fJy|Almus10Rz_9!s(>Yj59zvO(eO{AWw$0%$!s!ef^@;^vwJ`-L#y<^kR@@ Z`kpR&Kq}qy&rhHx22WQ%mvv4FO#nM;&3ga< literal 0 HcmV?d00001 diff --git a/res/flags/IE.png b/res/flags/IE.png new file mode 100644 index 0000000000000000000000000000000000000000..17f255fc26fe84273e367c0a88a1597af59a0fa3 GIT binary patch literal 694 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87@AFxvx& z7-xGfy|eE>5S(B7zl!mHB?Axvfn(vWNkEFRB*-tA!Qt5rkj0Ei-tI089jvk*Kn`bt zM`SUOP5|Q%*-qzy4E7RFUsv{rtbzhef~A@^yg(sUPZ!4!iOb0e3nT?x*qC^nyu41W z%goGtId^r~TB%tvCh`|~7#NP<ar}7agmV!{Ly2odNlIc#s#S7PDv)9@GB7mPH89mR zG!HQ}vobKUGBnpVFtjo-xO_X~0g8s){FKbJO57S2wOxn-YA^@cP@JDuQl40p%Aj9b zT%@0qpPZPZUz`CH&`-%v*7wX!Oi%SqOwUZt)-~7H&&*3nt<cLT$<3)Lo3##TgapWl zkc`sYBr7YI{N&Qy)VvZas{o*;Vg|$I|99)7sR5g3W#y5YnVwO?U}j)Yb#L!h>}tX@ zQ%W)z42=v7j%+9k1geolvdcF!H?^d)AeA8#<Usx6vh@A$3;ckJ#E}(+097#<npm0| z7z2TM^OSRWKqUf5N`f=1fB|c6;KX)lmjqBw6G<*K$de&0GbhzbU%x0dJu^Q~H!UYI dy%=PfzNf1mkc!g0>Iu}u;OXk;vd$@?2>_n7)U^Nr literal 0 HcmV?d00001 diff --git a/res/flags/IL.png b/res/flags/IL.png new file mode 100644 index 0000000000000000000000000000000000000000..6c9a6b57d83f19bba715f40cf14b9d562609136f GIT binary patch literal 1006 zcmZ`!ZAepL6h3J~ofwLcRtx%5WH#@;WzO9sn{Bw;+_1T{sAzM$+b-R0wtHt<{jd*2 zGYZWj%s!MrDH#ZTh(e1BDyTH12n^J;PmH82s%7ik2%1ta=RF_KdCv2mx4zg^m?U2) z2Y@6-uQg*_B;EK}^u6-AE(~*B8lwiF`*`9Hn+)qEcD>mMuy+|i&0&D=2-Um+2#^5p ztN`?BfV7I%-c5PfcwJm%(P11O9*#sJ{L!aCU5hqm_XD(zyB`>Yhv+f?7M@1?9{xE! z{qy7Ja4_@+J?4lYKKUv9c<AH#E92|9`{*%8Wcbw=b5(!ozJW8{W9TtQ1fTOaK0^cz z6D<Epo1BsaFI*kZ=kBAI1gF9?7PvWMfmz%B{R_aI7r`m~>KxH*DuMN{o;jtW+)${6 zI@w}976}#ltpY~t?>o7xpdXVskumDxMrA3<F)4wJyd;EL7_G*#yx(q3x74Jpt+_|p zVvE&I9#-6qk#+GCiY{`V<yfk`r>DB=n^n=N$WM=tmnSsT9jQ00@9Fe5HaDGWJb9up zkl5UDq4Q!_`=#2=rX3qjFotb$ms^A9ZX9T9q)OGPC98!*L#9Ptce~5Ozn@sFINQ4E zdBUfrhRbLA;#wkB&FI^g?_bu>&-!{Rb!Xm4eMl1v8Rf~wC+)AL-z*h%TSSLVWNEvf z#Q>{FN~I*%C@GbN%Av_sG^NTUDVih)hukAG20T6o=dAw!Kzr@Lb{tSiF9<%TxX0#a zfd~kGg7?{NJR!IdARInB!FX&g)@XBa_FYO9L2zCNTb1P&J^cR4mLN)`OA;1$z*A1s zTAw}OVZ9<v7vqosR7a$bn8o?6N7H(ibGb#x&Lz7KjSV6vElTGPr;KxmZpg_YLxGK6 zq%4S{7	sR#&jVN&68(r7QHI!Zb_AXh9ZG+3GdqYCNh#&5tCVlqj7NZZ9&_*|`NP y6>aCRnGx08Y-Yg8@hnXce%8hLyh<l;a|zOG1XGlSp-g=}7l(k+nY6(I>%m_#E}A(2 literal 0 HcmV?d00001 diff --git a/res/flags/IM.png b/res/flags/IM.png new file mode 100644 index 0000000000000000000000000000000000000000..936e801d721c49fe94deac19c31dfe7e441d4526 GIT binary patch literal 1117 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`z&~;1l8sRB-?P{qrK) z=txNGys#EXP#B273?wyYB=ye;Yn~I+J!$B0O34JM;IxAF2^EvmGKL6qgtZQs*dGjy zJJ-;CV)@Jqb&cnQw2rws@6F9UqHYc{7Hs%wdBcN=VJGeVPQ|1@ICkWemd&Zu;<I6? z=LIwnMu}*j6<0qeqJ5>I_40*{H`c8?v1s~fr@-@qng}(5nrD0??;P59uCVMzL)WR& z(o@Q&P?rm79`g@AK7ZOtQ;&1}YCvZobctvKjXmcZcf6tHm^Dm2%%|ssH1`CC9@n>q zhrl^e?c+)&KoZ#mxGXR*-_#%84Wt-Lg8YIR9G=}s196hP-CY<uSY<tc9L@rd$YLO! z0LCA(oz4Rp>?NMQuIvw41qGM{OEqnHfkF#BT^vI+&L<~GC^ZP0CnTgCV(pleoR*lH z{QSX_N6#KUee6D2SU^NbOi)yK`h+Qyra4ZYJauw-KuAznU}*653ohot-qG&i{`U`D zIC0~M$X(sEXJXUBu9<Bs`^G2nuB4=>tgy8B`-d-w9<k@k$J_sJIIti=r$}*O;zPlS zffo&L{E?FupFd&7lpfodprFf_jEy#)PECFO<k`X&$$1qLN(>BhEG2JUxN!I#(5<Q^ zt`Q|Ei6yC4$wjF^iowXh&|KHRRM*fv#L&#jz{twbT-(6V%D~|A?TiN~8glbfGSez? zYgp8FAqJ?y9Ararep*R+Vo@rCera)$eolUJVvc@s22emhB|ll;GdD3k)i*IcGdWw= zTwgykFD11?FQX(kr>1PyI-n5}AR|IDN^_H}tX%SwOLJ56O028`fSQUK4441kt&gS# zY@U^sM`~tzMhSzlfkBOEeH>7YIFdO~HQ|{lB^eB61_m$n-vV<RgCvp?-^|?9lFEWq zhD?zA^oz^V_rEXjLo>%W1gMI^(8SWzz!(V3o2Q)111b?jGAB5*DwV<9!qCv^%uBDI zKuJv`$<QEAhP2F_R4aY`qSW-v{5;*XoW%5EkZt;&zIs3^D{@{3P!ofvtDnm{r-UW| D{Hu!& literal 0 HcmV?d00001 diff --git a/res/flags/IN.png b/res/flags/IN.png new file mode 100644 index 0000000000000000000000000000000000000000..ecba2f9c489952752049127bd66f452d6ffa0fd1 GIT binary patch literal 914 zcmZ`zSxggA6umCBf;IvnvKS4CfVk9|p_a;o52$TuV_Rz(BPM)wm`<moU7($!5Mu}$ zKtC{wVpV>qxCD$_)DScgjnNPdE=VHrqbx2&G)nvujpMB!rW$>D@0@$jJ@?*s&~7VN zC1)oCfXZw#IFOgc-@<u_{mJtMr1?UbwG80u;YHtB1?D-N$zcU($OmXV05FSE;}k%c z1bFWRpd$boHJ$xiOR&&uw=hQJSS%)=)W{J^K5L2Ja~Ao00;2Net^DQPw@+_|A3Ptp zK8T1hDzYp;eKy_GJK7Z;LBtr9+qcKMx`r9%G9t#PJbyNQv3K-LbOaIOiJ9@qneo`i z*v<QoyRY3x#26K#BQJhW<dKp5--t>|iz2O6iT|9ow-q7HksP)PD1H0V9Z#w^mm8o} zvD}17QjKXx2-*4Tecq*if`L*pTaC(bMQY02)bQ#O6-o_eLm5->gmY$E8dEc1kYbhT zgA}K97B4Mu^4z<z*AvaPcY`JNfkzLCoPylNlTB|7&QiuwrB55$bfo=g$C2ah+XvRH zieBix7(LXpMV0(QyWz(5u*6nf>0FUMwJb9`>vZH^pR-u=0oDm^%k8->t9~q40#LCp zw<xL7cmsctCmAax7c22J7vzzkkfd~KQmdwP3{^yvg*2sGOHwpR4!`n@{n6kHxI}mT z{~MysPphy&7vB&HxTW1}kOv|h3KHG`$9jp72L-|v;0Uvi6?iKvh}<r<jvz$8i{G=} zBl*00>rP$55t;E3j3?}?rfEZf3;TG#MALR`3ITOqzD4}y`8AKGO}r?0Bq%1y+NRmo ze|xrzF3AIwMoac7rdFaSD`A&a^zl-C4G&`cgG8uKxbvyThNg@}6N4_GHWX_~4IbV8 zV?%zlq$F4>#0DNVYDxXhZ*6H<Tb)qb<}ia>^zt-81bIOW_|<MND}>_92(xWHlKSiG PN^AnN(Pp@$cQ*Y53Sd?| literal 0 HcmV?d00001 diff --git a/res/flags/IO.png b/res/flags/IO.png new file mode 100644 index 0000000000000000000000000000000000000000..b0edb1610ffcf708c0dfd06575b33e78c9815ac3 GIT binary patch literal 1806 zcmZ`)c~Fzr7XM0Rsg(i|WS2#vfWr5MfPpmCM;b^X1Q0?SB5g@RHV6dx0wTB|Ra#R4 z5kXKMI}`+?1R@k@%c3l@ge_{N*iuBn$_N-1k;41vygz)Md1vO_-@WJj&hMO=J9F=a z06((scC+mO0O(RFq(B7Cw_HaHS<}bV!3b>Qd(u1spf2;nb(SV_w&qX*X#kM47XVVu z0l*p(N|^zGcnAPqgaH6P4*-l~3Yw1+kc1Z7hfG2cu{WQ#oI&7&7)l6?VA$V2A4yaq z8*K@d=A}KUX`ruR5br?HMVdBHNuG2{_uSaH|0v(2Z9)9@PXnf)gi&`s_r9t0n-s{9 zG+~IN5$=ixO|mWJU-U;Aw=A&xE~EFtd;5G7>O?#q=D=`C|4ijk*0(csda<;?*JBs+ zcEAyT_58ROxNKztu5P?v)T(^_^!#*ga`0vMfBP+PSuTK5X^g1_r*Zt$uVlIq*6I(D z5uMP|ZJgWKw3sLz_$4l5*M7$5Ja%haMnzA5Ev~KcdvU#qbn(fPc#*7O<l~uVPxC(( z1R0%dI`hdganE3{hkSIZ_p0UUOH{IN;BxMZM3yUj+O^9s^XpdaIaigHZB$a~L{3c% z_nP~Jo6oCa^Bi9((fPIluU8T3&0n!^4z6$N4hjik|I4X-c-ZZTo!LG!pP0!OOKR;~ z($2vA6tw0=xqBXM_0=bKBdT=XE9Wb0i(x@{SV#A-p}<_4g3{MVu_GmES5o^Hg9?iV z&XbL;Z93;J2WHo&qpoLF2nrYk&kz~mf|KROxkMuA3Ppe0dsKqAWRNV1-mMr&)v-g_ zmeQpbS<lp{=)4EET~kkGzT}+g4)hb7enLAX&q$7vvsLbe2TDdA7uJaDr`MOB4*ujg zLC$je?sz1OY4V=QpD!y~DUOJ|2fy@*bJe&};we+M4fNVqEQcQI86esie|y)q;ZSl$ zs53NM#8#A~=r(KhKek;~)x@4yueu`N)GIG_ziw$7>wPO>KE0D%<KJE_H;J6q`0cBc z(oy5-vNel{rPFt-g-pDLI>eZ<!&@hfT{Y6sda1IQ;n-!qb4H!;yVZ4~nJSC_0E3w; zs|@GFU7Xy#54RcbQph7!j~0J+-{IJ`dk<B8zBJ39&;~h2GQ82<dp{`6{qWb<RLVp9 zUhM1zspln1tlk96>uf&7&RjwCgn&~@{!m5rqo78Y3zl!1)0^x)r4;TjjuNJkWoDO- z^SyxH@-cdz!P&uX4r$7E*39TuaNhhHk?<0>kq!k^71t%E?aPi}7WOQhw?0hH{Bfw~ zbu8GO@hCfwW0!h}mVQ`&vPgSR|JzR2==*#xZ^zx@lsj+tP|zqd+;kcBD1>)Y-jp5P z(QJ4}^(eredv0^%y^>A6j?&$#$sh{$03iuaJ-+Fxb!t0V&k$Yb@Bf55@?*+yaY-!a z&@2;u=FT$qkHtDXS-JdJh1~PN!=lM0O$QK?EAW}7;*{J6r)`I~9jlGLQTrwD8LHq< z1u82-Sk-X5vZrUh>FTHBa5f`ZNzlyoE!YW%Mq7omFdZ9n6^74EXDlV~(lV4v?`X%( z)w&9r#<70me;LTt4z2a|7CC`k6NOZb_Zx?pFUQ8{`XSOdgq&fcXF40<XL0igyIbiV zv*QPcI&NJgY-6TKeP(`2{ZVuEo$Dvc9(WU+M<n;!%lT)W%onSU74?1hMxPI^=x^^9 z)b4L{R%1}uSQ)IPAcn2v+DdElFZ#U^Fv@(`hY#w>Z$9=;eyH>O){=pg<k3)*n&!Cw zDpPy4hNF{jJvr4_V=w1zY2W;&Ec`{_>UxZBb%Y0>nZ&SwFGVygZnP)u+SR$9w1DZH zg3E7AH~iJ`e0pQ8&uQg_+A5^XlzmZ^Y>hl=Xo(j?63&uv@tim=0)PvI!8t*0P8b{= za}W=?;4!%U5C#uHqvL|#|EC~I94_RY`2Pi^X+xn%0dA`UEapj$v*Ne_7!SvRA~A<0 z0$~9X0K>%`kQ&9}b7?HTkQ3>I13_VQI5*K*Ac+#4Ot>aPBuus>=z{ntHXctBbK;}8 z(Gom904ah2%=eou;6FHj>*4Vfu8=Q~09Xh*X>{gGgk$`U&VM<d3&SM>;2;Fef^*34 z0GPf*p$Vh7k`pmpK)5v@2q*A=eih^Q4;>mEVF4Id4>t&l81CyUgV6{D^^Q)EFo_Ge zyI|d1iIW?NmyoQ(JK5ksD!>zpxOfnZ<MM^#XeXYC#fP`rfmDBI1oZO<wnhV}UVbDQ HF)Z~z$|nlL literal 0 HcmV?d00001 diff --git a/res/flags/IQ.png b/res/flags/IQ.png new file mode 100644 index 0000000000000000000000000000000000000000..19055f14f7cfba226b256abb4578e97f7136105f GIT binary patch literal 1055 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`!UH;1l8sRB-?P{d0n9 z=lE5w=sAFq<5fLJ7#k!4=7L0iK6(m7zaBsRc<=tBYnOjNeg<R%MLylT|Ln#!pdf_% z|NsA!Pp_YQe*5a{2k(D;dGYoAv{M_`T|4|2DDnUQ*I(aHJia>d*y;&KSC?#?dhgw{ zAHRRiIJq%z^Td|@3xE9n`RD)NIcK)i?wQ+pXj%8+<-JE%o_Tij+2^-Fk;Z)srk&jI z{L9-14<0;x@bKo{+nZ1BJ9_EN?Ynnw-MxML-rc+R?%sd!0LZv~@6MfjckkT?@*c>; zfTDte0*sA|1_p?xee6^q#aI&L7tG-B>_!@hljQC0!qCAg>jC6&7I;J!1L*`X{*di- z9>`!X@$_|Nf5<8*z$93zX~PQ?n&;`_7@~1LIYGjwK~S9Gq+uev$VtOw_5@2Yj)c_Y z=MSDddiL;X^M`{)e-acFG*onywAAzzHC1`V7*3ybXk0UAPgBpLNt?J@xTgnC4Gg}1 z;mW0J7q4D6cbGic(8S2h(A0SQhAo@6IZoQl%4A*5?yjCL9&TRF@2{Ufp+h&~96LwN z-#^Su%}vfuhYu+$Ep||{OW2w5rXj7U;!*ww28N_YtJ7Bdi+zADRV{IiC`m~yNwrEY zN(E93Mh1rFx(24YhUOuLW>yA9R)*%<28LD!2A6MVJV4Qqo1c=IR*74~qP7b$Kn>;~ z8;bMOO3D+9QW^A1i;MJg@{<#D^ouiq0{SWW$@-qTiRr1niRqci*}CTX`k8qtsTFz| zCAm2@WwX`+jgSBt5t31wn`C9>lAm0fo0?Z*WfcI_RLo$w{Qqu!G&NxJtgJjzGt)Cl z7|aX|s_yOG3REMGWDZnKcxFmT27{%6!K30;SAj|-k(Bsm=BAcZ7Njy{g50NHT$aB7 zeSsgEIldu4RSbqEmZk>AKw#cH<y;<6i6D|W!I@R5494bW#!g|y9T`ALO(e<CAWw$0 t%$!s!ef^@;^vwJ`-L#y<^kR^0`ksM$K<d2b6K<d;22WQ%mvv4FO#r2lrMUnA literal 0 HcmV?d00001 diff --git a/res/flags/IR.png b/res/flags/IR.png new file mode 100644 index 0000000000000000000000000000000000000000..9056d21ec27a62eaaae05d2d11b1df6430f0fd69 GIT binary patch literal 1356 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`*!Bz$e5NsNnwn`^xhj zl;+zj&7&C2w>MnsYrZ1TY<U2XGzF6ow%Kx^U?7?lh60c-^A$mcOMMn!U%%zvzD;-c zY`(X5)4e@V#@#(Y!Hsu!gUEY(Hv<)bNDzW3*odTH%e}qJZfyDw1b_bgdG_r4v133I z$o_ft>c@o(KhB>IB!TQ-w{CryIrD8x3y=h|fy#f~zyD#z3?K<)f0#P;(~1?JmMr<S zeEFxPOQGblWuJfu&IKxfv*A*31uIs3m^SSWKmT0`iM!(B2n6JciGc)>Nw@-JK?oZt zB`kc4fq^Or81Ju6JdglVj3q&S!3+-1Zlr-YN#5=*3>~bp9zYIffk$L9kWK*O57|!V zfeiK%PhVH|hpd7EOoFAFHoQQgC!Q{jAsXkC6C_+31kDo?QVy|loG{$HVbjLqf}+CD zA3lBL=HTM&?&#|D-r(iM_;g8X%F`#JB2%Y?hFra3YO-}pY01|wyeYiB4MoS)mZd!t zn-+G>Y+KnkzCOQmdh7Du$t{}~=U|y{@!{jw&-@Mrflrv4o1C2rPqenWySP1^(B0SB z+wDHl+r!7p&(qiY{E0KC&Ye7aT3<s)OHb2ROPl>vXh>M-^()t|nwyxJZr`$PYk5go z>Gv;TU%xUxRr8r+QhDl1=H>J=b4;tx-KqR6t`oDR;Nv7u@9B(Br#)t3dGg`NMFB>J zFsVW&*~868fc{l2ag8WRNi0dVN-jzTQVd20hUU5krn-jaA%<pF21Ztf=Gq2^Rt5%_ zZ)ZF}(U6;;l9^VCTf?HZ3o$?q<{%r2^V3So6N^$A^h=A2^mFo)6La*7Gk^m6Df!9z zp1FzXslJKnnaSC@=KA`Xc`2zCdKo3TIW=Xo)&Y%>02vXIQJR}%W#y8eT$-DjS7K!q z0Mt~>V7UDMZhbU0VDqf3JW?~$GfEhY%?z~sZ`=T?5l1oyswO-$r6hyF%-G-%(>`sW z5=kT_zL~kHC6xuK44EMJ=@*x!?|)z5hh~m%2v8M+p^2rbfiV!6H%~d22UH@6WKM8q z6-b4FrPG0w2ls%Inn;qNL7oh0nK`Le`uatw>6!U?x@kFy>BS)1^gV<0fK<oJdAEU@ O7(8A5T-G@yGywqb<SW(y literal 0 HcmV?d00001 diff --git a/res/flags/IS.png b/res/flags/IS.png new file mode 100644 index 0000000000000000000000000000000000000000..06be01a87976d2fa4ba40d0b4d6af04364750e57 GIT binary patch literal 851 zcmZ`#ZAcSw7=LD4zG3<DK}~}YO6Qn&H=CQMA98HCt2S&dO6bGhZnwj|wY!;<qM4y7 zR8YQzM4^;X;ADbm>qAil5s^Y4R1!2H-@e#Ki=duK#1cC0|NQRxJ-_GoySv^db7M}{ zp)3H%VT^hUVoCC3?8BPKl5z-AuEEp*5Wk)M(=NmQh|_2>0dyP#h+YTyfmCz@AWQ;m z*#PK!0ENN(i8J*$=xjP|H6Si8FN1anY6ew~iPedzMTKHx<dIRB0rdc=2cf#3u#Nxa z4Hu_D)lYjSwOriZ_jYY6v7k_FJst}UebBh$U!TVCULTKd^z_Wj<!h11W-LiADk{+y zE0XgS6<8N`8B8y^8LUB&h!%4*oLF0MCmYA9Mm^k+9X4W<88o&Ch_>DHtyMRR59uOf zGNgZz<>jX3h2`}*NVyn&gSBGTX)Cfu^Xj7SD2b#xTTxP%US3c-*K{j8V<yu6eMcsJ zz5<oyQt9imQO9cj9bFIx?xv;j#VxfFnL)0NzL!fnC;OfaC%VV-OLIpKKD@HC#B7sq z3a)nT$K0|5>#wQ|+n9G$G@KV*c9Er>Ar=8tB&AW3Y9*zyQZ+QGqA87nq-c`-^x3oW z&w?-D;@y$|FN}82UBCrRGC>Hq#Y^@O3q)855#E5)?j-~d5`-(@Bp9EaV@-CBceW}u z1i|}VY<rbQ^m#A04ad-;C~0B!gnbU0)(4znAL|!sx(SyApq~7CL7=8MMYHQi(?*u( zJR(q9l3el=5B3=S5uM{*q6buJ{J@j5^d2J<?_<SCkOe;ZhJ?_@z1$9(QB;_cX0oCR zsN=P2vKlW<SN}&pN^(;q&3p&`S*=<Z+|0D$OrA13Yhl36ds&(wLM+Dz{7Sdi&I!pd Wf@!WonChKw#U)@2W_?U&yY?Hnt`!jg literal 0 HcmV?d00001 diff --git a/res/flags/IT.png b/res/flags/IT.png new file mode 100644 index 0000000000000000000000000000000000000000..50e17b22a9471ddec4cef3ff26850eb1d62dc766 GIT binary patch literal 694 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87@AFv*Q! zf^*c)j(`9E{Re`7|L&L7omDqEr)>^Yu&3nn79hn~666=m;PC7Q$YRDMZ+91l4pvzY zAcwQSBeEDsCxG#XY^U=;278I8uPggQRzU$K!BR~dUZ9YQr;B5V#O36K1#$@@E=&&V zCQX{;84(qAbWP}LF+Oj-RrM>`8KRbXif?C6a|WtcEpd$~Nl7e8wMs5Z1yT$~28QOk z2Bx}(<{^e=Rt82^hUVG^hE@g!mv3i0K+%w!pOTqYiCe>>whJ*p4dx&liu2P-$`gxH z8T3nwi}Z8ylM{3Fi!*=%`YHLz`kuLo>8ZYn>6yvdy5{=&nRzLx6?z#Zxj8juv(^EP zkN_DGl2MwQWM$=&pIn-onpa|F6#&#!%wV|u|89Mt8c8HIVDqf3JW?~$GfEf?4Gat} z)z$&y3&kL)qVUX=k_-kzQv-v8{}ZmD8RVOpn_5y?kjjt=a-n{4S^EC>1%5z9;z+jn zh5%JD7@Am`8W;nCdGnNWc|ausNJ@e;tAHVEZtSG{{^f0;oF<Z7XpkpET4qkFmA-ya mYI<gVo^D!BVtO&iGJVewJs`!tGP@e6iNVv=&t;ucLK6T0q1Iji literal 0 HcmV?d00001 diff --git a/res/flags/JE.png b/res/flags/JE.png new file mode 100644 index 0000000000000000000000000000000000000000..456a1a837e1ebd686b7b0fdb5c23813999bcd1e1 GIT binary patch literal 1531 zcmZ{idrXs86u>X9fFJ~P0ePu^OaWc_z9P{1iNlf>T6qjh6_m%Q?bpX>DWhLO$Y5+B z(PU^Ci!(kFAq)arNCY&I$F^h$#yyy@D4Relk3x9atYCPwW#<FtD%ozn@0@$j`JHpm zJ@;NtPKtAP^>alCx$}7(0cd~vcX0sO;p!*@<tSq(vJtv_)y*t&g7tnePmqXE@j-;j zDiB%)Q`s~^S{$L7Y=nsG2>ImQ>NpjJkUf!{Amjp|)9Lg+VS3;2g_6(BQ#0%T46Ak3 zVp&=?JqBsDu7Mf6zyJySVspD8Hbb`?GjP+F+PbVOs{pL6OqzzPjE_i=<`n}N!36+~ z#b!W=d3N4-<>pvO3}l#*URW6%S~D3(E8|D91IEkvX46ZsfE~QR00}>>x&h&BeZ zja4_yGxMvn3x6t4KFiuWO7hm`=D`AX@B#xQ@DR1NJLjCvi(%lLgGwxaExx#@e0J7< zvh+ik)3w=nH;-Uj;jFxPp{{NsCu`wOEzGx71zW(_s?9%Q{2lIenhK=eKjL)_7SrNf z?k75rL!+)iAYl%cHv;`4#u>4|gVg)|8wkwy6Ird>`Tz`l#@5cI)~)_;RtWaZ4#UK@ zGqw#hHMJRHH|_<lubmF3Q?<XotaJeM-W#u?w8}h9zY35GrB(FpdxycZY5!xW50o7x zNJ>E`3`0_SaXvndgDyD*@?fzek9SrBI(y?c=EU^F#F^qJa-Cl|d3oA<X+xsiAx6OG zu!X_>zf`9ba@d{~h2@W{RL}3%(1QM^`bdMcrsk`Oqe}yt)ng?M%{PBsi5s(qdZeC6 z=I!wmp;OF{cJRxp?dwU&q)Sa|vQTiwPFUN}QrpBm)UKtL7TsOSYpd^GZt_JMxA?<3 z0+n)pE--+7eYbvYY{sx)_dcfH_kq!DcCar;L4?oFii*mMahzCgUr+DDptlbmXe^^b z9BN$azm`d)<kW;=(&sI2yN5k~Kb3tUxbtmSU2Ahk!+nonMs4DI4l|!t_BI%<J&k;2 zDZf{UZfA}h?=G=8l>d;t#u8WBjXs(lTJD+neevhHTh4g@`qhfew296&s;fOAl|AI@ z-r3RHkuD2VD+f+1pFEhqJ#yUdnl>)*Sm)fnfW1#1jMogdncVzdrPOC-W$K1Uy$aTi z%Z^b;mUo$Uc6EK%ty%BVMGrV%dU_^de=z?FH2eU?O`{|tiX_DOBq$VyGg%Bgg27}7 znUMq@Mle~2aVCM|gU{vqHv&{@i9%ZR{{eNCzhyuGi{3$_mQsbHd=g<=O+Kbni$zLI zBL@Q}QHwFYN+cr_MKXmrhrz-yMXrRr5Gtos%8v_fv_OhIbPAzdt2$2*9JN@hB6BH% zNQNK{Vm7XKV%wOFd<4NG6*4)6B5}NUwENzFGpPy*B}Ysg$NR$TqJi<X*(*_@BB`Q0 z5-I2cF-?K&`<Ho10QuNLLZA>c{AdJz1O}`8%U^Q=*=2*ID2jn#hQG^-iPn5m3*HbL u?`Z)aNfk<xz_5H$rcmcHq)L%YLvM$j<c5M8?rxldAjIb;aav-sKl>Zdf9H+> literal 0 HcmV?d00001 diff --git a/res/flags/JM.png b/res/flags/JM.png new file mode 100644 index 0000000000000000000000000000000000000000..5e4e73d3256637c7c68f3d38ea569017e0cfbb05 GIT binary patch literal 1694 zcmaJ?2~ZPP82*ET0tTU%TH1OHBErBXqKR(MDG*Acghq_5)GHy`9FPN(O$-cIQJi|W zYG)u&V3bw|Ew<<=f{G|m9Tg9hVs(nPQNc=4t1z`H{THH>TJ+8CdvCvMU*7v?vsRiI z&-QuO2LRY&kuV9zK;|Af4EtK2;Tjx<YoaC506%W_eWLKh=Lt$tk^~?#7$9#oz+;5+ zIsvR4fID&kvJhZQdP(j4C;*Qu(gax?3OYJE`db07n`gZ2`^S$dp8*a56q7?-4gs>L zLFJ$&KMmTe8Sj&etmY=Rd~Z-d8E<I2Lx2<tP=;c(pb_oZCcOurr$Wa;=)c6|G&K4p zR|T_6`9tJ51c)Px8Ybit<3cYcOql>{SAesQ33+^hReQpJ{+<w@Z)Une90Hspf;h6M zK_%+Zg)MwCY_UUUJ>%^=?@`?lAg-K>tHmDYh#-zEYEb#2u~;xY6pC`7>lpN3g!?VS z&NTaCk8?y2M;0~i&C3&P3V3vi(GOlYM+9;A#w3S<BNy&GPd?o|YA_j*;#`J(ksJ{W zTQi^w7k}Bccu{4je<=@p*WxcTENVg~!a6fJ4>LdW?+dI$$Ni=M+ag2|N0!;5!;BvH z7LTc;#&tT!8vPc%_H>X%jq7x381E`QTzOt3O-=0OdxLO!LmV!aoI`*V3Q#s!B!fn* z7Uvl++iQw*pfXY5JngE?!ZjYVaZg!vQsM&m@K(E;c}STTFN7~V-xuM7ce*Iqf}?!k zzLyqr4ksgMu_SK94bK37j{xh`C^mYM#lmP=$T_8a?4-N^zFe+KQ7b6r?d#6p*1!kL z=H#%VCn^HUOLi63tghI$f5V=VDCtMh^To+=3nfcq7x;$k{C>yoohG?frB6v!8x=ar zpiI;BT<@%4Z)t6_*;ZIBefJ(d=)M2wuhAn%`S^KzuFH2G&!g=^m5ff%FUg8YNixq3 zl?Ji56SHF%3nIe=Q}{%E`478lDrAf6_ACiZ{mvHm?E%|DtHiK0J65^%fX%X=cPXK} zjc4fY-PBU`XX&p;pLxGIMbg%0Oe;7kxzJWh8Xj*b+NVBOBrrY8FIfN1$HkTGw+adm zsk*9fhJ8}?*%5Vj?V~`R@t4EYA8+g`x_Y3e{ZLw8>5+eW$IrBP-ur6DPn*hSX54wm z`|?`RzS}L!YwTSQzTW+F-VO89=Cg|r_FOx%vcF+m`Lz@Ao6DlId!IDT)7p<_KE2gl z*EfDnPD*3o=-A-^r%vYQ3V9nVao;D?af@h`f~H8NnZg04ak%_&&Wvy_U&iH;oM|MN zAI9O598T+1?e+f{3?`LMo$+eJ_BH31pn=c4!D3R=D-~u62&=_R=uJw6p0H>UAXFwL zAvP#9ltiJ?DbvFF1feskD0_sKHt4f#jw*~8%S6buRznI&3QbC@filu0DMgb7xI6pn zh?g`2c_b;KbQ&!UksMCe+quh7GsZ2)rTJ8+qP4)|aJq<Y{9eO2H;F`Npy-Tr3Uti+ z2#ZZq-;<vBQjSE1D&S6^HG>n0jlXJJixDOMZaE8dnYgdqSuw2}vwuf!svEa3NepV8 oo+1gtOlfo`W4Kzc&{&w45pyLGINUvZ7yncM#Bqtjsu+3xzvi!a#sB~S literal 0 HcmV?d00001 diff --git a/res/flags/JO.png b/res/flags/JO.png new file mode 100644 index 0000000000000000000000000000000000000000..5982705bbe4a14e572d08a69ea563e3b916366fe GIT binary patch literal 1240 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`(dLz$e5NsNnwn`?Gmv zomhF;7#V?F2)H1qc342Aom<kFg_DH=Dt=B-?YyAcMM3pL0xC`15_&8gObiS_K?s6K z?GsS0<`UOrW@lz*W&|P_fGXoxJtv?FR;jj&PjQmE@to?qr9iNJIfw)Uh{`Lv_Lr2+ zfQo@!p!!R~8aMQvUbam5bMN8*|NlXPBAPEI&VG<ya+Xg8YPg`<SzhI{yh^tN5`Nr$ z05wMk$s7T-OM>b*bRAzd_5Zo^0AdbE8N^irY8M66c1fvE@^hQBY|7FLyO&<tv-H9) z2!fafa=C!oK1q#gYkiGW3+8Hj###r)YC8x5ssSnBS34-K-ejS#mu$gQY0FS;%TNVH z7X;J}i>tSr>KP}Pvs9o+0oBab)^Un3V=K2|s6l9Xv*p7YV3aVH1o;IsI6S+N2I3@n zySp%Su*!M>Ih+L^k;Ond0gOLnJDmqI*h@TpUD+S93JNd@mTKDY0)<X{x;TbtoKH@W zP-+k~Pe@2fN=r;lO-?_`;9$w;r<W%e78YlxQ}l<a$?1^NqKL1Zo!%Z^o~KWoI;pLp zrN}&C&Ze$avv##Do3^cQ-MoE_Obt(XdV73*&YscLS-U280;9*dYv=AAym<2F(W__g zGRK~~eERnB>*wti3^XiQV)aaPY?O?&tklf(>=X?-86ApFYOc(DDLFIprsdAc6AT*D z;{zf>VuGT=;sQIl8j3=%nr<!q%G>LEHiJRq`lVaf?p?fj^-hl~pT7-{AOpj`;NZhs zFYoIEdP}v$HKHUXu_V<hxhNG#F&G&bn(G>v>KdAd7@Aob7+D#bYa19^85mr?o$&xg zLvDUbW?Cg~4U5_?!~ivzgKQ|yPb(=;EJ|h2FD)+8&&f|t%+W8-01D`*<R|NU<|d}6 z`X;7lCTHuK>+5IcrKDEqWt8OR)RfIy2Q)$gWJE|tX>O90l}mndX>Mv>iIr6VP*X93 z;qw2x_0iOT&9k!dNX<;oC}A)$GVspfjs&U^M=}ShCOk8xB!j`i#Gw5y>ocGdNhBq{ znYpPYl?AB`nIQM+7nh~)e_!B-W{z(NP!)rriKVH5F%XzHPdS$dR3d<6PH<*bDubDk zsnaJJ>4!i$O(eO{AWw$0%$!s!ef^@;^vwJ`-L#y<^kR@@`d<EeKx!KAem9^d22WQ% Jmvv4FO#m$PoV5S| literal 0 HcmV?d00001 diff --git a/res/flags/JP.png b/res/flags/JP.png new file mode 100644 index 0000000000000000000000000000000000000000..009a990a49f4abc937dab55097f9f7e8bbecf2ee GIT binary patch literal 1109 zcmZ`%ZAepL6h4-=Qb)>^Ss7ZWX*%!S(v~-~v<<g%VmAALe(bv4-Cedh+3w6qKdj7* zj0!bO{3THlAp}L?2UhA2Q7XznQ2ff8SZRT!RAy%`Vu`-I@A-JnbIyCt%X=v=H(MCE zIS>GZYLy}%^%l=rzZPXnpg)VspUu={0z9}H^otHaKU%NK*8r5o0hCt&{6MID62M6U zOz8lqdH`{8W6P0r06$q?j#i0;k&%%_pY>z<>)f~-r5BqUa}SkX>yaJnidLaS8xe2l z`|w0xhOQNMF6~6Gfe7MA_`R?&V7`E08%TUNB8X#j{@rAE%%N6D^hVJ@7s1*7!DnIn z+8_xx8tAUZT=5ET{l$d^>|x~&_tV}Ek${s9xvt|}-QMY3*Aekfhw|srQ=t5Z;B$?e z58goK$LHrBg##Z3j2@@(aJB-f0=BBq*-)%H=|HVpI$z9LFVPV2YK>Ab77!Y;Ce)db zE=1_DT9K)Zf2r3+<dlbsp+`y!;_ZE^n0t{yi6YUKy#kSFM^I&?SR~&_M0J!$*Mzh* zk~LL#>z`EIs(lz-lhl%t<_b{8GT{ZOPGRt_)JG4UwRLsQZ?i&jBKS&mUFOrS{@{Zz zhMvC;jAyKR^TloK%;@CA{ZHdlAEwVHyL%?ye}4DT9TgJM6;|C$R3xM%rEiz*Y)Dww z**CB!?)H3zBJTDrL(<sIbBd;3`m!MXtGpCHQI^=<y)~i}M~LN>CwK$RGnC%WpaK~w zl}pG}iBztY?xsi?C6y<VQi>$s44Ov&OR(AuoYA#<LR00dQ<xz4+~BYo`O~zW0mA99 z6Be7Ewh#^z0))Y)C)8G&Wi&L)>CF;3L2yL|rZm~aTP<fw8k(_0gr|ho<g^x2l)|QW zTA3oAqVh1w0n$5*t;90UQay@NF&t~+VK+&Z4Yxl+j@YNpU(RvPz?&eAB*z{1-Xdj_ z4@JXS8QxXQ0O#qCaFnneGsU^f>S(mc0%=NGD!B`n{Cw?;BBX@))H%wPdERwTR<Aa$ x4r2*Ev4VUx7&!|=5rmy#Ia`s$XrWn$=Q83@UNS1ay(1ixK&{MGG-v6~{Q)~NzEc1I literal 0 HcmV?d00001 diff --git a/res/flags/KE.png b/res/flags/KE.png new file mode 100644 index 0000000000000000000000000000000000000000..b5a9f733e467dcfc4b2fea32fe83327adba62f47 GIT binary patch literal 1196 zcmaJ-eQXnT7=GJz=~~v==1jT`77C&;OLuqsXx$AXYudEUc4e$JlSs5(d%YgCYwcZ; zHoDY}m5CqwupkhUDGtmAn;}9BTa1!O_zDbX7BM6%s2Jiu8WR&i6Mb*`$0XwAz2|-I zd7t<B-QDXQUYAZ=tpxy`$L;9EzEZx+N)TtXDju7PZ)IBnP7SU2BUp;hrjWan1;{=D zklO=rAEn$~fHVd0V*r3T2w+Senc2DtKoRX|_dC&0EEW+TcA3p)gTYX)R3aj`TCFbx z0xcTNxWj>n9F^W|wl|X*=<7Q%GIC<wy6^INMC7QTKF_jpdA$>jjkDF&#eo4t<fx!N zgWm%134jk^Osie+`4Ew#g8J-IoyIo@D3q5kCX<NBQNhvwEY7#Fa<zLWo2;`{ONUlf zBS!`G-l;5B?xR=Vepi|x*M7ezkBA%<)FBL5x*Zj(MHADZ8Gqh^h#VDp6p>5Ct4jD1 zB<0;oMC7RaJ^D|~y|MQ^{$hpH>Gi?pA8ud>D7xER4j3%0apQv~>E0${4=mk3@3hY$ zQA-}yslHum&?^n;+D$r?zV<j;{Tt>&fy(xr!3dY=*Axx<kEv5ik9816R}n1)p(fT7 zgpoMDim*LGki_a|2y3&VbxqK)m43AOrLy7S!svmK{qJ<;emR%gr+;t!<k89F)9+7| z-s!({dd+56*Oubv*Du~sT~=Q?WX~NsJ8*3OnYX5D3PUI77SDZo>6`NlS8KM7sa3nP zncsiAe^0Hl-wT{Im6cU!bSs7i-`tnSSX!@NX&f6qSU57O#n^e1>FLKB%q{C}WX)yQ zfh**OjZfCqTFe*L?yacQd{MlmfL}*l$6mba`T#%iamo3d6b?!p6H0N|pq`>_7OKfY z+x)bZq3RjhW~OL{qQ1Hrz4fn!cp@xBG7n!kn!mms7i{tgVj?2F987UQro|K)ON4?k zQjDTNh7%#u6A$tn8{~!1PK%8sg`P0CyDlolW3TKwJdF{Ra)dvcj(0PRBN0l+xgLpO zI&et@`olkG$p<`3c?{#`1U@Q(m7=nXpPoUFaaqnko-QFQMWLCZz7;1I&{DO`!U}Ot z$|N}u<o6@RUHoT1CA|;iuzqv_-PqhjHQ;6IFI?+Ei(y%gPsqxSr|RvN{^%4AYnKh5 r?esuIh;a-_rZ`?m^jIRXATP?Nk!{X8Y{uJ?9hbo4^g5>Pfxf>0^^0#W literal 0 HcmV?d00001 diff --git a/res/flags/KG.png b/res/flags/KG.png new file mode 100644 index 0000000000000000000000000000000000000000..acf6646b8a23c512b5d28fa81ae28668c09d7f3c GIT binary patch literal 1282 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`%Gkz$e5NsNnwn`!57_ z2_OO87ecx(gux_`jjUc+_qCSBJ5Qze;qpKd$Ob7xRq)nE<#U7hx7mW<=LrBwAp4Dt z3W_oTkRe|h#J={4e6EoAIzbpj0@)4XAOqnx3h4r^_%>bW>tx|i1yXOFm4PIX4HS9j zr37*z#9m?D_Yv|yaiAfeN+rL|6$FwX11Adu#S!)bP4iOvHcjY#pu(4S(f_X)zqE-0 z*+3DXEeO+KZu`<I_Ay-sXcv$KvVpEeaU0NTVO^lVfa2e#3VrPn0g^yAx=+E%fEqy| z79kIG0LT!u5Cf{g6W|a(!bo5YCOv*(52P4Ng8YIR9G=}s196hP-CY<uSY<tc9L@rd z$YLO!0LCA(oz4Rp>?NMQuIvw41qGM{OEqnHfkGENT^vI+&L<~GxHJfwCnTgCVx91G zMr6dz8<rLuPZSn@{_yD|HwPDIapH;2j;>B`4=>NtCr&LqeNtOPOLO&#RV%YIvN9K+ zeEH(lOKAxy$=Nez&5T}fGBPUi_KjONtu3r9ckftqa_7$KimJ-rKYsmWXJK1-lC{01 zt<~Md&Gq<^V@DUCR8>(^UA|=5()5(H)aMIMK7IC7TtrNC`jlx?!$TJRUcYMBvTf`3 zE!?<rC+p$&YjfYq&W*imySH}6!$U`|*e5<(ax!>X5^uK7#|HI(Y=R67la+NZy0SVZ z0sW?0;u=wsl30>zm0Xkxq!^4049#^7Omz*-Lk!KV42-M{&9w~-tqcq<-_Ce|q9Hdw zB{QuOw}wS+7h-@K%t1C3=ckpFCl;kL=$953>F4ApC+6rEX8;BCQ}UDbJ#!P&Q+*TD zGn2D*&Gq#&^HNeP^fF3vb85<Ftpge%0Wu;aqck_k%E~1_ximL5uf)nK0H~>$!EpKi z-TG*1z~)(5d8B5hXOu9Qm>RI?&YcHTBaUPaR84qhN=XKTxv9a_S;ez}N+gk#_-5v& zmQ)s`GGv0>r(ax_zW;rJADTJ7AwX3Oh9;J#2F5^O-aO@89#DxOk~zVdRX`QS7RF91 z{S!lhlA1`8p+TMuX_+~xR{Huysp*;ddAeyiiRr~4+w{HN^?+2aqPh}L6N9I#pUXO@ GgeCyoYu~T{ literal 0 HcmV?d00001 diff --git a/res/flags/KH.png b/res/flags/KH.png new file mode 100644 index 0000000000000000000000000000000000000000..58ad9c6175de25a17f7b1d9fd74f9b66905588f1 GIT binary patch literal 1209 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`)oL;1l8sRB-?PeP+Fd z4El@V$Vsslf}9m=ofT?;B#?WXQ3HbRFsR>VP`|;VbwtS?NCMd)5wPq7230Upxg=?E zhh6KMsLAHq)@vdrKsHe10fP!$!A)-69c7KDEdq|(h3r_j;iye8kPQ?8ibIq=WKh1S z?67m)hMh}SY+JT+-~RpEmaf>jbR|#(C=Qf`7zI+M?Y4dO+Fg7096WRo2o4-P2xJ3A zfZ{M^D))HwZqHkB;@sIAw{PEj^zhiJllLDz1hP+_I|~#C$^tFD&7gK&(dl;IyfbZ6 zu1}nQXX@fpEtBp{U2=WGe4q$W93;!21_~LaIv{dXtaF4hKwPj0L<*<|9+>zT3=Hy} zyv4vcU@Qsp3ubV5b|VeMN%D4gVd!9$^#F1>3p^r0DiXl>L$=d-AcMWc)7O>#A*-MO zlVGW)4KGmWw5N+>h{pNk1PPx8L2-tYhKcMfPiH)AXr0P?kn!|JXGV5)adUos_8#tO zkC~b47#$T81p^HWIXycVBK){`mZYXUeIhC{bxLT6B2$8;sX@T?3s){(yLk1oxj_qu z!jqmJU!SvQbamFQ$<29t;mI3WnYnXfWA5Iuwb{EzuqfejZOz|5%uLNq&Q6C9DGPjS zj1`p>l@*p2pFd&7lsS{S3e<0yXTFr28F|xkXXQ`UR#%Syjm`^qEZMSV&!SDMb}ies zPC`)cNt@}sAJV|2De+Eo)feOTg+OnqmbgZgq$HN4S|t~y0x1R~14DCN15;f?^AJNb zD+41dLvw8dLn{M=%eONgplHa=PsvQH#I0db+l3gQ26K=N#rbI^<%vb94Em+TMfy4U z$%#4o#Th^W{gnJ<eb3y)^i<!(^vvXJU2}c?%)FG;3cZYy+?<-SS?hpCNPvt8$tcZD zva)i?PcF?(%`3683IJ*<W-wg-f44rG8nAg*RvxLD=@}&qCI$wTQJJ@aYQ&MufvO45 zOex7=Ff%e;U0nSXs6-M;iEn0ZYDr~5Dnlm7efq^^>HFUo_@SBO8v<0tU}yr2Qez-6 zZ=P~452!>4$(-QKDxeBuLkmME74!9_Kv_*B+0Y<QhP2F_R4aY`qSW-v{5;*XoW%5E bkahar9(q9Pec^`BKurvuu6{1-oD!M<AqKK6 literal 0 HcmV?d00001 diff --git a/res/flags/KI.png b/res/flags/KI.png new file mode 100644 index 0000000000000000000000000000000000000000..49902d25aa9c25075c0fe5cd39eb4662b4d22add GIT binary patch literal 1385 zcmZ`(3rtgI6#iFWDg#F&ie;#y6f%QwZ$W8xhlJ81Ezk~2r3@;zw6_oFgSEE^6`=zk zWy{8rvFxET#*(2jA#;Nb7B?qsn9M$?&S8M?*hUcDG%hh?O4unfM3UW{`<?H6=R4=W zH@UfudE%_l;K*QvP^eJAmq32bf3FPy><bRmLJHJ!MO=hFZ+hmTG6?GDRRW0!A$uG` zjw1;D1CnC~Asdd+tO6n8eS{(^PWJ6hMTi!hmn+Q#!}$2Pn;y3mQ7ms<jAskW!-&0_ z#2nfg?cU0I+yz@C%g5a|R?C=rgE2})`ck6Z5wTAg!s6WFu|KCp56iX=B{KajP?q;U zDx+A}gxhYEMgh8`SdR_hjEse~w=aa>9ozs2+|5|p?+RtQ*2lP?WdXWE7voVG65~sa zy7g7q{VVhb-f%$RptwSo&CKblhEaj+`i?ZfY5P%#r7}x4d*ZdZ3H!oW_QEg@I5%m( z)#ez@`p;a|P~Y~$7kwV@_nt5NypGlZ2q4R4-A4mGKYFf@xB!7KcVPquou3XW8@ok^ z&MBPTueV=@0J6HQUfqQe7&N@y*WBgmxH$Z7m#eI)7Xk<<pttn+Z0~(r+;ASS^=lsl z5D3t-51y@Uxzy4#RNK-ou$_UZYv~6Cbd-7&?LJ0JcLMtPV!6Z-nj2h~24BNdlti45 z(x-<t{-QJ|i;tW^TLe(7s}Q_mg{)Y-@0MqHfUKc}qRcguLG&;h-L^e76r_7XK3DpJ zN2S=zbkI2pg}NSTHWj2)t`{eoww9b;oAFlDf%H5<Azzv+r}4y+?4msd;u7v&A%iE* z+$Y-4%g-s!k_GX^FOOgJULGE}c4d?nt<{r8Rk`-g#LREEr)H=BoV*z{Rdnb9`n_iU zVF0b6o|n;oDTet;o2vBJbos*HfvxgVi6y(N$i7EYP$@Q*)N++{=Lxx-)*PP@-*x)4 zvz=$ob(nRAGLzmI@aj(^FF7oy_K)qpaCm-Z;7DV7ukfAr+*2uspC;JWO?jsKCwu>z z#tNO{9YrC{#pkIT_cq4MKHkvr3qJMc@n{;F$8_EUVY~@=`&cTokWwotl2BPlNGJ(s za}w}f32cs(okHMA1e+6&vk4r(I-+}Wz-U(MHP!z=(00r#hZ8vd6Rc(pbx>&`5oWVm zFoRj8G+<U82$<Te!h}YpmJ}(qdR2J>2gCFxHCdIYql|`{$`3nX#b*Bssm^9BB?!J* zWiyf{iXie}$cotQ3*TU?Jd67XLO|-ZItnG@c+JMT67WQ<*t6u3>D81DrQrBY><{?! zAjS%dNN*&m>IxF+{m+M4E4AO<sSvN)Ba(s(v3I_>3r~iN)6ncTfrY+ePrlwxqU5Ax zPDVg*T{kqhuW0U*2$4o_APEe!kXpUjl%O#vwO0RWSdK6el8^oY4~CF1Q_SzoP}Khm D%C{i@ literal 0 HcmV?d00001 diff --git a/res/flags/KM.png b/res/flags/KM.png new file mode 100644 index 0000000000000000000000000000000000000000..9fa9a454e1812104332f43361b4018101a08fc35 GIT binary patch literal 1399 zcmZ`%3rt&87(O6~Vi1@iOq4-HS{}CdmWrjfMW7UD11(+Y1UCmQ?Y*~^mXba|5T$}c zaDy=(j-eoHc#TY8y7@qmVFq&}FwArir-5P|Y;J6eF$VUyo>Ekt@#Z`CzvutI|NFml zb82PMG#~FEZvcRgSR|Cg_>^-!@(_FvdwY;Dc#uhwBmhnveC)2u6YfLRBDn;BG8zE3 zw*gp(DccGFRuq71N&v7{00N6X7~aVTz}-)lp-6#*g@uLU4#u}%gi(__wt`>J-r3Ch zus`DZcqn!DpHh518<rq6N0=j@gs+_mp(dZECW2hpsK)T>Sb|1gMhmavX!QIzpPI{~ z=9JW>JQw)&G0BIxwZm1%rn`#=i=;<HnXSnk6V2CuyFyX-sQY)Q`|B=1wU+UNORI}y zPhNI=W=@9;t7E~WrhD(`{P5b{HEQEgyr2H_s-thZ3p;@9J-Q2mUl#*u&_;42x8hXk z+|^6>D2nLGz5U1S10&Vk{Y-hA7{Wz!d5)_`m33)TwN)!MP0KY+P;+V3aqPdE4Q#=? zY@-?(jG|BZhD|^21XO5t`Rv{F$*Xr7*keK4c~R#BXtTbw8UIbd;|u;ee#wwg)|M)& zVpq!1(U9orZIM$?Kt#FVG6qkP(!@<|Oycd+WEflUoWn%+VNK2^ASZrf7Qa@;d!rF6 z9^+ci#+7WsS=uk)y;Y8te2Q5oG3%MX!G9;0_qu&!JK;*g%TO(+HNfCzkxR2c;+1*A zxyesY6M`DgU=iFrS|obe45M;m-6{}VfFE8Ku_VRI;py+^?r)9c`@qy4u`o#yaY3!z zF0}b`luAuLp~BV6r#%w6QfA?f+!x<;)0-*<Uq55dU)t6v*MbN-BP^Oe*xA>0+}>a9 zZZlmAYTNw-He9y;aCPb=O#~vySBXNE4mYR^$eW9cD>jhGrIUf#oD$zm#2Av7;HBVF zw$q)94YNbHYQE`PY0dEf=O-rU&(gwsyL!4w4S_F*0vVHojCBt6ecpBQ_=x@E{vbD- zDfX20cb_`RG~*+~jo@}TYVP}=E?%BXP%U+x%j&U%&L2-+WfL=P@#N~r8npVE(qW%S ze~-E6EB9dV%S!{hM~NH50ntO}9JOOf9>ATbTvvV99t(d%xFsdWqET6JOl`tp05K?w z!$4yhERKTp0*1z5EKW4a!cg?$W$og>8Vp8_jwt>A27C4FE3kp%oM1K*mJ*c-2Z+^d zLi9$pN{^VeFo9^`O%)qdBrZ{rI&}eqgCM#>4gMNaYcc4{i`xdE#CE5ILTfeTW0=sW zwi@t43x>&HlNqpjsV|WSI2(ExCc<^3)&kflS{_i53ps&XbT&EJI*mmOVo~&0UDgRm zd2$OyqBG!@(jpw_oc<7VF*$a#Ncw<|L;+cV^*lEgWy6P4)jU%ODSlgYvUFuQh~shu z&viPSGa|RtcFDzn(CKjuK}<NQGZr!ky^1tDhau?_CJgjL301HOh*PA(0fDmePv55~ AVgLXD literal 0 HcmV?d00001 diff --git a/res/flags/KN.png b/res/flags/KN.png new file mode 100644 index 0000000000000000000000000000000000000000..3b39f8f7ae2cdfe7b31d5a99c37df0f1ba532b9d GIT binary patch literal 1569 zcmZ`$c~BEq7=H;N34suzLgcU<k_d8a77U9iSV6!9NDL6B6e%X=mK?waysAZ{RqBPU z2ql1^cu}EhMY(GK>5Nk3bVM91s6&<Uh-f?0PVLyfr3%!U?tE{*eee4n@B6k~CSA*9 zcrgF~OtB~-9cFK0(H-EslR?qJMA5}b;sCgC$oVg&Bi#F`MClR$w($TcDFfh7cvLb4 zKoK8+#|i+1)c|nvYdh0o03dIbrOFc_U}9nd)Qjh$F4_0w8r#+7?KZX`lmY>>C5L08 zb?1ebuK1RjUA)}M^Gl#E+3(bvims5$4W3ESR5F=FA`|!Y=8)ge>%`P!qO6P2?U$Eq zSJQ=2%gp8iy<Wd)(IOg^lq040)GnMgf@-|e@m1Z+&s8pnMJZ5ACQF;1o*o_^=5o0~ zOC9P<T_09>-Hi`;E1pbm5GgKU9pCvBD;R7hiAtqLM`MkRjh~j3Mn@s)OsC;m_g}QW zLq6O-SKfT1&@*xM-9e`hv9XzE1C|EHVhc``xlA4KzJo38cjFPkeoLuKc5Ym&Z(Gsv zt*0rA?&3tufay%i%chUix=$+n20gibECT;;%o;^BuRhVmYd*X<DaMONcVe;JAW;xb zY2EKORqity5!eq|Ge(40U9xLqQo)tT&K6H~8ja)5{PL^HrluwoMcrIU){Ts@I*$k0 zeuEs|tXEu1?3pgEZMSQ%zr(6kAHYG`?e_IKACt)rF_DgK73`@ppONrD0{_;f^Q3!j zDvd@3Boc|mVr6D#8cmi6#CMm8HE!eFm-`R6^N3r`^y2M7{BCCkLzc9l<1lM#=aO5& zfpC&@odV$HLH^9_e6N}_Aqf~*IL8%)I)48(`^g@kTS0S_sF!P=K}C`^U77(_KOEH( zn~f=J6Tn`_B_g<S$`^fv!>pKD(|Pd&@PlR*OA=}K9ocSVc2RH)6LMn2332kE0hMBL zY6+VIdQg85=^WzyK5ZEXb8F~%G5zv|Go9gt<NF$V%D*U25haUzum4ogi{l}Fy}`?a zzd6%<Hc!9Ffa6c59{W%J#&kKbUy|B)BP_J#T!+c{?CJeN*Mrjj@K&?^?tAsQ<EyUj zd`;RV>u9)FF?fD@ugGi<GTW!BN8A4>`!R5DPGRz<>}^R}4{UQ3wpnV<-5IA$D{#tc zy>zbo_{HYVQ%AcF+PbbbUO3xvvaN*@aC>~{&aIzsj@=&Ui&Z{o>d81IwdJOhD{Uw~ zVzjTsAN6fGpFi|~n^G0FA&p$MzGIW%_nNjRBbL#2!>>nM#x7SK@tZ8p$DdC=9B<n` zFuvmz%O^%&8hWj7N44$M^&!=@b+s`?olO+ULEEbvcko9@PPaV0l(%QuYbpzX0!MSV zyC$?3j+Sdp%(AMLR*g_qsDTMY@KG#`F9<_1IT|J8M+i|YgpUgO{F`I?d;cMrENX*x z>;Dsue?FK42^iskTeQ~A%0dl5its|jXi+JR2(E_*h}xn;#3rRqBT?!Ms=P1^K@4WK zW=pu<YBGLOT+<3A784S3eUWLSP?%s*6`3?<t57I|Bpjfp|L#KG!OZ9hg(8hXr?&zD zpTDKr;VHy$=IOk_d}vTx^#Bv_D{Jr?2=SZ;kr+%G>(+b?Fc9}c@M7H$&-114=t$%c z1<(~M1^h_(V7rg>n<2z)o=%2gn+8NjMZ{<COYecT;CZ#obTQBxj2a<=6l!z^i#bed cRO)cT3`voO!=ykHGaw0w6Qv2Q@ru%a0Gsh0vj6}9 literal 0 HcmV?d00001 diff --git a/res/flags/KP.png b/res/flags/KP.png new file mode 100644 index 0000000000000000000000000000000000000000..eacc3ad0fd2ac0e72a29c418ea61e33b4555bd84 GIT binary patch literal 1038 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`)29;1l8sRB-?PeMY}U ze9^1+<urp(cJtnh1`x_@1hRo5A7s=(NLuxys@~U#_-~o{U)=p6B0%!3jQU$?wRfrp zKbEZc`}paP<*Wa`e)A=-6etLi0wPJ3PhoLCx9|Si-uuDT52)<N%C+wetUwARl)u(C z|2ll^y`|F|QN_>6S-&q{{@~*KR!SA5D?S}))aRtkkG^5wCe8SB^EOl$&^k54Z=L<W zjvW8@;ls}jTRx}fL9BziQ$_D<O!D`liZ31kaCc($8qoWUf0Q~vR7sFuFoVOh8)+a; zlDE4HLkFv@2av;A;1O92q!YmSL$=d-AcMWc)7O>#A*-MOlVGW)4KGk=zNd?0h{pNk z1PP@ELGy%!ltZiyMQ3&}1oW}8MBKb#X|Z!h<OIfmK6Z|ZpFdbxT3cLQDkm@m`0;QY zQB_&GBsJyflcOL$BZtV;DWM@(ub7&MPGAV}^Nw~8_rHJO0!R0pjh!oJ?rdE;)pVB3 zi45sz>uPp)^>lHQ-wu97rN!SreEIb4qieDH4gI=*jE#;56<_>2EUx$Ckg&fEk01ks z`yI)H8amsb1D&c`;u=wsl30>zm0Xkxq!^4049#^7Omz*-Lk!KV42-M{&9w~-tqcq< z-_Ce|q9HdwB{QuOw}wS+7h-@K%t1C3=ckpFCl;kL=$953>F4ApC+6rEX8;BCQ}UDb zJ#!P&Q+*TDGn2D*&Gq#&^HNeP^fF3vb85<Ftpge%0Wu;aqck_k%E~1_ximL5uf)nK z0H~>$!EpKi-TG*1z~)(5d8B5hXOu8l7#I{dOxTZIO?YNXNd|+VnSsIKo%ecyY9x{D z^3BXmEvYO>Wyl0MP`|h=egFFcKcFIUWJMuBRSbqEmZk>AKw#cH<y;<6i2#z4;LNI2 z1`AV5r`?vO(Lgy(B)QNaPlmM2oK!1){i4+L%=|pvw4B8BVvuF}-T`_bJ0Iq30BU0J MboFyt=akR{0F*9)Z~y=R literal 0 HcmV?d00001 diff --git a/res/flags/KR.png b/res/flags/KR.png new file mode 100644 index 0000000000000000000000000000000000000000..a0df8da03353d6f8647b9f602c12929199140abd GIT binary patch literal 1456 zcmZ{i3s6*L6o7w01c6nN6tXmHqQMC7T~^p(brfM4cV!os<q|Nn!0z6?`)FUpUY-#- zhM;3pDPSnlLnQ_bX3U&ILmnlpM1q*%vKX)<U<^isHgRFW&O+0WO=s>sum3ye|L=e9 zQAzwhmiH!agb+(8;7h?i=X$-|L0|D+sR6T6vsb(qp^G2*I29fcZzTm%F+v5eAat-8 zp;<^Be1K3kj?jc0Azmdy0hwp6B<w=S?FEU5hy`G1Xz0m*WMN^Uy}jMxaKH-awzjtU z`FZfWyStN<lMMz#OH0dA5jc9iJ}oWHX0ttf_|RxHCMG5(BqY?=*Do;4<38Kew;iCt zhYVmONfs9uPfku+t=5c;42eWiSXem2FpOi|P8D`-+0(f`95nclnRPm=s;UTrNKa1( z-syDq_4SpOmf8mg7iO6L^qlKnuXXrf9lp5Ld%M*$WFS4~$qX}Kw*vzt@Nmf4+1a~Y z{Y{(pboyYOzIYoetZZY<djb6BO}nQ%Zo(=s4d2|%-5mcNi+ybkhulhdg=M>Qaub4N z;|*7qI<)r;1@0_}3|4YpReNx9(2hKKp5K{&uj^;%02|%9b*rSLWN^^_C*w@Yt3m8s z#Bni*lZ)`2l)M^-nX}smfB_QtrO!`IO)V-aVwjnc@u{?;I{%nMt0Lb54L)R?b92?z z)iRlE>GR=wO(qjf(<vz_b#-+!%v`T+w5ik9Ya0U}u9u>y!;1pf3&&m>7EGkIwG~1T zaQ+z<gilQwCJvcJ(52wt7##?J-v_OrrSXX<YV5As6)5BO@zD{F%>oEkX9`j+VC9SN z@A~K-a6D<DIM#E-!*89NU-q_LET{<*^7j(KJ)}HPbkHvV-C%>bv;BRJ$dw*`hA7_( zQsWrDuT(nJZseBq-Jg1i-v2}xB@v{o{Ney1l0~l%b}J)KoH%*Bf;^EdA*5<)LQ-OX zROOBHbu|s=F4UUkT9rZhhT5b!`m%;Hl6uY5@Pqr4j)}3~Mt(i~;Ul$jS~2~{qqSbX z-fLD<-tNa*A0KvqldmFZkwI4IR=&0(PNm$h+#fF#$MsmdyVPAP02v({4R~hbhL6fm zRwNUzC-wjIQd3Riwa+frHPu{hXg+u8!qwWZ*9sfoY5!hWcItCcb;R4NZg;0%8t;y^ z{z#r~k&m3cKAf5QC2gDDAPPC&Zn-lNE)wZawdUQMWeG-ZeC2nZ^!GnA=*#gx;ACw< zC^#@?bximV6x?AD9h*X{6g0&nvnVhq3}<sg@$gVKmtaTm@Gu^m8-lZWIDXr%9sXB= z(X7&`^Z&o#Y)P*S3b?KvEM_&GtH`1dmTk$x3}#Ycz${uwU@9|-35^O3C01y3q&}33 zVLFqF%G<7`jfTRU(~Zy~(A9#_W*e0}9^Xu68z~db<4K^%g4nfBu3}Fyi~V>!0j1Mu zX%vCu1-~?31}0!xpTC)8or>0?NE~-q>hA#Z>@q~GGg5SZCWUma^I?`8P0Lhf{8N3z z1W<^*BQhN4fN<X}zi9$w-LgK3x&jJu!|~{_%8&W5wr$y3l2nM)Is?VSuq;ZWGn+!y e28G7r+6;@6ZU=My#XY@HgoLs2{Kjbcp}zp)=AMcG literal 0 HcmV?d00001 diff --git a/res/flags/KW.png b/res/flags/KW.png new file mode 100644 index 0000000000000000000000000000000000000000..c6839950d872f3458d93c5a1bfd13bd5a13746f9 GIT binary patch literal 985 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l(-k*6XFV_@87@Ape4$X zX3S7y$53SpML-ELZiZk@hDsZTYM3A!GlQ8lL!LRhN}ytCK88qL#!6epYC9kT3b62U zl+Nv3etGZG3%h_^HdfZ1+jso`|DTPGZQHhOKoM3TW9JSaLxh!mdv(*twOik<-UQ?V zfgTIzbRL;ALTcxP)PabLktv!(a2LPQMM3p*f@%<?%FN!wBXvel?E*{$DDKY2yOvJ@ zuI%ZK&HO;)7)yfuf*Bm1-ADs*lDyqr7&=&GJ%Aj}0*}aIAe{ilAF`d!0~zckp1!W^ z4_O5Tm;_5TZFqq~eV#6kAsXkeUNjYBHWYCV^bbf(1A?NA|I%HLOX}ZzDZX7E(rMUj z@MT8gX6re6+nX{zRMh@+2)HZ2<-TZRMU#;3Or}dSbM*XA#xiP5J0<F6781DH+^3E= zV_V7EUcd0mRSxwAGJ%VF)en@I#p`J9j9zPg`|dx7+S?yX_QmAiaoO_w@z1K_bvgBQ z8#?$K19W?nj;6Q)U8Y*%8c~vxSdwa$T$Bo=7>o=I&2<e-bq&o!49%<zjI0dJwG9ld z3=A&c&Uk>LAvZrIGp!Q0hDB``Vt^XVK{gcUr<If^7Ns)imlhZ4=j10R=I9q^00s0@ z@{{#Fa}(23eG}6&le2Zr_4PCJQc^4QGD>oDYRYD<0~#R#G9o0SG&jl0$|XO!G&eP` z#L6lFsHvF2aQXk;`e<sv=2=;Jq-LgPlrWeX7*yTcyA`{d@XVBw3<g6Z1A`+Q$^wCE zB$4d$&CE?LsVqok$OJi1zql-Y|N8<zpdxW(MIk^{42C9_rUu49VBS3CTpmz~0Fsj6 z%&JrdV?!gSj-!Wx*^5CFNiH<VlOZiLC)G+{zbG|5Ge1u^EhjO(7-X5gceoyq;yt)w Q0Z<czr>mdKI;Vst0Fe<gasU7T literal 0 HcmV?d00001 diff --git a/res/flags/KY.png b/res/flags/KY.png new file mode 100644 index 0000000000000000000000000000000000000000..3f82fa749e89465ec1e41b79eb372dbdcda86726 GIT binary patch literal 1604 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`(R7z$e5NsNnwn`^PK# z@2=U^(78><u9r=>c~wToO{Wl_sF@6E^$t#L>+<^^%vqV3y@)}nhC!tk6B)VnHKk6v zI%VmR)dvbXcW*D7c*7~Qwq{jNYX8kytM;xw996tV(6oa=8KxJ=P_1WBse>4`KC@$E zPS=Hs?&r0gFJ>;jom6y1-}ymZ50LwG%7T666E<YDN4PgZwJX<ZxO6r(H<r}&@EbG( z1#j60UbhXnW*d0JG5D6P|5aVbi!w&H>;i7u1zflBzh)PB$37s}C>>%QlUki~W@UDR zQ$b^rsCf&-%&>$xHO(8Z9k}pz<);08%g)zMylxkGWXs8i2hYBkvut70lBCQ9nohkC z#he=Tjxl9US>Y~eaf+7E0BP>na%$e@JvCDk{o3Vhy4PlP-f;>ENt|mMG;{8h?U!e) zT$t6XXVC~ULAg%fplnHi`_g2GHIdepHqp##z@VtDi0hB@Xp%H;2D+13voX}IImb9t z-M*Vap_)~z(J^LTRnbCAi#muK7?f&FoZ5GHH68A*J=tB?k=@Cx4l;y6u?B1fQaA$x z86ND4)d)6Nv9^0(L4Q~Cg5||iy5h=bKwJWiU*%dgtA?Jug4X_-CDS@9X3m>YTOAou z&7lsBHK0*p0ag1pR4iRHqh!+Tu6c`gZf%;^Ss|<g^dr;(TsrkCj!j`%O|{+a#f_~N zflU(Tjf|>D&Qk&@W>&9bRILMg3a%0A2IR!Xz##YTsxUCUGL{7S1v5B2yO9RsBze2L zFm$lWdH^|`1s;*bKso`8KV&<d2Qt`8Jbhi+AF>JxFbS4w+VBGPXnMLhhG?8mPLNP) z5HwFnNJ&adOih0N;K`$B51&337Z4B;5)%{^77$=K)#>fw<$3zVsgv3oTAHglR;*f? zospI4{G_Dh>la?0-X33{vuAX5Sl6t{&3XGqR-vfR@0{McymxZ*;_lh)t7H1d*ywmr zabaS@&JP_YR=k*TW5<t{BTJr$G+x>ArRU6=H!>Sy^5W_o69Wr9Gb1ZqQ>QwV`sT*g zIwuQ9tlPPC>)O4GH?Q8keEa(PLq|L(FZY>iR(s56!<{uZi=UmFy+7gMqNCo^^rH7A zJzaG*``Wtb{fWvRehiX1xAvsI-uBkI?A@)s?9O@b_x)w(le4OM@?zs-i6V8sc~-U0 z-t7D=t`~P`g7A)-r?0lYHqX1atCl_3&*8zly}$Y8?3!A*=T%53F)+kQWgYH2{k8)b zj;bZD5hW>!C8<`)MX5lF!N|bST-U%<*U&t~(9Fuf$jZ=M+rZGuz~J)jj0Y$ha`RI% z(<*UmSk!hQ2B^UtWJ7U&T1k0gQ7VIeX>pN$PJVJ?j(%|lP(VK=KUv>1H!(fcH!(dk zIa}9UUq3T1CAC5?qa-({rfk+apb-)vBSJDtbCayBT=J7kb5rw5tgHfnnu-|=m;c|b zkERA}o|TnHYG!&y34@t|LDjvzTd}JN&rB)FU@$Z?FgUWIED)$h63H&#%-qzH%7Rpe zOppWhi_6mYzc26uDiTLl6arMmU}$1#YG4cm=FL;i<pGrlAt?#YtV(4tv9z!>cM`d^ z1QaNmNV1_po(yT3IjL6q`bDYfnfZCTX*r4M#UShSy(9I2)TWPo2Z5RxJYD@<);T3K F0RZJ3O4$Ga literal 0 HcmV?d00001 diff --git a/res/flags/KZ.png b/res/flags/KZ.png new file mode 100644 index 0000000000000000000000000000000000000000..4b436212122b644b79cda6b32ae643ab54347d70 GIT binary patch literal 1346 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`*z>z$e5NsNnwn`#c*C zYHeQ4z2OkU`cpupwRu(l?s(Nr>loIbfrx;~({Q%NrZwHWlax1YKvHm;eZvvK4SP8@ z9AQ`wRS8tquqz9!3?gz`V&jgO?XC5@vVkO!4N<ALc}3UmWT0Z0X{VXjp9tF4bLODY zucQ2D4;qGS>jsKI6sv4n57aKdX%mFYzTv3&#+`XPDn1_({eP6}^AVB!o#jB2f#N{d z>TX^!b5Df&rnO*`&lqlATDG$&cw5im0~TM82p>6M9=ffoW>>D!=A}Rds3xD5-ncbo zN4?dS`4QVYOLi7VZ0`WFfeg7#TYy$$xcL;&o4^n=+p@@Z%N*m)OH4K|2HOh?PmFK? z2?Bit6nEV^Enr(8&|!GP7Nl5c;~xGE`<d3Cgs8+FM~G-biB<-N{kzX80OOmnB*-tA z!Qt7BG!Q4r+uensgH_f8$l)yTh%5%u31Ivo+vz-z!CvC&>&pI+RZxIQuvF8A7bx_? z)5S4F<9u?0gi?c`c|t-;Qd(l_VYY^%H!^c#1o+JP_2u_BC`_6&VMB+;3|%!nMNL&* zW$pF}lfwf-m^M!h4Y_*7)MV=x!6K_&RlgLLH7=aEv2*3jovlknW6s?=c8%}Imhys< zqO!u$;_n|?PFGg`{?Rm}?jK{L<3YuRi4O$}cAi-ALPEgUOwUfyP}5S?R99AS`ox)2 zd6S+!dG=IXL`-!0lxYW_p3>G@?QrJRtXsQ&wH;gbY+BfknCNPE^%-}s-o1SLx_#m! zl@@t5|Cv_2hi2L(KU;IN_}Mw<6KCT$6bP>Sa738jnT3JDn9qE7)x?+cfPPjjag8WR zNi0dVN-jzTQVd20hUU5krn-jaA%<pF21Ztf=Gq2^Rt5%_Z)ZF}(U6;;l9^VCTf?HZ z3o$?q<{%r2^V3So6N^$A^h=A2^mFo)6La*7Gk^m6Df!9zp1FzXslJKnnaSC@=KA`X zc`2zCdKo3TIW=Xo)&Y%>02vXIQJR}%W#y8eT$-DjS7K!q0Mt~>V7UDMZhbU0VDqf3 zJW?~$GfEhY4Gd~T>*IiG#F5N_stM0bDal|kGcb6m{}x!HFi0XP@y*OlEvYO>Wyl1% zPrtY<egFFcKQwcELx8Fn3{5Oe4UB=nym`vGJfIRGBy)l@tAHvDf$~l_G{l5~vYJS; yp+TMuX_+~xR{Huysp*;ddAeyiiRr~4>-4>&^nldYz!E{ACI(MeKbLh*2~7YF?isiM literal 0 HcmV?d00001 diff --git a/res/flags/LA.png b/res/flags/LA.png new file mode 100644 index 0000000000000000000000000000000000000000..ee9c41ea18aa6372a42c73b42ce4ad0d17f1a239 GIT binary patch literal 1046 zcmZ`&ZAepL6h3|oOEFwoQ~NSvQ;~V^Oucy#N}ITmTYjwULvnMw_wMHA=I&jl6|4*? zA%u(&DH4N{FjJw(N%Z-nlGMH|@P}3uB}7rbDs7!R#a7VE`<`>&=RD^*=e=-Glo*R* zqm!ZmAXcx_mZ4uMokbC7{n3#ex=1eHkPpz`8Z%>&;XT=^D>DEzssMb)0Dd6k`vBl2 z0jA9WbUT2;eb!%^2M`usQfw+j!sO)Sh+OqVu53%lo!h4r8(ZV4xs5S`vJ_61%0;Ny z_-uD&U5BsrDq4&YK^#);(oW%)QbPCj;hEXlKp=qj(zRhk5T7R~+3JH`n3`J{gOZ(3 zso0jY{y7{2PzCWI|5p%2`-dNFgyPsDw9CSTd!z~b&@N2)zjxvD6BXhMbYWtdu^cwP zf5l3d>a9guI4)bQ!^>i~ZkK@G96VoY3Pv%A67`0{sMj)iT)5numKTdqw_clXN*%SD z6N-Iu1w7PPq9Wh5_eb=tiizwS=oj3cx^I02-_5yu7froY#KkXNAz$9~^^WI_IeA^0 zQoTMs<!WbYm>h=FjvN_ix!lp??`ghxCPxc;V^PJn9aZC-$HyKdY%xyUe_lLZIez!) zqa^*3edkYJId`+C=|bCvfx{*BgE#zx2M;th{7fENHodlLQ^0q-b1JUN7I+<_@Z3w< zHWRxB;C*~zZ_;Bznpr6p?i6hnk)f>~1|4LQ8cI!Ot2LBKlS7l4w1!G2H8e>+o3Ky) zRp4~lc(&pH1zpW!l~_PY9RwFE)>}Lb5MIGUI9yhXgAnWp5H^>U&^s+0W3X_%wMI=5 z1Yc`o4rJIxr{mE6j$V{VkR(iYud|w_wJxjI$<&H8U4lgdXf6eYh<`XiJ(|`rJZBdn zizFL%^ApHXgy_t3DtMb{ha8gpNPNQo1QJ6i2Hwet4Q>W_X+A>O&)xd$HvXeyFd+*x zS-IKd23%Cr>5*Eb#D(aT^Nsjjsoa8>5LSx0w2<8PGCi=ogP{q+!*IN-R?RvroFFwL Wit{tj1#E9<ECPL@QQKQ!KKdIJduH_j literal 0 HcmV?d00001 diff --git a/res/flags/LB.png b/res/flags/LB.png new file mode 100644 index 0000000000000000000000000000000000000000..7b4d66537f190590100ebaee8461a287e313c3a5 GIT binary patch literal 1091 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`&>(;1l8sRB-?P{kJkI zZzUAKNb#MdB82@ZHW`9G#3VinkN6sw`WY<p|JN@l`u%6igX69{tLNR=@%h`Q|G$2N z#Q*=l`RQrk;ZC`YY5Lm>&%C_@6aj*-e||JvUZJ!pLwsGL#+ID?vvXhn_y`m~_4ao7 zksg87F`{eZc~?alY%kjT;?mE*zh~dsZM3~ua(xp2>S*D$ai%*<XWrTM`|qDmzrW4D zw+|>AaHxY}Szy)0rAr?iTJ`AIvv2PpuKM}o+v5+<CtukZw!eMO_3c2xKR<u`{P7*g zfOzL)Y|`V1h_})4Z=&PxhlRb4j)V9MD2o&Vif<($K>-R4U?{O4Zs7+~j3q&S!3+-1 zZlr-YN#5=*3>~bp9zYIffk$L9kWK*O57|!VfeiK%PhVH|hpd7EOoFAFHoQQgHJ&bx zAsXkC6C`{Z1jQLn8YZ%{Je`r)&^onuF7r9&(}hlq;^zGN^7|QjxTguXFeoMp1{xM} zdTMIO>!|ZG8*M83#C54FKyK2UNn18`t(vu~ZJEikIn%am>svQ(U!$U!Wu|hnaIkSP zx3{)V(KWMeW#9Pv{LY;y5=h^<W7p2=imJ-rKYl6h6n-T8zu~}w2NN!A_|V~@^55~W zqL!7KnVy}ZplZws-fWwX<`oPK@6F^Am(N~S1$4J+iEBhjN@7W>RdP`(kYX@0Ff`XS zFx53Q4>2^eGBC0-G}ksTv@$Tbd^_U-iiX_$l+3hB+!_|OU5Ei{FbCOCoS#-wo>-L1 zpkG>Cq@R<YoS36uoB<TjPsvZ#_smU9PxVbq&rHtNHP_eA%u7kF(90;v&8aDywGL>6 z1jvYxjMCgBD=U}$<kH;Kyb>#`0HCH~2E*n5ck8360h?!K<&m11o>9VJYG6<?gZT|m zjX07yP&MJ1DJ2;U=B5TyXBE!^Dv?A|;+vV9T2fh%%8&_ipMG&!`u_I?erV?Sh5%JD z7@Am`8W;nCdGnNWc|avXNah4*RsmHQm>8KkiOn}_1IlV5$%Y1bGNfhZq+03g7p10W k=I80A<s_yTgRIl{anb`)JC4kF1=Pgg>FVdQ&MBb@0130VL;wH) literal 0 HcmV?d00001 diff --git a/res/flags/LC.png b/res/flags/LC.png new file mode 100644 index 0000000000000000000000000000000000000000..d97f8d8dc7173d319bed5f2fea357ae0a56b766c GIT binary patch literal 1139 zcmZ`!ZA?>V6g~_(6hl@73&@<tAkG-P_g10f&SZnNYa1<rQa@0C^wRtG_DV~k_ZFpW z2@yXwwzw>^1V0i9!LLM(EYXO>7y~G1<#Wh~nbkx^nNhR&!#T$FltzYTyE*qc&w0*s z-t)fS7vvk`;}*sNK)l(cw_;8U|8t@dFU7?Om|}!nOD;gmPxB@@71m1}CaVP?kO5G$ z8{jocHID)OG{A%%fNcOsE<bXqa4kSoalv|<0S%#0$Qe{3LEaK9#aqgcV_}?WRS!&E z3q3`Q*boo&Je4E~ab~b$K-qutf+lf3BJ#*Ae^aR&p4!IoxDF9HD%f)MC=H!=GSZh& z%K;HND*vt<QUZ1Ln~ZZpt%-=ptA~`xB0i}6-2c+I-FW-lN6L@}5jiTT<G80!In~kL zeR9#%;DX714I*+>P@lQazT2-RhD-nHRZsONMglo1s7LOGi;fPqhXyQn`wYLo4dkex zKJ(u2y5P%-;IoS0^XYhoC5q(O@Fc!AO19<~!IzIloZ+Hmoly_psTP^Am|JctmN46= z{}-isy+~qZv&9g5UzMQ#Ai=+4Z9Gb6%=%p0r@an)%F>zyo!!pwigs!?W>>}}8}`>8 z_~CGD+sD-6D>aR3YGV$UP{>rwHJ|ob2eiNX{)`)Wkn~Ia2HVhYSxGHj;&$<m#}iM| zQc7;5rXFrMba3nDEyZbE*XYRD=;xoYIc*om>|L#`)jI=Kf4_SDS8U@=)rYEmyZ7!f z>c2Kzk7?@eyw<rqJ!9F4=Htf%zNwp#@du9{j*pKoNYaq24_|b&tE1qH#h;{)dTqsc z@ny1Mv&?fcVI4k#3A8k$%cQe18J&&EW@#<U=vLAUOVfjQT=(7?@OXLAS@r(|O?&&c z;eal@LGn7~9h{E<<(GVv+w0)ml;lEz;=K;a?BN7r;RMl9nyI5Gv5Y4>SGi=5`<u!` zXYq)X@DVnb-&4Y}dauLpA!Rbl7T}Ns%n7B9de1X`9?P1DD7a+Ers=@l%jf^wvq|J- z7cg3y?l@Ojh@RA0yDXxI$W`S8#P9_vsZzM|ygVOG$+Jy1bOEy_CyQQ<pRTsPrwlFX zS(YL(Kw!02n^#x+Z4&lY%<65hn!zc$2}@BvB8c9yOsAU@r0_Co{a33n?P+e=f<s_7 L<m=Do*>}AGZFlB> literal 0 HcmV?d00001 diff --git a/res/flags/LI.png b/res/flags/LI.png new file mode 100644 index 0000000000000000000000000000000000000000..c75a229fa8183f4ecdbc7a644155d9c7aa59096d GIT binary patch literal 973 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l(-k*6XFV_@87@Apk0q0 zX*Dot)r*+qGHTZ{0NDs-bs7%I_C7&AfzA#-fx6BKOggm?Sq}Y*nj-Us9V%@_it}1k zIx3C$j7k`^L3-Krs#|LujxN>SJx}|{QtipD);vZPFf$vpom0GhEuEYVy}Zqh+~VNk zV7)+RG%%>wGN@OBNKK$=Ae1f_oGupxCV>n%3c4t$dQK1+1Pq@KtOEL+fw3gWFPOpM z*^M+1C&}C0g`tC0)&t1lEbxdd2GR*&{2|-vJdnX&;_2(k{*YBrfJv}a(}ou))Zppj z7@~1LIYGjuLC`!QAtfm(DJ?NIIo*j}!IIBUFHbJcu8vWssLAP&(xRkCLX#q%ELoD8 z^7M(Q$kYudG*_=!wK6*+D>HfG<%?G@n;V!InH`*BY-+rH!<J3kHf}X`Wp%Kuu4Z>v zPZtk2uQp+rQhc1Xp-67W0fotjh3lI+7#Ln~I9q(lSn~zw7S$5hh?11Vl2ohYqEsNo zU}Ruuu4`bbYiJ%~Xl7+#WMycsZD43+U~u_%#sd@$x%nxXX_dG&ENZ(D1Jqy+vY|LX zt)x7$D3w9Kw75t=CqFqcN541&D4?H`pRDhho0y*Jo0y)NoULoFub-Khl3JmcQIeZe zQ#NZI&<F{T5g{3+xk*-5F8Rr&xv6<2R#pK(O~nj`%m44zM^ghf&&tXpH8VY<gu%?f zpz7Y<t=QFsXQq^7Fc=yb7#ufQWDis$iDZ{=W^QUpWkD)KCdh&M#bxRH-xv4+6^SD& z3IVEOFf_3=H82JO^X4h%@_<T&kdy>xRsjRn*xbO>>Fsv0-9TAQB-zj)PlmM2oK!1) o{i4+L%=|pvw4B8BVvu$EKAw6&>b%Ix-#|?ap00i_>zopr0RFKiiU0rr literal 0 HcmV?d00001 diff --git a/res/flags/LK.png b/res/flags/LK.png new file mode 100644 index 0000000000000000000000000000000000000000..2ca1a0c1676e2933f40d1107fdced15ac63c35bb GIT binary patch literal 1635 zcmZ`%3s6&65M4<4Dnb<b1W5oBOoH$dRH9L5B!Unj$j?@bGZ2!HJoyAkpw+g@pySvQ z4Zi|KB#BxPg@6uFj8$8;ty%>YwW(SWL_yJFM=2dElimj{Qro`SclYkzb9V3SJ)gwK zMY%XrodLi_6djR>ybtj^lF({)CM%F5E5gO$0LOIGUQ6sy>?e&*6a#Dt1Ss4A@Cv00 z2LbZA08i2Y1l0hZxwYnmWdOF9;$xE|5um51=XJZyP>bE5$sXBD6Uo{Pgtfp}tIbFw z>16|X<X=W48%bkrHUlR6SanEHMi@sCR)bTmnPA-r*3IzZ0Lil3u_cjeSQ20m1Q?eF z7}5H-85ReiJPOg;oItf`oqjz;?rU^l$QDDg5Z12TzRu739$41{Dmc8?&XnZ+S!h79 zFQ;lTeRm+Un9eTYFm!BYX~<l?(6^E|x0uF8rxm;agdD1KK&1lZd{`@lcZ56E)2%5$ zRLg?l8vCjcCIai2^IFqqeX+*tta^r}%<l3o`zGb|2FZ*Tx$EabY6+XbR0T7KY8@t6 z)fiJtXP0r9W+lZKKfAl!cCa3<m)RaobwgqGN^e7=d+B_Jmc~Iy#6pb-3XM}fpJB!+ z<zaNQ#`$g?beEG3CwVj`c^yyjXqC<^VFjYH6BGol2=(vKI2og<5BHIuH^Iwhc-0DH zZD8$yzH0kYHgN|nowIu$vmST4SxSE04%RPW^cXxnKpt(ev6|to&Pf+Y)corLbdHY0 zIGEygLP@#s;q*ZR*|g51a-o0M_Gtq~()R_fT0hq01*Xnt4`W{WLcd}^R_$`y#gC`y zSj0fuB<?43UC!jXqSH6?dGkR2=n0T%{aJMpKKgK9gwZkr4N+9%YVUpFb5J<>K$8k- z9#_bOJP4^ERg6nzVn4A?D&#FePKpr8c$JA0gq)2gF)j&KJhEgEL3&J71njc&jYfe} zZuELJ@@eD$^GsnE+Bj%L;z);HJBphvC7->_1#vi{i11`qmo&{Qppe2(OOvH%NaWIi z`~7{7dLKUUbR(1eC6ok1ZFR?vgB7jX#@ern_Lm+1^hk|)=b_5>JtkUwT+i26FIdjs zxP15Q^-H(EyVZH`n`;+;`u64(U)DhH<A={43=PoTyxix^q<YXO-m`sY`FQFJOJZVI z$BD!-T^BB2>b!X62aGjeSQZq*4i0KQ+<3&)&~#L#%-XoBG!xIx93Fi7<d?_KhV+Gj z{7u*U*-7<cJx_h>=@NB9|D!9ZExFhFm@!qssmJneK3SCcqksP`m8AoJQQ35-eb{m$ zbF}W%AHUI8{62i&crI!WZRys&{)TQvXWi0my?xAxjt!^tMsAPz@KrybR*&8rb8w|E z-&*8ew?@Bwo4+FoOFgyq+%7(Crz1f5f}+$-3&u*&AeoxTbsCvOBNs^X<j6rNm&Xt0 zE(+%HlX+nRZm59A590C!TyFOr<^6vUvQ;uXWApzL_V2v90TK8_2em3g^S&fc4p_cA z56e<XC0UqSi4vGhCB;P95`|nWQQ*?dU_OT7IWqYNAxcel)<*?3CRD<UD3Pqp&rTNz zB2?1+Y<Z4GAc#jKHSp@KC$YCM<MjlBXgRJ>Y9Nfu-E!|#+ka!;#bp{L@ItxV^DPAl z2;)7aml)5MYc}V~0VghqsS6ZmhI8W($a5+v8KHo;aLFR>0`&2>S9Ine$jm8_Bzy}R zY-kvdFHF(L-$AGBDW_`_MUa7K$psjeCs*LAoZyTsi9$`Z!(wAXkZZf~YA+&zC^9a> IBup#%6Jj)OGynhq literal 0 HcmV?d00001 diff --git a/res/flags/LR.png b/res/flags/LR.png new file mode 100644 index 0000000000000000000000000000000000000000..41bf4a96ce7fab5087d0a581ba9e8f164f290aef GIT binary patch literal 960 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lsFUM6XFV_@87@AppgMW z>R_aiA*q(MR>J<UnAIUMD~PzFOO1kaHG^8ZyiMuV&4)f7J@?_rSqAlVE$_y4yU(xL zc~0G{L0Ug+e?ra8^!n@RbwDX0^WtS&PA%DVlHasQ#whnlVfVf2{ySCu4611?I@zLD zC8AcPOj=no7DX4AY<s))!0Rmsbo`oi{F=0V!N{-K(Ytn+P3&2#h%;6Z&u%{kq8GOx zeZG1BD;NO<krB`%mQy<_fD~g%kY6x^!?PP{AWo9Ey9+}HtE>l*!&%@FSq!8T!1zP9 z(|I6+y~NYkmHi>Bpa7F#siqAtP^jJ0#W6(V{MC!cg_;~hTrNr;Wl1{3(3NyZXGQ>{ z^8f#VUw%zJZ<}7dI$YPq&12q#oqK{brkxU<>U4Qk)!KU*+jzLv-hKJaXSMwX%`Fd4 zNcu0^ywiK3?zGik({|sk7MWFVG4I^;2UUwNyc2Ny_}Fvd-Uokws_ie6V?X<J!A%*H z=H_KZPwvYbDX~gfX|L!x@Y@RLB-Ikvh?11Vl2ohYqEsNoU}Ruuu4`bbYiJ%~Xl7+# zWMycsZD43+U~u_%#sd@$x%nxXX_dG&ENZ(D1Jqy+vY|LXt)x7$D3w9Kw75t=CqFqc zN541&D4?H`pRDhho0y*Jo0y)NoULoFub-Khl3JmcQIeZeQ#NZI&<F{T5g{3+xk*-5 zF8Rr&xv6<2R#pK(O~nj`%m44zM^ghf&&tXpH8VY<gu%?fpz7Y<t=QFsXQq^7Fc=z| z7%ZB_%L7y+iDZ{=W^QUpWkD)KCdh&M#bxRH-xv4+6^SD&3IVEOFf_3=H82JO^X4h% z@_<SNkdy>xR;4nS8=5;+U04tgl+#3#3k~vQNXyJgwbIuwN=?tq&(lrINlY&WS*Gt3 Xqz9yKsPJb1H8FU)`njxgN@xNAP3%)0 literal 0 HcmV?d00001 diff --git a/res/flags/LS.png b/res/flags/LS.png new file mode 100644 index 0000000000000000000000000000000000000000..10cf81b054fdaa6ca24dc7d3ba3d022f2dc119ed GIT binary patch literal 938 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l-L#E6XFV_@87@ApfI07 zb{-VTFMu!_CY*1WaG|X2SXkOJAPHpu|NsBQ@ne-0WhYM@1G4w--5VAbwr9^CAR7o~ z&Ya1^!!vd2R3Q7{!GkI)DnP>(6cm8Ue*O4WQ&sI~@8Do(@9gMYS5x=%`;UfG3xTNq z)WZCo69VTHyHCsro?8NB14V%13{xDSXsRQ_G-rnCE+7)fhKNsfHn(sE1r1|KkY6x^ z!?PP{AWo9Ey9+}HtE>l*!&%@FSq!8T!1zP9(|I6+y~NYkmHi>Bpa7F#siqAtP^j6{ z#W6(Vd~$+>PlKR1!%4$Lc9D~YhZ(rFrLEcLuups3!l;)g7iVX|uXCKAovF!*gRg6j z!TydF68kO8EII4yJT)`x>Lhc1{YZWKL{wzs?3GK_ELyc}U8B-+PR6KPR=cWxv9-Ac z*hQR^VDj-fdq!7h?V8*LH5=yWmN`t6nfF5)7#T4x%5qYxt}p?eqgvt`QIe8al4_M) zlnSI6j0_CTbq!2)4b4Lg&8!TJtPIVy4GgUe3@+c!cz~iIH$NpatrE9}MQs;ifEvs} zHWcTlm6RtIr84N378mK~<R>TQ=oe=I1@u$$ll47w6Vp?D6Vo%3vvtk&^)vHQQY-W_ zN^)~*%4V$t8X*BPA|#_UH_6J%B|o_|H#M)s$|?Y;shGiV`TyPeXllUbSy_3cW~OJ9 zFqjz_RNdRV6{toW$sDMf@XVBw3<gUBgGa@yt^$=vA}R6B%uOw+EJ$U@1i4SYxGa7D z`vN~Sb9_U9su&DSEKLoJfxx_Z%DFtC5<w($f-|c?;c98@^moQRP>^UMNrnb_GNfhZ sq+03g7p10W=I80A<s_yTgKX3H3DyHrPhHe*05vgqy85}Sb4q9e0E_BDBme*a literal 0 HcmV?d00001 diff --git a/res/flags/LT.png b/res/flags/LT.png new file mode 100644 index 0000000000000000000000000000000000000000..17a36c71cef86d660bf77d2fe75f58ef0000d392 GIT binary patch literal 745 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`YL6XFV_@87@wcc<|G zUBdU)OUjqnF=V<hWVtY8yND+_uF^L+tfqTVT^FdVb8T5UkYX$e@(X5gcy<G1J!6u$ zy9+}HtE>l*!&%@FSq!8T!1zP9(|I6+y~NYkmHi>Bpa7F#siqAtP$<aL#W6(U^4jy3 zq74QNEEgwkxRc)68gal$=LnP7h6Yxh1jfKEzcVg9DG%nG5^NcmuQuJ+VA0*)7mEaI zjgl;SB>a_^o$mN)mQ>jj5kL9#{d`M#D~0e2o1A5ufTpXKxJHzuB$lLFB^RXvDF!10 zLvvjNQ(Z&z5JNL710yR#b8Q1dD+7bew=*7~Xvob^$xN%ntzl8yg&3d)bC3<i`DrEP ziAAXl`lZE1`Z@W@i8=bk89)L3l>B6U&)mfHRNut(%;aocbAA2Hyp+@my^NCFoSL#( z>wrc`fQ$&qD9uf>vU15!F3nBNE3vW)0BR~`FkJqBw?3L0uz6Ni9;un>86^y61_o94 z_HM<lCOk8xB!j`wz`)?R$s&888c8I(d^2-XODYRe88Sf*)Gsbe-~YbA52#2SSy2d3 z6@#IPrKy225STYlIhO}iB7meMII{{Eu;wOCN$cumfO48ha-l(<3~8A;saE>>MXBkT j`FXl&If?1TAj|Z9LiB)Cc*?I6Kurvuu6{1-oD!M<So`Ny literal 0 HcmV?d00001 diff --git a/res/flags/LU.png b/res/flags/LU.png new file mode 100644 index 0000000000000000000000000000000000000000..675a891dd6fcd5f408cf757e911549a36ed6a569 GIT binary patch literal 729 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87@wR@3sW zy7_zOz`swQ|NsC0!I$6iYaTHyxW};Y9#8?>!iW7pim@cfFPOpM*$t4zj7i?^E({&4 zvK~MVXMsm#F_2CG;}6+R=Yb6N5>H=O_J^#30!)IXnl`*ZArDU%#}J9j$q5VO1YFpd zc$~aE8U(^`NN{o(bnH-IWMsP-prUX<VOkptN8!=a6B`(sUD$;L5+=;)WMPq55~j%L z6l3x~h@XKWa-R3utd&*CKr>ZKTq8<S5=&C8l8aJ-6oZk0p}DSssji`Uh@qL4fsvJ= zxwe6!m4U(K+Zhi~H00)|WTsW(*08AULJUxYImm|M{Irtt#G+IN{nFwh{ha*d#2o$N z44{C1N`A7wXKrG8s&8U?W^%T!xxRj8UP@|(UPei7PEFaYbwDE|Kt_aQl;$Q`S-IpV zm*%GCl~`E?05uge7%u<6TOUmg*gPvMkJQZcj1mSj1B0r2d$(d&6P}q;lEGkTU|?|E zWRX2kjU<v?zL~kHC6xuK44EJY>KB)#?|)z52UH}EtSAJiiowvt($v5h2+W(OoXZ0$ z5kOKBoLL17SaTDnq;>T&Ksik$xzHd_hP2F_R4aY`qSW-v{5;*XoW%5EkY)Nlp?W|n Ti{)|!P!ofvtDnm{r-UW|F9Y6( literal 0 HcmV?d00001 diff --git a/res/flags/LV.png b/res/flags/LV.png new file mode 100644 index 0000000000000000000000000000000000000000..763a6120261ed6366377ec7fe2443ce3d3da9bad GIT binary patch literal 701 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBC?OHx6XFV_@87>a&%hFh z7FjqvKYi~1|NlTid8vz5K#H*>$S;_|;n@w4WsFJQ?k)@+tg;?J4rhT!WHFFV0OJqY zPUnFP_7YEDSN4ajf&xr}rJ6RpKp_iH7sn8Z%gG4~Bn4d9n0TDLJQ@VTZ%A-*7<BAV zU}R*w7@(qXKw(-Ni$Ti8FN<dSOj>=R#>JR{A)ZH7cE@`0eLyo*OI#yLQW8s2t&)pU zffR$0fuXssfvK*cd5EEzm4T6!p}Dq!p_PHb<=Yt#P&DM`r(~v8;?}UJ?LrJtgE`2C z;{3Fd^2DN42L00FBK@5F<is5P;tZgGeoB6_zGrS?da7??dS-IAuDQN`W?o8ag<eKU zZca_vtaU&mBtS-lWR&J6Sy{Q{Czs}?=9O4k1pqY_GZ-%azgr(o4cI&@E05I7^o$Y) zGXsOFdwaKHR}-F@Qj)=7Xk=h;WJ6gXP>m##UA~#QsU?*KsSKGQ2kIA>rSE@V;0IJB zj;tsIsEWbR#M0Ej7zoUpr<}_JDiJ_Z5}a8DRAFi1bj@JX7oeObl3ZwzCqr6hPO6o@ oeo<<AW`3S-T25kmF~~A~pD;ZjrMqP13ZNziPgg&ebxsLQ0I}xM>Hq)$ literal 0 HcmV?d00001 diff --git a/res/flags/LY.png b/res/flags/LY.png new file mode 100644 index 0000000000000000000000000000000000000000..5211a9024f9c096a3e96d172f43f88078092c92e GIT binary patch literal 891 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l$aLa6XFV_@87@woIx0f z9x(_zF|b0ABLk}g0}GrBR0af`yu4C!a!hO>n|OG5l9Q8lbaX^TMGXuLxVX4fRaG-G zGOVnuHf`FZtgMWwfQO4mPDYlMnUzad1cEqqg*mi^;9R9yF3R)Vfau?pFAYFD7)yfu zf*Bm1-ADs*lDyqr7&=&GJ%Aj}0*}aIAe{ilAF`d!0~zckp1!W^4_O5Tm;_5TZFqq~ zm7Xq+AsXkeUfeC#WFXM;(B)$rAD6~G$AEwkhx`AZ-bpJCN_qQpmu0=B*VmS5nzj=H zq`g*D3S}vq&GSkBSCeRFx`E+zD2L0Qw`~=BJ-1m~-2T___~o0t%(9c+t9L&P3%j<c zEWQ8N&nok^H?LT6ZtZWm6~5^IzYD_l9H*sIoXuoT0v(}R;u=wsl30>zm0Xkxq!^40 z49#^7Omz*-Lk!KV42-M{&9w~-tqcq<-_Ce|q9HdwB{QuOw}wS+7h-@K%t1C3=ckpF zCl;kL=$953>F4ApC+6rEX8;BCQ}UDbJ#!P&Q+*TDGn2D*&Gq#&^HNeP^fF3vb85<F ztpge%0Wu;aqck_k%E~1_ximL5uf)nK0H~>$!EpKi-TG*1z~)(5d8B5hXOu9QSQu<< zeta3IMjXi;sG9K1l#&bvOEZHln!Le4C6Y)=d^2-XODYRe88Sic(=RSd-~YbA56v9k z5TGgsLla9=17jdCZ=P~452!={$(-QKs#FFOb0a6g`R#5%IZY(F&>&BSw9K4TD}DW< m)bz~!Jl(XM#Pnj2W%@pmdO&LZ7rRQJCI(MeKbLh*2~7Y3nhGfZ literal 0 HcmV?d00001 diff --git a/res/flags/MA.png b/res/flags/MA.png new file mode 100644 index 0000000000000000000000000000000000000000..098db5009b83d6869c0ca87746bbb026d10f3201 GIT binary patch literal 908 zcmZ`zeMl2=7=A5>X$)GB^Mj!N@Qb?LovG(8|8R1{O}$}rRz}dy+ikntSG${~1W8F5 zh7w4LS&@Ah22zkA_F?vk|7ehcR5S~cFev}7px$YWWpv!{dEVdiKF|C9PS@HhwP{&t z0HC#6I6HE7?5tahIF^>|K}z<RcoV>#?)5(f4c@ni7CR5nnhVg@4)7hNw$A_&3SiL* z!1e;@L;YjB%CK>_w#H#bjz*&sdBnf};{@?(F7YUz=wwJltXIrvxI!C_?Ig`SjfizT z@+6PAN*SuEX<HSIh&3wl732AY$Waapg^2Zv{-A)kP8s4DH?IWaaeVMs@*anjq}pwD zP`)tdj$In7D>>-UY_{MfHDqZ}ke$nCsi|Tbixkz$n^Qh$bQ{*_A_Zkyl$xxZ$&o)T zIx}k8bb6Sig_N1IqFa!}7h7LWO-w%Ts_(jR>U{Ts^4gB<&i>mSH+x6huk{qA8#5b> zEgEx<v}t>I=-^^j-@Z5O(A>L$TZ2KT*L7z0V(tz1Li)MgGg|$|PfO3D^GQ(oBlS?> zmyuCio1>cdsxCp5STQUiK_Nvm1XWDXjDs#=sX~@!wox=oQLo>6=l=@$gD%<K^8diV z$yfU^z{EBvLAQEX2unallrZTFih_?+yeN>aph#N%f=A*7k1RG33`xoXmvqG7RsFuB z&3(f-A|p1!;f?qkS(Xcm5x*2rS+*8K3ebbU?vtxL%kx;)BFP@F3MCZP`u^bvdh`i% z{&@DtF4YT0iu$Mw&7vhU!NSXaNo@&9AjjTED$SnpZz0>NIlKd1Ko=Q{sU7$+Cwis= zXwfCisgqmLVJu}T1}<^M*epnB*4wS%mVFXSl3~ds2LpuLCwP?DHj+0Pkcvv_%NPQy L*~Sf5IFJ7Zk3S<D literal 0 HcmV?d00001 diff --git a/res/flags/MC.png b/res/flags/MC.png new file mode 100644 index 0000000000000000000000000000000000000000..8d1a98132c8fe76ef1d8d67e0f0e5580788e92dd GIT binary patch literal 684 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBC?Oi)6XFV_@87?FPEhSE zpYrpL$^ZZV2a4>DJ97s}F_r}R1v5B2y8*I^G0EHAg`tC0)&t1lEbxdd2GR*&{2|-v zJdnX&;_2(k{*YBrfJv}a(}ou)r0wbA7$R{wIbnfPf=COqK{zLy$jY;(ZH&$a*IC(Q z4&Din;8<cPeszBcGlP1Fs&r}Sv=pE=)e_f;l9a@fRIB8oR3OD*WMF8nYhbEtXdYr{ zW@TVxWoWK#U}$AvaQSw|0~8Ip`6-!cmAEx5YP%2v)L;&>p*TOSq&%@Gl|jF>xJW-I zKRGc+zc>RZpr4YTtnZndn4apJn4X!Ot!u8YpP84ETA`OwlABXgHftTw2nmo8AsMB) zNmf=a`N^fZsd*(<Rsldw#SDha|L@jEQv){7%E}`(Gd-h(!OXy*>fYY1KsDk>=0Mei zXQq^7FqoSfOr2Fc3#ddANr`V}ZfZ$oK`KKg$bI_7W$F9h7x<x>;~N50#b9V+X=-2$ z1m?|C&gB7>2q2jgoLL17S7Re5<G%%NKsik$xzHd_hP2F_R4aY`qSW-v{5;*XoW%5E bkY)P5&U!$~??)0Sp)h#5`njxgN@xNAzHQ9; literal 0 HcmV?d00001 diff --git a/res/flags/MD.png b/res/flags/MD.png new file mode 100644 index 0000000000000000000000000000000000000000..6ca6f734c9132a5ac81d74420dd8c162d070de7e GIT binary patch literal 1104 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`*Dj;1l8sRB-?PeFnF6 zK*Z?2cIg7U|5q6PUt;)wjp1##;2AFcGn^m<6}-&wABcdmU<Dw>R~dj(Ur#c=Kg<FW z1j>RnE?sE%|02VgWjxo`b8PEZez23{{0eTMN}!oQsc$D48sZh#rpqjgRallH+nz4> z^8!d}*&^GQ2N?U)4c0oVZg3S@<)SgSMEmn;hIie9%NN-`*v*g^r=O7!(q5sT5S28i zLhs{AkQC6suO}G_Qxxj+jq1v*n+xm~*DF8_1WNrr%doAVYk8GOU#|Jq7XG8NIe%XS zI|Js^tLr$HG)dpx$_8@(RTL?pcYdFTc^T|4sNW$Wa0wWA41M>{-vm;OB|(0{3=Yq3 zq=7g|-tI089jvk*Kn`btM`SUOP5|Q%*-qzy4E7RFUsv{rtbzhef~A@^yg;D^o-U3d z8t0P}B$OHi%@Yz*n3&VV!pzD99z1yR=ouq(ie;Q#9iyXSVos6LqNGPclY%Z8MLbD) z`b1P@>XgusjVD&F%+AQleEs58;>6451|~*khNi~HmC_S4Q*)EE)899^p1XMR=FzKX z?;aNJo-=)W|N8m$4haHcJ0DEAu;D|;i4_?-MTQ#-KXP_@p47Z?s8!cg*H&4$dPX9r zzs*Mj7Y2qD9vKO#gMtD;x2l%7MwFx^mZVxG7o`Fz1|tJQb6o>dT|@H_Lo+J_BP&C5 zZ39Cq1B1)AGajI5$jwj5OsmALVNu(K7@!7okPXH8X(i=}MX3z>rNu@1Ir+(nIr_yJ zKmq-f{A7L4+{E-$-^BFH<ZNAYef`Y5l++5njFQ}(nzC8zfJR7wj0njn%}uhha>-9F z%}vcKv9byPYAR+hT>gKzKAIY^c~({)shQ~+B@C7Z28B((I<Tt=&rB)FU@){WFgU6H zxgDrR63H&#%-qzH%7RpeOppWhi_6mYzc26uDiTLl6arMmU}$1#YG4cm=FL;i<pGrl zAt?#YtO5qCrHPrjQ#0rOBS2YAB-zj)PlmM2oK!1){i4+L%=|pvw4B8BVvu$EzAkz| V>d%dR?}3^aJYD@<);T3K0RRpRoyY(H literal 0 HcmV?d00001 diff --git a/res/flags/ME.png b/res/flags/ME.png new file mode 100644 index 0000000000000000000000000000000000000000..c7fccac3b94fbe72364804274621b675aa5ba849 GIT binary patch literal 1267 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`(dXz$e5NsNnwn`xp9* z&ZeuKO~ZoDB&!}_<2=I3fr3~#jzADt{7jMxh|7$Gm^h9A5f|4XRS_TwVgnIa0lH!) zj-z6HNBOvq>WUmqS3jyF0%D8t!POsO<vbapaNJGyWVqr<e-H^`hbREWp*C`Hohs2h z*P^#8Kx0*f{SJQ+`&5Y*$X=k0Kzq5lPUdTzpKCg&%CoI85=a8sClgf=Ca`fHvy}uI zvZ%|swas%)uic4q?ZaB42sZ#7sVI2NLF#CU*3N#DqeYr~!Zo%!sG=y4=09pJdE8y* z>`as6ZZd}zg${}Hql5_y$fw7gq(Q!8WJl<Qge@dIfer>Tz#{PI0LIZ@1+gw5#aI&L z7tG-B>_!@hljQC0!qCAg>jC6&7I;J!1L*`X{*di-9>`!X@$_|Nf5<8*z$93zX~PQ? zy65TQ7@~1LIYC0HLC`!QAtfm-v6aEBjL%O`V|MFIPL1Pd51(dd`oq-ZbVzAY(w_u5 zeSY%*zZj<=E{-LsDNmn>icFmn8sZq^$yvBy&a7Q+Y62OVuV1`+DJ>x-IlEzp)T=BG z%V6VTZg1^u>1gX}9!qw2^>p!Y^KyQFeICnv`FQ*P4F?uHm=M6TbHj&@6DwZKxUu60 z3(w9YOP)-*vgJ$9nKd~)JLlZl^QY<1qDPZ18MVk<sSkQ8IyLmF>DJP(yd3`z9$LC_ z<<6yB*Y0iR*NmBPX!GXPvw2l*J{~zNz{rsP+4A(FxeR$gpQ@I)MwFx^mZVxG7o`Fz z1|tJQb6o>dT|@H_Lo+J_BP&C5Z39Cq1B1)AGajI5$jwj5OsmALVNu(K7@!7okPXH8 zX(i=}MX3z>rNu@1Ir+(nIr_yJKmq-f{A7L4+{E-$-^BFH<ZNAYef`Y5l++5njFQ}( znzC8zfJR7wj0njn%}uhha>-9F%}vcKv9byPYAR+hT>gKzKAIY^c~({)shQ~+B@D(! z27b!2cYtcdk<5Xr3C~O^$zU)uG3a&Hcmq@-iKN6gGdH!QvLKZq6XZVq;<EJp?+g6U z%<&BYs$wuSu{1R>1_JZuDd#}pDuiTCaAs91gN22ek%g0K)=5wb)kKmF4f142%gjl& q($_CaP0!5F(@o1sOfLpmr|;{k2c!<}m>v(*#Ng@b=d#Wzp$P!G0;oj* literal 0 HcmV?d00001 diff --git a/res/flags/MF.png b/res/flags/MF.png new file mode 100644 index 0000000000000000000000000000000000000000..7f6824e0abccd55368c5c6e7be8fdd65f297f695 GIT binary patch literal 692 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87@Apgfg9 zesWad?tlOOgTTLkpG)iCs+zskv;-=+$84Ynq!>$r{DK)Ap4|Xh%$Vfu?!wT)D(eB{ za29w(76a)7F#eG3bRNiHFY)wsWq-&jD8M9Gs%gUu6jJeYaSV~ToSd*gE<wbF$zk23 zNs~MyqN0wj30*D5=dHJ@ekD6Y)G|-;?d)mJK=rC6t`Q|Ei6yC4$wjF^iowXh&|KHR zRM*fv#L&#jz{twbT-(6V%D~|A?TiN~8glbfGSez?Ygp8FAqJ?y9Ararep*R+Vo@rC zera)$eolUJVvc@s22emhB|ll;GdD3k)i*IcGdWw=TwgykFD11?FQX(kr>1PyI-n5} zAR|IDN^_H}tX%SwOLJ56O028`fSQUK4441kt&gS#Y@U^sM`~tzMhSzNfkD;1y<355 z#F5N_stM0bDal~4G%$Enyy_}Yi6oK|-^|?9lFEWqhD?zA^oz^V_rEXjLo>%W1gMI^ z(8SWzz!(V3o2Q)111b?fGAB5*3K*^?mQGjQ_HzK`G?C;&gFG41GILU`^!1BU(=+q) hbklMY(~Cit>HE6r0jV~LxBWm(44$rjF6*2UngD5Z)SmzV literal 0 HcmV?d00001 diff --git a/res/flags/MG.png b/res/flags/MG.png new file mode 100644 index 0000000000000000000000000000000000000000..55bc89850a8c5837188c277565cc46898873a848 GIT binary patch literal 759 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l<*Gl32_C|_wV2T|NsBL zUEBWH8UL|00wN&y|E_KSZH@oi7y;46V>{~O%<E#!>f+26U)sq~Z_Q9|1w>0P?qmeA z>#RVCfx%)y@D?D&SQ6wH%;50sMjD8d<n8Xl(7`I}0pxHNctjQh=>#zTknMCH$Y3w= z^mS!_$SNqnBv`6x!wVF0@N{tu(Kw%+AmP&>D9&)w(2>EITU**lVoA{(nK?0cPB28u z^Xtpo8#zo977!6~V>?l#v?%G(iG&L$A9n6P$jrc7%2#)F=`CQuFsPQeMwFx^mZVxG z7o`Fz1|tJQb6o>dT|@H_Lo+J_BP&C5Z39Cq1B1)AGajI5$jwj5OsmALVNu(K7@!7o zkPXH8X(i=}MX3z>rNu@1Ir+(nIr_yJKmq-f{A7L4+{E-$-^BFH<ZNAYef`Y5l++5n zjFQ}(nzC8zfJR7wj0njn%}uhha>-9F%}vcKv9byPYAR+hT>gKzKAIY^c~({)shQ~+ zB@AW;237a=ZUw3lM=}ShCOk8xB!j`yz~E8ws;fXHl1NH?Gjmf*DhpB>GC}UsFD^^p z|GvNv%^cqlpehDK6H8MAV<0eZo^mb^s6+tCoZ!r=R0d-cL#L(6L8(AFO(eO{AWw$0 t%$!s!ef^@;^vwJ`-L#y<^kR@@`o8XZKx%iz5qqE}22WQ%mvv4FO#o=W?%V(X literal 0 HcmV?d00001 diff --git a/res/flags/MH.png b/res/flags/MH.png new file mode 100644 index 0000000000000000000000000000000000000000..4484977945aae1b1882294128dde4780d1bb9d11 GIT binary patch literal 1381 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i1|)m0d<g|oEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8ZKG?d}4kf#9d}?s_1_ zS>O>_45Sml_(QhSc_4$m#M9T6{UNKM0Fz*;rVTFx12eCui(`n#@wZd%<_D)r9H@V9 znfv@!(6@_kbKFwa81I^TP2Z{KAfsDir=O3RV-iOvXMO8OFX8_T`a3>wt=}_I`><%C zK*9xyn8#{woUiqlwr=X*wp{-CmoH!T#F;cD2X3Dsp!aQe&F4Mu-`CFjUKw{Iu|1u2 zqKC?p%ae98e4G0(^Y9`i7NO2R_SYwHakO{XpPeE0_|0|kS(|ztFNl2zFwH#^#eC$O zs*_2@(fvneh$X97xUOIR!D93N08z*M3&&UMvqoO`eW!9wbJ|*6Z;_>r72%T#--;c# zew^`6Xa!eRb;mKbnJx4D<mcC0oVamOfd4bwbNzD#FVna#Z~1TOymEn-*+qvY|1Gok zT$fvZI(fm5TOYsFw%8k;D_(dwh08B^8HZ!^g4P!f>gsL3JNZ}&WlqY^RNB1KrgKeS z;AV5r7_Yh4%kMv4Qr294yH5GV+Qnt<nX)oR#sAHi_I&YzZ6=SoPcAz%anh#5iP7sP zott{&{(Z-dNfXaajnJNT<y9}QP=D6Pv<GtPyVn;ld8~J^FSg=a@1yRX$Fde(A4-)Q z-(*c)xl?8GWqu3uOP_c2OnYiDU$5Zb@l3I4TsCK<V`lkm3^FK?;S5^ny0*~3;JoHr zw!?QdcYSNgkp0E<|DW)RTLPxHkH&2Cc=Jlf{{A_E-?r{XtAmYm&-M2FdwZ5;O0Sjh ze!a~zu3pp@(`FTZ$q^Mgc{|hQIj{B}eYiJu%fam*UH2c_`(0qy=GpN<mFr^XJv;T5 z=VNQ=yY-<H%a~gjTpP5^%9S1VzMF6^bVE*Oc!=ed!uHFx#xk70Usk^5QToETI*EUB zx0Uep=R4%$)68Zrk672JJiDEnan+`k)8|bv&3~|wTZa2wahk^I4~=zu^y@v3$v$j% zncMl^=t$ZlmG`f&oT(~4uY7Pn|I*hJk4)UMv-Dnl;>`2+HgLErJ&8L1>F=a|ZSk;< z^RZ74Mm_EPq>;le?$E#el(qge3$e0?Z*2~2y{flwXT;;YBF4Qbf6^<rss8@5V0O~t z{`}=OXVQ7koJuM_C7SB}^rn{o*X#Fz>9XCPQP{$M${X`kP?l0Hag8WRNi0dVN-jzT zQVd20hUU5krn-jaA%<pF21Ztf=Gq2^Rt5%_Z)ZF}(U6;;l9^VCTf?HZ3o$?q<{%r2 z^V3So6N^$A^h=A2^mFo)6La*7Gk^m6Df!9zp1FzXslJKnnaSC@=KA`Xc`2zCdKo3T zIW=Xo)&Y%>02vXIQJR}%W#y8eT$-DjS7K!q0Mt~>V7UDMZhbU0VDqf3JW?~$GfEhY z4Gd~T>*IiG#F5N_stM0bDal|kH8)tIakLDmL=s7fZ)R?4No7GQLng?5`o(4G``;J% zp_$_w0#wCdXkuw<U<?H2%~Q_h0hI_KnG>8@mC9gYX5q9TWtTHhP7_HkG{}=7Ei)(8 qN?*SyH9a#wPd6<mF})aMnZB=w9+0xs2!03D#Ng@b=d#Wzp$Py9Q#_^s literal 0 HcmV?d00001 diff --git a/res/flags/MK.png b/res/flags/MK.png new file mode 100644 index 0000000000000000000000000000000000000000..ef8d2e55eee9d16dc7828f76e1ee7488326d3a02 GIT binary patch literal 1282 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i1|)m0d<g|oEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8ZKG?d}4kf#9d}?s_1_ zS>O>_45Sml_(QhSc_4$m#M9T6{UNKM0Fz*;rVTFx1Jg=R7sn8f<8QBcXT+q6uz$F} z=Thg%CB`S0G%@o!u2>tw6242LNkggWYN(^QqqpGh0P{<w(+~FU2sk44*2!_#2S(SH zMcm?Clcpvmn=>B`xm}rJG<oCWGjn~!@B2KTs29_jz!!6F?|s|#|9{T^yivXSQ~bn; zjS+ADMxUIt;q#+Se>{!+l^lOEd%YLB+UaW{axd+l%GJ*~drbeWZ+{}wy?%1NXspz9 z&H3v8G7VL-{~cHxf5PVAA+Dd{H_GkJ!!p<QvuDRTTECe0F=-ip@q0<5{?FI_L-a2E zm^PPfCZo|I$G6_w_9wr~6pMTIpq(-CZE;oLhU{2Ht*?{$c6dyxRaCf@xuLM_m-%k% z$uhalJa?_Gc3;t-T-$fY+sEGLrR}Zjnc|uMButjPOa5r`a&gGHz~5aN#z$r?QQ+Jt zviIDEP?q*jtlRV^*3M(j-}Ez5W7${Zk37b#Me09(Ynk6)7%Z3nQz25v)To#HzJB+r zg|>m6D||v0?)EJ2o|`*~-NWADpXsuGw!YKvFaPR&q4qIS=(pz+54{OzCda(7{~Xfy zm0jg?&i<ab849_(e0OaXSh3mhb@(E!mxnvpW#^~9)4aq#NvowvC{oCH2G?ZUj_8%& zZ{OIFA`_`ubDuXd+g2faZF}O1^?`p=m~Q^zSY>B){8#QByDfXVH#aW%)VR5}y=~6h z`nI*}J<sr3uC6saH<R;R+Iq30l6=QkI2yUvwKhMW5yi!PA%;8S5<lzR81Co6-Us#e z3;l6>+;dD``tLzrgBzPG(!S60)iwT{apA4~%b4f=n-ANbp1a`F#k=2i>Yl4Qf3xtG z4~|$`+?>7q#vThFmY2$n?O!HNR9c)+{x;-;_L??}n~xRW-I#aQ=9&E6-i>ue!H)iV zZ`YRA)hAb&-}`*xL*Aav>EBZP|CJX>iy2Dut!U9K0H$Nr64!{5l*E!$tK_0oAjM#0 zU}&yuV5)0q9%5)_Wng4wXs&HwXk}n<`F6$w6b-rgDVb@NxHT+lyAT7^U=FgOI6tkV zJh3R1LBF)PNIxe(IWb4SI0Go4pOT-f@0pvJp6Z*Jo|&AjYp$=KnU|7Up_fsTn^RLZ zYaP%C36K#X8Kt>NR#q<g$)&lec_mg>0YFW~42H}9@770C12)gf$|E&1J)?xd+`yn( z=6Vx$HQ|{lB^eBcCI$uvY`Go-)kq@Q<(rwCT2fh%%8&_ipnh>#`u_I?en3Uy$cjRM zs(>a~ni?1bfqC<kb9q1|0!T`NGpkY=j4jNZ9#_~N1IlS4$%O`aGNfhZq+03g7p10W j=I80A<s_yTgDlhc_0|JYbsd^^Kurvuu6{1-oD!M<PD%lp literal 0 HcmV?d00001 diff --git a/res/flags/ML.png b/res/flags/ML.png new file mode 100644 index 0000000000000000000000000000000000000000..b8c5737f3dc5e26958703a6d87edf261890fea26 GIT binary patch literal 699 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`YL6XFV_@87>Kveimp zt99Cb-QO3*{=m@%v3sEkXZh652?C8{U=~Yf0#b}6L4Lsu4$p3YtY=K}c6VXuV3qX% zaySb-B8!1^0vLbDb~+Dau$OrHy0SlH6%=3+EY-B(1q!Kpx;TbNTux3{AeSKG!sM`S z(xgeA5tT>R*ruP8k(m|~@;`{5fnnjKkUy_BTOI&uC~=J_Nl7e8wMs5Z1yT$~28QOk z2Bx}(<{^e=Rt82^hUVG^hE@g!mv3i0K+%w!pOTqYiCe>>whJ*p4dx&liu2P-$`gxH z8T3nwi}Z8ylM{3Fi!*=%`YHLz`kuLo>8ZYn>6yvdy5{=&nRzLx6?z#Zxj8juv(^EP zkN_DGl2MwQWM$=&pIn-onpa|F6#&#!%wV|u|89LWHDL3stUOXP(=$pKj13HGMC;># zYQ&MufvO45Oex7=Fflcle&_6Apb|+WCBB)tsU?*KsSKGQ_vsgxrSE@V;D=_8ZwOEo zgQ1C~sev&Nm^V*3mj_fLfMiZ^W)(18Ei9alx|iz$<usAxLW4XR(lT>Wt@QPaQqwc@ j^K{d464Q%8mg)QY=mDuSE57OhH8FU)`njxgN@xNAe+JdK literal 0 HcmV?d00001 diff --git a/res/flags/MM.png b/res/flags/MM.png new file mode 100644 index 0000000000000000000000000000000000000000..afac4940594282bd1e76fac31730b38c3f346fc8 GIT binary patch literal 1288 zcmZ`%e@q*76#qgC3=E{*Kdmz+a~Wep%H6d<+bhc`E1{jVE2V6Jn6+!K?QJcs?G-na zSP>Bu<7S*2GO}Neb>d|F7zEi2Gnxoifdx(GFac!UX2;y7lLS=iJD5o&dimVvz4v*a z_r7<zdrPk?PEA>tf)Gm8s8t4tPqFtJ4)9<K*A9VeS8A0Absu`-Pjdp)>n&=77NNRL z2n8AuS_CO@2O&R>P{f1~*@BS3(>7R|k5F8PzQkArhN-Ekr4afr#4n8tmO}B-5MnXL zkKS%(IfQNvC$2*HE6)Azw?!9bfgxYjE$I^hw0)wT{rJv)OxK@X(wEgS`F=DS1%@0H z(4h++aEf~*E3kY?U7YD23||=t58j@?1Aqid5TUi=$?1`-fV?EHAFZE#Gz)8iAqNFo zl3o_#UJ2eq7>A4#zf1riff7V$?KqtS(43a&gZblkzm5L21PnPSpnoTqvB=AtblCow zf3!F<`s>SY07DK6=yx;ZEYfAaHyxfo8Jtt>h-}OSh8z^op&Qw}j7-J7;_`@SYh;s* zRe(iXStV2P*Z^Y2a%;u^PYIu?wqf@)ggC~aD?<ghuG`pR?{mc})SU3N8j56(y3z;H zw0u9<UpNLy5~I-;CCw!8dGUPzmi$zZ9%xib<K{7oNmvr#3(yE*PCD=XChLN8PIgl! z`*c9A4<9fEjvd-lz#HX+lH*?MYChjG(0KO9rMEA%U1`{$UXvB%a=*^(*cVyXT6KdQ ztXoWMTK`N}8=ogU-qQNP^A-ClD<`kt_(2h9yy|_YVEX3VPmy!&;m-E(%+KL_+_mwc zg+Soq$yW<b9X+~B?@>F172GUAS|b15(rZ;jRriYzlX-Dn)f<Ex(}QQvwcD*WDnrS= z>Xn-gA3wH7Utz2^RP9RRqfmK3NtOGxt{3XJTgoIVr0Hz$`{c6^&-8wLIhe3Ljf1ak z9{QYvK4Oet*cC)6yn8xRRKZxy3`JVJ6a*y338@Ir6%kS+kw@ZUl8`=&6C{pLOgg6j zHQ;hvY1_g7A2`!AUJV0M_5`2X#=K<qQV8?=yqME%F*`Az0|d<KwqP2U*-mNAcG|LE zB*ieg#!4N?b}%mIE48hiutLbLFgpCMy(Fn}Tl_Anh9OBk4EYcdj9$jT^JI)?c^^rt zDcbH}5Fy6#YYQFh9}&Cgv1vDLWgLi*;rK|#Z*Q(zq@`UHbI?N}ntejdS8E@-@6mxt z5ObQ=2rfkA$a8TCT+-K%jMjjK7h@@->nN0$OBBAhZP*08Eit`vg9h1XCq-hIm$K9D g8j;Ouw)@z_Fs(Kl!o%SoPrwk;6zNo*g{FqT0T)OHLI3~& literal 0 HcmV?d00001 diff --git a/res/flags/MN.png b/res/flags/MN.png new file mode 100644 index 0000000000000000000000000000000000000000..6e3de3381b1ba7b00115b5db3ac3e39a0e63cab4 GIT binary patch literal 1089 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`$r4;1l8sRB-?P{Uhr7 zP^1QB99GwNb1Gs8n#mYA9VDfuf80ptw2dZQ<zZEW3x2A%a%A8lKs7hBWS{hk9MjW9 zn5L=!xI^^aYMxWpT0kv8V}Z(m3eLKy-^!MK*eHJ9Q|+X=_F;7cpzJw!wbzUJZs*I~ zEth&aQTR@=^dX=YRRf@!cWbyGwun8b7k@EZ04NI=f4`pl<s5<63;Euz;<;Of5C^Ki zS1I|ZUG(K#ez^K`Zt5@R@!u(tx?dylq)!BB5zri<Q;+HBowCvby6U)r?g>-v6UI6~ z_aM9g3=<dvx*r%~w&i?4l7X=#$S;_|;n|He5GTpo-G!lpRn`N@;VkfoEC$jEVEiH5 z={%6ZUgGKN%Kng5P=HCWRMUnRC^Xm8#W6(Vd~$+>QiGs*LPAPXQd(ka^798z9<ed% z`SHoA88Dpw_~|1zN78g*Au&Nw;p2Mhikhmr%H5%UesPY0o{_Giv**m()wXQfwmv;G zOWRszXXRw!;GCkgXJXUBu9<DS@#M`LS(&+WVq-R*+_|&5qN?)ukEF?;Kl5|&aPe^- zRTCGJ6O<H{74G)c)3Z}F)U;F;oh>u3LPCjwLHD=Rfz!^{uK*pYTH+c}l9E`GYL#4+ z3Zxi}3=GY64NP?n%|i^$tPG5-49&F-46O_dF5k|0fTAHcKP5A*61Rp$Z5LvI8q7g9 z6z8XvlqVLYGU%5U7wPBZCnx6U7iRzk^i%Sa^*wVF(^GvD(=(H^b<OqlGxJhXEA%o- za&v0RW~~DnAptTXB%?Gp$;!$lKe;qFHLt|VDgdadn89%Q|J|UdlSEPjHqXk+BQ-NU zqlCf8#K7SA!AcP{gP@ASGgC@37)&e-4F3IO-il_BZ)R?4No7GQLng?D`o(4G``;J% z0TqcO+2$JpRK;LuVrgn%3<T!QQ_kf9l?Wm!3C^qnsxUAzcG{NfoePxIM3M{*@?=QM s%t^J<*Dp#<&&<!$P0LA4F9zAB@9U=rq_$-&16j)8>FVdQ&MBb@05q^{Pyhe` literal 0 HcmV?d00001 diff --git a/res/flags/MO.png b/res/flags/MO.png new file mode 100644 index 0000000000000000000000000000000000000000..02118edf4b9638a83048a888c37fcc396ae79855 GIT binary patch literal 1203 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`)oO;1l8sRB-?PeTIrS zT!^tEj-xsTNTMlVu8b9|ixjSp$eCvcB!O(82(lXPnrN#YU*6g{^9jj7(yG@NC<0d? z-Vkoo>Car1kiKsIfqOTBB#;dh0g6M^uvJCNwI+$T<SxH({Qv*|%Pt%TvVkH%agc)Y zSf#F#Ij0Y<zI5uygIhoZWB|E9L7)^6srHnedVKHizkfe||9<)TBaj5Lfg(V0hyuaJ z%&ZLym!3a1=hT6`O-q0zkPQ?8ih~qX#IaQ;Sx#%pT)!ZD!@~Ggvw$R!4HN;2!+imC zvsPba;_BH|J5~cpAR8zGmxZ_!NU}f#!N#J<B8Msi!`vg2j|1a_u_VYZn8D%MjWiG^ z$=lt9p@UV{1IXbl@Q5r1(g|SvA=~LZkilN!>Fdh=kX2BCNw8GYh8HNb%hSa%MB{vN zf`m_lpg6-x!$kHKMQ3!@<h+S^YGJW+M`gv&AFKvXSz23MU5*}6Rav^k@JUL_(<h=L zQ>TQ6Ts3%d#nfc$meP{1UwC;8pY-(j`kXzZtFv}ZuECR>w{K)+&d!|^8*|s-$sJpp zy?bhF{{CTRGJMk1<m`0#kh0R^Mac$Fk{&-27MeUMIOy^v!zV^Yn>Q5~eg4GF)opNi z>5e5^*6dldX_ZuT#kDKfu9};eCGuzMd~8tv$Hos#=~t91^z_#11AU=d;u=wsl30>z zm0Xkxq!^4049#^7Omz*-Lk!KV42-M{&9w~-tqcq<-_Ce|q9HdwB{QuOw}wS+7h-@K z%t1C3=ckpFCl;kL=$953>F4ApC+6rEX8;BCQ}UDbJ#!P&Q+*TDGn2D*&Gq#&^HNeP z^fF3vb85<Ftpge%0Wu;aqck_k%E~1_ximL5uf)nK0H~>$!EpKi-5`%3s{xy5W#y5Y znVwO?U}9n*YqsV-P>nc}IZ!p>nJFb13}$8q`%As@fJ!8hl=x=mrj}F|q%vfJ+^1h$ zmcIXefghSVz9B$W42C9_rUu49VBS3C9LO9&By)l@t5O+EjZDp)Cf+&z3@E9IBpDjy w$&i+rlWL`}UzD1jnV+YdmXnxX46;q%*Iy4vb#wIp18QRMboFyt=akR{0R6DB%>V!Z literal 0 HcmV?d00001 diff --git a/res/flags/MP.png b/res/flags/MP.png new file mode 100644 index 0000000000000000000000000000000000000000..a85be51b1bcd485f626870dd3f5ef482279b182a GIT binary patch literal 1445 zcmZ{ic~BEq9LFD^RcY~PJB60oA{7dwup1OsR#8E=kU}CyJgW{dEJ=`%CE0KUh(SWa zB}cgwL=mINeZ@eM4VNgMfZBRgE%cw-T01(O>DYEULtmt$=(Icg_Pg)*KEGprzgG~& z4Rdn*$PobG#10RQf$C~o3mxFs>^M&dWu7pY6AVCi>Dzzv=fl05AUuWxfYK8HwFZE{ zph^7`016a<$8iAQM*wi9j+vu30AL>!70DwYFf}y=Qka*ooy_8<>|v|hqq91=x-KtO zuf2=`)GNS7QjCjYATjqycNzcsne3w#nGL0h<{DC2Rpp}We+{OXm8zi%^{LBMqL%i` ztlHCLL48tLLv!2F@y5iOlgHoB7<|b)$gG9>&hEoPx>mm=)v`OQs_tlAL|XMb3PxDd z(p96Rs)y}nOQo0<*^IG4BUGg?kTW3J9DPWCb8-S#o(59OLYfifX--t@T{B+<r<iqF z)}iujUQv^~%Az&g8kl_W$MffgtM}F2H(ZtGt-1ztgDR-dI$Mcfn#pj|991!Bmtxs* z?8?v2exI3{nf~Rsh^jF_S)#u-ch)vynX^5yewyB<snjZ)FTuRdnFBYbA3y!|$>_aD zPN@vEQ2LRa{31_<X|}zK<ozinWv1a#kDS2(owc*aSY27w+H3O4v3hHUdYOUpX2X(H z>%X(0n4kj2YBn4@H@YRSCp)*Wq_Bumm#o*CTC8KkLza-z5m?Ww!KE<lVq;(L*}k4u zowlI3uvnL0WbW%S8QUYvV70HvS(iYaS#h{lldC;kSggv)ODsNtYTjgELl#oTb#y(E zR<}y7x1-E2hXrqr2U@3tVn@etW5MPh?<Uwb`y;|aLH_*Z;c&Bv3g0D%8uwy7I}kDf ze-_Ye4zb{e`OB8tFH?ALaDt{k*`dKauL(h%i@SOm78e(9?~w4p_JGvIT;JqR_H9(< zFOB4Gjtbuy%8T3+67%KmFSaixxch>m*}I5soV{COBfbiACb(Oth9)oF9sTCogOQt8 zzI%%pzdio_@Qus&E_{3a;rUxvU5W9rI}@ASP_K0>*RI~+?&nDO;+_G%8&|Nr13mnG zf<AkX@Lje3a|{`5=sMf4H?%SKL`P4H`HZn+;AD5R>GZkw<wVD+-d0OfU+2M*QFcXB zWWClM%f5JRSMQ^1_1MAT5u&JOHBm0uZOpoGWn1f=w!M9-^A|a1`4>kG8CP#h?x#I@ za4vIVpJ)Ha$J1Th0eHA4EH7ZwIP3xNpoyJyJf9|UfsBL#{7@F=gZlfhFdi!aNBwXX zwhCq8D0=I@X!<n=i8NlEkn#TxjoQgQ&;he$kV_NjG`@@kh(azylB5ED5+WBt0}?M4 zAZ!U=NOJf>vEYCYh9KhPcrx8rL`#ygQfoV42p3xjo=73tkK>_IfkHwi(>NXlo#cSk zG-E;DU|z(-@o-Ws6w$yRMbnQsJo#^Chd7=V0Tzm)V{02XLFU6bxj148NoP<b5Zekw z<f+2JrxX`L&T}CiqyTGepg+0>K3Hz$crrxZorA=Rl_Xe$1qNavi(@&{@YH+G>9!a) qNDwEHID*JXp;(&ilaRz0%5CWoPLwYcaerw$bOLOG8`=>PcjzCu(MIS1 literal 0 HcmV?d00001 diff --git a/res/flags/MQ.png b/res/flags/MQ.png new file mode 100644 index 0000000000000000000000000000000000000000..92eb07275d01c00030526e617c7ac4c9c2e41346 GIT binary patch literal 1744 zcmZ`(2~bm46n*Y2r7hE$YTa-_MJfFMwKQX@mL(}+32UfQokC20mO@C(Pejlvu4NO7 zfH1PkPT9hu0t$+NR+L4kN+q4BgO&oyV%<BYH+;&VGtIpJmV3`R@7-k*<>ldQX0p%( zA!O#lVfnzi$nY7>g1O#gwiuS#Vh64RLY48R|M2I)d6|IY!$l~3H9`?b5PA)!hyjGu zI6{Mg2r*L;ny*N&_uhoi%-3G-JT?GyI^A-|IC@xdPWZ`-#XnYV*`Be?!C-{Bpt@VH z*Ta5=Q@ovTD!EUyLsj~@TOtiu=@h@-J4LuxlT*<d9(Uft;W#a|#yP=$N9KVOjYVgA zID(v|_LFw-F8w-otD?C0Y>#+<m5qB6tuvt?7n9zSoPUig$y>>ar*&vAPgay!+HvWc z&R<yqQedR*a2>ov6;-RbaHq8P7Uq#Wr3SGCgqGjc4PUtO2i&DNb`}J|3*pe14c;km zm-hbS^7`ASD>}d7pSCb4ABWkJ{j=luSw~ZvQVQEri>?P9tfB4s)i=RwxYRxAJ7o#b z>ERTR1wnxbJ+jI=vdcRPYq|?+y0gnCjlb)LX)jnZ%Q|v2U67gF$}SoJ8J_ZjF~92O z6md!xHejEk(5c2fPlg;mb3C&Zf~DVPm>~pKJiO{q(#5E>=C8J;!Sm=0TX7N~`FWLH zP-TG8Ie{5Mw&f=8PiV*}ZQtylPP@Pk1GuhaE(Dd7_p9?xI!lxJr|F?F^-!IN#Kv{5 ziOc@$CBo}uY({JK#opTHK4>ZsgtSjp$5UDWvD7v9L74bN)xc%#mI$f7tsSgx>@BOi z6`j@$EeDyWSrA2fN&Bt7L8u_e`h^tJO|`-)4w}tPlm{i2A2|b2)32gg&`6M?fY353 zvQ`kTff&IKZNFjpODkArsC+zpk^Q4yk>Rk@&6$NF=PcpC!C1lZr(g}7_(p>qJ7F_V z<-%ppyFbVL<C*5_wVTX<BXwap@T@uofeYLt%;%$P1W~Q2s-zUkT~9~H6;H=ZjZBPV zaKfRV)!MSkGCz;Jq^weon?$>|t@GOGXQwvf+Q^n@(#ta&51vk_H0E{uc0+r)yY23k zPp!n_k$VIE!w&}MCQvU%{~mun_U!3LM*U_Vn0#n#W*Q$EtDJY8eYNFE>l(||s|xeR z3kveZLJ|3A|0DL{hvTLuG0|?W*W0Yug;|&U67<8+;G%_T<4wv7MqRNj#|DC=vY?TH z;lU>}28aH7Jd}m+>h9kc**LJ)w~(7fP`8IS+P`^pBZG0E=`uSeclq-=%)dVPRdjO6 zw-qz$srI|-Ax5yaCd{-Y!+rZXnXZz$^JMehgKzuJ=`S@o{S?1=^W0}|#y(l&nX!d> zt_{o99*s${4X6u${MxKY+rItWh_)eA-{h37&AsZGxn=L$2M?`_v_lNJu0cOK)+5f= zrc~$}^)Fuyy|9Q}ocVGQ{ACd-QFHH*lqJ+*m5RMhCFH9}ra(!;g4W{%!v?prAs9U3 zOD4XaNieK&f{EijeUf|c5M*+pR226Agq&ktJAlA2+(5}is!+a?M3|aVV!?6&KNzDV zV8DcO0p=p(i%BkDEENRVFfdFSA|&_NN>sAoeY;PUgTw-Z1W%%t?PM}pa)DY#hNzfK zFCbBfDAb?F-os4jF_|1vDwe2_9ggowoiz-Y`O|bJF<YfVl>{;D@Z?j}DS&)74Z@Ym zNL84EL{h{1Flx8>;)ufIJsmC&P>A?qqaD5hevHFO9U%ZQpQht04F?2+K{#4C_cVZW w?KG#Kj|&n>gGnZaDM_(Z9%3U3=8GxAZ5Y?v78YJ_!4e=L7q$nh+%fRbzpgUwlmGw# literal 0 HcmV?d00001 diff --git a/res/flags/MR.png b/res/flags/MR.png new file mode 100644 index 0000000000000000000000000000000000000000..95a527265291cf1d08ad3885ffc4844b8368a025 GIT binary patch literal 1235 zcmbVHZ%h++7=A%27Q}%6_|s@`0SYv5cNFM2_+Uvp+UX&yHS-T2dbHQ;*_M{xRVkQA z6#vZ+bH=EkCV+|#6Cx(tw5ZEsP*0<7S(Z34Lye+h%vkotsmb<UI}MWP2QR;S-uL%B z&-=W0yBg~2(o%9#03gk3G1;(cly}w)#Ar$qk0psWGDd)*uTx*MD!k`9Ej9+AtpK2- z6W}FM9ZvwlB*26NfIbM289W^Qq6Q%0Si^F=84Y7&W6-4kxU<kpe0Wgpri|?cT}S34 zVn5A1o2L?;%4(IXY}4MH7e6H+Vvh{+sK)&@5$#+dwuseNN3@OGmLLMF3?h%JVq?o! zZT*DVoCl8b_&750aAcT{JXDdvDV<n+x<9>CDps5^MnOk8GRUJEPsWhQH=1A0sD<5& zwJo|VZz&@7$VB#Nl#OqWnxk6xXzrbzIUZHr{UI3<dt{J*>xnmoEjo5bE=q{lPg9k> z_(|~-`#Z$|aHZjDK9&T@R=*OKj^B1Gm!@TPCfKQ3WWkF%Xjvm-b;RCDZ|yB?k|ir+ zPQI_oNKecN7uBR8b;)Wn+6!+v9a+meGBQD?jG#}|X;SAU=3XBXgQ1qcC(DK=d$0eM zIx9uJd*@fXmRUZx9+l;**JNE`anY%h1K)akWMRGV?8(GaO;%3!p@V&LSJ%4LYuAk4 zzVmzar*yAeHGDRDuD!J_^6JIQe~!wkq?xK6o!ht7nLaaL>5)e+k7)A>@=qM=KhC@Q zWR83MaQso`{Dlh+?Azb_>caWHGXv57?*}jTX6PHcyVtE9y;DsOpYF`2dn|KSyiQvT z@Vs5?wM;y3#NWx6%&R3AD{-_l#9@Ilk}{N#6(y9xPF2!m8BG~<Bt?_tucMxO?+o|@ zF2Nmn|3KgNpOp;;WrG-SOB>k`2Siv55x#(v^%0^63Bna{5>`LUa}3K1PH%~UAcSTY z*IMe4{Ju>ax(6{LONp?1!u}?jHU*qvKi4eLbOR2FK%Mw^n3(2?<<Yc-6L^mVl_c5r z$A$0ElQ|{lf6teKOY%S!Nj?w<enU(46bmExIVlq4Kv2Gq5I68Y{u!*Fmc!W51yp%e z1*yl!uyx<fX0)VF$yq71aZp)ds2$+~<ERx)(N@{4;1+xwO%NfD7Xr;CZXe5w$})nn Vm13FKdiMqnfz@1Z8mx6}`45UoeAxg1 literal 0 HcmV?d00001 diff --git a/res/flags/MS.png b/res/flags/MS.png new file mode 100644 index 0000000000000000000000000000000000000000..a811c5bd0f8c9644a91ce6169444de10aa9fa5d8 GIT binary patch literal 1534 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`#@=;1l8sRB-?P{o@t= zch~G{=-eh_*UP5cyegyPrc;Pd)Jz7odIzVrb@_b{=B!N2Uc{hO!=O@Y<kr`eI_c_^ zrAJmDDCpe1y=>wQr_kD(RXwTwH)pNdyZUfc@ftzX4hH2~pkiETeP+kToURKM-Op<~ zU(8&5JE`c3zVm~+9w7JWlm+|BCv3=Qk8p2-7{aJp%cfb+uHC?<-3UbNS`EzVbwHDE z*#};?4Y+0-c*8OHmaYF)UB`<uMz`z&ZrTN0xADJb7kI}$AlE3JL8T684wpf*Oyx4+ z+C}0iZQ{k##amX3`Az`(C@f)4P4mWU2QIu_xoLmjvh%eQuiFJ4*>dvX!Lu*sEL+&L zBq?)&rc*D-CCatj#x49)wz5uKW|EYoS6s}zaF=N0bf6*49a~P#+q|b{YNB7eoK5%I ztj;@5At8x#O@n66owEJ%jFk(sdi5+C5r$0K%(C==UUixIw0hRXdqpFr0S&2$>yPtj zk~D4xI+$6rG1RR&$2e2nzMDaznpLaOF=k#>(LzfLkY7M9F=^qQvW;u;PKTNlk<Mhs zCHo*QVNk4rD1e4MC>Fq4AaS8s4U&bhm1}too7@X4<BG%FVzng8^gYXS)P0&6lt2nt zG#c_f{8l@%Wdv~BWlBx<(oiz3gz8nUl{T&|_6g_@)U1m0vT-VARI7)Y2{c)`78pSa z=5@mQKtWJ6p&+p1p&|?neM0}MfJu<CB*-tA!Qt7BG!Q4r+uensgH_f8$l)yTh%5%u z31Ivo+vz-z!CvC&>&pI+RZxIQuvF8A7pO<T)5S4F<9u?0gi?c`c|t-;Qd(ka^798z z9zA>b^s%@D!-6>rCT!?fF=I!|k||qy*38+{v}n?%u2r+FBK(|#y`$a3{qG;RaN@?1 zD`)N;x^(K+v1@!f>F*!Bc=G1at7q>XzI^)j@$2XE0umxJLR{0hx%)eMy81eMyZt?U zy!<?Uz0aRGbLt%9>8H=0ii?PePM<PuYIsOk==Cetu9};enKnO-in@Kv+G_W%>Z;$r z)P3fdRGzw$c{%;e9M);GZPVZF`N=J&7qutl<))|FVe6vyroG+uRoblSDNDeCWoM(e z<=x(w{9I3`X!rLwcenpPaL~DZ;|W>Isy9D6ColJ#e^5!i;M<*_+~WGNVh7aPh2~W} zO6*`@(0dwp&wTZ|FTmhZEpd$~Nl7e8wMs5Z1yT$~28QOk2Bx}(<{^e=Rt82^hUVG^ zhE@g!mv3i0K+%w!pOTqYiCe>>whJ*p4dx&liu2P-$`gxH8T3nwi}Z8ylM{3Fi!*=% z`YHLz`kuLo>8ZYn>6yvdy5{=&nRzLx6?z#Zxj8juv(^EPkN_DGl2MwQWM$=&pIn-o znpa|F6#&#!%wV|u|89LWHDL3stUOXP(=$pK%nS^w?(N-*T}^mqN=XKTp^<^Xkqu>m zKsAy`cKK%Jrj}F|q%vfJ9H?JhmcIXefgezjII^M;pehDK6H8MAV<0eZo^mb^s6+@! zNpNNrP=%4Xg^`oEVAn06tR|9dXpkpET4qkFmA-yaYI<gVo^D!BVtO&iI(^?@Js_ng S@wFDHiNVv=&t;ucLK6UHF)<ea literal 0 HcmV?d00001 diff --git a/res/flags/MT.png b/res/flags/MT.png new file mode 100644 index 0000000000000000000000000000000000000000..857672bf3afc3002825f9235777dd079a0f3eaf8 GIT binary patch literal 826 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lqd@D32_C|_wV2T|NsBL z-@jj9yZQa?J0Sac*VJ=@8s|l{|Ni>*<;BZ0d-guPa_!Ie@Bjb(1FAW<ci*bT3-)i` z^x))~zdwKe{P6MBtviRdZoPT()Yn(9|NZ^@@8_>4XD@tx@d{`Z5d8b|2dELk23pr! z5x@te7)yfuf*Bm1-ADs*lDyqr7&=&GJ%Aj}0*}aIAe{ilAF`d!0~zckp1!W^4_O5T zm;_5TZFqq~QJyZ2AsXkC6C`{Z1jQLn8X9iiU}U(_kde`vU0tT(>5d(h6+eH>+;EDM zgNw7fBWb#@@bn2&CLPl|uA;1c{D?|_te<0GXD8=wyVL~>xcDs9SR|$uRXoc7z`(F% z6Bl#l-g6y5TU1M2BT7;dOH!?pi&B9UgOP!uxvqh!uAzB|p_!F|k(Hsjwt=CQfx+e5 z84pl2<mRVjrd8tBu&C`q3{ZnP$cEzlw370~qErU`(&8fhoc!d(9R1=9pn!f#ezLx2 zZen_>Z(@38a<;CyzJ6w2N@|5(MoDf?P1&q<KqDkTMucRP<|bKLx#TC8=BDPASXl)C zH5D@$F8{w<A59I|JS!`Y)XemZ5(YB^gQ|Obw*u9OBbftL6P}q;lEGkUVDPAT)m5Mp zNhBq{nYpPYl?AB`nIQM+7nh~)e_!B-W{z(NP!)rriKVH5F%XzHPdS$dR3e0APH<)w zFkFo+jV+woA9UydWi^pxLxVgS(lT>Wt@QPaQqwc@^K{d464Q%8*6I6(=mDuY7Mi(0 OO$?r{elF{r5}E+#k2K@} literal 0 HcmV?d00001 diff --git a/res/flags/MU.png b/res/flags/MU.png new file mode 100644 index 0000000000000000000000000000000000000000..8f6abb733166bd058d21083d1cf361d504347fb7 GIT binary patch literal 759 zcmZ`#T}TvB6h2NPk|FGdpc&Q(B}(kh9sfozKDg^{&XBX{x}uQ}JI>C|4$kZ>Gqajj zXg@?fNH0A^^k7j$J}gA^l12L{1R0nh^t0JRlpysMNnm%ShfV0hx!*nKeBXBt_xeDj zud1@H5&)`1ArvKexES<4a?fsmOA?^9fD{0DeB;1xxt!#TB19#CnMQ!QD*)T1H1`!C zivTv`0QeR_P3F$C!EVw(1O2fu!9t<1+0?bw)R}7(jxt6aW7gDL^XK@Tb=X;hUvDY# z35NSocrZxF7gjU%1j^iKWC(h`tQVIk8$Z<-f@|gV0!j8~gwqbe_-_1|2(FMvg)2(o zij8uwhw^5dyQ@g)j2H^UYFCx`!jX7&i0a85q?*R<d2imcoDD!9!&jG47vHzh0&TzY zE_jx=dge|tQ;k$VZI3kMgUl398MM8^<O9r4KQ%_%g@$}@zkhM|Q3Xi7@r`-RlaGMo zZg|v9$gYYNTO|N3h~s^z-N*4Ut^=bM%<(4>hY?zRm-_UNz_b#2a{B**dsp9#5dmME z;8;m_O14#CvyROgmLeOhlOhE+VJWO=%9<+4nyyUvc$U@E3H7W$<(kI%$=f+%QCqZ# zrLyKY#vx0|nrhm`cz}o;;2!QQv3oeXei#d?uBBY)KxpRUi>HKBQ{wZNGomNl6m%i< z*;!m8ltU#HNjFt@I-`PK+>do8wU^&Bkv%?AjIe-f>uN`><nWhozD^U0r^IJSpHZQ; z4F#WfD#u8#xuiE76(Ok`DrQ+*)pRTEOB%A~6o;|Wu%E!)QTRYaAciBMTrhs=4;O6Y Axc~qF literal 0 HcmV?d00001 diff --git a/res/flags/MV.png b/res/flags/MV.png new file mode 100644 index 0000000000000000000000000000000000000000..bdb8119f5f970c51e476728a01ef875c7e962311 GIT binary patch literal 1127 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`$r1;1l8sRB-?P{YwHS zKy+Ea<SHK&0og~yO=jwuO*25Csrsfs1QEH)Z?Z(gl&{Q+rN)XChM21@gqmDLTioCx zKnBpv#hRvEl~xROFjQ-4GdH7Z&kTkBV1!^DhRRw?;SSIB*A80EPG_hwM^?#DYoRkG zX7`;_g6-}MwU#JSKwH2X*J0HNaYL=8^&F4`6#GMv^+KGD=?jRLk-ZNT0S29Y$rN26 z#aI&L7tG-B>_!@hljQC0!qCAg>jC6&7I;J!1L*`X{*di-9>`!X@$_|Nf5<8*z$93z zX~PQ?+Ux1!7@~1LIYGjwK~S9Gq+uev%L&8H8#ZlJW{}qAHje3Qp4>gVy}f;Uf4oCL zM|=D1?#ax0>N-kVYI=H#nyR|W+Un~S)U=d%rU!=vg$0I&24BB$<<hl_SAzq?f?7_$ zl$MZ^l%73f*39ULsL0zAl2R`gpS*eNrnQBY<?bE35>M@{uBfW~{o~h9c7@Z9Z@785 z_&9mF`#W4V@;^Ga;>C;`JASmdgp@n|ojzsGq*>GEHNLX1dFT`u@wjvUL1qR=76qy0 z2d60kJ)&CT8c~vxSdwa$T$Bo=7>o=I&2<e-bq&o!49%<zjI0dJwG9ld3=A&c&Uk>L zAvZrIGp!Q0hDB``Vt^XVK{gcUr<If^7Ns)imlhZ4=j10R=I9q^00s0@@{{#Fa}(23 zeG}6&le2Zr_4PCJQc^4QGD>oDYRYD<0~#R#G9o0SG&jl0$|XO!G&eP`#L6lFsHvF2 zaQXk;`e<sv=2=;Jq-LgPlrWfB7;J2Qd>N=l9LXH0n()k&k_-lOBZFJFpT+`}NFpim z&CE?LsVqok$OO4hzql-Y|N8<zG;@4IfT|b_O)O0fjDf(sdCIvwpb`NjbAmIgQW;E5 zES)?iwr>Q=X(Gvm26-~1W#*(>>FXDzrf25o>89l*rWb=O)AtS215(d^RDn_)gQu&X J%Q~loCIHQgXP^K8 literal 0 HcmV?d00001 diff --git a/res/flags/MW.png b/res/flags/MW.png new file mode 100644 index 0000000000000000000000000000000000000000..c684776a331666d3ef2750d8b068d67b0c5dec32 GIT binary patch literal 1076 zcmaJ+ZAepL6h51qI^EW$)v}B-Y8GbqPF>5}e&pJ6qvpq4WnbXj?shNxWV_3<AW8co zqCaICSrI`bB!t<I#4PGhKT;z`#WJ(dKA=n_f7s`_TCjpTocB5BJm)#*ecxjhWu>yT z`Dp+kvzU!Gj0^aanuK^OP2|BK@|0Lh0Ir`*|LPE9z1V5CSpn+R01Zt5Q%E(u1&ERW z?`r_4764V~+^tGIfM9;bCc6m*LqkJ|Go}<I5h96RoQ{b3ZyH1(SSwEVOJ*~YOh;-4 zBId{-Kcm55OqPZub4<yy9jVHoWDX+c$RIx>T9lL=o-WTwv-_0l$I4tp%u#?mcC&<H zbd^wK5KA|wDC{YU7Fjk5nx#Bqjtn|>QG?2^SviS*^Uo4niOhgf{U67d^efceOO|gq zQCM(6TX<eO-l^Y@e-m)FvMN|N`qa%AwHr%~a8$g|jD;j*-WI`FGkrdJ4gHv;a2Bg6 zWmv3K2$j(ldKpq37GsHhdH=&l+6-Z(!c@sTALOkqD|@n6Hd<$>{G5|B+%&eO^x^Ao zncs6S3vv{~qxUneO4oJV8Ht^`X!G8ndhRm9iG7_7F?ZdXU4fHN-W<8}Wua*Ou(@b% z`O+$O&mg_#+0NS)D^KUew)Z^pbv<ahcJJNfRO2wCZ|xgBKGMEX?eo@l4t~gLrd#ig z-?%G|x60#(<nhz;_z8KuO&)Ljcx7_rz>n9G@`-Bi;UX3P_hp=^nsYfgnsSC|3{XI7 zborz<U!${YR#RjFrP1Y)8j2(z$C;OZ4ETdC*1h-N1D6gD?8E^be?uhb=IR__8i;5l zO!$IMhmVLbND!`|ld$+59@^^guugBjjv&~8i{7(};rzb+yU%vuih2ABI}`QSQj{_1 zjQZ&SM^P0x6ameZAKk=Xn(2KMWu{pV!@+8jtbftdg&I}Do?n`+tczoym?U3C+G8lm zN|0DtKh5n8(ZKTWBO<#!y<?%WzxG(|r~*w<v6d`E(>0#z3!p@iu&0Wxr=hsG$k3~a ysj#;qp|{y)0XOTTDS`;o9yS=rcl#Wk2!9!2-MR`xyrrrKhrnVgGj<qi4*mowRYyPo literal 0 HcmV?d00001 diff --git a/res/flags/MX.png b/res/flags/MX.png new file mode 100644 index 0000000000000000000000000000000000000000..aee282de379e282a0b18c41adc59b171725d8903 GIT binary patch literal 994 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lz1NC6XFV_@87@Akl_wQ zjF}!wPwxBw|Npzyo6ZTTpA%FAA|MwC{{8&}B!RMj{{DXR@Y4SI&0A-8eR}r>s1l;< z>z9|8c2DVwF)ega+dQ)qVggWV$;o{`zP@|<;QYBAy)7|TefiO=rggmg_!6#Q>8bti zU*Fk(=HQ}jEBYqYwKe7*JGk}vt6T3@Zw9&nWcaCle}8|we*4(sBfDlVYFWH@-IeQy zfBgOiQ2=z(kMExzKDu=6+<^xVF8=uO8E7)x7ht#l2m0}MBOfq07#K@}{DK)Ap4~_T zagw~<T^Kr8Wj%l#&H|6fVj!IW#vihs&I1|jC7!;n><?K51(*a&HEno-LOq@?jv*T7 zlM^Id8U)P~5>l9$)5OBeI1-*ec*4ZI=;@9|BO8maA3r5tKYm_KK|@97kXo0fy4pE4 zMNL)R!)n^?it6hZtXQ&U(W+(Z7IrEwU%Gbj>gD+f87VnUis@Ntd5M{+xyjk-{V&DX z&D_<~#ly|ab>5Y*|2oLrVY~6yd2WrzzHT!TPd)5htjNTmyG8H~&;7;If$mZ*ag8WR zNi0dVN-jzTQVd20hUU5krn-jaA%<pF21Ztf=Gq2^Rt5%_Z)ZF}(U6;;l9^VCTf?HZ z3o$?q<{%r2^V3So6N^$A^h=A2^mFo)6La*7Gk^m6Df!9zp1FzXslJKnnaSC@=KA`X zc`2zCdKo3TIW=Xo)&Y%>02vXIQJR}%W#y8eT$-DjS7K!q0Mt~>V7UDMZhbU0VDqf3 zJW?~$GfEgtEDSa_KfVl9BaUPaR84qhN=XKTg^5A?UDjtnC6Y)=d^2-XODYRe88Sic z(=RSd-~YbA56v9k5TGgsLla9=17jdCZ=P~452!>K$(-QKDqy%8nHXAFIz7AlJ{Bmg zi6k8w<jIhhnUiXzuV0j!o|&Jgo0gN9UJSBN-#0=JNJXAFk^|Jl;OXk;vd$@?2>|=} BjLHB2 literal 0 HcmV?d00001 diff --git a/res/flags/MY.png b/res/flags/MY.png new file mode 100644 index 0000000000000000000000000000000000000000..3941aa8cb1414e7610f7d191f869633ff38fb9d1 GIT binary patch literal 1215 zcmZ`&eM}o=7=MbCG8hx$NSRFC#+V?qccrkSH=Iygpw2>Jou!OGzwS%=wcd4%`H{|b z3<GnEfyfv!+mx_nW^4&2ZW{eZ_lHq2QKpj_KvtZ%4PCN7SWM>AvY2Y(<+*#__xXK1 z?~}WG)6!6vmGO860A!i!4b7PI<9GTa_`IBv%3(_7YRokN7msHC<&@)ogS)=j46uI- zKqLxqA4`#&0AUhf(E&gY0Vsnbmz$~pWc`*Gtwtow%*@Du#Q<PaWNblx%jWeh3b_XW zJH+b=i1V&9U(;%@YPBm&B<yL`9TdtcOD&JB>B!A)&tC07c>-nj+4}BYys$JrzM^e> zu5P@41JZC?OT91}-Q4FVHs#yVA0trGK5Mi6{E}^je7KW*%~KA*ugP={c0Kc85^jI0 zu<DIy4#0FZMVH<?ee2Yz1ep)o>A|iNJZgHHJ80L<O{~81u5ugEm_XS*<=hQ{pX2!z z=O^=8$9f8E#^-agI`VUO8>t;si6ukfN}!BX+x`1nM{f4_CkDsax%JB3ttS0;tvO?r z>z`s`!G@~E-ws3;A`uZ(D-i;95C{>}iFjB<C<LYF=%!dWJTFRjP7E)d7`}D<_~JW5 z7&Gl1cg~)@ZfUyr)z|nUUOzJ0fJr7bH|&J!g&%QTkhyl$8K77GL_Ka+1?%l1W=G=w zqf<YL3x#Ad8x?c%oa~gGaB)=@mOeKbYOF<*Zb#mxNDk$2cwDTLasN7d<ClfG*u1hD zPL7;BcA@vo&_~ht2PXPI7^zBu*xI#&1G}tK-&d4>I1!faWkb<ez`=XGu9sQAQ(%1V zKB(4hdqq+AG^eytU5_>rfu~a8%jNsaiqtgu;b_mHIzz3o04(Y)Th-e)YKnD*6{=?o zw3)I<=$h_Q_p<zu@r%MyCYC#x4g=@(k;UPkXf&9bPpQ6?)&@mC^kzbAI4G<A<WJH7 zQ0fRy`^x--I8UKuY>_-piJ{#g1{0K#8cIc0s5F#Svy~>xXbn|DYG{)DZknI{m%tbB z2yFNN3r_cZ+lB%v-a!noQkOHt01*~Lgg4-JdI^!o0^td`36sysF=i(xxI0x8K?r^i zvro-SKJTl0htH!$UfjaUhkY)ZHU!*ZALEy3+JYhxG-D4wCXll(iIec7>3T-scnLJ+ zBsnErjsLL8Mh{6g!6WfdR!Nf6Z?_5mF)|B2M(PeSAjD5dh<mxumV)sQNtx8mY(*A! z(N&OIyr_c%-}sS|lSJ7m>_>*KQmemm_kae$;v{favk6$i%g_W7VmKk-SFv6vC&s%G WX1f}b=gjTvC<2qQ!Ej#hc;j!|RD8|= literal 0 HcmV?d00001 diff --git a/res/flags/MZ.png b/res/flags/MZ.png new file mode 100644 index 0000000000000000000000000000000000000000..dd497c23c15b8cfe0c331cee35755a477feb57ec GIT binary patch literal 1267 zcmZ`#YfMvT7=BT1)?$GTT0{oa$t4rcg<j|h%EbchpbRQbN6hS@J#7#60;i`i$yl1{ z%rH|YF}f}LF^SWG8*-T%*-(}xFi=4_LQGh!)XgmZ*pMGHaS-<v&@hvoJl}cG`#jJ4 zeCPXGD=SK)L>ol_5T(~?ji@FDSL9ms?iYpHPzkja8VUh=j;~*!!%&}M))@@|&1nF> zLjX?^<@*D`ivv6|0Z^X-NbA4sugU`m>8mWSE=C5w-+xF^n#j<=vCv>&#$>eOOj-e1 zvlqA(2JwiTlH^=V(CpC}!(G-F65<i=NEEkXl|GeDW~~iMZtF6TBp@|bF_l10Nfc+d z<nO9;=}sO)&@VxdD2AiR-juXid(w}R>_HJWDc^BCuY8+2H%FyXK8GO3yooYzadaEE z{`2ig6IA+?jJP4jeGy4A2t@}GHfOh2ZEAGnbDaI>4$A|ZT#%Az>*;7^izqo9LWab| zNAmR3pU~I(j&_}}^v99HhMX4(Lt=8EK>mA6>WmH#984Ha*(%6)v~4dh(B!IfRhs7r z2EIlJapZ(pac3iOuOw~mV)mS0kMP+4<}!j8B2i3kPzrH50XpT$NciG!usFK{q)tRB zr(ee&9f|*EX3fF_SeRV_l7217n7=4q2tW`^eBj;GC&LjaVY&71n{lGkhVaIUolx-b zt~J=ymX&JZ<FF(hYSz{3-tnMnT3U1ai^kDM1g|#~N6d!BM6ZeQX68j9O3-Tyt24&U zCRw>JMhYVY(bwJEV}|Zc5$RI31WSHf^Fc^qDjicrIJiJ;n{krt<>o~hu=V^mXTNRl zJlA!m<Ljg1L5}Kgej0wbWGL;N^<jJ@oa+0&_j1przNUJfD+xDgq`TEklD9B-^1ghr z=9zEstNWkc?w*S*Z#hvlLG&~{Ue~H0$?QOLWo6^P+#DSnxpf1}(5^9EZ4b0f_Rb#} z?W}thPF?8u?t<IysB;yDnXXP>{`=Ti*PrnYZrec1;wv>Z-J`Ru*MC|I9e3#~nwyCY z=y+TB;yt{D<{8S&F{l8E6Y4BnnMJ6p2^EEt6rp|tCny{jX6*O>GvIVvSnGlRA80>( zdoLPL2Y2wet$Y*BF@SkJ9OiJFX$R)9BLcIy&6wUv+ZY3FW6k@s)ELIPEX;e^cHZfD zzwwJM6d?;nRNKAIT8h%T&0Z(t;wh>U4S9e#|Lh0sCC^eGMd=vUX6HeL<IVR5E+LO} zRnCfMH*4YTpuzEgr*jHf5>{CZtdrpn)HA>a{}1yt+OGdqU-43op&Ge>P-v8R4tmrF zPmZ~eC1zF5PPUl=MJ}l-8mf?8L1N}AahFjKR@T8#7{)O+*6qr&I%u0GxEp4u$wp;! R<Y_S)0)26XwyVhW;lHzxznB03 literal 0 HcmV?d00001 diff --git a/res/flags/NA.png b/res/flags/NA.png new file mode 100644 index 0000000000000000000000000000000000000000..68e4aeabe6dc127006fcd15019e962fcc19ea666 GIT binary patch literal 1442 zcmZ`&do+}37=O#Pq?I}@VM&=neBX!}ebsj6B1UH1i*0pGGv8d8K{LY)CfO3%lSo!r zLaTHrtxGW^5nZ+znaFBmsWXI0qOGLbPiOzIowLt5&-;7c=lT79&->4t?#J*nT)uWW z0KkyuMGe5vVj=Z)u`}b*Y%m7eToRoGKy{|UJW~g|+pxR>=l~?(07y;&U=C{~j{y)1 z127&A0FnoQX-r|G|8{JkdtkRG6+<lEQ<@HAuq?(aRE%NxmwXjTR$_&oghuz!8`fE6 zv~*Rh{dPkDw7h9lQjpgjO|K?$Uof~cJ*6OiLlpK1U#yO_sts-G9zL5R%pFFGoZ72v z94`9h{j!>xl`e+V#Wt#uelrKwyJU(bW20;0L$c>VFN15m@-U5Sq=xeSTo#8mfK!aV z8`;y;Qx?^xUAnUYaz1l^^i!8&)H39rcWye+KSmxWQBV|Z`}=L@O!4NV3hm>G^SXgG z0~6|yr+ZGqU6X(K(lSmSH3G6m=Oy9yXRB1XIHjAXyo+SZSDxIYL;fxDLjogcM>|V1 zbcz?zaY7lA70~BaY?nurrrunCNU*seoIOB!wM$3qbfwF+X%m_3{Dtf@b@qkUNz_Y3 z_BwKj&+0U(VU<?zML~aVkN<f68^78Y(nj4rm;4y~n(1(FVQIz%|7Nk)#<(@LipxL0 z>m?Z1ic9z<Ysf#2PHR#!Uq1WT25+oo62eAAWe2yNe(s*#A3JlUR4*_f==x8OBOK%L z=C|Y2mJf$?ov13m3+c76bs{CX($}Qhec-|6vq_A(vz^KIW9If7`omf^)4eNpy&ju{ z))g7^2pQ#-zsE;bnjYS5P_3RQ%eL=!%UWK_msLpdl7<46qD6H6N<KScWlApErM<#q zyL|A*F}d`}-4m_UM<sP^!z+*H;-eD4TFBVSY)M%C+I(Es)sC^WrSj%&nW|g#*|fCH z&z(0-44Kgyj<>IHO=CPA6b)XQ^)nIJ#$DFRXY9+$;SnremRIOo4bXr6sM|Vd!$B0< zp(YgCxBH8g7H&x^Q$E1HhkPV5fxiVSY?<YtvcoE_Yvq2X3@NOp$N4x|rWPIb6+F*V zmdrl6-(Dp>=cDMpJ$%!upAvnGF&G$D_va+FKwWb;z{kNs?qNB!m!Z)V)0$OOiNLsY zqHh3i=RAb;KvSb_oO^nQ<sJP+)9(o*)}<c(m2Wad8-~ipUYoXWYxMUH&B_@|CB58| zIF`h;D9^U4dpf_Y?0PxDyt>{qiLI79N^!O(OT)cI^WSkYb=^mOV{Uxjje8dOwimbF z<m04;QQMImva+)^xc-dwxMMu=(+<s!mIqVE-af|76!Hz8oN8_W&tzJrgievV&(1d8 z-e|5RLM;8Hnwcb7IKD3)^}VawDN6gSKaYJhJBde#gw2$o2up-w09;@^(Ft~Q!V`n= z1O#?L@I*%#kHE0%3Gc7}2!zpWJ}3VF1?N(`f4~I9g$?3pjzr27p#X{%iy%QXiz$G_ zJgfn+qgfD5$mF7QCYR5ObRt3!KZ=dYoOu$VKpt06g;|&_SOoE6g$EFX8qJCoqEQkA z@xw%7fG_{t1bxN%;)ft!D4)xd00Imr3^rfIIHrqy{^jiDvn4#R6^2K|6}=e6d=Z7t z7ow8*7!>dq-Uo@}xGhsLjIVs?K^P0*UAMZyTd*J=&FPB5C`OBX0{ICjaNj~CuOqU# y*vx*>EI5D$ID7$$K#&OK@}r}iI07bDys!*nkeo57xkSNZB0%$CP^-w{NB#i~`C2ak literal 0 HcmV?d00001 diff --git a/res/flags/NC.png b/res/flags/NC.png new file mode 100644 index 0000000000000000000000000000000000000000..ffcc21662be582ed8e86c1daa5703405188529c0 GIT binary patch literal 1317 zcmZ{f4NOy46vt1Y4UAE3hk}l5gBegl%IkN><EyQ&&_-JjIyX0_t?ldUlYS8T3d7B; zI&@+%i~<VGIb#NHg<@vh9L!`}Hk7c5OPq@e8G@ofFi3(fij&=<EJ)(Z|K4-YIluG2 z_f;1d^0-kiM*#p=rzHwej1R5IaI|+vu_+YTluEAx_@?&7M`jMn6D-<7J;2Un0ACfr zLsasO0eFP~6D9z>2_UZYNcW~p09J3oMxzD+LqkI#3qD_+AUO$=K$x@*#2p|#`7GHP zE^j5a(g$i~yL>4XyH#s9>;_546NV-0m{*W3YxR7TJ2e<~trtE!2oG+;rE}cucU&L| zvSh*LEE7^whPlo}Ok53rJORI)hH@v|xdw9+(D(gIHN@tYOw+VVf;5>U9%x+ta2);} zgA>g_<iM5l@MsKXhTtmo>U56uj!K3!s+0`2Mb9E^9D2S5^Olg?>}|L|3YWd{liBiV zr3`5@OFB@`54nv)`%%!UVeq#FH!@*5OWwQ<M{0U6qwa&Gi2>H*aX9rQ7!C0Eh55Jr z99ct(Tejk?#`RCcu2Xv2;&1=O@>hXQ1$}4W&wft!;Z&#(0k9ypUn$z368**sNZ=*C zyE@q~M!^5wr-udt>eNuH1V3sKOS=nJp*n!cRX>CRizze|f%4WBTPWGSA&-FloL96c zd7)Ih#S;SO*WD8JMRbT@bb3w1Fo(|z<9kywxu|qkN2rYJE?P{hUia}8CX+RcWsBV` zFJERzwnF2Lkz2!~H{y6J)b%m3v9bJ>F^4~G@E@vcjLC&#N6wzzbKHOGK%k|2U)!PY zGQ(h$VVHX}+~|Wf`i&QU7ce|nN6|Ftw3JX&*T-&7j_jxgWx7I9u{<AhzqT!B&i7M- zf(?C~h)=5a?ad={HRpdl*AuY@3epl2MJee?GC|fFNovMg7Ry)G)m8a`vscrT)Jl%7 zZ0w4JhW0=p(D`++-EDX5aM3|E94n6JovvWYz5mSIzjr2)^;PjeRds!Gels5A>X+qb zM)Luv<YIaMF4Hjj_asL1He)q2ByK4qQ2?<}q!0*Y0+GTflH)=#E>fflMYvFSX~2H{ znE|KUO4}-*KX82CAH`@u5xT+SwlNjvG7>ParwntrEoKMiv7-WJbz3l<(@c?iGeuiU z1PTnJT~_k_G&|#Td|2Mni7ZxyER1%qb32X`Zj0ARx)>ZUKtmo7otXOpTf)ry;kcHh zDLVsFnUF2`{3v4L7Wq77-lDCH9nyuu5l`SULRK$A^t6*?DoaVAL+`^p<<yT;rG_Ow zdLyDhBu$qICFoOp+|chr2!D}J5xo-;@^p#%i=x>A)J$2_e6vsoHrher7*<A7wA&@H dIn0zNbQ@+^pN2xOgSQC{flgx}I@P8<{{cxQ#;X7T literal 0 HcmV?d00001 diff --git a/res/flags/NE.png b/res/flags/NE.png new file mode 100644 index 0000000000000000000000000000000000000000..08950d2f37f6e2890cd39db88730d341f2538695 GIT binary patch literal 970 zcmZ`#Ye-XJ7=CB2<z%$c53P{wW~t3{j+G}5f@xdZsI6@-x?r%=c6N4fx3)9O(T~yn zUW9^${iz>8Kdgj;CSgWDx=~&T>_Xc_(^ioMMO3ujiO3Q<Jl}cV=Xr16ImgW=okG4q z4gd;+USmaGm^pK1;X5YJ<&kpvI%6Hc&9nKxSt;sbhu&%gh?D?C4*~o{D>@DkCIM1* z0Hz(FAkY!B)L>%3yxFEjj>qE(>+FOjHyb1TvMIPrMy4@o{z@e?_%Qta>Fp0^8W9+v zL^GXE|NfF1i_|8}vk(}d{PF5ha;GX`ks>fa`DY^azNI#~B?o~4%HeOL8GIjmGZgE; zz#=d}iDp?$JB4mt*)%52{OhIJP~0fT&*{8!@*|Q&w3-@V{ktJoM(p0C)4(xlksd`} zK))k|Y@a+6P4&+)kckGPR+f~ilsT$!X^jG{QwB|)ZRK-^y|6K=%8x#wSa>|z-WxsK zcKTAA^!~<&d!n$SfSyY%>Vfuy=jP=~7PBe~wI|O&$`-GX&K{`j3VxL<t709O&v%`; zwxGE>tT3v*MPl_XW#1r8uBoh|q#<R{Rc!aM0_Sx!$=(%@eC)l~+yCfgzXTWDvE#;x z2XVUuS|v-@=?^c7;JucM+U=r~6*<Nc<dC3}q-Zs{R!z}1s)`{i8Hz3^DTX8mU%M0k zG<f|^!PWBrhRa9#8nJ=SYzX;X;$Ak$0TB)b36I~wdWeu44Z`Vn5C$*Hb4HdI98GGP zAOxS2+gIThy`KHe7dvr8VP=HQ9ro^K7>(Z%_HsUvVa(VR0_tkIo0w5EIgerVoWQ$9 zs3OV8+q<{0rXXw1RLwTQDY}6s$?;D|<5)63tHdaHIk6?cfsnZ$5o+dpJ_k%Q<``{Q z1=O1Awd87i=!31#d|0B)n$sXe@V{2m^&5&LFECe{mD_4HfJ^Xj3_%1rUhw<WE)UCx ZGRp{)wgO4FYV->>fkA81bk^Gs`~?BAW1Rp1 literal 0 HcmV?d00001 diff --git a/res/flags/NF.png b/res/flags/NF.png new file mode 100644 index 0000000000000000000000000000000000000000..2728ed548b49a2f741282506dbda8e19fe844726 GIT binary patch literal 1019 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l=v3l6XFV_@87@AP-((Y zZjipd?LQd&`~MHh`1kL|s|UaS{(kZKP1C+Px8FSa^Y8DxGn+i;=PkRi<JqUz$!nY4 z=H--apY;6mn_ah01TQUfnv<#48#L$ih6zWP8&8P^B8fKltc{&te|`s=|NHMBpp^5R zOx=kQmeZ4f+JS}u#eoRODBU(uqc2#g+aG8G(5NF1E<mIfoZW0PHBP3(OTN=buG2em zMfKwI+y4Fg2a&z=_VLmS+n1c*1{B|V<H-GYPoIB!1Cjds?{E8o1#iB70CIuq@4tKY z<M&UXm*XaE0a1)4L4Lsu4$p3+fjCLt?k)@+tg;?J4rhT!WHFFV0OJqYPUnFP_7YED zSN4ajf&xr}rJ6RpK%wcLE{-7@=aUm8lo|xh6B1IGnA60<!py?T`251c#L_whx@5G) z&H1(UEaU9zVv3lWoDS`H;^K1jh-$$JPcP5YCmv0hJUKidB<PsZ@<XduEnBy6<<hgO zniZFyUbQ?wAtNQ{P*#^>`mwCM#LU#(<m~i*#pefJy?FBG(W__YUNtH{=ln8r`gZ;a zUye%Y)%{~!QFmOJ-<gGhflY>gi!y5-FzOjpOI#yLQW8s2t&)pUffR$0fuXssfvK*c zd5EEzm4T6!p}Dq!p_PHb<=Yt#P&DM`r(~v8;?}UJ?LrJtgE`2C;{3Fd^2DN42L00F zBK@5F<is5P;tZgGeoB6_zGrS?da7??dS-IAuDQN`W?o8ag<eKUZca_vtaU&mBtS-l zWR&J6Sy{Q{Czs}?=9O4k1pqY_GZ-%azgr(o4cI&@E05I7^o$Y)6Eg#ShI6q%HR4F- zK-Gk2rj%qbSQ;5za6J(YR3eF_#5XfHwWP8jl_3-4KK<gd^!@J({Lswt4FRfRFf_3= zH82JO^X4h%@_<T&kjx3rtOACsv6-=<ld&RKGf-9&Nj5adlOZiLC)G+{zbG|5Ge1u^ gEhjO(7-XHkpPL?#V(6K#2-L*j>FVdQ&MBb@00-=p1poj5 literal 0 HcmV?d00001 diff --git a/res/flags/NG.png b/res/flags/NG.png new file mode 100644 index 0000000000000000000000000000000000000000..5812b2d29c2527c5bffbfd7a1081e53a07433cff GIT binary patch literal 682 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBC?OHx6XFV_@87@A&>jdx zj2%HsuN?gU|36UB(ZO;vkYX$e@(X5gcy<G18Do;Sy9+}HtE>l*!&%@FSq!8T!1zP9 z(|I6+y~NYkmHi>Bpa7F#siqAtP)Nno#W6(Ua&p1~NdXr&CLSj*uT$$XGc#A7^YZd? zp4|ORc@`tXQ&G){MZeem2C7#rag8WRNi0dVN-jzTQVd20hUU5krn-jaA%<pF21Ztf z=Gq2^Rt5%_Z)ZF}(U6;;l9^VCTf?HZ3o$?q<{%r2^V3So6N^$A^h=A2^mFo)6La*7 zGk^m6Df!9zp1FzXslJKnnaSC@=KA`Xc`2zCdKo3TIW=Xo)&Y%>02vXIQJR}%W#y8e zT$-DjS7K!q0Mt~>V7UDMZhfE{NhCF3^Q^2qQZv&tN*D}{3=A&*Tm=e6WP_lJ!ZTA! zG8l|Z3=A%HECq!ivO&I?xv3?U1*r^~AQ$Qvm!<E2U*HE+B#va8ZwOEogQ1C~sev&N zm^V*3mj_fLfTScivkDlp#+FVOI9K)p<usAxLW4XR(lT>Wt@QPaQqwc@^K{d464Q%8 bmg)Ps>j5d-H`^uxH8FU)`njxgN@xNA&L_>= literal 0 HcmV?d00001 diff --git a/res/flags/NI.png b/res/flags/NI.png new file mode 100644 index 0000000000000000000000000000000000000000..d09e132955f0017b5108383a8a277969b3e725b3 GIT binary patch literal 961 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lsFUM6XFV_@87@AkbaCI z4IRl>o<%~Z;p_)*e?ZXv*I(|wcy;y3le^Df0ND`1|6uU%*Sim2-tD`68%X~9{r>;| zf4_fzJbG)>(vw|>Z*Kkl>oZW~*N^vC?(8{#XV<0M2Y>ze05kLRJ)mhX-`;!i5^g5k zYPm|FGtNM`=niIJ2(Pkl1Nw)tB*-tA!Qt7BG!Q4r+uensgH_f8$l)yTh%5%u31Ivo z+vz-z!CvC&>&pI+RZxIQuvF8A7bw)`>EaloaXvXg!lgmbJRu?F5Ua+7<ThrpFtai~ z7IBT^oXjzIZ1&XrVJff-@Dt!_X>oNqdPG%aX#$gjWv0Z0iBl(s2ecF~o%nRhl+ci? zS4=mY^32Z4eEnk4i)P97%kvX5QgV{A+EV22#6A<77Iw{S+lhBB6(`Q!J9v@vX#Exr zf18iy9SjV@YlTmo=}<TebdhR_YeY#(Vo9o1a#1RfVlXl=G}kpS)ipE^F*LI>FtRc< z*ETS;GBCJ&JL3V0hTQy=%(P0}8Wy!(hyiLa2iZ`ZpH@<ySd_}3Us_zGpOc@Qn4@2u z0Tj?r$xqhz%uP&B^-WCAOwQId*VoU?OG&NJ%P7gssVSSa4rqh~$cT`P(%d8~E0_G_ z(%jU%5-Y0!pr&F5!{z^X>!Yawn`dR^k(!yFQNmzmU{G~$?^f(;!ZTA!G8haE3=EE& zEV2ixkwmh~H#0Z2q_QBDArs_4{o=Cp{qGC>fQrPC6@>s*F&LUyni?1bfqC<kb9q1| zLP$!2GpkY=ObkpcOq?n|J0t>SHIZaPgFG41GILU`^!1BU(=+q)bklMY(~CjY>HB%= W0jZ`t93Oz17(8A5T-G@yGywn;J$vW? literal 0 HcmV?d00001 diff --git a/res/flags/NL.png b/res/flags/NL.png new file mode 100644 index 0000000000000000000000000000000000000000..f920328273b036b4a3a63d045d73739bb6e01afa GIT binary patch literal 726 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87?_PDW#` zl-dq+r>{?*{{R2~$;*#6F*D^|yA<8JfeIXMbjt!M#*!evU<QY0H$WCMCV9KNFm$lW zdH^|`1s;*bKso`8KV&<d2Qt`8Jbhi+AF>JxFbS4w+VBE}+&o<zLnJOICoGUl5OHC0 zSSQ4!A@oE_xj}Kl>n4Uihdd1?7N(t<91}byME5bYI^?l4nK11%7EDl@u$zlfOz6p? zU(>4?7(CB;ir<`bHxFo{YKdz^NlIc#s#S7PDv)9@GB7mPH89mRG!HQ}vobKUGBnpV zFtjo-xO_X~0g8s){FKbJO57S2wOxn-YA^@cP@JDuQl40p%Aj9bT%@0qpPZPZUz`CH z&`-%v*7wX!Oi%SqOwUZt)-~7H&&*3nt<cLT$<3)Lo3##TgapWlkc`sYBr7YI{N&Qy z)VvZas{o*;Vg|$I|99)7sR5g3W#y5YnVwO?U}j)Yb#L!hpc-)`bD(O%GgC@37%UA8 z9u=>;3REJAq{KHfH?^d)AeA8#<Ual4vh@A$3;fW`@eKj0VlXtZG&L{=0`ul6=Rn~q zfMiZ^W)(18jSQR^I4eE_<usAxLW4XR(lT>Wt@QPaQqwc@^K{d464Q%8mg)QX=m9A& SoAw5vCI(MeKbLh*2~7Yn7u@au literal 0 HcmV?d00001 diff --git a/res/flags/NO.png b/res/flags/NO.png new file mode 100644 index 0000000000000000000000000000000000000000..0bedee3f18a535f8596ab38dba93b784b65ecad5 GIT binary patch literal 866 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l;{oc32_C|_wV0-udVxD zUF%1F!HP{M7}V0UTUY;_KmWa^HdtKqor>Cz++3(s+v=Zl=e<`|f3L3jv$64Kef|G6 zt5<D14b+v}w(9@M6F(aofZ}}%_5jg@Mf+mQ=QF6MTSs;GFW3tdVNgkhBGohojSQeJ zga`ve4yTk0&_RqPL4Lsu4$p3+fjCLt?k)@+tg;?J4rhT!WHFFV0OJqYPUnFP_7YED zSN4ajf&xr}rJ6RpK%opz7sn8d^T`PkAq|4o4JQm48I8HMrLEc3#f5n;1oTOBR8;)@ z!OGIwvNMrEOPz^jQPLx!NkNy4lnfZAPG)7YtYmdnO%;u_XgIZ!sd3h>wq?_{^{vz5 z5m?ASzxKx+&-Vt0h3lKy7#IrM1iFg-yDk9jR4s9hC`m~yNwrEYN(E93Mh1rFx(24Y zhUOuLW>yA9R)*%<28LD!2A6MVJV4Qqo1c=IR*74~qP7b$Kn>;~8;bMOO3D+9QW^A1 zi;MJg@{<#D^ouiq0{SWW$@-qTiRr1niRqci*}CTX`k8qtsTFz|CAm2@WwX`+jgSBt z5t31wn`C9>lAm0fo0?Z*WfcI_RLo$w{Qqu!G&NxJtgJjzGt)Cl7%U773LGZv$F3$k zGo>Vh!O+ma;Mlhl96&XaNOt*V=BAcZ7Njy{f*hz{T$aB7eSsfPkvOuV5TGgsLla9= z17jdCZ=P~452!={Nl9>KRVst2p}EtAn;BPta+*kTp+TMuX_+~xR{Huysp*;ddAeyi eiRr~4%k=&H^?(%boWB7;O$?r{elF{r5}E*$dl)(Z literal 0 HcmV?d00001 diff --git a/res/flags/NP.png b/res/flags/NP.png new file mode 100644 index 0000000000000000000000000000000000000000..e7775c251655fa19fea13bf707d7c2b6d6171aca GIT binary patch literal 1255 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`(dFz$e5NsNnwn`^hEi z&Ru``9|p>llczeCu3UNg!?)i+v0laKJ3?0L<OBP%W}UwB{2xqNk7CR{Ve5MW7H0%) zr<vz0oOAHi#~(n+9_6_E682BLGM~7l+!3?gD(l-DH{sB!hksxi`}ERY=eGWS{`%M5 zM=z3VA4oY|6tbP8pE9d|`{UPNdlaKzM3j6xdhXNy)AxLGE(=&+5wy7~V6|D)qa~ni z%bpuwfBXhnEo60H)_J2+aHdn^q`bLP^5#s=n=>_cc6ZL)yoPP-4&DWtb5F$Po}9~d zS=Wgcd0P(L{`vp^&%ghF`~{J}{`~v->km-PGmrGo8}@!)vHh-X{1mJFeMj&1Y9@VN zviZZLCD%mlCfODpIB_57@Lu(VPcv5j|NHlC`|P`-wpWF0COVWJKK&5nU&ZLh=8^CE z7rpJ6`@kUhj<EGz5t}PQwiBGnkDYrA47~@!R`<kgK?oRJA|P~M#2RSAB$vul7oLP` z6?7}cbV5;Vmm&ytD#Zc?YZT&xB4=N?^9C4AH(k5}ffQp&kY6x^!?PP{AWo9Ey9+}H ztE>l*!&%@FSq!8T!1zP9(|I6+y~NYkmHi>Bpa7F#siqAtQ0RiEi(`n!`Q!wNk_JK6 z1t$#+H*eUmX=4N9E*Wcfb#ZQP^Ds-fIJ-JVM=`}jog$@0Nsojk1?lKqno(r5spu0| zm)9vRomE*cie5?0in?XBtLhiqj9)yxJ-$9?&*<u`U6Xs^Y0ld>vNCh$#KzpcV|(GL z&E7q=HGlswGc`9kUwG<t_>i*F;zb*O>8nj^Rn@aooY<<$>8xkjs%olht8Coeswy3; zr*5vlf5C<oJC=xCKC|gl*Qr&nX5HHLi;ZXJv1QMuUEB7p@7%g~awV2FAI&uw7y@$C zb3|uo7XbaHTH+c}l9E`GYL#4+3Zxi}3=GY64NP?n%|i^$tPG5-49&F-46O_dF5k|0 zfTAHcKP5A*61Rp$Z5LvI8q7g96z8XvlqVLYGU%5U7wPBZCnx6U7iRzk^i%Sa^*wVF z(^GvD(=(H^b<OqlGxJhXEA%o-a&v0RW~~DnAptTXB%?Gp$;!$lKe;qFHLt|VDgdad zn89%Q|K0j%YQW}MS$U*pre~BeSXh{z`25ZSs74&g9H^S`%#@N026H1b;~fqeKqZn$ zN_;bOQ%fofQW-Kq?$a+WOW*&#zz@wF-w>cG2164|Qv+ilFmIl6E)S?g5Xqe2%qn2G z8k<-;$x3l$10^+)BtwHd8PYOyQmyp$i&E1w^Ye7mauU;vLAL4p1?T~(_d0(;1sH>; LtDnm{r-UW|-+Bfq literal 0 HcmV?d00001 diff --git a/res/flags/NR.png b/res/flags/NR.png new file mode 100644 index 0000000000000000000000000000000000000000..4760404ba68cb98e25469d12fbc6c7e21ebf369f GIT binary patch literal 941 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lsFdP6XFV_@87@Apk2?P z)u857fQim5H-w<m%M5`C&V{Jdb}Np`?J8)PW*b@q5doURpi!^sJMF;fhcDiKEAHOS ztk=w-*#Nep&MJD&!)G7<|NlQ}=?PAw76z?)uz0<oWk-Jd_9@FwSw_!c)B!67Ith%} z44Sx1T9{A;A-W(6fL<_C^PCT)7)yfuf*Bm1-ADs*lDyqr7&=&GJ%Aj}0*}aIAe{il zAF`d!0~zckp1!W^4_O5Tm;_5TZFqq~)t)YnAsXkC6C{)x1kDo?QVy|Zs2uO%W_TI_ z1UGM3TI`Itz!1<kd-m-1>HYBz0Ugq!4PQCCJGwf(J-iZMC8tfBHgW3Y@PLp*Tlzaa zBV9v%W1WM!XUlIXE&2L|m#25bNy*tWX3dO_h)Vprdu#97xqF$#_CM}yS7c&P_v3D{ zVY(v>bcSk)YeY#(Vo9o1a#1RfVlXl=G}kpS)ipE^F*LI>FtRc<*ETS;GBCJ&JL3V0 zhTQy=%(P0}8Wy!(hyiLa2iZ`ZpH@<ySd_}3Us_zGpOc@Qn4@2u0Tj?r$xqhz%uP&B z^-WCAOwQId*VoU?OG&NJ%P7gssVSSa4rqh~$cT`P(%d8~E0_G_(%jU%5-Y0!pr&F5 z!{z^X>!Yawn`dR^k(!yFQNmzsU{E7k9|u$;j${s0O?YNXNd|+Nfx%1tx4`7fAc>^J zH#0Z2q_QBDArs_2{o=Cp{qGC>(9H1-0jgp!G_f=_Fa`qi<|*g$fJy|A%n8n{N@XxN zG;s?2`*{vfP7_HkG{}=7Ei)(8N?*SyH9a#wPd6<mF})aMnZ93;9*~;)W?eE+6N9I# KpUXO@geCwesxW>4 literal 0 HcmV?d00001 diff --git a/res/flags/NU.png b/res/flags/NU.png new file mode 100644 index 0000000000000000000000000000000000000000..7c130d5b88941ec0cb273d3c14010f7a15bd1199 GIT binary patch literal 1126 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`z(2;1l8sRB-?P{o|EA zch~G_=w2=3RK;eHzqYvXL2RH;Y!`!8mV;~Ax`K{7vsT_el>7Ih$e)X1MqYJI>77?5 zFFvwnPeJ$k9j!gLvVv-B=l7(w-I%pv@9KSF#S8j+z5ibpS)bLsF|YMXN5_kX&gU~0 z&#$R%PYXWQG~q>U=Zl5&4m9+vO>e$7&*$$Ykz4kGHyi>U6?)(H3A$_@)SVL4*KWVg zBl@;Yz=IU;yODl3tb<;6nEbgc8kXEw+q&%f;j?d7Z934maBJ)2l>yOvw;X+V@brth z%NDiFjmw<6d{)rE%Odq1YmU#|u(N7%tY3|kP38KU=4VCzfr%50f;(qU-gti6idpHM ztNT3uT^9YeHRjHIpXuH1)iw5wjm}pV_`K;iT{=CWvcjgh$$9^lwC~6BzU?&pb5Zoq zMPZ;D{#_FJe_0fWfG!7dFGIN?S)j-zF<>YG1NO^ip~*msu_VYZn8D%MjWiG^$=lt9 zp@UV{1IXbl@Q5r1(g|SvA=~LZkilN!>Fdh=kX2BCNw8GYh8HL_*VDx@MB{vNf`n3o zpm{<<N>W;4YVz|3PaZvc`1G;31H*zj3npynSTSQq%aSQude+FSnzN^A(WFgXt7h$L zTQ+SQ->Nz5=Iv`-IB{d=%9%S`mx`{Mv$c2a+`Y|<CvWavJ$pC%syWN2Z|`3}zuqAs zpui(TVpU9qOG-$IPfkpYQ&Lb7*Q%JTs4BO#urj~AxH`u~!Buk@^b8n^Djp?vFfbhS zP}i1~PG1FdsA`F8L`h0wNvc(HQ7VvPFfuSS*EKNJH8c+~G_x`=vNAN+HZZg@Ft~g> z;{l3>-29Zxv`X9>7PVc70ctP@*-)IHR#Ki=l**uAT3n=`lb@WJqhFi>6wpt}PuBO$ zO-xVqO-#>B&ek>8*U!vLNv+V!D9O#KDVwzpXoLjFh>(oZ+$1Y2m;B_?+|;}hE2{vY zreX%e<^Ol<qp1O#XJzG)nwg$a!eDG*P$OC&2UH`DWDZnKcxFmT27{S_!At$Oz--4L ziKN6gGdH!QvLKZq6XZVq;<EJp?+g6U%<&BYs$wuSu{1R>1_JZuDd+NlN(7P23C^qn zsxUG#a$>FDv>Yg@i6j{s<jIhhnUiXzuV0j!o|&Jgo0gN9UJSBL-!D`TNU5JG0wp;H MPgg&ebxsLQ0L^v3wg3PC literal 0 HcmV?d00001 diff --git a/res/flags/NZ.png b/res/flags/NZ.png new file mode 100644 index 0000000000000000000000000000000000000000..67c98728fcebf8abd8cb76fb7ee17ddd626bc92e GIT binary patch literal 1544 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`)cL;1l8sRB-?P{i7BA zch>A`=-eh_*UP5cyfUNXx>JZx)Jz7odIzVrwfTMb=d4V~Uc{hO!=O?NManRSO0AJw zUsLL&D^r#pS$&|ObN9BgiPxM$Yim|@r}kf;wQA4m!%@X+1Wh{_z*-npYlRJ)IkXxe z=B&%?*pSn8zM}hSZRhiui*F_sUDS8JSJwmNKAEy$Z~27v8SUZjO%T1D+KrW=t=5ih z5H8S!>-K?HZ3C{@23~UvzHaM(S=aHLjL{9dfNORES8V*R*ahCQ56Ce}XHcmFSqF9i zlUkjcWvh^W6N73UvwA(m8KDVtYMM7*J8<F6%1!(FmYu7e2-JIc%gKia&pw;8Y+=)q z#LNYnPQ4Hl1oWG@w88EN8mL^WW78Jt-^HQ<GODR#%gK40ch^i!@N1W|>0Xo7dDAH* zByp~3(9AhgwqKgDazR$Fo<$>27mG$iZcv+-TN~VMQpU|@j_p9_0nI6o>yPtjk~D4x z$}(#<hPpLp8)vH9cQYtdvuZUu#>}fKT4-TW2Q-IKwNBNdRniEk5)mU1cY;I|Yd~zU z$3a{W1EdS8Sg{(xhRDLDkWItEW>K#<uxS-HY=WAmT+64|)DcwY=G+1mQK<!bN6Msy zPqz^+0%8Ddfmp=A@I}J(ComN<mIV0)GdMiEkp|)<dAqwXbg;^L06Clm9+AaBIsuG7 zWILS)GT2KzeO=ifvI+_?36^Tw@B;Nnc)B=-Xq-<@kWgw6G*3uKNlHshO@991$)jfv zpFS2B5D*a(6BHE|5MVgf>Fwd=dHTeuliC_unyWcDR;*f?oss4EWJ_tu*Dt(0y*<7@ zXV2)eu;{E^lbiGQ&A}qRKEHE%>+;^o&5OHdx3BIWW256i#f6Cv6?S%<Sn*=UjU7K) zjx2dH<;s>XJ!jUunR91P&4d`o#K1z&%*aaD)X-Aj+}K*@<ltiO>}YF`b&EHz-o1SL z`uamhJSQ*rnQK;i>`dh5=V#`c%d2cpc(~}O_cXoeeMwJOUCq9>E_#3B<7H=~x8>dD zn<VVOY+d&5*4}jeBm6Ilet(m<sCZ#ewo}=?U)H`*X!o6!m($P9v+j?5cj&11^z|GL zPd*$uEWpSx%{YG1_gK}Vz+h7?ag8WRNi0dVN-jzTQVd20hUU5krn-jaA%<pF21Ztf z=Gq2^Rt5%_Z)ZF}(U6;;l9^VCTf?HZ3o$?q<{%r2^V3So6N^$A^h=A2^mFo)6La*7 zGk^m6Df!9zp1FzXslJKnnaSC@=KA`Xc`2zCdKo3TIW=Xo)&Y%>02vXIQJR}%W#y8e zT$-DjS7K!q0Mt~>V7UDMZhbU0VDqf3JW?~$GfEiD3=FF7?cIu9O?YNXNd|+Vk%7UH z4P}8qHIhhn`DW&(mQ)s`GGu}rs9#)`zW;rJA5f7vvZ4^6Dh5LnOH%`5ATV#9axM?3 zL=Z_yaAp-SU`@<ToXk}}9Ro^gB1wh@c`~GB=A>Hb>ldY_XXfYWrsX827lUlm_lwd4 VQcLGNT?Ev`;OXk;vd$@?2>=Fj9!>xN literal 0 HcmV?d00001 diff --git a/res/flags/OM.png b/res/flags/OM.png new file mode 100644 index 0000000000000000000000000000000000000000..a6762503fa60019ae8a64664d9c8d2d9a0dff6f2 GIT binary patch literal 989 zcmZ`%SxggA6up2%M4MOzi`0c6;zpSnw!+vbkT$f@7N{jkqS)zl+KzM~?Uc=};u4G+ z5|;!)e^{c4hG@_a6*Vz_@!=8^BTy(1ifCN;kRL;+cfb!MadO`~@1A?^c}wPEnW01y zpBxVW5}j6UM3jpoE(YhP@yqN8%j`w^B7lc2D`%Nl%u`scQ4i3V4iGp8@EfVX6o8)u z_-Y2ATLEM>x1N@(u<*HTze$4_3WbK&$%7kGhSPVB?92>q+7gtf%=Ep8L?T0p$s^k{ zCXcdHymM5k3MOwx9?6OFis|;-KU%I%lp2Rqw$AiDM{;a;;TNwzY&tlalP@|vdmfpa zL+6l!LQPP<Ih2)$JoZi<bD<%YuuF`E1<q@e2G__iL}orl66K);F)$sF$-Ah8%PQ#= zl@!yDNy&vw9Grou04$_?EpgC<7ham;9p`Sh>_dnWjD`bHIQhvYCYF6AYG{t#sKsPO zjkeN<Xr3R_)x~ddv0TvUHOt3hrK_W*{v9d_Qq4Mbk!kx|)|`|YkSfh)tHs7}?B~(f zP*{-Z-c+^cRMdTMQ}L_R4$JtVa9Ub-7iSIUhu=q)8H&nvm6{6uk(iAT&UyUEFU<Us ztir;ZI9Z^7eS2%$&CZy+x6XIpcr2j<{R4voyYoAcxYm2=o*aoM$Lkv#I%A@}_2W!4 zKwWQs_w2U^tME))1<fJB$_O0IdN~BhA}OVU%vDfI6O~7kSu~~GMN%|Lei(9${?p*{ zSb1B+{~J0kygQ5yN^u9D$0pP<UJeMq&r3KxEaN164kQSxhb43_#?I*(JI_`tlmx-M ztz3PkLvT4y)VB4YMUrS?a`;^qnpS&Qzl(DVG+l;GKA`SIo)Jql^L{j~<#@Y8fNYXH zk$AcaHL^uMe>DertKfh<lKet^$DbY6FOuka7bi5-aKMY_BYd^?mp^L^OMLVuQ~{M! zkV|Icr#yT8jT<Fv7Wo|D8}VJU3Ucy_H)Ql~!|IMj)e55yY`l}B3Bt?Sd5>FRb24_H YxE)cd&qU~hlQ*ylbQ*)Yr`X)|2XoF%yZ`_I literal 0 HcmV?d00001 diff --git a/res/flags/PA.png b/res/flags/PA.png new file mode 100644 index 0000000000000000000000000000000000000000..ed18bddaf64449541c98b83f0030967d6dffce22 GIT binary patch literal 987 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l(-t;6XFV_@87@w9|m4_ z%(}>HcuBwnDDeC5-+y57fB*h{{{Cy#(c9Oby!-X%FHm^d;hWMa^TK;~JbLpPsN}-^ z*HQgD+t;4?^B1J@+t1(czx)8QU$xJ?$f*Z3uwmuNx|OH4%-9GNc?m=vvp}eQCPTnP z2Hy!lDTbiQKsL~*e?NZydh!Bf`^z`4r!Rk$TJ!b9g@1qk{QdkD$iAlL_G!;?Aot6W zv!C~!`1$Y|*nubn&`0{ATWWw5V@Z%-FoVOh8)+a;lDE4HLkFv@2av;A;1O92q!YmS zL$=d-AcMWc)7O>#A*-MOlVGW)4KGk=mZytjh{pM|7q<!>HV|+Pe6Gr6Y;1AnjL-l7 z-V;sF`E`Y6-FG`Wb9*n(Vb7f<k!&-iKb&x{sGX8qry$_cVcMd6F=Ebr#fd&kjrXKZ zJT2ZeOV;bDS7>_K)~e>9w4k$L(H(x<uZtU{GG|%*+PN^t$JZyJ>!wV^hPJ0!dvAWS ze)Fw;@iR5Q=ch%@@4Y+l_~iSzYkR+6|MzEp@h=9cTA9qphm|dWu2d~?jVMV;EJ?LW zE=mPb3`Pcq=DG%^x`yT<hGtd<MplOA+6IPJ1_qaJXFNdBkei>9nO2Eg!=kneF+dIG zARCJF(@M${i&7c%ON)#2bMliDbM%WdfCBm{`N{g8xrynizKQ9X$=SN*`udr9DXA5D z86~+nHD$Bb0gaFV84;3Enww;0<&vLVnwy$eVr3No)Ktu1xcvWaeKa*-^Q^2qQZv&t zN*Ig{3~EH{<A7?!k<5Xr3C~O^$zU)sHJE<q>|vl1NhBq{nYpPYl?AB`nIQM+7nh~) ze_!B-W{z(NP!)rriKVH5F%XzHPdS$dR3d<6PH<*bDucPDrPC{iJDET^O(eO{AWw$0 t%$!s!ef^@;^vwJ`-L#y<^kR@@`T>r5K&rby;TBL6gQu&X%Q~loCIBVVq@Mr) literal 0 HcmV?d00001 diff --git a/res/flags/PE.png b/res/flags/PE.png new file mode 100644 index 0000000000000000000000000000000000000000..7485279cb6e9a9dadbf7025987729a3e477aa6ca GIT binary patch literal 680 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBC?OHx6XFV_@87?FQ$YC! zkNmUL!vFvN{r~?TC|E8pcK}E+mIV0)GdMiE0kVuS$=lt9p@UV{1IXbl@Q5r1(g|Sv zA=~LZkilN!>Fdh=kX2BCNw8GYh8HNL;_2cTB5^r6VS!wNhzpa$x=E8Jc}7G<bxfQz z>CuKKi+)Y7VqiEMtyz5Ki#o_W)e_f;l9a@fRIB8oR3OD*WMF8nYhbEtXdYr{W@TVx zWoWK#U}$AvaQSw|0~8Ip`6-!cmAEx5YP%2v)L;&>p*TOSq&%@Gl|jF>xJW-IKRGc+ zzc>RZpr4YTtnZndn4apJn4X!Ot!u8YpP84ETA`OwlABXgHftTw2nmo8AsMB)Nmf=a z`N^fZsd*(<Rsldw#SDha|L@jEQv){7%E}`(Gd-h(!OXy*>fYY1KsDk>=0MeiXQq^7 zFjyKGJStvw6{tiKNr`V}ZfZ$oK`KKg$bI_7W$F9h7x<x>;~N50#b9V+X=-2$1m?|C z&gB7>2q2jgoLQC1U~F#eG&Q(yA5cycNiH<VlOZiLC)G+{zbG|5Ge1u^EhjO(7-X4# YfU6#ms{7C;1=Pgg>FVdQ&MBb@0A$nBNB{r; literal 0 HcmV?d00001 diff --git a/res/flags/PF.png b/res/flags/PF.png new file mode 100644 index 0000000000000000000000000000000000000000..6623f41346c75bfdada751849380deb42317d5da GIT binary patch literal 1099 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`&><;1l8sRB-?P{d0n9 zXL*$|kkXyd6etQyyAzgrD=6_!XzCpx8!Z0s*Do;o{r~NaPdg{yn=$>*#o7N~U;X#% zH$>_`5PZD-ZF|<s-mnV}9v>Hle&3t`6ak3?!R5)1yMvxg%D&*@|F|#ZS&!HM%M(H3 ze}DZuS#!5F=JbroC+5ySHL34WTj2jwHUIzq{{R2qq2uS~m2|I<&7IgVcS~IE%(A|t zCocds-F*D1yyrkp;fm<09hrH{N_!98dHNaZj9<U*J$yHD*@cRUM<*=3@Zj<L|6mtF zd~q*4^+r(g1)l^U31mYA!9k$}B+v0df(66|hSjemdww9rSQ6wH%;50sMjD8d<n8Xl z(7`I}0pxHNctjQh=>#zTknMCH$Y3w=^mS!_$SNqnBv`6x!wVEz@9E+gqH#VsLBgj& zP@LhUVIn)r(-{jJTBr8TZJx|}jP-P(BZE1=zWn}%1rrRW@J|zNWC%1Y<n+|cl#I0G zkk?V?XXWbhI;FKL%Rq0^oLz0prfut6H*en_#<n?o7EavQxpL;tR@G&8mD<_T(bm=M z?&>;4pU&y6%X=p`Pve{8oTpFUK7RdNUO+-br|F5`ih3uf!-tfW7B5Pk@Ryyt<Hn93 zEk~B5Oes(_U-R+E{RfN;Z66iN*M2ST0Xki^#5JNMC9x#cD!C{XNHG{07@F%EnCcpu zhZve!85mg^nrj;vS{WEzzMb&^MMG|WN@iLmZVijtF2n#en1gI6&QB{TPb^Ah&@U}6 z($C3HPR!9S&HxJNr{pK=d*&vlr}`$QXC`Osn(OOl=B1=o=w+1T=G2tUS_d>j0%Sx; zMrm%6m6c0=a%paAUWt`e08mpggW>Z3yY<o3fX%bA@<`20&nRIqF)*l%%DfF!BaUPa zR84qhN=XKTnSsGe{kOop#UP2K#5XfHwWP8jl_3-4KK<gd^!@J({Lswt4FRfRFf_3= zH82JO^X4h%@_<SNk<1CstV(4tH#4?y`d1M27AUESBpDjy$&i+rlWL`}UzD1jnV+Yd gmXnxX46;o>z)cTGSqA($1=Pgg>FVdQ&MBb@0RAAwQvd(} literal 0 HcmV?d00001 diff --git a/res/flags/PG.png b/res/flags/PG.png new file mode 100644 index 0000000000000000000000000000000000000000..92504c5147a52a9e867b4d27fe14ea17f10e9d5a GIT binary patch literal 1490 zcmZ`(drVVT96o(ud93u7M_USvKI8(a<=(PF=LI(*Fxo;J2A%IE)b`RAD3CrJuq|P_ zEGm)>=5RqJnJMaYIz+aJ%<MlWZUXBv0a4L_QzT5cK$dNq?N<s6NOp40`JLZ6-}jyG z{BCj&lo$)S;o@+F5Lc(oFNGK%7@;hfFNd>j5ZJa{LoPxWK8$!~4uM=^(UuwzYQzz0 zdLN;`V5{j7LS7P~$K?o7pCTlzJ9hc?9E6xuNwKK_0231vhINs>Jn4`8ltDhes$=*d zbUw%-6+5hxn>fVBp|8RC<?H>D<Yi<mlie6D9N;GpuR#J=fX_51+%ZaTL@tVeGPDrH zC|k$7#FMS^fZ;bY<o9+-=D!mCemd@MnKXEBkP;dewlOm5KT8-s{+jH!&%}RR5j`6g zJijS`#Ym=nkQXpdL$lii0b_yzEO|HzpV%UqZc3c%jsxU;ujpx~`1X=3z$=wXf*{xk zm2r4|L03F{>{Z!pTl~zygb|JWR-P>QUIv2^9UaZ#a4-x@O-*I8SmaWn;Oe1Re3X)p zX3HkFN#O0^pUdU8w6wgk&{|ttAziE$768M0$8u#sB%94vtJOlGki}wwczk?3lgSJe zYRS^DI2rnKO_Gw5<Z^kiIEx-YbK&y=2KGS&tb$q)6C_qvRyv)|;10|SkHuv&*|HSD z4m-|G3@QX+VrIyD5u)w&$3`G$cuI|BX!9?l6@g@TQDHvXACjnrB&<%m-3_sPVLYwM z8-fMLqcaq6?uYO(Cf}Qu!v&5)m!E4&9kP^*Oig@6({+{VVt3DleGE>DP{Z5L_;~Wc zq!5c?hKDxqKX{->tCtSwioU;geL#`gqewe@`poB5_Dbnguh-|DpX0vJa>!78;|Jx2 zb6>R1jg9KZ$Fg6hHuhh--1l~UV}tx?+U(@a!z4@;lMp2qyvUD><sNBf=&xSYeV4Kx zPd?>4*=4g<NayH>Q~IKZ4}>v-*dvGAKiO*9BAq%@RoT@w^Elo|i;s5f+%bMD8*?3h z^NxShm3N=}{n5CwBZq$6J6+coxA||MZLqDqb5r4t#$UhrGeVG__h{z^<rV96#`FWf zUm>~Q?TT$n@@@Tcd&CLf$T?0&zge#6xqb46AM2*i_Rf7hoBh$$9(~c1y?XtV_V&9M zkF?f3<BAcwR!}mVTYRVmDw*sl*ygdCJv3!;(GXAusnRIPOr=U=Qe{zO2Bp#{NEJnr zKaJb(ts*#Ut&WO@|0kUIV0af0G=Ur3wH2PX%q|)cUbl;=uC<t}3AY_K2y3l{&^gUE z+F-UhELBPkK{#rxbbY$r<E(yXPse$X5CtSmcCT|cMdjC8yiU5tLs2C_awFBLfBK0v zm<2tG($Wr_-GkJbBwKmB6EMORI*XXC4y(tGvPg28n1x>)idz9OIGnVnp^iq5fIq^$ z$M)@$I^!B0g9%VbrQVoHz64FP@9<y^K=><k${dX}QfFz@c~R9vvv8QU;_!`99jb6t o(-c9tXq%(9Mp;p9wz&hh5haD`5ZL6;jX*-W0%QL9yz;&O0zs47YybcN literal 0 HcmV?d00001 diff --git a/res/flags/PH.png b/res/flags/PH.png new file mode 100644 index 0000000000000000000000000000000000000000..d6d676210d8d52e7ea24dc285648ff8fc59742e5 GIT binary patch literal 1196 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`$4=;1l8sRB-?P{jEoz z*rxAcFkiu7ww%FY1qA*7dgRH&<8`yIN_uZ#FkKFk1xx+^_3Z!OH~;_tKYjgOc+D{m zyVWSV{(t`d{mY8ok4+MGfwY)I4gCN2+rMv@|9#x`|LckWKd(J|{iS~PWl8UiC?@~? z{O`?zzjyrp-jDwGar^)OzfWIz9A15Z({UYx#VQ6%5c>D!<lm>&e=Z3Bxvco_<)nW< zZvOwi|I70ebBpGusidW=q^GN<|3^3H&(||2?<Zznme#u{paMZ~_xuC8=huy2&!0bQ zpLAKn`YfOFIRVvkf@%=-|Nqy&-#)xsx9x^w5J;R~1u6~-gtuSMUA~`Ga9%<eqzkO& z|JS2G@9uooJ{irZk309>@{B+>0T}Wke=^d56k|z{UoeBivm0PelDE4HLkFv@2T+Ey zz$3C4NGE{this?wKn8n>r>`sfLsmfnCc#oo8(yH$Ax{^_5RLQ62@*;Tg60VcDM@LG zsmad|usB%y>E+4A+0`-T6g4>=Qd*SsNN7^fjG{w_4qY<ZRP>3f%WFo_DXmpmucT&0 z-Ll$M^`ht(TbtW4wL{C&o{3Eh^I%X(&rQxwf3NW7#gjLWUbV3}6upz17kAI@(7w8V zjE#;!1>!P7Qetv~lA^N0(&GIr3h#V8e7yWTeZBkp-6x+uA#(22xszv4_xB&4psk^! zrKhQ@-G5vuJTNjeHdtD|-<QwdhDVTrK{wVz^Sp=U9-wbjOI#yLQW8s2t&)pUffR$0 zfuXssfvK*cd5EEzm4T6!p}Dq!p_PHb<=Yt#P&DM`r(~v8;?}UJ?LrJtgE`2C;{3Fd z^2DN42L00FBK@5F<is5P;tZgGeoB6_zGrS?da7??dS-IAuDQN`W?o8ag<eKUZca_v ztaU&mBtS-lWR&J6Sy{Q{Czs}?=9O4k1pqY_GZ-%azgr(o4cI&@E05I7^o$Y)6H@~g z-MRCCYQ&MufvO45Oex7=urx4uRJ`gcP>Cdx65q_+)RM}AREA8D`}B*;()YhF@Iy1l zHw37P!O+Cg)W8@B%$uj2%L6JAL^3BhvkIuf+``<+$<de%D5;4g85-otkd~Q~YNfAV nl$xHIpQoFalbBu%vQ0n0Lk~!`B{;1HYGUwo^>bP0l+XkK%&Xm( literal 0 HcmV?d00001 diff --git a/res/flags/PK.png b/res/flags/PK.png new file mode 100644 index 0000000000000000000000000000000000000000..f7c8bb94e82e5a623186c40fcbf8ae7b2d5a5397 GIT binary patch literal 1338 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`*!Ez$e5NsNnwn`~Uy{ z-*#djyQ?CjqYN>K!9j}2Nfy6Kpc;)hd!sZDxJm{GX$E^KWL-e6NxIjpElZ_Cj6t#v z(gHr30X50miB1Szj?$d&DjSaMtefA%U?&084pe5B7j*sM?c!-oKsMY!275{UWY^ap z-X?SuLR12!_`Eej8`6O;VRn{7sI-%GDhm7c`&aF}ZU#F^xHyo3;X;s^?>>Dvd+U-^ zh!M~VxMGNdAzTKKBbC=3+O}l(I=OH&pdmm902NCF83Ga9kw9_7RQF4FuU&g^t7qkm zf+_WFOD0#%?hx_Ug{y(MK{MWd^1As~?%#a$^69DT=WFM7fz3gL9?&RY5Qzln%7vNo z`)C3~8`%V?t3W}D5C_Kff|vw*AjMb`<QL4~@a#q!h?C^)?!wT)D(eB{a29w(76a)7 zF#eG3bRNiHFY)wsWq-&jD8M9Gs%gUu6uR%};uxZFJ~=_cr$JDh;iO?BgE6<Zw3fr< z<mV5bJbL!<>Eq*5gat%|!~{i!r%#wN$!+rFiBl(s2ZRKL1%?J+cbI(n%B5=;uU<Ac zFflSSbe(K$ynVx#P1`nZ-CSN!Qsg$ZxUjVN`-d-|zJ2`qnV-XDDmND&Cogw@M^9H@ zXK%OrRBsO-FF#LT@AD_loI2;YS>IfL{>lX#R_s`^Wz8NY-*uZ-?P^=OZQZ_w8&~dR z^<B4h?cT+kSMOfFeSJNX+YX;OCY7hIWL{1`Gsjfg*yj0}x#sl;54m=4Y&A`@dC<B4 zATxuyySb0UjwP3YUR5n|jVMV;EJ?LWE=mPb3`Pcq=DG%^x`yT<hGtd<MplOA+6IPJ z1_qaJXFNdBkei>9nO2Eg!=kneF+dIGARCJF(@M${i&7c%ON)#2bMliDbM%WdfCBm{ z`N{g8xrynizKQ9X$=SN*`udr9DXA5D86~+nHD$Bb0gaFV84;3Enww;0<&vLVnwy$e zVr3No)Ktu1xcvWaeKa*-^Q^2qQZv&tN*K%x465$!-3nAAj${s0O?YNXNd|+Zfx)BV zRab#ZB$1T(X6B}rR2HN%WP;qMUtE^H|9ycUnmN89KvfKeCYGiK#z0`+Jmp*-P>BGN zIl-A#sSM@@=1$c@r!s(Ynn-e?L7oh0nK`Le`uatw>6!U?x@kFy>BS(+^aH&0fYiYQ R7S%va44$rjF6*2UngDdcm~sFB literal 0 HcmV?d00001 diff --git a/res/flags/PL.png b/res/flags/PL.png new file mode 100644 index 0000000000000000000000000000000000000000..8303b1ea89ce56a600feb90c669a4becf3316988 GIT binary patch literal 689 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBC?Oi)6XFV_@87@w|NsAY zUGwe;THX->$rxp3eg{&FB|(0{3=Yq3fNWw+@^*J&=wOxg0CG4BJR*yMbOIQE$aXpp zWU!Zb`ns||WEB)(5-ioU;ROomd%8G=NL)@%SRg0h!p6hn<i)YT!+YHZLna9$gN_{v z4a&^T85&G1K~uY*#lK=?s0`AMliz=-0jO2A#5JNMC9x#cD!C{XNHG{07@F%EnCcpu zhZve!85mg^nrj;vS{WEzzMb&^MMG|WN@iLmZVijtF2n#en1gI6&QB{TPb^Ah&@U}6 z($C3HPR!9S&HxJNr{pK=d*&vlr}`$QXC`Osn(OOl=B1=o=w+1T=G2tUS_d>j0%Sx; zMrm%6m6c0=a%paAUWt`e08mpggW>Z3yY<o3fX%bA@<`20&nRKAFfb@^n6Mwan()k& zk_-kzBMSqb%s-JpHIhhn`DW&(mQ)s`GGu}rs9#)`zW;rJA5f7vvZ4^6Dh5LnOH%`5 zATV#9axM?3L;y)iaAp-SU`>pj^jC&A0p&E2<U)fy8PYOyQmyp$i&E1w^Ye7mauU;v cL6+$U_~-$t;s;N%ftnaRUHx3vIVCg!0NMS`Jpcdz literal 0 HcmV?d00001 diff --git a/res/flags/PM.png b/res/flags/PM.png new file mode 100644 index 0000000000000000000000000000000000000000..2507c86eae0888cee78ee7011d29b6b3e15a17b8 GIT binary patch literal 1741 zcmZ`(X;f3!7QV%SkN{GYFe!$)AR#wQDJd<4!6aphAz|==kl~V~Buq&NLoA~Klr}U> zk%G&I45>WPK5eV;1hJGTPmxKqAd_07V1<IT&gsQpw(GsU);`}kdw<{l&N@F%B`u0< zg0w*b0ANC;gwkQO-AKe%c>QAHDHDdxJW?bH0KQeCUa_{oXAFlzj|6~x7XT<K1ArHB zspug9NI?KtOaTC*8UQRao4WS}z>Tf!aB?V&a6Av`DTKi&lae5YG39Npqy^uAH--{w zWSHT?miNsJ-j})sn82o4)KC(GqW!gwDr7RPw1v7^+48}d<d?*;-$#pk&C13c(0deS zRa3z&><KeN^CUjIYLihVDl6=cnUvHrs=*^sj;K-;#-8LD0wSkszddAnP9hi0-ImQA zlzr%l4E4w=uQbxnG&I%B{h?oN))yCacNBgFSlQU9WVRD`?s&)vN1kN-uoj=(D2o$1 z=NB5z$$O97m}G*x<VP<A+0MT{6_|A*HYgwQ2*WgKMUHJ*n0fl%rI8xnGnx6M-ASh4 zn4ONVqkH<+i8VcSKe&7vU$ZZLCgzSq+whL{3w9I13dmcVJM`-C;Ds3e&u)_swyn_? z3(f^2%l>_32Fv?Ljyx!BpxmOfjj`=F*0YcAHlxX16!lsV!d<0%NLN;0?S9oFv@gH> zYy}bAs0nx2A<wINYF5|peJwUHXf*k~D?gnHDUkgZR-o>fCX65GQzZo+ygYd%VYP1h z`1cmA1I9PK2umlzejlyZA0_ov(p~!(GXr%fRd;4R6S~;M=v34EN@_7rfa$Y-1MU4D zNsBun_AybP>+L?5A!j#qV+~SyC~9@RyHrjX8T{@W#7mprRzEc-xzI3!@#a&RuzJ(2 zTdE-s-67TPht{}`)7*RP+uE7s?Po2(SNBUvetj3q4a1EO5I?ydv9CllW*rbRMfdlb z9sIg8dW9cA&Yq3VX{~pSJ?7Z*<HBrt0{Z;m+CpiBBKf`wz2Epq-Q;|(or0BuMwT@; zf^@-t_VvW`s-nlnfnQFJztp)OhD>+)a)4IkR%U*qW{#cdHxTbq_L=o#>*c$`o9)ws zxoMEo@#k{NjUPv(iQ4|%i0c13;oEV?DazK^=(u|Tb`c|p;Yboe--JsaxIDjiSQ#CS z?eHyZYGxDKrUL5G7uQO5>?)^$lvy96%?9drDrQG&s%NFS@mYIuwE|hw71gjZV%4KO zweVT*G3Q<ZV}?AZ8La3nX%>~MrC<9u%h6@$y(6NprG&3^x_`N3KH>AgwOw;c(|QYg zf?TNB$_w<abXZy%9Ql_|!>OHdI)@2sqx~mOkE55`CYD#C^f~l5?Y7&JJrvFd@=V+I zwrDVn%Agce)MKq|K6!HQKDT>CxfY`_^WQzg+YCAHTCjVeHDHjFR=?k?kN1c6HZqN~ z9lWbrUR)KBj=#uJ6Z{XqK~#8+h^iB=Y}-?-tMReH{A!>$^Ju+qc=l%#?lt0M+YPT2 z?bXP%+D=o;n^xFaGfR2aqEz{xblNWuEI(RH-10I2L1t5n?^3u?5M4QTx_-OzS;c0C zOGJa?TDYLf>i+sV#i<>YkkpUuZu0bSjXRgH|C^d?7Sx1cwwg^j7h7C`G$!Bu#p$OL z=Jx*_TXtkkS-FQw4`nB5J1#Xbomf)?;jg*a2J<9)jk{Vg%pZ2(TtK<4Myn%=U)v%K zk@Y3)f-9FV`&ply?;Qg2ra2f9i)g2aHbX7>)LKz4(JWPi+0L6D860it`Jh5Su78~F z{p3+$S0C`<%7Vv(&uM?a|B<sKEMCH8NgyI88-fAw0`UYa=!?Y@7<fM-=taa6_JDXI z2#!zl=l>!QWpD+ldH-L~q8Lep1%wR;aYm{{#>$2OoK&2R6J~H&LY$Zn7jWDR4vs2f z@t{Z+PrymT5^y*{Iv2|I<V!?Cc}`;&Ji=;Y1cNUXv5Cac431O;rAvrJ8Y~h6_zry! z?r)s8^N2(WB;fHS009IGcHS!a-<&uBSHcJIpfA`R5}OZmtl#m96o?>6UM2(xHZF)0 z=kWTLGoxUV<+~&X%mVN}{=T3$9E8%^;dGd?{T)h-ARm5MFF!BPJ2;<lash6;z0+pW tsX(eg2oZ6(Y=|ewNXMoMSv>KEAC4C32}4xT^=ViHP{X1^yMj|n{si@m*D3%2 literal 0 HcmV?d00001 diff --git a/res/flags/PN.png b/res/flags/PN.png new file mode 100644 index 0000000000000000000000000000000000000000..c5e1d88463bea6892a3b3f07d531c6216f665a6a GIT binary patch literal 1684 zcmZ`(c~Fx_6kj<+5L(cxXu)#H9g=_$`Q%8#6@)-Sf(Qgi2wx6JNJu^iN5T~ch=8c2 z<56IQT3QZK)N1PiMQyE!#S>IOKtb@TU_1Sz<J4||>CjI5&D(wN?f!mm-|l<!=@>B) z7G|5w000(|w9q)HKh}>`hHyS_W+a5lNJybm0O+n;{f=i0eLFrajt)SfGXSN#0r&$h zmCgc?O90>n7XaiC02|~D=a~Tj7`$Xev%?@@e0=;`e%)B-`BL3ko1og2IBmPA>LHaK zopcyDmyoFyU9!Cs4Q;%v7T}-;PMRfgECx<c^saaK-g5N7{rWGjcJ#@07tZDFe?X1b zsM~AMx`#*FFLhi=Qg&MTRsqKaE+je@8@Q@Waararc?%Ji;z0X^xT;&S=T?68j7B$m z_=}Nr#XWq;L~#vtr|XaQsP>%{Rql!?hoKC%s5fnst@2Q<^29tNIK=HTBWJaV2WH?> zu$a}OVCHZjV<?dMfWmqd7<(T_xozY9D2VYeh%p=xI~2qm4Q5Eag)kW_LLOHcVogo7 z@t26?i4?Zjg_4!53|>RtwHRtAw?VD#9{T>)>$X$9ds_!J`-g*=SI=CZ?7KPJ(Ar#n zEM0umjamyFG^TjjmISgbi;S=m<T>H2%z(V&h=$Ke_#M2(>uamd^f#TpsQ!!>Q@J^y z`go>pl*(rF8hzsqH`brKd#J5Bv({@{83Y@;<=I5V#0qJcI<QcYiWO76SagLZ)Gt~9 zbB2lKr`Dy?$~XFGVId6N%HqSd5+AWka5b<iGIlScaGDAg&HmfqYwO=C9%Yr)(`Xgi z>?#Z?Jm@9Z=}3>ZAj+4DXs_0%w^$%pQ@x=lE?ytl7yWG;yQxA2fv)^C+k%cg9hn4e zOHfX}vW!GcOau-Kb#&AOC9qj4POMH`*&LF*FKKg<DqIk}ZmVK3Z8$rVB}tN<^dg_E zI%`IWy9<N!0g?usmUWkthRjMO^TMUIc4R)8$zz%0R7>=QmRswMnc;HRZ%0jWxweSR z(0Lhmp~3XvMOo}v0DR;fJ+R$ZU~w@lKz{Z>pm)-vB0@oxu`LZcrgB=M5^C<kn9HIL zLc;`$q=%VI8e3T!Smn9}SU?UE8A@Th4)VFy4y9HkE;l1xz(e^n6H`x~O-?`EU}^c$ zn)O!e)>>MEeq9u8N92v4`mcMqy1R9J-QJcZ$`rqxeev9I+T6Uhh8}%$0OxtUQ!07= z%GRc_A%!zG8d$1mN_`yEQ~c+OGD@F)GjGyrKl3)RJ7?ZhNB-{ERQ<g(zts$MzG@h~ z_^$kN%aa3lPQBgJ?|zh%OP8i-Lij9YR913PgfKxBD@%L7TlcB6;dE<sqo3x-fyC1@ z1C6ATzRO|N2R&2Hs(<K@?-&NtLtV+eyr-=<lh0<4^zdi8#)^LbWu#<cqWMY$x!97t zGNR5lIOpxX=RU&0#%ud7$mj1&dnBAl>CO3deZ}bO?W#9pC3ADPpSr{nr;M5cOXlC+ ze@T*!n{xXvy`P)EJA+T_)tKCv)K%IWfcZ`8Db9x%_5ZRhSlBKsgNLCAUx7jeya_}S zj^K+UlGsE)gy4-3Ngf0uLLl575l#GqAeCi^1qJ_4XsNixfdrEN1f@)Xsdx$$;B%D< zyhO(5N$^S$T)=0@`1nXEPl(caLNPxJN5bR9*%@fQmk5(e)Okm`U<hk{2(~C!nvNi$ zGJdWU&BhRf0ZB?g{ObJ${J$^@@eqWDiiIK!_z?(&k1u`m-<Sk(1||YTZvx@!$vh^+ zY+QC0T`Wbh0yzrA`ULUHJYnw}c?<+?SPo)C6d-Q(_a*qikEE^tIU7ROEQ7Gbg(&dx z_w^=FzisyY1n#;m+l`Nl1Ol-HMeuk9Diq7IaRLcXsMH^aXT*3xWombBH6($^u$a&; HD!2SEWISLK literal 0 HcmV?d00001 diff --git a/res/flags/PR.png b/res/flags/PR.png new file mode 100644 index 0000000000000000000000000000000000000000..938c83502f9a36227a874457f9279f1d365e9096 GIT binary patch literal 1363 zcmZ`$drVVT82<{Q!fb??iHfth43RBx@5O1u9a$)ArKPmAP^Q9?QQO<w8z=>O>ws*+ z*v1gE;5Oz6k_rAp!kE0~mVgU!uYkx~kvC<|&8dU7Aj<?~=eDqQB%XZde)pX3_xqji zaYm(#<NNLL0|35EDo#Q^h}&De(YMWS6OG&^TBHyGG?zcKto1?XV4XBc0Z?!Npy+*o z$LOl)9)J}GxStL{RssZOSGTF70eDNQ1dRj%rl+T4$i{}9u@87&c7Q+E4b;vZ@soz| z(#~xma{$Qx3#sg&a)5eXaCG2wNcPCHFU;@XXBP<O)(tp-%hXOtoQq5yt*IGvjM!H1 z*j8q2E4DRrV|Z#iBsw;~?v#J9*gm+j^kfySHM-KiHN`G1Uf_;O&bFsI^q(#Ek1jr$ zv8~#s+)^m&rMBZa^GxO9Pq&xT${!ufaB`GHjuMo5FHc%I7#2M%2u2yYl@YjWY`L|2 z>3JGuxSnmI0~E6<*!c-B{;aEBH+ZwgUh&P}jh&AR>;75;|EnD5R_1C)V83II5XOn{ zp&3q}WIHIHn($hBTwUw64{^1-UqsD!_pP>e+_P`4sH^jm{=yLRhR(Z3Mz4>|T>_dK zn(tRTMV|9TbDtQq3XtQmNy=o1`EA6&9Zt&Q#8B$<oD>~=v!y32$fvuuJtMXc{cK@n z3dxokp8$Wa0Bcw@A6-3^iA9=&eY*5r2}J>c&_xifO)brq8t<mPp@G8fn4qI5_(kaU z^*vi!c1A9ZmvskwH&r)OUoF1$NlRIMRa?mcub5x;SH8Bgj~4jbK03!c-aGQ+%^MTn z4_+VpdAN7#T7cx@r>$qdywLt(-RIwyH(o4+vUlDUUE6=ORyz~$v3h`L&T**Vyj+?P zuaqg|eVsS1_jdKXW~EPywCWrgb0S|trC9m(uVg&9AGGH}Raz=B88$vVH86T>a%lW^ z`AmoJj!?xHk=C(=-G_)DsNsiEmfw5cZ1PXbi%7ky|D)yZ$Q@qdGJhYy@~a89yXWL$ zRCfp~InL^}EJf;aDdZp$Cxqen;c!BzA&!uEBuNNg!U+<`hsKSz{}D`PJ!8m!I^j}D z{~L%P<X*6t4eVRmTnaF&B^S#y>$I7e#fUC2y;+CJOj?>!XlX{55iZ0qCQDD{MHpFA z=G&*LE+dIuoP@?`HJv0$u~}y|QCTcWsu0NnMBQpTwgKbPBS|U6&_))H;CR8*cUKT5 z&_ibpbBximMu@`kUo7>v5M;LpM8TLSHb0vJhRYALoT5ACvXvWj6dHsA;^nBr_#w1} z?^X0>A&9?+PBK$KK~$75wqkF|O%x0Bh@~XSz`$fuB!=ZuG-J*RH)LvQ3-=hNN{T?P S0q-eAB#=pz;>)q=#s2`ZV<%1k literal 0 HcmV?d00001 diff --git a/res/flags/PS.png b/res/flags/PS.png new file mode 100644 index 0000000000000000000000000000000000000000..d106ba89fad95d8826a738924db7ca8c0e94f29e GIT binary patch literal 1060 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`!UT;1l8sRB-?P{aP+@ zF(wuu8wkz{s!ivSQD<fcvd;;sT@+N?$gk+a#>)ui0!1zesvQ<kN#zjcVP;`uW@dx| zpcDk17gRefpfXR%U~WtM(iO{>!T?0}qLBI>x3KTW&iw!XA0l#=Tk(ct(9g$Dp$Y`l z?zn`0KXMvsnt<AALDhMV4s$omU3z)%(hIvF2qJqyK<%)&da9cdPnj)atvzG49RvYo zFAAt_RM2z@H)X7}WvI4gsDdJp2X%GS(=3q%YpwLf@~z<_#oJ$B0s5b@B*-tA!Qt7B zG!Q4r+uensgH_f8$l)yTh%5%u31Ivo+vz-z!CvC&>&pI+RZxIQuvF8A7bvvA)5S4F z<9u?0gi?c`c|t-;Qd(kS>OrQ4qMSD}Iy!T1Jl(OQvf^jKi^t*uB0^$<qQcW1m>n!V zH8Uk6Eh|}FRZ~M4CQY6a5*QkM{ela-fTgEyu57IBo1$NAZEnXRzRsL6Yi4vrROIa& zi<lP7nY*`n@#M|jt7ltFF`TNbsH*(^<JV921<VU#5&{Z5G9oP07*4smxVav0NuGXK znBN%~<yJlBOOs=i_X6FjTH+c}l9E`GYL#4+3Zxi}3=GY64NP?n%|i^$tPG5-49&F- z46O_dF5k|0fTAHcKP5A*61Rp$Z5LvI8q7g96z8XvlqVLYGU%5U7wPBZCnx6U7iRzk z^i%Sa^*wVF(^GvD(=(H^b<OqlGxJhXEA%o-a&v0RW~~DnAptTXB%?Gp$;!$lKe;qF zHLt|VDgdadn89%Q|K0j%YQW}MS$U*pre~Bem>C#U-P^kryPELKl#&bvLn8x&BOA&B zfodd??DEabO)aS`NM*<bIZ(g2EPem`0zaT4ab!gyKvfKeCYGiK#z0`+Jmp*-P>BGN zlHkm$R0b0h3#XT67pDT{G?C;&gFG41GILU`^!1BU(=+q)bklMY(~Cit=?4Vs0jY@r SPb`3%7(8A5T-G@yGywpZ-Bio~ literal 0 HcmV?d00001 diff --git a/res/flags/PT.png b/res/flags/PT.png new file mode 100644 index 0000000000000000000000000000000000000000..168f0605701c0411823f3eca4a20541052871bdc GIT binary patch literal 1138 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`z(8;1l8sRB-?PeTFm! zAmU77I3UUJA1DOo0!j8nhW+A5BB>1AxeU7H42K*Uev5&`Aqb>Cl|i?PIjfsHy@~T| z2FFu>uIJwDf7xJqQyCP?88&U^JP{{($=CRLjM-ybrL)bV&%6){LMAYr+{X4I%;?_X zvxkn{cw1Ne$VuQ)GQ%%ksC&|8Fmz33JDq5}X8pOjTkjpODY_LcaI=}=n*>-vDuZVi zLuLotc~8X~o3<R<d--u*$de}ChgA%}c%TYoOBgy=GS2Maz3QR<*2?U9hS<#mY;U3w zZqTb?NSV%<)xv&0h2v=q%S%6oKX5OA{m7HUpj*Lk$O*&y;1ELu7ciLhLiPYdlCdPn zFPOpM*$toq2F4_BcNc~ZR#^`qhqJ&VvKUAwfboZHr}IDtdx@v7EBixMK>;SgQcWA6 z*BMrOx;TbtoKH@W@M#bfXE<r-$Y9K^Ep4RW*EhF$a`)`sUiNMoefj+j3npynSRt`& z&W@HPQ?~T1nPW4XY1f=ZlQwm&nzgHK*)+2@JK0#<T4rbEWZ__A9?N2GZ|!X9XzOZr zcOFaibn$TWa(;jPe0d(rc>Dhi2Npb-aA8A%Pq~|mo9po-$BwFRP)$0as=9p1vZd)M zX{pJa)92jT^M}c7n^VwX;dYsMKcs<aO14GzY{zrQ-9TrnmbgZgq$HN4S|t~y0x1R~ z14DCN15;f?^AJNbD+41dLvw8dLn{M=%eONgplHa=PsvQH#I0db+l3gQ26K=N#rbI^ z<%vb94Em+TMfy4U$%#4o#Th^W{gnJ<eb3y)^i<!(^vvXJU2}c?%)FG;3cZYy+?<-S zS?hpCNPvt8$tcZDva)i?PcF?(%`3683IJ*<W-wg-f44rG8nAg*RvxLD=@}&qCI$wT zQJJ@aYQ&MufvO45Oex7=Ff%ZCss9$30~sWdl=x=mrj}F|q%vfJ+^1h$mcIXefghSV zz9B$W42C9_rUu49VBS3CTpmz~5Ry5;nN>g)#s-$APCr%Cm4ULFNV1_po(yT3IjL6q o`bDYfnfZCTX*r4M#UShS148tGlyZTE22c}&r>mdKI;Vst0D2>59{>OV literal 0 HcmV?d00001 diff --git a/res/flags/PW.png b/res/flags/PW.png new file mode 100644 index 0000000000000000000000000000000000000000..2d6e5d5b51bb40b9dae66cc6d2525c17dc949f10 GIT binary patch literal 1223 zcmaJ;Ye-XJ7=BAfW{q50nwJVnD{`H)a;^>rIX2p=Bf4f6vT$u@+o{cs?aVZSq>B_O zmT0Jresukl(G~1M+Wo3&HwRYBS|Mha9|aXby=Q0Isi?#Ey_e^E-s{<!pSMsNn;Z)O zQoT-NK%K(hm?)IzW20@TqHVc!F2Ko}QQu7x^e3Bj1{z>v20+C&fNuy@^a1!tfc|0t zssSL;?LS|T12C*Me~D3xgkUhZsQHO-^v&J+<^ake1dTA*z3jxTHK#A36x=W#C^~id z$PKpV(agR;3QDvQ!3;y$(7oF^|3?t`^E@nrfJm4Yse%bHFhW3%=pZgMgAz+)iC?rJ zpgY)40DHq8gjh7t6$bfFlrS1!T2xW6#dRYi2+a@5zef0b73+jm2<yT&{@C8oio^@& z|JN(#AgW=UA#W)xcoVSl&f3KbHLydHrbB0>Tes4Sx;T74u2<hjV+5zCwIg~Zvbf<g z-;5k7LbvsrT;ufn=Hetxg=`w!QS^e&b1(ClV<6SPBGl4SUiS5iBzk+xIWn|OtGRwH zed^&ujHT;!C^RmizOK;t_>nT}Y-i|<kNf;dI=Z@wUebQAE0mepe9SpoDs{daNK5Ss z`TeVlq`7VF&#uPP9d~<fc8{6<dQx0cLRCiM*yQmOWo**8wD^?7nv9!`yBq5KwM~2X z?`f>Be&6bUdhz>~D+gZIK1j{%H7r|Gu(ELVlvTUZbKdr+B=2ilb)r)Fq^vD|^VS%E zvF>R)xi*Txq0%|+3eIBU7|QHnP{C|cp^}qIxk6=BWK-m9N}-xbDkzeC*kgb3TY%GL zVXfu=4meQRS%d*9zJk|f<u;f+3=lrAhj6&eCI{iQBS2VOW<u{Y*%;bnW6kU3DuQ53 zEKJ!fJLhz4Ds4KBDU$dUM!V0smZCH+v(L$ta1@n~L0(WC{c(XGM9c~2qbME2+Uy)C zNwTaVY5+NjqC64Ka@NAxVJ=C&I@$ITDHB8#nsqW<xtjr&?~m}7+FC!j^Zv*~8<7Qy zta(au4t}bwbsZ&0i4)~n%5Fr4DqF3VpK{~d4AEPmK@V2e!B7O@VQj3cL~eDMY+k+? Xk-vNvDodyO3kHE+o2NOhF5dDJZu0{) literal 0 HcmV?d00001 diff --git a/res/flags/PY.png b/res/flags/PY.png new file mode 100644 index 0000000000000000000000000000000000000000..9cae9a780c5f4d0d3bcd49c8c05532094f1b5aa0 GIT binary patch literal 924 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l-L;H6XFV_@87?FRa@?g zx)d6EQkDltk4kdj?EnA%0ny(-e;z-6bm7v)$B!Qa*&xCH|37~GxN_IJ<Jb3XIlS}3 zhYue=eB63$*WR1EcAY%{WP|nn|MTb1o40Qty?FNK-CH0VC>T|L9EhTUWZkidnj=6G z$YwBI21d&nOd)6)gT)G<YcF0nw*^QsmIV0)GdMiEkp|)<dAqwXbg;^L06Clm9+AaB zIsuG7WILS)GT2KzeO=ifvI+_?36^Tw@B)QuJzX3_G|nd{NVqfznkOWr9Aed&kle;B z7G_q)$0DwAoRc}`j?JE$KTHL70e%8(EiJAtM~|pJs97*aMaIMP^odi7J2Z+uadml} z(kRk0Sg>l@x`iv3@;+yNT9V)p?tlNl1rPCa?589TH+HU^xs$btd&=e`KpPGVyF0Tm zFr0BwyL(6A;c}ouR7+eVN>UO_QmvAUQh^kMk%6JPu7Rnpp?Qd*nU#T&m7%$|fuWUw z!R6Z-4^TAZ=BH$)RpQpLsO>@wP=h(hhT{CRlJdl&R0jRh;v)T={N%(O{o)LufPPAT zvc6|-VtT4?VtQtBwywFper8@uYK2}#Np4O}*{pRyBP2jZgk+TFCRtgz<R_QrrskDc zSp@(!6*Cwv|G!%wO%2#QD=UxG%=C;B24iD`a0{KeKsDk>=0MeiXQq^7Fqjz_ywraS zOsfo%NJ@M&b5lzy3sM;}LGIHpE=%A4zQ7O79N!S2Dh5LnOH%`5ATV#9axM?3L<q^8 z;LNI224hnrBNL~VSE`GFvYJS;p+TMuX_+~xR{Huysp*;ddAeyiiRr~4>+}O6^?=mv T2Y+S)H8FU)`njxgN@xNA#@Ah7 literal 0 HcmV?d00001 diff --git a/res/flags/QA.png b/res/flags/QA.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9d31edaff77a8bc570f9a869e512e4e7baee96 GIT binary patch literal 844 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lxPp|32_C|_wV2T|NsA| zXRi)4OrE6X)+=SxD{cGn(X&03y^~a3f!vRep6{tbVk3(a!$#;un2Bs1&<&6Ne9Z<@ zj3q&S!3+-1Zlr-YN#5=*3>~bp9zYIffk$L9kWK*O57|!VfeiK%PhVH|hpd7EOoFAF zHoQQg2u~Ns5RLQ62@-4#g60VcDNPJ%Vqs=wA`KHBKX~%!nCkJvr;qo0`#A)7NKBv8 zv0{dWo+YQJW@b#0(WatLJD!M$Or27Aa^;FuD<4m~eBsKaV-pSwryZ7IV9<`>2o6i` zT@18CwZt`|BqgyV)hf9t6-Y4{85o-D8kp)Dnui#gSs55v8JcSw7+M(^T)v(007XM? zeoAIqC2kFi+AhQZHJF2JD9%qSDNig)Wza7zF4E7*PfpCyFU|l8=%?f->wD%Vrl<NQ zre`K+>zeE9XXd4(R_JAv<mS|r%~}UELIPw&NJeRHl9iQ9esXDUYF>$zRRB;^F@xdq z|GV|k)PT*ivhqmHOwTA`Ff}z`egAzWb~WLdDJ2;Uh9(9E2W+_>1Jy_(+2xy=n_5y? zkjjt=a-e>3S^EC>1%5z9;>e0ZfU1BdSehCb1A%$-lyiANB?3rFf-|d98H|k#offXs zyAG7oM3M^)@?=QM%t^J<*Dp#<&&<!$P0LA4F9unrALytDq#SfU*8?>%c)I$ztaD0e F0su52BS`=N literal 0 HcmV?d00001 diff --git a/res/flags/RE.png b/res/flags/RE.png new file mode 100644 index 0000000000000000000000000000000000000000..85c2571022744e6ed7a56114e1412f5189824fe9 GIT binary patch literal 692 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87@Apgfg9 zesWad?tlOOgTTLkpG)iCs+zskv;-=+$84Ynq!>$r{DK)Ap4|Xh%$Vfu?!wT)D(eB{ za29w(76a)7F#eG3bRNiHFY)wsWq-&jD8M9Gs%gUu6jJeYaSV~ToSd*gE<wbF$zk23 zNs~MyqN0wj30*D5=dHJ@ekD6Y)G|-;?d)mJK=rC6t`Q|Ei6yC4$wjF^iowXh&|KHR zRM*fv#L&#jz{twbT-(6V%D~|A?TiN~8glbfGSez?Ygp8FAqJ?y9Ararep*R+Vo@rC zera)$eolUJVvc@s22emhB|ll;GdD3k)i*IcGdWw=TwgykFD11?FQX(kr>1PyI-n5} zAR|IDN^_H}tX%SwOLJ56O028`fSQUK4441kt&gS#Y@U^sM`~tzMhSzNfkD;1y<355 z#F5N_stM0bDal~4G%$Enyy_}Yi6oK|-^|?9lFEWqhD?zA^oz^V_rEXjLo>%W1gMI^ z(8SWzz!(V3o2Q)111b?fGAB5*DwV<5+|nt3Pnro(P7_HkG{}=7Ei)(8N?*SyH9a#w iPd6<mF})aMnSPL~9*{D&P!|MhV(@hJb6Mw<&;$TZOVbko literal 0 HcmV?d00001 diff --git a/res/flags/RO.png b/res/flags/RO.png new file mode 100644 index 0000000000000000000000000000000000000000..e77996d5adf7b3d8200568c8937ad4655c99c21d GIT binary patch literal 699 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`YL6XFV_@87@Apk2?P z(HNN)_4|U@pNlYbLF`_r!dX7GbAmwQ800GFsQ@X)k|4ie28U-iK-M!RdAqwXbg;^L z06Clm9+AaBIsuG7WILS)GT2KzeO=ifvI+_?36^Tw@B)QYJzX3_BrYc>ERahOaba>; zH)+x&&xp#SYi!fc$;eEL3Hcwy&%m&7QplfIn=KE3G?chTl%yn<q*^5xr2;7iBLhQo zT?12HL-P<rGb;llD?@W_14AnVgUh!w9-wH*%}>cptHiBgQQL(Wpayf04aNCsCFO}l zsSNt1#YOr#`N@en`o$SQ0sWNxWPQ)v#Pn3(#PrPMY+ZAG{mi_S)C#?flH8n{vRUhZ zMo55+2+1hTO|r6b$xklLP0cH@vI+odDrPWT{(rYVni{ZqR#qOVnduoN3?>E!l~I|u zfojB&%z>&2&rB)FU@$W<c&Yyu7?})`NJ@M&b5lzy3sM;}LGIHpE=%A4zQ7O79N!S2 zDh5LnOH%`5ATV#9axM?3L;%U0;LIvuxSCozU1_;$50ukHk_!#;WJt@*Nww0~FG@|% k%+J$J%SlWx23e*b<gW*$Dm&~q05vgqy85}Sb4q9e0MeV*Q2+n{ literal 0 HcmV?d00001 diff --git a/res/flags/RS.png b/res/flags/RS.png new file mode 100644 index 0000000000000000000000000000000000000000..fc7a2ab717ad9002708b818b8b27e46dbbadc304 GIT binary patch literal 1260 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`!^)z$e5NsNnwn`^U^| zkdXCpGixNS%`sD(W9D`Tot<`hIvuliKuDR|9Cda*oDsb*C1huQ*rD{uBcTDu%x!@R zj)Tz&Q|lvcE<5ww_vYH|E415H=(Io5^SHS!P<Dg4GX(9kaNLt_d$7lHf0yO{ChPsq z_FK%I*PA;l+2;e1vR&TPr1FcEnHQ&2T$|T-x+eBSWu2o-uA*H&w?i41Lm9Vy>9m<^ zAFf+_b^6qYhYwwDYq@spw0>YchkY530~pztPMy2q>8+dRX3e>}Z27fq+pk={ZV=qS zWnT(HcBNdl#giv3d-34@t<75=?cI0x*zqf8FY5YLbJ&$?hPQ)IXzQHrc@It;J3C|6 zrMdGjuU~h0=RUXCR`u}qM=#!i(8~{Zc5XRd6?|b@|BYR{kC#VYoLc|*!Lvs%-~a#r z|L2>Rm%FoXZ(jEF#`W{<X|Im#013W(_x{S2cUP`{efaSIzkfgxH~_|oX}T0JvKSak zg8YIR9G=}s196hP-CY<uSY<tc9L@rd$YLO!0LCA(oz4Rp>?NMQuIvw41qGM{OEqnH zfkMwcT^vI+&L<~G_%sNLGn_PJWHjd1mbPYB7Z+wa@N`FI#m^tCEUhgYPjq&4b$WYv zd7fTy^5m&gr%q~XXlbrqv1;Y%LyQrA&d$!k-qG&i{`U`D@L=XUP;~6rF|}oB&%~yM zT{GKutbk$KW*{gpC@Cr{EG_=Np_zHZoaM`xPv73Zetx|}Lcj)fnTDrMKydhwveM#3 z$w`l$9x&*L%gfK7Fk{M`NwcQSn<&Z8p0IPxnl*3c+}ZP|>CmD_lXNT?PET!eh^%x? z4K39aYB+s$%C&1(%}u76B~HxFWBeSw@#SGA3C<(;A22c)PL1bE4|A0TdReu^HKHUX zu_V<hxhNG#F&G&bn(G>v>KdAd7@Aob7+D#bYa19^85mr?o$&xgLvDUbW?Cg~4U5_? z!~ivzgKQ|yPb(=;EJ|h2FD)+8&&f|t%+W8-01D`*<R|NU<|d}6`X;7lCTHuK>+5Ic zrKDEqWt8OR)RfIy2Q)$gWJE|tX>O90l}mndX>Mv>iIr6VP*X93;qw2x_0iOT&9k!d zNX<;oC}FTPFeq&L)q!12cxFmT27{roslg7`7s^02l1O&>X6B}rR2HN%WP%*1UtE^H z|9ycUP?0#Yq7a}e2164|Qv+ilFmIl6E)S?g7)eQRW)(1C%?(V=jhs}XF7^YZHIbx4 ygFG41GILU`^!1BU(=+q)bklMY(~Cj&=?4Yt0jWDPT#bR67(8A5T-G@yGywp%zxo;g literal 0 HcmV?d00001 diff --git a/res/flags/RU.png b/res/flags/RU.png new file mode 100644 index 0000000000000000000000000000000000000000..8b3df779885e85925a4670ade4dbcde0b33a96a8 GIT binary patch literal 734 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`zU6XFV_@87@w|Ns97 z&%ekAZe%cD%3!&S!E(8j`Lx}-de^mOuWHKy)x5vU#sZ`mOM?7@862M70NKr$<n8Xl z(7`I}0pxHNctjQh=>#zTknMCH$Y3w=^mS!_$SNqnBv`6x!wVGh_H=O!k+__kus|+B z#D&RWoe-18q*JDD49*JISs7&-?*y=LuoPVuP!K$!>)zm`u$`Gvs`1WD4g<jxv8@c; zjd$*HY?!DZes%v9W`^|H-W4<5R)YdYwZt`|BqgyV)hf9t6-Y4{85o-D8kp)Dnui#g zSs55v8JcSw7+M(^T)v(007XM?eoAIqC2kFi+AhQZHJF2JD9%qSDNig)Wza7zF4E7* zPfpCyFU|l8=%?f->wD%Vrl<NQre`K+>zeE9XXd4(R_JAv<mS|r%~}UELIPw&NJeRH zl9iQ9esXDUYF>$zRRB;^F@xdq|GV|k)PT*ivhqmHOwTA`Ff%Zyy0>>LP>nc}IZ!p> znJFb143-84kBV1a1uBt5QsSGLn_5y?kjjt=a-V*2S^EC>1%7De_=W&gF&LUyni?1b zfqC<kb9q1|0!ZcrXI25j)y&K(FsghdP)-v`E;PuKAuTf})k<H#C^bDZKTkI;Co#Pk bWSM?Ys2-3CzOi94P!ofvtDnm{r-UW|PnqAN literal 0 HcmV?d00001 diff --git a/res/flags/RW.png b/res/flags/RW.png new file mode 100644 index 0000000000000000000000000000000000000000..87f718674e2fc1a0bd5244791c4fc16701224cc7 GIT binary patch literal 1003 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l=u+f6XFV_@87@Au<#y1 z#JKP-+oGGSi*7QaDrQ=EM`r0^_f<3PS1uG<d=}Xpjz!meS5Mip!(ic7XVVp{nHS!M z%d#)J?zU>yvTb%#w)h(?-vBfOE(Nqmbjc~R6{~>ayo)bF#TPtefTM*#2j7QtYj+jY z?#c(DodpQAEC26hhF_N$zn*7`Z`6^Avr|a01$uVUtUKF)6k|z{UoeBivm0q3PLj8~ z3quF1tOt<8S>O>_45Sml_(QhSc_4$m#M9T6{UNKM0Fz*;rVTGpsL#{IF+}71*^5Vo zni3@35?PMs9Xt?rfN8g|_0IpN3;&e;KeIZ|@^*Tq#W~NN`@R~^^DU@$S$|%hL5!zW z`C^34M3!ljo|LG~4*qn2>uAu<ptV;+6K37Z*mg_yFw3>KU)c{|tT0lYz45I0>8n+n z?@o-&`F;3f$-WrfP11dD`jo35oS0{^NxbjOvA<j8|IfKBtx@K9VQrQF9H7foOI#yL zQW8s2t&)pUffR$0fuXssfvK*cd5EEzm4T6!p}Dq!p_PHb<=Yt#P&DM`r(~v8;?}UJ z?LrJtgE`2C;{3Fd^2DN42L00FBK@5F<is5P;tZgGeoB6_zGrS?da7??dS-IAuDQN` zW?o8ag<eKUZca_vtaU&mBtS-lWR&J6Sy{Q{Czs}?=9O4k1pqY_GZ-%azgr(o4cI&@ zE05I7^o$Y)b0Y&!t*t;MDCR)bglDFdWH1;SSQzlX)i4LDkwmh~H#0Z2q_QBDArs_4 z{o=Cp{qGC>fQrPC6@>s*F&LUyni?1bfqC<kb9q1|0!T`NGpkY=EG;daxaO~p0?KJ3 z$%O`aGNfhZq+03g7p10W=I80A<s_yTgDlez3fBWtni7vc12r*ty85}Sb4q9e00Ieh A5C8xG literal 0 HcmV?d00001 diff --git a/res/flags/SA.png b/res/flags/SA.png new file mode 100644 index 0000000000000000000000000000000000000000..d93b91c7c4ac9d261add379cf5d509744eb9f80c GIT binary patch literal 1320 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`*z{z$e5NsNnwn`wTgz zP?T-LkY&sOBtgg+#0GJ}A`k{lB}<-#Qhk6yd$eS=r&2?Jc5Ar(gmm+sMAfEX*;*g7 z?gWkIP>up?kg?e&($!uQ_Ag(4W>@UOx~!F*%{%7y?p-?N;HsJ}(^HqV&N{jtC?a3y z2eC-F+@*HQjHRb{G;g0<u%@qO%ZwRE*41yF)wq35%CeTu-3!}x&Ij58Q7l;IoWG_Q zXhPMdX;qu20nJ=-c3085{*v_*i`Px4+d8v#=RBR(2#BXdDqOv%7X-~Nv+YmwpINNm z9%axGt=brD*_&k5n+)`V<D^W1Qb&;AA>IUe91X!j2CfDcAYh-ODF$<a;fAax#}sIz z=d^tHskyFGa-1h;0WEczoE@{U&blv|Dc20Hn7hbMy2e|k#v4ci15m2k3&^(VPqpYx zV#+m#D+AjLaTO8?i8zS83=H}a(mcSJW-JNv3ubV5b|VeMN%D4gVd!9$^#F1>3p^r= zfph{Gf5>(^4`i^Hc>21sKV%gYU=l3VwBZE`UGa2r4AD5BoFL)TASljo(lC+T<)q=} z4VyL=7ZeqK{_yD|H^-tAoSfYqU7g+@UY@5<oI0t!;Dn}@=IRxzR%T~pWxjs#>gD1S zk`hvqvuDhj866Q7dHcq#g(q%WTUc4{-mz<EbwyR>?;nd!{QSwz!p7R(($?zk;^umM z!HJ{Cj;gDusV-l#Y-xH*TI%9o`s(KT`xk6jv17@WHG38bg|1t*YuUDS`xb6oxpV1O zUfq~m)>gZBRagD~rS3DwMAA3!)RoN3>1XDcR-e05`B_{*e%_8JACBCAz{sEzY9gZ6 zu-gadKh+Y~h?11Vl2ohYqEsNoU}Ruuu4`bbYiJ%~Xl7+#WMycsZD43+U~u_%#sd@$ zx%nxXX_dG&ENZ(D1Jqy+vY|LXt)x7$D3w9Kw75t=CqFqcN541&D4?H`pRDhho0y*J zo0y)NoULoFub-Khl3JmcQIeZeQ#NZI&<F{T5g{3+xk*-5F8Rr&xv6<2R#pK(O~nj` z%m44zM^ghf&&tXpH8VY<gu&FnpkfB|8=x9-By*r@!ZTA!G8oKF4W`a2o&{7QiKN6g zGdH!QvLKZq6XZVq;<EJp?+g6U%<&BYs$wuSu{1R>1_JZuDd+NlN`#Qi3C^qnhO3#O zsfm;P8`Hf&SxqF_&>&BSw9K4TD}DW<)bz~!Jl(XM#Pnj2b^5`MdO(WzNl*z;6N9I# KpUXO@geCw<alq#Q literal 0 HcmV?d00001 diff --git a/res/flags/SB.png b/res/flags/SB.png new file mode 100644 index 0000000000000000000000000000000000000000..e9a2a8f3f05ee16140c05cda02e9cf20fed3cfa6 GIT binary patch literal 1612 zcmZ`%2~ZPf6#fH5kq#rscvMZeisAvgOT_4cRxl_j20{+G>4s#JYzYZXHek?FRL~Z& zI2J6lU{$1Or6`ET90UZ9QAeO!Pdq4!bvmtebb4s5_7Bh+opI;?-`n@U@B7~S-|nZv z#FgG&)4c!y-u!r;2>Kb$?dcA!)yqQ#orfw$5CcGK<y+5WOc)2q<3$1hie>>&QVPIR zcvNy903!;(&jbK?4FFT~>#WJq0Jt3#u9Cz-!0p?&8Oc@_**%%)0?Agm7$U2`vU^f? z=V<uS3T+^%!!M&Hzg&Og_}okO8Q$rRYV(k3?|{1)rYt_0j;|fV+PbSy;Uy~>rtIFS zt?3`H?`&Io!NxA#77|6F9uiwZX>WAVSvQewVuoX!)GplI&n-9ugsxmG<a(_>ELvM; zJrsMTgT1vnIEq62(>ZWCO9(Bn?y`^0)!T;y)jc55@;V)2lI)(+BMF7&?aeE$IsB_? zgWk;@QwYr9zy&GJ{)JXlf4aEo#uTE<O>BGh3QiHG#Jt>4*}OmDdS^ggeIQR89x&3z zs0g%PsU7N?%aZc%nGzf94Gu?Fe|1$^pWEm(lI-r{W6`>*#zx^lS5U+50RD$zkOeO? zs^GcWzVX1V4{EQB+{+5pDq08M-~IzE%@A24H8u6Sr2}2T-!}Ru(er~cUlL)f5IiBp zK00$4dZsu$Q|t&;S6!cRy>nLUKDM-Q{yUi*_J6fTkz*EqR-rAF+*MIST<Z)qH?uQ} z=7nTMu+zpGgYCH@gXImSRpe#IypDscoZ`8&vtLCz)$DAdY2CKmi}vuIHkNw*oVkP( z6EHGusKzF~(QnD`wPL5+S-P^&`7+Ek+i&Fzc2D0}8G<P=7G(Y3GXSi6^kn$UGH6kv z7%aPYRp|_J5?1oSCrnm63?}5qrx~CpM)t$p*gp6&p5_bU#{bCl^>Onx&WZMh9E{J4 zk%aciiD^M4zFdM(<S1pN{HMXYL-*E$?4`wwm_V8DuDX3S$4d8BwO2IHOkI&3lgv+x zlM1rjL!0(De%ElINk^zXs<4GvB*%QHz3pi05%;s#q88zcZO5#ZwGY=6ng0Ik>67su z<CvREH!+60gM%9O$aC%t`AzzKyI6Gb0w>~dn?e8hQHlNuvn=jpNFzBsxmtQD@`&+w z@2!IKCKF-Varx*UpY^sp*m=wGe1hL>!OjR{dNy04eOgg_SlL$_rF*`iY|9iR&8jhF zvop0P&q@zmY0fei_nZ=ZW!Bt0x@00>d%8Ev_UA7*%`du+FW+1_^ZdExJE97noj4<I z>Z@B)_`Lh1Jz8Q(_~Kw@N5Ma*&S#h(Kk6TTaHFH}#qpk%m5(2x!w*mN_%Ois`{fb8 zPVyUq^9-TmQfY;ZCULo*gbqZY7&i=!48yn*Y$1+D;23uvis2}FaX>xz3L#IYpp>RJ z6ZUNC&x8c7vw}gVqzh$w5+Fu{9?|IJG7Vx-!vjR2lOy~*nTiz1RFph7jEf+YRza=_ zSJQc#bp>CxK#6Hi35nX6mxJRxo!pp5YH1u7LXrVsO)qT7YnTx|9FHd{m6`?%P}G!8 z4M5CP7o9Oo3Z<acU=fPmY3*{(<82p+fXX9jQ$7hOXMc#HK-KwMe&TC70trL`Y{BA4 zlmj2`#;RT|g!s7Vh^ZnHELwoZ<}SV)0&{a*a#9f=C@BqzBZ!_<Q95myQX^9toW&4v WY&dl9@j~}P65z)r@>*hv4gUi1zF2nv literal 0 HcmV?d00001 diff --git a/res/flags/SC.png b/res/flags/SC.png new file mode 100644 index 0000000000000000000000000000000000000000..488ac3bef3a4fb4fa02eb1a0994a5ac5ccebbf47 GIT binary patch literal 1318 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i1|)m0d<g|oEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8ZKG?d}4kf#9d}?s_1_ zS>O>_45Sml_(QhSc_4$m#M9T6{UNKM0Fz*;rVTFx1JgNA7sn8f<8QB=&lb*<IsWmx z@!T)REp-2R9KD(l#(GrVJA3!Sr8nGOd49Byn0D7yz@_Trl7GT+dpWc=b&1=G962o4 zk{Wo!b|?Gltt)*msh#zi<f(SjWOAh(f2Q`|iL1mvUN~R+pwf2!`|pVf*0+DgDG7D9 z{0f`FSMcJy`|SFuO^?~LeEjx257^NcQ?KhAQ2ln&-nq-{o;POjmfBWdI})WTGRdds zxtS9a$AT}58vdrU*$3Yjin_cebanUg?mtFz(tQ<qQ!Ew!tGE|latc$;h&MdO8(5G~ zKKJ$W&0k8`Sc2B{t)2I2!@Kl?c&i0Bq=L9qpI)1BA>q*-CHwyoxlX6Up6(aAwwHBU zTGoQjYl|lfEfvXK=6QT$vcyJ-tG<Ss684dgE=g9G+OJwyFz@z_esRvOI^itFj5f#P z4-dbQkUS_OyY%r9&Re^7&zw6qwq5ha<;TUJo!U0sRB%|F`1?lxrYZkUEw0%r7R6{~ zo!ReZ*w$`%{MZYt(ync>yY2RGKD}7%<6=Fb#_!v@O3NExWtVS#s&(O>pN7=Yj-v*T z3wQncb)mX?|A$78gBJv+uYN2h#r3?k`Ky9+Z6YV5hN|E$KMkRS5;8eV%*-v{-ZF12 zT(d7H;FDI$T_#QS;}-+o8!bCv!ju<t=9BYo_je0jAHGy-e68$c_3PeViNAkmq@UlU zEau$rVs|&t^Hki_n57<<P8#JdpSfw$p3Rfbh#94vs+^-b-Ms!zWTx7WQkC;N=XNj2 zU%GNn(Z%xj3#*s(zpIc*&fw79G=EjYPp^qr?)*RV<T*(5)=4T{pU+I!`Lxx@w4O6% z!>4t#*G`}PnxUCJc3q3`ly}oOzsxsS&l~vO-c#$&VfOVWcJJIj^VfG~<DVuggZNfI z3ixOna^c38fGyjuS^w6ZrJUXVGrgqY<vqP+S)M}c<2F5ru$bq)_+j&;`FtXaIJa1A z3ElTHz8;vk>OKj+Tk6gm{lcOenAlZITq8<S5=&C8l8aJ-6oZk0p}DSssji`Uh@qL4 zfsvJ=xwe6!m4U(K+Zhi~H00)|WTsW(*08AULJUxYImm|M{Irtt#G+IN{nFwh{ha*d z#2o$N44{C1N`A7wXKrG8s&8U?W^%T!xxRj8UP@|(UPei7PEFaYbwDE|Kt_aQl;$Q` zS-IpVm*%GCl~`E?05uge7%u<6TOUmg*gPvMkJQZcj1mSDQv(*=x$}T(#F5N_stM0b zDal~4G%$Enyy_}Yi6oK|-^|?9lFEWqhD?zA^oz^V_rEXjLo>%W1gMI^(8SWzz!(V3 zo2Q)111b?fGAB5*DwV<5$k1uwI=$;aIZY(F&>&BSw9K4TD}DW<)bz~!Jl(XM#Pnj2 aW%|L+dO)gNg;4~kiNVv=&t;ucLK6T@F&s|- literal 0 HcmV?d00001 diff --git a/res/flags/SD.png b/res/flags/SD.png new file mode 100644 index 0000000000000000000000000000000000000000..6ba8c5cac340c9e29f035ad407897b1b0e1cb072 GIT binary patch literal 1063 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`!UK;1l8sRB-?P{U9IR z-O|Qa`AsefKoMh+rbUF#DrKW9FhPbQO@?Ak*%a*_1A~i#CYNF2KrJ9Cuq=13R+fYQ z331b_LS~l)O(6&>3s%5bpy88de{TA$PiuC)U$q^ApbAPfO(sX|yMN~2e-MBQ=Bb$U zhdg}u48mnB(XyBvdFcLGsBEz&LxH+@l2Oydjup$6FNFbwY>qmEg$NTn3o{cFBMg9K zi?tY%lo{0c7#M*8zyJ~nmSYg(0I^*q8F*NL^bD5SYk(AENswPKgTu2MX&_FLx4R2N z2dk_Hki%Kv5m^kR6TtXGw$phagT2Jl*OmPttDpdrV5z1JFHmTqr;B5V#`)v~38e-> z^Mr(yq_o7;<l{^YMKW_@?%3?P@$|<JR+iQlSC^v~7z6xboPxZf+`|0g7<n0<icFmn z8gliDsmazYfs7u0fr0Mf{`U`D;NW$5BGT*YbN0-}(~%KTk+&rhCvV=mxxApHsI0Km znbpCvoZnwRUq0UcKZ6Ow6mA|aK2F}lKpP(lPE1S;yzz8V@}WaXg)a^Z^E(6mS{dV@ z)vnd62z0D!iEBhjN@7W>RdP`(kYX@0Ff`XSFx53Q4>2^eGBC0-G}ksTv@$Tbd^_U- ziiX_$l+3hB+!_|OU5Ei{FbCOCoS#-wo>-L1pkG>Cq@R<YoS36uoB<TjPsvZ#_smU9 zPxVbq&rHtNHP_eA%u7kF(90;v&8aDywGL>61jvYxjMCgBD=U}$<kH;Kyb>#`0HCH~ z2E*n5ck8360h?!K<&m11o>9VJY+z6$S|0~gBaUPaR84qhN=XKTnSsGe{kOo3!yt*I z#5XfHwWP8jl_3-4KK<gd^!@J({Lswt4FRfRFf_3=H82JO^X4h%@_<SNkjx3rtV(4t zHa2xS!qE5xD5r@e7aHWrkd~Q~YNfAVl$xHIpQoFalbBu%vP?hNMGr_FWw{GVo(!I@ KelF{r5}E*}l}Y3P literal 0 HcmV?d00001 diff --git a/res/flags/SE.png b/res/flags/SE.png new file mode 100644 index 0000000000000000000000000000000000000000..e7bd806f4f5c1be3a6f5b2d543ec035e385acef8 GIT binary patch literal 780 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lyD9332_C|_wV0l$Xd>j zxw3wC$p5np44Eq!GFI1t+45zRWlE>^E%XG6-#;J%MDLGr{X4_({~Q>dWdO2)V5Xq@ z3LwQ;666=m;PC858i<qR?e4<R!7A$k<Zu>vL>2?-1Tg-P?Q|Z<U@!6Xb!C6ZDk#7t zSgL8m3lxg<ba4#PIDht{Io|;V9*01u_j7;8n;x7zeS&7k_BzGrwh7HK>*u*KK6WZ_ zo49`#i<k7`sV-@o5BwC^v-w1h;F1_GKf#%6o30&yu~sSmec0!)>UaBYKKjpB#6007 z=k;$LQlLOoEpd$~Nl7e8wMs5Z1yT$~28QOk2Bx}(<{^e=Rt82^hUVG^hE@g!mv3i0 zK+%w!pOTqYiCe>>whJ*p4dx&liu2P-$`gxH8T3nwi}Z8ylM{3Fi!*=%`YHLz`kuLo z>8ZYn>6yvdy5{=&nRzLx6?z#Zxj8juv(^EPkN_DGl2MwQWM$=&pIn-onpa|F6#&#! z%wV|u|89Mt8c8HIVDqf3JW?~$GfEf?4Gat})z$%10g6FTMd6t#B^eBcW(Ed_ci!to zGsrhHH?^d)AeA8#<U;-8vh@A$3;ckJ#F1?C4FRfRFf_3=H82JO^X4h%@_<SNkdy>x zRsloS!q7>i^-Ky-P7_HkG{}=7Ei)(8N?*SyH9a#wPd6<mF})aMnSQXV9+3Kx@?{H9 O6N9I#pUXO@geCx%00H6v literal 0 HcmV?d00001 diff --git a/res/flags/SG.png b/res/flags/SG.png new file mode 100644 index 0000000000000000000000000000000000000000..797069fc9ea844945efd4fc0ebf4d93e14c28938 GIT binary patch literal 1021 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`)26;1l8sRB-?P{kNKy zAf#dOR?qf>XV`li@3-paP(iRbP~`if6<>R%ymtxu;1%&!*9N2*q6<uZpSSGi&VBEl z0^ZyDd`if9Z}0cc$^)uK!{VKZ^Y2Snztnep2#EdQ7xPxd<b!Y2$Izs=>M%p}?S36P z{%z{qw^~*og5uwqxqb{zc&lfJutMGZQ&#Ek)8{`W=Y5RJdS~hWF)9tJK+Wte2$_Ej zOa4;b`ra)B#8oi`3xcG+O_>8llV*LJJR4{WLS)LE|Ns9317Um0>rf!YSQ6wH%;50s zMjD8d<n8Xl(7`I}0pxHNctjQh=>#zTknMCH$Y3w=^mS!_$SNqnBv`6x!wVE@^K@|x z(Kw%+AmP&>D9&)w&~WpHO&f~~iVPPrY>+YM*O%YluwcT54vn@sGj_BrnX;v4&73_< zZF3e)+SIjb)~>c?)6ClD^sSq>uW{kTjh!nc+ve<ST{?AZ@7lS0nU_V&%$*Y(bN7y| z&E7o|86(aezkc3c!9c@8<qErG!_z|>niW;s)&H^aGcerY@L61)>K6cXk!p!+L`h0w zNvc(HQ7VvPFfuSS*EKNJH8c+~G_x`=vNAN+HZZg@Ft~g>;{l3>-29Zxv`X9>7PVc7 z0ctP@*-)IHR#Ki=l**uAT3n=`lb@WJqhFi>6wpt}PuBO$O-xVqO-#>B&ek>8*U!vL zNv+V!D9O#KDVwzpXoLjFh>(oZ+$1Y2m;B_?+|;}hE2{vYreX%e<^Ol<1Jy_(sR5g3 zW#y5YnVwO?U}Rxoz{bQ?fo2d?QFvxbNd|+7v5~=nS$)^g4D!v)O)aS`NM*<bxlq5j zEPem`0zaT4aU|P(Lx8Fn3{5Oe4UB=nym`vGJfIRmBqhO_RX`O6CWcN8*Fs}~lA1`8 zp+TMuX_+~xR{Huysp*;ddAeyiiRr~4+w_Co^?+2<lI2%`nixD?{an^LB{Ts5IlO+q literal 0 HcmV?d00001 diff --git a/res/flags/SH.png b/res/flags/SH.png new file mode 100644 index 0000000000000000000000000000000000000000..b2c589d0c5628225263847ff6b9e568122e2bed2 GIT binary patch literal 1433 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`$e};1l8sRB-?P{d1MQ zPd4oCow`TGbs~pe%bJ{?8!q7<5i?k|8vVVyc9-@)oxdtMcL{@14TDOpwa>)<>?wDq zE;+mLNbS@^duyiMa1C#1Tr(?s;)A)Xj%_}kQnN|eyput>c0*3rmcqVkwf)cQx?ay) zelM-;s-f%Srv4WV-7jV?Ib1h&V@_w7doxfa&{z<uSPw!9^$bdNAQ6??TTUU@?Srm6 z1mAQCyX6pcP2c&Vtnn?!;F}J?5b-;X!CA(c3@UX%?Se*?-pMJkg>i8u(fU65jH)0L zB9iB|^=yA|>e~BNn@&tzcBOeL(6qDrF1$E#@zw05tJ;^P<u2B6>Sa)_0oog!mGJ#L z$H}Ae_wI7<Iik&_Qv)=1!j#>Ymux*+H#H}?L(Q>wLw@gVm#~nedCqYQRxj9hd-keT zxxL0#O<?!ed8d?}zL~!9K-Rvq=?k`3a_iOu#Vg|al06y}%v%{$>zFkg!#!JbOtMt% zx)>Cyxb&KR)0Wf}EwnHLhk$aOp-uY4hN!;v$0uyMm_O+>yH+D8C=@|10U>a(fEge! zgSen@t45Nllhn&9j+c$9sR++4wD+%MRIP{TVp6R(_RQ3*>5?yO<2FGuO{JDeqfx-Q zlhdpPYCgmk2nmdIxV^yS)3tOzFwroU1o;IsI6S+N2I3@nySp%Su*!M>Ih+L^k;Ond z0gOLnJDmqI*h@TpUD+S93JNd@mTKDY0)>8fx;TbtoKH@WP-+k~Pe@2fN=r;le*WOe zqh}AFJ{EUiSTJY7gbf`lX6$HLGG$B88ktpd_B1V;w5e;=tX*x(rfutMST}E9<HCs> zIU~+pIdkXGrBk<#T|0O0;6={^H;-ODd-w2VZk^|EAHRMsFCZZzBP1mzrzjvPDl054 zKA&Nlw~v>fr?2<<6K77HJ9$?4guaH3mY$|A^XaMKAz`7{uUxxoZenJ-ony<kt>q<U zrQaK#R{j2^?lZ@v^3;{g%jsw4s2WtCyHojDTqlNQny>?F_jH}uZ8b+vh2D4)wmx!q z-ru&~*&9yg-rH1q`<tva>xPpHTe$5kZ9W>fFfjc7=o8BF&lwm545}rr5hW>!C8<`) zMX5lF!N|bST-U%<*U&t~(9Fuf$jZ=M+rZGuz~J)jj0Y$ha`RI%(<*UmSk!hQ2B^Ut zWJ7U&T1k0gQ7VIeX>pN$PJVJ?j(%|lP(VK=KUv>1H!(fcH!(dkIa}9UUq3T1CAC5? zqa-({rfk+apb-)vBSJDtbCayBT=J7kb5rw5tgHfnnu-|=m;c|bkERA}o|TnHYG!&y z34@t|LDjvzTd}JN&rB)FU@$Z?FgUWIED)$h63H&#%-qzH%7RpeOppWhi_6mYzc26u zDiTLl6arMmU}$1#YG4cm=FL;i<pGrlBPj{atOBYqG&eFfcbb+o!5%2Bi6k8w<jIhh snUiXzuV0j!o|&Jgo0gN9UJSBNKiESLNHKgd0F|u_p00i_>zopr0Oj-$%>V!Z literal 0 HcmV?d00001 diff --git a/res/flags/SI.png b/res/flags/SI.png new file mode 100644 index 0000000000000000000000000000000000000000..be8e7a89737c0c85e909294215388bf27d0be3bd GIT binary patch literal 933 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lvo$w6XFV_@87@w9|`>W z^Y`1&-~axBgs$9r7CK><OZ(=YwP*hR0txOtcttd2u~gowpxSl6zkLU)ikfyLdiv3* zmQ8cEUp{g7ZEo+js7VK+rXOL5TEq~wm^W%(&%%SdPTqAXT*eT&5F{A81cYK1D<&_r z&s)MCvk)p0w~PUfVxjC1xAHeKs&8dffC%W+L=VP;K#H*>$S;_|;n|He5GTpo-G!lp zRn`N@;VkfoEC$jEVEiH5={%6ZUgGKN%Kng5P=HCWRMUnRDAeic;uxZF{_4f!e1{AK zTmzrC3awHUxGcNMx%=hQ|NDC;Mp&LYVC6pR>ec980oI2fTi6dQcjlD5ALh1HYQePI z0r@7;Z|BUNA~ZMe#%uRWuD+V45`D)ezx3I;B6IEIpGiBT^0#!)GE}?y?pu3uR?L+( zTbF-+TDAK&PZmGlR`vE<-Og{%{=8iGXQ6_f?JaHf7dJI_0v)AV;u=wsl30>zm0Xkx zq!^4049#^7Omz*-Lk!KV42-M{&9w~-tqcq<-_Ce|q9HdwB{QuOw}wS+7h-@K%t1C3 z=ckpFCl;kL=$953>F4ApC+6rEX8;BCQ}UDbJ#!P&Q+*TDGn2D*&Gq#&^HNeP^fF3v zb85<Ftpge%0Wu;aqck_k%E~1_ximL5uf)nK0H~>$!EpKi-TG*1z~)(5d8B5hXOu9Q z85mUE+q)IJn()k&k_-kzBLjmY8_EKKY9x{D^3BXmEvYO>Wyl0MP`|h=egFFcKcFIU zWJMuBRSbqEmZk>AKw#cH<y;<6i6D}a;LIvez?vC2-F<m#5l~VSNisCZlOZiLC)G+{ nzbG|5Ge1u^EhjO(7-XA%u%{l7vYjFcay^5mtDnm{r-UW|^qgME literal 0 HcmV?d00001 diff --git a/res/flags/SJ.png b/res/flags/SJ.png new file mode 100644 index 0000000000000000000000000000000000000000..1dd7e786274a5110c2359dc2b132f2d531dece89 GIT binary patch literal 866 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l;{oc32_C|_wV0-udVxD zUF%1F!HP{M7}V0UTUY;_KmWa^HdtKqor>Cz++3(s+v=Zl=e<`|f3L3jv$64Kef|G6 zt5<D14b+v}w(9@M6F(aofZ}}%_5jg@Mf+mQ=QF6MTSs;GFW3tdVNgkhBGohojSQeJ zga`ve4yTk0&_RqPL4Lsu4$p3+fjCLt?k)@+tg;?J4rhT!WHFFV0OJqYPUnFP_7YED zSN4ajf&xr}rJ6RpK%opz7sn8d^T`PkAq|4o4JQm48I8HMrLEc3#f5n;1oTOBR8;)@ z!OGIwvNMrEOPz^jQPLx!NkNy4lnfZAPG)7YtYmdnO%;u_XgIZ!sd3h>wq?_{^{vz5 z5m?ASzxKx+&-Vt0h3lKy7#IrM1iFg-yDk9jR4s9hC`m~yNwrEYN(E93Mh1rFx(24Y zhUOuLW>yA9R)*%<28LD!2A6MVJV4Qqo1c=IR*74~qP7b$Kn>;~8;bMOO3D+9QW^A1 zi;MJg@{<#D^ouiq0{SWW$@-qTiRr1niRqci*}CTX`k8qtsTFz|CAm2@WwX`+jgSBt z5t31wn`C9>lAm0fo0?Z*WfcI_RLo$w{Qqu!G&NxJtgJjzGt)Cl7%U773LGZv$F3$k zGo>Vh!O+ma;Mlhl96&XaNOt*V=BAcZ7Njy{f*hz{T$aB7eSsfPkvOuV5TGgsLla9= z17jdCZ=P~452!={Nl9>KRVst2p}EtAn;BPta+*kTp+TMuX_+~xR{Huysp*;ddAeyi eiRr~4%k+c2^ng^ANpdPs6N9I#pUXO@geCxt-50t5 literal 0 HcmV?d00001 diff --git a/res/flags/SK.png b/res/flags/SK.png new file mode 100644 index 0000000000000000000000000000000000000000..be3d10f2211f8f3c75fd47e70272d9a2b53da424 GIT binary patch literal 1162 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`z&~;1l8sRB-?P{r_<A z=lAbZXMXM3|NGd9-zQIl7)Or%|Mu<Ct1k~<eSLBF=?7Qe_iB1yGV;DwH@w#}`e1DR z`s|g5Z@y_HuT@Q2n_RK(wVA`Gkm#Q)*Z$nR?MqtD2W{iJilwT_>o|QEvU)G{Phaxd z%H>Ob$&Uq#foi^1HGDF&&Ci_8>bscRZxOriBJYf4AO*HAUkl5>Hnx3n^893InVmI{ z-ET3c-(q&(#X5<rjs~W0QFdr?%q{b(-k{=m+9kpzeL0)&Vl|J+K&0h8rJ!JuPV^FP z@A;hG3lu^Z6%;Ko@}CBjx~yaZM3)qeZ|T{tPH#0!TdkF}dV0>p+h(pnL7>zJ85JOU zFRlDhS^Gv{!lm%c51NMWrIaD!?_^X#NLmFXBBcyuKt&+pGOED9T)|y^2}m)P1o;Is zI6S+N2I3@nySp%Su*!M>Ih+L^k;Ond0gOLnJDmqI*h@TpUD+S93JNd@mTKDY0)@_c zx;TbtoKH@W@M#bfXE<q?$bRI6;bE4D4KI>Ylb=6$^5~i4_2Z{cpFXayprN9pq@{L_ zn?1pjlatd^GgC6svXa$RmD7UZw5GQ9>J_V2W@lt&zJ8%~m@&f7-{1fKfeR;Y9JzAl zjuSuMfud>CriEQI+gA3Cug~w?v;u}{#f621rN!SreEIb4<JaOw<_&Z9@2_`A2q^H# zh^TN`VlUJ1bWwwXm71BJouZ+pB^S^PO@#@wrp=o;bL!kC29BLm=G?JKkrc7yIpCr2 zkBuLg@J>0a@Ndmy2YO7k#5JNMC9x#cD!C{XNHG{07@F%EnCcpuhZve!85mg^nrj;v zS{WEzzMb&^MMG|WN@iLmZVijtF2n#en1gI6&QB{TPb^Ah&@U}6($C3HPR!9S&HxJN zr{pK=d*&vlr}`$QXC`Osn(OOl=B1=o=w+1T=G2tUS_d>j0%Sx;Mrm%6m6c0=a%paA zUWt`e08mpggW>Z3yY<o3fX%bA@<`20&nRIqGcc&Sw|6U0jX07yP&MJ1DJ2;UmIelo zidS6)Dv?A|;+vV9T2fh%%8&_ipMG&!`u_I?erV?Sh5%JD7@Am`8W;nCdGnNWc|awC zNah4*RsqA+(A3B&RJBkBD5;4g85-otkd~Q~YNfAVl$xHIpQoFalbBu%vQ0nOTMtON Shj@Wp#^CAd=d#Wzp$Pz=TeWup literal 0 HcmV?d00001 diff --git a/res/flags/SL.png b/res/flags/SL.png new file mode 100644 index 0000000000000000000000000000000000000000..b3f997b163bf3eb6140b10bda2ddc2c35706b925 GIT binary patch literal 726 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87>Kx7A8! zi-qOBpeNs+|NsC0!Mh*w&1V@3k1-S-11fkR{c;<SVk`;r3ubV5b^~NFW0JSK3quF1 ztOt<8S>O>_45Sml_(QhSc_4$m#M9T6{UNKM0Fz*;rVTGp$j#HmF+}2Wa>4?+1Q8b| zhjl_s8bVK`lp7Q$yl!IXbI8+RVqw~u$uYrWLUbQPt3w_;lL^yKW5EQa3A?!%#e|+L z`Zc|Zfx+{fr})h|ck_TIs+PD$l%yn<q*^5xr2;7iBLhQoT?12HL-P<rGb;llD?@W_ z14AnVgUh!w9-wH*%}>cptHiBgQQL(Wpayf04aNCsCFO}lsSNt1#YOr#`N@en`o$SQ z0sWNxWPQ)v#Pn3(#PrPMY+ZAG{mi_S)C#?flH8n{vRUhZMo55+2+1hTO|r6b$xklL zP0cH@vI+odDrPWT{(rYVni{ZqR#qOVnduoN48{fqHKO%#KsDk>=0MeiXQq^7FqoJc zOuuvXFi?pkk`mv{+|-iFf>ee~ko)wD%hLD1FYrS%$2SD1iowvt($v5h2+W(OoCAfc z0FpVunN`4WwKQ}Rbzc??l+#3#3k~vQNXyJgwbIuwN=?tq&(lrINlY&WS*9QCqX(qE TmP|Ve)WqQF>gTe~DWM4f>uTQP literal 0 HcmV?d00001 diff --git a/res/flags/SM.png b/res/flags/SM.png new file mode 100644 index 0000000000000000000000000000000000000000..b30f77ad69852a6a0709e34a146960283300fd3c GIT binary patch literal 1147 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`*Dm;1l8sRB-?P{r^bd z9~b}y-o1VTL=c&$_b(paIvI$742a0p(`#4vSOL+s(`z9jU%r06bp7nXO`VggZGmY2 zhK^%r4}SRc9w@u}@b=ybh4ZH8bu3!mv1rAtDS6GEX*>39Tz~r$5UsoQp>e^i{Mxu# za~fOct#6yRVeb6aoT`Z8=@Zx9`Uq4Iv-JrC1y5e&pBL595mz_0wPAW|Pft={US!a; zwK3bC0Tsk;1EcLvqt{&YtFKS5PHC7J-#jHDtt`f`t|4Z_&A4q(A!=f`J;_{kYVx{W z&66g#PMI=k^|q`vr-6b{6Sh4`+x{?n>z%mOSK`)O&DnMr$c0P6On4f%9faVzfFY?k z_0=vQ#aI&L7tG-B>_!@hljQC0!qCAg>jC6&7I;J!1L*`X{*di-9>`!X@$_|Nf5<8* zz$93zX~PQ?+VAP&7@~1LIYA<%K~THll%XS|v9K_APp{hXQ%8>Rscbk|Xkb`aWN28J zeD(O@)5rA{I(+8~2v6S7u|h(4vPIh*mdQ(|Z0T7uXAje4rDZd{PHC;mdL=b$MOqeP z<F>wa^Y%3^oVc-brDO;HWMg(FZg1^u>1gX}c6ar30eQ9OOf2j2-pS32yJxqr?jNIq z-KII-2>}Hj84(pODO0%HVoH2+Vrra{f{M77#biZQxuu1b`Q>RXlaW$z<MaQ+E5*Q2 zw8nse(fHh6pjT8&Tq8<S5=&C8l8aJ-6oZk0p}DSssji`Uh@qL4fsvJ=xwe6!m4U(K z+Zhi~H00)|WTsW(*08AULJUxYImm|M{Irtt#G+IN{nFwh{ha*d#2o$N44{C1N`A7w zXKrG8s&8U?W^%T!xxRj8UP@|(UPei7PEFaYbwDE|Kt_aQl;$Q`S-IpVm*%GCl~`E? z05uge7%u<6TOUmg*gPvMkJQZcj1mSj1B0r2d$$7Bh$EQ;RTG|>Qj)=7VPNoh<AFy& zC6Y)=d^2-XODYRe88Sic(=RSd-~YbA56v9k5TGgsLla9=17jdCZ=P~452!>K$(-QK zDxeBuBNGc#Cl05a-#}?iB<au~PlmM2oK!1){i4+L%=|pvw4B8BVvv3M!M=Jx>V(Mt QQlKUVPgg&ebxsLQ0QR}xGXMYp literal 0 HcmV?d00001 diff --git a/res/flags/SN.png b/res/flags/SN.png new file mode 100644 index 0000000000000000000000000000000000000000..b5cdb2101de8a232d8264c789693bce9154782ae GIT binary patch literal 963 zcmZ`!Ye-XZ6hE3`YL?oEIVFhfWj61fuiLJI+hyWbZY*8q3vzCE+s)0{?wzIuY4)(9 zj1V$Yh#(9j$<Qc8`VfWoA(N1TNGl~oZ2BP!OtW*<%!Drg|2gM>evfnR1%o~#Bq%Zn z07A4Hbr$9*@vdKou{+4mhRM&S(y0JC>VxM@{`lT%)@11bs&)cYp8=S~R`oc5hXj}? z0-zfKBxTLr2U8IkHe?#pF^`Olz}YmYP0PQhoSS0iSB{sNw8o7}wv9$b|81_IQ_P%q znY<)im}X|ZOxK_aBi8eaa)f?*nZXaL<`*hOixMN&C`4z3&~|8;QQlHQO&Uh5fBk`Q z6BG)Ml!jI%My!_%vHyLNc{{@V_$tPkNwL4Qwm5WZaWpRJW$@R=`mRx!e1t50HYmTm zvx<-60~u<l^WUPuM_`#IkH=iJc&AI40W1Optu8&_lYdyKZ<r@0H3VCgTD8i!d%#>2 zky#xkfqr?7PeO2PR7y%pz%B{3DZ-F(<$C=QW$5|ls}Jh#M&u}t1!`kBX`Z5TuRG}C z{+D~&j!s18jwN<=dW4y8AsagSq|%#>O*aa1^G*DvuFLmZdTXO|DriN|<L)OX3{;_} z;o0U>wE+O*1>xZjhw1IO#10`nSFo4_mNvUtOb}1XDH)k0lT$`{GEK(Qaw?XT(<J%k zz5U}q0;kKuSu6i9xP9(*AqpsQ0`Ia46(%<egok$%4wu>FAb2}A2#d>1Xq_e-t25a+ zbBT;12(Hw^9*?sNPRGgergpT55G{;$kF%Jj)h@Hg$(9N<Z9owZ^45hOVhv}}kES&& zXR`~COp;Z@y<NzWtnyjr9Of*79TX(_nQt3HigXo4$2nP{vWx{z+>hYPZBM7l^lN-{ zMr46JQISL@;78RqyedUX=qjIVu8IXJejl^2(YGJ5m{r)JEG<|$2TK!#o3(MSQkm6Z bvhm_DB3mDaslN019Tb5!U9WCuicbFq=gDe} literal 0 HcmV?d00001 diff --git a/res/flags/SO.png b/res/flags/SO.png new file mode 100644 index 0000000000000000000000000000000000000000..5f80850834b9cc64c508ea9d89eb79a2ea889d04 GIT binary patch literal 1031 zcmZ`&dq`7p6h4+_8Inphvj?q*k80j~ExUP%+Q!VS+VU}}pkmkU?(VWD+nuFFNaZUF zjUGe=l|`#Gnf9Ok(G#Qu4Jr!CM`o54WltqbJ2Q|~cDcXreCIpgIp@cPTb`-Qh>VDf z0Dwr1T9u7)X5dU5kJuOy%3}!S6<P&AedXjIY#8Qqjp}SIKw&&U(LR9hC>6a1@R9&; z3;@h=0Ez2VW7bN5kja_r_33En=;%<Cw~hI#D%$_mGY+=zsqaM`Eh+c6tuAZZcCzcy z%K=2>s03FFYG3(VKHh8pI{0%45jiTs9^Iji)3@Ib3=Rzs4<jN+Wpo0PRi$lPPjtQg zJou^qCn9oGP{&<(nVRN4?o2l#a#ThebB{e=bD(`y=`%#+qq;oE^PA&$sL~!@fgwc9 z*5!b_=ZQIx<gLq4L0Q;rH71i>>dhXEhLO`}Rkk7t7d6`S@aJLCQRAY$Nh>2!s??|y z`ovbFA$EOHv;^)_Z1|mK>Z-q?{zcV`&hD<BoAFJ}O~l;91xs$VHdROy7R4t^lNQS6 zFHWeG`p#TDUt4|oLfzR*#Zupub2UDv!D6!I?U(Xq2P<%Pqm_4*^y+qoXC&~Fjr8^< zyZidSeERnB>*xL(^CVHRQ)k7*O`juoA3u~>nlLnB3c$pQ7_0wiNikk+p_sl&G_fMb z7~LEONFga&MyARrT2C!!$P|X67n2l2k`JC*I{#>}J57SQ;QtNPCHJ>r10C4lahk>L zteXSE>v0n{r;)W09t#SD$!R1sc9!R~EH4<XGMXR+hl$&fY!U6YUHK>Ka71iigx=z{ z=P``RY4qAThsZFQ*yI7qH++rw%QG^MVbq+!TSQnvk}i4G^|3u01(Rq2DupEP`17;S zGb3o1R<Ltofr|qna6!V8&tL!G(xFKbY|^6(sAXxX<WhX-y+>LcXo(84<Oqcvq|#~1 zwU5*A=Yyo6T5h%m%z}+$2*S<rg3}>0+gRQcSVrV*NXF3c@ZB_Q0!_M3Ri`xU`2`2C Bmqq{p literal 0 HcmV?d00001 diff --git a/res/flags/SR.png b/res/flags/SR.png new file mode 100644 index 0000000000000000000000000000000000000000..a2d124e92b8d3cc420e154b7b249500623c95595 GIT binary patch literal 1003 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lz0;06XFV_@87>~UT1Gw zYv<n=_TuwvDEb6t+-{o=L3g{MjLqy?AjGD%iA8HGuhz*x6(9*@14V%1Tex(AXuGh^ zetoTD9vY99DF8_z8z=&j;?&(Hq;oc2?b#Ojx2I%*B#;dh0gA(A@6Awrbx00K!o@eU zYVB6gIG?U`z(fs50@*;3+pRP1_Dl!5>Q>VXAPHmxML>=Rx*XzoFazkppLga}11ZLm zAirP+hi5m^K%69RcNc~ZR#^`qhqJ&VvKUAwfboZHr}IDtdx@v7EBixMK>;SgQcW9P zpwMhj7sn8d^T`PkJ`IB63?~f}*%K_&-Z1DKZ<1|z8j;x0JGXf<_c`X%g@+mV_2u_7 z%weA<+`^!kC>Us1$myx6A+Mv(%V@Nz=o43$*D0+4yG?Ue&DzzrY}&RyJuyq$T4rbE zWZ_`r6w4Jqo1TeH3%h2vt?9(KgEDF9?;pH)@}}vL-;DN{yLW7D_QnMMY1fbW(5k+# z;(%~{Gds|edqo5H&&;R=I#ad8HKHUXu_V<hxhNG#F&G&bn(G>v>KdAd7@Aob7+D#b zYa19^85mr?o$&xgLvDUbW?Cg~4U5_?!~ivzgKQ|yPb(=;EJ|h2FD)+8&&f|t%+W8- z01D`*<R|NU<|d}6`X;7lCTHuK>+5IcrKDEqWt8OR)RfIy2Q)$gWJE|tX>O90l}mnd zX>Mv>iIr6VP*X93;qw2x_0iOT&9k!dNX<;oC}A)&FsQn>cPmhhIFdO~HQ|{lB^eBs z1_qCcS6u}vkwjABo0*$hQdyA7kO^|1esNj){`UobXy*8a097#<npm0|7z2TM^OSRW zKqUf5<^*R}r7{>>nmAqPF$E<ZO(eO{AWw$0%$!s!ef^@;^vwJ`-L#y<^kR@@`oTeZ WKuT-Leqat|VDNPHb6Mw<&;$T4I%)9$ literal 0 HcmV?d00001 diff --git a/res/flags/SS.png b/res/flags/SS.png new file mode 100644 index 0000000000000000000000000000000000000000..19c65899c2c2018c5f1350d301fb4d55dbaa9ca5 GIT binary patch literal 1236 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`!^=z$e5NsNnwn``kt~ zEP`4<HU#jyZ{T&9%dQ;G$Sw#IS<mmWf!}>Sk7YNjgbgDTE07IAeD0h0T~~7I74b_O z=;`Vj7#ivsK@m^^pZj_V-<9%#OL*Nj0!@(iTT|4u?L_;Odksx@8d~58qS7L9(#(1O zDYYds0n2#ZHt@Tyv$XD?s_b(~SpK%4Bn0ufZIBCC+BG%u=WXtJ3%vzB)<T@Y<*`}T zdFdoo|Jy>6w}hmC2yW&Kh?)KnGuK*K^-ojsz9b}nTR`HrfFuy1xYKnbzuN|x&~?Q< zyG~A=e!r{jZdd!At_}!-*u@9*i|1;d*k;kj5aW5FW{V<B7DYl3SOF-YctfXh6-TqT zo3M52v2;KYFkt!o7IA0fb2Qtqcj>Wr8o&{6R2OHZABfwf4-stJsQv&L`ivz(e!&b5 z&u*lFI7!~_E({&4vK~MVXMsm#F_2CG;}6+R=Yb6N5>H=O_J^#30!)IXnl`*Zp);N? zjv*T7lM^JA8U)P~5>k@V5))IC53)E|mht)NiHYUO<rM9y`NP!YbmJ>$cSl#Jw}+SK z=@X|GGAx+0r)kloO<k*I?P^;#Z5y8u!>O0AUP?<yNzR@zYi4vrlp^DTIa_<z&fVL* zc=G1%)w6fA1C>-(RsR0*>nA%48*6(@8&FA1g-c3EiBC>UjZ;!k5tk6dPGeJDTV-Qy zYjtydc~*v}TwL8<-d?9qX=`0%2w1mj*RpNv_AT7VDa-J5R&><uTh_B?Z8-U`vt5yi z!OT2Vm$T6HHqc+HC9V-ADTyViR>?)FK#IZ0z|dURz*N`JJjBq<%D~9V&|KTV(8|Ez z^6iWVC>nC}Q!>*kacfxAb|D6+!5m~maei7!d16s2gMMjok$z5oa$=5taRyL8KP5j| z-!nHcJ=HfcJu^95*IZveGcP5zLNB8vH>aj-);gdO5+EZ&GD>rktgKw}lS^|`^Gd9& z0)U!|84Q>I->r|P25g>{l}Bo3dPWI@sewVo4CXi3)r4oJlw>d%8W<QHH(6v4R3nLG zmv3fnYDr~5Dnlm7f%?T|>HFUo_yHA(BP$94s$wuSu{1R>1_JZuDd+NlN(7LU1ZP&I zGMF1#IQ{2iIti51M3M^)@?=QM%t^J<*Dp#<&&<!$P0LA4F9unr9~`U)q{NR*n+DXx N;OXk;vd$@?2>^)ul=uJu literal 0 HcmV?d00001 diff --git a/res/flags/ST.png b/res/flags/ST.png new file mode 100644 index 0000000000000000000000000000000000000000..1d2befe46df02ac6c1537864f6a59598109d6143 GIT binary patch literal 1247 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`!^=z$e5NsNnwn`}v9b z;w!ZU*J%r_1))>oCRwTaBCDYym-$Uji<zWm>I<#W=3A@7w+4hR377!IPl%fo7idRs zmy6vY8@nBW;$U151Iz}hhiJJXZTPBH<j*<AKj#?0B#;3@f6p_%KMW$_g8$Alemu(f z>kQ*xumX??d?r_A4c>PO|3Ay{{~Q$kKE-f(6+>eNhy=2M;{VPvJl@XGmCvwyI>Xmv z4FAtFKy1IrYkJE-``1o3pa?|!pVJK81q@sqAQH$137%)zK7~P4kRis4;lm*i7i!l9 zhNJTtx(Yz#{|jK17Z~nuVdyJjSltCP4d~9Zj6Y6+d;uhZY@lC$oCc9UPc!}ob3vg5 z2^=^H3nHKtFytX|0gRUwUypMFDaMi@zhDN3XE)M7oFs2|7lsa2Sq~tGv%n*=7)U38 z@rP`u^FRiBiKnkC`$JYi0VcsxO&eaI&^1pN#}JM4$q5ol4T9zg2`NcwiK&O#8j9Y? z%!#>U@uZ^S=MPqvRs+TWzX+EQpBSegFE6hsw=lmbFRwVqK+Y4BnNDf0Ua@Lrc1Bj_ z>ld$HN=ryd&Ym%AW^_h&cJq@dx@*_u=Dd9)D>HXaY|Py|wl;hB)V_K9_F&Pzx_^v~ zjt3PNCO#CL7<kceW8p{6g9i^5)OMDA^E|1!GV`V6%*dOTJ1YZf4Ss*(=IZY9{^Wi7 zl(yDtg>Q;?B4dN2!*xUNU$}AQ4pX7J-T$qRIHzwbyYsM9U9OFTfuW|$IHgkkb1u+_ zswJ)wB`Jv|saDBFsX&Us$iUEC*T7WQ&^*M@%*w#X%FtZfz|hLT;PUN^2PhhH^HVa@ zDsgLA)OH~TsKFd$LvemuNqJ&XDuaG$aglybesW@tesKm+KtClvS>H1^F+J5cF+DRm zTi0A)KQk{SwL&kWBsZs~Y}PuU5fUIHLNZEoldP;<@{>z*Q}ar!tO9_ViWv--|KF_- zR3nL`25g>{l}Bo3dPWI@p^1UP)skzV9F1%cR8e?lN=XKTk%fW5?MX42Xa@Oa=BAcZ z7Njy{f?TLyT$aB7eSsfPkvNiVz9B$WKwB(L4UB=nym`vGJfIQ*BqhO_RjCZ-W|mG5 zWoCx}<usAxLW4XR(lT>Wt@QPaQqwc@^K{d464Q%8mgxtF=mDvvPrTZInixD?{an^L HB{Ts5K+@OC literal 0 HcmV?d00001 diff --git a/res/flags/SV.png b/res/flags/SV.png new file mode 100644 index 0000000000000000000000000000000000000000..fc3a9ca40d7a22615eab5af60541829ed16fd988 GIT binary patch literal 942 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lsFLJ6XFV_@87@A@4lYf zWgS+O(s3G$&ZKr6Pia4#+Ho?a;|x&b-@pG*^ymARkM};jzV-FflYf7|Lj?c-|Nrvk zjg{+H-#oE;`TF&5USGZY;7sl0vKh;(DkjxGdU64z?En8?Ki=#(vV79=MZ1r!`u+1A zL@&_r)Xp=>?Z;x8jwH7qPwfOb0IS=8j$aa6YzCwlOM?7@862M7NCR<_yxm<GI#^{r zfE>;OkH}&modCukvYpNY8SEvVzOL*KSp@}{1WPq-c!5H7o-U3d8t0P}BwQK<%@Yz* z4zX%XNN!^k3o|R@^V74C*Er70Y_q544^xv<fn9)~1ec4;(IcuVOP8c3FgaL8T1=Q6 z9uVSG5cp(DXvozoflm_LGBUC<U%z<uQd(gq=l0tdPTV+h<&4Zt-2(IIh^WZhH*P8Z zZWK#wQ}1izU|_I~6Wq@_!+IUiC8{N^5hW>!C8<`)MX5lF!N|bST-U%<*U&t~(9Fuf z$jZ=M+rZGuz~J)jj0Y$ha`RI%(<*UmSk!hQ2B^UtWJ7U&T1k0gQ7VIeX>pN$PJVJ? zj(%|lP(VK=KUv>1H!(fcH!(dkIa}9UUq3T1CAC5?qa-({rfe3-krE&yLNZEoldP;< z@{>z*Q}ar!tO9_ViWv--|KF{TrUq=Dm6b<oW_m^mgPDOr)xEu2v8xHsOex7=Ff=eT znZ|r@0Z@%3l3l);xv3?U1*r^~AP4Ffm!<E2U*HE+B#x{o1gMI^(8SWzz!(V3o2Q)1 z11b?lQWBh51yo^fX<=dNwC?Hx7ofBzl5}X0Cqr6hPO6o@eo<<AW`3S-T25kmF~~ms Y;4nQPbzepD8Bi00r>mdKI;Vst0I8v30{{R3 literal 0 HcmV?d00001 diff --git a/res/flags/SX.png b/res/flags/SX.png new file mode 100644 index 0000000000000000000000000000000000000000..6051aaa6242ce4616fccd9a1247b44afdfe303b9 GIT binary patch literal 1238 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`!^oz$e5NsNnwn`=8fu zd}v{NTSV%PxGV(y|NsBTx${p$BJPOEfDl;x&zrYz8k+Aas^1ZnhARWA{QvL&=M9^I zCftFU02KTC<HP5NTfaOz_T%FDXE6zPB;?@ce0%ix?3||El|cvU;_j?j@$2!^x1Bxr zRJ7pQKis%o-QV81Xm!WJ-OHz~`TOw`(7-R-wm-3VzAr9wUtAhU{{8jf<(c&pXK&uH zb=%SnTNljU@b&(dfB(K*+;O5pFD73xs6Z*`%lm`(wzVwnn!kPBjt$E;uIrrj^my}+ z@6XolzNO_ihe5lOL92s7tMk{-w@<J3Ki^q$dsX}WbuCZ#l-;;EtEzu5ziA(XMjNA6 zI|Tjt{psh&?Vn!E`Tl0!@lzW-Q<pFTwQC|203G@J&;KQxuPeLHVo-;QzkKthuwxIm zQ4idxW9OeZ#4lygYzHEU$qP4LR&txppxz4M0wbk1N_`QKVk`;r3ubV5b|VeMN%D4g zVd!9$^#F1>3p^r=fph{Gf5>(^4`i^Hc>21sKV%gYU=l3VwBZE`UGQ{q4AD5BoFL)T zASljo($H}8hD{rj88*nUtBafS>&ur}^3^dqDkci%6fH`Uc_cI`=#o*ylN8G*Peetg zP6-XUYH&8>`h_c(u3fx(+1%jB1Y;vJLsR4J8@6oPw$YVg!<@N$n-@>s+^yX{dw07! zQ^V6edunU`{$XZnZgO@yEWn^6E+;4{Dl054K7YcDDLo7Vzk`A<Uotk@ys5b8^8|(n zz4^_H7i?IuV~L4AzjI&n;x&5~ZCYi;KRd=ZH@4O}S<Y<dvS-t-ZQEnBrl{gk{s#sI zSN)(x_Z0R21O292;u=wsl30>zm0Xkxq!^4049#^7Omz*-Lk!KV42-M{&9w~-tqcq< z-_Ce|q9HdwB{QuOw}wS+7h-@K%t1C3=ckpFCl;kL=$953>F4ApC+6rEX8;BCQ}UDb zJ#!P&Q+*TDGn2D*&Gq#&^HNeP^fF3vb85<Ftpge%0Wu;aqck_k%E~1_ximL5uf)nK z0H~>$!EpKi-TG*1z~)(5d8B5hXOu9Qm>RI?&YcHTBaUPaR84qhN=XKTnYrmTmi`4m zC6Y)=d^2-XODYRe88Sic(=RSd-~YbA56v9k5TGgsLla9=17jdCZ=P~452!>4$(-QK zs#FFG3quQ2CxI5O6+l@{B-zj)PlmM2oK!1){i4+L%=|pvw4B8BVvu$E!4Y~uDnVp< QJ5UpYr>mdKI;Vst0E3O~CjbBd literal 0 HcmV?d00001 diff --git a/res/flags/SY.png b/res/flags/SY.png new file mode 100644 index 0000000000000000000000000000000000000000..0d51d071fb34adf9870e5b249bc01a5a9cffc2cc GIT binary patch literal 1002 zcma)1ZAepL6h7H(rP(%$)+dVS%F5k)ow>aD!^zC8+E}`<MZs=&cXyXIC%bo*)(@?) z`ctDMLMki*Au5XK%P1K_V3bC+=!06DSy4gXSgTxTnP5@S%X#1DJkNQ~dEa-Z&03X} zF(U&2vdku9HR8<F9zPb(&I}okAma@d1HkFsnctXn<T<RV+5*t10chF=kU**F1wfDl zc<BV7_XDWw4|Fas!@^VBGJ7RrG#c$yX?hiTceLeyjW6+m;Yjp98;tdTjz3NGrxZLf zM+J4H$z<|<V(@q*d?ng9`28yeCP-1d|0-V8$}T^;>Gh{~7?>bM@nd4}L?nFvVb4%< z2m=$OC_Wik@mM?-i;b`pB1Lgn$^MUpAIv@EXhs+#Ra<MI{MkKsimY8)WrQ8+vrR}Q z)SDb4qVwl|yRM=S6S-uzRLW!NDrK4~SWuRQQk&Umu+Qydozs>zsnpOzG4d%r6f1X@ zPE|TN_BrSlUA*83PdqhCp->RnT}|yFGL*j{cb-NY&U7^o<QdABtXe$vdT4L0O{P-@ zmRy^6%-Pb`*`jGXu<zV1?f%0Ze&>#mE-j6nT%!{+bGmO`dvNvcq&(TaGx9Wf)f`@3 zo6{Y+@u>TDCTbt9PV#8B&lwu00FYLa2M1QP7vn4QrOK6(i;*~*4R8ohL{j=fa$zB* zw^JoFSwvI%`6NY?<n4!^C%-lL{4T-W@b88rEjL$VgFbbG=yyvSm;eVvPz(@WKg)Ot z(Sriv^0S25$MBqm;RSYGp`IXwIv2N5>ydok&FkAv;)rRf5q3||x0a@jem3ai>Li-B zVUq|{NAeQ!hv(-!nl^C)?~$N{BpV-JK8qgps5!qpwSr6XKq*Pa#bXh)Odn;j2tH0~ zsOLaPy^j#r^IdQ1t$)n1*wF=4ap^)*hfBY;wYLr}%29J_ghmcZim8e{-;dN{tzcAb rMYS2+f|sKSBEa#2zpl{jWq2`l8BycVBCL^i>9GmSl~&`)3g?y|f@_3U literal 0 HcmV?d00001 diff --git a/res/flags/SZ.png b/res/flags/SZ.png new file mode 100644 index 0000000000000000000000000000000000000000..a7366cb6382a289e13ae8349c6eb552d691a9e1c GIT binary patch literal 1479 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`*1a;1l8sRB-?PeY?1w z)-ikX>U*%Fhcmh1=<!UhhcmhE&E$SCgX_UG_J=coT#)Q$K^PL?-YmeqRgim)0C$6k zNVtUfuFjUb3ud24irFeBxtWg>C<{XTTp$G2wULJhinw_;@bhex<lZdBJzap)o{P`Y zBF)@7ansiA|NsC0^Xu26ZQFNRnQRc}STDh~Sxa?`lF|llm|n0Un|Qf53UhAM=h)=P z(PzS{FTv~V<{1%Q<mr)WZeg)x$&zi`x9{4s_wLC9yOYf}hU)JvNZo3nvx%1r;RYV= zg+{XVo^Ff1WVbl7*$XnWadJ62I=Z^J*xK4jNJw;dckkZ4d(WOdpTB*-wRXV{Kgmsj z3JsoaGwiiC@^eGX*~HD&p=1)|UOQ1<XA2)!FDIt~AD^R(i<g&|i;Ii5xA)q$YqxFN zwrkIxI|mNzv9{jC!!buvKG3V7*f3xtH`EZIQLFg`rb?=<;S&I|H}mjJ=i;(vVP$1t z1jd?=zyI@Bum1l2{b<{^ohBw5I5~l8*7NX9mrz|SBmpr57`$5qxwi^%0ZB+uL*k{H zm&1#T#Y;+LaazL3<XC9Dz|?GksfWbuV{rW5oxyc?8V7QWV<wf0kG6LLUB*}v<QL4~ z@a#q!h?C^)?!wT)D(eB{a29w(76a)7F#eG3bRNiHFY)wsWq-&jD8M9Gs%gUu)WhfL z;uxZFJ~=_cr$JDh;iO?AdxB-!8wQ=@Oss2i-pI^}xnrOg(Z|kH@$&~OOKXd(%h4l> zObM2poSdGTnUax~m8`C+siL8#rM$knxtts3^sSq>uW{kTjh!oJ?rdE;b!+e1xqF)z z3rC#0dGzYpyN55IzJ2`qd3yx|4GR?$9UCPf9dS`vVQKOC6J|`AGilbec@t+&ojZB< z^mvA8+B#Z#n!4KSSFBmJZspq5`58G`d6~J{?59gh%1Xa~`S#U+hDGM5DJw58J3qrR z``etIpB3KC*`M%m(NXVddeQrmp02u@eQjOz{=~=2&I+CQcY9Om?QgQy<!|q87C%|P zq2b2%{|62_w+9|(jjwpr&2ID2yn=z@<qF^L8P8NjfPtl2;u=wsl30>zm0Xkxq!^40 z49#^7Omz*-Lk!KV42-M{&9w~-tqcq<-_Ce|q9HdwB{QuOw}wS+7h-@K%t1C3=ckpF zCl;kL=$953>F4ApC+6rEX8;BCQ}UDbJ#!P&Q+*TDGn2D*&Gq#&^HNeP^fF3vb85<F ztpge%0Wu;aqck_k%E~1_ximL5uf)nK0H~>$!EpKi-TG*1z~)(5d8B5hXOu9Q7#LJW zW!?s=5l1oyswO-$r6hyF%)sEK{##(V#vqBL#5XfHwWP8jl_3-4KK<gd^!@J({Lswt z4FRfRFf_3=H82JO^X4h%@_<SNk<1CstV(6DG%`1H3SaRLl%O?{BtwHd8PYOyQmyp$ oi&E1w^Ye7mauU;vLAL1!N9h46sViTe12r*ty85}Sb4q9e03jt3X#fBK literal 0 HcmV?d00001 diff --git a/res/flags/TC.png b/res/flags/TC.png new file mode 100644 index 0000000000000000000000000000000000000000..39971bb9b272abaa530ba7c43656bd75ee875b56 GIT binary patch literal 1448 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`*1X;1l8sRB-?P{o@t= zch~G{=-eh_*UP5cyegyPrc;Pd)Jz7odIzVrb@_b{=B!N2Uc{hO!=O@Y<kr`eI_c_^ zrAJmDDCpe1y=>wQr_kD(RXwTwH)pNdyZUfc@ftzX4hH4g^_d+TbGj~6bU&}{d@*zJ z?WCeB`pysPdVt)gQx@zipRggLJ;J>Ss1j%_2r1PvDAvIcRPdI4;C0)8Yqo(m9D{G! z`d`&`yeMOI%P!!iUBGo4|7&)EckBaljnWxZ>Odwa*J`^o1}9bqB~%2(S9nI%a_cq# z1;Y~N)HH9rcHqL>m7DhWEjwR3@w#2$ku4`59z6SE&a#C~OOi4dXgc*mU7}RqSd;#9 zgZ;N1nzv?&pPXx<XxjjETXV;jQ}Z_OshOJS*Dhz%y*8`!j#EfT;#||9nRBOXzdU2* z!mM6Bi$<6s4NWx(e^=Rjnx}cKo8!zJZAH6!pdl4;{c#>mlE%$I2QzCnhPpN97-y>6 zcQYtdvuZUu#>}fKT4-re2Q@^oKCdAC*I~~2^`a+cb6!|!C}s-s4ufJ1h=hk5hyl|A z3<Sk$gcLYb4c)6xY*ja1F5S9KbaHz*qgn$bz?oF*!!q+))|ysL4^Xg1GC`%5S*_mC zy<Qw*9ncUs0>%;CUIqqHF2B3LG{jgE<QL4~@a#q!h?C^)?!wT)D(eB{a29w(76a)7 zF#eG3bRNiHFY)wsWq-&jD8M9Gs%gUu6#D7u;uxZFJ~=@`sX@>@At5CxEipCu`GY5q zo;`f}SloeO!JGvXHgv3*v7=?llr24LWLC}D)3j*Prmj`9cC{^=wykg7ynT%eCvNQ2 zj5v4Z&Y?@EZXLUJ?%u(RCvP6TdiL(&%cpO%>pXw`TwXvzL`FzTOioZzR90A8eEx(P zQ+TF%d-{5xKXK;Nxszv4>ucy}>1pa}uV1l->2&DzE7z`?o0yqy-?D9Mc}ZF6_b=bR z`p@8)Hru4~)RoN3>1XDcR-e05`B_{iW=qA%OR1;B8=kTR96S}e`udvK?RCs%J9}rF z<=@<u`<pMPh{?MA?Y+(A^BKY{pA;NaZ&#OV<6vO$V)EZu5F`f5=c*;H5hW>!C8<`) zMX5lF!N|bST-U%<*U&t~(9Fuf$jZ=M+rZGuz~J)jj0Y$ha`RI%(<*UmSk!hQ2B^Ut zWJ7U&T1k0gQ7VIeX>pN$PJVJ?j(%|lP(VK=KUv>1H!(fcH!(dkIa}9UUq3T1CAC5? zqa-({rfk+apb-)vBSJDtbCayBT=J7kb5rw5tgHfnnu-|=m;c|bkERA}o|TnHYG!&y z34@t|LDjvzTd}JN&rB)FU@$Z?FgUWIED)$h63H&#%-qzH%7RpeOppWhi_6mYzc26u zDiTLl6arMmU}$1#YG4cm=FL;i<pGrlAt?#YtO5nBnWceK0`HL{Kv_*B+0Y<QhP2F_ rR4aY`qSW-v{5;*XoW%5EkahYY&U!#9OVMx*P!ofvtDnm{r-UW|8*UR6 literal 0 HcmV?d00001 diff --git a/res/flags/TD.png b/res/flags/TD.png new file mode 100644 index 0000000000000000000000000000000000000000..1fb647d4889c5d4e72dae6cfa95cef755efa85a2 GIT binary patch literal 699 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`YL6XFV_@87@Apq9d* zoEDYn`1cgUztb>uis4p({83KBV?03Z3=6it`vasHOM?7@862M709ntN<n8Xl(7`I} z0pxHNctjQh=>#zTknMCH$Y3w=^mS!_$SNqnBv`6x!wVEr^>lFzk+__kus|+B#D&RW z-K0sAJR>TPuCYx&CnGa0Cggt*KLf+UNg;n;ZMHlB(oo_WQIe8al4_M)lnSI6j0_CT zbq!2)4b4Lg&8!TJtPIVy4GgUe3@+c!cz~iIH$NpatrE9}MQs;ifEvs}HWcTlm6RtI zr84N378mK~<R>TQ=oe=I1@u$$ll47w6Vp?D6Vo%3vvtk&^)vHQQY-W_N^)~*%4V$t z8X*BPA|#_UH_6J%B|o_|H#M)s$|?Y;shGiV`TyPeXllUbSy_3cW~OJ9Fqjz_RNdRV z6{toW$sDMf@XVBw3<gUBgGa@yt^$=vA}R6B%uOw+EJ$U@1i4SYxGa7D`vN~Sb9_U9 zsu&DSEKLoJfxx_Z%DFtC5&<N0f-|d98H|lBoC??dUkQ}cM3M^)@?=QM%t^J<*Dp#< l&&<!$P0LA4F9unrAL611q;4?2-2>Fb;OXk;vd$@?2>^3-*vbF^ literal 0 HcmV?d00001 diff --git a/res/flags/TF.png b/res/flags/TF.png new file mode 100644 index 0000000000000000000000000000000000000000..41bd93343a4c1bd24348fe475a17e8a8d774846d GIT binary patch literal 692 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_@87@Apgfg9 zesWad?tlOOgTTLkpG)iCs+zskv;-=+$84Ynq!>$r{DK)Ap4|Xh%$Vfu?!wT)D(eB{ za29w(76a)7F#eG3bRNiHFY)wsWq-&jD8M9Gs%gUu6jJeYaSV~ToSd*gE<wbF$zk23 zNs~MyqN0wj30*D5=dHJ@ekD6Y)G|-;?d)mJK=rC6t`Q|Ei6yC4$wjF^iowXh&|KHR zRM*fv#L&#jz{twbT-(6V%D~|A?TiN~8glbfGSez?Ygp8FAqJ?y9Ararep*R+Vo@rC zera)$eolUJVvc@s22emhB|ll;GdD3k)i*IcGdWw=TwgykFD11?FQX(kr>1PyI-n5} zAR|IDN^_H}tX%SwOLJ56O028`fSQUK4441kt&gS#Y@U^sM`~tzMhSzNfkD;1y<355 z#F5N_stM0bDal~4G%$Enyy_}Yi6oK|-^|?9lFEWqhD?zA^oz^V_rEXjLo>%W1gMI^ z(8SWzz!(V3o2Q)111b?fGAB5*3K*^?mQGjQ_HzK`G?C;&gFG41GILU`^!1BU(=+q) ibklMY(~Cit>4&)K0jWg?_uT<%V(@hJb6Mw<&;$T?4AqGM literal 0 HcmV?d00001 diff --git a/res/flags/TG.png b/res/flags/TG.png new file mode 100644 index 0000000000000000000000000000000000000000..560fc0988b87e4b77e6a5614b7999e6b568391a1 GIT binary patch literal 1133 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`*Dg;1l8sRB-?P{YwHS zP{eNxVO-%iS)*XdpX|es<p)F{K|#|iGWN)_yve={S^f-}{t&^7Jcd_f?VnZkT^6;t z$ZG^NVUv=%PQJ5TxvPAc>m`2UD-zcC!wX(^&i;A#(euVB_X4vo3tL_>(7C^r_rYP# z2ZuNzw%qm2_;KsO|NsBLox671DefYl>1`ve|A(0WUtj<tkQ$&-k~SYV@B4Q4%DW|- zE(@Do;xoBwpaT@Yrs{UjKkKTz<Gr99AbEw)80dye{3bvJm-tOD@)|=BkbQ;MWVO5{ zPm(Xt{R|oY*VXkf(JeLIZKg<rD1uD`ak0nyi;?2itDoC<LaoCF5rzPtN=0x8Cl zAirP+hi5m^K%69RcNc~ZR#^`qhqJ&VvKUAwfboZHr}IDtdx@v7EBixMK>;SgQcW9P zpwM<t7sn8d^T`PkE)9a}45thY4L5Jtw6VCLsPMA_bBBz+{Qiao6E<|LkT7C6+3D@! z<$3zVsgv3oT8hjQ=4|R(HEUPfvT57;*2w{-UrI|zNzR@zYi4vr6i9k&@7lS0n-@<u z7OVBqTbK7vZeHBIh&P`<e*MhP!NbMJ$;<7|rm(Z)#EKU)ZtVEcazurv_N2gsNwcQ) zCC0O{q@<-jPuLO6&(3gC^C5$RrJ)Ri%JF7qgGc@Q9a$Joh1<=#R<!yA&<m<1t`Q|E zi6yC4$wjF^iowXh&|KHRRM*fv#L&#jz{twbT-(6V%D~|A?TiN~8glbfGSez?Ygp8F zAqJ?y9Ararep*R+Vo@rCera)$eolUJVvc@s22emhB|ll;GdD3k)i*IcGdWw=Twgyk zFD11?FQX(kr>1PyI-n5}AR|IDN^_H}tX%SwOLJ56O028`fSQUK4441kt&gS#Y@U^s zM`~tzMhSzdfkDL#<~Kk!;z;H|)r4oJlw>ei7+B8At#AV>kwjABo0*$hQdyA7kO^|1 zesNj){`UobXy*8a097#<npm0|7z2TM^OSRWKqUf5<^*R}r81bCnmC1hiFN?WX(Gvm y26-~1W#*(>>FXDzrf25o>89l*rWb=O(+_di15)!BPR{{qV(@hJb6Mw<&;$S><dQW2 literal 0 HcmV?d00001 diff --git a/res/flags/TH.png b/res/flags/TH.png new file mode 100644 index 0000000000000000000000000000000000000000..9ee5ce89979134b55faeb761a90d9244ae3f044b GIT binary patch literal 731 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`hO6XFV_@87@wRz~Hm zq~f=}N&o-<fBNK=okfb0w4aKsKTvl1DnCvj#aI&L7tG-B>;}kI#w2fd7lsa2Sq~tG zv%n*=7)U38@rP`u^FRiBiKnkC`$JYi0VcsxO&eaIke{cEV~E7%<b(xs2_h~`4(o)N zG?;cC<4E9mvP+>sd4hBoL!(2U6q5?m&Zis!98by=9F!+m3p1)Eom%wL)mZXuoJsh? zoswtWSNvNl$H4IZkwct-u}CS<WYrSah?11Vl2ohYqEsNoU}Ruuu4`bbYiJ%~Xl7+# zWMycsZD43+U~u_%#sd@$x%nxXX_dG&ENZ(D1Jqy+vY|LXt)x7$D3w9Kw75t=CqFqc zN541&D4?H`pRDhho0y*Jo0y)NoULoFub-Khl3JmcQIeZeQ#NZI&<F{T5g{3+xk*-5 zF8Rr&xv6<2R#pK(O~nj`%m44zM^ghf&&tXpH8VY<gu%?fpz7Y<tw1&6NajG*glDFd zWH4A77(6Oobrq;Y5=n_~W^QUpWkD)KCdhsI#bxRH-xv6ynd2J*RK;LuVrgn%3<T!Q zQ_kf9l?Wi26P#HE3|BKtr)!6@K}kRpNiH<VlOZiLC)G+{zbG|5Ge1u^EhjO(7-X4# Yh=(4KlKsfA7pRHB)78&qol`;+0EtE4lmGw# literal 0 HcmV?d00001 diff --git a/res/flags/TJ.png b/res/flags/TJ.png new file mode 100644 index 0000000000000000000000000000000000000000..ca4be077393ae0f5717a54fa92b13c71b81b64b6 GIT binary patch literal 993 zcmZ`!eMl2w9R6vpY$9a|S}90UxoqB@sl!7^ZNn{_-P|GriCwqb?Pzmrce9cT%Mh(U ziasPHBKoK3yFY?HDJm$i)KW~!vZ69VDK#|rWxtaGi+Xw9=lQ+Q`~2RIW~QPnQN2(N z0Es4}z7lnjGUI0;-&Ds5C~-oGxdh<q!GtiY!gU5`tTY4EEd{9G2M|Q7{xd*;1o&bH zppOHj_)grk6ye4@X06SD+TY**1fcCV`WWUHES5gRx^jgP3=<876okXkiQ&j-Z)Bt! z8EbSVaYTMZ$9ki|FVXRr3Xk=oGZ`9+PJEn<1|!1{kd-<#q?q43BVTWX2U?M_Mkf>r zA;OVJaHRdm`=*HxhmeCKPtif2X<?>dVUCqEM@pHaWeQ{6VnH7`P~i9zPW&8fGP<fz zV&uvSD-?g~Rm_;p<z;$kQl%SlG23U{D52V?=C>`S9azkgO=iQacdDehu}J|<Q6gH0 zP5KgBRtINKU0k1}v)di_Rq>ChOi0L1m^UZu(M;7~+KKAEqT4$M$(U1VtCHj6)w2&Y z?Qc%F7gz6}M`mc2Xfv~y%^ApS(_}5zoIiVxJ!XB;+5NodnW3etA$He{)tTIU>q_Z3 zFzvDG6&Ejf+(U!uX>4q9;j&a;?bd)a?rR*~<3D*FVhW3fNj-q>@^Z&+qScSDTOu2( zWCttrH0S40AeW?cS~6ct>1<R1P3F>+E}NuilI(irdizI%$LkQCJO1Bry0Nnw8+6JI zlGiD3WBoi30m)Cey&UT%Bo`Wl!^;sS4=eCyRuH)@S{*@%H4c7zj!X8qch<IE!Xr|Z zBW$jKXEROfy<EV<*T^)@V3P#YnaNwkUzw@%Xxhk&f=h-1lB|1k=i0wB8$^ff0xFjz zA6}`oU}nLzyUe18mv{Jh5S0fKQmt_JtFHn>DbqtXOaYZwm`|?6p=&tWUW1XOX%VYf zhl#?x+|r&=Q!;L9rfsgTG=Woe^E5&Dc|r8nXq|3Wkd)g9+nO8{fwI2FCNLQ)^p{HQ Gdw&9ewSGbX literal 0 HcmV?d00001 diff --git a/res/flags/TK.png b/res/flags/TK.png new file mode 100644 index 0000000000000000000000000000000000000000..88a7eb1a2496e6acc186ecdcbd394d428478ba60 GIT binary patch literal 1225 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i1|)m0d<g|oEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8ZKG?d}4kf#9d}?s_1_ zS>O>_45Sml_(QhSc_4$m#M9T6{UNKM0Fz*;rVTFx15>`Ii(`n#@wZcaJwgISj@N(R zH*@1hZS}Q+vw31O9M!(Hrs_@VS)#-f9Xdg`OCf5<3D@5oO=fSSqqN1}I&pDr<~Pyd z6g_*;CE)b>#5t0+#^1M9T&{T`y`*=?4Eq?l=W%@df7?I5!ycKsHCE+M-Tr%8Gnf}F z`dN8v*=5B}&EBB@h5Wh>&6h=0rHn7U4*F}meL`8Kue$cfO75EzCVF~JdLQ@n)XKzH zT4~11EZ>;zubHnVV#b)r*m~lHo0n^H?|k;PwNG~W+?p4&HHK@hWSWG~+O?N-^;#Kw z)6?}*?=jW&oV~g0=Jxc?-{N+c?|tb_@}H5uzRy_x#8y_-#Hh;!OXlqSsi6FLzay8! zhAg+p2)_J+#|1}r#MqxXye;mPR{EoYh|V1j(X1zVgqs##l)QE(LMBC1#Ei4`+N9Kw zNqcusf0^^wq587I&phF^Ym^zMR5fv|JbC4%i=_B;<!|Of*QPMev9vk3_;vou^|QA5 ztO_|Eu)BU*EUV%(=E`kLef*NOG)m`eIq)*zPVUR+uI}bvuU^i`HD1BR_v2r|uLmL; zzpZZd)p-`my^~Qt!lK%$ZL{xV+j8^j4`OSV?DjNovsOPfw>Vz&M1O?vPDvlHgFlaH zef!;I5oqfg?rttS-EQMy(Yt?cYFb2FAAI|ak$XSij)!wKmsbAGn~>ehd?)+m;yo%3 zM@)p?dS|PvRDFK$!R4EtEzj*}u3yc+F-vNN#g%V?<{|wBTRw^ZwLkqrUf-ERz)88I z{%z8v-)&c7Y|PwNs(W1jEv5Fn%jmFO-!F+-U)1unTHQE$r&!5t*6Uk8<;DalMbpLt zzfD5XKd+zHTK#tM{_LR7%1@pt>H|}wYKdz^NlIc#s#S7PDv)9@GB7mPH89mRG!HQ} zvobKUGBnpVFtjo-xO_X~0g8s){FKbJO57S2wOxn-YA^@cP@JDuQl40p%Aj9bT%@0q zpPZPZUz`CH&`-%v*7wX!Oi%SqOwUZt)-~7H&&*3nt<cLT$<3)Lo3##TgapWlkc`sY zBr7YI{N&Qy)VvZas{o*;Vg|$I|968tf~*E?o|TnHYG!&y34^79L1ELc4(w{eGgC@3 z7z`~83{I+lZU?H7M6$~_GdH!QvLKZq6XZbs;<EJp?+g5Zio}r>g#cAC7@Am`8W;nC zdGnNWc|awCNJ@e;t3WD@O`Y<l3w8q~HIXDkgFG41GILU`^!1BU(=+q)bklMY(~Cj2 Z>4$jh0ja3Ks$8HZ22WQ%mvv4FO#u10)(-#x literal 0 HcmV?d00001 diff --git a/res/flags/TL.png b/res/flags/TL.png new file mode 100644 index 0000000000000000000000000000000000000000..fa6c365b9b534757097c18fb70172fed6b9a2870 GIT binary patch literal 1210 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`)oa;1l8sRB-?P{b)7b zGtROPbrkL>$=^{yAVwwzCmpWCnKIA)74NFcBg+Ccs>rdfsFwWLrTo-W@s1io7AVEX z&D5AK{9&WYmkyQ3E(&*45wfhTtn%{mjEqb?Jlqj(y!X~C{@<<kp+WhPg96BEm;>0@ z*!ueVCQqL1?Cfl!!Le_u%)jGmzqhKsuU39!rvS1}MV^U?$;->@=FOWwe*Ez9@c}A( z2sG`q+W%8(-{z=1v{tyI477+*SXj8Wwzj{&-__NPiJ8?{gB`1B3JMAW0)lv)1oRi! zYm7}`uYJbw8ZbasVha#l!H5~`Upf^&0PSEb3GxeOaCmkj4a7<Ec6VXuV3qX%aySb- zB8!1^0vLbDb~+Dau$OrHy0SlH6%=3+EY-B(1q$u=ba4#PIG>y#q0}H~o{*4|l$My9 z{QSWY1_w*MJh?c#Iz~rDouWgBlolmD5}FirX-1LJp+lRBK5=z<ozhw*@$1SJQ<JS* zN=v?e;pOSQ@TAAr=WNSaU7fXSa&z7WJbfc8Gj~pFYi!KjJGM4^1D@`wt@-<hnW?$S z+3D~h<qLNuB~@i)g{8&kPna>KM{D{dtvS=?O`JJ(?&R6+FZcgxI<)A~q)SFV|EGqB zgoR$eaxIa2^RKpJ%btn7dDy8g*T%uXz<pfvyN3Lme4tlUOI#yLQW8s2t&)pUffR$0 zfuXssfvK*cd5EEzm4T6!p}Dq!p_PHb<=Yt#P&DM`r(~v8;?}UJ?LrJtgE`2C;{3Fd z^2DN42L00FBK@5F<is5P;tZgGeoB6_zGrS?da7??dS-IAuDQN`W?o8ag<eKUZca_v ztaU&mBtS-lWR&J6Sy{Q{Czs}?=9O4k1pqY_GZ-%azgr(o4cI&@E05I7^o$Y)6H@~g z-MRCCYQ&MufvO45Oex7=urx4uRJ`gcP>Cdx65q_+)RM}AREA8D`}B*;()YhF@Iy1l zHw37P!O+Cg)W8@B%$uj2%L6JAKr$ydvnrLr%*f2?rlE%tP)-v`E;PuKAuTf})k<H# nC^bDZKTkI;Co#PkWSM@5j~<YEQMjxYsENVT)z4*}Q$iB}5|p3U literal 0 HcmV?d00001 diff --git a/res/flags/TM.png b/res/flags/TM.png new file mode 100644 index 0000000000000000000000000000000000000000..6cc0539da61d69fe9f3bcb21c2663f44d2be6576 GIT binary patch literal 1335 zcmZ{jdrVtZ9LEnjvJEAX%?J~h%tZ>g!M!all^Z6nmbSFFls<r#R$6XvZ!h$<_7;J# z32f+?$sPh@JT?vCAsZCv6oJVcY(tr&umBU?1N9H0#>DB8MU6&Jfj@AGH|L(;IltfM z_x+vUxw#DrxhOpB#V`OsxI`>aLK_`?w>=H#@vtovG+U?)JOhB?lh6ER3WfVUgjk6K zP{jhE<|qJvLRZZX0C-UVelh}podqD$)iIuz3P8xu3Yl66ft8h&IG=?zNU2+k{7yk9 zqq$Uhu=B8i+glRrv%nCX*B5J;CAZD!Z?L^zZSATp?x@#udI=akFyiI<9UQ-X{}2r^ zIAR8={8rtSlH3u!b~Hb`&z8mOBRGDCXuLY@lXAgmm2UEQtdCsNq*TpC{f2CxNjOj} zYPU*xy#zMGWRF$DDCFOo>)IfPsJ!<KA6TS)rP<wO;?t#aZV$ooS(5yYoXdwB7A`_f z)<94bRxfDNUR9+JOGKk0;eb^DtHX05!)3V>bx;#B>jO5P*Q9ULOPWY!voZG+CF8Dj z1f#40^SWAaJxD2=_2+fsCPLX_z#A>nbu3t@ReME~enBSk=Lq}hjY2`bQGdJwudh)Z zsa3vHF6Z?G4*+@1nWAn|)J)@NDQUZ144Yl|!|R$fW==T@Zn#P>x^V7?!TV<oQL0mh z$y&>NYu$WHMNheo+eO3<T4IK%g46oxqP*)ia@vqHXcBX~H~jf03;{g-c6QpLB+ajd zelz6ZhYnBGbwCrsDCH`UzPcRrg_KA|0&pyJw-|1=yTn=#w8pjfVOi!JTx?||xNz%t zp%KqL72%Cf4TrA#5<!MKZjLZU$!a1Z!3>*yX~;k9ak&pZdidL~Ns~YzPgjTw1!|c- zQ<<a7enBIbzmbtA(F!%VAxkBV*2qN#xhq%azgWJ$c<bKO4o%?ZH`8|l4<>KVe0^hS zcDE*QZQ;wipMN!%wg-)S?Um;>iThLca$dz)$%(JO%-%kGZYI8u{&82URu%{Lww!Bh zZz)z39>sm5T_5#-+UXB#*L!ih;ZPQ_GkI+F%$<?PCjyB!_x%GChyLEll25Vtl{XjZ z1?pBuJ??niG4^N`DIDGQ?n~!?kA^=+l!m8Lq%7Zqjm9v-LdI-jNQ`ik&;Sm~<|m-M z1U6sIPR39U#^&!s*%*p0+_irDp9H(pOj|1dKcVyOc|A<v2P=4-7UoTpn*@m0<3?;w z!em1{R_H*?P6CnGO%#cnD4Hls;3Ej_Fq0LDR>p3tE^qTeiKw82+Um8JV3@#3c<rQv z!7v3(@&I=4KbMgwm^D2N6O%M$Wk52DRy~;b7&4KYbT*g*+RRu%3W|R3xv&J0U7HY` zwv$Yyiv)D=e2Ax<`s^2%{0SXg4Jp9prtr`t`0$T31so9Bu}McoSCN3nW1~r#&tBX2 x2aLvVifWV+V4-a!h9GW|qMeQei_JuNg5?l3o(RoS#K~Eh1SCSaz?W&P`xmE0^e_Mb literal 0 HcmV?d00001 diff --git a/res/flags/TN.png b/res/flags/TN.png new file mode 100644 index 0000000000000000000000000000000000000000..1cc09ec6f0abeb51b14e53c8f528c7b204f9e416 GIT binary patch literal 1153 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`&Rt;1l8sRB-?P{pSqA zNJ!v01OIadAc-spWDCAvmwIF5^v)~djgcde4HQ9ABlt?*;M=@qKX&Z<zI@%!eTToz zSqv0`sS$d?E&FZB>MtD=-&%QoojCL7k&}O4zx}>){R=Lc=L|wX>)zV?{n)Yhm9)-} z4cmSlKmBd-sz3K0{QL6dt&KO>G5jB*GrrAT@=C$r_k}ATvr1n|YW+NN;{X5u@57TJ z4#sVQ7uW=XZUFfa?2DzSzR-vH0umsQaB##C4iGiyVF(Q8?TU+;fD~g%kY6x^!?PP{ zAWo9Ey9+}HtE>l*!&%@FSq!8T!1zP9(|I6+y~NYkmHi>Bpa7F#siqAtP-vy6i(`n! z`Q!u%p9Vp3hLeVg>_<)+Zr-qIV{t)IVe+YuA3lBL=HTM&?&wN9(dq5s<$3zVsgv3o zNhdTlSFc#LGCLzH^L4_Bm#<z*OGru1o-u1?@`=cZsL0zlZr!xDuu42(xqHX1oz)dp zmA`)^o%s2aorR6Hy``<yJ>i6_o9po-$BwG2sHrBOSh{4{()5(H)aOs0CAN9jIVJ`c zdS*sic0TM3<@5i;E62bf@=^BJWvjGEprchwTq8<S5=&C8l8aJ-6oZk0p}DSssji`U zh@qL4fsvJ=xwe6!m4U(K+Zhi~H00)|WTsW(*08AULJUxYImm|M{Irtt#G+IN{nFwh z{ha*d#2o$N44{C1N`A7wXKrG8s&8U?W^%T!xxRj8UP@|(UPei7PEFaYbwDE|Kt_aQ zl;$Q`S-IpVm*%GCl~`E?05uge7%u<6TOUmg*gPvMkJQZcj1mS51A_vG3H!0D3C~O^ z$zU)vGB7x@p)3%nMiR*`-^|?9lFEWqhD?wH^^42W_rEXj11b_nRulqM#b9V+X=-2$ z1m?|C&gB7>2p}m5&a6shFtIdpl4e}x1C-N5k_!#;WJt@*Nww0~FG@|%%+J$J%SlWx c23e*b;-?3sCT;vG3)IBm>FVdQ&MBb@07sF!kN^Mx literal 0 HcmV?d00001 diff --git a/res/flags/TO.png b/res/flags/TO.png new file mode 100644 index 0000000000000000000000000000000000000000..44c42ce0d10fbc884d07d12440adfdd8ec2cc25d GIT binary patch literal 919 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l-LsB6XFV_@87@w9}K=; zzy9Ii!N1?X-_FfFz`$^jfdMFdx3u(>y86$jPl4<oj~?BttURNye}sqUMq=WdO`ATS zKYvnD@i064K_;dnyu1(U>VVq6-M)Q2GV+*+$osu}f4zSFa`EEZIXQnme!P>H2Q>CU zLjx4m)dAH%sIP~MoHH{6D!_$+?g1hoF#7ya7f3Od1o;IsI6S+N2I3@nySp%Su*!M> zIh+L^k;Ond0gOLnJDmqI*h@TpUD+S93JNd@mTKDY0)@&wT^vI+&L<~GC^ZP0CnTgK zr6naLrY0vPB|U%O!lq!Ur>2%C7pG>IQ{?l9smbY(Qp8uo&aO^x53j`Olc!CbIywA+ z-ti+#RxIIB2@SdU^vabhrY2jrl$Lz`!h7K<4=-<TkFU?!GrBr!FFds<Y-F5pSeW0L zg@K{%u>j+W{;v;#PEajzjVMV;EJ?LWE=mPb3`Pcq=DG%^x`yT<hGtd<MplOA+6IPJ z1_qaJXFNdBkei>9nO2Eg!=kneF+dIGARCJF(@M${i&7c%ON)#2bMliDbM%WdfCBm{ z`N{g8xrynizKQ9X$=SN*`udr9DXA5D86~+nHD$Bb0gaFV84;3Enww;0<&vLVnwy$e zVr3No)Ktu1xcvWaeKa*-^Q^2qQZv&tN*GKm3^q1Dz6?|&j${s0O?YNXNd|+ZnZXuK z-e8~-NhBq{nYpPYl?AB`nIQM+7nh~)e_!B-W{z(NP!)rriKVH5F%XzHPdS$dR3d<6 zPH<*bDuc11kyFRf!@$hJpot_G8sy24mYI`krLSL<nx2`Tr<<0Om|hIBOh3e54@j-Q ScxNq86N9I#pUXO@geCybiAy#B literal 0 HcmV?d00001 diff --git a/res/flags/TR.png b/res/flags/TR.png new file mode 100644 index 0000000000000000000000000000000000000000..4e63d61b9c1da49a76f2f8a64fe43ff126948225 GIT binary patch literal 1239 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`(dFz$e5NsNnwn`;WQA zp@>uLF}uiPHsQw{q6k5tEQjb*S<P2&0k8ccp6ggV=9NOoa*Dn7kNA1|?9a0oKJ`s` zms|SM!Rs-f^kbk=aAP41cF`9W&VL?1{c-ffb6pFF6;H&Kp9si45mf}KN7lk2`l)-; zzhA#!2Sh$%6+$?VNAg`x3DB132G$7m+!9|`umAh@-E(~_gv&X_URb&OJaOvJv*#}? zoDkw5lPBUZxftDK6gOKEa5E$*P7x6l!0?pOfQ6?yN_Yap3L_SP(G+D-{0c}hmIV0) zGdMiEkp|)<dAqwXbg;^L06Clm9+AaBIsuG7WILS)GT2KzeO=ifvI+_?36^Tw@B)Pn zc)B=-Xq-<@knm{`6lXYTn8@yO(s1*JO&f~~iV`P2e)jO`V{riyA+du~ghhp?Pna@k z+Qg}o!vjK`CI*KEh6Z21aOKjqi&rn38@Nm~HZn6bHQv5q%cgA`w{9+Xm{?p=R90A8 z{Qbk1Pv1U%{p>!Gn}dgokCT_XzoVzCud~;AVz<ACkC&gPulM;AXHK0v=~|i|SLc`* zSm>D<S?QW8y2^Uys_d-SucW1B&x+pA;+-8`?VcW9&cE_ur#GMfA6_{IhRxeGW{F+= z3(6R(C9V-ADTyViR>?)FK#IZ0z|dURz*N`JJjBq<%D~9V&|KTV(8|Ez^6iWVC>nC} zQ!>*kacfxAb|D6+!5m~maei7!d16s2gMMjok$z5oa$=5taRyL8KP5j|-!nHcJ=Hfc zJu^95*IZveGcP5zLNB8vH>aj-);gdO5+EZ&GD>rktgKw}lS^|`^Gd9&0)U!|84Q>I z->r|P25g>{l}Bo3dPWI@g@HkV!-W0V)r4oJlw>d%8W|WI*-#b;R3nLGmv3fnYDr~5 zDnlm7f%?T|>HFUo_yHA(BP$94s$wuSu{1R>1_JZuDd+NlN(7LU1ZP&IG8kK$IX&7H z{t+mri6j>q<jIhhnUiXzuV0j!o|&Jgo0gN9UJSBKKO{&GNSQC}p9j>$;OXk;vd$@? F2>^XL#cBWm literal 0 HcmV?d00001 diff --git a/res/flags/TT.png b/res/flags/TT.png new file mode 100644 index 0000000000000000000000000000000000000000..3831347f565f2840e3dc5823aaf9df815bc2a311 GIT binary patch literal 1476 zcmZ`%Yfuwc6u!JlgC&82QUO~jNI@RE320<_$RjDqNFtBW>QFj_ybDPfvH?Ug!vLZp zD9xZERa?OhR1nHT1Z;;&wf&(G5JW~S5FlW|qO~(EW2^QA+YaJ%XZN0a?)}cU=bY~x zj_1eP+qv2ygzUK-Rw7t8^Y^+HtUY$tGBDP%C|(pot;g2=CA0y5vxt+(Lnz-Hp~4b` zp1@JzeT1|)LJMgK5!DE}WS#Cw2t&w{h>sJn0Wdi^Y1&_U{c^WoKmfRY{(jfHduG)I z1CHJU4qMEtqqo7?*C^9oYi(zSg!uXUcU@>Q<&_vVZ2b=~;NU$#^O{H!jdXVNcJFp| zcdI*dcD~}|&?Y*ZzaV+B_ESCYMkY+OT^38FR#sM28m+vnZ0_^=5ueb0>RRL|9%E`~ z(dl#)JIZUewi=S0X==N(odYB<anihoJ(=^>=Z@?3PR>pi78WU~spB18_hR>~;e=!c zT?6M1R5sR~-|XSRihbX3scS0b6LTT|77H7Lv(IdnuD7KX4`Sd925i8E!_^qrLm-5+ zV`G5|2<J*Gf&7(vy&w%p22z5=-gI(;B<D|^gM|BE=?s(x1wxrnEQLZT(CKCyTA&GQ z>!o@@yP#?1Wk+Z<8nh9b2`z=ju0cXFAOQ#ga=5y?gESz}gg|6Y5+qv@*Ie(0t)|=( zkQKxQi9u+P8$>q)R@wsd08;_CFeET4ru_%0r>%owTr9{$eiDkD8<U!y^j)zmbjW5C z2OLTkXRiiq+RFDRBiaBPTawFT+Zt^g9V{KSzG3zd^EQ_iCGauy54ESWqnr;IHTnlx zKXxiZnVrgU^V^?$qbi7<INAHOEZP64Q|)r^OrB!`9XXt=tkR!|BGTKkAKO{4KVFqA zxIMCWcyQ#_s7FI%y*f=UzFB?vt5e+vzFc2;sp8_9Z;L&Z_h%nWFU&1jO#N*7WoGfc zFYKRMSr!+?L|gRrdA?g$E0TXd*0o%6?Yx*#qpvw}_EWA~`Ug3D)yEN6i~4G(^@%@x z-Skau+l87mo-$PzBXUxX-Me*nbYh4yc>AZ}@jE*s-KbRiW93IHtm5MMJj2a_q0-;h z9ocomuMuS|x_y>19@=4Cns|2AI7HtV9ugkfoAw6Q(yUfJT%tsTMTEDPE<b+q`?FuU zj~4$t`23HZ9t$qw4nF;zD>^zfZwtxZLyCo@gb-y*z#s-rX9nQg0_aQueLI0O2s+ab zrxQ3nJT9MlDL|<fE2R7WKcKdB@FNIdn*X3tOUYbewgh2XO*WRP76~&kjT{azv08+2 zl|q?>CzL5f839ZTQ>es}yg)gr%q+;MX$Fe7%oGB-R+&x^EVW3hl&DC8h=(8zqSrsa zf~~=<@DT(@qL9f+6ubj(EuI+$jLRyXe=r{^#H1YU!10;Z@1_B=aTSE8P)f*sSrVi$ z=Z9%>WW5iw_-lB00ze^paL6`12p(o})qn~h4y$;Q6!{Vq%wR;j2-p|l&Ue*aav~Q= p6`2wO!?GnZg<2IL%@oQs=AU5#K_HkeV}1k#AugNGYK~4T`Wr=}H5vc_ literal 0 HcmV?d00001 diff --git a/res/flags/TV.png b/res/flags/TV.png new file mode 100644 index 0000000000000000000000000000000000000000..2f24fbf7280b564e91239562173b6b30b2529407 GIT binary patch literal 1682 zcmZ`%2~1OW82_sv%7T%Z4c#=GE;^0D9*95#C<p`8VhcqrhxB^1m6jrHq2&<dQV@#D z)e{gX1&W0h<R~i6xfquyI;R|NfCtK4=COIe+~&SQaBSI{@4fH({l4q9fD#(y<oJ;z zLdYp3I3Nu4$F^tD0(e^;?YN-qxPD|mgv=%H{m!%p|5J8w7#X3|bqHnUBJ>-CvL+Cc z;t_hxK!~J7$R$y0rFtVYf1I+576^dR(b3DYk{?>ESp}UdeTx^m<}~w;4*An|MXJ!c z%x(VpCXr%P-KeNPORqFX%}R{Y6r*efm-vMu8#{TcOn=FEA+eyhEBVBre?&%la}icD zq;5WE{EB|C#W$fgTKPA((wJD<ECp^W|EO6|cwKhvQAWXps_qUe={wx^u|q}Rj+fP( zPdVPo&Ck!$Mk*};j;yqR#420Z>c#>?W}ZF=+~KX%0Uye3AL^iA_^{9JTdsaLRuYGO zDMP-L0q@<neW`bRDC+pb^yvyv<bbv&UR#r|&uQ-nW2%f$0fKuN+VmXr?F-j`ZnE?# z8u~L%4ERznbzHgo<<$vo!>R0g2Df@|njva-g=!PmV2(|!(&Xy%_A5<L0p#$Jjw?D# zZ)!P%oWF`x*upCq_6rY>)o!LLHKkoQDw?XeMNtPeQL~fGuwWRWPB*<;dvs+R2*mZu zrlM?ZkU+OFMoD04a<X)4VGd2MUr#T0V{1ee-3DWChC&}X`z`1d?ZBEYVmlGoaNd$e zIT-YcHrwt>bF|75t+c=;=eW~ZAkLnbtEq>}uvE=Z1U{~`rW_)Q#?(T?p_#JqPN^xi zcI|+%=@lJt!0t{mWM>9|b~7>qhRXmQHj<w@o>_Mc*5s%SGpQLEw7}F2U?){8o6XSx zR<{UiTR9MU2Ll7fuy*Yf=&FUfD(&g`I86gX)xuOYzw5=*)D<_Tany~oEZYU%3H-xf zMpEyCnkNYh4M*D^4#wFW*3O^+bku%TFgS}7gXv<>jOpiDynjC!4w4XZpu=5z=cV(V zr5n7RfU`9uz>l`RpUqglCd=7_!Qimsm>B!f*n@iy?~dPhK@0p=Go7h5T4i@`eOX6Q zi}q}G?MdRk9f1+#nC;8f8}z5^j0O>d#}TjRZ^w{=)L&1c#jzVY%TdG&T%d(vd7 z@;8%?izcTW>=xP|$<3cPe(|$4b+v5P{d>#aFFhG<XBT$!TQ_36MVxdvNj_zt7x?vB zJvRP9dBiREGt!q%#pJ85r-j>kUMa4bo>YyT|8w!O&&gFp>F|pcZrrO?ZYd+_HQ#6F z9s3YRw+f~T%Z+<l>AeYm<QHqUh=#1fH%n@?h&b32|GMhjn^&KB$|jyU(|YPIE2=%^ zk6)<TA6<*>mMxBW@=LjKz%<$||LK*k_qClJ<-wD!vdM|(rH1~hKH1a`L=GK$sp)z; zk~ul~<FA#iOTE0G;{y<ieVgXOdEIveuDezexKF}iN-z>T2?K?Qc!Gy3-rbepK_hG- z;fW-I$3{GXgvZ~!!yEetK`7$z<K+KOsLj6~4FnHc2eBwllEO^F5Kbyi!U;rdrT{1A zK>)`Qv2h_nCKn?!xqNoKs|OCpPvBs(O+1NEke;kIL5bzI5;UGv$Rd#fL~N-LOOTLA z6d;Ka!SJ>h_b<$JJrXGx<8yfuv;~h(9XWUAzcG9H90?B*h<N;^wqz<`R?O)|<_j^2 zJP|{D+kiN6GPmz(Vkm%I=7MN|LWIp;?szx&dE}H`O8|)T97s4n6%a&EcmJTKQ=O39 xFee!i7J}mV0*r*iC1G5?D8V&Oz~qW;-Eg!$n?PM$y<tC)P)J~CfXSbc{TCq=?cx9c literal 0 HcmV?d00001 diff --git a/res/flags/TW.png b/res/flags/TW.png new file mode 100644 index 0000000000000000000000000000000000000000..cda05c9b4c2e748b2c93f5b8664f5b732a7de9f1 GIT binary patch literal 1029 zcmZ`!Ye-XZ6hCtlUs*E<?cE1^WB1<7UAzdXTyaacOcxgPVQahFZtd0XU8R=V%d{tv zk7nzoIcb$<Wzeif^r8GxK?p^VSrHOpYM+c~olT1+^ymD~^LKvdoQ4ujVRGWUL;y%u zDcMrA^TR)0iaL-eGoz82^VE3&J*Sg?>SHlpVo;W<0V<aP)E)--fvMVI05=KnMF+r~ z14wmx1DkRHBuOR3+5!X&4h{k|MM+~!OmkF-rIs2f3IY5=bOb4pG^M9sUBA9NGt)1Z zpN|GFU*1tw^{lV&V|)9XjT`SJBzPj#7SvK{Gt2e_gP%g7(Ad~Sb#;GQ+NHl$bZGiU zN5`Ad(TRb95xf1#tXY%H;a(IRq|x+NR6O0W<MFChKACJXk9taE@vSLyE+@?Jf((aF zCO!M17?-bs4Jg$SiTFjB55iJB>d#%^@z0^~K8aYWDTCb4uT9}#dr=_^^|1?;7$i8A zTLrYb$RFLA{{o#jQKc@38;VVl$E3Jd<|Je4l#0#Mu6SY4r4`qvq(VPM-MMwUM{v4! zeIFekdm>>qxh2XithRVt%yIA4#=9qOcpn^Wo9*-7KIU%?)cKn4&GdP@E<QSN<xEe* zwYfg;{UaSsy(e#8cqpy&dfLz4Iez_o-_gz%I<SD~KHYt(CRZnSIO78g7RwKhj~zKM z>|B>!{Z;p}f2bk&SPI!$i!vA1pQ*vkmWl;iM5A8h7=w#L18Yf&&LFcgC|XM?7;-H` z(W^;{A<0*7E${znusMvpsp9_)ZFMiVVFMkWAUI6o9=(eL!Y#N6tHYqT5`qO2gwbIj zR5rbtQ|ryVVP^(S5WL;U?OkILZPtCeTf2}VEli=cxNX}RhIJU+HqI_GObIp#Ky`-t zh-sJzAHyg)-fR&;L6Vj49`+(8HHv2nQ_dSj3uKez2f;spkhxJ1HE-j@3MU7Act1ke zZ4Q2OYNqk1wTJ?0U3M0kiH|<i_}q>Vc@$3>U&(=jqVgLRx(8TW8CBa{ssa;l<rso+ iac16O&oEi_W+6O`(3Y=36Uu`TYywq*hV9DN9sCWK+D|3` literal 0 HcmV?d00001 diff --git a/res/flags/TZ.png b/res/flags/TZ.png new file mode 100644 index 0000000000000000000000000000000000000000..a60d5b3fa6601a9337b749d060aeb5c44aa669d4 GIT binary patch literal 1507 zcmZ`$3rtg27(Oj6<za!M1Cc>N5vjG@+g4h*VZ2fT49cLCA%+PBZXeoGLJJHs6@)l2 z8IQ3514bqf5s<g#WlI^a#7zZdDnk*`#B6MHuf!~DaXSUlbSC?A?)}d>-{U{$Ka~mb zQB=DFb^risOte4*v%BfDv4a0eJCY10k}O;p4!}^g{ofKYTzh3ji-Z6a`vOo>4!{=N zD)}COd=!Aq3;?i309<ohCKH1JAjT!ci6bFleSO_ihwTh^9p*b4bbgMxH0i25VN0<l zKmv>%)I*28t-}O2j(5)=8fc(}aLL4N+^qE*3o4#HHaG58kYPuonlO?ThzKBA%HP#< z2j>s=);RHxksyKYMyM{_Gp*;FO_*bW7v`9=*Ijc`ZK-x96EX?BA4%3<p;s6*^zH?- z8$3^ffuo!A>bT^H`kLH)JctcvsX9Ys)NmJ}{V{0Yy&Ali|9D{KJY#0i1sB=a*$^n! z;8YxWs`pT-zR2b3ZP4}<w6DQoHiwgxDfYxHy|v7N;ce>q(SyX+a>t>m*s#IAZSs>H ziCG1!aK`yH^M2FU-ufVx0=owbNt3LN14oK(lsI=SnXAAy(skG=BWjrOtUpWj@i6(L zM~I!5XuZb7z=09a4$XJ{gC=<O^G6I_`;r9|*a{d_dxH8TWqO#IJNdE0m1WSjzH^cV zqkDD19?$(m$l)Ke>aE>-#hAkB8;5-`yM+gk;iJHyIS>jZHbxyHAFs0Syl*yv5Pa59 zE~&r4wbhu;yk@YJLloXinQC)q;;?Gsl5OV$v(V=^&$AFFXhrc!Ane78)U?QqjS_$g zvPU#r*ycv3YGBUT{(e0Zu?Qy=ZHzFIvO%Uf5o!61U@FuwV+7%1zs1{klQd<CpnT)o zmDN$zqfu4sc3OKq#JlbDhfuouqke4hr~CKhE&Cp(-~FW7*%6@|OTMf@1=G^D%xBJ@ zitcfSYpj}YGX0J+daw2nHkXz<n(9ZZ`dg<;y)#Jrn;S*9Zatp4_x0+6%V3$Iti6u= zO<LO8<9C7$dIEj=;bN#4TA}#L`?6$%R-5=I1M}tihj_CqB{vz}iXYrQPYvVM)HOGx zC!7$+o$Kqkeofyt+|v}&)7{srmMc&DmP=TDs-Hc+2y<OpTYmH~6b%$K@`5=SugW$f z?{u-WAm?1EQ$5R{WyPG{T-{oD@!*xi<&~G7uS&~i+n?7hk7y#UTBkkzeRJ!@tCz1g zY6rjD+nRoA{Yhwu(MB?I{`K>gDZ&Bk%)cDoE4T$ac~~2HLYpno;#gK54in&@Y(5JO zV6pjPHV;EN7@N;T*%*p0KaxNFk3gl)R!EEfU(j}ODGdtvrV1LhR9h&?!vT`7$wQRt zEQu1)$l(T(t<FMXR1z63l*klWXIOj$QRHOfANtF+D&<E7P5sbfzsW)@&sSw)m_VJC zuflV*7?uD<8o=)Q=LYfyXWI|MqH%>xt_3_4Eq-FqL5{11&n_oLk*$@3AQXM3>A4Rn zZWa`wLWOIKa&e$Aoe$9z$c(?_#=qes6hjtZ9}fyZxiI);pWVrU6ekOxBt<a}xEyXo zU1MA_#26M>vM2^f6-pdKkUU(bQ0K6uN{LKkDu#$p`ol!IJC_bcASN<i&>xX;;a>v4 BAJzZ> literal 0 HcmV?d00001 diff --git a/res/flags/UA.png b/res/flags/UA.png new file mode 100644 index 0000000000000000000000000000000000000000..f62089b69560d3fe22496bb611315640d8df6c58 GIT binary patch literal 694 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBC?OHx6XFV_@87@A5WSlr za$m!Yxc}D~{$B-(F?cn1eg#sDB|(0{3=Yq3fGlH7@^*J&=wOxg0CG4BJR*yMbOIQE z$aXppWU!Zb`ns||WEB)(5-ioU;ROmAdb&7<NL)@%SRj`m;=<&xPKZe(XnJ-JLz}}o zZYB$+oeMbxIG!w1bWkeYx#HhaIR=L3N`}6IlQ+%+YE~_AjVMV;EJ?LWE=mPb3`Pcq z=DG%^x`yT<hGtd<MplOA+6IPJ1_qaJXFNdBkei>9nO2Eg!=kneF+dIGARCJF(@M${ zi&7c%ON)#2bMliDbM%WdfCBm{`N{g8xrynizKQ9X$=SN*`udr9DXA5D86~+nHD$Bb z0gaFV84;3Enww;0<&vLVnwy$eVr3No)Ktu1xcvWaeKa*-^Q^2qQZv&tN*F8*3<?}3 z?8mMqJTs*vgTc_qz~IP+vOu63NhG^`Gjmf*DhpB>GC>a1FD^^p|GvNvs7M@HQ3y~K zgQ1C~sev&Nm^V*3mj_fLfTScivkIuf!oW#hJLoh}P7_HkG{}=7Ei)(8N?*SyH9a#w iPd6<mF})aMnSQ9F9+0}dcVi|{6N9I#pUXO@geCwR3ePP7 literal 0 HcmV?d00001 diff --git a/res/flags/UG.png b/res/flags/UG.png new file mode 100644 index 0000000000000000000000000000000000000000..8fb590e86440ee71260a00c93394f21906283272 GIT binary patch literal 1053 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`)26;1l8sRB-?PeIQwv z$MpXp3j#fWvVR<80ii=IKMpVf$zNx9e;j6ouz})tr5Qj-lHrks+~a9g$EIa|T+#c; zToxz-6u-j&MvTm#XU;x-=IrvNOaA}=|6%&fJB-Xgsaytz9H7(q_@10Uf9%AG(xQS( zvt~UwaG;c*A1Kbi$UJTO%%@MEPoFydRA=|Z#%2a47CC7KAd;12ur`-nJim3zhG{Do zcUqar07Zb}_YSgv&>@yP2bk_3Vtsy^_x@p4AR8zG6#w@S2|Zwja9`&!-DF?@B9%~Y zDUhWlL4Lsu4$p3+fjCLt?k)@+tg;?J4rhT!WHFFV0OJqYPUnFP_7YEDSN4ajf&xr} zrJ6RpK%o_$E{-7@=g(d|%6BM0p!K1c#=Cb%@7}$;*5dttwU(WiT_=0*db{2FXZYkq z3Dv~^KTSpF<^*4MysY52`m%J-9E*iBIW`~7+H5^X&pa<f?$GPc>`e;`RJx?4{Es~9 zOwpQq@>zlNY2ntSl`$)?z2dzyNqW}WvgNm5d*?|A9KKj#H218y_nix2N2)g8eanCR zvZVPIZlQJCe?Qjj5WdyTcWXA^t@ggDKj#<KFq%v?`{Q9>UjcNpYKdz^NlIc#s#S7P zDv)9@GB7mPH89mRG!HQ}vobKUGBnpVFtjo-xO_X~0g8s){FKbJO57S2wOxn-YA^@c zP@JDuQl40p%Aj9bT%@0qpPZPZUz`CH&`-%v*7wX!Oi%SqOwUZt)-~7H&&*3nt<cLT z$<3)Lo3##TgapWlkc`sYBr7YI{N&Qy)VvZas{o*;Vg|$I|99)7sR5g3W#y5YnVwO? zU}j)Yb#L!hpc-)`bD(O%GgC@37%UA89u=>;3REJAq{KHfH?^d)AeA8#<Ual4vh@A$ z3;fW`@eKj0VlXtZG&L{=0`ul6=kkC`1d+@M&a6shFf%hXbt*EhTm+QVM3M{*@?=QM t%t^J<*Dp#<&&<!$P0LA4F9zABAL_0Lq(c6>oCIoO@O1TaS?83{1OS&ZiAMkc literal 0 HcmV?d00001 diff --git a/res/flags/US.png b/res/flags/US.png new file mode 100644 index 0000000000000000000000000000000000000000..f6b7ab982dfd035e7065a4c738c28880a3f48522 GIT binary patch literal 1112 zcmah_ZA=pf7=BS1h&G{#2DgPoO}0Q>xjSm<xG_g-8+#d7+EPASw8!1`?nX;HdiA4z ztkJg7I4202#kednCdMBUF(3p3Xf$HPh>FuCW<v;J24mpg)R=5<;SXC_c6sjoe4h7x z?~Xa_J2W{T<p6+&u~}T`KTf~dE71<*tdh{Jl1!`#p!?*S_gp6C8+n_H1&DnL5KjQS z!&3YuK$HZS^#Ra70_26y4LHjHGQMzBxUEQ-n3!-^#qI3=+M2^?F<wkrc0cEgT{cw@ znVo}X7q-0KRDE5->q#{<BoP>RJSonbeA;{C_1*igMn)?u4|uRupGXtXE(Q(BosL*< zjXdI!?|5XF^E<42JV_jdWCR8Xao5pbdWT<++<$fF|L3q3F%;I-9>GP6@`a5_UqfPX zi1JOlAe;yUI?yUg8v+AfI1!b<@2hXdOMV|6|7|%;+<QE`a07Cd1%3ho|6Ak9!UA*| zs>@yl<ukwf(@E3UJ1lTCGv9{E>aeXog5J0A&NrLKFvwCF)|xe$sm)!XjTV+^uylp7 znA`<pyl=zixYp?N2~B=Z<p1zZPEXBDT0bZ+-F7I$w29MZIH_+}GXivWoI2Bfx}&zu z>2}pP(*#3Q!|H<hn#L~=uH23UeQ^n8(D#wuJy)-po=MHp+>4jffw`&KnIF2wZjFyV zA9*%5`qf4<yKz_8CfDt?2(nwP_-tUP|4ridh3VUg&L=&pdN9=w4*U8%xW`PbC@<aV zjcY??YqbD_x%&Bnr+44t?VqUDI#u9Qk>*=PbWluEMjdI;QARgaLX*WbW!yqiG)ay> zmtXut5DW>5f8T!#&Zi!FQD97Oh=ly=9<EgcA{uEW0wJCY5D^&*gb?BhCdf%5%Sj5~ ztTPgX(jtg^i)1wzII#O{7mnDF9^saw!6urvg!pJsY*A_2fuaad7yr6W{EM?NkEU&+ zBFQS07|5(k%>444T18N0po;Z|pZ|Q6kDL#e>|&LmsO}4kprj8ZBD<yGxv(8cc}q!d zWC69c)IjR-F&^oB(1MiQC6p>9Cc@`NgLz$cS1I-im-MP#4EU9RNE1Y>C@G;9oj<@y ak@Pa6x~d4>&7Y#jQ3Q<DZs{`n4*v~dTAC~X literal 0 HcmV?d00001 diff --git a/res/flags/UY.png b/res/flags/UY.png new file mode 100644 index 0000000000000000000000000000000000000000..11abe8c1004c97de2c3851f63aba4e5694bda504 GIT binary patch literal 1085 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`&>w;1l8sRB-?P{r@oV z?;n%}WPJSa?&;&}cW$11_2S{5KYy>>{jg-mgQYt`=-an1mrt)bvOeU{DyLI>YVO}T z|NsBr)&<uX%vUg3tpp;VDG%;mIJzPHzyiTzOZfLMQn`41_KzPwuHO3y)V^%jLm&cL z@%Z7@!)tv{EagA7T;T8$nN$0_KYjZ6`P=U&uf9D6qt~yVoZ8!QaJlh;#Y%_Qh1|Vy z=<lCj6Ib36_u3%kyAg<h4tw+Z>E+Waubf_X>*|3oUp}ut@FcAIXk_g%AOczeM1TMN z`|;!F_a8rh|NaZ~A4KHu-+w?9QF{!Cz>1GY)&dcT3l{_i&b?SOJ|M+d666=m;PC85 z8i<qR?e4<R!7A$k<Zu>vL>2?-1Tg-P?Q|Z<U@!6Xb!C6ZDk#7tSgL8m3l!Sm>Ealo zasKSZqkM-P1R4@gJ$e^)rz^Tp^WD3D|N0$g#7*1KqJ97Cc^@Om#s~8Q?(dl;pg1w2 zX~_#&6P3x@Q?yJkWt3L&+~;wdd^2h5O<6xF=Ce<~Rn-1-Fc9f8kjS_gVKdQZsqxL2 zc}G83a~}=b8MOAQv@hS`?P0qwzx{eK!9pr|f$y@-Ka+Mw<!`f=+4A>cg;o5z?Z1=% z7#^SKn0#`9VakOJql_w}e|AQ%j{pC6TsSP(e6g}}%4MM2RZCnWN>UO_QmvAUQh^kM zk%6JPu7Rnpp?Qd*nU#T&m7%$|fuWUw!R6Z-4^TAZ=BH$)RpQpLsO>@wP=h(hhT{CR zlJdl&R0jRh;v)T={N%(O{o)LufPPATvc6|-VtT4?VtQtBwywFper8@uYK2}#Np4O} z*{pRyBP2jZgk+TFCRtgz<R_QrrskDcSp@(!6*Cwv|G!%wO%2#QD=UxG%=C;B1~UVL zs(X940@a8knFCc5o|#gT!C+}%@ThpzRiF|{BqhF?xv3?U1*r^~AouAPm!<E2U*Lyk zj&BH16@#IPrKy225STYlIhO}iB8X&8aAp-yg{7s1lgbgJvp`8rB+1YqPlmM2oK!1) o{i4+L%=|pvw4B8BVvue6p^<t(s#`Z#3#f^~)78&qol`;+0E9B*Gynhq literal 0 HcmV?d00001 diff --git a/res/flags/UZ.png b/res/flags/UZ.png new file mode 100644 index 0000000000000000000000000000000000000000..5d9168a3ea596feb2e090e69d9b359e0c31a0835 GIT binary patch literal 942 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5lsFmS6XFV_@87@AFmo#q zX|6mdyL2CjJ!32X{GCDzb^#HP0g(lgA`5q?9K6IecL$ISBn80=kkyDU-jjCdGV7e} zEVH)@E!+)6f?&iye;33Mt_f?nC$6<#vRiBJR@oVwWI$*m1W8Wc$T?vRP{H2q2Z3n! zwuAe&AA+zk$^ZZVAKtr6ZMC`VRx7!!RzP2HK3HN3q!>$r{DK)Ap4~_Tagw~<T^Kr8 zWj#O&3Opi<fph{Gf5>(^4`i^Hc>21sKV%gYU=l3VwBZE`Rd~8MhG?8mPLNP)5HwFn zNJ&adOih0N;K`$B4_z4@EbZzT9TgJ=0}Tr~c`Q9OGbJM}D_LDtQ$<A>rUZuuU%znW z(zT0MFPl36)jBID3kMq)b9-xNO9Q1hA7#~;u=y}+L(#V#3<2jD#TianK4M~d^5Mu~ z0Y(NH5l3w`<1Jx8H>j4lMwFx^mZVxG7o`Fz1|tJQb6o>dT|@H_Lo+J_BP&C5Z39Cq z1B1)AGajI5$jwj5OsmALVNu(K7@!7okPXH8X(i=}MX3z>rNu@1Ir+(nIr_yJKmq-f z{A7L4+{E-$-^BFH<ZNAYef`Y5l++5njFQ}(nzC8zfJR7wj0njn%}uhha>-9F%}vcK zv9byPYAR+hT>gKzKAIY^c~({)shQ~+B@9NU1`G=x>HyV<BbftL6P}q;lEGkVVDLIK zcq34WB$5)}%-qzH%7RpeOpyEZi_6mYzc27ZGsiassEWbR#M0Ej7zoUpr<}_JDiK67 zCpfbTsKUV5#OcSo?Q?;Wnn;qNL7oh0nK`Le`uatw>6!U?x@kFy>BS)1^h2ZcfYg~@ RaZv7J@O1TaS?83{1OS7DN1p%y literal 0 HcmV?d00001 diff --git a/res/flags/VA.png b/res/flags/VA.png new file mode 100644 index 0000000000000000000000000000000000000000..4e5a92bdd77ab3d1bafc341c246bf4145cb2db8d GIT binary patch literal 977 zcmZ`!ZAepL6n-tGQiQA@S}~{}g*NQotJ&yM(PZLAO>~<zp<wgwZo9O(wcVLT)GW(H zD*BM5Px``ODG3Q?AL6uROQ&R+vecPnrPi+Y{h{mJ(T^c?xbOSC=Q+=F&bbx2Ioa{C zOJfm2@iM7I0l17m^XJ0d6dP>-h&G7jVub2X#{JR8K)#%kD&z?5TZNFb4542@Io~7X zz!4hLAVgLplxV%!l(zv2FLJl4vH*vMhC%_vf1EQkD}o2Pk8j=vd_2uLXJ$e_zJKm^ zS2w%N+{cmW>FF?E%6%H^dQ$6oP}O$#NT>ViaK9VG!Qj-B)~2402fg0go_iGoz8gS- z<MY&5=bcjz&+MNVANlq3TWGR$Vzjr%eWtUf{OQ%p-5&RFU|<F&ai!cu!0)*=_^5H9 zvC;4AcsDu{=J_S32L10JH}lhj2Y*ja{`~NPe}@D9=;rU1-2hRnB1effkM`;Lq;N~N z1RaYJNFiBZl@{0mHQ~eU%It#2JXR*pnl~Jiuy9U-BV|K8P{(Bwu`0QX(j=Lj34-NM ziPEU_IAOHr97WM|`^t8&x5ZnLf1<Lg>Oy(q{Y{$=M2S~u6Y@;9!q<yVE1spPzk0kL zVe;w}s!ExcuYB44+`YP{_PVRaqA`}qeSK}uJ6^e;#a_7B5bvrLxHfJ}7pMyam(&H9 z>dPzRgf8JHyj9Sve#5m51rX}L5qI`VpX~}Pwvx?KvpOwHla!4HKxsH3O2so$36Y9e zN8)KDArj&QiQ_$fBUmF0W{Zx|@BP2w+R^SEU=Z;W>=r${M{A=I=CIo^lZDcnFuM^5 zOlP4mnOSR~<yr$n?MfA47*nL9OV$`!vuS_v`8sHk#J5lx9p*xklvpT-nJ!{UG8asC zMAU@tW3x2jek3WS8H15U88}{2J$C{$i4lGNX|^*u*2qi78D%|4mPAP8jG1QlT4}`a z`(gHCLvzrYGpmnW1u8_WU7vxcLx>Ka^%a3+aYP>_vkw&OM1*K<X2Z8H#ZXR(DCa9= qNY9vP62ok?fw2^&>P=dMou7wo6R!c-nbO)0CM3(sk<?{s4*dlbHK>39 literal 0 HcmV?d00001 diff --git a/res/flags/VC.png b/res/flags/VC.png new file mode 100644 index 0000000000000000000000000000000000000000..4a8dfa41ea221bfeb1673a2c3fe13223f77c135e GIT binary patch literal 1065 zcmZ`#Ye-XJ7=BlZI<u5=-qJECGh62zr!9{WIk(!FTV7@ty0FvP*>>9I)^?^Ap=J@9 zL|T#|Ru+W?Wm)|YyJ4E(57X73pumFY_M?KxZl=9+H7w|G&htL+^F8nLy`1_&{rV_z zq8I?8G-_or)+GNIJ`=G=9Ad!|V#(9x0dyUW9A`qYU&yM9bpU&p0Mr}=_>NM|8vri} z@XiQ8p9F|=we=LO1`s6|78q1$7#$r2_W-yC)kltx4JVHKB!PEqBwl?*3#S-3Z48P* z^4%x-@yChcgfI4Tue5(4ZSv8)K>K=Ve%8gJ&DYj_e3*!ce8MN0d=%T$pB{E*N6Pt4 z-F?dtk)w#?e*dK+eW#}NjtmhwDmW5IyV@(Q>dsBQu(7&37diR^o8TJU4F$BZ+;v58 z9}GNmmlC&cM?@ZQ{`5)S4JBa+BJzNU_<1Bg$dLq(@Xs`yu-UMPgkpUOtbO&w>~D5z z*DIkeG+B*JgiF1}gVi|oeY7ctk%S2vohs}_XiW5s7;pOOD3sbY$~?o;Vb&O5P!kge zgOo@li_A#M4RN{LyFY=b^kwC@uc2SRRdx+Vh$9;64u?n9Gfi__8k>)uIM&?QyC^Lq z?P~kQ^UFJGRr*rh_WTm<R$W*_Tj%M!`_DFY)u&5xWS&TEhAnApuKoSZ3YXw6-~Hf~ zex<x(&IZD{;BwWM&!6Um&k_%$m{ZR(FJe~Rmt`)amq<!yZy1kC0hqTdVb)Uib~*04 zSWs;iOpL(Mtee9EnIt8blG##9ZlG4uWF}3?Gf0Xi$;VHv&;J^5I8D5H&;JL`9U9q& z19JZj9;aETVB8!KUXPowJ6Xm~c&sQ8CMQd19E^q2F&3V+N#z8=mzlWA6;{Dv-&fw+ zi4pPs2!qw@*h$k$C+l@^WdcnX;*bZZj>%iZKc1;PnpShX#VUY|B=^Nu??6x7w4C3b zO}t64LRL1}@@%LNEeX>sI^Mwvdt4mw{{09~x#ivmm;Rp|odI1yW#wd(GJNC*nje;- zC3;#;3BQ*ESx%0ETcllsXX(?<N{cmM=ItC!5N^)GJIkbIJ7e+qFC#YQufUS_wy^_; MK%>$tI~B&-U%vT@%m4rY literal 0 HcmV?d00001 diff --git a/res/flags/VE.png b/res/flags/VE.png new file mode 100644 index 0000000000000000000000000000000000000000..3632def0ca2cf9f6ceeaa183ab329447cb30c585 GIT binary patch literal 1074 zcmZ`#TTByC5S<EGYz4u9AV#Tx3PQWPSgfpArD>&&w!vBzjWI3lwq5Bf-7P8tl2%bZ z42f?EJ|ZzHD8VRdG`?d3zVH!^iAjro`1(-4{4hqGwZx!_n{#K*oH;Z1X4|SwRVk7j z2>_%R^jb6KX~IcPz<5=X=)#ofsx(#toNt%@uq9zFv+K=9fQH!sE!zRUqtx;NAVdOu zvI5YD0I~v|S65U3h;pizTXblM#bP55VdT*$hObQegXpEy*yU7=f0Wz>zBpvGzn~(p zbX|CXX)8wLsKi^4-#m(fZMlov)$5KC#)C*OB1ZxR+XO>FlYqQN(zsu_;-FL>K@Rzi z7^R8`DyR#JV8ew?nW{FW`LMVoj9gIS$ZtXgb?l-(HIK`l$;sz6sWq)gu#5vaDySp5 zG^GsDpQ*f<p^S5k$WcM^G-K{iMlt@DMK7Z=Od{TFS_w<uy>bdg?XoH@>`I!h$6`W2 zzm~&n{e8aHX@-!9d4o|Wev_1*HZDC>RFQ(xS%bFHQaEI{W-o6^&w@e9Ce9e7?uw+v z(s057dj#rJO$y(P4eI8?+>$vkKCHQuccS*~<UQtRX`;T)iOB=^2a5~m7WJI&K2tXk z*4+wr$c~>p*VS{%Z*@C7wHwDz5j{8@Y1wgdfB)`tN3KV@_Fj<IB$m9FjPre-adbnp zH>$qT{8MC2?^`cRPE6Xly;bzF@9VCC!oK7hMb1KaaL<Y_dee6Eb^;uDuI`FSGQZ)w zXYslk-eKbz+8$&uK`BY8<YbwgQdy|^G+9bhs$!C&N%Hw?_wZi>UcZBNZu$SfiPk6U zaX=;9!1<m0CR>mJBE$s=kKb<d5S$wY!r`|Q2CvP<7;P@rUME)(1nYA!n-y-}>uId- z=*1P;!U~H!<gKM?t=}H<GCrQBt8s_}>eR?J;vdiNeKf6SSeKiJ`6Ss8z21+WtTB5= zJ!@D8?}l=ce9LveK+DuI79;Cr_$>hjSmAvHSMR#{C1CnzkI{lIpp@lh<UIUTk$sPS zXh|EhXC>RfKsi;adA~Wo2zy0idaKL^aIzkTCWs*8V*Nh3(_?dS!ezv2odVP8GmIFA Mz@Rf}do|YZF9f<&Z~y=R literal 0 HcmV?d00001 diff --git a/res/flags/VG.png b/res/flags/VG.png new file mode 100644 index 0000000000000000000000000000000000000000..15a5e5fadbf3c35f22f75696700f8314bda35f9f GIT binary patch literal 1612 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`(R4z$e5NsNnwn`^PK# z@2=U^(78><u9r=>c~wToO{Wl_sF@6E^$t#L>+<^^%vqV3y@)}nhC!v)$gQs_b<))- zOOLERP|&%1d)dSrPNB6mt9nxVZ_Zk^clF_@;x&S%9Sq8~K*dl5WWy0yaD8US#+<GT z72VHkJ73IPd^@S=ioWxMx*j0+>68Wg$|r2dXpeAjf*8W6TFb6o&!G!MbzridMWYUA z@-6$o>$U;cYy)pN2H&#vzpCqaQO4+&UBFGdfa^B?*X#oC*azeqr8B626tij7>qf-t zr#R}zdl^SN8KydkI~Ox3*M%j_scGJL?ZAb%D>v=$TXw#7;&r>gBU?^BJb3oSoMj7} zmLz2^&~)mBxP(o+-XPY+GEXeAHzT7l$RS@!%q<IONOQ-QQ}Z_OshOJS*Dhz%y*8`! zj#EfT;#||9nRBOXzdU2*!mM6Bi$=I1da*8Ug$lDb%<Y<1V4Ei+>IyQXBCbEqqe;@Z z8R%eU&Bjo-<{aZpb^C4xg=$u<M#q?WRYeOeE$SeK00TrO+QT(Zam9{#nO*U=dD0L= zKmo2;15yJIe-Hzz3oKiWkW#5-(QMF*cCjmz-E?Bd<mK(Qxza)|IY7sNR05H5t+H)- zVU3SXp>D<E_L|uh3H27yIcaPf@R+Uhk4{@R-MFRO*`vxjso7!CRGVp?u2SYza9dc^ z>s0K@b8~`w>TNpf?0v(Nc=hUlaSF8pW)XvGJ%?5uD==o2>*0D))Id}MNd^Xktci(0 zim@cfFPOpM*^M+1C&}C0g`tC0)&t1lEbxdd2GR*&{2|-vJdnX&;_2(k{*YBrfJv}a z(}owQN7d8CF+}5ha)N|XgP?grLP}CvVrug92TvY7d-(LRxC6t2ISVFi=vXmhN6V5a zTYA>a+0(RW(x$Fev#cWgoP)ii-NXIwAGmPh#*r&$?i{*w>ejJqd^+jxAG~<-=FzKX z?;gH<`u6eb=kfv)A~Hf;)3~|&J9@hMI(xhQJ$$_UJbk^-pEz^s9OLPy&z_2lh>1?0 zGHq&jNLc9gE7z`?o0yq4KaGmIeaqTv_pa)y-@nv-=9pBTx{`T0{mdLwX%+MIcYA(v zi|Iw}NqM>Hsdm`9sJ&@#cYT#M%e%!hN!WocdRyM@eaX+)-L3xi?(l@$^$#8_JnY^l zXI=M5rR~nj%jxIlS=T>&wDfei!IO1yyXzi5TYJ0w-M!uYis}j<9z0xp+<%^3bBp@C z3JE0!h7W3aq7K%df`MVETH+c}l9E`GYL#4+3Zxi}3=GY64NP?n%|i^$tPG5-49&F- z46O_dF5k|0fTAHcKP5A*61Rp$Z5LvI8q7g96z8XvlqVLYGU%5U7wPBZCnx6U7iRzk z^i%Sa^*wVF(^GvD(=(H^b<OqlGxJhXEA%o-a&v0RW~~DnAptTXB%?Gp$;!$lKe;qF zHLt|VDgdadn89%Q|K0j%YQW}MS$U*pre~Bem>C#U-P^kryPELKl#&bvLn8x&BOA&B zfodd??DEabO)aS`NM*<bIZ(g2EPem`0zaT4ab!gyKvfKeCYGiK#z0`+Jmp*-P>B$d zlHklLV89xhnix98Nk8ZS%4#CXh6Z^uq-Ex$TIuT-rKV@*=jo>9B&HXGtkVy3*8@_Q SGR;8M1B0ilpUXO@geCw;?Mv|h literal 0 HcmV?d00001 diff --git a/res/flags/VI.png b/res/flags/VI.png new file mode 100644 index 0000000000000000000000000000000000000000..986a53d2fe711db7ac0fe8329710ce130ba7b379 GIT binary patch literal 1631 zcma)4drZ?;6uu&YplnrV&?y@W!Ht>H7FHTNG$IhGSjMBg6ep#Ww$f6hKk$VUM5j0r zaUzeA_(<k6>QLtd1mszvjyJRd(o%mGS}1KPwY2523-|{!S+bLR?>YD0@B7Zl$;l25 z+Ua2bxjg{DffC>s3jKz;y?iM=%k8aM&{?y5s6GIc=B}8cFN1eyMnEVPfTNoL$T$Un z89rqU1CWXbKotuBxex%y<dX6bZvd=r2Jfc%Lx5B&o&Dct(6s0VbKk3<n~lnunb}E$ zLM1sep}0N+ZFbgT9ye;6^k|V@RR$#uYT>YOgQ~$+@zQ-vk}&bEz@V<4nVHh6nw7$} z6J0oyQEk+<P7Gbwy-8Jwyp@fg3^&+o(Hjfp7*rL?CRfD^FkB1F9YFW@YNfnfjXqX4 zV}=?XN6~WSkYudY&D0LYgy3B@7;eDm<i)eo7FbJ-a#W%nuTyDW4OF6{U9w6$y$ERA z+!)9)pD32s?m$lp)pt+guDBC2p|`0GpjB3KAyM=0!K)FqOm8S09Lnk)WOu)Lj-q*w zGAk;1vKnVqqYc7~*uD+%^+|;b2C*@*Z)-8K>XlDw_(k0<Ci8T9@8H9skzT!Fm#CZ7 zJ<vYb>79v<$q#!izNTmk@A@sF_e6ew))lz=G7Gvca#2yh{pNGTvbqRiyHumi=zm+P zR9mK}Bij4&WQr-X=|IVTe8v}d8*ZB?HT_Rx`?60;PZdc|7ri-?Bf0Z~Q7676mbpK! zN^TQtCQZlZv(L`V)T`9JI{l-U_uY?gq~?%ntD@0Hm%c}5#HW9eWSy7X$wP%iMeF{9 z^;Jc$2PQ2R*l?jr-KQI0=)879Q(S(z;9hWLMUWbO(pMi;SL{@C#iipJspIwCf-3&K z>a;0~X#osRi^)*cSytawG4PTmtpM^W&{ySgUR1s0Y2#&a&jM^}dP;Acm>Za$q>;`& z?=@Y`%F(FCR?(<t0Wb}1$_!((1vUUq(+7hix<1EmEp$te(4a7|T_H)ByTk?V^aE#? zIR(IrU2;IQ0Q%VZtxep~3Ikh&LiM*DT($~hwJO!k+W~R{DSke*Z(13#>vm_Xas*8T zf@dZM^9P<#>QMvyF621XD`aS#TtSyJ<x2x~zG$Jf_32ao8R;Q}gLclYZmw9D&9?c! zMh4SDBSON%#BE)19X;*coh1CJLQZ`=H|{_}5}m{3F%nrC*)TdPSJ~tVjM|Cu_d0|A z)8#AeKe2OIk$d+1xeJ-)u3qljz9P77aV286x_EB>{%aDh`WoijNLozjo`@eqqQm!v z?TwVSNxJ$wdTsI(HN&H-F{OIsD*j*x>K1m3dX*sP;oj~qDbp7!a8b|Lx=X){t~`t? zJ76gObEL-?_2OEaIh_jZ-oJR#Qh|7E>oFri&59!f!<TD1eKy_nJ(Ig}YuZ$OQ`oJ% zx|P-~B~0?6nc9ZHf`>7cjfhkDg>0n_M*6$~v9#<%jyu0d&&^hDyZBSa#kw^ovTOn9 zxzBidspYUc?6fQ5ABDuz5hj_D!h{ZZ;0Yuwo`@xoXap}Z-h)gaZN?MGczkCcTlOyk zj~~xTIP%|w8$Y+jKmutlgMgoa9HOT%0WMXLg5&ZTbS_T7h7Y)SJ_ASL(OFC?oyB1! zVo5k0Cn=tJ*qx2=xan!d51_=lISCp&l@~`Q`|%m6JZ2I?CI>^301$4?R^UFu%<GZK z0Za~yjQ}DZf4FezD8x7}()oai<isOvKqBJviv`6HvVIYS%Hc7QBgss_nX3;cNMluN zl7l|dq0%4<5Wd?&#Ct*`WnFGbf{@jVbiz1C=Mi3>I}%rXW(9xU7X5~YQa}QS%OvA) lDNGiJpM*`|(piGJbhrqLJ9ND0vo??fDE>iy4|c?!{0D1~N|68n literal 0 HcmV?d00001 diff --git a/res/flags/VN.png b/res/flags/VN.png new file mode 100644 index 0000000000000000000000000000000000000000..f19db790e36fba2b98b3d7c5a8bb77137a463d6d GIT binary patch literal 1120 zcmZ`%eMl2=7=D+Hl_5Dz=hxYniXZ9S`LX2@(Z-frwXx<hi-^tbwq0#*?QWVQ!aj&X zqK`#I)Ia@GL_}pq85U7cL7!Nrvs@n*QbG1fg=Ft6+KM{fd*0{w-19!a-yOHjXsAg_ z%t{1+B%M}m!k!(yCnO+tCXRPv8}C%=l>n!9Od7F@aXrnZHR%C@1puv^0luNsIs_1) z0A5)DnEe1U-@(qsa{xpOjEl?~G(;kia6a*mDu{{wB{?tbX^1gf9udZxK}1xUpRP#| zkw+D*xU@%f_G5WA;!rT<`!^BdZzX2SBc9i%f9#t0wNE_qDq(aK5Rs#T`X7M>#51$( z^EC+;l5pG!F|BWE?oe|I7Lr(aA@TlH;+G!r>#fO%$iszWC(I)Tn5;M3Cr6Z-ebaLh zk)!f+yZ+*w{-T`l%rWOo0y!$N%(xf)DdK0`o$;aun@BJjYGK~XUPpA%u&_oATg8MH z7ZZKjWjuDv*gd>jbq9$=(CIajr($XHIBB40P7+GTbZVu!@Q%%rv8YulgB!F}a@2ow z)^YdE*@L~+v(KMfbN$`$`*)KpyHcm5q)XFM_wC%Xd+#nyC=^<1G@I%cFR6Wa_r5CB z-E;3jw}PrHm(x`hHKF#CXHK7`D=W`*v^V?I&26Ffwi4s*TaT}#b{|?fF!$p6@1hOL z`jO<El&thzX=d7XO<94wZ0>Zrs9M~%V%75Cd`DfAp}5C)S=LiOID9qoL<G8ytfS<S zRrm)&zM!cW>{fwgY<?CSlvA{#l&UJF6=qt_P~{A*D4}SEqPqKCPyQJ2c<r2{<^KbR zx7=NU1B&Plyw@Q#Tm3AM0p3r#y*8_x<XtF`cCU@pd8|%WZ*_9E)ujrO<Qnbl+A^2m zaj$DSZ~`MTq7i0Sz|+7mYOgKeVH*X8G2##p^pVjE<X@h#JciM-oYN(MoT7pQT^;C= z#pV3+EamKi3#uvV8Gq~nS~BA-dd|ZNEj|{w==n&#$$9Cm&+u1{-i$7wE32!h3cM7X z_S|knOLAOJEf-`#A+Jznf8Yo3Sy9}xB_<s>I5*3Xq@Q(i-o{dg+v?<_n~`;fGHj6+ Qb2<)zPGeA?P+2zq01*3!H2?qr literal 0 HcmV?d00001 diff --git a/res/flags/VU.png b/res/flags/VU.png new file mode 100644 index 0000000000000000000000000000000000000000..a322030a28f0cd5c873659553cbf40ff840f0d1a GIT binary patch literal 1387 zcmZ{keM}Q)9LIkLw7nNA1wj<&M3^Wj+?7%;T!^$#kjh%1@*-@JmU1nXzF>O=A<m%k zren$w0hwfjO^p7*0^5k<UXsPPfSV3o!sasE;utg8bjH1rE$%6pSxt8NKF{y&_k4ce z=jASUFkin#N=A|ZAl2q*3@EPhH9QdY<7AK(g&?b1rv?}~Lj7$Lq30-bjzI^|5DU=Q z1Tc?MjdK8A2H>s{fa?W_s5voSkOmNd<-b^%g@Bov8CD`agvU$<Cw(bXPRWx0Q%5bC ztCZvtp}j=xXTb{p(LA-dZ!gtRM`p_<I(%6_x&E5$34m+~9Mh+Z`}a|=3Pfgtq(Blj zKyJAHG!q((6=aCtIzYA75b8KdktBSGiu*#Ad{d^pAxmD=+EoFsSct;{iQHsTtTabF z*i7xW6Y1;lQt|TBRQ%<o@=FWC06aVJ>Jt2=t>S?L)W(>=kfm6;PJ;Lb9^V{;tHY$3 z3ktx%QHmF5i?dTj-3=7#<Dvu4_ew7gNc$VfMMXasVAM<6-6YCKMF#k+^pba)s6A#p zjv>S3vhXCI&`y^HW35h7l`L9HVP#tJ+f7vSPGX~+fb`X{n}yd@j|C9C1T$p%)^^ZI zFbV?FR)IGKx-y|h1IIEKMWS<4iQn8u9o|JKl{m(&1a~rYW%x7sYVjL;sZKA!v3MZ6 z0$d6>`UH60ORCcFAY}yDlc4iSK4^UiR3t!$+TTi9-t#Tm111>s+dwrtZSg%+<ZjVG zn`m{8?>*M!lzLD!F0}jA8Q0K_M9}K8B;ScbWC0=GxHKtB{iD^W3pZRd8&_x=Ls+A+ zvch8G%|G700IJkP=kq%@@5R(>H@QEJ9<2C2w9_z^)axE~KOhfnorpiP^KRsvyKi)~ z>}zhkVP4#leJOSbhbgPYX|nMSbG7x}?YTSc$S9(Otqaa8rCn>v(;qdef?z@<YHez1 zo}8G-)?{a0z7P#puAcp~>B0+N-RZjd{=@dGn-IfK&fb~*AtG#fcu!aNv63jrA2t+^ zof#h*8~%7;<n+0d;h4%Y_CcLc>;2>5@4w~swk>INAC1jB&N=4WkH2ThJJFWNT7UWQ zFKT&WS=z4Xp>H}*PIkY${oKyzl+?6e**1WSBlV@Hf{xrm2eD4b+AdU@1fDayc@!Xt zk+TVmGC|H3%2PNdiIcM%89B!=H*QtkeyYIXs<c_^|G!|c<@(F0fc4Gbaan{qlbZ+H z>v7X|m)T^eJyj?{SGvr!)?u>pI+N9Au1;WS+UBg}cPCZ}4*Q<kzF}ms!e>!f<#kkW zoW^DLI(VnRarvmo1M*Xk&eP8@3w|7z!`rM?0w_|L_`K<9#6<Y{JZ4I4l|mJyFw9T% z&*<L+EBz3i&A|)xH9XjS>!Urj)=%!$=%4Y?6(S1c$*D?4fiCty*XK@zg!uVvvo-Lb zNKI8_e02Y;?~{%58!R$t!D6%X98J4<tIg$1u-Hvjk8d`*xF`{YE7}Lms0g%Kdd+Z# GasR)O)2kx@ literal 0 HcmV?d00001 diff --git a/res/flags/WF.png b/res/flags/WF.png new file mode 100644 index 0000000000000000000000000000000000000000..5f6e2bedaabdbcb7038b74a1c04c3cb0d0ca20d2 GIT binary patch literal 1215 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`!^)z$e5NsNnwn`wYrc z8I-1ona#U?=iUGR|NnjZ{4pf)t(w_8W2g6y{%<ub-fCJx5s(c>U_l0@sSJu!L`>&h zyZip%=Pw^a65gtszB5A7sA2KW*!i86$2&`pcV@0|qclvXshdo-cAa<U!h`=GKKy<3 z^kZDsJ9D@9P66+o10j~aGjaZunEU(Gx!+fBd@gHvXW<Ufe%mVWmQ~;#>%h035g&Y_ zK6ppGxAS>t<@wIq^PPbMNR67==Yr~Q6K8#C>;{nyonN~qL(SAMe+Ncy)y<&@)ki@0 zf2nT$_u=Ems5GEs{@i=;ebGvgO8my+a4JX_ju3!Ip@$~}Lv?fr2QXq7OM?7@862M7 zNCR<_yxm<GI#^{rfE>;OkH}&modCukvYpNY8SEvVzOL*KSp@}{1WPq-c!5IuJY5_^ zG|nd{Ncc1eiZh%vG~B#l)5hY0qQcJ~lo(f?{P>ZZgNw7f<Is~MM^sgAE?JVA^7Kii zsL0eQp&?hVm@X)q6?MyMSJf}JHn(GY)Rv_^6Pp%x%`Ct&+Pa$ET|Heq+`K%F-(Npp zKHmO6!-|-MfC7(<hzggK5R-hLoR}J?q@W_M5Wbs*D>Gk8&WyZi$r$mZ=<_FTuI?^x zuZ<_BP7MzU3%!0ND`Dd5)%h7YS$UaHk1Dmx={-61uyg-GW(LvEx{by+uLuEsqFUk_ zQIe8al4_M)lnSI6j0_CTbq!2)4b4Lg&8!TJtPIVy4GgUe3@+c!cz~iIH$NpatrE9} zMQs;ifEvs}HWcTlm6RtIr84N378mK~<R>TQ=oe=I1@u$$ll47w6Vp?D6Vo%3vvtk& z^)vHQQY-W_N^)~*%4V$t8X*BPA|#_UH_6J%B|o_|H#M)s$|?Y;shGiV`TyPeXllUb zSy_3cW~OJ9Fqjz_RNdRV6{toW$sDMf@XVBw3<gUBgGa@yt^$=vA}R6B%uOw+EJ$U@ z1i4SYxGa7D`vN~Sb9_U9su&DSEKLoJfxx_Z%DFtC5&<N0f-|d98H~-0oO-*io&d^e zBFTjYc`~GB=A>Hb>ldY_XXfYWrsX827lSO*4|mf8QYxWmih!CJJYD@<);T3K0RTF9 B+K2!E literal 0 HcmV?d00001 diff --git a/res/flags/WS.png b/res/flags/WS.png new file mode 100644 index 0000000000000000000000000000000000000000..de43a3731269263dff5276c4772d35fc6ca2d861 GIT binary patch literal 1004 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fF5l=v3l6XFV_@87@Apj{6| zT6IzmJ@)bQ8FlIzwCZ5u4e4^h7X?+%3911_7<C$0^cp1{dTe6na+|b@+H@lHI`%}B ztpUn1Xw)isOz_ND0yCkW!?0P(u?NWIHEUJ&n82*t0G9$WH0yXwTNT|W@R_$UXu%w# z4OG*>pjmGkHK%;yK4ybv5EqDa8q>h;0lF$pE~r2)yjnjtLq0fNE(j<-Tf*kNpeoR{ zKy*Ps1&APQAPE!)d4Yjpb+>mgkYX$e@(X5gcy=QV#7XjYcVXyYmGuB}I14-?i-B|k z7=OriIuB&9mw5WRvOi=M6krl8)wJOS3Uzq8IEHAPPfn0fY7jI}NJvRaN=r;le*WOe zqh}AFK6Yo=FsEU`gbf`lX6#@Qv-H%=l#H~jWOdak@;arpD(jWhtf+`5TS`m5e&OZm z?J<1f0|aN!=<2Lp<C~N7HsEPRW#wC0nYnXfD=K5}-U)na({SMO>D$MzA3l8Eo*}eP zUR;8~(&nRq3j>44M49k9u4VIqZc;6AjVMV;EJ?LWE=mPb3`Pcq=DG%^x`yT<hGtd< zMplOA+6IPJ1_qaJXFNdBkei>9nO2Eg!=kneF+dIGARCJF(@M${i&7c%ON)#2bMliD zbM%WdfCBm{`N{g8xrynizKQ9X$=SN*`udr9DXA5D86~+nHD$Bb0gaFV84;3Enww;0 z<&vLVnwy$eVr3No)Ktu1xcvWaeV`giBsF03tgJjzGt)Cl7z|BJ3^qy#|3fnfswg}& zr6hyF$il)v*!x-{nnAvqxv3?U1*r^~AQ$Qvm!<E2U*HE+B#va8ZwOEo&=yNm17jdC zZ=P~452!={Nl9>KRVstIp@Ea>L^EKnV$ejA3k~vQNXyJgwbIuwN=?tq&(lrINlY&W bS*9NztOuleLa#IcH8FU)`njxgN@xNAjHouo literal 0 HcmV?d00001 diff --git a/res/flags/YE.png b/res/flags/YE.png new file mode 100644 index 0000000000000000000000000000000000000000..b132bc13c42df76b8a1fbca5d4f90c0d989681d7 GIT binary patch literal 715 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&j3?%D+y-WjAEa{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBC?OZ%6XFV_@87?FPEhR} zzseOoho6t0{{R2~!Gj0#^725bY?hN3fD~g%kY6x^!?PP8D;bl#-CY<uSY<tc9L@rd z$YLO!0LCA(oz4Rp>?NMQuIvw41qGM{OEqnHfkKX+E{-7*my;6~$R&ulFgdIfV$u+L zBBk7*IN@~@L!U#Q1``X@&P<L89uuPb7+M|j*qKb2b{Y#ND6NbM`5(m3z+lJcw#}Mr zP9o4S)e_f;l9a@fRIB8oR3OD*WMF8nYhbEtXdYr{W@TVxWoWK#U}$AvaQSw|0~8Ip z`6-!cmAEx5YP%2v)L;&>p*TOSq&%@Gl|jF>xJW-IKRGc+zc>RZpr4YTtnZndn4apJ zn4X!Ot!u8YpP84ETA`OwlABXgHftTw2nmo8AsMB)Nmf=a`N^fZsd*(<Rsldw#SDha z|L@jEQv){7%E}`(Gd-h(!OXy*>fYY1KsDk>=0MeiXQq^7FjyKGJStvw6{tiKNr`V} zZfZ$oK`KKg$bI_7W$F9h7x<x>;~N50#b9V+X=-2$1m?|C&gB7>2q2jgoLL17S92pL zlP@=B0p&E2<U)fy8PYOyQmyp$i&E1w^Ye7mauU;vL6+%9y6OR`$p6<b0W~pry85}S Ib4q9e0NRb&H2?qr literal 0 HcmV?d00001 diff --git a/res/flags/YT.png b/res/flags/YT.png new file mode 100644 index 0000000000000000000000000000000000000000..5c450dfb91e1396d0cb16df5a26c72ab9b265b29 GIT binary patch literal 1540 zcmZ{i4NOy46vr<rak?-?G3bmA!dmAHycUJpicVN7R4GF&BHFo@_O*RVTWkvgP9f85 zBPLshE+S5oEt^i05he@HwsSzsX94+?wty{_uR;rGX%P|GL1)5Dc9Qqbz32Zs=iGbV zD@aU;^;`b#a)gi{JC2zIe*OIO)?#>TmM@WjTOx_(L?iV3w{Jfe_`*I&7?;FBD3^>- z{yBu6K`4J1p-c)wBYcDyMF<6E{Giz%h0vm`#CR?X0IStH_u8I5G*8x5dfOU3&2>{< zt)8aZ$@(f!W6hI_KivkMyGrw<;?9g~)UDSJoK=n#op%(To4E6v>(;gL(qG2Qex0~e z;%Tm(_~X{drGn}HKB)R)(mma8dp2mFaXMxnyXL&^nZdqUm*d6c<5{og`NY^$Yd0`J zPESww^z@j_X7AM0u)}p%)2h+7X>{!xZ9A-ohn-%p*JQB(10?V>GczqMEfp0NdcEFe zvl@*SD)lmnbTK&iB8hYX!-^UjED#437$AZ7csyFIwyCM9y1M$ogU;&ePSU1g`i?7N z>CIicue?vbY%p|obwRuu7$AXnxm*T=0k&XmZLJNpZF@s=nL$cXbnc!ICHuqddP57u zUjaY@KR!MVO(9*U)79128}F9uqqpd`2UKDKy6tQ9JIM`YrF9JrpaKIV@NgZc)7jC{ zVX;^$_4?Y|rL}BwDQ~s@qZOsRfLdm7P06h)y&hCxfCL_Fbad2gHoM(!7+T%k@<sut z?od=y@~-;BI~)1&_2p#{2Nf6~fw$Z34u=CS1=AQB9CSRg4_U1?Q`d;S&p9|SJTwGx zP=NswhTPlR+uGXN+1Y8fSd2zvO-&6<67C3VlgR{eP=R^%IiUXR>?|~b<G~OnUfbB% z7zDvUoj>&49Q<;9n||y7=c7(aIDmE!n#A*)w0*Hm^tJDXIM^)9h)Y$0=f8X=j>p`G z#Zon!!&=(s>%Vf5f9B>WKgbDUGo!g5+!ylK#^?J7qI#;2&(_u9d>{V|I{9E^);kGd z@{LD#o$-k#bLqhX|NYbx%h;QVb*c0KdJfr_MZ(u4M`ZeOLS-9*-V3{7{P~80FBPSy z9TUq11TNEy&bLS;<F?^`r+s8_tj{svdNlf#=z896equ(P^iVca#8t<q^P&oQF=<K4 zy~hsc?hzl%N{}Bt<5S2J>_5RKQgc{%awbRi>FJL{3V8=q`;H$u6)Q<O`HAAQxpM^< zRw^%Cz8-%y@^npOYS~cZRa#zU6)XPychB#M9JdFy94tBfm)NE8tdEq(EW6Znq+H&8 zPdHT4d&)c3oo5TW-4lFWAN$S59cS$QH`^u6*LJMv4{>PoSFH%NJ)1CCZ9XW3k}{?B z`s!eOBsJ@hS|m{8451PShr%gTS|}wVluF}LBN>!%29>sjLS;}W?cGw_e-dO05h2d` z|Ae2uY~euyZN7s_Ay%IhC~<^ks+3r|LMTYbR8k0FB83oR%LEdfBajfn<DoPRBjh4H zJ4~vUrGK7PTmmK5&X?dyGi7NE22&x-l;LtUgOLbHDnz|8r^Vi2Ue;qU;&4JDRig+B zCA(;`6PUmSb^c{i2$5QfXc3g}i&e#dtXqI^2pO)<$-ogYe?Cl=CHZ?iBjJrY94=6Z zx{V$|*$PHGd$Cy#$f^Z(4iLFG+7=!`r^GxA?oI)9^8z(FiH*cWI?li_B`zTp@=$TQ cK%$y&hoy4Ez%9umY><T5tORCB4F8LN0GyN`ZU6uP literal 0 HcmV?d00001 diff --git a/res/flags/ZA.png b/res/flags/ZA.png new file mode 100644 index 0000000000000000000000000000000000000000..adec062d1dae0ffb7dd52e40a4ea9d38095d49a2 GIT binary patch literal 1494 zcmZ{iYfuwc6vq#bh@iIM2gL^xaOfx!c7sB6izrN}#E^_YK(w|HlO<Wn1CxLRsg2-R zD<Bkt&=`~oKH3TfL{UJcXsHwx96@m8tvtkMb^K7<PJ5S!6P@YK|L)nl`#-;X?z#Kz zCgFxTP79p?U=A;g8;Rl~dd###_c|wg84C8YU_mfIRqm|6#SAoOO2Q%q0BN5981@0Y zMXwBF0LeJOcsu}63@|^*To(}tU>mt9Toj57{r&xrCP13;RRmR4^l)_ORf%bU8`S6T z+qarMDVIGw&<l~rX16fVw5#@B%j>4bQE6Ns2d6b*t1tHu<OJI84hOveQu!Ze#A+{= z4)k{aQDhwaY~4FrB7a7+ac*9TkK5i2G*gfK;VTbo&UQ4vy3stggQRHz*rZT-UJGr_ z>RH#y+(fyA{WN^GA$muRsi&{|)zKrvF%gd<_(%+Uhz(*~&vz+4=DjpCbQ;cQ6{t?M zUG06)+0)hD({%?i(Z!r+Ym_@(D_!(?-fE|GKHUL5f99U3C0P>pY$?*D&4B^MI~<=@ z&x^<*Cc8uzoVsyJ?@*LeQ|Y3ux$mKvSrU(ITBxusL5yGN!d7@%6^0ck%i9{8@Av=G z(Tjw3S~9iMPpx;Vs`>u+o`KAQTg$j7nL%Y9>&g^UJ!Dz;(EqTevg5bfrh)ZaEwHo@ zJdBf?J{Pn>`dpkdVpA?1Yke@dJG*7BUkNacw0T<A2ffy`>)gFoOMTy(s0#2b1kY*b z^xu+LUDQ1?nvs9gnQaDU!6fAR7u;;r78_lpFbdX>bSKc0?feZ~IKXfVLleiOuq|2? z<0r<;#E>@h;Gp9PLLCMfF3z?t$;$)hpd42oH(0c+O%m@KZg80oEo}BVOLdhtNwf1c z)6TLObH8dR&9fXhU3}5L&RlM+$v$Il$T*%~ebC!vHr4GvdHBMi%A;5I{_tIu<7~rl z_^q2PpNca|#j~ewi%ZO6@RW@YjgLGZd_4T@;geB!u#3Oc$c(x>kk@W`dEmzBvEo=) z!+2H}M-UdiQOFbU+ivW$v22UE@FOKueYq!C9I=x}EttLjP2pxyOmtVry-v=m0RL;i ztvqqQ;&R!!pX*Q6p8dLs>k6#`Qy@8B^LS;#ZPQxW^M*fX#e+|6(w!kMei19KO4B*+ zpV(FLjg6&ef6kEr_5C{KUx!NSQ_jZade_QcT=~c0qa{T8qp`Pd#x$uz>X!hez5CpY z9S*jjwt4A7V|7xojwB=+5(V(X*&G(`&th{#>;MAyBiNi3IGe!nyAR|8?<FYJQYu0J z{|U$Uw{JrU9C`(<IzhKftRVqQ)@m??S|V0pS~+@wN!1dJrxeRbfmlXK5?LG!qf}Bd z)mN@lD$-L-l?dTVBSi9K<#vMLswK%vQl%q^O(;nV>{I{NV;^`XcmxqfQZl&?0&qO7 z@A7%%nQz6J@@%H0IytPt@geO`oyfAl$|9hYq)wki0!7z{X;WlZUnB`X;0Q#>1?*L8 z{PC6O;$#|ctB}RniW5bpkr3d=32F4!OVGFFR^Or{d5}OUNCLw&q>NIlSP2TTOiM3@ XZ4LHC!TX6_14;s3sE}J35})xO%1kLm literal 0 HcmV?d00001 diff --git a/res/flags/ZM.png b/res/flags/ZM.png new file mode 100644 index 0000000000000000000000000000000000000000..56287f589b7b1aa0832940bac673dda4e762baad GIT binary patch literal 991 zcmZ`%U2M~46g|*nZ3A5!(3+MGRw#^BD7D=ZB72OjC7}t}p-ls&z@Wx)9IN?j?UaSl zC2FTqC=xs%#3lq9FGHGy#2$+#5Ipe$NCSk#LjeJrc%YLiHh~c3y8I|insvYLeD|Jn z&$X@ZU`MFE!m-E!pduLXg$e7dRaQd#gu|v0*tAxu6*zxn-b>j|dA$+{OTfO*fx?f# z3n~@<0<tXdq!$oQ0Itl*iO#h|{L>*u{DhN}leLHNKB^C)dK|R7-W_UYS=u-3hnmBN z0=o0yhvCmd&VkQcy~HvjFirfFz?FXd9>*ySLxWcFjWY=-mXAWoLhpxr*h(qh&wXQ3 zKZ;MsP&59v?ivT5D>=H+aXjD%ud|n~#(WQqKKwF*)5EAf3@K&1yR7Qb5@)uujK0MN z{ML<s^Ozp8STSY0(@^=KzRGl#+2`WyHcaO+HH3%HXXr0sju{Sh;hV>IVpg(eQ@ami z_Qe58$}@o;gRpmY{oU7goergDQ1X}Fw>zumI<t*yE2xwU`dTAjTvvK)#Ddd>tK8C( zSoPL5gCB>QQcFaB*Sa6(v@VsMot((`mj@g5+8#b<7kU2*^^+~0Y=z_&`Q+knzZxo8 z-=HiM`K}gY-lkQ3bvwQk`R_~HS8A?q@7_w0-^`>x+wJ;#rf^AaII!~7N0mVMOvAnW z^m*$NtT6rC%&2Utf-;~Ipqb^oZr0=Gyb*4Vz%~n<cNNPCEc@r(_`MGrlIf@(%l&`D znb8|NsljVaFw!w|uRNfF$r=MpBCW^?#)wmaiKZ1Mn3OeDk~LlFb9)&^Pes-5n&M_M zv48OAb7WCtSw!O5<Q_rrrIl<_O__qwK}`m@UuP~bq^T{^%=!sJK-IOl32rsZ-ZF1n z_qo{Ut*Bd%nsGF9EPHdk_V_<WlAct}Tt<a%y&+=^Y8R(6AriTYrb!V}(G=dpw$S4p zId&~Yk_APQE`1*<TG(b!+q2BrWnvqP*e&58VtPUq7-m4#^mNJ{OURmGjbpY;O$1YQ QPye7M1pOi3xwhWn*Vcg;x&QzG literal 0 HcmV?d00001 diff --git a/res/flags/ZW.png b/res/flags/ZW.png new file mode 100644 index 0000000000000000000000000000000000000000..e58dff382b7b5070e9c64d27f8f57903c474f8c2 GIT binary patch literal 1116 zcmeAS@N?(olHy`uVBq!ia0vp^(jd&i3?z4Pv7`ejmUKs7M+SzC{oH>NS%G|oWRD<U z28Jp%28M<f28Lfip@tU>45bDP46hOx7_4S6Fo+k-*%fHRz`*Dj;1l8sRB-?P{YC5M z*w!oR_Os|u;?SE2LjV5$+kawDV4G>+G?v%}Y%%kp=>Px!_aENdxIFCc9;R;>8NR^K z-(MepJv;e)^ZNapYOc)U|2l*D+bq_vU<B0i>%)ytJM5k(TYR~8<LH_dTP(D1$@4r? z7J#51m(IT`%lxoV<?~Xpmn9DGdRngT+OZ(Ovq6NrR)`ab{(bxYaqaYXE2Q7-5_`8w z_`|+Q$4;M?l9K~E{@2GFuXm_DS||8ytK9c@CvTj)u)yB~qVf03M_(>Z`u<?by9*Nz zE}pi<QWtLN|9}5JeEhn9b3L+C@87?@aaky`zpw@ZEUZ`|VP#<ud<EzZ#*!evU<QY0 zH_||yByV>Yh7ML)4<LuLz$3C4NGE{this?wKn8n>r>`sfLsmfnCc#oo8(yH$T2B|p z5RLQ62@*;Tg60VcDM@LGsmaHg8j57*#N4sjQ}aiHK|@_ZK|@7HNlUGd&!I?YQqU!% zO+}x$G8i<LuUN8X(W+(Z7Oq^{%hgb1wX5nETbtW4wPk557&OxJ5;IeCl@qel``H}6 zSz1_G?%uI$XLZ6W;SXOvef#+JGe5_XE&d7~3Kl9RIyOw*)~qZ_ix(v)J>KwB-%im` z(^6G5d&iQc=_zRsIs9!t8n`ep6i?S*)tbeb1a!D+iEBhjN@7W>RdP`(kYX@0Ff`XS zFx53Q4>2^eGBC0-G}ksTv@$Tbd^_U-iiX_$l+3hB+!_|OU5Ei{FbCOCoS#-wo>-L1 zpkG>Cq@R<YoS36uoB<TjPsvZ#_smU9PxVbq&rHtNHP_eA%u7kF(90;v&8aDywGL>6 z1jvYxjMCgBD=U}$<kH;Kyb>#`0HCH~2E*n5ck8360h?!K<&m11o>9VJYG6|T_4rrp zYQi&9N-`J>4Gb(!zSjc9q$HAEzL~kHC6xuK44EJY>KB)#?|)z52UH}EtSAJiiowvt z($v5h2+W(OoXZ0$5kyiFoLQC1U}|b$=;YeC8kC$gkt9QdJQ>n5b5gDJ^@~!|GxPIw h({d8ii$S*OM}_MFsiWSB^MINdJYD@<);T3K0RSMGs+<4- literal 0 HcmV?d00001 diff --git a/res/genflags.sh b/res/genflags.sh new file mode 100755 index 00000000..45c23600 --- /dev/null +++ b/res/genflags.sh @@ -0,0 +1,53 @@ + +# genflags.sh - Generates pngs for use with CountryDropdown.js +# +# Dependencies: +# - imagemagick --with-rsvg (because default imagemagick SVG +# renderer does not produce accurate results) +# +# This will clone the googlei18n flag repo before converting +# all phonenumber.js-supported country flags (as SVGs) into +# PNGs that can be used by CountryDropdown.js. + +# Allow CTRL+C to terminate the script +trap "echo Exited!; exit;" SIGINT SIGTERM + +# git clone the google repo to get flag SVGs +git clone git@github.com:googlei18n/region-flags +for f in region-flags/svg/*.svg; do + # Skip state flags + if [[ $f =~ [A-Z]{2}-[A-Z]{2,3}.svg ]] ; then + echo "Skipping state flag "$f + continue + fi + + # Skip countries not included in phonenumber.js + if [[ $f =~ (AC|CP|DG|EA|EU|IC|TA|UM|UN|XK).svg ]] ; then + echo "Skipping non-phonenumber supported flag "$f + continue + fi + + # Run imagemagick convert + # -background none : transparent background + # -thumbnail 25x15 : resize the flag to have a height of 15. + # By default, aspect ratio is respected so the width will + # be correct and not necessarily 25px. + # -gravity Center : keep the image central when adding an -extent + # -border 1 : add a 1px border around the flag + # -bordercolor : set the border colour + # -extent 27x27 : surround the image with padding so that it + # has the dimensions 27x27. + convert $f -background none -thumbnail 25x15 \ + -gravity Center -border 1 -bordercolor \#e0e0e0 \ + -extent 27x27 $f.png + + # $f.png will be region-flags/svg/XX.svg.png at this point + + # Extract filename from path $f + newname=${f##*/} + # Replace .svg with .png + newname=${newname%.svg}.png + # Move the file to flags directory + mv $f.png flags/$newname + echo "Generated flags/"$newname +done diff --git a/scripts/copy-res.js b/scripts/copy-res.js index 5a43c4e6..d3a2ee5e 100755 --- a/scripts/copy-res.js +++ b/scripts/copy-res.js @@ -9,6 +9,7 @@ const COPY_LIST = [ ["res/manifest.json", "webapp"], ["res/{media,vector-icons}/**", "webapp"], + ["res/flags/*", "webapp/flags/"], ["src/skins/vector/{fonts,img}/**", "webapp"], ["node_modules/emojione/assets/svg/*", "webapp/emojione/svg/"], ["node_modules/emojione/assets/png/*", "webapp/emojione/png/"], From 98215b4767423fcd202f630fd44e9190086b8300 Mon Sep 17 00:00:00 2001 From: Luke Barnard <lukeb@openmarket.com> Date: Thu, 18 May 2017 11:29:57 +0100 Subject: [PATCH 031/147] Adjust for 27x27 flag png size --- .../vector/css/matrix-react-sdk/structures/login/_Login.scss | 2 +- .../vector/css/matrix-react-sdk/views/elements/_Dropdown.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss index 2501b1b1..1a13fab7 100644 --- a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss +++ b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss @@ -259,6 +259,6 @@ limitations under the License. } .mx_Login_phoneCountry .mx_Dropdown_option img { - margin: 4px; + margin: 3px; vertical-align: top; } diff --git a/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss b/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss index 26fe3792..5d2e2a81 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss @@ -57,7 +57,7 @@ limitations under the License. .mx_Dropdown_option img { margin: 5px; - width: 25px; + width: 27px; vertical-align: middle; } From ea03140cbd222ea67bcc13e53c230695cca5d08b Mon Sep 17 00:00:00 2001 From: Luke Barnard <lukeb@openmarket.com> Date: Thu, 18 May 2017 11:30:22 +0100 Subject: [PATCH 032/147] Add ellipsis overflow to long dd options --- .../css/matrix-react-sdk/views/elements/_Dropdown.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss b/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss index 5d2e2a81..5e4b9f39 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss @@ -55,6 +55,12 @@ limitations under the License. padding-right: 8px; } +.mx_Dropdown_option div { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + .mx_Dropdown_option img { margin: 5px; width: 27px; From dfb30e91de681d7cbcb4539e51f860b9afc95f24 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Thu, 18 May 2017 11:32:10 +0100 Subject: [PATCH 033/147] Desktop: 'copy link address' Add 'copy link address' to link context menu in electron app --- electron_app/src/electron-main.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/electron_app/src/electron-main.js b/electron_app/src/electron-main.js index 32e305d8..29a9f08a 100644 --- a/electron_app/src/electron-main.js +++ b/electron_app/src/electron-main.js @@ -86,6 +86,12 @@ function onLinkContextMenu(ev, params) { safeOpenURL(params.linkURL); }, })); + popup_menu.append(new electron.MenuItem({ + label: 'Copy Link Address', + click() { + electron.clipboard.writeText(params.linkURL); + }, + })); popup_menu.popup(); ev.preventDefault(); } From 7c764b7365abac7af5b6917a33ad05a22cbabf0f Mon Sep 17 00:00:00 2001 From: Luke Barnard <lukeb@openmarket.com> Date: Thu, 18 May 2017 11:34:26 +0100 Subject: [PATCH 034/147] Add copyright --- res/genflags.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/res/genflags.sh b/res/genflags.sh index 45c23600..94a78bb3 100755 --- a/res/genflags.sh +++ b/res/genflags.sh @@ -1,3 +1,16 @@ +# Copyright 2017 Vector Creations Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. # genflags.sh - Generates pngs for use with CountryDropdown.js # From bc5ad3c761cbe173ecdce72598c87c4664b5c198 Mon Sep 17 00:00:00 2001 From: Luke Barnard <lukeb@openmarket.com> Date: Thu, 18 May 2017 11:36:24 +0100 Subject: [PATCH 035/147] Move genflags.sh to scripts --- {res => scripts}/genflags.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {res => scripts}/genflags.sh (100%) diff --git a/res/genflags.sh b/scripts/genflags.sh similarity index 100% rename from res/genflags.sh rename to scripts/genflags.sh From 7d81ade56359b25c565d0b67911668c9d199ee8f Mon Sep 17 00:00:00 2001 From: Luke Barnard <lukeb@openmarket.com> Date: Thu, 18 May 2017 11:38:01 +0100 Subject: [PATCH 036/147] genflags.sh should be run from root dir --- scripts/genflags.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/genflags.sh b/scripts/genflags.sh index 94a78bb3..826a0299 100755 --- a/scripts/genflags.sh +++ b/scripts/genflags.sh @@ -61,6 +61,6 @@ for f in region-flags/svg/*.svg; do # Replace .svg with .png newname=${newname%.svg}.png # Move the file to flags directory - mv $f.png flags/$newname - echo "Generated flags/"$newname + mv $f.png res/flags/$newname + echo "Generated res/flags/"$newname done From 16899d3b1ff0e0137d28ee092052687395354668 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Thu, 18 May 2017 11:38:03 +0100 Subject: [PATCH 037/147] Bump electron version to 1.6.8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 644e9309..dd25bf64 100644 --- a/package.json +++ b/package.json @@ -143,7 +143,7 @@ "build": { "appId": "im.riot.app", "category": "Network", - "electronVersion": "1.6.2", + "electronVersion": "1.6.8", "//asar=false": "https://github.com/electron-userland/electron-builder/issues/675", "asar": false, "dereference": true, From c9e821ffc5812a91395a9fa845165cc9f1713929 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Thu, 18 May 2017 12:00:02 +0100 Subject: [PATCH 038/147] Add config for riot-bot on desktop app build Also remove unused room dir stuff --- electron_app/riot.im/config.json | 61 ++------------------------------ 1 file changed, 2 insertions(+), 59 deletions(-) diff --git a/electron_app/riot.im/config.json b/electron_app/riot.im/config.json index c5bc65e1..80526f4a 100644 --- a/electron_app/riot.im/config.json +++ b/electron_app/riot.im/config.json @@ -6,68 +6,11 @@ "integrations_ui_url": "https://scalar.vector.im/", "integrations_rest_url": "https://scalar.vector.im/api", "bug_report_endpoint_url": "https://riot.im/bugreports/submit", + "welcomeUserId": "@riot-bot:matrix.org", "enableLabs": true, "roomDirectory": { "servers": [ "matrix.org" - ], - "serverConfig": { - "matrix.org": { - "networks": [ - "_matrix", - "gitter", - "irc:freenode", - "irc:mozilla", - "irc:snoonet", - "irc:oftc" - ] - } - }, - "networks": { - "gitter": { - "protocol": "gitter", - "portalRoomPattern": "#gitter_.*:matrix.org", - "name": "Gitter", - "icon": "https://gitter.im/favicon.ico", - "example": "org/community", - "nativePattern": "[^\\s]+/[^\\s]+$" - }, - "irc:freenode": { - "protocol": "irc", - "domain": "chat.freenode.net", - "portalRoomPattern": "#freenode_.*:matrix.org", - "name": "Freenode", - "icon": "https://matrix.org/_matrix/media/v1/download/matrix.org/DHLHpDDgWNNejFmrewvwEAHX", - "example": "#channel", - "nativePattern": "^#[^\\s]+$" - }, - "irc:mozilla": { - "protocol": "irc", - "domain": "chat.freenode.net", - "portalRoomPattern": "#mozilla_.*:matrix.org", - "name": "Mozilla", - "icon": "https://matrix.org/_matrix/media/v1/download/matrix.org/DHLHpDDgWNNejFmrewvwEAHX", - "example": "#channel", - "nativePattern": "^#[^\\s]+$" - }, - "irc:snoonet": { - "protocol": "irc", - "domain": "ipv6-irc.snoonet.org", - "portalRoomPattern": "#_snoonet_.*:matrix.org", - "name": "Snoonet", - "icon": "https://matrix.org/_matrix/media/v1/download/matrix.org/DHLHpDDgWNNejFmrewvwEAHX", - "example": "#channel", - "nativePattern": "^#[^\\s]+$" - }, - "irc:oftc": { - "protocol": "irc", - "domain": "irc.oftc.net", - "portalRoomPattern": "#_oftc_.*:matrix.org", - "name": "OFTC", - "icon": "https://matrix.org/_matrix/media/v1/download/matrix.org/DHLHpDDgWNNejFmrewvwEAHX", - "example": "#channel", - "nativePattern": "^#[^\\s]+$" - } - } + ] } } From a39a7c8334aff7e2add61646be6c4c310e3a87e3 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <richard@matrix.org> Date: Thu, 18 May 2017 12:18:57 +0100 Subject: [PATCH 039/147] Update to more recent mock-request Just copy-and-paste the updated version from js-sdk in here. --- test/mock-request.js | 183 +++++++++++++++++++++++++++++-------------- 1 file changed, 125 insertions(+), 58 deletions(-) diff --git a/test/mock-request.js b/test/mock-request.js index 8510ad54..e4a929a6 100644 --- a/test/mock-request.js +++ b/test/mock-request.js @@ -1,6 +1,6 @@ "use strict"; -var q = require("q"); -var expect = require('expect'); +const q = require("q"); +import expect from 'expect'; /** * Construct a mock HTTP backend, heavily inspired by Angular.js. @@ -9,23 +9,25 @@ var expect = require('expect'); function HttpBackend() { this.requests = []; this.expectedRequests = []; - var self = this; + const self = this; // the request function dependency that the SDK needs. this.requestFn = function(opts, callback) { - var realReq = new Request(opts.method, opts.uri, opts.body, opts.qs); - realReq.callback = callback; - console.log("HTTP backend received request: %s %s", opts.method, opts.uri); - self.requests.push(realReq); + const req = new Request(opts, callback); + console.log("HTTP backend received request: %s", req); + self.requests.push(req); - var abort = function() { - var idx = self.requests.indexOf(realReq); + const abort = function() { + const idx = self.requests.indexOf(req); if (idx >= 0) { - console.log("Aborting HTTP request: %s %s", opts.method, opts.uri); + console.log("Aborting HTTP request: %s %s", opts.method, + opts.uri); self.requests.splice(idx, 1); + req.callback("aborted"); } - } + }; + return { - abort: abort + abort: abort, }; }; } @@ -34,43 +36,48 @@ HttpBackend.prototype = { * Respond to all of the requests (flush the queue). * @param {string} path The path to flush (optional) default: all. * @param {integer} numToFlush The number of things to flush (optional), default: all. - * @return {Promise} resolved when there is nothing left to flush. + * @param {integer=} waitTime The time (in ms) to wait for a request to happen. + * default: 5 + * + * @return {Promise} resolves when there is nothing left to flush, with the + * number of requests flushed */ - flush: function(path, numToFlush) { - var defer = q.defer(); - var self = this; - var flushed = 0; - var triedWaiting = false; + flush: function(path, numToFlush, waitTime) { + const defer = q.defer(); + const self = this; + let flushed = 0; + let triedWaiting = false; + if (waitTime === undefined) { + waitTime = 5; + } console.log( - "HTTP backend flushing... (path=%s numToFlush=%s)", path, numToFlush + "HTTP backend flushing... (path=%s numToFlush=%s waitTime=%s)", + path, numToFlush, waitTime, ); - var tryFlush = function() { + const tryFlush = function() { // if there's more real requests and more expected requests, flush 'em. console.log( - " trying to flush queue => reqs=%s expected=%s [%s]", - self.requests.length, self.expectedRequests.length, path + " trying to flush queue => reqs=[%s] expected=[%s]", + self.requests, self.expectedRequests.map((er) => er.path), ); if (self._takeFromQueue(path)) { // try again on the next tick. - console.log(" flushed. Trying for more. [%s]", path); flushed += 1; if (numToFlush && flushed === numToFlush) { - console.log(" [%s] Flushed assigned amount: %s", path, numToFlush); - defer.resolve(); - } - else { + console.log(" Flushed assigned amount: %s", numToFlush); + defer.resolve(flushed); + } else { + console.log(" flushed. Trying for more."); setTimeout(tryFlush, 0); } - } - else if (flushed === 0 && !triedWaiting) { + } else if (flushed === 0 && !triedWaiting) { // we may not have made the request yet, wait a generous amount of // time before giving up. - setTimeout(tryFlush, 5); + setTimeout(tryFlush, waitTime); triedWaiting = true; - } - else { - console.log(" no more flushes. [%s]", path); - defer.resolve(); + } else { + console.log(" no more flushes."); + defer.resolve(flushed); } }; @@ -85,14 +92,19 @@ HttpBackend.prototype = { * @return {boolean} true if something was resolved. */ _takeFromQueue: function(path) { - var req = null; - var i, j; - var matchingReq, expectedReq, testResponse = null; + let req = null; + let i; + let j; + let matchingReq = null; + let expectedReq = null; + let testResponse = null; for (i = 0; i < this.requests.length; i++) { req = this.requests[i]; for (j = 0; j < this.expectedRequests.length; j++) { expectedReq = this.expectedRequests[j]; - if (path && path !== expectedReq.path) { continue; } + if (path && path !== expectedReq.path) { + continue; + } if (expectedReq.method === req.method && req.path.indexOf(expectedReq.path) !== -1) { if (!expectedReq.data || (JSON.stringify(expectedReq.data) === @@ -114,12 +126,12 @@ HttpBackend.prototype = { } testResponse = matchingReq.response; console.log(" responding to %s", matchingReq.path); - var body = testResponse.body; + let body = testResponse.body; if (Object.prototype.toString.call(body) == "[object Function]") { body = body(req.path, req.data); } req.callback( - testResponse.err, testResponse.response, body + testResponse.err, testResponse.response, body, ); matchingReq = null; } @@ -134,10 +146,10 @@ HttpBackend.prototype = { * Makes sure that the SDK hasn't sent any more requests to the backend. */ verifyNoOutstandingRequests: function() { - var firstOutstandingReq = this.requests[0] || {}; + const firstOutstandingReq = this.requests[0] || {}; expect(this.requests.length).toEqual(0, "Expected no more HTTP requests but received request to " + - firstOutstandingReq.path + firstOutstandingReq.path, ); }, @@ -145,12 +157,9 @@ HttpBackend.prototype = { * Makes sure that the test doesn't have any unresolved requests. */ verifyNoOutstandingExpectation: function() { - var firstOutstandingExpectation = this.expectedRequests[0] || {}; - expect(this.expectedRequests.length).toEqual( - 0, - "Expected to see HTTP request for " - + firstOutstandingExpectation.method - + " " + firstOutstandingExpectation.path + const firstOutstandingExpectation = this.expectedRequests[0] || {}; + expect(this.expectedRequests.length).toEqual(0, + "Expected to see HTTP request for " + firstOutstandingExpectation.path, ); }, @@ -162,22 +171,32 @@ HttpBackend.prototype = { * @return {Request} An expected request. */ when: function(method, path, data) { - var pendingReq = new Request(method, path, data); + const pendingReq = new ExpectedRequest(method, path, data); this.expectedRequests.push(pendingReq); return pendingReq; - } + }, }; -function Request(method, path, data, queryParams) { +/** + * Represents the expectation of a request. + * + * <p>Includes the conditions to be matched against, the checks to be made, + * and the response to be returned. + * + * @constructor + * @param {string} method + * @param {string} path + * @param {object?} data + */ +function ExpectedRequest(method, path, data) { this.method = method; this.path = path; this.data = data; - this.queryParams = queryParams; - this.callback = null; this.response = null; this.checks = []; } -Request.prototype = { + +ExpectedRequest.prototype = { /** * Execute a check when this request has been satisfied. * @param {Function} fn The function to execute. @@ -198,10 +217,10 @@ Request.prototype = { this.response = { response: { statusCode: code, - headers: {} + headers: {}, }, body: data, - err: null + err: null, }; }, @@ -214,14 +233,62 @@ Request.prototype = { this.response = { response: { statusCode: code, - headers: {} + headers: {}, }, body: null, - err: err + err: err, }; }, }; +/** + * Represents a request made by the app. + * + * @constructor + * @param {object} opts opts passed to request() + * @param {function} callback + */ +function Request(opts, callback) { + this.opts = opts; + this.callback = callback; + + Object.defineProperty(this, 'method', { + get: function() { + return opts.method; + }, + }); + + Object.defineProperty(this, 'path', { + get: function() { + return opts.uri; + }, + }); + + Object.defineProperty(this, 'data', { + get: function() { + return opts.body; + }, + }); + + Object.defineProperty(this, 'queryParams', { + get: function() { + return opts.qs; + }, + }); + + Object.defineProperty(this, 'headers', { + get: function() { + return opts.headers || {}; + }, + }); +} + +Request.prototype = { + toString: function() { + return this.method + " " + this.path; + }, +}; + /** * The HttpBackend class. */ From f60773ae1fdc5494d39988396f51a7b389206050 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <richard@matrix.org> Date: Thu, 18 May 2017 13:37:23 +0100 Subject: [PATCH 040/147] mock-request: improve logging attempt to make the logging a bit more comprehensible --- test/mock-request.js | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/test/mock-request.js b/test/mock-request.js index e4a929a6..0ebabb03 100644 --- a/test/mock-request.js +++ b/test/mock-request.js @@ -13,7 +13,7 @@ function HttpBackend() { // the request function dependency that the SDK needs. this.requestFn = function(opts, callback) { const req = new Request(opts, callback); - console.log("HTTP backend received request: %s", req); + console.log("HTTP backend received request: " + req); self.requests.push(req); const abort = function() { @@ -51,20 +51,23 @@ HttpBackend.prototype = { waitTime = 5; } console.log( - "HTTP backend flushing... (path=%s numToFlush=%s waitTime=%s)", - path, numToFlush, waitTime, + "HTTP backend flushing... (path=" + path + + " numToFlush=" + numToFlush + + " waitTime=" + waitTime + + ")", ); const tryFlush = function() { // if there's more real requests and more expected requests, flush 'em. console.log( - " trying to flush queue => reqs=[%s] expected=[%s]", - self.requests, self.expectedRequests.map((er) => er.path), + " trying to flush queue => reqs=[" + self.requests + + "] expected=[" + self.expectedRequests + + "]", ); if (self._takeFromQueue(path)) { // try again on the next tick. flushed += 1; if (numToFlush && flushed === numToFlush) { - console.log(" Flushed assigned amount: %s", numToFlush); + console.log(" Flushed assigned amount:", numToFlush); defer.resolve(flushed); } else { console.log(" flushed. Trying for more."); @@ -73,10 +76,20 @@ HttpBackend.prototype = { } else if (flushed === 0 && !triedWaiting) { // we may not have made the request yet, wait a generous amount of // time before giving up. + console.log( + " nothing to flush yet; waiting " + waitTime + + "ms for requests.") setTimeout(tryFlush, waitTime); triedWaiting = true; } else { - console.log(" no more flushes."); + if (flushed === 0) { + console.log(" nothing to flush; giving up"); + } else { + console.log( + " no more flushes after flushing", flushed, + "requests", + ); + } defer.resolve(flushed); } }; @@ -197,6 +210,10 @@ function ExpectedRequest(method, path, data) { } ExpectedRequest.prototype = { + toString: function() { + return this.method + " " + this.path + }, + /** * Execute a check when this request has been satisfied. * @param {Function} fn The function to execute. From f16086bbea481b1d6bb97644ea805d74e7a473f1 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <richard@matrix.org> Date: Thu, 18 May 2017 13:39:33 +0100 Subject: [PATCH 041/147] Attempt to deflakify joining test give the client a bit longer to get started. --- test/app-tests/joining.js | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/test/app-tests/joining.js b/test/app-tests/joining.js index 76d90ce8..7aaaaec8 100644 --- a/test/app-tests/joining.js +++ b/test/app-tests/joining.js @@ -74,7 +74,6 @@ describe('joining a room', function () { httpBackend.when('GET', '/pushrules').respond(200, {}); httpBackend.when('POST', '/filter').respond(200, { filter_id: 'fid' }); - httpBackend.when('GET', '/sync').respond(200, {}); // note that we deliberately do *not* set an expectation for a // presence update - setting one makes the first httpBackend.flush @@ -86,7 +85,11 @@ describe('joining a room', function () { localStorage.setItem("mx_access_token", ACCESS_TOKEN ); localStorage.setItem("mx_user_id", USER_ID); - var mc = <MatrixChat config={{}}/>; + var mc = ( + <MatrixChat config={{}} + makeRegistrationUrl={()=>{throw new Error("unimplemented");}} + /> + ); matrixChat = ReactDOM.render(mc, parentDiv); // switch to the Directory @@ -94,10 +97,24 @@ describe('joining a room', function () { var roomView; - // wait for /sync to happen - return q.delay(1).then(() => { - return httpBackend.flush(); - }).then(() => { + // wait for /sync to happen. This may take some time, as the client + // has to initialise indexeddb. + console.log("waiting for /sync"); + let syncDone = false; + httpBackend.when('GET', '/sync') + .check((r) => {syncDone = true;}) + .respond(200, {}); + function awaitSync(attempts) { + if (syncDone) { + return q(); + } + if (!attempts) { + throw new Error("Gave up waiting for /sync") + } + return httpBackend.flush().then(() => awaitSync(attempts-1)); + } + + return awaitSync(10).then(() => { // wait for the directory requests httpBackend.when('POST', '/publicRooms').respond(200, {chunk: []}); httpBackend.when('GET', '/thirdparty/protocols').respond(200, {}); From 86055bc476ae46139bbe386b993aa8c8962e5899 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <richard@matrix.org> Date: Thu, 18 May 2017 13:41:54 +0100 Subject: [PATCH 042/147] Fix some setState-after-unmount in roomdirectory Give the RoomDirectory and unmounted guard, and use it to avoid some setState warnings. Also, cancel the filterTimeout (no point in leaving it around). There are still plenty of other opportunities to setState after unmount, but the filterTimeout was causing noise in the test. --- src/components/structures/RoomDirectory.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/components/structures/RoomDirectory.js b/src/components/structures/RoomDirectory.js index 91046959..523ee56e 100644 --- a/src/components/structures/RoomDirectory.js +++ b/src/components/structures/RoomDirectory.js @@ -60,6 +60,7 @@ module.exports = React.createClass({ }, componentWillMount: function() { + this._unmounted = false; this.nextBatch = null; this.filterTimeout = null; this.scrollPanel = null; @@ -97,6 +98,10 @@ module.exports = React.createClass({ // sideOpacity: 1.0, // middleOpacity: 1.0, // }); + if (this.filterTimeout) { + clearTimeout(this.filterTimeout); + } + this._unmounted = true; }, refreshRoomList: function() { @@ -139,6 +144,11 @@ module.exports = React.createClass({ return; } + if (this._unmounted) { + // if we've been unmounted, we don't care either. + return; + } + this.nextBatch = data.next_batch; this.setState((s) => { s.publicRooms.push(...data.chunk); @@ -156,6 +166,12 @@ module.exports = React.createClass({ // requests either return; } + + if (this._unmounted) { + // if we've been unmounted, we don't care either. + return; + } + this.setState({ loading: false }); console.error("Failed to get publicRooms: %s", JSON.stringify(err)); var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); From 1460eae2807d184e6738469bf71db8c93cfb32f8 Mon Sep 17 00:00:00 2001 From: Luke Barnard <lukeb@openmarket.com> Date: Thu, 18 May 2017 13:43:21 +0100 Subject: [PATCH 043/147] Change background colour of login country dd to white --- .../vector/css/matrix-react-sdk/structures/login/_Login.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss index 1a13fab7..dc7abc4b 100644 --- a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss +++ b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss @@ -242,6 +242,7 @@ limitations under the License. /* To override mx_Login_field_prefix */ text-align: left; padding: 0px; + background-color: $primary-bg-color; } .mx_Login_field_prefix .mx_Dropdown_input { From d0adfb64697cc6d1e87c50aecc204425d6927a9c Mon Sep 17 00:00:00 2001 From: Luke Barnard <lukeb@openmarket.com> Date: Thu, 18 May 2017 14:03:27 +0100 Subject: [PATCH 044/147] CSS for left_aligned Dropdowns, and adjustments for Country dd in Login --- .../css/matrix-react-sdk/structures/login/_Login.scss | 2 +- .../css/matrix-react-sdk/views/elements/_Dropdown.scss | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss index dc7abc4b..ebd59a1c 100644 --- a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss +++ b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss @@ -237,7 +237,7 @@ limitations under the License. .mx_Login_phoneCountry { margin-bottom: 14px; - width: 145px; + width: 150px; /* To override mx_Login_field_prefix */ text-align: left; diff --git a/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss b/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss index 5e4b9f39..637c5d12 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/elements/_Dropdown.scss @@ -48,6 +48,14 @@ limitations under the License. width: 0 } +.mx_Dropdown.left_aligned .mx_Dropdown_arrow { + left: 10px; +} + +.mx_Dropdown.left_aligned .mx_Dropdown_input > .mx_Dropdown_option { + padding-left: 25px; +} + .mx_Dropdown_option { height: 35px; line-height: 35px; From 7777be89ee0ec9f5e268695fc7d1233b8eb2ab0f Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 18 May 2017 23:53:37 +0100 Subject: [PATCH 045/147] only for finalised events Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/components/views/context_menus/MessageContextMenu.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/views/context_menus/MessageContextMenu.js b/src/components/views/context_menus/MessageContextMenu.js index 002ec5bc..ffedbcad 100644 --- a/src/components/views/context_menus/MessageContextMenu.js +++ b/src/components/views/context_menus/MessageContextMenu.js @@ -151,11 +151,9 @@ module.exports = React.createClass({ ); } - if (this.props.mxEvent.getType() === 'm.room.message') { + if (!eventStatus && this.props.mxEvent.getType() === 'm.room.message') { const content = this.props.mxEvent.getContent(); - if (content.msgtype // truthy check msgtype - && content.msgtype !== 'm.bad.encrypted' - && content.hasOwnProperty('body')) { + if (content.msgtype && content.msgtype !== 'm.bad.encrypted' && content.hasOwnProperty('body')) { forwardButton = ( <div className="mx_MessageContextMenu_field" onClick={this.onForwardClick}> Forward Message From 09f987559b0209956b97f84bb21c857074ec31f0 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 19 May 2017 01:30:36 +0100 Subject: [PATCH 046/147] rename action, now forwarding any event is possible, limited by where button is shown, i.e easy to modify Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/components/views/context_menus/MessageContextMenu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/views/context_menus/MessageContextMenu.js b/src/components/views/context_menus/MessageContextMenu.js index ffedbcad..5f8cf688 100644 --- a/src/components/views/context_menus/MessageContextMenu.js +++ b/src/components/views/context_menus/MessageContextMenu.js @@ -90,8 +90,8 @@ module.exports = React.createClass({ onForwardClick: function() { dis.dispatch({ - action: 'forward_message', - content: this.props.mxEvent.getContent(), + action: 'forward_event', + content: this.props.mxEvent, }); this.closeMenu(); }, From c0c1972d560ef8a4e5b2221a6394646f74ac51d4 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 19 May 2017 10:40:44 +0100 Subject: [PATCH 047/147] Released js-sdk & react-sdk --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index dd25bf64..69da99a4 100644 --- a/package.json +++ b/package.json @@ -65,8 +65,8 @@ "gfm.css": "^1.1.1", "highlight.js": "^9.0.0", "linkifyjs": "^2.1.3", - "matrix-js-sdk": "matrix-org/matrix-js-sdk#develop", - "matrix-react-sdk": "matrix-org/matrix-react-sdk#develop", + "matrix-js-sdk": "0.7.8-rc.1", + "matrix-react-sdk": "0.8.9-rc.1", "modernizr": "^3.1.0", "pako": "^1.0.5", "q": "^1.4.1", From 029dfe5ed0d0b815d1b0f7c6be80d3cf57bf6ff0 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 19 May 2017 10:41:22 +0100 Subject: [PATCH 048/147] v0.9.10-rc.1 --- electron_app/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron_app/package.json b/electron_app/package.json index 99651cc1..abb813eb 100644 --- a/electron_app/package.json +++ b/electron_app/package.json @@ -2,7 +2,7 @@ "name": "riot-web", "productName": "Riot", "main": "src/electron-main.js", - "version": "0.9.9", + "version": "0.9.10-rc.1", "description": "A feature-rich client for Matrix.org", "author": "Vector Creations Ltd.", "dependencies": { From 3a44cb65b75d8ed365485a65eb657a148a23e5a2 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 19 May 2017 10:43:10 +0100 Subject: [PATCH 049/147] Prepare changelog for v0.9.10-rc.1 --- CHANGELOG.md | 101 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea63ee66..d9512ad7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,104 @@ +Changes in [0.9.10-rc.1](https://github.com/vector-im/riot-web/releases/tag/v0.9.10-rc.1) (2017-05-19) +====================================================================================================== +[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.9.9...v0.9.10-rc.1) + + * CSS for left_aligned Dropdowns, and adjustments for Country dd in Login + [\#3959](https://github.com/vector-im/riot-web/pull/3959) + * Add square flag pngs /w genflags.sh script + [\#3953](https://github.com/vector-im/riot-web/pull/3953) + * Add config for riot-bot on desktop app build + [\#3954](https://github.com/vector-im/riot-web/pull/3954) + * Desktop: 'copy link address' + [\#3952](https://github.com/vector-im/riot-web/pull/3952) + * Reduce rageshake log size to 1MB + [\#3943](https://github.com/vector-im/riot-web/pull/3943) + * CSS for putting country dd on same line as phone input + [\#3942](https://github.com/vector-im/riot-web/pull/3942) + * fix #3894 + [\#3919](https://github.com/vector-im/riot-web/pull/3919) + * change vector->riot on the surface + [\#3894](https://github.com/vector-im/riot-web/pull/3894) + * move manifest.json outward so it is scoped properly + [\#3888](https://github.com/vector-im/riot-web/pull/3888) + * add to manifest + [\#3799](https://github.com/vector-im/riot-web/pull/3799) + * Automatically update component-index + [\#3886](https://github.com/vector-im/riot-web/pull/3886) + * move electron -> electron_app because npm smart + [\#3877](https://github.com/vector-im/riot-web/pull/3877) + * Fix bug report endpoint in config.sample.json. + [\#3863](https://github.com/vector-im/riot-web/pull/3863) + * Update 2 missed icons to the new icon + [\#3851](https://github.com/vector-im/riot-web/pull/3851) + * Make left panel better for new users (mk II) + [\#3804](https://github.com/vector-im/riot-web/pull/3804) + * match primary package.json + [\#3839](https://github.com/vector-im/riot-web/pull/3839) + * Re-add productName + [\#3829](https://github.com/vector-im/riot-web/pull/3829) + * Remove leading v in /version file, for SemVer and to match Electron ver + [\#3683](https://github.com/vector-im/riot-web/pull/3683) + * Fix scope of callback + [\#3790](https://github.com/vector-im/riot-web/pull/3790) + * Remember and Recall window layout/position state + [\#3622](https://github.com/vector-im/riot-web/pull/3622) + * Remove babelcheck + [\#3808](https://github.com/vector-im/riot-web/pull/3808) + * Include MXID and device id in rageshakes + [\#3809](https://github.com/vector-im/riot-web/pull/3809) + * import Modal + [\#3791](https://github.com/vector-im/riot-web/pull/3791) + * Pin filesize ver to fix break upstream + [\#3775](https://github.com/vector-im/riot-web/pull/3775) + * Improve Room Directory Look & Feel + [\#3751](https://github.com/vector-im/riot-web/pull/3751) + * Fix emote RRs alignment + [\#3742](https://github.com/vector-im/riot-web/pull/3742) + * Remove unused `placeholder` prop on RoomDropTarget + [\#3741](https://github.com/vector-im/riot-web/pull/3741) + * Modify CSS for matrix-org/matrix-react-sdk#833 + [\#3732](https://github.com/vector-im/riot-web/pull/3732) + * Warn when exiting due to single-instance + [\#3727](https://github.com/vector-im/riot-web/pull/3727) + * Electron forgets it was maximized when you click on a notification + [\#3709](https://github.com/vector-im/riot-web/pull/3709) + * CSS to make h1 and h2 the same size as h1. + [\#3719](https://github.com/vector-im/riot-web/pull/3719) + * Prevent long room names/topics from pushing UI of the screen + [\#3721](https://github.com/vector-im/riot-web/pull/3721) + * Disable dropdown highlight on focus + [\#3717](https://github.com/vector-im/riot-web/pull/3717) + * Escape HTML Tags from Linux Notifications (electron) + [\#3564](https://github.com/vector-im/riot-web/pull/3564) + * styling for spoilerized access token view in Settings + [\#3651](https://github.com/vector-im/riot-web/pull/3651) + * Fix Webpack conf + [\#3690](https://github.com/vector-im/riot-web/pull/3690) + * Add config.json to .gitignore + [\#3599](https://github.com/vector-im/riot-web/pull/3599) + * add command line arg (--hidden) for electron app + [\#3641](https://github.com/vector-im/riot-web/pull/3641) + * fix ImageView Download functionality + [\#3640](https://github.com/vector-im/riot-web/pull/3640) + * Add cross-env into the mix + [\#3693](https://github.com/vector-im/riot-web/pull/3693) + * Remember acceptance for unsupported browsers. + [\#3694](https://github.com/vector-im/riot-web/pull/3694) + * Cosmetics to go with matrix-org/matrix-react-sdk#811 + [\#3692](https://github.com/vector-im/riot-web/pull/3692) + * Cancel quicksearch on ESC + [\#3680](https://github.com/vector-im/riot-web/pull/3680) + * Optimise RoomList and implement quick-search functionality on it. + [\#3654](https://github.com/vector-im/riot-web/pull/3654) + * Progress updates for rageshake uploads + [\#3648](https://github.com/vector-im/riot-web/pull/3648) + * Factor out rageshake upload to a separate file + [\#3645](https://github.com/vector-im/riot-web/pull/3645) + * rageshake: fix race when collecting logs + [\#3644](https://github.com/vector-im/riot-web/pull/3644) + * Fix a flaky test + [\#3649](https://github.com/vector-im/riot-web/pull/3649) + Changes in [0.9.9](https://github.com/vector-im/riot-web/releases/tag/v0.9.9) (2017-04-25) ========================================================================================== [Full Changelog](https://github.com/vector-im/riot-web/compare/v0.9.9-rc.2...v0.9.9) From da14d7eb8c261e8983e9dde13d4864d9543f8f82 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 19 May 2017 10:43:11 +0100 Subject: [PATCH 050/147] v0.9.10-rc.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 69da99a4..620d52b0 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "riot-web", "productName": "Riot", "main": "electron_app/src/electron-main.js", - "version": "0.9.9", + "version": "0.9.10-rc.1", "description": "A feature-rich client for Matrix.org", "author": "Vector Creations Ltd.", "repository": { From 76bf869d8766d50c326ebaca2b3ffb6d51e5d507 Mon Sep 17 00:00:00 2001 From: Luke Barnard <lukeb@openmarket.com> Date: Fri, 19 May 2017 11:19:30 +0100 Subject: [PATCH 051/147] Add type="text/css" to SVG logos Without this, SVG renderers may not pick up the CSS in the SVGs at all, as is the case with librsvg. --- src/skins/vector/img/logos/riot-logo-1.svg | 2 +- src/skins/vector/img/logos/riot-logo-2.svg | 2 +- src/skins/vector/img/logos/riot-logo-3.svg | 2 +- src/skins/vector/img/logos/riot-logo-4.svg | 2 +- src/skins/vector/img/logos/riot-logo-5.svg | 2 +- src/skins/vector/img/logos/riot-logo-bw.svg | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/skins/vector/img/logos/riot-logo-1.svg b/src/skins/vector/img/logos/riot-logo-1.svg index 6b79dd9e..297608b8 100644 --- a/src/skins/vector/img/logos/riot-logo-1.svg +++ b/src/skins/vector/img/logos/riot-logo-1.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 174.99 143.93"><defs><style>.cls-1{fill:#764d80;}.cls-2{fill:#7dc8a2;}.cls-3{fill:#afdbc5;}</style></defs><title>Asset 4</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path class="cls-1" d="M146.53,51.12h25.61a2.57,2.57,0,0,0,0-5.14H146.53a2.57,2.57,0,0,0,0,5.14Z"/><path class="cls-1" d="M146.53,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,0,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,172.14,0H146.53a2.57,2.57,0,0,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path class="cls-1" d="M172.14,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23A2.57,2.57,0,0,0,144,131h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,172.14,118.28Z"/><path class="cls-1" d="M159.34,72.63A15.65,15.65,0,1,0,175,88.28,15.67,15.67,0,0,0,159.34,72.63Zm0,26.16a10.51,10.51,0,1,1,10.51-10.51A10.52,10.52,0,0,1,159.34,98.79Z"/><path class="cls-2" d="M62.33,0H21.22A20.56,20.56,0,0,0,.66,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H62.33A51.38,51.38,0,0,0,62.33,0Z"/><path class="cls-3" d="M21.22,138.81A15.45,15.45,0,0,1,5.79,123.37V20.57A15.45,15.45,0,0,1,21.09,5.14H62.33a46.26,46.26,0,0,1,0,92.51H36.65v25.71A15.45,15.45,0,0,1,21.22,138.81Z"/><path class="cls-2" d="M21.22,133.68a10.32,10.32,0,0,1-10.3-10.3V20.57A10.33,10.33,0,0,1,21,10.27H62.33a41.13,41.13,0,0,1,0,82.26H31.52v30.84A10.32,10.32,0,0,1,21.22,133.68Z"/><path class="cls-3" d="M21.22,128.55A5.18,5.18,0,0,1,16,123.37V20.57a5.2,5.2,0,0,1,5-5.17H62.33a36,36,0,0,1,0,72H26.39v36A5.18,5.18,0,0,1,21.22,128.55Z"/><path class="cls-2" d="M21.27,82.28H62.33a30.87,30.87,0,0,0,0-61.75H21.22Z"/><path class="cls-3" d="M26.39,77.15l0-51.49h36a25.75,25.75,0,0,1,0,51.49Z"/><path class="cls-2" d="M31.51,72l0-41.23H62.33a20.62,20.62,0,0,1,0,41.23Z"/><path class="cls-3" d="M36.64,66.9l0-31H62.33a15.49,15.49,0,0,1,0,31Z"/><path class="cls-2" d="M41.76,61.77l0-20.72H62.33a10.36,10.36,0,0,1,0,20.72Z"/><path class="cls-3" d="M46.89,56.64V46.18H62.33a5.23,5.23,0,0,1,0,10.47Z"/><circle class="cls-1" cx="20.56" cy="20.57" r="20.56" transform="translate(-8.08 15.51) rotate(-35)"/><path class="cls-1" d="M109.34,111.57a20.56,20.56,0,1,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.55,67.58Z"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 174.99 143.93"><defs><style type="text/css">.cls-1{fill:#764d80;}.cls-2{fill:#7dc8a2;}.cls-3{fill:#afdbc5;}</style></defs><title>Asset 4</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path class="cls-1" d="M146.53,51.12h25.61a2.57,2.57,0,0,0,0-5.14H146.53a2.57,2.57,0,0,0,0,5.14Z"/><path class="cls-1" d="M146.53,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,0,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,172.14,0H146.53a2.57,2.57,0,0,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path class="cls-1" d="M172.14,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23A2.57,2.57,0,0,0,144,131h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,172.14,118.28Z"/><path class="cls-1" d="M159.34,72.63A15.65,15.65,0,1,0,175,88.28,15.67,15.67,0,0,0,159.34,72.63Zm0,26.16a10.51,10.51,0,1,1,10.51-10.51A10.52,10.52,0,0,1,159.34,98.79Z"/><path class="cls-2" d="M62.33,0H21.22A20.56,20.56,0,0,0,.66,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H62.33A51.38,51.38,0,0,0,62.33,0Z"/><path class="cls-3" d="M21.22,138.81A15.45,15.45,0,0,1,5.79,123.37V20.57A15.45,15.45,0,0,1,21.09,5.14H62.33a46.26,46.26,0,0,1,0,92.51H36.65v25.71A15.45,15.45,0,0,1,21.22,138.81Z"/><path class="cls-2" d="M21.22,133.68a10.32,10.32,0,0,1-10.3-10.3V20.57A10.33,10.33,0,0,1,21,10.27H62.33a41.13,41.13,0,0,1,0,82.26H31.52v30.84A10.32,10.32,0,0,1,21.22,133.68Z"/><path class="cls-3" d="M21.22,128.55A5.18,5.18,0,0,1,16,123.37V20.57a5.2,5.2,0,0,1,5-5.17H62.33a36,36,0,0,1,0,72H26.39v36A5.18,5.18,0,0,1,21.22,128.55Z"/><path class="cls-2" d="M21.27,82.28H62.33a30.87,30.87,0,0,0,0-61.75H21.22Z"/><path class="cls-3" d="M26.39,77.15l0-51.49h36a25.75,25.75,0,0,1,0,51.49Z"/><path class="cls-2" d="M31.51,72l0-41.23H62.33a20.62,20.62,0,0,1,0,41.23Z"/><path class="cls-3" d="M36.64,66.9l0-31H62.33a15.49,15.49,0,0,1,0,31Z"/><path class="cls-2" d="M41.76,61.77l0-20.72H62.33a10.36,10.36,0,0,1,0,20.72Z"/><path class="cls-3" d="M46.89,56.64V46.18H62.33a5.23,5.23,0,0,1,0,10.47Z"/><circle class="cls-1" cx="20.56" cy="20.57" r="20.56" transform="translate(-8.08 15.51) rotate(-35)"/><path class="cls-1" d="M109.34,111.57a20.56,20.56,0,1,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.55,67.58Z"/></g></g></svg> \ No newline at end of file diff --git a/src/skins/vector/img/logos/riot-logo-2.svg b/src/skins/vector/img/logos/riot-logo-2.svg index 96e0bbb1..757f6230 100644 --- a/src/skins/vector/img/logos/riot-logo-2.svg +++ b/src/skins/vector/img/logos/riot-logo-2.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 174.36 143.93"><defs><style>.cls-1{fill:#764d80;}.cls-2{fill:#f69e98;}</style></defs><title>Asset 2</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path class="cls-1" d="M61.67,0H20.56A20.56,20.56,0,0,0,0,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H61.67A51.38,51.38,0,0,0,61.67,0Z"/><path class="cls-2" d="M20.56,139.54A16.19,16.19,0,0,1,4.39,123.37V20.57a16.21,16.21,0,0,1,16-16.17H61.67a47,47,0,0,1,0,94H36.73v25A16.19,16.19,0,0,1,20.56,139.54ZM20.39,5.9A14.7,14.7,0,0,0,5.89,20.57v102.8a14.67,14.67,0,0,0,29.34,0V96.9H61.67a45.49,45.49,0,0,0,0-91H20.39Z"/><path class="cls-2" d="M20.56,134.4a11,11,0,0,1-11-11V20.57a11.09,11.09,0,0,1,10.79-11H61.67a41.85,41.85,0,0,1,0,83.7H31.59v30.11A11,11,0,0,1,20.56,134.4ZM20.3,11A9.57,9.57,0,0,0,11,20.57v102.8a9.53,9.53,0,1,0,19.05,0V91.75H61.67a40.35,40.35,0,0,0,0-80.7H20.3Z"/><path class="cls-2" d="M20.56,129.25a5.89,5.89,0,0,1-5.88-5.88V20.57a5.94,5.94,0,0,1,5.61-5.88H61.67a36.71,36.71,0,0,1,0,73.42H26.44v35.25A5.89,5.89,0,0,1,20.56,129.25ZM20.31,16.19a4.42,4.42,0,0,0-4.13,4.38v102.8a4.38,4.38,0,0,0,8.77,0V86.61H61.67a35.21,35.21,0,0,0,0-70.42Z"/><path class="cls-2" d="M61.67,83H19.81V19.83H61.67a31.57,31.57,0,0,1,0,63.14Zm-40.36-1.5H61.67a30.07,30.07,0,0,0,0-60.14H21.32Z"/><path class="cls-2" d="M61.67,77.83H25V25H61.67a26.43,26.43,0,0,1,0,52.85Zm-35.22-1.5H61.67a24.93,24.93,0,0,0,0-49.85H26.46Z"/><path class="cls-2" d="M61.67,72.69H30.1V30.12H61.67a21.29,21.29,0,0,1,0,42.57ZM31.6,71.19H61.67a19.79,19.79,0,0,0,0-39.57H31.6Z"/><path class="cls-2" d="M61.67,67.55H35.24V35.26H61.67a16.14,16.14,0,0,1,0,32.29ZM36.74,66H61.67a14.64,14.64,0,0,0,0-29.29H36.74Z"/><path class="cls-2" d="M61.67,62.41H40.38v-22H61.67a11,11,0,0,1,0,22Zm-19.79-1.5H61.67a9.5,9.5,0,0,0,0-19H41.88Z"/><path class="cls-2" d="M61.67,57.26H45.52V45.54H61.67a5.86,5.86,0,0,1,0,11.72ZM47,55.76H61.67a4.36,4.36,0,0,0,0-8.72H47Z"/><path class="cls-2" d="M61.18,52.16H51.89a.75.75,0,1,1,0-1.5h9.29a.75.75,0,0,1,0,1.5Z"/><path class="cls-2" d="M20.56,124.12a.75.75,0,0,1-.75-.75v-36a.75.75,0,0,1,1.5,0v36A.75.75,0,0,1,20.56,124.12Z"/><circle class="cls-2" cx="20.59" cy="20.57" r="20.56" transform="translate(-8.07 15.53) rotate(-35)"/><path class="cls-2" d="M109.36,111.56a20.56,20.56,0,1,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.58,67.57Z"/><path class="cls-2" d="M145.91,51.12h25.61a2.57,2.57,0,0,0,0-5.14H145.91a2.57,2.57,0,1,0,0,5.14Z"/><path class="cls-2" d="M145.91,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,0,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,171.51,0H145.91a2.57,2.57,0,1,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path class="cls-2" d="M171.51,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23a2.57,2.57,0,0,0-2.57,2.57h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,171.51,118.28Z"/><path class="cls-2" d="M158.71,72.63a15.65,15.65,0,1,0,15.65,15.65A15.67,15.67,0,0,0,158.71,72.63Zm0,26.16a10.51,10.51,0,1,1,10.51-10.51A10.52,10.52,0,0,1,158.71,98.79Z"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 174.36 143.93"><defs><style type="text/css">.cls-1{fill:#764d80;}.cls-2{fill:#f69e98;}</style></defs><title>Asset 2</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path class="cls-1" d="M61.67,0H20.56A20.56,20.56,0,0,0,0,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H61.67A51.38,51.38,0,0,0,61.67,0Z"/><path class="cls-2" d="M20.56,139.54A16.19,16.19,0,0,1,4.39,123.37V20.57a16.21,16.21,0,0,1,16-16.17H61.67a47,47,0,0,1,0,94H36.73v25A16.19,16.19,0,0,1,20.56,139.54ZM20.39,5.9A14.7,14.7,0,0,0,5.89,20.57v102.8a14.67,14.67,0,0,0,29.34,0V96.9H61.67a45.49,45.49,0,0,0,0-91H20.39Z"/><path class="cls-2" d="M20.56,134.4a11,11,0,0,1-11-11V20.57a11.09,11.09,0,0,1,10.79-11H61.67a41.85,41.85,0,0,1,0,83.7H31.59v30.11A11,11,0,0,1,20.56,134.4ZM20.3,11A9.57,9.57,0,0,0,11,20.57v102.8a9.53,9.53,0,1,0,19.05,0V91.75H61.67a40.35,40.35,0,0,0,0-80.7H20.3Z"/><path class="cls-2" d="M20.56,129.25a5.89,5.89,0,0,1-5.88-5.88V20.57a5.94,5.94,0,0,1,5.61-5.88H61.67a36.71,36.71,0,0,1,0,73.42H26.44v35.25A5.89,5.89,0,0,1,20.56,129.25ZM20.31,16.19a4.42,4.42,0,0,0-4.13,4.38v102.8a4.38,4.38,0,0,0,8.77,0V86.61H61.67a35.21,35.21,0,0,0,0-70.42Z"/><path class="cls-2" d="M61.67,83H19.81V19.83H61.67a31.57,31.57,0,0,1,0,63.14Zm-40.36-1.5H61.67a30.07,30.07,0,0,0,0-60.14H21.32Z"/><path class="cls-2" d="M61.67,77.83H25V25H61.67a26.43,26.43,0,0,1,0,52.85Zm-35.22-1.5H61.67a24.93,24.93,0,0,0,0-49.85H26.46Z"/><path class="cls-2" d="M61.67,72.69H30.1V30.12H61.67a21.29,21.29,0,0,1,0,42.57ZM31.6,71.19H61.67a19.79,19.79,0,0,0,0-39.57H31.6Z"/><path class="cls-2" d="M61.67,67.55H35.24V35.26H61.67a16.14,16.14,0,0,1,0,32.29ZM36.74,66H61.67a14.64,14.64,0,0,0,0-29.29H36.74Z"/><path class="cls-2" d="M61.67,62.41H40.38v-22H61.67a11,11,0,0,1,0,22Zm-19.79-1.5H61.67a9.5,9.5,0,0,0,0-19H41.88Z"/><path class="cls-2" d="M61.67,57.26H45.52V45.54H61.67a5.86,5.86,0,0,1,0,11.72ZM47,55.76H61.67a4.36,4.36,0,0,0,0-8.72H47Z"/><path class="cls-2" d="M61.18,52.16H51.89a.75.75,0,1,1,0-1.5h9.29a.75.75,0,0,1,0,1.5Z"/><path class="cls-2" d="M20.56,124.12a.75.75,0,0,1-.75-.75v-36a.75.75,0,0,1,1.5,0v36A.75.75,0,0,1,20.56,124.12Z"/><circle class="cls-2" cx="20.59" cy="20.57" r="20.56" transform="translate(-8.07 15.53) rotate(-35)"/><path class="cls-2" d="M109.36,111.56a20.56,20.56,0,1,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.58,67.57Z"/><path class="cls-2" d="M145.91,51.12h25.61a2.57,2.57,0,0,0,0-5.14H145.91a2.57,2.57,0,1,0,0,5.14Z"/><path class="cls-2" d="M145.91,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,0,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,171.51,0H145.91a2.57,2.57,0,1,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path class="cls-2" d="M171.51,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23a2.57,2.57,0,0,0-2.57,2.57h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,171.51,118.28Z"/><path class="cls-2" d="M158.71,72.63a15.65,15.65,0,1,0,15.65,15.65A15.67,15.67,0,0,0,158.71,72.63Zm0,26.16a10.51,10.51,0,1,1,10.51-10.51A10.52,10.52,0,0,1,158.71,98.79Z"/></g></g></svg> \ No newline at end of file diff --git a/src/skins/vector/img/logos/riot-logo-3.svg b/src/skins/vector/img/logos/riot-logo-3.svg index 985b9c9f..d71b489a 100644 --- a/src/skins/vector/img/logos/riot-logo-3.svg +++ b/src/skins/vector/img/logos/riot-logo-3.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 174.99 143.93"><defs><style>.cls-1{fill:#fac79e;}.cls-2{fill:#e45e5d;}.cls-3{fill:#f8a05f;}</style></defs><title>Asset 5</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path class="cls-1" d="M146.53,51.12h25.61a2.57,2.57,0,0,0,0-5.14H146.53a2.57,2.57,0,0,0,0,5.14Z"/><path class="cls-1" d="M146.53,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,0,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,172.14,0H146.53a2.57,2.57,0,0,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path class="cls-1" d="M172.14,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23A2.57,2.57,0,0,0,144,131h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,172.14,118.28Z"/><path class="cls-1" d="M159.34,72.63A15.65,15.65,0,1,0,175,88.28,15.67,15.67,0,0,0,159.34,72.63Zm0,26.16a10.51,10.51,0,1,1,10.51-10.51A10.52,10.52,0,0,1,159.34,98.79Z"/><path class="cls-2" d="M61.67,0H20.56A20.56,20.56,0,0,0,0,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H61.67A51.38,51.38,0,0,0,61.67,0Z"/><polygon class="cls-3" points="47.03 0.01 40.32 0.01 0 48.06 0 56.05 47.03 0.01"/><polygon class="cls-3" points="60.45 0.01 53.74 0.01 0 64.05 0 72.04 60.45 0.01"/><path class="cls-3" d="M72.83,1.24a51,51,0,0,0-5.9-1L0,80v8Z"/><polygon class="cls-3" points="33.61 0.01 26.9 0.01 0 32.06 0 40.06 33.61 0.01"/><path class="cls-3" d="M83.27,4.78a51,51,0,0,0-5-2L0,96v8Z"/><path class="cls-3" d="M41.12,102.78h.18l64.78-77.2a51.55,51.55,0,0,0-2.94-4.49L5.55,137.38a20.62,20.62,0,0,0,3.95,3.29L41.12,103Z"/><path class="cls-3" d="M112.22,42.23l-50.8,60.54h.25a51.55,51.55,0,0,0,6.85-.47L113,49.3A51.32,51.32,0,0,0,112.22,42.23Z"/><path class="cls-3" d="M40.71,127.46l-12.59,15A20.58,20.58,0,0,0,40.71,127.46Z"/><path class="cls-3" d="M110,68.88a51,51,0,0,0,2.67-11.18L76.73,100.52a51.1,51.1,0,0,0,10.6-4.64Z"/><path class="cls-3" d="M92.22,10.1a51.58,51.58,0,0,0-4.3-2.87L0,112v8Z"/><path class="cls-3" d="M99.83,17q-1.73-1.92-3.64-3.66L.42,127.5a20.41,20.41,0,0,0,2,5.58Z"/><path class="cls-3" d="M41.12,119v-8l-26.82,32a20.53,20.53,0,0,0,5.9,1Z"/><path class="cls-3" d="M110.71,36a51,51,0,0,0-2.09-5.5L48,102.78h6.71Z"/><circle class="cls-1" cx="20.59" cy="20.57" r="20.56" transform="translate(-8.07 15.53) rotate(-35)"/><path class="cls-1" d="M109.36,111.56a20.56,20.56,0,1,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.58,67.57Z"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 174.99 143.93"><defs><style type="text/css">.cls-1{fill:#fac79e;}.cls-2{fill:#e45e5d;}.cls-3{fill:#f8a05f;}</style></defs><title>Asset 5</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path class="cls-1" d="M146.53,51.12h25.61a2.57,2.57,0,0,0,0-5.14H146.53a2.57,2.57,0,0,0,0,5.14Z"/><path class="cls-1" d="M146.53,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,0,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,172.14,0H146.53a2.57,2.57,0,0,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path class="cls-1" d="M172.14,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23A2.57,2.57,0,0,0,144,131h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,172.14,118.28Z"/><path class="cls-1" d="M159.34,72.63A15.65,15.65,0,1,0,175,88.28,15.67,15.67,0,0,0,159.34,72.63Zm0,26.16a10.51,10.51,0,1,1,10.51-10.51A10.52,10.52,0,0,1,159.34,98.79Z"/><path class="cls-2" d="M61.67,0H20.56A20.56,20.56,0,0,0,0,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H61.67A51.38,51.38,0,0,0,61.67,0Z"/><polygon class="cls-3" points="47.03 0.01 40.32 0.01 0 48.06 0 56.05 47.03 0.01"/><polygon class="cls-3" points="60.45 0.01 53.74 0.01 0 64.05 0 72.04 60.45 0.01"/><path class="cls-3" d="M72.83,1.24a51,51,0,0,0-5.9-1L0,80v8Z"/><polygon class="cls-3" points="33.61 0.01 26.9 0.01 0 32.06 0 40.06 33.61 0.01"/><path class="cls-3" d="M83.27,4.78a51,51,0,0,0-5-2L0,96v8Z"/><path class="cls-3" d="M41.12,102.78h.18l64.78-77.2a51.55,51.55,0,0,0-2.94-4.49L5.55,137.38a20.62,20.62,0,0,0,3.95,3.29L41.12,103Z"/><path class="cls-3" d="M112.22,42.23l-50.8,60.54h.25a51.55,51.55,0,0,0,6.85-.47L113,49.3A51.32,51.32,0,0,0,112.22,42.23Z"/><path class="cls-3" d="M40.71,127.46l-12.59,15A20.58,20.58,0,0,0,40.71,127.46Z"/><path class="cls-3" d="M110,68.88a51,51,0,0,0,2.67-11.18L76.73,100.52a51.1,51.1,0,0,0,10.6-4.64Z"/><path class="cls-3" d="M92.22,10.1a51.58,51.58,0,0,0-4.3-2.87L0,112v8Z"/><path class="cls-3" d="M99.83,17q-1.73-1.92-3.64-3.66L.42,127.5a20.41,20.41,0,0,0,2,5.58Z"/><path class="cls-3" d="M41.12,119v-8l-26.82,32a20.53,20.53,0,0,0,5.9,1Z"/><path class="cls-3" d="M110.71,36a51,51,0,0,0-2.09-5.5L48,102.78h6.71Z"/><circle class="cls-1" cx="20.59" cy="20.57" r="20.56" transform="translate(-8.07 15.53) rotate(-35)"/><path class="cls-1" d="M109.36,111.56a20.56,20.56,0,1,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.58,67.57Z"/></g></g></svg> \ No newline at end of file diff --git a/src/skins/vector/img/logos/riot-logo-4.svg b/src/skins/vector/img/logos/riot-logo-4.svg index 24a7ddab..aa5522f6 100644 --- a/src/skins/vector/img/logos/riot-logo-4.svg +++ b/src/skins/vector/img/logos/riot-logo-4.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 175.64 143.93"><defs><style>.cls-1{fill:#e45e5d;}.cls-2{fill:#c7bdcd;}.cls-3{fill:#f69e98;}</style></defs><title>Asset 3</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path class="cls-1" d="M61.67,0H20.56A20.56,20.56,0,0,0,0,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H61.67A51.38,51.38,0,0,0,61.67,0Z"/><path class="cls-2" d="M147.19,51.12h25.61a2.57,2.57,0,1,0,0-5.14H147.19a2.57,2.57,0,0,0,0,5.14Z"/><path class="cls-2" d="M147.19,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,0,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,172.79,0H147.19a2.57,2.57,0,0,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path class="cls-2" d="M172.79,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23a2.57,2.57,0,0,0-2.57,2.57h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,172.79,118.28Z"/><path class="cls-2" d="M160,72.63a15.65,15.65,0,1,0,15.65,15.65A15.67,15.67,0,0,0,160,72.63Zm0,26.16A10.51,10.51,0,1,1,170.5,88.28,10.52,10.52,0,0,1,160,98.79Z"/><path class="cls-3" d="M2.77,133.64A20.62,20.62,0,0,0,7,138.77H34.14a20.62,20.62,0,0,0,4.21-5.13Z"/><path class="cls-3" d="M0,92.52v5.14H84a51.48,51.48,0,0,0,8.41-5.14Z"/><rect class="cls-3" y="102.8" width="41.12" height="5.13"/><rect class="cls-3" y="113.08" width="41.12" height="5.14"/><path class="cls-3" d="M.68,15.41H98.3a51.8,51.8,0,0,0-5.86-5.14H2.78A20.41,20.41,0,0,0,.68,15.41Z"/><path class="cls-3" d="M0,123.36H0a20.53,20.53,0,0,0,.67,5.12H40.45a20.53,20.53,0,0,0,.67-5.12H0Z"/><path class="cls-3" d="M0,56.53H112.8c.17-1.69.26-3.4.26-5.13H0Z"/><path class="cls-3" d="M0,82.24v5.14H98.32a51.79,51.79,0,0,0,4.43-5.14Z"/><path class="cls-3" d="M0,20.57V25.7H106.14a51.58,51.58,0,0,0-3.39-5.14Z"/><path class="cls-3" d="M20.81,0h-.25A20.46,20.46,0,0,0,7,5.14H84A51.07,51.07,0,0,0,61.67,0Z"/><path class="cls-3" d="M0,30.85V36H110.69a51,51,0,0,0-1.94-5.14Z"/><path class="cls-3" d="M0,72v5.13H106.14A51.24,51.24,0,0,0,108.75,72Z"/><path class="cls-3" d="M0,61.68v5.14H110.69A50.92,50.92,0,0,0,112,61.68Z"/><path class="cls-3" d="M0,41.22v5.14H112.8a51.15,51.15,0,0,0-.77-5.14Z"/><circle class="cls-2" cx="20.59" cy="20.57" r="20.56" transform="translate(-8.07 15.53) rotate(-35)"/><path class="cls-2" d="M109.36,111.56a20.56,20.56,0,0,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.58,67.57Z"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 175.64 143.93"><defs><style type="text/css">.cls-1{fill:#e45e5d;}.cls-2{fill:#c7bdcd;}.cls-3{fill:#f69e98;}</style></defs><title>Asset 3</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path class="cls-1" d="M61.67,0H20.56A20.56,20.56,0,0,0,0,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H61.67A51.38,51.38,0,0,0,61.67,0Z"/><path class="cls-2" d="M147.19,51.12h25.61a2.57,2.57,0,1,0,0-5.14H147.19a2.57,2.57,0,0,0,0,5.14Z"/><path class="cls-2" d="M147.19,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,0,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,172.79,0H147.19a2.57,2.57,0,0,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path class="cls-2" d="M172.79,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23a2.57,2.57,0,0,0-2.57,2.57h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,172.79,118.28Z"/><path class="cls-2" d="M160,72.63a15.65,15.65,0,1,0,15.65,15.65A15.67,15.67,0,0,0,160,72.63Zm0,26.16A10.51,10.51,0,1,1,170.5,88.28,10.52,10.52,0,0,1,160,98.79Z"/><path class="cls-3" d="M2.77,133.64A20.62,20.62,0,0,0,7,138.77H34.14a20.62,20.62,0,0,0,4.21-5.13Z"/><path class="cls-3" d="M0,92.52v5.14H84a51.48,51.48,0,0,0,8.41-5.14Z"/><rect class="cls-3" y="102.8" width="41.12" height="5.13"/><rect class="cls-3" y="113.08" width="41.12" height="5.14"/><path class="cls-3" d="M.68,15.41H98.3a51.8,51.8,0,0,0-5.86-5.14H2.78A20.41,20.41,0,0,0,.68,15.41Z"/><path class="cls-3" d="M0,123.36H0a20.53,20.53,0,0,0,.67,5.12H40.45a20.53,20.53,0,0,0,.67-5.12H0Z"/><path class="cls-3" d="M0,56.53H112.8c.17-1.69.26-3.4.26-5.13H0Z"/><path class="cls-3" d="M0,82.24v5.14H98.32a51.79,51.79,0,0,0,4.43-5.14Z"/><path class="cls-3" d="M0,20.57V25.7H106.14a51.58,51.58,0,0,0-3.39-5.14Z"/><path class="cls-3" d="M20.81,0h-.25A20.46,20.46,0,0,0,7,5.14H84A51.07,51.07,0,0,0,61.67,0Z"/><path class="cls-3" d="M0,30.85V36H110.69a51,51,0,0,0-1.94-5.14Z"/><path class="cls-3" d="M0,72v5.13H106.14A51.24,51.24,0,0,0,108.75,72Z"/><path class="cls-3" d="M0,61.68v5.14H110.69A50.92,50.92,0,0,0,112,61.68Z"/><path class="cls-3" d="M0,41.22v5.14H112.8a51.15,51.15,0,0,0-.77-5.14Z"/><circle class="cls-2" cx="20.59" cy="20.57" r="20.56" transform="translate(-8.07 15.53) rotate(-35)"/><path class="cls-2" d="M109.36,111.56a20.56,20.56,0,0,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.58,67.57Z"/></g></g></svg> \ No newline at end of file diff --git a/src/skins/vector/img/logos/riot-logo-5.svg b/src/skins/vector/img/logos/riot-logo-5.svg index 6a2c61df..6cbc2592 100644 --- a/src/skins/vector/img/logos/riot-logo-5.svg +++ b/src/skins/vector/img/logos/riot-logo-5.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 174.99 143.93"><defs><style>.cls-1{fill:#764d80;}.cls-2{fill:#afdbc5;}</style></defs><title>Asset 1</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path class="cls-1" d="M61.67,0H20.56A20.56,20.56,0,0,0,0,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H61.67A51.38,51.38,0,0,0,61.67,0Z"/><circle class="cls-2" cx="20.59" cy="20.57" r="20.56" transform="matrix(0.82, -0.57, 0.57, 0.82, -8.07, 15.53)"/><path class="cls-2" d="M109.36,111.56a20.56,20.56,0,1,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.58,67.57Z"/><path class="cls-2" d="M146.53,51.12h25.61a2.57,2.57,0,0,0,0-5.14H146.53a2.57,2.57,0,0,0,0,5.14Z"/><path class="cls-2" d="M146.53,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,1,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,172.14,0H146.53a2.57,2.57,0,0,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path class="cls-2" d="M172.14,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23A2.57,2.57,0,0,0,144,131h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,172.14,118.28Z"/><path class="cls-2" d="M159.34,72.63A15.65,15.65,0,1,0,175,88.28,15.67,15.67,0,0,0,159.34,72.63Zm0,26.16a10.51,10.51,0,1,1,10.51-10.51A10.52,10.52,0,0,1,159.34,98.79Z"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 174.99 143.93"><defs><style type="text/css">.cls-1{fill:#764d80;}.cls-2{fill:#afdbc5;}</style></defs><title>Asset 1</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path class="cls-1" d="M61.67,0H20.56A20.56,20.56,0,0,0,0,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H61.67A51.38,51.38,0,0,0,61.67,0Z"/><circle class="cls-2" cx="20.59" cy="20.57" r="20.56" transform="matrix(0.82, -0.57, 0.57, 0.82, -8.07, 15.53)"/><path class="cls-2" d="M109.36,111.56a20.56,20.56,0,1,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.58,67.57Z"/><path class="cls-2" d="M146.53,51.12h25.61a2.57,2.57,0,0,0,0-5.14H146.53a2.57,2.57,0,0,0,0,5.14Z"/><path class="cls-2" d="M146.53,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,1,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,172.14,0H146.53a2.57,2.57,0,0,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path class="cls-2" d="M172.14,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23A2.57,2.57,0,0,0,144,131h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,172.14,118.28Z"/><path class="cls-2" d="M159.34,72.63A15.65,15.65,0,1,0,175,88.28,15.67,15.67,0,0,0,159.34,72.63Zm0,26.16a10.51,10.51,0,1,1,10.51-10.51A10.52,10.52,0,0,1,159.34,98.79Z"/></g></g></svg> \ No newline at end of file diff --git a/src/skins/vector/img/logos/riot-logo-bw.svg b/src/skins/vector/img/logos/riot-logo-bw.svg index cb6d77d6..e7d6e869 100644 --- a/src/skins/vector/img/logos/riot-logo-bw.svg +++ b/src/skins/vector/img/logos/riot-logo-bw.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 174.99 143.93"><defs><style>.cls-1{fill:#fff;}</style></defs><title>Asset 6</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path d="M146.53,51.12h25.61a2.57,2.57,0,0,0,0-5.14H146.53a2.57,2.57,0,0,0,0,5.14Z"/><path d="M146.53,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,0,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,172.14,0H146.53a2.57,2.57,0,0,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path d="M172.14,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23A2.57,2.57,0,0,0,144,131h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,172.14,118.28Z"/><path d="M159.34,72.63A15.65,15.65,0,1,0,175,88.28,15.67,15.67,0,0,0,159.34,72.63Zm0,26.16a10.51,10.51,0,1,1,10.51-10.51A10.52,10.52,0,0,1,159.34,98.79Z"/><path d="M62.33,0H21.22A20.56,20.56,0,0,0,.66,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H62.33A51.38,51.38,0,0,0,62.33,0Z"/><path class="cls-1" d="M21.22,138.81A15.45,15.45,0,0,1,5.79,123.37V20.57A15.45,15.45,0,0,1,21.09,5.14H62.33a46.26,46.26,0,0,1,0,92.51H36.65v25.71A15.45,15.45,0,0,1,21.22,138.81Z"/><path d="M21.22,133.68a10.32,10.32,0,0,1-10.3-10.3V20.57A10.33,10.33,0,0,1,21,10.27H62.33a41.13,41.13,0,0,1,0,82.26H31.52v30.84A10.32,10.32,0,0,1,21.22,133.68Z"/><path class="cls-1" d="M21.22,128.55A5.18,5.18,0,0,1,16,123.37V20.57a5.2,5.2,0,0,1,5-5.17H62.33a36,36,0,0,1,0,72H26.39v36A5.18,5.18,0,0,1,21.22,128.55Z"/><path d="M21.27,82.28H62.33a30.87,30.87,0,0,0,0-61.75H21.22Z"/><path class="cls-1" d="M26.39,77.15l0-51.49h36a25.75,25.75,0,0,1,0,51.49Z"/><path d="M31.51,72l0-41.23H62.33a20.62,20.62,0,0,1,0,41.23Z"/><path class="cls-1" d="M36.64,66.9l0-31H62.33a15.49,15.49,0,0,1,0,31Z"/><path d="M41.76,61.77l0-20.72H62.33a10.36,10.36,0,0,1,0,20.72Z"/><path class="cls-1" d="M46.89,56.64V46.18H62.33a5.23,5.23,0,0,1,0,10.47Z"/><circle cx="20.56" cy="20.57" r="20.56" transform="translate(-8.08 15.51) rotate(-35)"/><path d="M109.34,111.57a20.56,20.56,0,1,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.55,67.58Z"/></g></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 174.99 143.93"><defs><style type="text/css">.cls-1{fill:#fff;}</style></defs><title>Asset 6</title><g id="Layer_2" data-name="Layer 2"><g id="Design"><path d="M146.53,51.12h25.61a2.57,2.57,0,0,0,0-5.14H146.53a2.57,2.57,0,0,0,0,5.14Z"/><path d="M146.53,5.14h7.66v7.79l-.05,0-9,6.32a2.57,2.57,0,0,0,2.95,4.21l7.23-5.06a10.24,10.24,0,0,0,19.42-4.59V2.64s0,0,0-.07A2.57,2.57,0,0,0,172.14,0H146.53a2.57,2.57,0,0,0,0,5.14Zm23,8.71a5.12,5.12,0,1,1-10.23,0V5.14h10.23Z"/><path d="M172.14,118.28a2.57,2.57,0,0,0-2.57,2.57v7.6h-23A2.57,2.57,0,0,0,144,131h0a2.57,2.57,0,0,0,2.57,2.57h23v7.78a2.57,2.57,0,0,0,5.14,0V131h0V120.85A2.57,2.57,0,0,0,172.14,118.28Z"/><path d="M159.34,72.63A15.65,15.65,0,1,0,175,88.28,15.67,15.67,0,0,0,159.34,72.63Zm0,26.16a10.51,10.51,0,1,1,10.51-10.51A10.52,10.52,0,0,1,159.34,98.79Z"/><path d="M62.33,0H21.22A20.56,20.56,0,0,0,.66,20.57v102.8a20.56,20.56,0,0,0,41.12,0V102.79H62.33A51.38,51.38,0,0,0,62.33,0Z"/><path class="cls-1" d="M21.22,138.81A15.45,15.45,0,0,1,5.79,123.37V20.57A15.45,15.45,0,0,1,21.09,5.14H62.33a46.26,46.26,0,0,1,0,92.51H36.65v25.71A15.45,15.45,0,0,1,21.22,138.81Z"/><path d="M21.22,133.68a10.32,10.32,0,0,1-10.3-10.3V20.57A10.33,10.33,0,0,1,21,10.27H62.33a41.13,41.13,0,0,1,0,82.26H31.52v30.84A10.32,10.32,0,0,1,21.22,133.68Z"/><path class="cls-1" d="M21.22,128.55A5.18,5.18,0,0,1,16,123.37V20.57a5.2,5.2,0,0,1,5-5.17H62.33a36,36,0,0,1,0,72H26.39v36A5.18,5.18,0,0,1,21.22,128.55Z"/><path d="M21.27,82.28H62.33a30.87,30.87,0,0,0,0-61.75H21.22Z"/><path class="cls-1" d="M26.39,77.15l0-51.49h36a25.75,25.75,0,0,1,0,51.49Z"/><path d="M31.51,72l0-41.23H62.33a20.62,20.62,0,0,1,0,41.23Z"/><path class="cls-1" d="M36.64,66.9l0-31H62.33a15.49,15.49,0,0,1,0,31Z"/><path d="M41.76,61.77l0-20.72H62.33a10.36,10.36,0,0,1,0,20.72Z"/><path class="cls-1" d="M46.89,56.64V46.18H62.33a5.23,5.23,0,0,1,0,10.47Z"/><circle cx="20.56" cy="20.57" r="20.56" transform="translate(-8.08 15.51) rotate(-35)"/><path d="M109.34,111.57a20.56,20.56,0,1,1-33.69,23.59l-30.79-44A20.56,20.56,0,0,1,78.55,67.58Z"/></g></g></svg> \ No newline at end of file From 68a39b27835ac1c9b5cbdc5838c3b0bab1c92e34 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 19 May 2017 11:59:27 +0100 Subject: [PATCH 052/147] Update process to not set deps to #develop Update README instructions and add checks to release script to prevent us forgetting to bump the versions of dependencies (because the check in the main release script will only catch references to #develop left in, which will no longer be the failure mode). --- README.md | 30 +++++++++++++++++++----------- release.sh | 16 ++++++++++++++++ 2 files changed, 35 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 55463a37..34107873 100644 --- a/README.md +++ b/README.md @@ -58,27 +58,35 @@ to build. 1. Install or update `node.js` so that your `npm` is at least at version `2.0.0` 1. Clone the repo: `git clone https://github.com/vector-im/riot-web.git` 1. Switch to the riot-web directory: `cd riot-web` -1. Install the prerequisites: `npm install` -1. If you are using the `develop` branch of vector-web, you will probably need - to rebuild some of the dependencies, due to - https://github.com/npm/npm/issues/3055: - +1. If you're using the `develop` branch, install the develop versions of the + dependencies, as the released ones will be too old: ``` - (cd node_modules/matrix-js-sdk && npm install) - (cd node_modules/matrix-react-sdk && npm install) + scripts/fetch-develop-deps.sh ``` Whenever you git pull on riot-web you will also probably need to force an update - to these dependencies - the easiest way is probably: + to these dependencies - the simplest way is to re-run the script, but you can also + manually update and reuild them: ``` - rm -rf node_modules/matrjx-{js,react}-sdk && npm i - (cd node_modules/matrix-js-sdk && npm install) - (cd node_modules/matrix-react-sdk && npm install) + cd matrix-js-sdk + git pull + npm install # re-run to pull in any new dependencies + # Depending on your version of npm, npm run build may happen as part of + # the npm install above (https://docs.npmjs.com/misc/scripts#prepublish-and-prepare) + # If in doubt, run it anyway: + npm run build + cd ../matrix-react-sdk + git pull + npm install + npm run build ``` However, we recommend setting up a proper development environment (see "Setting up a development environment" below) if you want to run your own copy of the `develop` branch, as it makes it much easier to keep these dependencies up-to-date. Or just use https://riot.im/develop - the continuous integration release of the develop branch. + (Note that we don't reference the develop versions in git directly due to + https://github.com/npm/npm/issues/3055) +1. Install the prerequisites: `npm install` 1. Configure the app by copying `config.sample.json` to `config.json` and modifying it (see below for details) 1. `npm run dist` to build a tarball to deploy. Untaring this file will give diff --git a/release.sh b/release.sh index c2454560..8ae307f7 100755 --- a/release.sh +++ b/release.sh @@ -9,6 +9,22 @@ set -e cd `dirname $0` +for i in matrix-js-sdk matrix-react-sdk +do + depver=`cat package.json | jq -r .dependencies.\"$i\"` + latestver=`npm show $i version` + if [ "$depver" != "$latestver" ] + then + echo "The latest version of $i is $latestver but package.json depends on $depver" + echo -n "Type 'Yes' to continue anyway: " + read resp + if [ "$resp" != "Yes" ] + then + echo "OK, never mind." + exit 1 + fi + fi +done # bump Electron's package.json first release="${1#v}" From ea67fa9c1695a43fec894fb4ce4b1b4edbc8cc7a Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <richard@matrix.org> Date: Fri, 19 May 2017 13:33:50 +0100 Subject: [PATCH 053/147] More riot-web test deflakification Two changes: 1. wait longer for /sync to arrive in the loading tests, via an `expectAndAwaitSync` method. 2. https://github.com/matrix-org/matrix-react-sdk/pull/773 made it possible for MatrixChat to not show its syncing spinner despite `loading` being false. Update `awaitSyncingSpinner` accordingly, so that it doesn't fail when it happens to check MatrixChat at just taht moment. --- test/app-tests/loading.js | 52 +++++++++++++++++++++++++-------------- 1 file changed, 34 insertions(+), 18 deletions(-) diff --git a/test/app-tests/loading.js b/test/app-tests/loading.js index 22daa395..d3844522 100644 --- a/test/app-tests/loading.js +++ b/test/app-tests/loading.js @@ -115,9 +115,9 @@ describe('loading:', function () { } function routeUrl(location, matrixChat) { - console.log(Date.now() + "Routing URL " + location); + console.log(Date.now() + ` routing URL '${location}'`); const s = getScreenFromLocation(location); - console.log("Showing screen", s); + console.log("Showing screen "+ s); matrixChat.showScreen(s.screen, s.params); } @@ -136,6 +136,7 @@ describe('loading:', function () { enableGuest={true} onLoadCompleted={loadCompleteDefer.resolve} initialScreenAfterLogin={getScreenFromLocation(windowLocation)} + makeRegistrationUrl={() => {throw new Error('Not implemented');}} />, parentDiv ); @@ -151,6 +152,27 @@ describe('loading:', function () { }, 0); } + // set an expectation that we will get a call to /sync, then flush + // http requests until we do. + // + // returns a promise resolving to the received request + async function expectAndAwaitSync(response) { + response = response || {}; + let syncRequest = null; + httpBackend.when('GET', '/sync') + .check((r) => {syncRequest = r;}) + .respond(200, response); + + console.log("waiting for /sync"); + for (let attempts = 10; attempts > 0; attempts--) { + if (syncRequest) { + return syncRequest; + } + await httpBackend.flush(); + } + throw new Error("Gave up waiting for /sync"); + } + describe("Clean load with no stored credentials:", function() { it('gives a login panel by default', function (done) { loadApp(); @@ -221,8 +243,7 @@ describe('loading:', function () { httpBackend.when('GET', '/pushrules').respond(200, {}); httpBackend.when('POST', '/filter').respond(200, { filter_id: 'fid' }); - httpBackend.when('GET', '/sync').respond(200, {}); - return httpBackend.flush(); + return expectAndAwaitSync(); }).then(() => { // once the sync completes, we should have a room view return awaitRoomView(matrixChat); @@ -250,13 +271,12 @@ describe('loading:', function () { it('shows a directory by default if we have no joined rooms', function(done) { httpBackend.when('GET', '/pushrules').respond(200, {}); httpBackend.when('POST', '/filter').respond(200, { filter_id: 'fid' }); - httpBackend.when('GET', '/sync').respond(200, {}); loadApp(); return awaitSyncingSpinner(matrixChat).then(() => { // we got a sync spinner - let the sync complete - return httpBackend.flush(); + return expectAndAwaitSync(); }).then(() => { // once the sync completes, we should have a directory httpBackend.verifyNoOutstandingExpectation(); @@ -269,7 +289,6 @@ describe('loading:', function () { it('shows a room view if we followed a room link', function(done) { httpBackend.when('GET', '/pushrules').respond(200, {}); httpBackend.when('POST', '/filter').respond(200, { filter_id: 'fid' }); - httpBackend.when('GET', '/sync').respond(200, {}); loadApp({ uriFragment: "#/room/!room:id", @@ -277,7 +296,7 @@ describe('loading:', function () { return awaitSyncingSpinner(matrixChat).then(() => { // we got a sync spinner - let the sync complete - return httpBackend.flush(); + return expectAndAwaitSync(); }).then(() => { // once the sync completes, we should have a room view return awaitRoomView(matrixChat); @@ -310,8 +329,7 @@ describe('loading:', function () { return awaitSyncingSpinner(matrixChat); }).then(() => { // we got a sync spinner - let the sync complete - httpBackend.when('GET', '/sync').respond(200, {}); - return httpBackend.flush(); + return expectAndAwaitSync(); }).then(() => { // once the sync completes, we should have a directory httpBackend.verifyNoOutstandingExpectation(); @@ -344,11 +362,10 @@ describe('loading:', function () { }).then(() => { return awaitSyncingSpinner(matrixChat); }).then(() => { - httpBackend.when('GET', '/sync').check(function(req) { - expect(req.path).toMatch(new RegExp("^https://homeserver/")); - }).respond(200, {}); - return httpBackend.flush(); - }).then(() => { + return expectAndAwaitSync(); + }).then((req) => { + expect(req.path).toMatch(new RegExp("^https://homeserver/")); + // once the sync completes, we should have a directory httpBackend.verifyNoOutstandingExpectation(); ReactTestUtils.findRenderedComponentWithType( @@ -379,8 +396,7 @@ describe('loading:', function () { }).then(() => { return awaitSyncingSpinner(matrixChat); }).then(() => { - httpBackend.when('GET', '/sync').respond(200, {}); - return httpBackend.flush(); + return expectAndAwaitSync(); }).then(() => { // once the sync completes, we should have a room view return awaitRoomView(matrixChat); @@ -450,7 +466,7 @@ function awaitSyncingSpinner(matrixChat, retryLimit, retryCount) { retryCount = 0; } - if (matrixChat.state.loading) { + if (matrixChat.state.loading || matrixChat.state.loggingIn) { console.log(Date.now() + " Awaiting sync spinner: still loading."); if (retryCount >= retryLimit) { throw new Error("MatrixChat still not loaded after " + From d7f1e01cfa4a03ba27eab50b0e11a52ee4e5b90e Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 19 May 2017 14:47:44 +0100 Subject: [PATCH 054/147] Don't fail if reskindex symlink exists --- scripts/fetch-develop.deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fetch-develop.deps.sh b/scripts/fetch-develop.deps.sh index 8048d4bc..c3bfb4e1 100755 --- a/scripts/fetch-develop.deps.sh +++ b/scripts/fetch-develop.deps.sh @@ -58,4 +58,4 @@ popd # to define the npm prefix somewhere so it could put the # intermediate symlinks there. Instead, we do it ourselves. mkdir -p .bin -ln -s ../matrix-react-sdk/scripts/reskindex.js .bin/reskindex +ln -sf ../matrix-react-sdk/scripts/reskindex.js .bin/reskindex From dc990f47bedec3ee144aedd135c3e9e6a8468b27 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 19 May 2017 17:02:48 +0100 Subject: [PATCH 055/147] Fix app breakage with a 'version' file Re-add accidenally removed variable initialiser --- src/vector/platform/WebPlatform.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/vector/platform/WebPlatform.js b/src/vector/platform/WebPlatform.js index 204317ba..cdff7344 100644 --- a/src/vector/platform/WebPlatform.js +++ b/src/vector/platform/WebPlatform.js @@ -26,6 +26,10 @@ import url from 'url'; import UAParser from 'ua-parser-js'; export default class WebPlatform extends VectorBasePlatform { + constructor() { + super(); + this.runningVersion = null; + } /** * Returns true if the platform supports displaying From 9e37fa46b154594afad3281157c21cc1a8c47ebf Mon Sep 17 00:00:00 2001 From: Maxwell Kepler <kierang@largepixelcollider.net> Date: Thu, 18 May 2017 22:01:00 +0100 Subject: [PATCH 056/147] Add 12 hour support --- .../views/messages/MessageTimestamp.js | 25 +++++++++++++------ .../structures/_FilePanel.scss | 1 - .../views/rooms/_EventTile.scss | 6 ++++- 3 files changed, 22 insertions(+), 10 deletions(-) diff --git a/src/components/views/messages/MessageTimestamp.js b/src/components/views/messages/MessageTimestamp.js index a97f54b1..8417f91f 100644 --- a/src/components/views/messages/MessageTimestamp.js +++ b/src/components/views/messages/MessageTimestamp.js @@ -16,19 +16,28 @@ limitations under the License. 'use strict'; -var React = require('react'); -var DateUtils = require('matrix-react-sdk/lib/DateUtils'); +import * as UserSettingsStore from 'matrix-react-sdk/lib/UserSettingsStore'; +const React = require('react'); +const DateUtils = require('matrix-react-sdk/lib/DateUtils'); module.exports = React.createClass({ displayName: 'MessageTimestamp', render: function() { var date = new Date(this.props.ts); - return ( - <span className="mx_MessageTimestamp" title={ DateUtils.formatFullDate(date) }> - { DateUtils.formatTime(date) } - </span> - ); + if (UserSettingsStore.getSyncedSetting('showTwelveHourTimestamps')) { + return ( + <span style={{ textAlign: 'center' }} className="mx_MessageTimestamp" title={ DateUtils.formatFullDate(date) }> + { DateUtils.formatTime(date) } + </span> + ); + } + else { + return ( + <span className="mx_MessageTimestamp" title={ DateUtils.formatFullDate(date) }> + { DateUtils.formatTime(date) } + </span> + ); + } }, }); - diff --git a/src/skins/vector/css/matrix-react-sdk/structures/_FilePanel.scss b/src/skins/vector/css/matrix-react-sdk/structures/_FilePanel.scss index 872085b6..58e09064 100644 --- a/src/skins/vector/css/matrix-react-sdk/structures/_FilePanel.scss +++ b/src/skins/vector/css/matrix-react-sdk/structures/_FilePanel.scss @@ -112,4 +112,3 @@ limitations under the License. .mx_FilePanel .mx_EventTile_selected .mx_EventTile_line { padding-left: 0px; } - diff --git a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss index cbd71422..acfe768a 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss @@ -94,7 +94,7 @@ limitations under the License. */ .mx_EventTile_selected .mx_EventTile_line { border-left: $accent-color 5px solid; - padding-left: 60px; + padding-left: 100px; background-color: $event-selected-color; } @@ -263,6 +263,10 @@ limitations under the License. cursor: pointer; } +.mx_EventTile_e2eIcon_12hr { + padding-left: 5px; +} + .mx_EventTile:hover.mx_EventTile_verified .mx_EventTile_line, .mx_EventTile:hover.mx_EventTile_unverified .mx_EventTile_line { padding-left: 60px; From 1ebe819aa274e4a9efb3ac5396ed3b8fe468ea87 Mon Sep 17 00:00:00 2001 From: Kieran Gould <kierang@largepixelcollider.net> Date: Fri, 19 May 2017 21:14:01 +0100 Subject: [PATCH 057/147] Revert _EventTile.scss padding. --- .../vector/css/matrix-react-sdk/views/rooms/_EventTile.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss index acfe768a..5943cfdc 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss @@ -94,7 +94,7 @@ limitations under the License. */ .mx_EventTile_selected .mx_EventTile_line { border-left: $accent-color 5px solid; - padding-left: 100px; + padding-left: 60px; background-color: $event-selected-color; } From cae62c83830890f7f904148f43e2484ee699f6ac Mon Sep 17 00:00:00 2001 From: Kieran Gould <kierang@largepixelcollider.net> Date: Fri, 19 May 2017 22:29:06 +0100 Subject: [PATCH 058/147] MessageTimestamp now has 12 hour prop --- .../views/messages/MessageTimestamp.js | 25 ++++++++----------- .../views/rooms/_EventTile.scss | 10 +++++--- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/src/components/views/messages/MessageTimestamp.js b/src/components/views/messages/MessageTimestamp.js index 8417f91f..dacfad92 100644 --- a/src/components/views/messages/MessageTimestamp.js +++ b/src/components/views/messages/MessageTimestamp.js @@ -23,21 +23,16 @@ const DateUtils = require('matrix-react-sdk/lib/DateUtils'); module.exports = React.createClass({ displayName: 'MessageTimestamp', + propTypes: { + showTwelveHour: React.PropTypes.bool, + }, + render: function() { - var date = new Date(this.props.ts); - if (UserSettingsStore.getSyncedSetting('showTwelveHourTimestamps')) { - return ( - <span style={{ textAlign: 'center' }} className="mx_MessageTimestamp" title={ DateUtils.formatFullDate(date) }> - { DateUtils.formatTime(date) } - </span> - ); - } - else { - return ( - <span className="mx_MessageTimestamp" title={ DateUtils.formatFullDate(date) }> - { DateUtils.formatTime(date) } - </span> - ); - } + const date = new Date(this.props.ts); + return ( + <span className="mx_MessageTimestamp" title={ DateUtils.formatFullDate(date) }> + { DateUtils.formatTime(date, this.props.showTwelveHour) } + </span> + ); }, }); diff --git a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss index 5943cfdc..3ea25ba2 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss @@ -94,7 +94,7 @@ limitations under the License. */ .mx_EventTile_selected .mx_EventTile_line { border-left: $accent-color 5px solid; - padding-left: 60px; + padding-left: px; background-color: $event-selected-color; } @@ -263,8 +263,12 @@ limitations under the License. cursor: pointer; } -.mx_EventTile_e2eIcon_12hr { - padding-left: 5px; +.mx_EventTile_12hr .mx_EventTile_e2eIcon { + padding-left: 5px; +} + +.mx_EventTile_12hr .mx_MessageTimestamp { + text-align: center; } .mx_EventTile:hover.mx_EventTile_verified .mx_EventTile_line, From 90ab4a02f256e6199c6dad19c756e46260956af9 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Sat, 20 May 2017 13:11:31 +0100 Subject: [PATCH 059/147] add category so it doesn't get dropped into Default/Lost+Found Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index dd25bf64..9dc14581 100644 --- a/package.json +++ b/package.json @@ -158,6 +158,7 @@ ], "linux": { "target": "deb", + "category": "Network;InstantMessaging;P2P;", "maintainer": "support@riot.im", "desktop": { "StartupWMClass": "riot-web" From c03d12238a78e2d0b5a053483c0dc32001aaec85 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Mon, 22 May 2017 11:39:25 +0100 Subject: [PATCH 060/147] Released js-sdk & react-sdk --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 620d52b0..b001586b 100644 --- a/package.json +++ b/package.json @@ -65,8 +65,8 @@ "gfm.css": "^1.1.1", "highlight.js": "^9.0.0", "linkifyjs": "^2.1.3", - "matrix-js-sdk": "0.7.8-rc.1", - "matrix-react-sdk": "0.8.9-rc.1", + "matrix-js-sdk": "0.7.8", + "matrix-react-sdk": "0.8.9", "modernizr": "^3.1.0", "pako": "^1.0.5", "q": "^1.4.1", From 5c4e3cec08ac470a971939ef280b33ae86179437 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Mon, 22 May 2017 11:40:10 +0100 Subject: [PATCH 061/147] v0.9.10 --- electron_app/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron_app/package.json b/electron_app/package.json index abb813eb..df9c3bd2 100644 --- a/electron_app/package.json +++ b/electron_app/package.json @@ -2,7 +2,7 @@ "name": "riot-web", "productName": "Riot", "main": "src/electron-main.js", - "version": "0.9.10-rc.1", + "version": "0.9.10", "description": "A feature-rich client for Matrix.org", "author": "Vector Creations Ltd.", "dependencies": { From 734a28e0f33ff33ee2d4c0a88ff3f1fd140b2292 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Mon, 22 May 2017 11:41:09 +0100 Subject: [PATCH 062/147] Prepare changelog for v0.9.10 --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9512ad7..21657005 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +Changes in [0.9.10](https://github.com/vector-im/riot-web/releases/tag/v0.9.10) (2017-05-22) +============================================================================================ +[Full Changelog](https://github.com/vector-im/riot-web/compare/v0.9.10-rc.1...v0.9.10) + + * No changes + + Changes in [0.9.10-rc.1](https://github.com/vector-im/riot-web/releases/tag/v0.9.10-rc.1) (2017-05-19) ====================================================================================================== [Full Changelog](https://github.com/vector-im/riot-web/compare/v0.9.9...v0.9.10-rc.1) From 86bce146e8c6e7703991dc8c2a1e723395006d69 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Mon, 22 May 2017 11:41:10 +0100 Subject: [PATCH 063/147] v0.9.10 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b001586b..f95a032a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "riot-web", "productName": "Riot", "main": "electron_app/src/electron-main.js", - "version": "0.9.10-rc.1", + "version": "0.9.10", "description": "A feature-rich client for Matrix.org", "author": "Vector Creations Ltd.", "repository": { From 6e8516e5376d49bb577a6ae0503d12d78ca28bf1 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@googlemail.com> Date: Mon, 22 May 2017 16:53:46 +0100 Subject: [PATCH 064/147] fiiine! --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9dc14581..c4c959c3 100644 --- a/package.json +++ b/package.json @@ -158,7 +158,7 @@ ], "linux": { "target": "deb", - "category": "Network;InstantMessaging;P2P;", + "category": "Network;InstantMessaging;", "maintainer": "support@riot.im", "desktop": { "StartupWMClass": "riot-web" From 755c66b9f19b51bd65d7289873553c387bc5ff5d Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 22 May 2017 18:30:45 +0100 Subject: [PATCH 065/147] pass dispatcher through to electron, on a whitelist basis Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/vector/platform/ElectronPlatform.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/vector/platform/ElectronPlatform.js b/src/vector/platform/ElectronPlatform.js index 5710e66e..ecbc5bd0 100644 --- a/src/vector/platform/ElectronPlatform.js +++ b/src/vector/platform/ElectronPlatform.js @@ -54,7 +54,19 @@ function platformFriendlyName(): string { } } +function _onAction(payload: Object) { + // Whitelist payload actions, no point sending most across + if (['call_state'].includes(payload.action)) { + ipcRenderer.send('app_onAction', payload); + } +} + export default class ElectronPlatform extends VectorBasePlatform { + constructor() { + super(); + dis.register(_onAction); + } + setNotificationCount(count: number) { if (this.notificationCount === count) return; super.setNotificationCount(count); From f57d8e4cb9bd3d87a28462e6c697dd087f4fd8a1 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 22 May 2017 18:31:30 +0100 Subject: [PATCH 066/147] make ESLint a touch happier Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/vector/platform/ElectronPlatform.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/vector/platform/ElectronPlatform.js b/src/vector/platform/ElectronPlatform.js index ecbc5bd0..bf930a67 100644 --- a/src/vector/platform/ElectronPlatform.js +++ b/src/vector/platform/ElectronPlatform.js @@ -83,7 +83,6 @@ export default class ElectronPlatform extends VectorBasePlatform { } displayNotification(title: string, msg: string, avatarUrl: string, room: Object): Notification { - // GNOME notification spec parses HTML tags for styling... // Electron Docs state all supported linux notification systems follow this markup spec // https://github.com/electron/electron/blob/master/docs/tutorial/desktop-environment-integration.md#linux From 4944bfdaa25abbeb4ebd8ce60fbc7376851b5bbd Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 22 May 2017 18:32:39 +0100 Subject: [PATCH 067/147] onAction support in Electron process, disable powersave when in call Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/electron-main.js | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/electron_app/src/electron-main.js b/electron_app/src/electron-main.js index ab844bd3..53f9ac0f 100644 --- a/electron_app/src/electron-main.js +++ b/electron_app/src/electron-main.js @@ -186,6 +186,24 @@ electron.ipcMain.on('setBadgeCount', function(ev, count) { } }); +let powerSaveBlockerId; +electron.ipcMain.on('app_onAction', function(ev, payload) { + switch (payload.action) { + case 'call_state': + if (powerSaveBlockerId && powerSaveBlockerId.isStarted(powerSaveBlockerId)) { + if (payload.state === 'ended') { + electron.powerSaveBlocker.stop(powerSaveBlockerId); + } + } else { + if (payload.state === 'connected') { + powerSaveBlockerId = electron.powerSaveBlocker.start('prevent-display-sleep'); + } + } + break; + } +}); + + electron.app.commandLine.appendSwitch('--enable-usermedia-screen-capturing'); const shouldQuit = electron.app.makeSingleInstance((commandLine, workingDirectory) => { @@ -199,7 +217,7 @@ const shouldQuit = electron.app.makeSingleInstance((commandLine, workingDirector if (shouldQuit) { console.log("Other instance detected: exiting"); - electron.app.quit() + electron.app.quit(); } electron.app.on('ready', () => { From 911c3bcf6e6fe60148ec0d1ff161dd1561bfe37b Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 22 May 2017 19:21:52 +0100 Subject: [PATCH 068/147] tidy electron files, they were starting to annoy me Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/electron-main.js | 85 +++++++-------- electron_app/src/squirrelhooks.js | 20 ++-- electron_app/src/tray.js | 10 +- electron_app/src/vectormenu.js | 168 ++++++++++-------------------- 4 files changed, 107 insertions(+), 176 deletions(-) diff --git a/electron_app/src/electron-main.js b/electron_app/src/electron-main.js index ab844bd3..b58e2553 100644 --- a/electron_app/src/electron-main.js +++ b/electron_app/src/electron-main.js @@ -20,15 +20,14 @@ limitations under the License. // Squirrel on windows starts the app with various flags // as hooks to tell us when we've been installed/uninstalled // etc. -const check_squirrel_hooks = require('./squirrelhooks'); -if (check_squirrel_hooks()) return; +const checkSquirrelHooks = require('./squirrelhooks'); +if (checkSquirrelHooks()) return; const electron = require('electron'); const url = require('url'); const tray = require('./tray'); - -const VectorMenu = require('./vectormenu'); +const vectorMenu = require('./vectormenu'); const windowStateKeeper = require('electron-window-state'); @@ -59,13 +58,13 @@ function safeOpenURL(target) { // so put fairly stringent limits on what can be opened // (for instance, open /bin/sh does indeed open a terminal // with a shell, albeit with no arguments) - const parsed_url = url.parse(target); - if (PERMITTED_URL_SCHEMES.indexOf(parsed_url.protocol) > -1) { + const parsedUrl = url.parse(target); + if (PERMITTED_URL_SCHEMES.indexOf(parsedUrl.protocol) > -1) { // explicitly use the URL re-assembled by the url library, // so we know the url parser has understood all the parts // of the input string - const new_target = url.format(parsed_url); - electron.shell.openExternal(new_target); + const newTarget = url.format(parsedUrl); + electron.shell.openExternal(newTarget); } } @@ -79,20 +78,19 @@ function onWindowOrNavigate(ev, target) { } function onLinkContextMenu(ev, params) { - const popup_menu = new electron.Menu(); - popup_menu.append(new electron.MenuItem({ + const popupMenu = new electron.Menu(); + + popupMenu.append(new electron.MenuItem({ label: params.linkURL, - click() { - safeOpenURL(params.linkURL); - }, + click() { safeOpenURL(params.linkURL); }, })); - popup_menu.append(new electron.MenuItem({ + + popupMenu.append(new electron.MenuItem({ label: 'Copy Link Address', - click() { - electron.clipboard.writeText(params.linkURL); - }, + click() { electron.clipboard.writeText(params.linkURL); }, })); - popup_menu.popup(); + + popupMenu.popup(); ev.preventDefault(); } @@ -107,13 +105,13 @@ function pollForUpdates() { try { electron.autoUpdater.checkForUpdates(); } catch (e) { - console.log("Couldn't check for update", e); + console.log('Couldn\'t check for update', e); } } -function startAutoUpdate(update_base_url) { - if (update_base_url.slice(-1) !== '/') { - update_base_url = update_base_url + '/'; +function startAutoUpdate(updateBaseUrl) { + if (updateBaseUrl.slice(-1) !== '/') { + updateBaseUrl = updateBaseUrl + '/'; } try { // For reasons best known to Squirrel, the way it checks for updates @@ -121,7 +119,7 @@ function startAutoUpdate(update_base_url) { // hits a URL that either gives it a 200 with some json or // 204 No Content. On windows it takes a base path and looks for // files under that path. - if (process.platform == 'darwin') { + if (process.platform === 'darwin') { // include the current version in the URL we hit. Electron doesn't add // it anywhere (apart from the User-Agent) so it's up to us. We could // (and previously did) just use the User-Agent, but this doesn't @@ -129,16 +127,15 @@ function startAutoUpdate(update_base_url) { // and also acts as a convenient cache-buster to ensure that when the // app updates it always gets a fresh value to avoid update-looping. electron.autoUpdater.setFeedURL( - update_base_url + - 'macos/?localVersion=' + encodeURIComponent(electron.app.getVersion()) - ); - } else if (process.platform == 'win32') { - electron.autoUpdater.setFeedURL(update_base_url + 'win32/' + process.arch + '/'); + `${updateBaseUrl}macos/?localVersion=${encodeURIComponent(electron.app.getVersion())}`); + + } else if (process.platform === 'win32') { + electron.autoUpdater.setFeedURL(updateBaseUrl + 'win32/' + process.arch + '/'); } else { // Squirrel / electron only supports auto-update on these two platforms. // I'm not even going to try to guess which feed style they'd use if they // implemented it on Linux, or if it would be different again. - console.log("Auto update not supported on this platform"); + console.log('Auto update not supported on this platform'); } // We check for updates ourselves rather than using 'updater' because we need to // do it in the main process (and we don't really need to check every 10 minutes: @@ -151,7 +148,7 @@ function startAutoUpdate(update_base_url) { setInterval(pollForUpdates, UPDATE_POLL_INTERVAL_MS); } catch (err) { // will fail if running in debug mode - console.log("Couldn't enable update checking", err); + console.log('Couldn\'t enable update checking', err); } } @@ -162,13 +159,13 @@ function startAutoUpdate(update_base_url) { // Assuming we generally run from the console when developing, // this is far preferable. process.on('uncaughtException', function(error) { - console.log("Unhandled exception", error); + console.log('Unhandled exception', error); }); electron.ipcMain.on('install_update', installUpdate); let focusHandlerAttached = false; -electron.ipcMain.on('setBadgeCount', function(ev, count) { +electron.ipcMain.on('setBadgeCount', function(ev, count: number) { electron.app.setBadgeCount(count); if (process.platform === 'win32' && mainWindow && !mainWindow.isFocused()) { if (count > 0) { @@ -198,30 +195,28 @@ const shouldQuit = electron.app.makeSingleInstance((commandLine, workingDirector }); if (shouldQuit) { - console.log("Other instance detected: exiting"); - electron.app.quit() + console.log('Other instance detected: exiting'); + electron.app.quit(); } electron.app.on('ready', () => { if (vectorConfig.update_base_url) { - console.log("Starting auto update with base URL: " + vectorConfig.update_base_url); + console.log(`Starting auto update with base URL: ${vectorConfig.update_base_url}`); startAutoUpdate(vectorConfig.update_base_url); } else { - console.log("No update_base_url is defined: auto update is disabled"); + console.log('No update_base_url is defined: auto update is disabled'); } - const icon_path = `${__dirname}/../img/riot.` + ( - process.platform == 'win32' ? 'ico' : 'png' - ); + const iconPath = `${__dirname}/../img/riot.${process.platform === 'win32' ? 'ico' : 'png'}`; // Load the previous window state with fallback to defaults - let mainWindowState = windowStateKeeper({ + const mainWindowState = windowStateKeeper({ defaultWidth: 1024, defaultHeight: 768, }); mainWindow = new electron.BrowserWindow({ - icon: icon_path, + icon: iconPath, show: false, autoHideMenuBar: true, @@ -231,12 +226,12 @@ electron.app.on('ready', () => { height: mainWindowState.height, }); mainWindow.loadURL(`file://${__dirname}/../../webapp/index.html`); - electron.Menu.setApplicationMenu(VectorMenu); + electron.Menu.setApplicationMenu(vectorMenu); // Create trayIcon icon tray.create(mainWindow, { - icon_path: icon_path, - brand: vectorConfig.brand || 'Riot' + icon_path: iconPath, + brand: vectorConfig.brand || 'Riot', }); if (!process.argv.includes('--hidden')) { @@ -249,7 +244,7 @@ electron.app.on('ready', () => { mainWindow = null; }); mainWindow.on('close', (e) => { - if (!appQuitting && (tray.hasTray() || process.platform == 'darwin')) { + if (!appQuitting && (tray.hasTray() || process.platform === 'darwin')) { // On Mac, closing the window just hides it // (this is generally how single-window Mac apps // behave, eg. Mail.app) diff --git a/electron_app/src/squirrelhooks.js b/electron_app/src/squirrelhooks.js index 15ed670f..728c9cfb 100644 --- a/electron_app/src/squirrelhooks.js +++ b/electron_app/src/squirrelhooks.js @@ -16,30 +16,30 @@ limitations under the License. const path = require('path'); const spawn = require('child_process').spawn; -const app = require('electron').app; +const {app} = require('electron'); -function run_update_exe(args, done) { +function runUpdateExe(args, done) { // Invokes Squirrel's Update.exe which will do things for us like create shortcuts // Note that there's an Update.exe in the app-x.x.x directory and one in the parent // directory: we need to run the one in the parent directory, because it discovers // information about the app by inspecting the directory it's run from. const updateExe = path.resolve(path.dirname(process.execPath), '..', 'Update.exe'); - console.log('Spawning `%s` with args `%s`', updateExe, args); + console.log(`Spawning '${updateExe}' with args '${args}'`); spawn(updateExe, args, { - detached: true + detached: true, }).on('close', done); -}; +} -function check_squirrel_hooks() { - if (process.platform != 'win32') return false; +function checkSquirrelHooks() { + if (process.platform !== 'win32') return false; const cmd = process.argv[1]; const target = path.basename(process.execPath); if (cmd === '--squirrel-install' || cmd === '--squirrel-updated') { - run_update_exe(['--createShortcut=' + target + ''], app.quit); + runUpdateExe(['--createShortcut=' + target + ''], app.quit); return true; } else if (cmd === '--squirrel-uninstall') { - run_update_exe(['--removeShortcut=' + target + ''], app.quit); + runUpdateExe(['--removeShortcut=' + target + ''], app.quit); return true; } else if (cmd === '--squirrel-obsolete') { app.quit(); @@ -48,4 +48,4 @@ function check_squirrel_hooks() { return false; } -module.exports = check_squirrel_hooks; +module.exports = checkSquirrelHooks; diff --git a/electron_app/src/tray.js b/electron_app/src/tray.js index 5409194d..9df1a0fb 100644 --- a/electron_app/src/tray.js +++ b/electron_app/src/tray.js @@ -25,9 +25,7 @@ exports.hasTray = function hasTray() { exports.create = function(win, config) { // no trays on darwin - if (process.platform === 'darwin' || trayIcon) { - return; - } + if (process.platform === 'darwin' || trayIcon) return; const toggleWin = function() { if (win.isVisible() && !win.isMinimized()) { @@ -41,12 +39,10 @@ exports.create = function(win, config) { const contextMenu = Menu.buildFromTemplate([ { - label: 'Show/Hide ' + config.brand, + label: `Show/Hide ${config.brand}`, click: toggleWin, }, - { - type: 'separator', - }, + { type: 'separator' }, { label: 'Quit', click: function() { diff --git a/electron_app/src/vectormenu.js b/electron_app/src/vectormenu.js index 70ed3ac3..f55009f7 100644 --- a/electron_app/src/vectormenu.js +++ b/electron_app/src/vectormenu.js @@ -14,170 +14,112 @@ See the License for the specific language governing permissions and limitations under the License. */ -const electron = require('electron'); +const {app, shell, Menu} = require('electron'); // Menu template from http://electron.atom.io/docs/api/menu/, edited const template = [ { label: 'Edit', submenu: [ - { - role: 'undo' - }, - { - role: 'redo' - }, - { - type: 'separator' - }, - { - role: 'cut' - }, - { - role: 'copy' - }, - { - role: 'paste' - }, - { - role: 'pasteandmatchstyle' - }, - { - role: 'delete' - }, - { - role: 'selectall' - } - ] + { role: 'undo' }, + { role: 'redo' }, + { type: 'separator' }, + { role: 'cut' }, + { role: 'copy' }, + { role: 'paste' }, + { role: 'pasteandmatchstyle' }, + { role: 'delete' }, + { role: 'selectall' }, + ], }, { label: 'View', submenu: [ - { - type: 'separator' - }, - { - role: 'resetzoom' - }, - { - role: 'zoomin' - }, - { - role: 'zoomout' - }, - { - type: 'separator' - }, - { - role: 'togglefullscreen' - }, - { - role: 'toggledevtools' - } - ] + { type: 'separator' }, + { role: 'resetzoom' }, + { role: 'zoomin' }, + { role: 'zoomout' }, + { type: 'separator' }, + { role: 'togglefullscreen' }, + { role: 'toggledevtools' }, + ], }, { role: 'window', submenu: [ - { - role: 'minimize' - }, - { - role: 'close' - } - ] + { role: 'minimize' }, + { role: 'close' }, + ], }, { role: 'help', submenu: [ { label: 'riot.im', - click () { electron.shell.openExternal('https://riot.im/') } - } - ] - } + click() { shell.openExternal('https://riot.im/'); }, + }, + ], + }, ]; // macOS has specific menu conventions... if (process.platform === 'darwin') { // first macOS menu is the name of the app - const name = electron.app.getName() + const name = app.getName(); template.unshift({ label: name, submenu: [ - { - role: 'about' - }, - { - type: 'separator' - }, + { role: 'about' }, + { type: 'separator' }, { role: 'services', - submenu: [] + submenu: [], }, - { - type: 'separator' - }, - { - role: 'hide' - }, - { - role: 'hideothers' - }, - { - role: 'unhide' - }, - { - type: 'separator' - }, - { - role: 'quit' - } - ] - }) + { type: 'separator' }, + { role: 'hide' }, + { role: 'hideothers' }, + { role: 'unhide' }, + { type: 'separator' }, + { role: 'quit' }, + ], + }); // Edit menu. // This has a 'speech' section on macOS template[1].submenu.push( - { - type: 'separator' - }, + { type: 'separator' }, { label: 'Speech', submenu: [ - { - role: 'startspeaking' - }, - { - role: 'stopspeaking' - } - ] - } - ) + { role: 'startspeaking' }, + { role: 'stopspeaking' }, + ], + }, + ); // Window menu. // This also has specific functionality on macOS template[3].submenu = [ { label: 'Close', accelerator: 'CmdOrCtrl+W', - role: 'close' + role: 'close', }, { label: 'Minimize', accelerator: 'CmdOrCtrl+M', - role: 'minimize' + role: 'minimize', }, { label: 'Zoom', - role: 'zoom' + role: 'zoom', }, { - type: 'separator' + type: 'separator', }, { label: 'Bring All to Front', - role: 'front' - } - ] + role: 'front', + }, + ]; } else { template.unshift({ label: 'File', @@ -186,12 +128,10 @@ if (process.platform === 'darwin') { /*{ role: 'about' },*/ - { - role: 'quit' - } - ] + { role: 'quit' }, + ], }); } -module.exports = electron.Menu.buildFromTemplate(template) +module.exports = Menu.buildFromTemplate(template); From 4bb054c9553cbf4b97e0bc95c266349a605de722 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 22 May 2017 19:25:18 +0100 Subject: [PATCH 069/147] electron stuff isn't actually using flow, so don't enable it Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/electron-main.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/electron_app/src/electron-main.js b/electron_app/src/electron-main.js index b58e2553..95daaa6a 100644 --- a/electron_app/src/electron-main.js +++ b/electron_app/src/electron-main.js @@ -1,5 +1,3 @@ -// @flow - /* Copyright 2016 Aviral Dasgupta Copyright 2016 OpenMarket Ltd @@ -165,7 +163,7 @@ process.on('uncaughtException', function(error) { electron.ipcMain.on('install_update', installUpdate); let focusHandlerAttached = false; -electron.ipcMain.on('setBadgeCount', function(ev, count: number) { +electron.ipcMain.on('setBadgeCount', function(ev, count) { electron.app.setBadgeCount(count); if (process.platform === 'win32' && mainWindow && !mainWindow.isFocused()) { if (count > 0) { From e0fb2fd07400cd8ae81554548080ade3b2937286 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 22 May 2017 19:25:56 +0100 Subject: [PATCH 070/147] /me forgets we don't have babel Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/vectormenu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electron_app/src/vectormenu.js b/electron_app/src/vectormenu.js index f55009f7..ab30b376 100644 --- a/electron_app/src/vectormenu.js +++ b/electron_app/src/vectormenu.js @@ -93,8 +93,8 @@ if (process.platform === 'darwin') { { role: 'startspeaking' }, { role: 'stopspeaking' }, ], - }, - ); + }); + // Window menu. // This also has specific functionality on macOS template[3].submenu = [ From 8994c2bad14294a54986bf2f4d220b0d1e85b050 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 22 May 2017 19:28:01 +0100 Subject: [PATCH 071/147] missed a concat :) Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/electron-main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron_app/src/electron-main.js b/electron_app/src/electron-main.js index 95daaa6a..5dc889b1 100644 --- a/electron_app/src/electron-main.js +++ b/electron_app/src/electron-main.js @@ -128,7 +128,7 @@ function startAutoUpdate(updateBaseUrl) { `${updateBaseUrl}macos/?localVersion=${encodeURIComponent(electron.app.getVersion())}`); } else if (process.platform === 'win32') { - electron.autoUpdater.setFeedURL(updateBaseUrl + 'win32/' + process.arch + '/'); + electron.autoUpdater.setFeedURL(`${updateBaseUrl}win32/${process.arch}/`); } else { // Squirrel / electron only supports auto-update on these two platforms. // I'm not even going to try to guess which feed style they'd use if they From 6b6fa59f3e92603465e8c89942db902ab3db6607 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 23 May 2017 14:12:53 +0100 Subject: [PATCH 072/147] Squash merge https://github.com/vector-im/riot-web/pull/3636 --- README.md | 14 +- config.sample.json | 3 +- docs/translating-dev.md | 26 + docs/translating.md | 57 + package.json | 1 + scripts/copy-res.js | 99 +- src/components/structures/BottomLeftMenu.js | 13 +- src/components/structures/RightPanel.js | 73 +- src/components/structures/RoomDirectory.js | 60 +- src/components/structures/RoomSubList.js | 11 +- src/components/structures/SearchBox.js | 3 +- .../views/context_menus/MessageContextMenu.js | 23 +- .../context_menus/RoomTileContextMenu.js | 37 +- src/components/views/elements/ImageView.js | 13 +- src/components/views/globals/MatrixToolbar.js | 3 +- .../views/login/VectorCustomServerDialog.js | 17 +- .../views/login/VectorLoginFooter.js | 3 +- .../views/messages/DateSeparator.js | 33 +- src/components/views/rooms/DNDRoomTile.js | 14 +- .../views/settings/Notifications.js | 58 +- src/i18n/basefile.json | 1 + src/i18n/be.json | 88 + src/i18n/da.json | 84 + src/i18n/de_DE.json | 122 + src/i18n/en_EN.json | 120 + src/i18n/fr.json | 66 + src/i18n/ml.json | 5 + src/i18n/pl.json | 1 + src/i18n/pt.json | 116 + src/i18n/pt_BR.json | 124 + src/i18n/ru.json | 119 + .../VectorPushRulesDefinitions.js | 1 + .../structures/login/_Login.scss | 3 +- src/vector/index.js | 46 +- yarn-error.log | 200 + yarn.lock | 6076 +++++++++++++++++ 36 files changed, 7547 insertions(+), 186 deletions(-) create mode 100644 docs/translating-dev.md create mode 100644 docs/translating.md create mode 100644 src/i18n/basefile.json create mode 100644 src/i18n/be.json create mode 100644 src/i18n/da.json create mode 100644 src/i18n/de_DE.json create mode 100644 src/i18n/en_EN.json create mode 100644 src/i18n/fr.json create mode 100644 src/i18n/ml.json create mode 100644 src/i18n/pl.json create mode 100644 src/i18n/pt.json create mode 100644 src/i18n/pt_BR.json create mode 100644 src/i18n/ru.json create mode 100644 yarn-error.log create mode 100644 yarn.lock diff --git a/README.md b/README.md index 34107873..c65cca82 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Riot Riot (formerly known as Vector) is a Matrix web client built using the Matrix React SDK (https://github.com/matrix-org/matrix-react-sdk). +[<img src="https://translate.nordgedanken.de/widgets/riot-web/-/multi-auto.svg" alt="Translationsstatus" width="340">](https://translate.nordgedanken.de/engage/riot-web/?utm_source=widget) + Getting Started =============== @@ -281,6 +283,16 @@ If any of these steps error with, `file table overflow`, you are probably on a m which has a very low limit on max open files. Run `ulimit -Sn 1024` and try again. You'll need to do this in each new terminal you open before building Riot. +How to add a new translation? +============================= + +Head to the [translating doc](docs/translating.md) + +Adding Strings to the translations (Developer Guide) +==================================================== + +Head to the [translating dev doc](docs/translating-dev.md) + Triaging issues =============== @@ -300,7 +312,7 @@ bug or feature: * feature bug severity: - + * cosmetic - feature works functionally but UI/UX is broken * critical - whole app doesn't work * major - entire feature doesn't work diff --git a/config.sample.json b/config.sample.json index 3c513f7a..e8239df9 100644 --- a/config.sample.json +++ b/config.sample.json @@ -10,5 +10,6 @@ "servers": [ "matrix.org" ] - } + }, + "languages": ["en", "de", "pt-br", "ru", "da"] } diff --git a/docs/translating-dev.md b/docs/translating-dev.md new file mode 100644 index 00000000..8bebd0bc --- /dev/null +++ b/docs/translating-dev.md @@ -0,0 +1,26 @@ +# How to translate riot-web (Dev Guide) + +## Requirements + +- A working [Development Setup](../../#setting-up-a-dev-environment) +- Be able to understand English +- Be able to understand the language you want to translate riot-web into + +## Adding new strings + +1. Check if the import ``import _t from 'counterpart-riot'`` is present. If not add it to the other import statements. +2. Add ``_t()`` to your string. (Don't forget curly braces when you assign an expression to JSX attributes in the render method) +3. Add the String to the ``en_EN.json`` file in ``src/i18n`` or if you are working in matrix-react-sdk you can find the json file in ``src/i18n/strings`` + +## Adding variables inside a string. + +1. Extend your ``_t()`` call. Instead of ``_t(STRING)`` use ``_t(STRING, {})`` +2. Decide how to name it. Please think about if the person who has to translate it can understand what it does. +3. Add it to the array in ``_t`` for example ``_t(STRING, {variable: this.variable})`` +4. Add the variable inside the string. The syntax for variables is ``%(variable)s``. Please note the s at the end. The name of the variable has to match the previous used name. + +## Things to know/Style Guides + +- Do not use it inside ``getDefaultProps`` at the point where ``getDefaultProps`` is initialized the translations aren't loaded yet and it causes missing translations. +- Do use ``Array.push()`` instead of directly defining it inside the array. Arrays are not able to access ``_t()`` at runtime. +- Do not include full stops, Emoji or similiar miscellaneous Things to the strings. They are not required to be translated. diff --git a/docs/translating.md b/docs/translating.md new file mode 100644 index 00000000..d79a5823 --- /dev/null +++ b/docs/translating.md @@ -0,0 +1,57 @@ +# How to translate riot-web + +## Requirements + +- Web Browser +- Be able to understand English +- Be able to understand the language you want to translate riot-web into + +## Step 1: Preparing your Weblate Profile + +1. Head to https://translate.nordgedanken.de and register either via Github or email +2. After register check if you got a email to verify your account and click the link (if there is none head to step 1.4) +3. Log into weblate +4. Head to https://translate.nordgedanken.de/accounts/profile/ and select the languages you know and maybe another language you know too. +6. Head to https://translate.nordgedanken.de/accounts/profile/#subscriptions and select Riot Web as Project + +## How to check if your language already is being translated + +Go to https://translate.nordgedanken.de/projects/riot-web/ and in all 3 sub projects if your language is listed. +If it is listed go to Step 2a if not go to Step 2b + +## Step 2a: Helping on existing languages. + +1. Head to one of the projects listed https://translate.nordgedanken.de/projects/riot-web/ +2. Click on the ``translate`` button on the right side of your language +3. Fill in the translations in the writeable field. You will see the original English string and the String of your second language above. + +Head to the explanations under Steb 2b + +## Step 2b: Adding a new language + +1. Go to one of the projects listed https://translate.nordgedanken.de/projects/riot-web/ +2. Click the ``Start new language`` button at the bottom +3. Select our language +4. Start translating like in 2a.3 +5. Repeat these steps for the other projects which are listed at the link of step 2b.1 +6. Add your language to the array at the [config example](../../blob/develop/config.sample.json#L14) + +### What means the green button under the text field? + +The green button let you save our translations directly. Please only use it if you are 100% sure about that translation. If you do not know a translation please DO NOT click that button. Use the arrows above the translations field and click to the right. + +### What means the yellow button under the text field? + +The yellow button has to be used if you are unsure about the translation but you have a rough idea. It ads a new suggestion to the string which can than be reviewed by others. + +### What are "%(something)s"? + +These things are variables that are filled inside the code. They can be room names, usernames or similiar. If you find one use it for changing the word order but do not delete it as thing are missing if you do so. + +### "I want to come back to this string. How?" + +You can use inside the translation field "Review needed" checkbox. It will be shown as Strings that need to be reviewed. + +### Further reading + +The official Doc provides some more in-deepth explanation on how to do translations and talks about do and don't's. You can find it at: https://docs.weblate.org/en/latest/user/translating.html diff --git a/package.json b/package.json index 79b0bc10..fcd568c2 100644 --- a/package.json +++ b/package.json @@ -56,6 +56,7 @@ "babel-runtime": "^6.11.6", "browser-request": "^0.3.3", "classnames": "^2.1.2", + "counterpart-riot": "^0.17.9", "draft-js": "^0.8.1", "extract-text-webpack-plugin": "^0.9.1", "favico.js": "^0.3.10", diff --git a/scripts/copy-res.js b/scripts/copy-res.js index d3a2ee5e..4736d401 100755 --- a/scripts/copy-res.js +++ b/scripts/copy-res.js @@ -13,12 +13,32 @@ const COPY_LIST = [ ["src/skins/vector/{fonts,img}/**", "webapp"], ["node_modules/emojione/assets/svg/*", "webapp/emojione/svg/"], ["node_modules/emojione/assets/png/*", "webapp/emojione/png/"], - ["./config.json", "webapp", {directwatch: 1}], + ["./config.json", "webapp", { directwatch: 1 }], + ["src/i18n/", "webapp/i18n/", { languages: 1 }], + ["node_modules/matrix-react-sdk/src/i18n/strings/", "webapp/i18n/", { languages: 1 }], ]; const parseArgs = require('minimist'); const Cpx = require('cpx'); const chokidar = require('chokidar'); +const fs = require('fs'); +const rimraf = require('rimraf'); + +// cleanup language files before copying them. +//rimraf("webapp/", function () { console.log('cleanup language files'); }); + +//From http://stackoverflow.com/a/20525865/4929236 +function generateFileArray(dir, files_) { + files_ = files_ || []; + var files = fs.readdirSync(dir); + for (var i in files) { + var name = files[i]; + if (name != 'basefile.json') { + files_.push(name); + } + } + return files_; +} const argv = parseArgs( process.argv.slice(2), {} @@ -45,8 +65,32 @@ function next(i, err) { const source = ent[0]; const dest = ent[1]; const opts = ent[2] || {}; + let cpx = undefined; - const cpx = new Cpx.Cpx(source, dest); + if (opts.languages) { + const sourceFiles = generateFileArray(source); + let Sourcelanguages = {}; + if (!fs.existsSync(dest)) { + fs.mkdirSync(dest); + } + sourceFiles.forEach(file => { + const fileContents = fs.readFileSync(source + file).toString(); + Sourcelanguages[file] = JSON.parse(fileContents); + }); + sourceFiles.forEach(file => { + if (!fs.existsSync(dest + file)) { + let o = Object.assign({}, Sourcelanguages[file]); + fs.writeFileSync(dest + file, JSON.stringify(o, null, 4)); + } else { + const fileContents = fs.readFileSync(dest + file).toString(); + let o = Object.assign(JSON.parse(fileContents), Sourcelanguages[file]); + fs.writeFileSync(dest + file, JSON.stringify(o, null, 4)); + } + }); + + } else { + cpx = new Cpx.Cpx(source, dest); + } if (verbose) { cpx.on("copy", (event) => { @@ -57,7 +101,7 @@ function next(i, err) { }); } - const cb = (err) => {next(i+1, err)}; + const cb = (err) => { next(i + 1, err) }; if (watch) { if (opts.directwatch) { @@ -65,20 +109,65 @@ function next(i, err) { // which in the case of config.json is '.', which inevitably takes // ages to crawl. So we create our own watcher on the files // instead. - const copy = () => {cpx.copy(errCheck)}; + const copy = () => { cpx.copy(errCheck) }; chokidar.watch(source) .on('add', copy) .on('change', copy) .on('ready', cb) .on('error', errCheck); + } else if (opts.languages) { + if (verbose) { + console.log('don\'t copy language file'); + } + next(i + 1, err); } else { cpx.on('watch-ready', cb); cpx.on("watch-error", cb); cpx.watch(); } + } else if (opts.languages) { + if (verbose) { + console.log('don\'t copy language file'); + } + next(i + 1, err); } else { cpx.copy(cb); } } -next(0); +// Generate Language List + +const testFolder = 'src/i18n/'; +let languages = {}; +// Check if webapp exists +if (!fs.existsSync('webapp')) { + fs.mkdirSync('webapp'); +} +// Check if i18n exists +if (!fs.existsSync('webapp/i18n/')) { + fs.mkdirSync('webapp/i18n/'); +} + +if (!fs.existsSync('webapp/i18n/languages.json')) { + rimraf("webapp/i18n/languages.json", function() { console.log('cleanup languages.json file'); }); +} + +fs.readdir(testFolder, function(err, files) { + if (err) { + throw err; + } + files.forEach(function(file) { + var normalizedLanguage = file.toLowerCase().replace("_", "-").split('.json')[0]; + var languageParts = normalizedLanguage.split('-'); + if (file != 'basefile.json') { + if (languageParts.length == 2 && languageParts[0] == languageParts[1]) { + languages[languageParts[0]] = file; + } else { + languages[normalizedLanguage] = file; + } + } + }); + fs.writeFile('webapp/i18n/languages.json', JSON.stringify(languages, null, 4)); +}) + +next(0); \ No newline at end of file diff --git a/src/components/structures/BottomLeftMenu.js b/src/components/structures/BottomLeftMenu.js index f378cac6..57da85eb 100644 --- a/src/components/structures/BottomLeftMenu.js +++ b/src/components/structures/BottomLeftMenu.js @@ -18,7 +18,8 @@ limitations under the License. var React = require('react'); var ReactDOM = require('react-dom'); -var sdk = require('matrix-react-sdk') +var sdk = require('matrix-react-sdk'); +import _t from 'counterpart-riot'; var dis = require('matrix-react-sdk/lib/dispatcher'); var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); @@ -120,7 +121,7 @@ module.exports = React.createClass({ homeButton = ( <AccessibleButton className="mx_BottomLeftMenu_homePage" onClick={ this.onHomeClick } onMouseEnter={ this.onHomeMouseEnter } onMouseLeave={ this.onHomeMouseLeave } > <TintableSvg src="img/icons-home.svg" width="25" height="25" /> - { this.getLabel("Welcome page", this.state.homeHover) } + { this.getLabel(_t("Welcome page"), this.state.homeHover) } </AccessibleButton> ); } @@ -131,19 +132,19 @@ module.exports = React.createClass({ { homeButton } <AccessibleButton className="mx_BottomLeftMenu_people" onClick={ this.onPeopleClick } onMouseEnter={ this.onPeopleMouseEnter } onMouseLeave={ this.onPeopleMouseLeave } > <TintableSvg src="img/icons-people.svg" width="25" height="25" /> - { this.getLabel("Start chat", this.state.peopleHover) } + { this.getLabel(_t("Start chat"), this.state.peopleHover) } </AccessibleButton> <AccessibleButton className="mx_BottomLeftMenu_directory" onClick={ this.onDirectoryClick } onMouseEnter={ this.onDirectoryMouseEnter } onMouseLeave={ this.onDirectoryMouseLeave } > <TintableSvg src="img/icons-directory.svg" width="25" height="25"/> - { this.getLabel("Room directory", this.state.directoryHover) } + { this.getLabel(_t("Room directory"), this.state.directoryHover) } </AccessibleButton> <AccessibleButton className="mx_BottomLeftMenu_createRoom" onClick={ this.onRoomsClick } onMouseEnter={ this.onRoomsMouseEnter } onMouseLeave={ this.onRoomsMouseLeave } > <TintableSvg src="img/icons-create-room.svg" width="25" height="25" /> - { this.getLabel("Create new room", this.state.roomsHover) } + { this.getLabel(_t("Create new room"), this.state.roomsHover) } </AccessibleButton> <AccessibleButton className="mx_BottomLeftMenu_settings" onClick={ this.onSettingsClick } onMouseEnter={ this.onSettingsMouseEnter } onMouseLeave={ this.onSettingsMouseLeave } > <TintableSvg src="img/icons-settings.svg" width="25" height="25" /> - { this.getLabel("Settings", this.state.settingsHover) } + { this.getLabel(_t("Settings"), this.state.settingsHover) } </AccessibleButton> </div> </div> diff --git a/src/components/structures/RightPanel.js b/src/components/structures/RightPanel.js index 04a98119..6a099bf3 100644 --- a/src/components/structures/RightPanel.js +++ b/src/components/structures/RightPanel.js @@ -16,14 +16,15 @@ limitations under the License. 'use strict'; -var React = require('react'); -var sdk = require('matrix-react-sdk'); -var Matrix = require("matrix-js-sdk"); -var dis = require('matrix-react-sdk/lib/dispatcher'); -var MatrixClientPeg = require("matrix-react-sdk/lib/MatrixClientPeg"); -var rate_limited_func = require('matrix-react-sdk/lib/ratelimitedfunc'); -var Modal = require('matrix-react-sdk/lib/Modal'); -var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); +import React from 'react'; +import _t from 'counterpart-riot'; +import sdk from 'matrix-react-sdk'; +import Matrix from "matrix-js-sdk"; +import dis from 'matrix-react-sdk/lib/dispatcher'; +import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg'; +import rate_limited_func from 'matrix-react-sdk/lib/ratelimitedfunc'; +import Modal from 'matrix-react-sdk/lib/Modal'; +import AccessibleButton from 'matrix-react-sdk/lib/components/views/elements/AccessibleButton'; module.exports = React.createClass({ displayName: 'RightPanel', @@ -34,7 +35,7 @@ module.exports = React.createClass({ collapsed: React.PropTypes.bool, // currently unused property to request for a minimized view of the panel }, - Phase : { + Phase: { MemberList: 'MemberList', FilePanel: 'FilePanel', NotificationPanel: 'NotificationPanel', @@ -91,8 +92,8 @@ module.exports = React.createClass({ if (MatrixClientPeg.get().isGuest()) { var NeedToRegisterDialog = sdk.getComponent("dialogs.NeedToRegisterDialog"); Modal.createDialog(NeedToRegisterDialog, { - title: "Please Register", - description: "Guest users can't invite users. Please register to invite." + title: _t('Please Register'), + description: _t('Guest users can\'t invite users. Please register to invite') + '.' }); return; } @@ -188,7 +189,7 @@ module.exports = React.createClass({ <div className="mx_RightPanel_icon" > <TintableSvg src="img/icon-invite-people.svg" width="35" height="35" /> </div> - <div className="mx_RightPanel_message">Invite to this room</div> + <div className="mx_RightPanel_message">{ _t('Invite to this room') }</div> </AccessibleButton>; } @@ -197,30 +198,30 @@ module.exports = React.createClass({ if (this.props.roomId) { buttonGroup = <div className="mx_RightPanel_headerButtonGroup"> - <AccessibleButton className="mx_RightPanel_headerButton" - title="Members" onClick={ this.onMemberListButtonClick }> - <div className="mx_RightPanel_headerButton_badge">{ membersBadge ? membersBadge : <span> </span>}</div> - <TintableSvg src="img/icons-people.svg" width="25" height="25"/> - { membersHighlight } - </AccessibleButton> - <AccessibleButton - className="mx_RightPanel_headerButton mx_RightPanel_filebutton" - title="Files" onClick={ this.onFileListButtonClick }> - <div className="mx_RightPanel_headerButton_badge"> </div> - <TintableSvg src="img/icons-files.svg" width="25" height="25"/> - { filesHighlight } - </AccessibleButton> - <AccessibleButton - className="mx_RightPanel_headerButton mx_RightPanel_notificationbutton" - title="Notifications" onClick={ this.onNotificationListButtonClick }> - <div className="mx_RightPanel_headerButton_badge"> </div> - <TintableSvg src="img/icons-notifications.svg" width="25" height="25"/> - { notificationsHighlight } - </AccessibleButton> - <div className="mx_RightPanel_headerButton mx_RightPanel_collapsebutton" title="Hide panel" onClick={ this.onCollapseClick }> - <TintableSvg src="img/minimise.svg" width="10" height="16"/> - </div> - </div>; + <AccessibleButton className="mx_RightPanel_headerButton" + title={ _t('Members') } onClick={ this.onMemberListButtonClick }> + <div className="mx_RightPanel_headerButton_badge">{ membersBadge ? membersBadge : <span> </span>}</div> + <TintableSvg src="img/icons-people.svg" width="25" height="25"/> + { membersHighlight } + </AccessibleButton> + <AccessibleButton + className="mx_RightPanel_headerButton mx_RightPanel_filebutton" + title={ _t('Files') } onClick={ this.onFileListButtonClick }> + <div className="mx_RightPanel_headerButton_badge"> </div> + <TintableSvg src="img/icons-files.svg" width="25" height="25"/> + { filesHighlight } + </AccessibleButton> + <AccessibleButton + className="mx_RightPanel_headerButton mx_RightPanel_notificationbutton" + title={ _t('Notifications') } onClick={ this.onNotificationListButtonClick }> + <div className="mx_RightPanel_headerButton_badge"> </div> + <TintableSvg src="img/icons-notifications.svg" width="25" height="25"/> + { notificationsHighlight } + </AccessibleButton> + <div className="mx_RightPanel_headerButton mx_RightPanel_collapsebutton" title="Hide panel" onClick={ this.onCollapseClick }> + <TintableSvg src="img/minimise.svg" width="10" height="16"/> + </div> + </div>; } if (!this.props.collapsed) { diff --git a/src/components/structures/RoomDirectory.js b/src/components/structures/RoomDirectory.js index 523ee56e..efd61ef9 100644 --- a/src/components/structures/RoomDirectory.js +++ b/src/components/structures/RoomDirectory.js @@ -30,6 +30,8 @@ var linkifyMatrix = require('matrix-react-sdk/lib/linkify-matrix'); var sanitizeHtml = require('sanitize-html'); var q = require('q'); +import _t from 'counterpart-riot'; + import {instanceForInstanceId, protocolNameForInstanceId} from '../../utils/DirectoryUtils'; linkifyMatrix(linkify); @@ -80,8 +82,8 @@ module.exports = React.createClass({ } const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { - title: "Failed to get protocol list from Home Server", - description: "The Home Server may be too old to support third party networks", + title: _t('Failed to get protocol list from Home Server'), + description: _t('The Home Server may be too old to support third party networks'), }); }); @@ -176,8 +178,8 @@ module.exports = React.createClass({ console.error("Failed to get publicRooms: %s", JSON.stringify(err)); var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { - title: "Failed to get public room list", - description: ((err && err.message) ? err.message : "The server may be unavailable or overloaded"), + title: _t('Failed to get public room list'), + description: ((err && err.message) ? err.message : _t('The server may be unavailable or overloaded')) }); }); }, @@ -191,31 +193,31 @@ module.exports = React.createClass({ */ removeFromDirectory: function(room) { var alias = get_display_alias_for_room(room); - var name = room.name || alias || "Unnamed room"; + var name = room.name || alias || _t('Unnamed room'); var QuestionDialog = sdk.getComponent("dialogs.QuestionDialog"); var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); var desc; if (alias) { - desc = `Delete the room alias '${alias}' and remove '${name}' from the directory?`; + desc = _t('Delete the room alias %(alias)s and remove %(name)s from the directory?', {alias: alias, name: name}); } else { - desc = `Remove '${name}' from the directory?`; + desc = _t('Remove %(name)s from the directory?', {name: name}); } Modal.createDialog(QuestionDialog, { - title: "Remove from Directory", + title: _t('Remove from Directory'), description: desc, onFinished: (should_delete) => { if (!should_delete) return; var Loader = sdk.getComponent("elements.Spinner"); var modal = Modal.createDialog(Loader); - var step = `remove '${name}' from the directory.`; + var step = _t('remove %(name)s from the directory', {name: name}) + '.'; MatrixClientPeg.get().setRoomDirectoryVisibility(room.room_id, 'private').then(() => { if (!alias) return; - step = 'delete the alias.'; + step = _t('delete the alias') + '.'; return MatrixClientPeg.get().deleteAlias(alias); }).done(() => { modal.close(); @@ -225,8 +227,8 @@ module.exports = React.createClass({ this.refreshRoomList(); console.error("Failed to " + step + ": " + err); Modal.createDialog(ErrorDialog, { - title: "Failed to " + step, - description: ((err && err.message) ? err.message : "The server may be unavailable or overloaded"), + title: _t('Error'), + description: ((err && err.message) ? err.message : _t('The server may be unavailable or overloaded')) }); }); } @@ -314,8 +316,8 @@ module.exports = React.createClass({ if (!fields) { const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { - title: "Unable to join network", - description: "Riot does not know how to join a room on this network", + title: _t('Unable to join network'), + description: _t('Riot does not know how to join a room on this network'), }); return; } @@ -325,15 +327,15 @@ module.exports = React.createClass({ } else { const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { - title: "Room not found", - description: "Couldn't find a matching Matrix room", + title: _t('Room not found'), + description: _t('Couldn\'t find a matching Matrix room'), }); } }, (e) => { const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { - title: "Fetching third party location failed", - description: "Unable to look up room ID from server", + title: _t('Fetching third party location failed'), + description: _t('Unable to look up room ID from server'), }); }); } @@ -353,8 +355,8 @@ module.exports = React.createClass({ if (!room.world_readable && !room.guest_can_join) { var NeedToRegisterDialog = sdk.getComponent("dialogs.NeedToRegisterDialog"); Modal.createDialog(NeedToRegisterDialog, { - title: "Failed to join the room", - description: "This room is inaccessible to guests. You may be able to join if you register." + title: _t('Failed to join the room'), + description: _t('This room is inaccessible to guests. You may be able to join if you register') + '.' }); return; } @@ -368,7 +370,7 @@ module.exports = React.createClass({ avatarUrl: room.avatar_url, // XXX: This logic is duplicated from the JS SDK which // would normally decide what the name is. - name: room.name || room_alias || "Unnamed room", + name: room.name || room_alias || _t('Unnamed room'), }; } // It's not really possible to join Matrix rooms by ID because the HS has no way to know @@ -393,18 +395,18 @@ module.exports = React.createClass({ var self = this; var guestRead, guestJoin, perms; for (var i = 0; i < rooms.length; i++) { - var name = rooms[i].name || get_display_alias_for_room(rooms[i]) || "Unnamed room"; + var name = rooms[i].name || get_display_alias_for_room(rooms[i]) || _t('Unnamed room'); guestRead = null; guestJoin = null; if (rooms[i].world_readable) { guestRead = ( - <div className="mx_RoomDirectory_perm">World readable</div> + <div className="mx_RoomDirectory_perm">{ _t('World readable') }</div> ); } if (rooms[i].guest_can_join) { guestJoin = ( - <div className="mx_RoomDirectory_perm">Guests can join</div> + <div className="mx_RoomDirectory_perm">{ _t('Guests can join') }</div> ); } @@ -493,7 +495,7 @@ module.exports = React.createClass({ if (this.state.protocolsLoading) { return ( <div className="mx_RoomDirectory"> - <SimpleRoomHeader title="Directory" /> + <SimpleRoomHeader title={ _t('Directory') } /> <Loader /> </div> ); @@ -511,7 +513,7 @@ module.exports = React.createClass({ // request from the scrollpanel because there isn't one let scrollpanel_content; if (rows.length == 0) { - scrollpanel_content = <i>No rooms to show</i>; + scrollpanel_content = <i>{ _t('No rooms to show') }</i>; } else { scrollpanel_content = <table ref="directory_table" className="mx_RoomDirectory_table"> <tbody> @@ -545,9 +547,9 @@ module.exports = React.createClass({ } - let placeholder = 'Search for a room'; + let placeholder = _t('Search for a room'); if (!this.state.instanceId) { - placeholder = '#example:' + this.state.roomServer; + placeholder = _t('#example') + ':' + this.state.roomServer; } else if (instance_expected_field_type) { placeholder = instance_expected_field_type.placeholder; } @@ -564,7 +566,7 @@ module.exports = React.createClass({ const DirectorySearchBox = sdk.getComponent('elements.DirectorySearchBox'); return ( <div className="mx_RoomDirectory"> - <SimpleRoomHeader title="Directory" icon="img/icons-directory.svg"/> + <SimpleRoomHeader title={ _t('Directory') } icon="img/icons-directory.svg" /> <div className="mx_RoomDirectory_list"> <div className="mx_RoomDirectory_listheader"> <DirectorySearchBox diff --git a/src/components/structures/RoomSubList.js b/src/components/structures/RoomSubList.js index 6490e456..2dec274e 100644 --- a/src/components/structures/RoomSubList.js +++ b/src/components/structures/RoomSubList.js @@ -20,7 +20,8 @@ var React = require('react'); var ReactDOM = require('react-dom'); var classNames = require('classnames'); var DropTarget = require('react-dnd').DropTarget; -var sdk = require('matrix-react-sdk') +var sdk = require('matrix-react-sdk'); +import _t from 'counterpart-riot'; var dis = require('matrix-react-sdk/lib/dispatcher'); var Unread = require('matrix-react-sdk/lib/Unread'); var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg'); @@ -463,7 +464,7 @@ var RoomSubList = React.createClass({ return ( <AccessibleButton className="mx_RoomSubList_ellipsis" onClick={this._showFullMemberList}> <div className="mx_RoomSubList_line"></div> - <div className="mx_RoomSubList_more">more</div> + <div className="mx_RoomSubList_more">{ _t("more") }</div> <div className={ badgeClasses }>{ content }</div> </AccessibleButton> ); @@ -509,8 +510,8 @@ var RoomSubList = React.createClass({ var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); console.error("Failed to add tag " + self.props.tagName + " to room" + err); Modal.createDialog(ErrorDialog, { - title: "Failed to add tag " + self.props.tagName + " to room", - description: ((err && err.message) ? err.message : "Operation failed"), + title: _t('Failed to add tag %(tagName)s to room', {tagName: self.props.tagName}), + description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); break; @@ -530,7 +531,7 @@ var RoomSubList = React.createClass({ var target; if (this.state.sortedList.length == 0 && this.props.editable) { - target = <RoomDropTarget label={ 'Drop here to ' + this.props.verb }/>; + target = <RoomDropTarget label={ _t("Drop here %(toAction)s", {toAction: this.props.verb}) }/>; } if (this.state.sortedList.length > 0 || this.props.editable) { diff --git a/src/components/structures/SearchBox.js b/src/components/structures/SearchBox.js index 729e7ef7..42777ed0 100644 --- a/src/components/structures/SearchBox.js +++ b/src/components/structures/SearchBox.js @@ -17,6 +17,7 @@ limitations under the License. 'use strict'; var React = require('react'); +import _t from 'counterpart-riot'; var sdk = require('matrix-react-sdk') var dis = require('matrix-react-sdk/lib/dispatcher'); var rate_limited_func = require('matrix-react-sdk/lib/ratelimitedfunc'); @@ -134,7 +135,7 @@ module.exports = React.createClass({ className="mx_SearchBox_search" value={ this.state.searchTerm } onChange={ this.onChange } - placeholder="Filter room names" + placeholder={ _t('Filter room names') } /> ]; } diff --git a/src/components/views/context_menus/MessageContextMenu.js b/src/components/views/context_menus/MessageContextMenu.js index db416b8a..73934cab 100644 --- a/src/components/views/context_menus/MessageContextMenu.js +++ b/src/components/views/context_menus/MessageContextMenu.js @@ -21,6 +21,7 @@ var React = require('react'); var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg'); var dis = require('matrix-react-sdk/lib/dispatcher'); var sdk = require('matrix-react-sdk'); +import _t from 'counterpart-riot'; var Modal = require('matrix-react-sdk/lib/Modal'); var Resend = require("matrix-react-sdk/lib/Resend"); import * as UserSettingsStore from 'matrix-react-sdk/lib/UserSettingsStore'; @@ -74,8 +75,8 @@ module.exports = React.createClass({ // display error message stating you couldn't delete this. var code = e.errcode || e.statusCode; Modal.createDialog(ErrorDialog, { - title: "Error", - description: "You cannot delete this message. (" + code + ")" + title: _t('Error'), + description: _t('You cannot delete this message. (%(code)s)', {code: code}) }); }).done(); }, @@ -121,7 +122,7 @@ module.exports = React.createClass({ if (eventStatus === 'not_sent') { resendButton = ( <div className="mx_MessageContextMenu_field" onClick={this.onResendClick}> - Resend + { _t('Resend') } </div> ); } @@ -129,7 +130,7 @@ module.exports = React.createClass({ if (!eventStatus && !this.props.mxEvent.isRedacted()) { // sent and not redacted redactButton = ( <div className="mx_MessageContextMenu_field" onClick={this.onRedactClick}> - Redact + { _t('Redact') } </div> ); } @@ -137,21 +138,21 @@ module.exports = React.createClass({ if (eventStatus === "queued" || eventStatus === "not_sent") { cancelButton = ( <div className="mx_MessageContextMenu_field" onClick={this.onCancelSendClick}> - Cancel Sending + { _t('Cancel Sending') } </div> ); } viewSourceButton = ( <div className="mx_MessageContextMenu_field" onClick={this.onViewSourceClick}> - View Source + { _t('View Source') } </div> ); if (this.props.mxEvent.getType() !== this.props.mxEvent.getWireType()) { viewClearSourceButton = ( <div className="mx_MessageContextMenu_field" onClick={this.onViewClearSourceClick}> - View Decrypted Source + { _t('View Decrypted Source') } </div> ); } @@ -160,7 +161,7 @@ module.exports = React.createClass({ if (this.props.eventTileOps.isWidgetHidden()) { unhidePreviewButton = ( <div className="mx_MessageContextMenu_field" onClick={this.onUnhidePreviewClick}> - Unhide Preview + { _t('Unhide Preview') } </div> ) } @@ -170,13 +171,13 @@ module.exports = React.createClass({ permalinkButton = ( <div className="mx_MessageContextMenu_field"> <a href={ "https://matrix.to/#/" + this.props.mxEvent.getRoomId() +"/"+ this.props.mxEvent.getId() } - target="_blank" rel="noopener" onClick={ this.closeMenu }>Permalink</a> + target="_blank" rel="noopener" onClick={ this.closeMenu }>{ _t('Permalink') }</a> </div> ); const quoteButton = ( <div className="mx_MessageContextMenu_field" onClick={this.onQuoteClick}> - Quote + { _t('Quote') } </div> ); @@ -185,7 +186,7 @@ module.exports = React.createClass({ externalURLButton = ( <div className="mx_MessageContextMenu_field"> <a href={ this.props.mxEvent.event.content.external_url } - rel="noopener" target="_blank" onClick={ this.closeMenu }>Source URL</a> + rel="noopener" target="_blank" onClick={ this.closeMenu }>{ _t('Source URL') }</a> </div> ); } diff --git a/src/components/views/context_menus/RoomTileContextMenu.js b/src/components/views/context_menus/RoomTileContextMenu.js index 7efa6848..4401e264 100644 --- a/src/components/views/context_menus/RoomTileContextMenu.js +++ b/src/components/views/context_menus/RoomTileContextMenu.js @@ -21,6 +21,7 @@ import q from 'q'; import React from 'react'; import classNames from 'classnames'; import sdk from 'matrix-react-sdk'; +import _t from 'counterpart-riot'; import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg'; import dis from 'matrix-react-sdk/lib/dispatcher'; import DMRoomMap from 'matrix-react-sdk/lib/utils/DMRoomMap'; @@ -70,8 +71,8 @@ module.exports = React.createClass({ }).fail(function(err) { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { - title: "Failed to remove tag " + tagNameOff + " from room", - description: ((err && err.message) ? err.message : "Operation failed"), + title: _t('Failed to remove tag %(tagName)s from room', {tagName: tagNameOff}), + description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); } @@ -87,8 +88,8 @@ module.exports = React.createClass({ }).fail(function(err) { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { - title: "Failed to add tag " + tagNameOn + " to room", - description: ((err && err.message) ? err.message : "Operation failed"), + title: _t('Failed to remove tag %(tagName)s from room', {tagName: tagNameOn}), + description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); } @@ -148,8 +149,8 @@ module.exports = React.createClass({ }, (err) => { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { - title: "Failed to set Direct Message status of room", - description: ((err && err.message) ? err.message : "Operation failed"), + title: _t('Failed to set Direct Message status of room'), + description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); }, @@ -187,8 +188,8 @@ module.exports = React.createClass({ var errCode = err.errcode || "unknown error code"; var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { - title: `Failed to forget room (${errCode})`, - description: ((err && err.message) ? err.message : "Operation failed"), + title: _t('Failed to forget room %(errCode)s', {errCode: errCode}), + description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); @@ -274,22 +275,22 @@ module.exports = React.createClass({ <div className={ alertMeClasses } onClick={this._onClickAlertMe} > <img className="mx_RoomTileContextMenu_notif_activeIcon" src="img/notif-active.svg" width="12" height="12" /> <img className="mx_RoomTileContextMenu_notif_icon mx_filterFlipColor" src="img/icon-context-mute-off-copy.svg" width="16" height="12" /> - All messages (loud) + { _t('All messages (loud)') } </div> <div className={ allNotifsClasses } onClick={this._onClickAllNotifs} > <img className="mx_RoomTileContextMenu_notif_activeIcon" src="img/notif-active.svg" width="12" height="12" /> <img className="mx_RoomTileContextMenu_notif_icon mx_filterFlipColor" src="img/icon-context-mute-off.svg" width="16" height="12" /> - All messages + { _t('All messages') } </div> <div className={ mentionsClasses } onClick={this._onClickMentions} > <img className="mx_RoomTileContextMenu_notif_activeIcon" src="img/notif-active.svg" width="12" height="12" /> <img className="mx_RoomTileContextMenu_notif_icon mx_filterFlipColor" src="img/icon-context-mute-mentions.svg" width="16" height="12" /> - Mentions only + { _t('Mentions only') } </div> <div className={ muteNotifsClasses } onClick={this._onClickMute} > <img className="mx_RoomTileContextMenu_notif_activeIcon" src="img/notif-active.svg" width="12" height="12" /> <img className="mx_RoomTileContextMenu_notif_icon mx_filterFlipColor" src="img/icon-context-mute.svg" width="16" height="12" /> - Mute + { _t('Mute') } </div> </div> ); @@ -306,16 +307,16 @@ module.exports = React.createClass({ switch (membership) { case "join": leaveClickHandler = this._onClickLeave; - leaveText = "Leave"; + leaveText = _t('Leave'); break; case "leave": case "ban": leaveClickHandler = this._onClickForget; - leaveText = "Forget"; + leaveText = _t('Forget'); break; case "invite": leaveClickHandler = this._onClickReject; - leaveText = "Reject"; + leaveText = _t('Reject'); break; } @@ -353,17 +354,17 @@ module.exports = React.createClass({ <div className={ favouriteClasses } onClick={this._onClickFavourite} > <img className="mx_RoomTileContextMenu_tag_icon" src="img/icon_context_fave.svg" width="15" height="15" /> <img className="mx_RoomTileContextMenu_tag_icon_set" src="img/icon_context_fave_on.svg" width="15" height="15" /> - Favourite + { _t('Favourite') } </div> <div className={ lowPriorityClasses } onClick={this._onClickLowPriority} > <img className="mx_RoomTileContextMenu_tag_icon" src="img/icon_context_low.svg" width="15" height="15" /> <img className="mx_RoomTileContextMenu_tag_icon_set" src="img/icon_context_low_on.svg" width="15" height="15" /> - Low Priority + { _t('Low Priority') } </div> <div className={ dmClasses } onClick={this._onClickDM} > <img className="mx_RoomTileContextMenu_tag_icon" src="img/icon_context_person.svg" width="15" height="15" /> <img className="mx_RoomTileContextMenu_tag_icon_set" src="img/icon_context_person_on.svg" width="15" height="15" /> - Direct Chat + { _t('Direct Chat') } </div> </div> ); diff --git a/src/components/views/elements/ImageView.js b/src/components/views/elements/ImageView.js index ab3e9ee8..187a7bfc 100644 --- a/src/components/views/elements/ImageView.js +++ b/src/components/views/elements/ImageView.js @@ -25,6 +25,7 @@ var filesize = require('filesize'); var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); const Modal = require('matrix-react-sdk/lib/Modal'); const sdk = require('matrix-react-sdk'); +import _t from 'counterpart-riot'; module.exports = React.createClass({ displayName: 'ImageView', @@ -76,8 +77,8 @@ module.exports = React.createClass({ // display error message stating you couldn't delete this. var code = e.errcode || e.statusCode; Modal.createDialog(ErrorDialog, { - title: "Error", - description: "You cannot delete this image. (" + code + ")" + title: _t('Error'), + description: _t('You cannot delete this image. (%(code)s)', {code: code}) }); }).done(); } @@ -150,14 +151,14 @@ module.exports = React.createClass({ var eventMeta; if(showEventMeta) { eventMeta = (<div className="mx_ImageView_metadata"> - Uploaded on { DateUtils.formatDate(new Date(this.props.mxEvent.getTs())) } by { this.props.mxEvent.getSender() } + { _t('Uploaded on %(date)s by %(user)s', {date: DateUtils.formatDate(new Date(this.props.mxEvent.getTs())), user: this.props.mxEvent.getSender()}) } </div>); } var eventRedact; if(showEventMeta) { eventRedact = (<div className="mx_ImageView_button" onClick={this.onRedactClick}> - Redact + { _t('Redact') } </div>); } @@ -169,7 +170,7 @@ module.exports = React.createClass({ <img src={this.props.src} style={style}/> <div className="mx_ImageView_labelWrapper"> <div className="mx_ImageView_label"> - <AccessibleButton className="mx_ImageView_cancel" onClick={ this.props.onFinished }><img src="img/cancel-white.svg" width="18" height="18" alt="Close"/></AccessibleButton> + <AccessibleButton className="mx_ImageView_cancel" onClick={ this.props.onFinished }><img src="img/cancel-white.svg" width="18" height="18" alt={ _t('Close') }/></AccessibleButton> <div className="mx_ImageView_shim"> </div> <div className="mx_ImageView_name"> @@ -178,7 +179,7 @@ module.exports = React.createClass({ { eventMeta } <a className="mx_ImageView_link" href={ this.props.src } download={ this.props.name } target="_blank" rel="noopener"> <div className="mx_ImageView_download"> - Download this file<br/> + { _t('Download this file') }<br/> <span className="mx_ImageView_size">{ size_res }</span> </div> </a> diff --git a/src/components/views/globals/MatrixToolbar.js b/src/components/views/globals/MatrixToolbar.js index dbe4196a..aef32d99 100644 --- a/src/components/views/globals/MatrixToolbar.js +++ b/src/components/views/globals/MatrixToolbar.js @@ -17,6 +17,7 @@ limitations under the License. 'use strict'; var React = require('react'); +import _t from 'counterpart-riot'; var Notifier = require("matrix-react-sdk/lib/Notifier"); var sdk = require('matrix-react-sdk') var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); @@ -37,7 +38,7 @@ module.exports = React.createClass({ <div className="mx_MatrixToolbar"> <img className="mx_MatrixToolbar_warning" src="img/warning.svg" width="24" height="23" alt="/!\"/> <div className="mx_MatrixToolbar_content"> - You are not receiving desktop notifications. <a className="mx_MatrixToolbar_link" onClick={ this.onClick }>Enable them now</a> + { _t('You are not receiving desktop notifications') } <a className="mx_MatrixToolbar_link" onClick={ this.onClick }> { _t('Enable them now') }</a> </div> <AccessibleButton className="mx_MatrixToolbar_close" onClick={ this.hideToolbar } ><img src="img/cancel.svg" width="18" height="18" /></AccessibleButton> </div> diff --git a/src/components/views/login/VectorCustomServerDialog.js b/src/components/views/login/VectorCustomServerDialog.js index 65ec1f84..1190c69e 100644 --- a/src/components/views/login/VectorCustomServerDialog.js +++ b/src/components/views/login/VectorCustomServerDialog.js @@ -15,6 +15,7 @@ limitations under the License. */ var React = require("react"); +import _t from 'counterpart-riot'; module.exports = React.createClass({ displayName: 'VectorCustomServerDialog', @@ -26,24 +27,14 @@ module.exports = React.createClass({ return ( <div className="mx_ErrorDialog"> <div className="mx_Dialog_title"> - Custom Server Options + { _t('Custom Server Options') } </div> <div className="mx_Dialog_content"> - <span> - You can use the custom server options to sign into other Matrix - servers by specifying a different Home server URL. - <br/> - This allows you to use Riot with an existing Matrix account on - a different home server. - <br/> - <br/> - You can also set a custom identity server but you won't be able to - invite users by email address, or be invited by email address yourself. - </span> + <span dangerouslySetInnerHTML={{__html: _t('customServer_text')}} /> </div> <div className="mx_Dialog_buttons"> <button onClick={this.props.onFinished} autoFocus={true}> - Dismiss + { _t('Dismiss') } </button> </div> </div> diff --git a/src/components/views/login/VectorLoginFooter.js b/src/components/views/login/VectorLoginFooter.js index 1382a862..32929d43 100644 --- a/src/components/views/login/VectorLoginFooter.js +++ b/src/components/views/login/VectorLoginFooter.js @@ -17,6 +17,7 @@ limitations under the License. 'use strict'; var React = require('react'); +import _t from 'counterpart-riot'; module.exports = React.createClass({ displayName: 'VectorLoginFooter', @@ -30,7 +31,7 @@ module.exports = React.createClass({ <a href="https://medium.com/@RiotChat">blog</a> · <a href="https://twitter.com/@RiotChat">twitter</a> · <a href="https://github.com/vector-im/vector-web">github</a> · - <a href="https://matrix.org">powered by Matrix</a> + <a href="https://matrix.org">{ _t('powered by Matrix') }</a> </div> ); } diff --git a/src/components/views/messages/DateSeparator.js b/src/components/views/messages/DateSeparator.js index 89cc44db..0810b18b 100644 --- a/src/components/views/messages/DateSeparator.js +++ b/src/components/views/messages/DateSeparator.js @@ -14,19 +14,23 @@ See the License for the specific language governing permissions and limitations under the License. */ -'use strict'; +// 'use strict'; -var React = require('react'); +import React from 'react'; +import _t from 'counterpart-riot'; +import DateUtils from 'matrix-react-sdk/lib/DateUtils'; -var days = [ - "Sunday", - "Monday", - "Tuesday", - "Wednesday", - "Thursday", - "Friday", - "Saturday" -]; +function getdaysArray() { + var days = []; + days.push(_t('Sunday')); + days.push(_t('Monday')); + days.push(_t('Tuesday')); + days.push(_t('Wednesday')); + days.push(_t('Thursday')); + days.push(_t('Friday')); + days.push(_t('Saturday')); + return days; +} module.exports = React.createClass({ displayName: 'DateSeparator', @@ -34,19 +38,20 @@ module.exports = React.createClass({ var date = new Date(this.props.ts); var today = new Date(); var yesterday = new Date(); + var days = getdaysArray(); yesterday.setDate(today.getDate() - 1); var label; if (date.toDateString() === today.toDateString()) { - label = "Today"; + label = _t('Today'); } else if (date.toDateString() === yesterday.toDateString()) { - label = "Yesterday"; + label = _t('Yesterday'); } else if (today.getTime() - date.getTime() < 6 * 24 * 60 * 60 * 1000) { label = days[date.getDay()]; } else { - label = date.toDateString(); + label = DateUtils.formatFullDate(date); } return ( diff --git a/src/components/views/rooms/DNDRoomTile.js b/src/components/views/rooms/DNDRoomTile.js index 4bcf29ed..3180103e 100644 --- a/src/components/views/rooms/DNDRoomTile.js +++ b/src/components/views/rooms/DNDRoomTile.js @@ -23,6 +23,7 @@ import {DropTarget} from 'react-dnd'; import dis from 'matrix-react-sdk/lib/dispatcher'; import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg'; import sdk from 'matrix-react-sdk'; +import _t from 'counterpart-riot'; import RoomTile from 'matrix-react-sdk/lib/components/views/rooms/RoomTile'; import * as Rooms from 'matrix-react-sdk/lib/Rooms'; import Modal from 'matrix-react-sdk/lib/Modal'; @@ -90,8 +91,8 @@ var roomTileSource = { const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); console.error("Failed to set direct chat tag " + err); Modal.createDialog(ErrorDialog, { - title: "Failed to set direct chat tag", - description: ((err && err.message) ? err.message : "Operation failed"), + title: _t('Failed to set direct chat tag'), + description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); return; @@ -115,8 +116,8 @@ var roomTileSource = { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); console.error("Failed to remove tag " + prevTag + " from room: " + err); Modal.createDialog(ErrorDialog, { - title: "Failed to remove tag " + prevTag + " from room", - description: ((err && err.message) ? err.message : "Operation failed"), + title: _t('Failed to remove tag %(tagName)s from room', {tagName: prevTag}), + description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); } @@ -137,8 +138,8 @@ var roomTileSource = { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); console.error("Failed to add tag " + newTag + " to room: " + err); Modal.createDialog(ErrorDialog, { - title: "Failed to add tag " + newTag + " to room", - description: ((err && err.message) ? err.message : "Operation failed"), + title: _t('Failed to add tag %(tagName)s to room', {tagName: newTag}), + description: ((err && err.message) ? err.message : _t('Operation failed')), }); }); } @@ -241,4 +242,3 @@ DragSource('RoomTile', roomTileSource, function(connect, monitor) { isDragging: monitor.isDragging() }; })(RoomTile)); - diff --git a/src/components/views/settings/Notifications.js b/src/components/views/settings/Notifications.js index 11dc79ac..2599cf18 100644 --- a/src/components/views/settings/Notifications.js +++ b/src/components/views/settings/Notifications.js @@ -16,6 +16,7 @@ limitations under the License. 'use strict'; var React = require('react'); +import _t from 'counterpart-riot'; var q = require("q"); var sdk = require('matrix-react-sdk'); var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg'); @@ -131,8 +132,8 @@ module.exports = React.createClass({ }, (error) => { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { - title: "Error saving email notification preferences", - description: "An error occurred whilst saving your email notification preferences.", + title: _t('Error saving email notification preferences'), + description: _t('An error occurred whilst saving your email notification preferences') + '.', }); }); }, @@ -175,9 +176,10 @@ module.exports = React.createClass({ var TextInputDialog = sdk.getComponent("dialogs.TextInputDialog"); Modal.createDialog(TextInputDialog, { - title: "Keywords", - description: "Enter keywords separated by a comma:", + title: _t('Keywords'), + description: _t('Enter keywords separated by a comma') + ':', value: keywords, + button: _t('OK'), onFinished: function onFinished(should_leave, newValue) { if (should_leave && newValue !== keywords) { @@ -240,8 +242,8 @@ module.exports = React.createClass({ var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); console.error("Failed to change settings: " + error); Modal.createDialog(ErrorDialog, { - title: "Failed to change settings", - description: ((error && error.message) ? error.message : "Operation failed"), + title: _t('Failed to change settings'), + description: ((error && error.message) ? error.message : _t('Operation failed')), onFinished: self._refreshFromServer }); }); @@ -310,8 +312,8 @@ module.exports = React.createClass({ var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); console.error("Can't update user notification settings: " + error); Modal.createDialog(ErrorDialog, { - title: "Can't update user notification settings", - description: ((error && error.message) ? error.message : "Operation failed"), + title: _t('Can\'t update user notification settings'), + description: ((error && error.message) ? error.message : _t('Operation failed')), onFinished: self._refreshFromServer }); }); @@ -352,8 +354,8 @@ module.exports = React.createClass({ var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); console.error("Failed to update keywords: " + error); Modal.createDialog(ErrorDialog, { - title: "Failed to update keywords", - description: ((error && error.message) ? error.message : "Operation failed"), + title: _t('Failed to update keywords'), + description: ((error && error.message) ? error.message : _t('Operation failed')), onFinished: self._refreshFromServer }); } @@ -562,8 +564,8 @@ module.exports = React.createClass({ // Build the rules not managed by Vector UI var otherRulesDescriptions = { - '.m.rule.message': "Notify for all other messages/rooms", - '.m.rule.fallback': "Notify me for anything else" + '.m.rule.message': _t('Notify for all other messages/rooms'), + '.m.rule.fallback': _t('Notify me for anything else'), }; for (var i in defaultRules.others) { @@ -698,7 +700,7 @@ module.exports = React.createClass({ </div> <div className="mx_UserNotifSettings_labelCell"> <label htmlFor="enableNotifications"> - Enable notifications for this account + { _t('Enable notifications for this account') } </label> </div> </div> @@ -713,7 +715,7 @@ module.exports = React.createClass({ {masterPushRuleDiv} <div className="mx_UserSettings_notifTable"> - All notifications are currently disabled for all targets. + { _t('All notifications are currently disabled for all targets') }. </div> </div> ); @@ -723,13 +725,13 @@ module.exports = React.createClass({ let emailNotificationsRow; if (emailThreepids.length === 0) { emailNotificationsRow = <div> - Add an email address above to configure email notifications + { _t('Add an email address above to configure email notifications') } </div>; } else { // This only supports the first email address in your profile for now emailNotificationsRow = this.emailNotificationsRow( emailThreepids[0].address, - "Enable email notifications ("+emailThreepids[0].address+")" + _t('Enable email notifications') + ' (' + emailThreepids[0].address + ')' ); } @@ -737,7 +739,7 @@ module.exports = React.createClass({ var externalRules = []; for (var i in this.state.externalPushRules) { var rule = this.state.externalPushRules[i]; - externalRules.push(<li>{ rule.description }</li>); + externalRules.push(<li>{ _t(rule.description) }</li>); } // Show keywords not displayed by the vector UI as a single external push rule @@ -748,12 +750,12 @@ module.exports = React.createClass({ } if (externalKeyWords.length) { externalKeyWords = externalKeyWords.join(", "); - externalRules.push(<li>Notifications on the following keywords follow rules which can’t be displayed here: { externalKeyWords }</li>); + externalRules.push(<li>{ _t('Notifications on the following keywords follow rules which can’t be displayed here:') } { externalKeyWords }</li>); } var devicesSection; if (this.state.pushers === undefined) { - devicesSection = <div className="error">Unable to fetch notification target list</div> + devicesSection = <div className="error">{ _t('Unable to fetch notification target list') }</div> } else if (this.state.pushers.length == 0) { devicesSection = null; } else { @@ -774,7 +776,7 @@ module.exports = React.createClass({ } if (devicesSection) { devicesSection = (<div> - <h3>Notification targets</h3> + <h3>{ _t('Notification targets') }</h3> { devicesSection } </div>); } @@ -783,9 +785,9 @@ module.exports = React.createClass({ if (externalRules.length) { advancedSettings = ( <div> - <h3>Advanced notifications settings</h3> - There are advanced notifications which are not shown here.<br/> - You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply. + <h3>{ _t('Advanced notifications settings') }</h3> + { _t('There are advanced notifications which are not shown here') }.<br/> + { _t('You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply') }. <ul> { externalRules } </ul> @@ -812,7 +814,7 @@ module.exports = React.createClass({ </div> <div className="mx_UserNotifSettings_labelCell"> <label htmlFor="enableDesktopNotifications"> - Enable desktop notifications + { _t('Enable desktop notifications') } </label> </div> </div> @@ -830,7 +832,7 @@ module.exports = React.createClass({ </div> <div className="mx_UserNotifSettings_labelCell"> <label htmlFor="enableDesktopAudioNotifications"> - Enable audible notifications in web client + { _t('Enable audible notifications in web client') } </label> </div> </div> @@ -842,9 +844,9 @@ module.exports = React.createClass({ <thead> <tr> <th width="55%"></th> - <th width="15%">Off</th> - <th width="15%">On</th> - <th width="15%">Noisy</th> + <th width="15%">{ _t('Off') }</th> + <th width="15%">{ _t('On') }</th> + <th width="15%">{ _t('Noisy') }</th> </tr> </thead> <tbody> diff --git a/src/i18n/basefile.json b/src/i18n/basefile.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/src/i18n/basefile.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/i18n/be.json b/src/i18n/be.json new file mode 100644 index 00000000..e6e824b4 --- /dev/null +++ b/src/i18n/be.json @@ -0,0 +1,88 @@ +{ + "Add an email address above to configure email notifications": "Дадайце адрас электроннай пошты вышэй, каб наладзіць апавяшчэнні", + "All messages": "Усе паведамленні", + "All messages (loud)": "Усе паведамленні (гучна)", + "All notifications are currently disabled for all targets.": "Усе апавяшчэнні ў цяперашні час адключаныя для ўсіх мэтаў.", + "An error occurred whilst saving your email notification preferences": "Адбылася памылка падчас захавання налады апавяшчэнняў па электроннай пошце", + "Cancel Sending": "Адмяніць адпраўку", + "Can't update user notification settings": "Немагчыма абнавіць налады апавяшчэнняў карыстальніка", + "Close": "Зачыніць", + "Create new room": "Стварыць новы пакой", + "Couldn't find a matching Matrix room": "Не атрымалася знайсці адпаведны пакой Matrix", + "Custom Server Options": "Карыстальніцкія параметры сервера", + "delete the alias": "выдаліць псеўданім", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Выдаліць псеўданім пакоя %(alias)s і выдаліць %(name)s з каталога?", + "Direct Chat": "Прамы чат", + "Directory": "Каталог", + "Dismiss": "Aдхіліць", + "Download this file": "Спампаваць гэты файл", + "Drop here to %(verb)s": "Перацягнуць сюды %(verb)s", + "Enable audible notifications in web client": "Ўключыць гукавыя апавяшчэнні ў вэб-кліенце", + "Enable desktop notifications": "Ўключыць апавяшчэнні на працоўным стале", + "Enable email notifications": "Ўключыць паведамлення па электроннай пошце", + "Enable notifications for this account": "Ўключыць апавяшчэнні для гэтага ўліковага запісу", + "Enable them now": "Уключыць іх зараз", + "Enter keywords separated by a comma": "Калі ласка, увядзіце ключавыя словы, падзеленыя коскамі", + "Error": "Памылка", + "Error saving email notification preferences": "Памылка захавання налад апавяшчэнняў па электроннай пошце", + "#example": "#прыклад", + "Failed to": "Не атрымалася", + "Failed to add tag %(tagName)s to room": "Не атрымалася дадаць %(tagName)s ў пакоі", + "Failed to change settings": "Не атрымалася змяніць налады", + "Failed to forget room %(errCode)s": "Не атрымалася забыць пакой %(errCode)s", + "Failed to update keywords": "Не атрымалася абнавіць ключавыя словы", + "Failed to get protocol list from Home Server": "Не ўдалося атрымаць спіс пратаколаў ад хатняга сервера", + "Failed to get public room list": "Не ўдалося атрымаць спіс агульных пакояў", + "Failed to join the room": "Не ўдалося далучыцца да пакоя", + "Failed to remove tag %(prevTag)s from room": "Не ўдалося выдаліць %(prevTag)s з пакоя", + "Failed to set direct chat tag": "Не ўдалося ўсталяваць тэг прамога чата", + "Failed to set Direct Message status of room": "Не ўдалося ўсталяваць статут прамога паведамлення пакою", + "Favourite": "Улюбёнае", + "Fetching third party location failed": "Не ўдалося атрымаць месцазнаходжанне трэцяга боку", + "Files": "Файлы", + "Filter room names": "Фільтр iмёнаў пакояў", + "Forget": "Забыць", + " from room": " з пакоя", + "Guests can join": "Госці могуць далучыцца", + "Guest users can't invite users. Please register to invite": "Госцi не могуць запрашаць карыстальнікаў. Калі ласка, зарэгіструйцеся, каб запрасiць", + "Invite to this room": "Запрасіць у гэты пакой", + "Keywords": "Ключавыя словы", + "Leave": "Пакінуць", + "Low Priority": "Нізкі прыярытэт", + "Members": "Удзельнікі", + "Mentions only": "Толькі згадкі", + "Mute": "Без гуку", + "No rooms to show": "Няма пакояў для паказу", + "Noisy": "Шумна", + "Notification targets": "Мэты апавяшчэння", + "Notifications": "Апавяшчэнні", + "Notifications on the following keywords follow rules which can’t be displayed here": "Апавяшчэнні па наступных ключавых словах прытрымліваюцца правілаў, якія не могуць быць адлюстраваны тут", + "Notify for all other messages/rooms": "Апавяшчаць для ўсіх іншых паведамленняў/пакояў", + "Notify me for anything else": "Паведаміць мне што-небудзь яшчэ", + "Off": "Выключыць", + "On": "Уключыць", + "Operation failed": "Не атрымалася выканаць аперацыю", + "Permalink": "Пастаянная спасылка", + "Please Register": "Калі ласка, зарэгіструйцеся", + "powered by Matrix": "працуе на Matrix", + "Quote": "Цытата", + "Redact": "Адрэдагаваць", + "Reject": "Адхіліць", + "Remove %(name)s from the directory?": "Выдаліць %(name)s з каталога?", + "Remove": "Выдалiць", + "remove %(name)s from the directory": "выдаліць %(name)s з каталога", + "Remove from Directory": "Выдалiць з каталога", + "Resend": "Паўторна", + "Riot does not know how to join a room on this network": "Riot не ведае, як увайсці ў пакой у гэтай сетке", + "Room directory": "Каталог пакояў", + "Room not found": "Пакой не знойдзены", + "Search for a room": "Пошук па пакоі", + "Settings": "Налады", + "Source URL": "URL-адрас крыніцы", + "Start chat": "Пачаць чат", + "The Home Server may be too old to support third party networks": "Хатні сервер можа быць занадта стары для падтрымкі іншых сетак", + "There are advanced notifications which are not shown here": "Ёсць пашыраныя апавяшчэння, якія не паказаныя тут", + "The server may be unavailable or overloaded": "Сервер можа быць недаступны ці перагружаны", + "This room is inaccessible to guests. You may be able to join if you register": "Гэты пакой недаступны для гасцей. Вы можаце далучыцца, калі вы зарэгіструецеся", + " to room": " ў пакоі" +} \ No newline at end of file diff --git a/src/i18n/da.json b/src/i18n/da.json new file mode 100644 index 00000000..890ab7bb --- /dev/null +++ b/src/i18n/da.json @@ -0,0 +1,84 @@ +{ + "Add an email address above to configure email notifications": "Tilføj en emailadresse ovenfor for at konfigurere e-mail-underretninger", + "All notifications are currently disabled for all targets.": "Alle meddelelser er for øjeblikket deaktiveret for alle mål.", + "An error occurred whilst saving your email notification preferences": "Der opstod en fejl under opbevaring af dine e-mail-underretningsindstillinger", + "and remove": "Og fjern", + "Can't update user notification settings": "Kan ikke opdatere brugermeddelelsesindstillinger", + "Create new room": "Opret nyt rum", + "Couldn't find a matching Matrix room": "Kunne ikke finde et matchende Matrix-rum", + "Custom Server Options": "Brugerdefinerede serverindstillinger", + "delete the alias": "Slet aliaset", + "Delete the room alias": "Slet room alias", + "Direct Chat": "Personligt Chat", + "Directory": "Rum fortegnelse", + "Dismiss": "Afskedige", + "Drop here to": "Drop her til", + "Enable audible notifications in web client": "Aktivér hørbare underretninger i webklienten", + "Enable desktop notifications": "Aktivér desktop meddelelser", + "Enable email notifications": "Aktivér e-mail-underretninger", + "Enable notifications for this account": "Aktivér underretninger for dette brugernavn", + "Enable them now": "Aktivér dem nu", + "Enter keywords separated by a comma": "Indtast søgeord adskilt af et komma", + "Error": "Fejl", + "Error saving email notification preferences": "Fejl ved at gemme e-mail-underretningsindstillinger", + "#example": "#eksempel", + "Failed to": "Var ikke i stand til at", + "Failed to add tag ": "Kunne ikke tilføje tag ", + "Failed to change settings": "Kunne ikke ændre indstillinger", + "Failed to update keywords": "Kunne ikke opdatere søgeord", + "Failed to get protocol list from Home Server": "Kunne ikke få protokolliste fra Home Server", + "Failed to get public room list": "Kunne ikke få offentlig rumliste", + "Failed to join the room": "Kunne ikke komme ind i rumet", + "Failed to remove tag ": "Kunne ikke fjerne tag ", + "Failed to set Direct Message status of room": "Kunne ikke indstille direkte beskedstatus for rumet", + "Favourite": "Favorit", + "Fetching third party location failed": "Hentning af tredjeparts placering mislykkedes", + "Files": "Filer", + "Filter room names": "Filtrer rumnavne", + "Forget": "Glem", + "from the directory": "fra fortegnelsen", + " from room": " fra rum", + "Guests can join": "Gæster kan deltage", + "Guest users can't invite users. Please register to invite": "Gæstebrugere kan ikke invitere brugere. Tilmeld dig venligst for at invitere", + "Invite to this room": "Inviter til dette rum", + "Keywords": "Søgeord", + "Leave": "Forlade", + "Low Priority": "Lav prioritet", + "Members": "Medlemmer", + "No rooms to show": "Ingen rum at vise", + "Noisy": "Støjende", + "Notification targets": "Meddelelsesmål", + "Notifications": "Meddelser", + "Notifications on the following keywords follow rules which can’t be displayed here": "Meddelelser om følgende søgeord følger regler, der ikke kan vises her", + "Notify for all other messages/rooms": "Underret om alle andre meddelelser / rum", + "Notify me for anything else": "Underret mig om noget andet", + "Off": "Slukket", + "On": "Tændt", + "Operation failed": "Operation mislykkedes", + "Please Register": "Vær venlig at registrere", + "powered by Matrix": "Drevet af Matrix", + "Reject": "Afvise", + "Remove": "Fjerne", + "remove": "fjerner", + "Remove from Directory": "Fjern fra fortegnelse", + "Riot does not know how to join a room on this network": "Riot ved ikke, hvordan man kan deltage i et rum på dette netværk", + "Room directory": "Rum fortegnelse", + "Room not found": "Rumet ikke fundet", + "Search for a room": "Søg efter et rum", + "Settings": "Indstillinger", + "Start chat": "Begyndt chat", + "The Home Server may be too old to support third party networks": "Hjemmeserveren kan være for gammel til at understøtte tredjepartsnetværk", + "There are advanced notifications which are not shown here": "Der er avancerede meddelelser, som ikke vises her", + "The server may be unavailable or overloaded": "Serveren kan være utilgængelig eller overbelastet", + "This room is inaccessible to guests. You may be able to join if you register": "Dette rum er utilgængeligt for gæster. Du kan være i stand til at deltage, hvis du registrerer dig", + " to room": " til rum", + "Unable to fetch notification target list": "Kan ikke hente meddelelsesmålliste", + "Unable to join network": "Kan ikke deltage i netværket", + "Unable to look up room ID from server": "Kunne ikke slå op på rum-id fra server", + "unknown error code": "Ukendt fejlkode", + "Unnamed room": "Unnamed rum", + "World readable": "Læselig til alle", + "You are not receiving desktop notifications": "Du modtager ikke desktop meddelelser", + "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Du har muligvis konfigureret dem i en anden klient end Riot. Du kan ikke tune dem i Riot, men de gælder stadig", + "Close": "Luk" +} diff --git a/src/i18n/de_DE.json b/src/i18n/de_DE.json new file mode 100644 index 00000000..2bc23bee --- /dev/null +++ b/src/i18n/de_DE.json @@ -0,0 +1,122 @@ +{ + "Please Register": "Bitte registrieren", + "Guest users can't invite users. Please register to invite.": "Gäste können keine User einladen. Zum Einladen bitte anmelden.", + "Members": "Mitglieder", + "Files": "Dateien", + "Notifications": "Benachrichtigungen", + "Invite to this room": "In diesen Raum einladen", + "Filter room names": "Raum Namen filtern", + "Start chat": "Neuen Chat starten", + "Room directory": "Raum Verzeichnis", + "Create new room": "Neuen Raum erstellen", + "Settings": "Einstellungen", + "powered by Matrix": "gebaut mit Matrix", + "Custom Server Options": "Optionen für eigenen Server", + "customServer_text": "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.", + "Dismiss": "ausblenden", + "Failed to get protocol list from Home Server": "Fehler beim Abrufen der Protokollliste vom Home Server", + "The Home Server may be too old to support third party networks": "Der Home Server kann zu alt sein, um Drittanbieter-Netzwerke zu unterstützen", + "Directory": "Raum Verzeichnis", + "#example:": "#beispiel:", + "Search for a room": "Suche einen Raum", + "No rooms to show": "Keine Räume zum anzeigen", + "World readable": "Jeder kann lesen", + "Guests can join": "Gäste können beitreten", + "You are not receiving desktop notifications": "Du erhältst keine Desktop Benachrichtigungen", + "Enable them now": "Aktiviere diese jetzt", + "Add an email address above to configure email notifications": "Füge eine E-Mail Adresse hinzu um Benachrichtigungen via E-Mail zu erhalten", + "All notifications are currently disabled for all targets.": "Im Moment sind alle Benachrichtigungen für alle Ziele deaktiviert.", + "An error occurred whilst saving your email notification preferences": "Ein Fehler trat auf während deine E-Mail Einstellungen gespeichert wurden", + "and remove": "und entfernen", + "Can't update user notification settings": "Kann Benutzerdefinierte Einstellungen nicht aktualisieren", + "Couldn't find a matching Matrix room": "Kann keinen entsprechenden Matrix Raum finden", + "delete the alias": "Lösche den Alias", + "Delete the room alias": "Lösche den Raum Alias", + "Direct Chat": "Privater Chat", + "Drop here to": "Hier ablegen", + "Enable audible notifications in web client": "Aktiviere Audio Benachrichtigungen", + "Enable desktop notifications": "Aktiviere Desktop Benachrichtigungen", + "Enable email notifications": "Aktiviere E-Mail Benachrichtigungen", + "Enable notifications for this account": "Aktiviere Benachrichtigungen für diesen Benutzer", + "Enter keywords separated by a comma": "Gebe Suchbegriffe getrennt durch Kommata ein", + "Error": "Fehler", + "Error saving email notification preferences": "Fehler beim Speichern der E-Mail Benachrichtigungseinstellungen", + "#example": "#Beispiel", + "Failed to": "Konnte nicht", + "Failed to add tag ": "Konnte Tag nicht hinzufügen ", + "Failed to change settings": "Konnte Einstellungen nicht ändern", + "Failed to update keywords": "Konnte Suchbegriff nicht aktualisieren", + "Failed to get public room list": "Konnte keine öffentliche Raumliste laden", + "Failed to join the room": "Fehler beim Betreten des Raumes", + "Failed to remove tag ": "Konnte Tag nicht entfernen ", + "Failed to set Direct Message status of room": "Konnte den direkten Benachrichtigungsstatus nicht setzen", + "Favourite": "Favorit", + "Fetching third party location failed": "Das Abrufen des Drittanbieterstandorts ist fehlgeschlagen", + "Forget": "Lösche", + "from the directory": "aus dem Verzeichnis", + " from room": " aus dem Raum", + "Guest users can't invite users. Please register to invite": "Gastnutzer können keine Nutzer einladen. Bitte registriere dich um Nutzer einzuladen", + "Keywords": "Suchbegriff", + "Leave": "Verlassen", + "Low Priority": "Niedrige Priorität", + "Noisy": "Laut", + "Notification targets": "Benachrichtigungsziel", + "Notifications on the following keywords follow rules which can’t be displayed here": "Benachrichtigungen zu folgenden Stichwörtern folgen Regeln, die hier nicht angezeigt werden können", + "Notify for all other messages/rooms": "Benachrichtigung für alle anderen Mitteilungen/ Räume", + "Operation failed": "Ausführung fehlgeschlagen", + "Reject": "ablehnen", + "Remove": "Entferne", + "remove": "Entferner", + "Remove from Directory": "Vom Raum Verzeichnis entfernen", + "Riot does not know how to join a room on this network": "Riot weiß nicht, wie es einem Raum auf diesem Netzwerk beitreten soll", + "Room not found": "Raum nicht gefunden", + "There are advanced notifications which are not shown here": "Es existieren erweiterte Benachrichtigungen, welche hier nicht angezeigt werden", + "The server may be unavailable or overloaded": "Der Server ist vermutlich nicht erreichbar oder überlastet", + "This room is inaccessible to guests. You may be able to join if you register": "Dieser Raum ist nicht verfügbar für Gäste. Vermutlich klappt es wenn du dich anmeldest", + "Unable to fetch notification target list": "Nicht möglich die Zielliste für Benachrichtigungen zu erhalten", + "Unable to join network": "Es ist nicht möglich, dem Netzwerk beizutreten", + "unknown error code": "Unbekannter Fehlercode", + "Unnamed room": "Unbenannter Raum", + "Notify me for anything else": "Benachrichtige mich für alles andere", + "Off": "Aus", + "On": "An", + "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Du hast sie eventuell auf einem anderen Client als Riot konfiguriert. Sie sind in Riot nicht anpassbar gelten aber trotzdem", + " to room": " an Raum", + "Drop here to %(verb)s": "%(verb)s hierher ziehen", + "All messages": "Alle Nachrichten", + "All messages (loud)": "Alle Nachrichten (laut)", + "Cancel Sending": "Senden abbrechen", + "Close": "Schließen", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Soll der Raumalias %(alias)s gelöscht und der %(name)s aus dem Verzeichnis entfernt werden?", + "Download this file": "Datei Herunterladen", + "Failed to add tag %(tagName)s to room": "Das Hinzufügen des Tags %(tagName)s für den Raum ist fehlgeschlagen", + "Failed to forget room %(errCode)s": "Das Entfernen des Raums %(errCode)s aus deiner Liste ist fehlgeschlagen", + "Failed to remove tag %(prevTag)s from room": "Das Entfernen des Tags %(prevTag)s für den Raum ist fehlgeschlagen", + "Failed to set direct chat tag": "Fehler beim setzen der Direct Chat Kennzeichnung", + "Mentions only": "Nur, wenn du erwähnt wirst", + "Mute": "Lautlos", + "Permalink": "Permanenter Link", + "Quote": "Zitat", + "Redact": "Redaktionell entfernen", + "Remove %(name)s from the directory?": "Soll der Raum %(name)s aus dem Verzeichnis entfernt werden?", + "remove %(name)s from the directory": "entferne %(name)s aus dem Verzeichnis", + "Resend": "Erneut Senden", + "Source URL": "Quell-URL", + "Unable to look up room ID from server": "Es ist nicht möglich, die Raum-ID auf dem Server nachzuschlagen", + "Unhide Preview": "Vorschau wieder anzeigen", + "Uploaded on %(date)s by %(user)s": "Hochgeladen am %(date)s durch %(user)s", + "View Decrypted Source": "Entschlüsselten Quellcode ansehen", + "View Source": "Quellcode ansehen", + "You cannot delete this image. (%(code)s)": "Das Bild kann nicht gelöscht werden. (%(code)s)", + "You cannot delete this message. (%(code)s)": "Die Nachricht kann nicht gelöscht werden. (%(code)s)", + "Today": "Heute", + "Wednesday": "Mittwoch", + "Thursday": "Donnerstag", + "Friday": "Freitag", + "Saturday": "Samstag", + "Tuesday": "Dienstag", + "Sunday": "Sonntag", + "Monday": "Montag", + "Yesterday": "Gestern", + "Welcome page": "Willkommensseite" +} diff --git a/src/i18n/en_EN.json b/src/i18n/en_EN.json new file mode 100644 index 00000000..67d49864 --- /dev/null +++ b/src/i18n/en_EN.json @@ -0,0 +1,120 @@ +{ + "Add an email address above to configure email notifications": "Add an email address above to configure email notifications", + "All messages": "All messages", + "All messages (loud)": "All messages (loud)", + "All notifications are currently disabled for all targets.": "All notifications are currently disabled for all targets.", + "An error occurred whilst saving your email notification preferences": "An error occurred whilst saving your email notification preferences", + "Call invitation": "Call invitation", + "Cancel Sending": "Cancel Sending", + "Can't update user notification settings": "Can't update user notification settings", + "Close": "Close", + "Create new room": "Create new room", + "Couldn't find a matching Matrix room": "Couldn't find a matching Matrix room", + "Custom Server Options": "Custom Server Options", + "delete the alias": "delete the alias", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Delete the room alias %(alias)s and remove %(name)s from the directory?", + "Direct Chat": "Direct Chat", + "Directory": "Directory", + "Dismiss": "Dismiss", + "Download this file": "Download this file", + "Drop here to %(verb)s": "Drop here to %(verb)s", + "Enable audible notifications in web client": "Enable audible notifications in web client", + "Enable desktop notifications": "Enable desktop notifications", + "Enable email notifications": "Enable email notifications", + "Enable notifications for this account": "Enable notifications for this account", + "Enable them now": "Enable them now", + "Enter keywords separated by a comma": "Enter keywords separated by a comma", + "Error": "Error", + "Error saving email notification preferences": "Error saving email notification preferences", + "#example": "#example", + "Failed to": "Failed to", + "Failed to add tag %(tagName)s to room": "Failed to add tag %(tagName)s to room", + "Failed to change settings": "Failed to change settings", + "Failed to forget room %(errCode)s": "Failed to forget room %(errCode)s", + "Failed to update keywords": "Failed to update keywords", + "Failed to get protocol list from Home Server": "Failed to get protocol list from Home Server", + "Failed to get public room list": "Failed to get public room list", + "Failed to join the room": "Failed to join the room", + "Failed to remove tag %(prevTag)s from room": "Failed to remove tag %(prevTag)s from room", + "Failed to set direct chat tag": "Failed to set direct chat tag", + "Failed to set Direct Message status of room": "Failed to set Direct Message status of room", + "Favourite": "Favourite", + "Fetching third party location failed": "Fetching third party location failed", + "Files": "Files", + "Filter room names": "Filter room names", + "Forget": "Forget", + " from room": " from room", + "Guests can join": "Guests can join", + "Guest users can't invite users. Please register to invite": "Guest users can't invite users. Please register to invite", + "Invite to this room": "Invite to this room", + "Keywords": "Keywords", + "Leave": "Leave", + "Low Priority": "Low Priority", + "Members": "Members", + "Mentions only": "Mentions only", + "Messages containing my display name": "Messages containing my display name", + "Messages containing my user name": "Messages containing my user name", + "Messages in group chats": "Messages in group chats", + "Messages in one-to-one chats": "Messages in one-to-one chats", + "Messages sent by bot": "Messages sent by bot", + "more": "more", + "Mute": "Mute", + "No rooms to show": "No rooms to show", + "Noisy": "Noisy", + "Notification targets": "Notification targets", + "Notifications": "Notifications", + "Notifications on the following keywords follow rules which can’t be displayed here": "Notifications on the following keywords follow rules which can’t be displayed here", + "Notify for all other messages/rooms": "Notify for all other messages/rooms", + "Notify me for anything else": "Notify me for anything else", + "Off": "Off", + "On": "On", + "Operation failed": "Operation failed", + "Permalink": "Permalink", + "Please Register": "Please Register", + "powered by Matrix": "powered by Matrix", + "Quote": "Quote", + "Redact": "Redact", + "Reject": "Reject", + "Remove %(name)s from the directory?": "Remove %(name)s from the directory?", + "Remove": "Remove", + "remove %(name)s from the directory": "remove %(name)s from the directory", + "Remove from Directory": "Remove from Directory", + "Resend": "Resend", + "Riot does not know how to join a room on this network": "Riot does not know how to join a room on this network", + "Room directory": "Room directory", + "Room not found": "Room not found", + "Search for a room": "Search for a room", + "Settings": "Settings", + "Source URL": "Source URL", + "Start chat": "Start chat", + "The Home Server may be too old to support third party networks": "The Home Server may be too old to support third party networks", + "There are advanced notifications which are not shown here": "There are advanced notifications which are not shown here", + "The server may be unavailable or overloaded": "The server may be unavailable or overloaded", + "This room is inaccessible to guests. You may be able to join if you register": "This room is inaccessible to guests. You may be able to join if you register", + " to room": " to room", + "Unable to fetch notification target list": "Unable to fetch notification target list", + "Unable to join network": "Unable to join network", + "Unable to look up room ID from server": "Unable to look up room ID from server", + "Unhide Preview": "Unhide Preview", + "unknown error code": "unknown error code", + "Unnamed room": "Unnamed room", + "Uploaded on %(date)s by %(user)s": "Uploaded on %(date)s by %(user)s", + "View Decrypted Source": "View Decrypted Source", + "View Source": "View Source", + "When I'm invited to a room": "When I'm invited to a room", + "World readable": "World readable", + "You cannot delete this image. (%(code)s)": "You cannot delete this image. (%(code)s)", + "You cannot delete this message. (%(code)s)": "You cannot delete this message. (%(code)s)", + "You are not receiving desktop notifications": "You are not receiving desktop notifications", + "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply", + "Sunday": "Sunday", + "Monday": "Monday", + "Tuesday": "Tuesday", + "Wednesday": "Wednesday", + "Thursday": "Thursday", + "Friday": "Friday", + "Saturday": "Saturday", + "Today": "Today", + "Yesterday": "Yesterday", + "Welcome page": "Welcome page" +} diff --git a/src/i18n/fr.json b/src/i18n/fr.json new file mode 100644 index 00000000..db39ac9f --- /dev/null +++ b/src/i18n/fr.json @@ -0,0 +1,66 @@ +{ + "Add an email address above to configure email notifications": "Ajouter une adresse email pour la configuration des notifications par email", + "All messages": "Tous les messages", + "All messages (loud)": "Tous les messages (fort)", + "All notifications are currently disabled for all targets.": "Toutes les notification sont désactivées pour tous les appareils.", + "An error occurred whilst saving your email notification preferences": "Une erreur est survenue lors de la sauvegarde de vos préférences de notifications mails", + "Cancel Sending": "Annuler Envois", + "Can't update user notification settings": "Impossible de mettre à jour les notifications utilisateur", + "Close": "Fermer", + "Create new room": "Créer un nouveau salon", + "Couldn't find a matching Matrix room": "Impossible de trouver un salon Matrix", + "Custom Server Options": "Options de Serveur Personnalisé", + "delete the alias": "Supprimer l'alias", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Supprimer le salon alias %(alias)s et supprimer %(name)s du répertoire?", + "Direct Chat": "Chat direct", + "Directory": "Dossier", + "Dismiss": "Rejeter", + "Download this file": "Télécharger ce fichier", + "Drop here to %(verb)s": "Déposer ici pour %(verb)s", + "Enable audible notifications in web client": "Activer les notifications sonores pour le client web", + "Enable desktop notifications": "Activer les notifications de bureau", + "Enable email notifications": "Activer les notifications par e-mail", + "Enable notifications for this account": "Activer les notifications pour ce compte", + "Enable them now": "Les activer maintenant", + "Enter keywords separated by a comma": "Entrez les mots clés séparés par une virgule", + "Error": "Erreur", + "Error saving email notification preferences": "Erreur lors de la sauvegarde des notifications par email", + "#example": "#exemple", + "Failed to": "Echec pour", + "Failed to add tag %(tagName)s to room": "Echec lors de l'ajout du tag %(tagName)s pour le salon", + "Failed to change settings": "Changement de configuration échouée", + "Failed to forget room %(errCode)s": "Echec lors de l'oublie du salon %(errCode)s", + "Failed to update keywords": "Échec dans la mise à jour des mots clés", + "Failed to get protocol list from Home Server": "Echec lors de la récupération depuis le serveur maison", + "Failed to get public room list": "Echec lors de la récupération de la liste des salons publics", + "Failed to join the room": "Échec pour joindre le salon", + "Failed to remove tag %(prevTag)s from room": "Échec dans la suppression de l’étiquette %(prevTag)s du salon", + "Failed to set direct chat tag": "Échec dans l'attribution d'une étiquette dans le chat direct", + "Favourite": "Favouris", + "Operation failed": "L'opération a échoué", + "Please Register": "Veuillez vous enregistrer", + "powered by Matrix": "propulsé par Matrix", + "Quote": "Citer", + "Redact": "Rédiger", + "Reject": "Rejeter", + "Remove %(name)s from the directory?": "Supprimer %(name)s du répertoire?", + "Remove": "Supprimer", + "Resend": "Renvoyer", + "Settings": "Paramètres", + "Start chat": "Démarrer la discussion", + "unknown error code": "Code erreur inconnu", + "View Source": "Voir la Source", + "You cannot delete this image. (%(code)s)": "Vous ne pouvez pas supprimer cette image. (%(code)s)", + "You cannot delete this message. (%(code)s)": "Vous ne pouvez pas supprimer ce message. (%(code)s)", + "You are not receiving desktop notifications": "Vous ne recevez pas les notifications sur votre bureau", + "Sunday": "Dimanche", + "Monday": "Lundi", + "Tuesday": "Mardi", + "Wednesday": "Mercredi", + "Thursday": "Jeudi", + "Friday": "Vendredi", + "Saturday": "Samedi", + "Today": "Aujourd'hui", + "Yesterday": "Hier", + "Welcome page": "Page de bienvenue" +} diff --git a/src/i18n/ml.json b/src/i18n/ml.json new file mode 100644 index 00000000..e67ece48 --- /dev/null +++ b/src/i18n/ml.json @@ -0,0 +1,5 @@ +{ + "Add an email address above to configure email notifications": "ഇ മെയില് അറിയിപ്പുകൾ ലഭിക്കാന് മുകളില് ഇ-മെയില് വിലാസം നല്കൂ", + "All messages": "എല്ലാ സന്ദേശങ്ങളും", + "All messages (loud)": "എല്ലാ സന്ദേശങ്ങളും (ഉച്ചത്തിൽ)" +} \ No newline at end of file diff --git a/src/i18n/pl.json b/src/i18n/pl.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/src/i18n/pl.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/i18n/pt.json b/src/i18n/pt.json new file mode 100644 index 00000000..befbb6a7 --- /dev/null +++ b/src/i18n/pt.json @@ -0,0 +1,116 @@ +{ + "Add an email address above to configure email notifications": "Adicione um endereço de email acima para configurar as notificações por email", + "All messages": "Todas as mensagens", + "All messages (loud)": "Todas as mensagens (alto)", + "All notifications are currently disabled for all targets": "Todas as notificações estão atualmente desativadas para todos os destinos", + "An error occurred whilst saving your email notification preferences": "Um erro ocorreu enquanto salvava suas preferências de notificação por email", + "Cancel Sending": "Cancelar o envio", + "Can't update user notification settings": "Não é possível atualizar as preferências de notificação", + "Close": "Fechar", + "Create new room": "Criar nova sala", + "Couldn't find a matching Matrix room": "Não foi possível encontrar uma sala correspondente no servidor Matrix", + "Custom Server Options": "Opções de customização do servidor", + "delete the alias": "apagar o apelido da sala", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Apagar o apelido %(alias)s da sala e remover %(nome)s da lista pública?", + "Direct Chat": "Conversa pessoal", + "Directory": "Diretório", + "Dismiss": "Encerrar", + "Download this file": "Baixar este arquivo", + "Drop here to %(verb)s": "Arraste aqui para %(verb)s", + "Enable audible notifications in web client": "Ativar notificações de áudio no cliente web", + "Enable desktop notifications": "Ativar notificações no desktop", + "Enable email notifications": "Ativar notificações por email", + "Enable notifications for this account": "Ativar notificações para esta conta", + "Enable them now": "Habilitar agora", + "Enter keywords separated by a comma": "Coloque cada palavras-chave separada por vírgula", + "Error": "Erro", + "Error saving email notification preferences": "Erro ao salvar as preferências de notificação por email", + "#example:": "#exemplo", + "Failed to": "Falha ao", + "Failed to add tag %(tagName)s to room": "Falha ao adicionar %(tagName)s à sala", + "Failed to change settings": "Falha ao mudar as preferências", + "Failed to forget room %(errCode)s": "Falha ao esquecer a sala %(errCode)s", + "Failed to update keywords": "Falha ao alterar as palavras-chave", + "Failed to get protocol list from Home Server": "Falha em acessar a lista de protocolos do servidor padrão", + "Failed to get public room list": "Falha ao acessar a lista pública de salas", + "Failed to join the room": "Falha ao entrar na sala", + "Failed to remove tag %(tag)s from room": "Falha ao remover a palavra-chave %(tag)s da sala", + "Failed to set direct chat tag": "Falha ao definir conversa como pessoal", + "Failed to set Direct Message status of room": "Falha em definr a mensagem de status da sala", + "Favourite": "Favorito", + "Fetching third party location failed": "Falha ao acessar localização de terceiros", + "Files": "Arquivos", + "Filter room names": "Filtrar salas por título", + "Forget": "Esquecer", + " from room": " da sala", + "Guests can join": "Convidados podem entrar", + "Guest users can't invite users. Please register to invite": "Usuários convidados não podem convidar outros usuários. Por gentileza se registre para enviar convites", + "Invite to this room": "Convidar para esta sala", + "Keywords": "Palavras-chave", + "Leave": "Sair", + "Low Priority": "Baixa prioridade", + "Members": "Membros", + "Mentions only": "Apenas menções", + "Mute": "Mudo", + "No rooms to show": "Não existem salas a serem exibidas", + "Noisy": "Barulhento", + "Notification targets": "Alvos de notificação", + "Notifications": "Notificações", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Notificações sobre as seguintes palavras-chave seguem regras que não podem ser exibidas aqui", + "Notify for all other messages/rooms": "Notificar para todas as outras mensagens e salas", + "Notify me for anything else": "Notificar-me sobre qualquer outro evento", + "Off": "Desativado", + "On": "Ativado", + "Operation failed": "A operação falhou", + "Permalink": "Link permanente", + "Please Register": "Por favor, cadastre-se", + "powered by Matrix": "distribuído por Matrix", + "Quote": "Citar", + "Redact": "Remover", + "Reject": "Rejeitar", + "Remove": "Remover", + "Remove %(name)s from the directory?": "Remover %(name)s da lista pública de salas?", + "remove %(name)s from the directory": "remover %(name)s da lista pública de salas", + "Remove from Directory": "Remover da lista pública de salas", + "Resend": "Reenviar", + "Riot does not know how to join a room on this network": "O sistema não sabe como entrar na sala desta rede", + "Room directory": "Lista de salas públicas", + "Room not found": "Sala não encontrada", + "Search for a room": "Procurar por uma sala", + "Settings": "Configurações", + "Source URL": "URL fonte", + "Start chat": "Começar conversa", + "The Home Server may be too old to support third party networks": "O servidor pode ser muito antigo para suportar redes de terceiros", + "There are advanced notifications which are not shown here": "Existem opções avançadas que não são exibidas aqui", + "The server may be unavailable or overloaded": "O servidor pode estar inacessível ou sobrecarregado", + "This room is inaccessible to guests. You may be able to join if you register": "Esta sala é inacessível para convidados. Você poderá entrar caso se registre", + " to room": " na sala", + "Unable to fetch notification target list": "Não foi possível obter a lista de alvos de notificação", + "Unable to join network": "Não foi possível conectar na rede", + "Unable to look up room ID from server": "Não foi possivel buscar identificação da sala no servidor", + "Unhide Preview": "Mostrar a pré-visualização novamente", + "unknown error code": "código de erro desconhecido", + "Unnamed room": "Sala sem nome", + "Uploaded on %(date)s by %(user)s": "Enviada em %(date)s por %(user)s", + "View Decrypted Source": "Ver a fonte descriptografada", + "View Source": "Ver a fonte", + "World readable": "Público", + "You cannot delete this image. (%(code)s)": "Você não pode apagar esta imagem. (%(code)s)", + "You cannot delete this message. (%(code)s)": "Você não pode apagar esta mensagem. (%(code)s)", + "You are not receiving desktop notifications": "Você não está recebendo notificações desktop", + "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Você pode te-las configurado em outro cliente além do Riot. Você não pode ajustá-las no Riot, mas ainda assim elas se aplicam aqui", + "Sunday": "Domingo", + "Monday": "Segunda", + "Tuesday": "Terça", + "Wednesday": "Quarta", + "Thursday": "Quinta", + "Friday": "Sexta", + "Saturday": "Sábado", + "Today": "Hoje", + "Yesterday": "Ontem", + "All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desabilitadas para todos os recipientes.", + "#example": "#exemplo", + "Failed to remove tag %(prevTag)s from room": "Não foi possível remover a marcação %(prevTag)s desta sala", + "Notifications on the following keywords follow rules which can’t be displayed here": "As notificações sobre as palavras-chave abaixo seguem regras que não podem ser mostradas aqui", + "Welcome page": "Página de boas vindas" +} diff --git a/src/i18n/pt_BR.json b/src/i18n/pt_BR.json new file mode 100644 index 00000000..ce1bd6c0 --- /dev/null +++ b/src/i18n/pt_BR.json @@ -0,0 +1,124 @@ +{ + "Add an email address above to configure email notifications": "Insira um endereço de email no campo acima para configurar suas notificações por email", + "All messages": "Todas as mensagens", + "All messages (loud)": "Todas as mensagens (alto)", + "All notifications are currently disabled for all targets": "Todas as notificações estão atualmente desativadas para todos os destinos", + "An error occurred whilst saving your email notification preferences": "Um erro ocorreu enquanto o sistema estava salvando suas preferências de notificação por email", + "Call invitation": "Convite para chamada", + "Cancel Sending": "Cancelar o envio", + "Can't update user notification settings": "Não é possível atualizar as preferências de notificação", + "Close": "Fechar", + "Create new room": "Criar nova sala", + "Couldn't find a matching Matrix room": "Não foi possível encontrar uma sala correspondente no servidor Matrix", + "Custom Server Options": "Opções de personalização do servidor", + "delete the alias": "apagar o apelido da sala", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Apagar o apelido %(alias)s da sala e remover %(nome)s da lista pública?", + "Direct Chat": "Conversa pessoal", + "Directory": "Diretório", + "Dismiss": "Encerrar", + "Download this file": "Baixar este arquivo", + "Drop here to %(verb)s": "Arraste aqui para %(verb)s", + "Enable audible notifications in web client": "Ativar notificações de áudio no cliente web", + "Enable desktop notifications": "Ativar notificações no desktop", + "Enable email notifications": "Ativar notificações por email", + "Enable notifications for this account": "Ativar notificações para esta conta", + "Enable them now": "Habilitar agora", + "Enter keywords separated by a comma": "Coloque cada palavras-chave separada por vírgula", + "Error": "Erro", + "Error saving email notification preferences": "Erro ao salvar as preferências de notificação por email", + "#example:": "#exemplo", + "Failed to": "Falha ao", + "Failed to add tag %(tagName)s to room": "Falha ao adicionar %(tagName)s à sala", + "Failed to change settings": "Falhou ao mudar as preferências", + "Failed to forget room %(errCode)s": "Falhou ao esquecer a sala %(errCode)s", + "Failed to update keywords": "Falhou ao alterar as palavras-chave", + "Failed to get protocol list from Home Server": "Falha em acessar a lista de protocolos do servidor padrão", + "Failed to get public room list": "Falha ao acessar a lista pública de salas", + "Failed to join the room": "Falhou ao entrar na sala", + "Failed to remove tag %(tag)s from room": "Falha ao remover a palavra-chave %(tag)s da sala", + "Failed to set direct chat tag": "Falha ao definir conversa como pessoal", + "Failed to set Direct Message status of room": "Falha em definir a mensagem de status da sala", + "Favourite": "Favorito", + "Fetching third party location failed": "Falha ao acessar localização de terceiros", + "Files": "Arquivos", + "Filter room names": "Filtrar salas por título", + "Forget": "Esquecer", + " from room": " da sala", + "Guests can join": "Convidados podem entrar", + "Guest users can't invite users. Please register to invite": "Usuários convidados não podem convidar outros usuários. Por gentileza se registre para enviar convites", + "Invite to this room": "Convidar para esta sala", + "Keywords": "Palavras-chave", + "Leave": "Sair", + "Low Priority": "Baixa prioridade", + "Members": "Membros", + "Mentions only": "Apenas menções", + "Messages containing my display name": "Mensagens contendo meu nome público", + "Messages containing my user name": "Mensagens contendo meu nome de usuário", + "Messages in group chats": "Mensagens em salas", + "Messages in one-to-one chats": "Mensagens em conversas pessoais", + "Messages sent by bot": "Mensagens enviadas por bots", + "more": "ver mais", + "Mute": "Mudo", + "No rooms to show": "Não existem salas a serem exibidas", + "Noisy": "Barulhento", + "Notification targets": "Alvos de notificação", + "Notifications": "Notificações", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Notificações sobre as seguintes palavras-chave seguem regras que não podem ser exibidas aqui", + "Notify for all other messages/rooms": "Notificar para todas as outras mensagens e salas", + "Notify me for anything else": "Notificar-me sobre qualquer outro evento", + "Off": "Desativado", + "On": "Ativado", + "Operation failed": "A operação falhou", + "Permalink": "Link permanente", + "Please Register": "Por favor, cadastre-se", + "powered by Matrix": "distribuído por Matrix", + "Quote": "Citar", + "Redact": "Remover", + "Reject": "Rejeitar", + "Remove": "Remover", + "Remove %(name)s from the directory?": "Remover %(name)s da lista pública de salas?", + "remove %(name)s from the directory": "remover %(name)s da lista pública de salas", + "Remove from Directory": "Remover da lista pública de salas", + "Resend": "Reenviar", + "Riot does not know how to join a room on this network": "O sistema não sabe como entrar na sala desta rede", + "Room directory": "Lista de salas públicas", + "Room not found": "Sala não encontrada", + "Search for a room": "Procurar por uma sala", + "Settings": "Configurações", + "Source URL": "URL fonte", + "Start chat": "Começar conversa", + "The Home Server may be too old to support third party networks": "O servidor pode ser muito antigo para suportar redes de terceiros", + "There are advanced notifications which are not shown here": "Existem opções avançadas que não são exibidas aqui", + "The server may be unavailable or overloaded": "O servidor pode estar inacessível ou sobrecarregado", + "This room is inaccessible to guests. You may be able to join if you register": "Esta sala é inacessível para convidados. Você poderá entrar caso se registre", + " to room": " para sala", + "Unable to fetch notification target list": "Não foi possível obter a lista de alvos de notificação", + "Unable to join network": "Não foi possível conectar na rede", + "Unable to look up room ID from server": "Não foi possível buscar identificação da sala no servidor", + "Unhide Preview": "Mostrar a pré-visualização novamente", + "unknown error code": "código de erro desconhecido", + "Unnamed room": "Sala sem nome", + "Uploaded on %(date)s by %(user)s": "Enviada em %(date)s por %(user)s", + "View Decrypted Source": "Ver a fonte descriptografada", + "View Source": "Ver a fonte", + "When I'm invited to a room": "Quando sou convidada(o) a uma sala", + "World readable": "Público", + "You cannot delete this image. (%(code)s)": "Você não pode apagar esta imagem. (%(code)s)", + "You cannot delete this message. (%(code)s)": "Você não pode apagar esta mensagem. (%(code)s)", + "You are not receiving desktop notifications": "Você não está recebendo notificações desktop", + "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Você pode te-las configurado em outro cliente além do Riot. Você não pode ajustá-las no Riot, mas ainda assim elas se aplicam aqui", + "Sunday": "Domingo", + "Monday": "Segunda", + "Tuesday": "Terça", + "Wednesday": "Quarta", + "Thursday": "Quinta", + "Friday": "Sexta", + "Saturday": "Sábado", + "Today": "Hoje", + "Yesterday": "Ontem", + "All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desabilitadas para todos os destinatários.", + "#example": "#exemplo", + "Failed to remove tag %(prevTag)s from room": "Não foi possível remover a marcação %(prevTag)s desta sala", + "Notifications on the following keywords follow rules which can’t be displayed here": "As notificações sobre as palavras-chave abaixo seguem regras que não podem ser mostradas aqui", + "Welcome page": "Página de boas vindas" +} diff --git a/src/i18n/ru.json b/src/i18n/ru.json new file mode 100644 index 00000000..2b0f7119 --- /dev/null +++ b/src/i18n/ru.json @@ -0,0 +1,119 @@ +{ + "Add an email address above to configure email notifications": "Добавьте email адресс для настройки оповещений", + "All notifications are currently disabled for all targets.": "Все оповещения отключены.", + "An error occurred whilst saving your email notification preferences": "Возникла ошибка при сохранении настроек оповещения вашего email", + "and remove": "и удалить", + "Can't update user notification settings": "Не возможно обновить пользовательские настройки оповещения", + "Create new room": "Создать комнату", + "Couldn't find a matching Matrix room": "Не возможно найти подходящую Матрикс комнату", + "Custom Server Options": "Настройки пользовательского сервера", + "delete the alias": "удалить привязку", + "Delete the room alias": "Удалить привязку комнаты", + "Direct Chat": "Персональное сообщение", + "Directory": "Каталог", + "Dismiss": "Отелонено", + "Drop here to": "Перетащите сюда", + "Enable audible notifications in web client": "Включить звуковые оповещения в веб клиенте", + "Enable desktop notifications": "Включить оповещения на рабочем столе", + "Enable email notifications": "Включить email оповещения", + "Enable notifications for this account": "Включить оповещения для этого аккаунта", + "Enable them now": "Включить сейчас", + "Enter keywords separated by a comma": "Введите ключевые слова, разделенные запятой", + "Error": "Ошибка", + "Error saving email notification preferences": "Ошибка сохранения настроек email оповещений", + "#example": "#пример", + "Failed to": "Не удалось", + "Failed to add tag ": "Не удалось добавить тег ", + "Failed to change settings": "Не удалось изменить настройки", + "Failed to update keywords": "Не удалось обновить ключевые слова", + "Failed to get protocol list from Home Server": "Не удалось получить список протоколов с Пользовательского Сервера", + "Failed to get public room list": "Не удалось получить список публичных комнат", + "Failed to join the room": "Не удалось присоединиться к комнате", + "Failed to remove tag ": "Не удалось удалить тег ", + "Failed to set Direct Message status of room": "Не удалось задать статус комнаты Персональное Сообщение", + "Favourite": "Фаворит", + "Fetching third party location failed": "Не удалось получить местоположение", + "Files": "Файлы", + "Filter room names": "Отфильтровать по названию комнаты", + "Forget": "Забыть", + "from the directory": "из каталога", + " from room": " из комнаты", + "Guests can join": "Гость может присоединиться", + "Guest users can't invite users. Please register to invite": "Гость не может приглашать пользователей. Зарегистрируйтесь для приглошений", + "Invite to this room": "Пригласить в эту комнату", + "Keywords": "Ключевые слова", + "Leave": "Покинуть", + "Low Priority": "Низкий приоритет", + "Members": "Пользователи", + "No rooms to show": "Нет комнат для отображения", + "Noisy": "Шумный", + "Notification targets": "Цели уведомления", + "Notifications": "Уведомления", + "Notifications on the following keywords follow rules which can’t be displayed here": "Уведомления по следующим ключевым словам соответствуют правилам, которые нельзя отобразить здесь", + "Notify for all other messages/rooms": "Уведомить обо всех других сообщениях/комнатах", + "Notify me for anything else": "Уведомить меня обо всем кроме", + "Off": "Выключить", + "On": "Включить", + "Operation failed": "Операция не удалась", + "Please Register": "Пожалуйста зарегистрируйтесь", + "powered by Matrix": "разработано в Matrix", + "Reject": "Отклонить", + "Remove": "Удалить", + "remove": "удалить", + "Remove from Directory": "Удалить из каталога", + "Riot does not know how to join a room on this network": "Riot не знает как присоединиться к этой сети", + "Room directory": "Каталог комнат", + "Room not found": "Комната не найдена", + "Search for a room": "Искать комнату", + "Settings": "Настройки", + "Start chat": "Начать чат", + "The Home Server may be too old to support third party networks": "Пользовательский сервер может быть слишком старым для поддержки сторонних сетей", + "There are advanced notifications which are not shown here": "TЗдесь представлены расширенные уведомления, которые здесь не показаны", + "The server may be unavailable or overloaded": "Возможно, сервер недоступен или перегружен", + "This room is inaccessible to guests. You may be able to join if you register": "Эта комната недоступна для гостей. Вы можете присоединиться, если зарегистрируетесь", + " to room": " к комнате", + "Unable to fetch notification target list": "Не удалось получить список целевых уведомлений", + "Unable to join network": "Не возможно присоединиться к сети", + "Unable to look up room ID from server": "Не возможно найти ID комнаты на сервере", + "unknown error code": "неизвестная ошибка", + "Unnamed room": "Комната без названия", + "World readable": "Читаем мир", + "You are not receiving desktop notifications": "Вы не получаете уведомления на рабочем столе", + "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Вы могли настроить их в клиенте, отличном от Riot. Вы не можете настроить их в Riot, но они все еще применяются", + "All messages": "Все сообщения", + "All messages (loud)": "Все сообщения (громко)", + "Cancel Sending": "Отмена отправки", + "Close": "Закрыть", + "Download this file": "Скачать этот файл", + "Drop here to %(verb)s": "Вставить сюда для %(verb)s", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Удалить псевдоним комнаты %(alias)s и очистить %(name)s из каталога?", + "Failed to add tag %(tagName)s to room": "Не удалось добавить тег %(tagName)s в комнату", + "Failed to forget room %(errCode)s": "Не удалось забыть комнату %(errCode)s", + "Failed to remove tag %(prevTag)s from room": "Не удалось удалить тег %(prevTag)s из комнаты", + "Failed to set direct chat tag": "Не удалось установить прямой чат тег", + "Unhide Preview": "Показать пред. просмотр", + "Uploaded on %(date)s by %(user)s": "Загружено %(date)s %(user)s", + "View Decrypted Source": "Просмотр зашыфрованного источника", + "View Source": "Просмотр источника", + "You cannot delete this image. (%(code)s)": "Вы не можете удалить это изображение. (%(code)s)", + "You cannot delete this message. (%(code)s)": "Вы не можете удалить это сообщение. (%(code)s)", + "Sunday": "Воскресенье", + "Monday": "Понедельник", + "Tuesday": "Вторник", + "Wednesday": "Среда", + "Thursday": "Четверг", + "Friday": "Пятница", + "Saturday": "Субота", + "Today": "Сегодня", + "Yesterday": "Вчера", + "Mentions only": "Только упоминание", + "Mute": "Беззвучный", + "Permalink": "Пстоянная ссылка", + "Quote": "Цитата", + "Redact": "Удалить", + "Remove %(name)s from the directory?": "Удалить %(name)s из каталога?", + "remove %(name)s from the directory": "удалить %(name)s из каталога", + "Resend": "Переслать снова", + "Source URL": "Источник URL", + "Welcome page": "Домашняя страница" +} diff --git a/src/notifications/VectorPushRulesDefinitions.js b/src/notifications/VectorPushRulesDefinitions.js index d696451d..6aea7137 100644 --- a/src/notifications/VectorPushRulesDefinitions.js +++ b/src/notifications/VectorPushRulesDefinitions.js @@ -18,6 +18,7 @@ limitations under the License. var StandardActions = require('./StandardActions'); var PushRuleVectorState = require('./PushRuleVectorState'); +import _t from 'counterpart-riot'; class VectorPushRuleDefinition { constructor(opts) { diff --git a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss index ebd59a1c..b81f3979 100644 --- a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss +++ b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss @@ -175,7 +175,8 @@ limitations under the License. } .mx_Login_type_dropdown { - width: 125px; + display: inline-block; + min-width: 125px; align-self: flex-end; } diff --git a/src/vector/index.js b/src/vector/index.js index 02713afc..ba06de33 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -55,6 +55,9 @@ if (process.env.NODE_ENV !== 'production') { var RunModernizrTests = require("./modernizr"); // this side-effects a global var ReactDOM = require("react-dom"); +// Workaround for broken export +import * as counterpart from 'counterpart-riot'; +var languageHandler = require("matrix-react-sdk/lib/languageHandler"); var sdk = require("matrix-react-sdk"); var PlatformPeg = require("matrix-react-sdk/lib/PlatformPeg"); sdk.loadSkin(require('../component-index')); @@ -62,6 +65,7 @@ var VectorConferenceHandler = require('../VectorConferenceHandler'); var UpdateChecker = require("./updater"); var q = require('q'); var request = require('browser-request'); +import Modal from 'matrix-react-sdk/lib/Modal'; import url from 'url'; @@ -214,6 +218,20 @@ function getConfig() { return deferred.promise; } + +// This is needed to not load the UserSettingsStore before languages are laoded +function getLocalSettings() { + const localSettingsString = localStorage.getItem('mx_local_settings') || '{}'; + return JSON.parse(localSettingsString); +} +// This is needed to not load the UserSettingsStore before languages are laoded +function setLocalSetting(type, value) { + const settings = getLocalSettings(); + settings[type] = value; + // FIXME: handle errors + localStorage.setItem('mx_local_settings', JSON.stringify(settings)); +} + function onLoadCompleted() { // if we did a token login, we're now left with the token, hs and is // url as query params in the url; a little nasty but let's redirect to @@ -228,8 +246,8 @@ function onLoadCompleted() { } } - async function loadApp() { + const fragparts = parseQsFromFragment(window.location); const params = parseQs(window.location); @@ -263,6 +281,17 @@ async function loadApp() { configError = e; } + if (!configJson.languages) { + let languages; + try { + languages = await languageHandler.getAllLanguageKeysFromJson(); + } catch (e) { + console.log("couldn't load languages from languages.json: error = "+e); + languages = ['en']; + } + configJson.languages = languages; + } + if (window.localStorage && window.localStorage.getItem('mx_accepts_unsupported_browser')) { console.log('User has previously accepted risks in using an unsupported browser'); validBrowser = true; @@ -309,4 +338,17 @@ async function loadApp() { } } -loadApp(); +function loadLanguage(callback) { + const _localSettings = getLocalSettings(); + var languages = []; + if (!_localSettings.hasOwnProperty('language')) { + languages = languageHandler.getNormalizedLanguageKeys(languageHandler.getLanguageFromBrowser()); + }else { + languages = languageHandler.getNormalizedLanguageKeys(_localSettings.language); + } + languageHandler.setLanguage(languages, counterpart); + setLocalSetting('language', languages[0]); + callback(); +} + +loadLanguage(loadApp); diff --git a/yarn-error.log b/yarn-error.log new file mode 100644 index 00000000..ff994d12 --- /dev/null +++ b/yarn-error.log @@ -0,0 +1,200 @@ +Arguments: + C:\Program Files\nodejs\node.exe C:\Program Files (x86)\Yarn\bin\yarn.js install + +PATH: + C:\Users\marce\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\local\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\marce\bin;C:\ProgramData\Oracle\Java\javapath;C:\Python27;C:\Python27\Scripts;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY;C:\Program Files (x86)\QuickTime\QTSystem;C:\Program Files\Git\cmd;C:\ProgramData\chocolatey\bin;C:\Program Files\Java\jdk1.8.0_131\bin;C:\Android\android-sdk\tools;C:\Android\android-sdk\platform-tools;C:\Program Files\nodejs;C:\Program Files (x86)\Yarn\bin;C:\Ruby23\bin;C:\Users\marce\.cargo\bin;C:\Users\marce\AppData\Local\Microsoft\WindowsApps;C:\Users\marce\AppData\Local\atom\bin;C:\Program Files\Docker Toolbox;C:\Users\marce\AppData\Roaming\npm;C:\Users\marce\AppData\Local\Yarn\.bin;C:\Program Files\Git\usr\bin\vendor_perl;C:\Program Files\Git\usr\bin\core_perl + +Yarn version: + 0.23.4 + +Node version: + 7.10.0 + +Platform: + win32 x64 + +npm manifest: + { + "name": "riot-web", + "productName": "Riot", + "main": "electron/src/electron-main.js", + "version": "0.9.9", + "description": "A feature-rich client for Matrix.org", + "author": "Vector Creations Ltd.", + "repository": { + "type": "git", + "url": "https://github.com/vector-im/riot-web" + }, + "license": "Apache-2.0", + "files": [ + "AUTHORS.rst", + "CONTRIBUTING.rst", + "deploy", + "docs", + "karma.conf.js", + "lib", + "release.sh", + "scripts", + "src", + "test", + "webpack.config.js" + ], + "style": "bundle.css", + "matrix-react-parent": "matrix-react-sdk", + "scripts": { + "reskindex": "reskindex -h src/header", + "build:res": "node scripts/copy-res.js", + "build:modernizr": "modernizr -c .modernizr.json -d src/vector/modernizr.js", + "build:compile": "babel --source-maps -d lib src", + "build:bundle": "cross-env NODE_ENV=production webpack -p --progress", + "build:bundle:dev": "webpack --optimize-occurence-order --progress", + "build:electron": "npm run clean && npm run build && build -wml --ia32 --x64", + "build": "npm run build:res && npm run build:bundle", + "build:dev": "npm run build:res && npm run build:bundle:dev", + "dist": "scripts/package.sh", + "install:electron": "install-app-deps", + "electron": "npm run install:electron && electron .", + "start:res": "node scripts/copy-res.js -w", + "start:js": "webpack-dev-server --output-filename=bundles/_dev_/[name].js --output-chunk-file=bundles/_dev_/[name].js -w --progress", + "start:js:prod": "cross-env NODE_ENV=production webpack-dev-server -w --progress", + "start": "parallelshell \"npm run start:res\" \"npm run start:js\"", + "start:prod": "parallelshell \"npm run start:res\" \"npm run start:js:prod\"", + "lint": "eslint src/", + "lintall": "eslint src/ test/", + "clean": "rimraf lib webapp electron/dist", + "prepublish": "npm run build:compile", + "test": "karma start --single-run=true --autoWatch=false --browsers PhantomJS --colors=false", + "test-multi": "karma start" + }, + "dependencies": { + "babel-polyfill": "^6.5.0", + "babel-runtime": "^6.11.6", + "browser-request": "^0.3.3", + "classnames": "^2.1.2", + "counterpart": "Nordgedanken/counterpart#develop", + "draft-js": "^0.8.1", + "extract-text-webpack-plugin": "^0.9.1", + "favico.js": "^0.3.10", + "filesize": "3.5.6", + "flux": "~2.0.3", + "gfm.css": "^1.1.1", + "highlight.js": "^9.0.0", + "linkifyjs": "^2.1.3", + "matrix-js-sdk": "matrix-org/matrix-js-sdk#develop", + "matrix-react-sdk": "matrix-org/matrix-react-sdk#develop", + "modernizr": "^3.1.0", + "pako": "^1.0.5", + "q": "^1.4.1", + "react": "^15.4.0", + "react-dnd": "^2.1.4", + "react-dnd-html5-backend": "^2.1.2", + "react-dom": "^15.4.0", + "react-gemini-scrollbar": "matrix-org/react-gemini-scrollbar#39d858c", + "sanitize-html": "^1.11.1", + "ua-parser-js": "^0.7.10", + "url": "^0.11.0" + }, + "devDependencies": { + "autoprefixer": "^6.6.0", + "babel-cli": "^6.5.2", + "babel-core": "^6.14.0", + "babel-eslint": "^6.1.0", + "babel-loader": "^6.2.5", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-async-to-generator": "^6.16.0", + "babel-plugin-transform-class-properties": "^6.16.0", + "babel-plugin-transform-object-rest-spread": "^6.16.0", + "babel-plugin-transform-runtime": "^6.15.0", + "babel-preset-es2015": "^6.16.0", + "babel-preset-es2016": "^6.16.0", + "babel-preset-es2017": "^6.16.0", + "babel-preset-react": "^6.16.0", + "babel-preset-stage-2": "^6.17.0", + "chokidar": "^1.6.1", + "cpx": "^1.3.2", + "cross-env": "^4.0.0", + "css-raw-loader": "^0.1.1", + "electron-builder": "^11.2.4", + "electron-builder-squirrel-windows": "^11.2.1", + "emojione": "^2.2.7", + "eslint": "^3.14.0", + "eslint-config-google": "^0.7.1", + "eslint-plugin-flowtype": "^2.30.0", + "eslint-plugin-react": "^6.9.0", + "expect": "^1.16.0", + "fs-extra": "^0.30.0", + "html-webpack-plugin": "^2.24.0", + "json-loader": "^0.5.3", + "karma": "^0.13.22", + "karma-chrome-launcher": "^0.2.3", + "karma-cli": "^0.1.2", + "karma-junit-reporter": "^0.4.1", + "karma-mocha": "^0.2.2", + "karma-phantomjs-launcher": "^1.0.0", + "karma-webpack": "^1.7.0", + "minimist": "^1.2.0", + "mkdirp": "^0.5.1", + "mocha": "^2.4.5", + "parallelshell": "^1.2.0", + "phantomjs-prebuilt": "^2.1.7", + "postcss-extend": "^1.0.5", + "postcss-import": "^9.0.0", + "postcss-loader": "^1.2.2", + "postcss-mixins": "^5.4.1", + "postcss-nested": "^1.0.0", + "postcss-scss": "^0.4.0", + "postcss-simple-vars": "^3.0.0", + "postcss-strip-inline-comments": "^0.1.5", + "react-addons-perf": "^15.4.0", + "react-addons-test-utils": "^15.4.0", + "rimraf": "^2.4.3", + "source-map-loader": "^0.1.5", + "webpack": "^1.12.14", + "webpack-dev-server": "^1.16.2" + }, + "optionalDependencies": { + "olm": "https://matrix.org/packages/npm/olm/olm-2.2.1.tgz" + }, + "build": { + "appId": "im.riot.app", + "category": "Network", + "electronVersion": "1.6.2", + "//asar=false": "https://github.com/electron-userland/electron-builder/issues/675", + "asar": false, + "dereference": true, + "//files": "We bundle everything, so we only need to include webapp/", + "files": [ + "node_modules/**", + "src/**", + "img/**" + ], + "extraResources": [ + "webapp/**/*" + ], + "linux": { + "target": "deb", + "maintainer": "support@riot.im", + "desktop": { + "StartupWMClass": "riot-web" + } + }, + "win": { + "target": "squirrel" + }, + "directories": { + "buildResources": "electron/build", + "output": "electron/dist", + "app": "electron" + } + } + } + +yarn manifest: + No manifest + +Lockfile: + No lockfile + +Trace: + Error: https://registry.yarnpkg.com/emojione/-/emojione-2.2.7.tgz: unexpected end of file + at Zlib._handle.onerror (zlib.js:355:17) diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 00000000..fa7e9e36 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,6076 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"7zip-bin-linux@^1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/7zip-bin-linux/-/7zip-bin-linux-1.0.3.tgz#66724d7bb7526381574393888f62566ed537151c" + +"7zip-bin-mac@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/7zip-bin-mac/-/7zip-bin-mac-1.0.1.tgz#3e68778bbf0926adc68159427074505d47555c02" + +"7zip-bin-win@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/7zip-bin-win/-/7zip-bin-win-2.0.2.tgz#4c36399413922f111b8e80df3065a4069cfc0a64" + +"7zip-bin@^2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-2.0.4.tgz#0cd28ac3301b1302fbd99922bacb8bad98103e12" + optionalDependencies: + "7zip-bin-linux" "^1.0.3" + "7zip-bin-mac" "^1.0.1" + "7zip-bin-win" "^2.0.2" + +abbrev@1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" + +accepts@1.3.3, accepts@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" + dependencies: + mime-types "~2.1.11" + negotiator "0.6.1" + +acorn-jsx@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" + dependencies: + acorn "^3.0.4" + +acorn@^3.0.0, acorn@^3.0.4: + version "3.3.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" + +acorn@^5.0.1: + version "5.0.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" + +after@0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" + +ajv-keywords@^1.0.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" + +ajv@^4.7.0, ajv@^4.9.1: + version "4.11.8" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" + dependencies: + co "^4.6.0" + json-stable-stringify "^1.0.1" + +align-text@^0.1.1, align-text@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" + dependencies: + kind-of "^3.0.2" + longest "^1.0.1" + repeat-string "^1.5.2" + +amdefine@>=0.0.4: + version "1.0.1" + resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + +another-json@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/another-json/-/another-json-0.2.0.tgz#b5f4019c973b6dd5c6506a2d93469cb6d32aeedc" + +ansi-align@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" + dependencies: + string-width "^1.0.1" + +ansi-escapes@^1.1.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + +any-promise@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-0.1.0.tgz#830b680aa7e56f33451d4b049f3bd8044498ee27" + +anymatch@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" + dependencies: + arrify "^1.0.0" + micromatch "^2.1.5" + +aproba@^1.0.3: + version "1.1.1" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" + +archiver-utils@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-1.3.0.tgz#e50b4c09c70bf3d680e32ff1b7994e9f9d895174" + dependencies: + glob "^7.0.0" + graceful-fs "^4.1.0" + lazystream "^1.0.0" + lodash "^4.8.0" + normalize-path "^2.0.0" + readable-stream "^2.0.0" + +archiver@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/archiver/-/archiver-1.3.0.tgz#4f2194d6d8f99df3f531e6881f14f15d55faaf22" + dependencies: + archiver-utils "^1.3.0" + async "^2.0.0" + buffer-crc32 "^0.2.1" + glob "^7.0.0" + lodash "^4.8.0" + readable-stream "^2.0.0" + tar-stream "^1.5.0" + walkdir "^0.0.11" + zip-stream "^1.1.0" + +are-we-there-yet@~1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.9" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" + dependencies: + sprintf-js "~1.0.2" + +argparse@~0.1.15: + version "0.1.16" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-0.1.16.tgz#cfd01e0fbba3d6caed049fbd758d40f65196f57c" + dependencies: + underscore "~1.7.0" + underscore.string "~2.4.0" + +arr-diff@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" + dependencies: + arr-flatten "^1.0.1" + +arr-flatten@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" + +array-filter@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" + +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + +array-map@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" + +array-reduce@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" + +array-slice@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + dependencies: + array-uniq "^1.0.1" + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + +array-unique@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + +array.prototype.find@^2.0.1: + version "2.0.4" + resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.7.0" + +arraybuffer.slice@0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca" + +arrify@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + +asap@^2.0.3, asap@~2.0.3: + version "2.0.5" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" + +asar-electron-builder@^0.13.5: + version "0.13.5" + resolved "https://registry.yarnpkg.com/asar-electron-builder/-/asar-electron-builder-0.13.5.tgz#4ccd4d11fd7c9d3b3cffc782fde3deed9ef91af6" + dependencies: + chromium-pickle-js "^0.2.0" + commander "^2.9.0" + cuint "^0.2.1" + minimatch "^3.0.2" + mkdirp "^0.5.1" + +asn1@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + +assert-plus@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" + +assert@^1.1.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + dependencies: + util "0.10.3" + +async-each@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + +async@^0.9.0, async@~0.9.0: + version "0.9.2" + resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" + +async@^1.3.0, async@^1.5.0: + version "1.5.2" + resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" + +async@^2.0.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/async/-/async-2.4.0.tgz#4990200f18ea5b837c2cc4f8c031a6985c385611" + dependencies: + lodash "^4.14.0" + +async@~0.2.6: + version "0.2.10" + resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + +autolinker@~0.15.0: + version "0.15.3" + resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-0.15.3.tgz#342417d8f2f3461b14cf09088d5edf8791dc9832" + +autoprefixer@^6.6.0: + version "6.7.7" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" + dependencies: + browserslist "^1.7.6" + caniuse-db "^1.0.30000634" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^5.2.16" + postcss-value-parser "^3.2.3" + +aws-sign2@~0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" + +aws4@^1.2.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" + +babel-cli@^6.5.2: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" + dependencies: + babel-core "^6.24.1" + babel-polyfill "^6.23.0" + babel-register "^6.24.1" + babel-runtime "^6.22.0" + commander "^2.8.1" + convert-source-map "^1.1.0" + fs-readdir-recursive "^1.0.0" + glob "^7.0.0" + lodash "^4.2.0" + output-file-sync "^1.1.0" + path-is-absolute "^1.0.0" + slash "^1.0.0" + source-map "^0.5.0" + v8flags "^2.0.10" + optionalDependencies: + chokidar "^1.6.1" + +babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" + dependencies: + chalk "^1.1.0" + esutils "^2.0.2" + js-tokens "^3.0.0" + +babel-core@^6.14.0, babel-core@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" + dependencies: + babel-code-frame "^6.22.0" + babel-generator "^6.24.1" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + babylon "^6.11.0" + convert-source-map "^1.1.0" + debug "^2.1.1" + json5 "^0.5.0" + lodash "^4.2.0" + minimatch "^3.0.2" + path-is-absolute "^1.0.0" + private "^0.1.6" + slash "^1.0.0" + source-map "^0.5.0" + +babel-eslint@^6.1.0: + version "6.1.2" + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-6.1.2.tgz#5293419fe3672d66598d327da9694567ba6a5f2f" + dependencies: + babel-traverse "^6.0.20" + babel-types "^6.0.19" + babylon "^6.0.18" + lodash.assign "^4.0.0" + lodash.pickby "^4.0.0" + +babel-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" + dependencies: + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + detect-indent "^4.0.0" + jsesc "^1.3.0" + lodash "^4.2.0" + source-map "^0.5.0" + trim-right "^1.0.1" + +babel-helper-bindify-decorators@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" + dependencies: + babel-helper-explode-assignable-expression "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-builder-react-jsx@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + esutils "^2.0.0" + +babel-helper-call-delegate@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-define-map@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + lodash "^4.2.0" + +babel-helper-explode-assignable-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-explode-class@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" + dependencies: + babel-helper-bindify-decorators "^6.24.1" + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + dependencies: + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-get-function-arity@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-hoist-variables@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-optimise-call-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-regex@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + lodash "^4.2.0" + +babel-helper-remap-async-to-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-replace-supers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" + dependencies: + babel-helper-optimise-call-expression "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helpers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-loader@^6.2.5: + version "6.4.1" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.1.tgz#0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca" + dependencies: + find-cache-dir "^0.1.1" + loader-utils "^0.2.16" + mkdirp "^0.5.1" + object-assign "^4.0.1" + +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-add-module-exports@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.1.tgz#9ae9a1f4a8dc67f0cdec4f4aeda1e43a5ff65e25" + +babel-plugin-check-es2015-constants@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-syntax-async-functions@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" + +babel-plugin-syntax-async-generators@^6.5.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" + +babel-plugin-syntax-class-properties@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" + +babel-plugin-syntax-decorators@^6.13.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" + +babel-plugin-syntax-dynamic-import@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" + +babel-plugin-syntax-exponentiation-operator@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" + +babel-plugin-syntax-flow@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" + +babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" + +babel-plugin-syntax-object-rest-spread@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" + +babel-plugin-syntax-trailing-function-commas@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" + +babel-plugin-transform-async-generator-functions@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" + dependencies: + babel-helper-remap-async-to-generator "^6.24.1" + babel-plugin-syntax-async-generators "^6.5.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-async-to-generator@^6.16.0, babel-plugin-transform-async-to-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" + dependencies: + babel-helper-remap-async-to-generator "^6.24.1" + babel-plugin-syntax-async-functions "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-class-properties@^6.16.0, babel-plugin-transform-class-properties@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" + dependencies: + babel-helper-function-name "^6.24.1" + babel-plugin-syntax-class-properties "^6.8.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-decorators@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" + dependencies: + babel-helper-explode-class "^6.24.1" + babel-plugin-syntax-decorators "^6.13.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-arrow-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoping@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + lodash "^4.2.0" + +babel-plugin-transform-es2015-classes@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" + dependencies: + babel-helper-define-map "^6.24.1" + babel-helper-function-name "^6.24.1" + babel-helper-optimise-call-expression "^6.24.1" + babel-helper-replace-supers "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-computed-properties@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-destructuring@^6.22.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-duplicate-keys@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-for-of@^6.22.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-modules-amd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" + dependencies: + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-commonjs@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" + dependencies: + babel-plugin-transform-strict-mode "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-modules-systemjs@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-umd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" + dependencies: + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-object-super@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" + dependencies: + babel-helper-replace-supers "^6.24.1" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-parameters@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" + dependencies: + babel-helper-call-delegate "^6.24.1" + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-shorthand-properties@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-spread@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-sticky-regex@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-template-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-typeof-symbol@^6.22.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-unicode-regex@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + regexpu-core "^2.0.0" + +babel-plugin-transform-exponentiation-operator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" + dependencies: + babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" + babel-plugin-syntax-exponentiation-operator "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-flow-strip-types@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" + dependencies: + babel-plugin-syntax-flow "^6.18.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-object-rest-spread@^6.16.0, babel-plugin-transform-object-rest-spread@^6.22.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" + dependencies: + babel-plugin-syntax-object-rest-spread "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-display-name@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx-self@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" + dependencies: + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx-source@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" + dependencies: + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" + dependencies: + babel-helper-builder-react-jsx "^6.24.1" + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-regenerator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" + dependencies: + regenerator-transform "0.9.11" + +babel-plugin-transform-runtime@^6.15.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-strict-mode@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-polyfill@^6.23.0, babel-polyfill@^6.5.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" + dependencies: + babel-runtime "^6.22.0" + core-js "^2.4.0" + regenerator-runtime "^0.10.0" + +babel-preset-es2015@^6.16.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" + dependencies: + babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-transform-es2015-arrow-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoping "^6.24.1" + babel-plugin-transform-es2015-classes "^6.24.1" + babel-plugin-transform-es2015-computed-properties "^6.24.1" + babel-plugin-transform-es2015-destructuring "^6.22.0" + babel-plugin-transform-es2015-duplicate-keys "^6.24.1" + babel-plugin-transform-es2015-for-of "^6.22.0" + babel-plugin-transform-es2015-function-name "^6.24.1" + babel-plugin-transform-es2015-literals "^6.22.0" + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-plugin-transform-es2015-modules-systemjs "^6.24.1" + babel-plugin-transform-es2015-modules-umd "^6.24.1" + babel-plugin-transform-es2015-object-super "^6.24.1" + babel-plugin-transform-es2015-parameters "^6.24.1" + babel-plugin-transform-es2015-shorthand-properties "^6.24.1" + babel-plugin-transform-es2015-spread "^6.22.0" + babel-plugin-transform-es2015-sticky-regex "^6.24.1" + babel-plugin-transform-es2015-template-literals "^6.22.0" + babel-plugin-transform-es2015-typeof-symbol "^6.22.0" + babel-plugin-transform-es2015-unicode-regex "^6.24.1" + babel-plugin-transform-regenerator "^6.24.1" + +babel-preset-es2016@^6.16.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-es2016/-/babel-preset-es2016-6.24.1.tgz#f900bf93e2ebc0d276df9b8ab59724ebfd959f8b" + dependencies: + babel-plugin-transform-exponentiation-operator "^6.24.1" + +babel-preset-es2017@^6.16.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-es2017/-/babel-preset-es2017-6.24.1.tgz#597beadfb9f7f208bcfd8a12e9b2b29b8b2f14d1" + dependencies: + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-to-generator "^6.24.1" + +babel-preset-flow@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" + dependencies: + babel-plugin-transform-flow-strip-types "^6.22.0" + +babel-preset-react@^6.16.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" + dependencies: + babel-plugin-syntax-jsx "^6.3.13" + babel-plugin-transform-react-display-name "^6.23.0" + babel-plugin-transform-react-jsx "^6.24.1" + babel-plugin-transform-react-jsx-self "^6.22.0" + babel-plugin-transform-react-jsx-source "^6.22.0" + babel-preset-flow "^6.23.0" + +babel-preset-stage-2@^6.17.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" + dependencies: + babel-plugin-syntax-dynamic-import "^6.18.0" + babel-plugin-transform-class-properties "^6.24.1" + babel-plugin-transform-decorators "^6.24.1" + babel-preset-stage-3 "^6.24.1" + +babel-preset-stage-3@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" + dependencies: + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-generator-functions "^6.24.1" + babel-plugin-transform-async-to-generator "^6.24.1" + babel-plugin-transform-exponentiation-operator "^6.24.1" + babel-plugin-transform-object-rest-spread "^6.22.0" + +babel-register@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" + dependencies: + babel-core "^6.24.1" + babel-runtime "^6.22.0" + core-js "^2.4.0" + home-or-tmp "^2.0.0" + lodash "^4.2.0" + mkdirp "^0.5.1" + source-map-support "^0.4.2" + +babel-runtime@^6.11.6, babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.9.2: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.10.0" + +babel-template@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + babylon "^6.11.0" + lodash "^4.2.0" + +babel-traverse@^6.0.20, babel-traverse@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" + dependencies: + babel-code-frame "^6.22.0" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + babylon "^6.15.0" + debug "^2.2.0" + globals "^9.0.0" + invariant "^2.2.0" + lodash "^4.2.0" + +babel-types@^6.0.19, babel-types@^6.19.0, babel-types@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" + dependencies: + babel-runtime "^6.22.0" + esutils "^2.0.2" + lodash "^4.2.0" + to-fast-properties "^1.0.1" + +babylon@^6.0.18, babylon@^6.11.0, babylon@^6.15.0: + version "6.17.1" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" + +backo2@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" + +balanced-match@^0.4.1: + version "0.4.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" + +base64-arraybuffer@0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" + +base64-js@1.2.0, base64-js@^1.0.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" + +base64id@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" + +batch@0.5.3, batch@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" + +bcrypt-pbkdf@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" + dependencies: + tweetnacl "^0.14.3" + +better-assert@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" + dependencies: + callsite "1.0.0" + +big.js@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" + +binary-extensions@^1.0.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" + +bl@^1.0.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.1.tgz#cac328f7bee45730d404b692203fcb590e172d5e" + dependencies: + readable-stream "^2.0.5" + +blob@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" + +block-stream@*: + version "0.0.9" + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + dependencies: + inherits "~2.0.0" + +bluebird-lst-c@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/bluebird-lst-c/-/bluebird-lst-c-1.0.6.tgz#81f881d13f9df700f67d577f13480bc32d84bba9" + dependencies: + bluebird "^3.4.7" + +bluebird@^2.9.27: + version "2.11.0" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" + +bluebird@^3.4.7: + version "3.5.0" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" + +blueimp-canvas-to-blob@^3.5.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/blueimp-canvas-to-blob/-/blueimp-canvas-to-blob-3.7.0.tgz#6e985b935c0223410c3a2ad96c0ba3ea214c2b13" + +body-parser@^1.12.4: + version "1.17.1" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.17.1.tgz#75b3bc98ddd6e7e0d8ffe750dfaca5c66993fa47" + dependencies: + bytes "2.4.0" + content-type "~1.0.2" + debug "2.6.1" + depd "~1.1.0" + http-errors "~1.6.1" + iconv-lite "0.4.15" + on-finished "~2.3.0" + qs "6.4.0" + raw-body "~2.2.0" + type-is "~1.6.14" + +boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + +boom@2.x.x: + version "2.10.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" + dependencies: + hoek "2.x.x" + +boxen@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" + dependencies: + ansi-align "^1.1.0" + camelcase "^2.1.0" + chalk "^1.1.1" + cli-boxes "^1.0.0" + filled-array "^1.0.0" + object-assign "^4.0.1" + repeating "^2.0.0" + string-width "^1.0.1" + widest-line "^1.0.0" + +brace-expansion@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" + dependencies: + balanced-match "^0.4.1" + concat-map "0.0.1" + +braces@^0.1.2: + version "0.1.5" + resolved "https://registry.yarnpkg.com/braces/-/braces-0.1.5.tgz#c085711085291d8b75fdd74eab0f8597280711e6" + dependencies: + expand-range "^0.1.0" + +braces@^1.8.2: + version "1.8.5" + resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" + dependencies: + expand-range "^1.8.1" + preserve "^0.2.0" + repeat-element "^1.1.2" + +browser-encrypt-attachment@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/browser-encrypt-attachment/-/browser-encrypt-attachment-0.3.0.tgz#205a94caadf0dc7e81413941812f655bd190ff1c" + +browser-request@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/browser-request/-/browser-request-0.3.3.tgz#9ece5b5aca89a29932242e18bf933def9876cc17" + +browserify-aes@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-0.4.0.tgz#067149b668df31c4b58533e02d01e806d8608e2c" + dependencies: + inherits "^2.0.1" + +browserify-zlib@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" + dependencies: + pako "~0.2.0" + +browserslist@^1.7.6: + version "1.7.7" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" + dependencies: + caniuse-db "^1.0.30000639" + electron-to-chromium "^1.2.7" + +buffer-crc32@^0.2.1: + version "0.2.13" + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" + +buffer-shims@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" + +buffer@^4.9.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +builtin-modules@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + +bytes@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.3.0.tgz#d5b680a165b6201739acb611542aabc2d8ceb070" + +bytes@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" + +caller-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" + dependencies: + callsites "^0.2.0" + +callsite@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" + +callsites@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" + +camel-case@3.0.x: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" + dependencies: + no-case "^2.2.0" + upper-case "^1.1.1" + +camelcase-css@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-1.0.1.tgz#157c4238265f5cf94a1dffde86446552cbf3f705" + +camelcase-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + dependencies: + camelcase "^2.0.0" + map-obj "^1.0.0" + +camelcase@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + +camelcase@^2.0.0, camelcase@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + +camelcase@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" + +caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: + version "1.0.30000666" + resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000666.tgz#951ed9f3d3bfaa08a06dafbb5089ab07cce6ab90" + +capture-stack-trace@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" + +caseless@~0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + +center-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" + dependencies: + align-text "^0.1.3" + lazy-cache "^1.0.3" + +chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chokidar@^1.0.0, chokidar@^1.4.1, chokidar@^1.6.0, chokidar@^1.6.1: + version "1.7.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" + dependencies: + anymatch "^1.3.0" + async-each "^1.0.0" + glob-parent "^2.0.0" + inherits "^2.0.1" + is-binary-path "^1.0.0" + is-glob "^2.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.0.0" + optionalDependencies: + fsevents "^1.0.0" + +chromium-pickle-js@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" + +ci-info@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" + +circular-json@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" + +classnames@^2.1.2: + version "2.2.5" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.5.tgz#fb3801d453467649ef3603c7d61a02bd129bde6d" + +clean-css@4.0.x: + version "4.0.13" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.0.13.tgz#feb2a176062d72a6c3e624d9213cac6a0c485e80" + dependencies: + source-map "0.5.x" + +clean-css@^3.2.10: + version "3.4.26" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.26.tgz#55323b344ff3bcee684a2eac81c93df8fa73deeb" + dependencies: + commander "2.8.x" + source-map "0.4.x" + +cli-boxes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + +cli-cursor@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" + dependencies: + restore-cursor "^1.0.1" + +cli-width@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" + +cliui@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" + dependencies: + center-align "^0.1.1" + right-align "^0.1.1" + wordwrap "0.0.2" + +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + +clone@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + +color-convert@~0.5.0: + version "0.5.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-0.5.3.tgz#bdb6c69ce660fadffe0b0007cc447e1b9f7282bd" + +colors@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" + +combined-stream@^1.0.5, combined-stream@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" + dependencies: + delayed-stream "~1.0.0" + +commander@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" + +commander@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" + +commander@2.8.x: + version "2.8.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" + dependencies: + graceful-readlink ">= 1.0.0" + +commander@2.9.x, commander@^2.8.1, commander@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" + dependencies: + graceful-readlink ">= 1.0.0" + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + +commonmark@^0.27.0: + version "0.27.0" + resolved "https://registry.yarnpkg.com/commonmark/-/commonmark-0.27.0.tgz#d86c262b962821e9483c69c547bc58840c047b34" + dependencies: + entities "~ 1.1.1" + mdurl "~ 1.0.1" + minimist "~ 1.2.0" + string.prototype.repeat "^0.2.0" + +compare-version@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz#0162ec2d9351f5ddd59a9202cba935366a725080" + +component-bind@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" + +component-emitter@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3" + +component-emitter@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + +component-inherit@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" + +compress-commons@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-1.2.0.tgz#58587092ef20d37cb58baf000112c9278ff73b9f" + dependencies: + buffer-crc32 "^0.2.1" + crc32-stream "^2.0.0" + normalize-path "^2.0.0" + readable-stream "^2.0.0" + +compressible@~2.0.8: + version "2.0.10" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.10.tgz#feda1c7f7617912732b29bf8cf26252a20b9eecd" + dependencies: + mime-db ">= 1.27.0 < 2" + +compression@^1.5.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.6.2.tgz#cceb121ecc9d09c52d7ad0c3350ea93ddd402bc3" + dependencies: + accepts "~1.3.3" + bytes "2.3.0" + compressible "~2.0.8" + debug "~2.2.0" + on-headers "~1.0.1" + vary "~1.1.0" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + +concat-stream@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.0.tgz#53f7d43c51c5e43f81c8fdd03321c631be68d611" + dependencies: + inherits "~2.0.1" + readable-stream "~2.0.0" + typedarray "~0.0.5" + +concat-stream@^1.5.2: + version "1.6.0" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" + dependencies: + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +configstore@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" + dependencies: + dot-prop "^3.0.0" + graceful-fs "^4.1.2" + mkdirp "^0.5.0" + object-assign "^4.0.1" + os-tmpdir "^1.0.0" + osenv "^0.1.0" + uuid "^2.0.1" + write-file-atomic "^1.1.2" + xdg-basedir "^2.0.0" + +connect-history-api-fallback@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" + +connect@^3.3.5: + version "3.6.1" + resolved "https://registry.yarnpkg.com/connect/-/connect-3.6.1.tgz#b7760693a74f0454face1d9378edb3f885b43227" + dependencies: + debug "2.6.3" + finalhandler "1.0.1" + parseurl "~1.3.1" + utils-merge "1.0.0" + +console-browserify@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + dependencies: + date-now "^0.1.4" + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + +content-disposition@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" + +content-type@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" + +convert-source-map@^1.1.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + +cookie@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + +core-js@^1.0.0: + version "1.2.7" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" + +core-js@^2.1.0, core-js@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" + +core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + +cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.1.3.tgz#952771eb0dddc1cb3fa2f6fbe51a522e93b3ee0a" + dependencies: + is-directory "^0.3.1" + js-yaml "^3.4.3" + minimist "^1.2.0" + object-assign "^4.1.0" + os-homedir "^1.0.1" + parse-json "^2.2.0" + require-from-string "^1.1.0" + +counterpart@Nordgedanken/counterpart#develop: + version "0.17.8" + resolved "https://codeload.github.com/Nordgedanken/counterpart/tar.gz/63dadf4d3d809b41f2a62e407462c5fbbc62cece" + dependencies: + date-names "^0.1.8" + except "^0.1.3" + extend "^3.0.1" + pluralizers "^0.1.5" + sprintf-js "^1.1.0" + +cpx@^1.3.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/cpx/-/cpx-1.5.0.tgz#185be018511d87270dedccc293171e37655ab88f" + dependencies: + babel-runtime "^6.9.2" + chokidar "^1.6.0" + duplexer "^0.1.1" + glob "^7.0.5" + glob2base "^0.0.12" + minimatch "^3.0.2" + mkdirp "^0.5.1" + resolve "^1.1.7" + safe-buffer "^5.0.1" + shell-quote "^1.6.1" + subarg "^1.0.0" + +crc32-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-2.0.0.tgz#e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4" + dependencies: + crc "^3.4.4" + readable-stream "^2.0.0" + +crc@^3.4.4: + version "3.4.4" + resolved "https://registry.yarnpkg.com/crc/-/crc-3.4.4.tgz#9da1e980e3bd44fc5c93bf5ab3da3378d85e466b" + +create-error-class@^3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" + dependencies: + capture-stack-trace "^1.0.0" + +cross-env@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-4.0.0.tgz#16083862d08275a4628b0b243b121bedaa55dd80" + dependencies: + cross-spawn "^5.1.0" + is-windows "^1.0.0" + +cross-spawn@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cryptiles@2.x.x: + version "2.0.5" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" + dependencies: + boom "2.x.x" + +crypto-browserify@3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.3.0.tgz#b9fc75bb4a0ed61dcf1cd5dae96eb30c9c3e506c" + dependencies: + browserify-aes "0.4.0" + pbkdf2-compat "2.0.1" + ripemd160 "0.2.0" + sha.js "2.2.6" + +css-raw-loader@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/css-raw-loader/-/css-raw-loader-0.1.1.tgz#40391ffd18bdb5cc01036e88fdf97de40982708d" + dependencies: + clean-css "^3.2.10" + loader-utils "~0.2.7" + source-list-map "~0.1.5" + +css-select@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-what@2.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" + +cuint@^0.2.1, cuint@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/cuint/-/cuint-0.2.2.tgz#408086d409550c2631155619e9fa7bcadc3b991b" + +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + dependencies: + array-find-index "^1.0.1" + +custom-event@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/custom-event/-/custom-event-1.0.1.tgz#5d02a46850adf1b4a317946a3928fccb5bfd0425" + +d@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" + dependencies: + es5-ext "^0.10.9" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + dependencies: + assert-plus "^1.0.0" + +date-names@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/date-names/-/date-names-0.1.8.tgz#56c916622b658f60185c998719419084c0b0db4b" + +date-now@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + +debug@0.7.4: + version "0.7.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-0.7.4.tgz#06e1ea8082c2cb14e39806e22e2f6f757f92af39" + +debug@2.2.0, debug@~2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" + dependencies: + ms "0.7.1" + +debug@2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c" + dependencies: + ms "0.7.2" + +debug@2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" + dependencies: + ms "0.7.2" + +debug@2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" + dependencies: + ms "0.7.2" + +debug@2.6.3: + version "2.6.3" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" + dependencies: + ms "0.7.2" + +debug@2.6.4: + version "2.6.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.4.tgz#7586a9b3c39741c0282ae33445c4e8ac74734fe0" + dependencies: + ms "0.7.3" + +debug@^2.1.1, debug@^2.1.3, debug@^2.2.0, debug@^2.3.2, debug@^2.6.0, debug@^2.6.6: + version "2.6.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.6.tgz#a9fa6fbe9ca43cf1e79f73b75c0189cbb7d6db5a" + dependencies: + ms "0.7.3" + +decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + +deep-extend@~0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + +define-properties@^1.1.2, define-properties@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" + dependencies: + foreach "^2.0.5" + object-keys "^1.0.8" + +del@^2.0.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" + dependencies: + globby "^5.0.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + rimraf "^2.2.8" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + +depd@1.1.0, depd@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" + +destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + +detect-indent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" + dependencies: + repeating "^2.0.0" + +di@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c" + +diff@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" + +disposables@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/disposables/-/disposables-1.0.1.tgz#064727a25b54f502bd82b89aa2dfb8df9f1b39e3" + +dnd-core@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/dnd-core/-/dnd-core-2.4.0.tgz#c4a5bc2aea75164f8a295d769d5f551810e7d411" + dependencies: + asap "^2.0.3" + invariant "^2.0.0" + lodash "^4.2.0" + redux "^3.2.0" + +doctrine@1.2.3, doctrine@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.2.3.tgz#6aec6bbd62cf89dd498cae70c0ed9f49da873a6a" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +dom-converter@~0.1: + version "0.1.4" + resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b" + dependencies: + utila "~0.3" + +dom-serialize@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/dom-serialize/-/dom-serialize-2.2.1.tgz#562ae8999f44be5ea3076f5419dcd59eb43ac95b" + dependencies: + custom-event "~1.0.0" + ent "~2.2.0" + extend "^3.0.0" + void-elements "^2.0.0" + +dom-serializer@0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" + dependencies: + domelementtype "~1.1.1" + entities "~1.1.1" + +domain-browser@^1.1.1: + version "1.1.7" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" + +domelementtype@1, domelementtype@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" + +domelementtype@~1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" + +domhandler@2.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594" + dependencies: + domelementtype "1" + +domhandler@^2.3.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" + dependencies: + domelementtype "1" + +domutils@1.1: + version "1.1.6" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485" + dependencies: + domelementtype "1" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^1.5.1: + version "1.6.2" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.6.2.tgz#1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff" + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-prop@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" + dependencies: + is-obj "^1.0.0" + +draft-js-export-html@^0.5.0: + version "0.5.4" + resolved "https://registry.yarnpkg.com/draft-js-export-html/-/draft-js-export-html-0.5.4.tgz#e24927da3efe6f3df17f1d7606a9dc6141dbf72d" + dependencies: + draft-js-utils "^0.1.5" + +draft-js-export-markdown@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/draft-js-export-markdown/-/draft-js-export-markdown-0.2.2.tgz#5b0a1a10591d8b96199dcb70b04b1ab7deb72a33" + dependencies: + draft-js-utils "^0.1.5" + +draft-js-utils@^0.1.5: + version "0.1.7" + resolved "https://registry.yarnpkg.com/draft-js-utils/-/draft-js-utils-0.1.7.tgz#e2b6927ca620edf1855a4bfc1cf1d21080a70f16" + +draft-js@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/draft-js/-/draft-js-0.8.1.tgz#484256414c963dd1f5309700ddada10f2aa1f6ff" + dependencies: + fbjs "^0.8.3" + immutable "~3.7.4" + object-assign "^4.1.0" + +duplexer2@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" + dependencies: + readable-stream "^2.0.2" + +duplexer@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" + +ecc-jsbn@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" + dependencies: + jsbn "~0.1.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + +electron-builder-core@11.2.1, electron-builder-core@~11.2.1: + version "11.2.1" + resolved "https://registry.yarnpkg.com/electron-builder-core/-/electron-builder-core-11.2.1.tgz#1dca8c1a1cee8b51750b7708a04913aeffacf8a8" + +electron-builder-http@11.5.0, electron-builder-http@~11.5.0: + version "11.5.0" + resolved "https://registry.yarnpkg.com/electron-builder-http/-/electron-builder-http-11.5.0.tgz#b77396634903444329eda3bbcd02321440e06038" + dependencies: + debug "2.6.0" + fs-extra-p "^3.1.0" + +electron-builder-squirrel-windows@^11.2.1: + version "11.6.1" + resolved "https://registry.yarnpkg.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-11.6.1.tgz#a51612d28883b9eb0af0842e3eb26844cf5a6a52" + dependencies: + archiver "^1.3.0" + bluebird-lst-c "^1.0.6" + electron-builder-core "~11.2.1" + electron-builder-util "~11.6.1" + fs-extra-p "^3.1.0" + +electron-builder-util@11.6.1, electron-builder-util@~11.6.1: + version "11.6.1" + resolved "https://registry.yarnpkg.com/electron-builder-util/-/electron-builder-util-11.6.1.tgz#0f556f67a70e4c8d75185569ef2a7566db015ecc" + dependencies: + "7zip-bin" "^2.0.4" + bluebird-lst-c "^1.0.6" + chalk "^1.1.3" + debug "2.6.0" + electron-builder-http "~11.5.0" + fs-extra-p "^3.1.0" + is-ci "^1.0.10" + node-emoji "^1.5.1" + source-map-support "^0.4.10" + stat-mode "^0.2.2" + +electron-builder@^11.2.4: + version "11.7.0" + resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-11.7.0.tgz#d52912f6e84ac52a065de197a92def931bd9dc25" + dependencies: + "7zip-bin" "^2.0.4" + asar-electron-builder "^0.13.5" + bluebird-lst-c "^1.0.6" + chalk "^1.1.3" + chromium-pickle-js "^0.2.0" + cuint "^0.2.2" + electron-builder-core "11.2.1" + electron-builder-http "11.5.0" + electron-builder-util "11.6.1" + electron-download-tf "3.1.0" + electron-macos-sign "~1.5.0" + fs-extra-p "^3.1.0" + hosted-git-info "^2.1.5" + ini "^1.3.4" + is-ci "^1.0.10" + isbinaryfile "^3.0.2" + js-yaml "^3.7.0" + mime "^1.3.4" + minimatch "^3.0.3" + normalize-package-data "^2.3.5" + parse-color "^1.0.0" + plist "^2.0.1" + progress "^1.1.8" + sanitize-filename "^1.6.1" + semver "^5.3.0" + tunnel-agent "^0.4.3" + update-notifier "^1.0.3" + uuid-1345 "^0.99.6" + yargs "^6.6.0" + +electron-download-tf@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/electron-download-tf/-/electron-download-tf-3.1.0.tgz#c6d62c0e0a4c63b67295f57b6b66514c13b8ed8d" + dependencies: + debug "^2.3.2" + fs-extra "^1.0.0" + minimist "^1.2.0" + nugget "^2.0.1" + path-exists "^3.0.0" + rc "^1.1.6" + semver "^5.3.0" + sumchecker "^1.2.0" + +electron-macos-sign@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/electron-macos-sign/-/electron-macos-sign-1.5.0.tgz#fe3a8acb755b5f568f1fe144e9e66cee44019448" + dependencies: + bluebird "^3.4.7" + compare-version "^0.1.2" + debug "^2.6.0" + isbinaryfile "^3.0.2" + plist "^2.0.1" + +electron-to-chromium@^1.2.7: + version "1.3.9" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.9.tgz#db1cba2a26aebcca2f7f5b8b034554468609157d" + +emojione@2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/emojione/-/emojione-2.2.3.tgz#04383203bf51e6a6c00f1fbddc3309e9543ce78f" + +emojione@^2.2.7: + version "2.2.7" + resolved "https://registry.yarnpkg.com/emojione/-/emojione-2.2.7.tgz#46457cf6b9b2f8da13ae8a2e4e547de06ee15e96" + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + +encodeurl@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" + +encoding@^0.1.11: + version "0.1.12" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" + dependencies: + iconv-lite "~0.4.13" + +end-of-stream@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.0.tgz#7a90d833efda6cfa6eac0f4949dbb0fad3a63206" + dependencies: + once "^1.4.0" + +engine.io-client@~1.8.4: + version "1.8.4" + resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-1.8.4.tgz#9fe85dee25853ca6babe25bd2ad68710863e91c2" + dependencies: + component-emitter "1.2.1" + component-inherit "0.0.3" + debug "2.3.3" + engine.io-parser "1.3.2" + has-cors "1.1.0" + indexof "0.0.1" + parsejson "0.0.3" + parseqs "0.0.5" + parseuri "0.0.5" + ws "1.1.2" + xmlhttprequest-ssl "1.5.3" + yeast "0.1.2" + +engine.io-parser@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-1.3.2.tgz#937b079f0007d0893ec56d46cb220b8cb435220a" + dependencies: + after "0.8.2" + arraybuffer.slice "0.0.6" + base64-arraybuffer "0.1.5" + blob "0.0.4" + has-binary "0.1.7" + wtf-8 "1.0.0" + +engine.io@~1.8.4: + version "1.8.4" + resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-1.8.4.tgz#77bce12b80e5d60429337fec3b0daf691ebc9003" + dependencies: + accepts "1.3.3" + base64id "1.0.0" + cookie "0.3.1" + debug "2.3.3" + engine.io-parser "1.3.2" + ws "1.1.4" + +enhanced-resolve@~0.9.0: + version "0.9.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e" + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.2.0" + tapable "^0.1.8" + +ent@~2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" + +entities@^1.1.1, "entities@~ 1.1.1", entities@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" + +errno@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" + dependencies: + prr "~0.0.0" + +error-ex@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.6.1, es-abstract@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" + dependencies: + es-to-primitive "^1.1.1" + function-bind "^1.1.0" + is-callable "^1.1.3" + is-regex "^1.0.3" + +es-to-primitive@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" + dependencies: + is-callable "^1.1.1" + is-date-object "^1.0.1" + is-symbol "^1.0.1" + +es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: + version "0.10.16" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.16.tgz#1ef1b04f3d09db6a5d630226d62202f2e425e45a" + dependencies: + es6-iterator "2" + es6-symbol "~3.1" + +es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" + dependencies: + d "1" + es5-ext "^0.10.14" + es6-symbol "^3.1" + +es6-map@^0.1.3: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-set "~0.1.5" + es6-symbol "~3.1.1" + event-emitter "~0.3.5" + +es6-promise@^4.0.5, es6-promise@~4.0.3: + version "4.0.5" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.0.5.tgz#7882f30adde5b240ccfa7f7d78c548330951ae42" + +es6-set@~0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-symbol "3.1.1" + event-emitter "~0.3.5" + +es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" + dependencies: + d "1" + es5-ext "~0.10.14" + +es6-weak-map@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" + dependencies: + d "1" + es5-ext "^0.10.14" + es6-iterator "^2.0.1" + es6-symbol "^3.1.1" + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + +escape-string-regexp@1.0.2, escape-string-regexp@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + +escope@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" + dependencies: + es6-map "^0.1.3" + es6-weak-map "^2.0.1" + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-config-google@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.7.1.tgz#5598f8498e9e078420f34b80495b8d959f651fb2" + +eslint-plugin-flowtype@^2.30.0: + version "2.32.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.32.1.tgz#bbee185dedf97e5f63ec975cdcddd199bd2a2501" + dependencies: + lodash "^4.15.0" + +eslint-plugin-react@^6.9.0: + version "6.10.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.3.tgz#c5435beb06774e12c7db2f6abaddcbf900cd3f78" + dependencies: + array.prototype.find "^2.0.1" + doctrine "^1.2.2" + has "^1.0.1" + jsx-ast-utils "^1.3.4" + object.assign "^4.0.4" + +eslint@^3.14.0: + version "3.19.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" + dependencies: + babel-code-frame "^6.16.0" + chalk "^1.1.3" + concat-stream "^1.5.2" + debug "^2.1.1" + doctrine "^2.0.0" + escope "^3.6.0" + espree "^3.4.0" + esquery "^1.0.0" + estraverse "^4.2.0" + esutils "^2.0.2" + file-entry-cache "^2.0.0" + glob "^7.0.3" + globals "^9.14.0" + ignore "^3.2.0" + imurmurhash "^0.1.4" + inquirer "^0.12.0" + is-my-json-valid "^2.10.0" + is-resolvable "^1.0.0" + js-yaml "^3.5.1" + json-stable-stringify "^1.0.0" + levn "^0.3.0" + lodash "^4.0.0" + mkdirp "^0.5.0" + natural-compare "^1.4.0" + optionator "^0.8.2" + path-is-inside "^1.0.1" + pluralize "^1.2.1" + progress "^1.1.8" + require-uncached "^1.0.2" + shelljs "^0.7.5" + strip-bom "^3.0.0" + strip-json-comments "~2.0.1" + table "^3.7.8" + text-table "~0.2.0" + user-home "^2.0.0" + +espree@^3.4.0: + version "3.4.3" + resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" + dependencies: + acorn "^5.0.1" + acorn-jsx "^3.0.0" + +esprima@^3.1.1: + version "3.1.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" + +esquery@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" + dependencies: + estraverse "^4.0.0" + +esrecurse@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" + dependencies: + estraverse "~4.1.0" + object-assign "^4.0.1" + +estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + +estraverse@~4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" + +esutils@^2.0.0, esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + +etag@~1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" + +event-emitter@~0.3.5: + version "0.3.5" + resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" + dependencies: + d "1" + es5-ext "~0.10.14" + +eventemitter3@1.x.x: + version "1.2.0" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" + +events@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + +eventsource@0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" + dependencies: + original ">=0.0.5" + +except@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/except/-/except-0.1.3.tgz#98261c91958551536b44482238e9783fb73d292a" + dependencies: + indexof "0.0.1" + +exit-hook@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" + +expand-braces@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/expand-braces/-/expand-braces-0.1.2.tgz#488b1d1d2451cb3d3a6b192cfc030f44c5855fea" + dependencies: + array-slice "^0.2.3" + array-unique "^0.2.1" + braces "^0.1.2" + +expand-brackets@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" + dependencies: + is-posix-bracket "^0.1.0" + +expand-range@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-0.1.1.tgz#4cb8eda0993ca56fa4f41fc42f3cbb4ccadff044" + dependencies: + is-number "^0.1.1" + repeat-string "^0.2.2" + +expand-range@^1.8.1: + version "1.8.2" + resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + dependencies: + fill-range "^2.1.0" + +expect@^1.16.0: + version "1.20.2" + resolved "https://registry.yarnpkg.com/expect/-/expect-1.20.2.tgz#d458fe4c56004036bae3232416a3f6361f04f965" + dependencies: + define-properties "~1.1.2" + has "^1.0.1" + is-equal "^1.5.1" + is-regex "^1.0.3" + object-inspect "^1.1.0" + object-keys "^1.0.9" + tmatch "^2.0.1" + +express@^4.13.3: + version "4.15.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.15.2.tgz#af107fc148504457f2dca9a6f2571d7129b97b35" + dependencies: + accepts "~1.3.3" + array-flatten "1.1.1" + content-disposition "0.5.2" + content-type "~1.0.2" + cookie "0.3.1" + cookie-signature "1.0.6" + debug "2.6.1" + depd "~1.1.0" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.8.0" + finalhandler "~1.0.0" + fresh "0.5.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.1" + path-to-regexp "0.1.7" + proxy-addr "~1.1.3" + qs "6.4.0" + range-parser "~1.2.0" + send "0.15.1" + serve-static "1.12.1" + setprototypeof "1.0.3" + statuses "~1.3.1" + type-is "~1.6.14" + utils-merge "1.0.0" + vary "~1.1.0" + +extend@^3.0.0, extend@^3.0.1, extend@~3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" + +extglob@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" + dependencies: + is-extglob "^1.0.0" + +extract-text-webpack-plugin@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-0.9.1.tgz#ef6dc508cb35ed0dcf8a4009abbe853f7a7622b5" + dependencies: + async "^1.5.0" + loader-utils "^0.2.3" + +extract-zip@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.5.0.tgz#92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4" + dependencies: + concat-stream "1.5.0" + debug "0.7.4" + mkdirp "0.5.0" + yauzl "2.4.1" + +extsprintf@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + +favico.js@^0.3.10: + version "0.3.10" + resolved "https://registry.yarnpkg.com/favico.js/-/favico.js-0.3.10.tgz#80586e27a117f24a8d51c18a99bdc714d4339301" + +faye-websocket@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" + dependencies: + websocket-driver ">=0.5.1" + +faye-websocket@~0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" + dependencies: + websocket-driver ">=0.5.1" + +fbjs@^0.8.3, fbjs@^0.8.4, fbjs@^0.8.9: + version "0.8.12" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" + dependencies: + core-js "^1.0.0" + isomorphic-fetch "^2.1.1" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.9" + +fd-slicer@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" + dependencies: + pend "~1.2.0" + +figures@^1.3.5: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + +file-entry-cache@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" + dependencies: + flat-cache "^1.2.1" + object-assign "^4.0.1" + +file-saver@^1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-1.3.3.tgz#cdd4c44d3aa264eac2f68ec165bc791c34af1232" + +file@0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/file/-/file-0.2.2.tgz#c3dfd8f8cf3535ae455c2b423c2e52635d76b4d3" + +filename-regex@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" + +filesize@3.5.6: + version "3.5.6" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.5.6.tgz#5fd98f3eac94ec9516ef8ed5782fad84a01a0a1a" + +fill-range@^2.1.0: + version "2.2.3" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" + dependencies: + is-number "^2.1.0" + isobject "^2.0.0" + randomatic "^1.1.3" + repeat-element "^1.1.2" + repeat-string "^1.5.2" + +filled-array@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" + +finalhandler@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.1.tgz#bcd15d1689c0e5ed729b6f7f541a6df984117db8" + dependencies: + debug "2.6.3" + encodeurl "~1.0.1" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.1" + statuses "~1.3.1" + unpipe "~1.0.0" + +finalhandler@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.2.tgz#d0e36f9dbc557f2de14423df6261889e9d60c93a" + dependencies: + debug "2.6.4" + encodeurl "~1.0.1" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.1" + statuses "~1.3.1" + unpipe "~1.0.0" + +find-cache-dir@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" + dependencies: + commondir "^1.0.1" + mkdirp "^0.5.1" + pkg-dir "^1.0.0" + +find-index@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" + +find-parent-dir@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +flat-cache@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" + dependencies: + circular-json "^0.3.1" + del "^2.0.2" + graceful-fs "^4.1.2" + write "^0.2.1" + +flux@^2.0.3, flux@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/flux/-/flux-2.0.3.tgz#787e1aedffb34a322a60b49c57a2d23856a6de27" + +for-in@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + +for-own@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + dependencies: + for-in "^1.0.1" + +foreach@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + +form-data@~2.1.1: + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.12" + +forwarded@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" + +fresh@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" + +fs-access@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" + dependencies: + null-check "^1.0.0" + +fs-extra-p@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/fs-extra-p/-/fs-extra-p-3.1.0.tgz#eddf7bb8d9385d79014decb21f45b1d0c57900d3" + dependencies: + bluebird-lst-c "^1.0.6" + fs-extra "^2.0.0" + +fs-extra@^0.30.0: + version "0.30.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + path-is-absolute "^1.0.0" + rimraf "^2.2.8" + +fs-extra@^1.0.0, fs-extra@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + +fs-extra@^2.0.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + +fs-readdir-recursive@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + +fsevents@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" + dependencies: + nan "^2.3.0" + node-pre-gyp "^0.6.29" + +fstream-ignore@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" + dependencies: + fstream "^1.0.0" + inherits "2" + minimatch "^3.0.0" + +fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: + version "1.0.11" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" + dependencies: + graceful-fs "^4.1.2" + inherits "~2.0.0" + mkdirp ">=0.5 0" + rimraf "2" + +function-bind@^1.0.2, function-bind@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" + +fuse.js@^2.2.0: + version "2.7.4" + resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-2.7.4.tgz#96e420fde7ef011ac49c258a621314fe576536f9" + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +gemini-scrollbar@matrix-org/gemini-scrollbar#91e1e566: + version "1.4.3" + resolved "https://codeload.github.com/matrix-org/gemini-scrollbar/tar.gz/91e1e566" + +generate-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" + +generate-object-property@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" + dependencies: + is-property "^1.0.0" + +get-caller-file@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" + +get-stdin@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + dependencies: + assert-plus "^1.0.0" + +gfm.css@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/gfm.css/-/gfm.css-1.1.1.tgz#16b0ef08637f2495b66c84c5024593d71ebeac46" + +glob-base@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" + dependencies: + glob-parent "^2.0.0" + is-glob "^2.0.0" + +glob-parent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" + dependencies: + is-glob "^2.0.0" + +glob2base@^0.0.12: + version "0.0.12" + resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" + dependencies: + find-index "^0.1.1" + +glob@3.2.11: + version "3.2.11" + resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d" + dependencies: + inherits "2" + minimatch "0.3" + +glob@^5.0.14: + version "5.0.15" + resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" + dependencies: + inflight "^1.0.4" + inherits "2" + minimatch "2 || 3" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: + version "7.1.1" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.2" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^9.0.0, globals@^9.14.0: + version "9.17.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" + +globby@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" + dependencies: + array-union "^1.0.1" + arrify "^1.0.0" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +globby@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +got@^5.0.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" + dependencies: + create-error-class "^3.0.1" + duplexer2 "^0.1.4" + is-redirect "^1.0.0" + is-retry-allowed "^1.0.0" + is-stream "^1.0.0" + lowercase-keys "^1.0.0" + node-status-codes "^1.0.0" + object-assign "^4.0.1" + parse-json "^2.1.0" + pinkie-promise "^2.0.0" + read-all-stream "^3.0.0" + readable-stream "^2.0.5" + timed-out "^3.0.0" + unzip-response "^1.0.2" + url-parse-lax "^1.0.0" + +graceful-fs@^4.1.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: + version "4.1.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" + +"graceful-readlink@>= 1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" + +growl@1.9.2: + version "1.9.2" + resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" + +har-schema@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" + +har-validator@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" + dependencies: + chalk "^1.1.1" + commander "^2.9.0" + is-my-json-valid "^2.12.4" + pinkie-promise "^2.0.0" + +har-validator@~4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" + dependencies: + ajv "^4.9.1" + har-schema "^1.0.5" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + dependencies: + ansi-regex "^2.0.0" + +has-binary@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c" + dependencies: + isarray "0.0.1" + +has-cors@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" + +has-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + +has@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" + dependencies: + function-bind "^1.0.2" + +hasha@~2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/hasha/-/hasha-2.2.0.tgz#78d7cbfc1e6d66303fe79837365984517b2f6ee1" + dependencies: + is-stream "^1.0.1" + pinkie-promise "^2.0.0" + +hawk@~3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" + dependencies: + boom "2.x.x" + cryptiles "2.x.x" + hoek "2.x.x" + sntp "1.x.x" + +he@1.1.x: + version "1.1.1" + resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" + +highlight.js@^8.9.1: + version "8.9.1" + resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-8.9.1.tgz#b8a9c5493212a9392f0222b649c9611497ebfb88" + +highlight.js@^9.0.0: + version "9.11.0" + resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.11.0.tgz#47f98c7399918700db2caf230ded12cec41a84ae" + +hoek@2.x.x: + version "2.16.3" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" + +hoist-non-react-statics@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb" + +home-or-tmp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.1" + +hosted-git-info@^2.1.4, hosted-git-info@^2.1.5: + version "2.4.2" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" + +html-minifier@^3.2.3: + version "3.4.4" + resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.4.4.tgz#616fe3e3ef16da02b393d9a6099eeff468a35df0" + dependencies: + camel-case "3.0.x" + clean-css "4.0.x" + commander "2.9.x" + he "1.1.x" + ncname "1.0.x" + param-case "2.1.x" + relateurl "0.2.x" + uglify-js "~2.8.22" + +html-webpack-plugin@^2.24.0: + version "2.28.0" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-2.28.0.tgz#2e7863b57e5fd48fe263303e2ffc934c3064d009" + dependencies: + bluebird "^3.4.7" + html-minifier "^3.2.3" + loader-utils "^0.2.16" + lodash "^4.17.3" + pretty-error "^2.0.2" + toposort "^1.0.0" + +htmlparser2@^3.9.0: + version "3.9.2" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" + dependencies: + domelementtype "^1.3.0" + domhandler "^2.3.0" + domutils "^1.5.1" + entities "^1.1.1" + inherits "^2.0.1" + readable-stream "^2.0.2" + +htmlparser2@~3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe" + dependencies: + domelementtype "1" + domhandler "2.1" + domutils "1.1" + readable-stream "1.0" + +http-errors@~1.5.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" + dependencies: + inherits "2.0.3" + setprototypeof "1.0.2" + statuses ">= 1.3.1 < 2" + +http-errors@~1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" + dependencies: + depd "1.1.0" + inherits "2.0.3" + setprototypeof "1.0.3" + statuses ">= 1.3.1 < 2" + +http-proxy-middleware@~0.17.1: + version "0.17.4" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" + dependencies: + http-proxy "^1.16.2" + is-glob "^3.1.0" + lodash "^4.17.2" + micromatch "^2.3.11" + +http-proxy@^1.13.0, http-proxy@^1.16.2: + version "1.16.2" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" + dependencies: + eventemitter3 "1.x.x" + requires-port "1.x.x" + +http-signature@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" + dependencies: + assert-plus "^0.2.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-browserify@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" + +iconv-lite@0.4.15, iconv-lite@~0.4.13: + version "0.4.15" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" + +ieee754@^1.1.4: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" + +ignore@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.0.tgz#3812d22cbe9125f2c2b4915755a1b8abd745a001" + +immutable@~3.7.4: + version "3.7.6" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + dependencies: + repeating "^2.0.0" + +indexof@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + +ini@^1.3.4, ini@~1.3.0: + version "1.3.4" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" + +inquirer@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" + dependencies: + ansi-escapes "^1.1.0" + ansi-regex "^2.0.0" + chalk "^1.0.0" + cli-cursor "^1.0.1" + cli-width "^2.0.0" + figures "^1.3.5" + lodash "^4.3.0" + readline2 "^1.0.1" + run-async "^0.1.0" + rx-lite "^3.1.2" + string-width "^1.0.1" + strip-ansi "^3.0.0" + through "^2.3.6" + +interpret@^0.6.4: + version "0.6.6" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b" + +interpret@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" + +invariant@^2.0.0, invariant@^2.1.0, invariant@^2.2.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" + dependencies: + loose-envify "^1.0.0" + +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + +ipaddr.js@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.3.0.tgz#1e03a52fdad83a8bbb2b25cbf4998b4cffcd3dec" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + +is-arrow-function@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-arrow-function/-/is-arrow-function-2.0.3.tgz#29be2c2d8d9450852b8bbafb635ba7b8d8e87ec2" + dependencies: + is-callable "^1.0.4" + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + dependencies: + binary-extensions "^1.0.0" + +is-boolean-object@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93" + +is-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" + +is-builtin-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + dependencies: + builtin-modules "^1.0.0" + +is-callable@^1.0.4, is-callable@^1.1.1, is-callable@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" + +is-ci@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" + dependencies: + ci-info "^1.0.0" + +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + +is-dotfile@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" + +is-equal-shallow@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" + dependencies: + is-primitive "^2.0.0" + +is-equal@^1.5.1: + version "1.5.5" + resolved "https://registry.yarnpkg.com/is-equal/-/is-equal-1.5.5.tgz#5e85f1957e052883247feb386965a3bba15fbb3d" + dependencies: + has "^1.0.1" + is-arrow-function "^2.0.3" + is-boolean-object "^1.0.0" + is-callable "^1.1.3" + is-date-object "^1.0.1" + is-generator-function "^1.0.6" + is-number-object "^1.0.3" + is-regex "^1.0.3" + is-string "^1.0.4" + is-symbol "^1.0.1" + object.entries "^1.0.4" + +is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + +is-extglob@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + +is-extglob@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + +is-finite@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + +is-generator-function@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.6.tgz#9e71653cd15fff341c79c4151460a131d31e9fc4" + +is-glob@^2.0.0, is-glob@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + dependencies: + is-extglob "^1.0.0" + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + dependencies: + is-extglob "^2.1.0" + +is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: + version "2.16.0" + resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" + dependencies: + generate-function "^2.0.0" + generate-object-property "^1.1.0" + jsonpointer "^4.0.0" + xtend "^4.0.0" + +is-npm@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" + +is-number-object@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799" + +is-number@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-0.1.1.tgz#69a7af116963d47206ec9bd9b48a14216f1e3806" + +is-number@^2.0.2, is-number@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + dependencies: + kind-of "^3.0.2" + +is-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + +is-path-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" + +is-path-in-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" + dependencies: + is-path-inside "^1.0.0" + +is-path-inside@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" + dependencies: + path-is-inside "^1.0.1" + +is-posix-bracket@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" + +is-primitive@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" + +is-property@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" + +is-redirect@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" + +is-regex@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + dependencies: + has "^1.0.1" + +is-resolvable@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" + dependencies: + tryit "^1.0.1" + +is-retry-allowed@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" + +is-stream@^1.0.0, is-stream@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + +is-string@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64" + +is-symbol@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + +is-windows@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.1.tgz#310db70f742d259a16a369202b51af84233310d9" + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + +isbinaryfile@^3.0.0, isbinaryfile@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + dependencies: + isarray "1.0.0" + +isomorphic-fetch@^2.1.1, isomorphic-fetch@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" + dependencies: + node-fetch "^1.0.1" + whatwg-fetch ">=0.10.0" + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + +jade@0.26.3: + version "0.26.3" + resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" + dependencies: + commander "0.6.1" + mkdirp "0.3.0" + +jodid25519@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" + dependencies: + jsbn "~0.1.0" + +"jquery@>= 1.4.3", jquery@>=1.9.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.2.1.tgz#5c4d9de652af6cd0a770154a631bba12b015c787" + +js-base64@^2.1.9: + version "2.1.9" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" + +js-tokens@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" + +js-yaml@^3.4.3, js-yaml@^3.5.1, js-yaml@^3.7.0: + version "3.8.4" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" + dependencies: + argparse "^1.0.7" + esprima "^3.1.1" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + +jsesc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + +json-loader@^0.5.3: + version "0.5.4" + resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + +json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + dependencies: + jsonify "~0.0.0" + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + +json3@3.3.2, json3@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" + +json5@^0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + +jsonpointer@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" + +jsprim@^1.2.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" + dependencies: + assert-plus "1.0.0" + extsprintf "1.0.2" + json-schema "0.2.3" + verror "1.3.6" + +jsx-ast-utils@^1.3.4: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" + +karma-chrome-launcher@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/karma-chrome-launcher/-/karma-chrome-launcher-0.2.3.tgz#4c6d700d163a9d34c618efd87918be49e7a4a8c9" + dependencies: + fs-access "^1.0.0" + which "^1.2.1" + +karma-cli@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/karma-cli/-/karma-cli-0.1.2.tgz#cacea84371ece19876265c8fa102ebbb9fee4a8c" + dependencies: + resolve "^1.1.6" + +karma-junit-reporter@^0.4.1: + version "0.4.2" + resolved "https://registry.yarnpkg.com/karma-junit-reporter/-/karma-junit-reporter-0.4.2.tgz#492a236728fe4c92aacf419fcd0110a4327e9d7f" + dependencies: + path-is-absolute "^1.0.0" + xmlbuilder "3.1.0" + +karma-mocha@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/karma-mocha/-/karma-mocha-0.2.2.tgz#388ed917da15dcb196d1b915c1934ef803193f8e" + +karma-phantomjs-launcher@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/karma-phantomjs-launcher/-/karma-phantomjs-launcher-1.0.4.tgz#d23ca34801bda9863ad318e3bb4bd4062b13acd2" + dependencies: + lodash "^4.0.1" + phantomjs-prebuilt "^2.1.7" + +karma-webpack@^1.7.0: + version "1.8.1" + resolved "https://registry.yarnpkg.com/karma-webpack/-/karma-webpack-1.8.1.tgz#39d5fd2edeea3cc3ef5b405989b37d5b0e6a3b4e" + dependencies: + async "~0.9.0" + loader-utils "^0.2.5" + lodash "^3.8.0" + source-map "^0.1.41" + webpack-dev-middleware "^1.0.11" + +karma@^0.13.22: + version "0.13.22" + resolved "https://registry.yarnpkg.com/karma/-/karma-0.13.22.tgz#07750b1bd063d7e7e7b91bcd2e6354d8f2aa8744" + dependencies: + batch "^0.5.3" + bluebird "^2.9.27" + body-parser "^1.12.4" + chokidar "^1.4.1" + colors "^1.1.0" + connect "^3.3.5" + core-js "^2.1.0" + di "^0.0.1" + dom-serialize "^2.2.0" + expand-braces "^0.1.1" + glob "^7.0.0" + graceful-fs "^4.1.2" + http-proxy "^1.13.0" + isbinaryfile "^3.0.0" + lodash "^3.8.0" + log4js "^0.6.31" + mime "^1.3.4" + minimatch "^3.0.0" + optimist "^0.6.1" + rimraf "^2.3.3" + socket.io "^1.4.5" + source-map "^0.5.3" + useragent "^2.1.6" + +kew@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/kew/-/kew-0.7.0.tgz#79d93d2d33363d6fdd2970b335d9141ad591d79b" + +kind-of@^3.0.2: + version "3.2.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" + dependencies: + is-buffer "^1.1.5" + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + optionalDependencies: + graceful-fs "^4.1.9" + +latest-version@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" + dependencies: + package-json "^2.0.0" + +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + +lazy-req@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" + +lazystream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" + dependencies: + readable-stream "^2.0.5" + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + dependencies: + invert-kv "^1.0.0" + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +linkifyjs@^2.1.3: + version "2.1.4" + resolved "https://registry.yarnpkg.com/linkifyjs/-/linkifyjs-2.1.4.tgz#b04aac3f327afc871deb205546f612d80bd784b5" + optionalDependencies: + jquery ">=1.9.0" + react ">=0.14.0" + react-dom ">=0.14.0" + +load-json-file@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" + +loader-utils@^0.2.11, loader-utils@^0.2.16, loader-utils@^0.2.3, loader-utils@^0.2.5, loader-utils@~0.2.2, loader-utils@~0.2.7: + version "0.2.17" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + object-assign "^4.0.1" + +loader-utils@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + +lodash-es@^4.2.1: + version "4.17.4" + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7" + +lodash.assign@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" + +lodash.pickby@^4.0.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" + +lodash@4.17.4, lodash@^4.0.0, lodash@^4.0.1, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.8.0: + version "4.17.4" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" + +lodash@^3.5.0, lodash@^3.8.0: + version "3.10.1" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" + +log4js@^0.6.31: + version "0.6.38" + resolved "https://registry.yarnpkg.com/log4js/-/log4js-0.6.38.tgz#2c494116695d6fb25480943d3fc872e662a522fd" + dependencies: + readable-stream "~1.0.2" + semver "~4.3.3" + +longest@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" + +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" + dependencies: + js-tokens "^3.0.0" + +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + +lower-case@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" + +lowercase-keys@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" + +lru-cache@2: + version "2.7.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" + +lru-cache@2.2.x: + version "2.2.4" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.2.4.tgz#6c658619becf14031d0d0b594b16042ce4dc063d" + +lru-cache@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" + dependencies: + pseudomap "^1.0.1" + yallist "^2.0.0" + +macaddress@^0.2.7: + version "0.2.8" + resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" + +map-obj@^1.0.0, map-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + +matrix-js-sdk@matrix-org/matrix-js-sdk#develop: + version "0.7.7" + resolved "https://codeload.github.com/matrix-org/matrix-js-sdk/tar.gz/6021c1c6b11d8bad2b38ce1d70c9d4ff27f17f9c" + dependencies: + another-json "^0.2.0" + browser-request "^0.3.3" + q "^1.4.1" + request "^2.53.0" + optionalDependencies: + olm "https://matrix.org/packages/npm/olm/olm-2.2.1.tgz" + +matrix-react-sdk@matrix-org/matrix-react-sdk#develop: + version "0.8.8" + resolved "https://codeload.github.com/matrix-org/matrix-react-sdk/tar.gz/8a76c0c14207797bf9f41398e6f55708f8513f22" + dependencies: + babel-runtime "^6.11.6" + blueimp-canvas-to-blob "^3.5.0" + browser-encrypt-attachment "^0.3.0" + browser-request "^0.3.3" + classnames "^2.1.2" + commonmark "^0.27.0" + draft-js "^0.8.1" + draft-js-export-html "^0.5.0" + draft-js-export-markdown "^0.2.0" + emojione "2.2.3" + file-saver "^1.3.3" + filesize "3.5.6" + flux "^2.0.3" + fuse.js "^2.2.0" + glob "^5.0.14" + highlight.js "^8.9.1" + isomorphic-fetch "^2.2.1" + linkifyjs "^2.1.3" + lodash "^4.13.1" + matrix-js-sdk matrix-org/matrix-js-sdk#develop + optimist "^0.6.1" + prop-types "^15.5.8" + q "^1.4.1" + react "^15.4.0" + react-addons-css-transition-group "15.3.2" + react-dom "^15.4.0" + react-gemini-scrollbar matrix-org/react-gemini-scrollbar#39d858c + sanitize-html "^1.11.1" + text-encoding-utf-8 "^1.0.1" + velocity-vector vector-im/velocity#059e3b2 + whatwg-fetch "^1.0.0" + +"mdurl@~ 1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + +memory-fs@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290" + +memory-fs@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20" + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +memory-fs@~0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +meow@^3.1.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + dependencies: + camelcase-keys "^2.0.0" + decamelize "^1.1.2" + loud-rejection "^1.0.0" + map-obj "^1.0.1" + minimist "^1.1.3" + normalize-package-data "^2.3.4" + object-assign "^4.0.1" + read-pkg-up "^1.0.1" + redent "^1.0.0" + trim-newlines "^1.0.0" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + +micromatch@^2.1.5, micromatch@^2.3.11: + version "2.3.11" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" + dependencies: + arr-diff "^2.0.0" + array-unique "^0.2.1" + braces "^1.8.2" + expand-brackets "^0.1.4" + extglob "^0.3.1" + filename-regex "^2.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.1" + kind-of "^3.0.2" + normalize-path "^2.0.1" + object.omit "^2.0.0" + parse-glob "^3.0.4" + regex-cache "^0.4.2" + +"mime-db@>= 1.27.0 < 2", mime-db@~1.27.0: + version "1.27.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" + +mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.7: + version "2.1.15" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" + dependencies: + mime-db "~1.27.0" + +mime@1.3.4, mime@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" + +minimatch@0.3: + version "0.3.0" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd" + dependencies: + lru-cache "2" + sigmund "~1.0.0" + +"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + dependencies: + brace-expansion "^1.1.7" + +minimist@0.0.8, minimist@~0.0.1: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + +minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0, "minimist@~ 1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + +mkdirp@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" + +mkdirp@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" + dependencies: + minimist "0.0.8" + +mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + dependencies: + minimist "0.0.8" + +mocha@^2.4.5: + version "2.5.3" + resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.5.3.tgz#161be5bdeb496771eb9b35745050b622b5aefc58" + dependencies: + commander "2.3.0" + debug "2.2.0" + diff "1.4.0" + escape-string-regexp "1.0.2" + glob "3.2.11" + growl "1.9.2" + jade "0.26.3" + mkdirp "0.5.1" + supports-color "1.2.0" + to-iso-string "0.0.2" + +modernizr@^3.1.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/modernizr/-/modernizr-3.5.0.tgz#396a02231bdc54628bbde2c0813a8e884c7e8060" + dependencies: + doctrine "1.2.3" + file "0.2.2" + find-parent-dir "0.3.0" + lodash "4.17.4" + mkdirp "0.5.1" + remarkable "^1.6.2" + requirejs "2.1.22" + yargs "7.0.2" + +ms@0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" + +ms@0.7.2: + version "0.7.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" + +ms@0.7.3: + version "0.7.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" + +mute-stream@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" + +nan@^2.3.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + +ncname@1.0.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" + dependencies: + xml-char-classes "^1.0.0" + +negotiator@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" + +no-case@^2.2.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.1.tgz#7aeba1c73a52184265554b7dc03baf720df80081" + dependencies: + lower-case "^1.1.1" + +node-emoji@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.5.1.tgz#fd918e412769bf8c448051238233840b2aff16a1" + dependencies: + string.prototype.codepointat "^0.2.0" + +node-fetch@^1.0.1: + version "1.6.3" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" + dependencies: + encoding "^0.1.11" + is-stream "^1.0.1" + +node-libs-browser@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-0.7.0.tgz#3e272c0819e308935e26674408d7af0e1491b83b" + dependencies: + assert "^1.1.1" + browserify-zlib "^0.1.4" + buffer "^4.9.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "3.3.0" + domain-browser "^1.1.1" + events "^1.0.0" + https-browserify "0.0.1" + os-browserify "^0.2.0" + path-browserify "0.0.0" + process "^0.11.0" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.0.5" + stream-browserify "^2.0.1" + stream-http "^2.3.1" + string_decoder "^0.10.25" + timers-browserify "^2.0.2" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.10.3" + vm-browserify "0.0.4" + +node-pre-gyp@^0.6.29: + version "0.6.34" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" + dependencies: + mkdirp "^0.5.1" + nopt "^4.0.1" + npmlog "^4.0.2" + rc "^1.1.7" + request "^2.81.0" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^2.2.1" + tar-pack "^3.4.0" + +node-status-codes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" + +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + dependencies: + abbrev "1" + osenv "^0.1.4" + +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: + version "2.3.8" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^2.0.0, normalize-path@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + +npmlog@^4.0.2: + version "4.1.0" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +nth-check@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" + dependencies: + boolbase "~1.0.0" + +nugget@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/nugget/-/nugget-2.0.1.tgz#201095a487e1ad36081b3432fa3cada4f8d071b0" + dependencies: + debug "^2.1.3" + minimist "^1.1.0" + pretty-bytes "^1.0.2" + progress-stream "^1.1.0" + request "^2.45.0" + single-line-log "^1.1.2" + throttleit "0.0.2" + +null-check@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" + +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + +oauth-sign@~0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" + +object-assign@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" + +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + +object-component@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" + +object-inspect@^1.1.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.2.tgz#c82115e4fcc888aea14d64c22e4f17f6a70d5e5a" + +object-keys@^1.0.10, object-keys@^1.0.8, object-keys@^1.0.9: + version "1.0.11" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" + +object-keys@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" + +object.assign@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" + dependencies: + define-properties "^1.1.2" + function-bind "^1.1.0" + object-keys "^1.0.10" + +object.entries@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.6.1" + function-bind "^1.1.0" + has "^1.0.1" + +object.omit@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + dependencies: + for-own "^0.1.4" + is-extendable "^0.1.1" + +"olm@https://matrix.org/packages/npm/olm/olm-2.2.1.tgz": + version "2.2.1" + resolved "https://matrix.org/packages/npm/olm/olm-2.2.1.tgz#5e5db50d0a142b7c7a0650d9b3d8acc3d37e697b" + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" + +once@^1.3.0, once@^1.3.3, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + dependencies: + wrappy "1" + +onetime@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" + +open@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/open/-/open-0.0.5.tgz#42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc" + +optimist@^0.6.1, optimist@~0.6.0, optimist@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +optionator@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + +options@>=0.0.5: + version "0.0.6" + resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" + +original@>=0.0.5: + version "1.0.0" + resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" + dependencies: + url-parse "1.0.x" + +os-browserify@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" + +os-homedir@^1.0.0, os-homedir@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + +os-locale@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + dependencies: + lcid "^1.0.0" + +os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + +osenv@^0.1.0, osenv@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +output-file-sync@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" + dependencies: + graceful-fs "^4.1.4" + mkdirp "^0.5.1" + object-assign "^4.1.0" + +package-json@^2.0.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" + dependencies: + got "^5.0.0" + registry-auth-token "^3.0.1" + registry-url "^3.0.3" + semver "^5.1.0" + +pako@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.5.tgz#d2205dfe5b9da8af797e7c163db4d1f84e4600bc" + +pako@~0.2.0: + version "0.2.9" + resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" + +parallelshell@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/parallelshell/-/parallelshell-1.2.0.tgz#df114c05e9c8eba92dc5607c5eb1e1ff04a2e17c" + +param-case@2.1.x: + version "2.1.1" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" + dependencies: + no-case "^2.2.0" + +parse-color@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parse-color/-/parse-color-1.0.0.tgz#7b748b95a83f03f16a94f535e52d7f3d94658619" + dependencies: + color-convert "~0.5.0" + +parse-glob@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" + dependencies: + glob-base "^0.3.0" + is-dotfile "^1.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.0" + +parse-json@^2.1.0, parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + dependencies: + error-ex "^1.2.0" + +parsejson@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/parsejson/-/parsejson-0.0.3.tgz#ab7e3759f209ece99437973f7d0f1f64ae0e64ab" + dependencies: + better-assert "~1.0.0" + +parseqs@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" + dependencies: + better-assert "~1.0.0" + +parseuri@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" + dependencies: + better-assert "~1.0.0" + +parseurl@~1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" + +path-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + dependencies: + pinkie-promise "^2.0.0" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + +path-is-inside@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + +path-parse@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +pbkdf2-compat@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz#b6e0c8fa99494d94e0511575802a59a5c142f288" + +pend@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" + +performance-now@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" + +phantomjs-prebuilt@^2.1.7: + version "2.1.14" + resolved "https://registry.yarnpkg.com/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.14.tgz#d53d311fcfb7d1d08ddb24014558f1188c516da0" + dependencies: + es6-promise "~4.0.3" + extract-zip "~1.5.0" + fs-extra "~1.0.0" + hasha "~2.2.0" + kew "~0.7.0" + progress "~1.1.8" + request "~2.79.0" + request-progress "~2.0.1" + which "~1.2.10" + +pify@^2.0.0, pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + +pkg-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" + dependencies: + find-up "^1.0.0" + +plist@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/plist/-/plist-2.1.0.tgz#57ccdb7a0821df21831217a3cad54e3e146a1025" + dependencies: + base64-js "1.2.0" + xmlbuilder "8.2.2" + xmldom "0.1.x" + +pluralize@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" + +pluralizers@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/pluralizers/-/pluralizers-0.1.5.tgz#9b5de28afe16b92c9c056cdf5100acddd752be0d" + +postcss-extend@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/postcss-extend/-/postcss-extend-1.0.5.tgz#5ea98bf787ba3cacf4df4609743f80a833b1d0e7" + dependencies: + postcss "^5.0.4" + +postcss-import@^9.0.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-9.1.0.tgz#95fe9876a1e79af49fbdc3589f01fe5aa7cc1e80" + dependencies: + object-assign "^4.0.1" + postcss "^5.0.14" + postcss-value-parser "^3.2.3" + promise-each "^2.2.0" + read-cache "^1.0.0" + resolve "^1.1.7" + +postcss-js@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-0.2.0.tgz#56e6db0cd910a6dffec3dfb34462693ac72e3882" + dependencies: + camelcase-css "^1.0.1" + postcss "^5.2.6" + +postcss-load-config@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" + dependencies: + cosmiconfig "^2.1.0" + object-assign "^4.1.0" + postcss-load-options "^1.2.0" + postcss-load-plugins "^2.3.0" + +postcss-load-options@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" + dependencies: + cosmiconfig "^2.1.0" + object-assign "^4.1.0" + +postcss-load-plugins@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" + dependencies: + cosmiconfig "^2.1.1" + object-assign "^4.1.0" + +postcss-loader@^1.2.2: + version "1.3.3" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-1.3.3.tgz#a621ea1fa29062a83972a46f54486771301916eb" + dependencies: + loader-utils "^1.0.2" + object-assign "^4.1.1" + postcss "^5.2.15" + postcss-load-config "^1.2.0" + +postcss-mixins@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/postcss-mixins/-/postcss-mixins-5.4.1.tgz#004c0acc54328b86bbcb3471f9eb3b52ed70f4a8" + dependencies: + globby "^6.1.0" + postcss "^5.2.6" + postcss-js "^0.2.0" + postcss-simple-vars "^3.0.0" + sugarss "^0.2.0" + +postcss-nested@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-1.0.1.tgz#91f28f4e6e23d567241ac154558a0cfab4cc0d8f" + dependencies: + postcss "^5.2.17" + +postcss-scss@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-0.4.1.tgz#ad771b81f0f72f5f4845d08aa60f93557653d54c" + dependencies: + postcss "^5.2.13" + +postcss-simple-vars@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/postcss-simple-vars/-/postcss-simple-vars-3.1.0.tgz#62c0657214ef1f43a3c5893ade89de414f31b6ff" + dependencies: + postcss "^5.2.16" + +postcss-strip-inline-comments@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/postcss-strip-inline-comments/-/postcss-strip-inline-comments-0.1.5.tgz#7ff6bcdc14e633ed4cdfa020bae3eddad4f84b90" + dependencies: + postcss "^5.0.18" + +postcss-value-parser@^3.2.3: + version "3.3.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" + +postcss@^5.0.14, postcss@^5.0.18, postcss@^5.0.4, postcss@^5.2.13, postcss@^5.2.15, postcss@^5.2.16, postcss@^5.2.17, postcss@^5.2.4, postcss@^5.2.6: + version "5.2.17" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.17.tgz#cf4f597b864d65c8a492b2eabe9d706c879c388b" + dependencies: + chalk "^1.1.3" + js-base64 "^2.1.9" + source-map "^0.5.6" + supports-color "^3.2.3" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + +prepend-http@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + +preserve@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + +pretty-bytes@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-1.0.4.tgz#0a22e8210609ad35542f8c8d5d2159aff0751c84" + dependencies: + get-stdin "^4.0.1" + meow "^3.1.0" + +pretty-error@^2.0.2: + version "2.1.0" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.0.tgz#87f4e9d706a24c87d6cbee9fabec001fcf8c75d8" + dependencies: + renderkid "^2.0.1" + utila "~0.4" + +private@^0.1.6: + version "0.1.7" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" + +process-nextick-args@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + +process@^0.11.0: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + +progress-stream@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/progress-stream/-/progress-stream-1.2.0.tgz#2cd3cfea33ba3a89c9c121ec3347abe9ab125f77" + dependencies: + speedometer "~0.1.2" + through2 "~0.2.3" + +progress@^1.1.8, progress@~1.1.8: + version "1.1.8" + resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" + +promise-each@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/promise-each/-/promise-each-2.2.0.tgz#3353174eff2694481037e04e01f77aa0fb6d1b60" + dependencies: + any-promise "^0.1.0" + +promise@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" + dependencies: + asap "~2.0.3" + +prop-types@^15.5.7, prop-types@^15.5.8, prop-types@~15.5.7: + version "15.5.9" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.9.tgz#d478eef0e761396942f70c78e772f76e8be747c9" + dependencies: + fbjs "^0.8.9" + loose-envify "^1.3.1" + +proxy-addr@~1.1.3: + version "1.1.4" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.4.tgz#27e545f6960a44a627d9b44467e35c1b6b4ce2f3" + dependencies: + forwarded "~0.1.0" + ipaddr.js "1.3.0" + +prr@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" + +pseudomap@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + +punycode@1.3.2, punycode@^1.2.4: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + +punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + +q@^1.4.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" + +qs@6.4.0, qs@~6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" + +qs@~6.3.0: + version "6.3.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + +querystringify@0.0.x: + version "0.0.4" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" + +querystringify@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb" + +randomatic@^1.1.3: + version "1.1.6" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" + dependencies: + is-number "^2.0.2" + kind-of "^3.0.2" + +range-parser@^1.0.3, range-parser@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" + +raw-body@~2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.2.0.tgz#994976cf6a5096a41162840492f0bdc5d6e7fb96" + dependencies: + bytes "2.4.0" + iconv-lite "0.4.15" + unpipe "1.0.0" + +rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: + version "1.2.1" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" + dependencies: + deep-extend "~0.4.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +react-addons-css-transition-group@15.3.2: + version "15.3.2" + resolved "https://registry.yarnpkg.com/react-addons-css-transition-group/-/react-addons-css-transition-group-15.3.2.tgz#d8fa52bec9bb61bdfde8b9e4652b80297cbff667" + +react-addons-perf@^15.4.0: + version "15.4.2" + resolved "https://registry.yarnpkg.com/react-addons-perf/-/react-addons-perf-15.4.2.tgz#110bdcf5c459c4f77cb85ed634bcd3397536383b" + dependencies: + fbjs "^0.8.4" + object-assign "^4.1.0" + +react-addons-test-utils@^15.4.0: + version "15.5.1" + resolved "https://registry.yarnpkg.com/react-addons-test-utils/-/react-addons-test-utils-15.5.1.tgz#e0d258cda2a122ad0dff69f838260d0c3958f5f7" + dependencies: + fbjs "^0.8.4" + object-assign "^4.1.0" + +react-dnd-html5-backend@^2.1.2: + version "2.4.1" + resolved "https://registry.yarnpkg.com/react-dnd-html5-backend/-/react-dnd-html5-backend-2.4.1.tgz#439d2bcaf8bd8b87a51386beb51c128826182ddd" + dependencies: + lodash "^4.2.0" + +react-dnd@^2.1.4: + version "2.4.0" + resolved "https://registry.yarnpkg.com/react-dnd/-/react-dnd-2.4.0.tgz#96f0042cd4cd375b4f0c3413f6ec84d267b7d792" + dependencies: + disposables "^1.0.1" + dnd-core "^2.4.0" + hoist-non-react-statics "^1.2.0" + invariant "^2.1.0" + lodash "^4.2.0" + prop-types "^15.5.8" + +react-dom@>=0.14.0, react-dom@^15.4.0: + version "15.5.4" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.5.4.tgz#ba0c28786fd52ed7e4f2135fe0288d462aef93da" + dependencies: + fbjs "^0.8.9" + loose-envify "^1.1.0" + object-assign "^4.1.0" + prop-types "~15.5.7" + +react-gemini-scrollbar@matrix-org/react-gemini-scrollbar#39d858c: + version "2.1.5" + resolved "https://codeload.github.com/matrix-org/react-gemini-scrollbar/tar.gz/39d858c" + dependencies: + gemini-scrollbar matrix-org/gemini-scrollbar#91e1e566 + +react@>=0.14.0, react@^15.4.0: + version "15.5.4" + resolved "https://registry.yarnpkg.com/react/-/react-15.5.4.tgz#fa83eb01506ab237cdc1c8c3b1cea8de012bf047" + dependencies: + fbjs "^0.8.9" + loose-envify "^1.1.0" + object-assign "^4.1.0" + prop-types "^15.5.7" + +read-all-stream@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" + dependencies: + pinkie-promise "^2.0.0" + readable-stream "^2.0.0" + +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + dependencies: + pify "^2.3.0" + +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + dependencies: + find-up "^1.0.0" + read-pkg "^1.0.0" + +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + +readable-stream@1.0, readable-stream@~1.0.2: + version "1.0.34" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.2.6: + version "2.2.9" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" + dependencies: + buffer-shims "~1.0.0" + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~1.0.0" + util-deprecate "~1.0.1" + +readable-stream@~1.1.9: + version "1.1.14" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@~2.0.0: + version "2.0.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~0.10.x" + util-deprecate "~1.0.1" + +readdirp@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" + dependencies: + graceful-fs "^4.1.2" + minimatch "^3.0.2" + readable-stream "^2.0.2" + set-immediate-shim "^1.0.1" + +readline2@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + mute-stream "0.0.5" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + dependencies: + resolve "^1.1.6" + +redent@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + dependencies: + indent-string "^2.1.0" + strip-indent "^1.0.1" + +redux@^3.2.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/redux/-/redux-3.6.0.tgz#887c2b3d0b9bd86eca2be70571c27654c19e188d" + dependencies: + lodash "^4.2.1" + lodash-es "^4.2.1" + loose-envify "^1.1.0" + symbol-observable "^1.0.2" + +regenerate@^1.2.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" + +regenerator-runtime@^0.10.0: + version "0.10.5" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" + +regenerator-transform@0.9.11: + version "0.9.11" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" + dependencies: + babel-runtime "^6.18.0" + babel-types "^6.19.0" + private "^0.1.6" + +regex-cache@^0.4.2: + version "0.4.3" + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" + dependencies: + is-equal-shallow "^0.1.3" + is-primitive "^2.0.0" + +regexp-quote@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/regexp-quote/-/regexp-quote-0.0.0.tgz#1e0f4650c862dcbfed54fd42b148e9bb1721fcf2" + +regexpu-core@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +registry-auth-token@^3.0.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" + dependencies: + rc "^1.1.6" + safe-buffer "^5.0.1" + +registry-url@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" + dependencies: + rc "^1.0.1" + +regjsgen@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" + +regjsparser@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" + dependencies: + jsesc "~0.5.0" + +relateurl@0.2.x: + version "0.2.7" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + +remarkable@^1.6.2: + version "1.7.1" + resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-1.7.1.tgz#aaca4972100b66a642a63a1021ca4bac1be3bff6" + dependencies: + argparse "~0.1.15" + autolinker "~0.15.0" + +remove-trailing-separator@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" + +renderkid@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.1.tgz#898cabfc8bede4b7b91135a3ffd323e58c0db319" + dependencies: + css-select "^1.1.0" + dom-converter "~0.1" + htmlparser2 "~3.3.0" + strip-ansi "^3.0.0" + utila "~0.3" + +repeat-element@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" + +repeat-string@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-0.2.2.tgz#c7a8d3236068362059a7e4651fc6884e8b1fb4ae" + +repeat-string@^1.5.2: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + dependencies: + is-finite "^1.0.0" + +request-progress@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-2.0.1.tgz#5d36bb57961c673aa5b788dbc8141fdf23b44e08" + dependencies: + throttleit "^1.0.0" + +request@^2.45.0, request@^2.81.0: + version "2.81.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~2.1.1" + har-validator "~4.2.1" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + oauth-sign "~0.8.1" + performance-now "^0.2.0" + qs "~6.4.0" + safe-buffer "^5.0.1" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "^0.6.0" + uuid "^3.0.0" + +request@^2.53.0, request@~2.79.0: + version "2.79.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + caseless "~0.11.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~2.1.1" + har-validator "~2.0.6" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + oauth-sign "~0.8.1" + qs "~6.3.0" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "~0.4.1" + uuid "^3.0.0" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + +require-from-string@^1.1.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + +require-uncached@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" + dependencies: + caller-path "^0.1.0" + resolve-from "^1.0.0" + +requirejs@2.1.22: + version "2.1.22" + resolved "https://registry.yarnpkg.com/requirejs/-/requirejs-2.1.22.tgz#dd78fd2d34180c0d62c724b5b8aebc0664e0366f" + +requires-port@1.0.x, requires-port@1.x.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + +resolve-from@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" + +resolve@^1.1.6, resolve@^1.1.7: + version "1.3.3" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" + dependencies: + path-parse "^1.0.5" + +restore-cursor@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" + dependencies: + exit-hook "^1.0.0" + onetime "^1.0.0" + +right-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" + dependencies: + align-text "^0.1.1" + +rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.4.3, rimraf@^2.5.1, rimraf@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" + dependencies: + glob "^7.0.5" + +ripemd160@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-0.2.0.tgz#2bf198bde167cacfa51c0a928e84b68bbe171fce" + +run-async@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" + dependencies: + once "^1.3.0" + +rx-lite@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" + +safe-buffer@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" + +sanitize-filename@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.1.tgz#612da1c96473fa02dccda92dcd5b4ab164a6772a" + dependencies: + truncate-utf8-bytes "^1.0.0" + +sanitize-html@^1.11.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-1.14.1.tgz#730ffa2249bdf18333effe45b286173c9c5ad0b8" + dependencies: + htmlparser2 "^3.9.0" + regexp-quote "0.0.0" + xtend "^4.0.0" + +semver-diff@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" + dependencies: + semver "^5.0.3" + +"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" + +semver@~4.3.3: + version "4.3.6" + resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" + +send@0.15.1: + version "0.15.1" + resolved "https://registry.yarnpkg.com/send/-/send-0.15.1.tgz#8a02354c26e6f5cca700065f5f0cdeba90ec7b5f" + dependencies: + debug "2.6.1" + depd "~1.1.0" + destroy "~1.0.4" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.8.0" + fresh "0.5.0" + http-errors "~1.6.1" + mime "1.3.4" + ms "0.7.2" + on-finished "~2.3.0" + range-parser "~1.2.0" + statuses "~1.3.1" + +serve-index@^1.7.2: + version "1.8.0" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b" + dependencies: + accepts "~1.3.3" + batch "0.5.3" + debug "~2.2.0" + escape-html "~1.0.3" + http-errors "~1.5.0" + mime-types "~2.1.11" + parseurl "~1.3.1" + +serve-static@1.12.1: + version "1.12.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.1.tgz#7443a965e3ced647aceb5639fa06bf4d1bbe0039" + dependencies: + encodeurl "~1.0.1" + escape-html "~1.0.3" + parseurl "~1.3.1" + send "0.15.1" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + +set-immediate-shim@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" + +setimmediate@^1.0.4, setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + +setprototypeof@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" + +setprototypeof@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" + +sha.js@2.2.6: + version "2.2.6" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.2.6.tgz#17ddeddc5f722fb66501658895461977867315ba" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + +shell-quote@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" + dependencies: + array-filter "~0.0.0" + array-map "~0.0.0" + array-reduce "~0.0.0" + jsonify "~0.0.0" + +shelljs@^0.7.5: + version "0.7.7" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +sigmund@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" + +signal-exit@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + +single-line-log@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/single-line-log/-/single-line-log-1.1.2.tgz#c2f83f273a3e1a16edb0995661da0ed5ef033364" + dependencies: + string-width "^1.0.1" + +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + +slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + +slide@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" + +sntp@1.x.x: + version "1.0.9" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" + dependencies: + hoek "2.x.x" + +socket.io-adapter@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz#cb6d4bb8bec81e1078b99677f9ced0046066bb8b" + dependencies: + debug "2.3.3" + socket.io-parser "2.3.1" + +socket.io-client@1.7.4: + version "1.7.4" + resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-1.7.4.tgz#ec9f820356ed99ef6d357f0756d648717bdd4281" + dependencies: + backo2 "1.0.2" + component-bind "1.0.0" + component-emitter "1.2.1" + debug "2.3.3" + engine.io-client "~1.8.4" + has-binary "0.1.7" + indexof "0.0.1" + object-component "0.0.3" + parseuri "0.0.5" + socket.io-parser "2.3.1" + to-array "0.1.4" + +socket.io-parser@2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.3.1.tgz#dd532025103ce429697326befd64005fcfe5b4a0" + dependencies: + component-emitter "1.1.2" + debug "2.2.0" + isarray "0.0.1" + json3 "3.3.2" + +socket.io@^1.4.5: + version "1.7.4" + resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-1.7.4.tgz#2f7ecedc3391bf2d5c73e291fe233e6e34d4dd00" + dependencies: + debug "2.3.3" + engine.io "~1.8.4" + has-binary "0.1.7" + object-assign "4.1.0" + socket.io-adapter "0.5.0" + socket.io-client "1.7.4" + socket.io-parser "2.3.1" + +sockjs-client@^1.0.3: + version "1.1.4" + resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12" + dependencies: + debug "^2.6.6" + eventsource "0.1.6" + faye-websocket "~0.11.0" + inherits "^2.0.1" + json3 "^3.3.2" + url-parse "^1.1.8" + +sockjs@^0.3.15: + version "0.3.18" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" + dependencies: + faye-websocket "^0.10.0" + uuid "^2.0.2" + +source-list-map@~0.1.5, source-list-map@~0.1.7: + version "0.1.8" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" + +source-map-loader@^0.1.5: + version "0.1.6" + resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-0.1.6.tgz#c09903da6d73b9e53b7ed8ee5245597051e98e91" + dependencies: + async "^0.9.0" + loader-utils "~0.2.2" + source-map "~0.1.33" + +source-map-support@^0.4.10, source-map-support@^0.4.2: + version "0.4.15" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" + dependencies: + source-map "^0.5.6" + +source-map@0.4.x, source-map@~0.4.1: + version "0.4.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + dependencies: + amdefine ">=0.0.4" + +source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: + version "0.5.6" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" + +source-map@^0.1.41, source-map@~0.1.33: + version "0.1.43" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" + dependencies: + amdefine ">=0.0.4" + +spdx-correct@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" + dependencies: + spdx-license-ids "^1.0.2" + +spdx-expression-parse@~1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" + +spdx-license-ids@^1.0.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" + +speedometer@~0.1.2: + version "0.1.4" + resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-0.1.4.tgz#9876dbd2a169d3115402d48e6ea6329c8816a50d" + +sprintf-js@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.0.tgz#cffcaf702daf65ea39bb4e0fa2b299cec1a1be46" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + +sshpk@^1.7.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + dashdash "^1.12.0" + getpass "^0.1.1" + optionalDependencies: + bcrypt-pbkdf "^1.0.0" + ecc-jsbn "~0.1.1" + jodid25519 "^1.0.0" + jsbn "~0.1.0" + tweetnacl "~0.14.0" + +stat-mode@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-0.2.2.tgz#e6c80b623123d7d80cf132ce538f346289072502" + +"statuses@>= 1.3.1 < 2", statuses@~1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" + +stream-browserify@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-cache@~0.0.1: + version "0.0.2" + resolved "https://registry.yarnpkg.com/stream-cache/-/stream-cache-0.0.2.tgz#1ac5ad6832428ca55667dbdee395dad4e6db118f" + +stream-http@^2.3.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.1.tgz#546a51741ad5a6b07e9e31b0b10441a917df528a" + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.2.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +string-width@^1.0.1, string-width@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +string-width@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^3.0.0" + +string.prototype.codepointat@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz#6b26e9bd3afcaa7be3b4269b526de1b82000ac78" + +string.prototype.repeat@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz#aba36de08dcee6a5a337d49b2ea1da1b28fc0ecf" + +string_decoder@^0.10.25, string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + +string_decoder@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" + dependencies: + buffer-shims "~1.0.0" + +stringstream@~0.0.4: + version "0.0.5" + resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + dependencies: + ansi-regex "^2.0.0" + +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + dependencies: + is-utf8 "^0.2.0" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + +strip-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + dependencies: + get-stdin "^4.0.1" + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + +subarg@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" + dependencies: + minimist "^1.1.0" + +sugarss@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/sugarss/-/sugarss-0.2.0.tgz#ac34237563327c6ff897b64742bf6aec190ad39e" + dependencies: + postcss "^5.2.4" + +sumchecker@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-1.3.1.tgz#79bb3b4456dd04f18ebdbc0d703a1d1daec5105d" + dependencies: + debug "^2.2.0" + es6-promise "^4.0.5" + +supports-color@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + +supports-color@^3.1.0, supports-color@^3.1.1, supports-color@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" + dependencies: + has-flag "^1.0.0" + +symbol-observable@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" + +table@^3.7.8: + version "3.8.3" + resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" + dependencies: + ajv "^4.7.0" + ajv-keywords "^1.0.0" + chalk "^1.1.1" + lodash "^4.0.0" + slice-ansi "0.0.4" + string-width "^2.0.0" + +tapable@^0.1.8, tapable@~0.1.8: + version "0.1.10" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4" + +tar-pack@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" + dependencies: + debug "^2.2.0" + fstream "^1.0.10" + fstream-ignore "^1.0.5" + once "^1.3.3" + readable-stream "^2.1.4" + rimraf "^2.5.1" + tar "^2.2.1" + uid-number "^0.0.6" + +tar-stream@^1.5.0: + version "1.5.2" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.5.2.tgz#fbc6c6e83c1a19d4cb48c7d96171fc248effc7bf" + dependencies: + bl "^1.0.0" + end-of-stream "^1.0.0" + readable-stream "^2.0.0" + xtend "^4.0.0" + +tar@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" + dependencies: + block-stream "*" + fstream "^1.0.2" + inherits "2" + +text-encoding-utf-8@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/text-encoding-utf-8/-/text-encoding-utf-8-1.0.1.tgz#51ea6c7a7eb2fb4f67467b763735661f5603492d" + +text-table@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + +throttleit@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" + +throttleit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" + +through2@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/through2/-/through2-0.2.3.tgz#eb3284da4ea311b6cc8ace3653748a52abf25a3f" + dependencies: + readable-stream "~1.1.9" + xtend "~2.1.1" + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + +timed-out@^3.0.0: + version "3.1.3" + resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.3.tgz#95860bfcc5c76c277f8f8326fd0f5b2e20eba217" + +timers-browserify@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" + dependencies: + setimmediate "^1.0.4" + +tmatch@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/tmatch/-/tmatch-2.0.1.tgz#0c56246f33f30da1b8d3d72895abaf16660f38cf" + +tmp@0.0.x: + version "0.0.31" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" + dependencies: + os-tmpdir "~1.0.1" + +to-array@0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + +to-fast-properties@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + +to-iso-string@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/to-iso-string/-/to-iso-string-0.0.2.tgz#4dc19e664dfccbe25bd8db508b00c6da158255d1" + +toposort@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.3.tgz#f02cd8a74bd8be2fc0e98611c3bacb95a171869c" + +tough-cookie@~2.3.0: + version "2.3.2" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" + dependencies: + punycode "^1.4.1" + +trim-newlines@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + +trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + +truncate-utf8-bytes@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" + dependencies: + utf8-byte-length "^1.0.1" + +tryit@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + +tunnel-agent@^0.4.3, tunnel-agent@~0.4.1: + version "0.4.3" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + dependencies: + prelude-ls "~1.1.2" + +type-is@~1.6.14: + version "1.6.15" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" + dependencies: + media-typer "0.3.0" + mime-types "~2.1.15" + +typedarray@^0.0.6, typedarray@~0.0.5: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + +ua-parser-js@^0.7.10, ua-parser-js@^0.7.9: + version "0.7.12" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" + +uglify-js@~2.7.3: + version "2.7.5" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" + dependencies: + async "~0.2.6" + source-map "~0.5.1" + uglify-to-browserify "~1.0.0" + yargs "~3.10.0" + +uglify-js@~2.8.22: + version "2.8.23" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.23.tgz#8230dd9783371232d62a7821e2cf9a817270a8a0" + dependencies: + source-map "~0.5.1" + yargs "~3.10.0" + optionalDependencies: + uglify-to-browserify "~1.0.0" + +uglify-to-browserify@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" + +uid-number@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + +ultron@1.0.x: + version "1.0.2" + resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" + +underscore.string@~2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-2.4.0.tgz#8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b" + +underscore@~1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + +unzip-response@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" + +update-notifier@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.3.tgz#8f92c515482bd6831b7c93013e70f87552c7cf5a" + dependencies: + boxen "^0.6.0" + chalk "^1.0.0" + configstore "^2.0.0" + is-npm "^1.0.0" + latest-version "^2.0.0" + lazy-req "^1.1.0" + semver-diff "^2.0.0" + xdg-basedir "^2.0.0" + +upper-case@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" + +url-parse-lax@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" + dependencies: + prepend-http "^1.0.1" + +url-parse@1.0.x: + version "1.0.5" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" + dependencies: + querystringify "0.0.x" + requires-port "1.0.x" + +url-parse@^1.1.8: + version "1.1.9" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.9.tgz#c67f1d775d51f0a18911dd7b3ffad27bb9e5bd19" + dependencies: + querystringify "~1.0.0" + requires-port "1.0.x" + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +user-home@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" + +user-home@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" + dependencies: + os-homedir "^1.0.0" + +useragent@^2.1.6: + version "2.1.13" + resolved "https://registry.yarnpkg.com/useragent/-/useragent-2.1.13.tgz#bba43e8aa24d5ceb83c2937473e102e21df74c10" + dependencies: + lru-cache "2.2.x" + tmp "0.0.x" + +utf8-byte-length@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz#f45f150c4c66eee968186505ab93fcbb8ad6bf61" + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + +util@0.10.3, util@^0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + dependencies: + inherits "2.0.1" + +utila@~0.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226" + +utila@~0.4: + version "0.4.0" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + +utils-merge@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" + +uuid-1345@^0.99.6: + version "0.99.6" + resolved "https://registry.yarnpkg.com/uuid-1345/-/uuid-1345-0.99.6.tgz#b1270ae015a7721c7adec6c46ec169c6098aed40" + dependencies: + macaddress "^0.2.7" + +uuid@^2.0.1, uuid@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" + +uuid@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" + +v8flags@^2.0.10: + version "2.1.1" + resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" + dependencies: + user-home "^1.1.1" + +validate-npm-package-license@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" + dependencies: + spdx-correct "~1.0.0" + spdx-expression-parse "~1.0.0" + +vary@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" + +velocity-vector@vector-im/velocity#059e3b2: + version "1.2.3" + resolved "https://codeload.github.com/vector-im/velocity/tar.gz/059e3b2" + dependencies: + jquery ">= 1.4.3" + +verror@1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" + dependencies: + extsprintf "1.0.2" + +vm-browserify@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + dependencies: + indexof "0.0.1" + +void-elements@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" + +walkdir@^0.0.11: + version "0.0.11" + resolved "https://registry.yarnpkg.com/walkdir/-/walkdir-0.0.11.tgz#a16d025eb931bd03b52f308caed0f40fcebe9532" + +watchpack@^0.2.1: + version "0.2.9" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-0.2.9.tgz#62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b" + dependencies: + async "^0.9.0" + chokidar "^1.0.0" + graceful-fs "^4.1.2" + +webpack-core@~0.6.9: + version "0.6.9" + resolved "https://registry.yarnpkg.com/webpack-core/-/webpack-core-0.6.9.tgz#fc571588c8558da77be9efb6debdc5a3b172bdc2" + dependencies: + source-list-map "~0.1.7" + source-map "~0.4.1" + +webpack-dev-middleware@^1.0.11, webpack-dev-middleware@^1.10.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.10.2.tgz#2e252ce1dfb020dbda1ccb37df26f30ab014dbd1" + dependencies: + memory-fs "~0.4.1" + mime "^1.3.4" + path-is-absolute "^1.0.0" + range-parser "^1.0.3" + +webpack-dev-server@^1.16.2: + version "1.16.5" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-1.16.5.tgz#0cbd5f2d2ac8d4e593aacd5c9702e7bbd5e59892" + dependencies: + compression "^1.5.2" + connect-history-api-fallback "^1.3.0" + express "^4.13.3" + http-proxy-middleware "~0.17.1" + open "0.0.5" + optimist "~0.6.1" + serve-index "^1.7.2" + sockjs "^0.3.15" + sockjs-client "^1.0.3" + stream-cache "~0.0.1" + strip-ansi "^3.0.0" + supports-color "^3.1.1" + webpack-dev-middleware "^1.10.2" + +webpack@^1.12.14: + version "1.15.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-1.15.0.tgz#4ff31f53db03339e55164a9d468ee0324968fe98" + dependencies: + acorn "^3.0.0" + async "^1.3.0" + clone "^1.0.2" + enhanced-resolve "~0.9.0" + interpret "^0.6.4" + loader-utils "^0.2.11" + memory-fs "~0.3.0" + mkdirp "~0.5.0" + node-libs-browser "^0.7.0" + optimist "~0.6.0" + supports-color "^3.1.0" + tapable "~0.1.8" + uglify-js "~2.7.3" + watchpack "^0.2.1" + webpack-core "~0.6.9" + +websocket-driver@>=0.5.1: + version "0.6.5" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" + dependencies: + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" + +whatwg-fetch@>=0.10.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" + +whatwg-fetch@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-1.1.1.tgz#ac3c9d39f320c6dce5339969d054ef43dd333319" + +which-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + +which@^1.2.1, which@^1.2.9, which@~1.2.10: + version "1.2.14" + resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" + dependencies: + string-width "^1.0.1" + +widest-line@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" + dependencies: + string-width "^1.0.1" + +window-size@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + +wordwrap@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" + +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + +write-file-atomic@^1.1.2: + version "1.3.4" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + slide "^1.1.5" + +write@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" + dependencies: + mkdirp "^0.5.1" + +ws@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.2.tgz#8a244fa052401e08c9886cf44a85189e1fd4067f" + dependencies: + options ">=0.0.5" + ultron "1.0.x" + +ws@1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.4.tgz#57f40d036832e5f5055662a397c4de76ed66bf61" + dependencies: + options ">=0.0.5" + ultron "1.0.x" + +wtf-8@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a" + +xdg-basedir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" + dependencies: + os-homedir "^1.0.0" + +xml-char-classes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" + +xmlbuilder@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-3.1.0.tgz#2c86888f2d4eade850fa38ca7f7223f7209516e1" + dependencies: + lodash "^3.5.0" + +xmlbuilder@8.2.2: + version "8.2.2" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz#69248673410b4ba42e1a6136551d2922335aa773" + +xmldom@0.1.x: + version "0.1.27" + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" + +xmlhttprequest-ssl@1.5.3: + version "1.5.3" + resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz#185a888c04eca46c3e4070d99f7b49de3528992d" + +xtend@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + +xtend@~2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" + dependencies: + object-keys "~0.4.0" + +y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + +yallist@^2.0.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + +yargs-parser@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" + dependencies: + camelcase "^3.0.0" + +yargs-parser@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" + dependencies: + camelcase "^3.0.0" + +yargs@7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.0.2.tgz#115b97df1321823e8b8648e8968c782521221f67" + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^5.0.0" + +yargs@^6.6.0: + version "6.6.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^4.2.0" + +yargs@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" + dependencies: + camelcase "^1.0.2" + cliui "^2.1.0" + decamelize "^1.0.0" + window-size "0.1.0" + +yauzl@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" + dependencies: + fd-slicer "~1.0.1" + +yeast@0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" + +zip-stream@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-1.1.1.tgz#5216b48bbb4d2651f64d5c6e6f09eb4a7399d557" + dependencies: + archiver-utils "^1.3.0" + compress-commons "^1.1.0" + lodash "^4.8.0" + readable-stream "^2.0.0" From 3f3f230a77226688618b11e9c2db5afddf6f3e99 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 23 May 2017 14:20:51 +0100 Subject: [PATCH 073/147] Remove accidentally comitted yarn stuff --- yarn-error.log | 200 -- yarn.lock | 6076 ------------------------------------------------ 2 files changed, 6276 deletions(-) delete mode 100644 yarn-error.log delete mode 100644 yarn.lock diff --git a/yarn-error.log b/yarn-error.log deleted file mode 100644 index ff994d12..00000000 --- a/yarn-error.log +++ /dev/null @@ -1,200 +0,0 @@ -Arguments: - C:\Program Files\nodejs\node.exe C:\Program Files (x86)\Yarn\bin\yarn.js install - -PATH: - C:\Users\marce\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\local\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\marce\bin;C:\ProgramData\Oracle\Java\javapath;C:\Python27;C:\Python27\Scripts;C:\Program Files (x86)\Razer Chroma SDK\bin;C:\Program Files\Razer Chroma SDK\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY;C:\Program Files (x86)\QuickTime\QTSystem;C:\Program Files\Git\cmd;C:\ProgramData\chocolatey\bin;C:\Program Files\Java\jdk1.8.0_131\bin;C:\Android\android-sdk\tools;C:\Android\android-sdk\platform-tools;C:\Program Files\nodejs;C:\Program Files (x86)\Yarn\bin;C:\Ruby23\bin;C:\Users\marce\.cargo\bin;C:\Users\marce\AppData\Local\Microsoft\WindowsApps;C:\Users\marce\AppData\Local\atom\bin;C:\Program Files\Docker Toolbox;C:\Users\marce\AppData\Roaming\npm;C:\Users\marce\AppData\Local\Yarn\.bin;C:\Program Files\Git\usr\bin\vendor_perl;C:\Program Files\Git\usr\bin\core_perl - -Yarn version: - 0.23.4 - -Node version: - 7.10.0 - -Platform: - win32 x64 - -npm manifest: - { - "name": "riot-web", - "productName": "Riot", - "main": "electron/src/electron-main.js", - "version": "0.9.9", - "description": "A feature-rich client for Matrix.org", - "author": "Vector Creations Ltd.", - "repository": { - "type": "git", - "url": "https://github.com/vector-im/riot-web" - }, - "license": "Apache-2.0", - "files": [ - "AUTHORS.rst", - "CONTRIBUTING.rst", - "deploy", - "docs", - "karma.conf.js", - "lib", - "release.sh", - "scripts", - "src", - "test", - "webpack.config.js" - ], - "style": "bundle.css", - "matrix-react-parent": "matrix-react-sdk", - "scripts": { - "reskindex": "reskindex -h src/header", - "build:res": "node scripts/copy-res.js", - "build:modernizr": "modernizr -c .modernizr.json -d src/vector/modernizr.js", - "build:compile": "babel --source-maps -d lib src", - "build:bundle": "cross-env NODE_ENV=production webpack -p --progress", - "build:bundle:dev": "webpack --optimize-occurence-order --progress", - "build:electron": "npm run clean && npm run build && build -wml --ia32 --x64", - "build": "npm run build:res && npm run build:bundle", - "build:dev": "npm run build:res && npm run build:bundle:dev", - "dist": "scripts/package.sh", - "install:electron": "install-app-deps", - "electron": "npm run install:electron && electron .", - "start:res": "node scripts/copy-res.js -w", - "start:js": "webpack-dev-server --output-filename=bundles/_dev_/[name].js --output-chunk-file=bundles/_dev_/[name].js -w --progress", - "start:js:prod": "cross-env NODE_ENV=production webpack-dev-server -w --progress", - "start": "parallelshell \"npm run start:res\" \"npm run start:js\"", - "start:prod": "parallelshell \"npm run start:res\" \"npm run start:js:prod\"", - "lint": "eslint src/", - "lintall": "eslint src/ test/", - "clean": "rimraf lib webapp electron/dist", - "prepublish": "npm run build:compile", - "test": "karma start --single-run=true --autoWatch=false --browsers PhantomJS --colors=false", - "test-multi": "karma start" - }, - "dependencies": { - "babel-polyfill": "^6.5.0", - "babel-runtime": "^6.11.6", - "browser-request": "^0.3.3", - "classnames": "^2.1.2", - "counterpart": "Nordgedanken/counterpart#develop", - "draft-js": "^0.8.1", - "extract-text-webpack-plugin": "^0.9.1", - "favico.js": "^0.3.10", - "filesize": "3.5.6", - "flux": "~2.0.3", - "gfm.css": "^1.1.1", - "highlight.js": "^9.0.0", - "linkifyjs": "^2.1.3", - "matrix-js-sdk": "matrix-org/matrix-js-sdk#develop", - "matrix-react-sdk": "matrix-org/matrix-react-sdk#develop", - "modernizr": "^3.1.0", - "pako": "^1.0.5", - "q": "^1.4.1", - "react": "^15.4.0", - "react-dnd": "^2.1.4", - "react-dnd-html5-backend": "^2.1.2", - "react-dom": "^15.4.0", - "react-gemini-scrollbar": "matrix-org/react-gemini-scrollbar#39d858c", - "sanitize-html": "^1.11.1", - "ua-parser-js": "^0.7.10", - "url": "^0.11.0" - }, - "devDependencies": { - "autoprefixer": "^6.6.0", - "babel-cli": "^6.5.2", - "babel-core": "^6.14.0", - "babel-eslint": "^6.1.0", - "babel-loader": "^6.2.5", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-transform-async-to-generator": "^6.16.0", - "babel-plugin-transform-class-properties": "^6.16.0", - "babel-plugin-transform-object-rest-spread": "^6.16.0", - "babel-plugin-transform-runtime": "^6.15.0", - "babel-preset-es2015": "^6.16.0", - "babel-preset-es2016": "^6.16.0", - "babel-preset-es2017": "^6.16.0", - "babel-preset-react": "^6.16.0", - "babel-preset-stage-2": "^6.17.0", - "chokidar": "^1.6.1", - "cpx": "^1.3.2", - "cross-env": "^4.0.0", - "css-raw-loader": "^0.1.1", - "electron-builder": "^11.2.4", - "electron-builder-squirrel-windows": "^11.2.1", - "emojione": "^2.2.7", - "eslint": "^3.14.0", - "eslint-config-google": "^0.7.1", - "eslint-plugin-flowtype": "^2.30.0", - "eslint-plugin-react": "^6.9.0", - "expect": "^1.16.0", - "fs-extra": "^0.30.0", - "html-webpack-plugin": "^2.24.0", - "json-loader": "^0.5.3", - "karma": "^0.13.22", - "karma-chrome-launcher": "^0.2.3", - "karma-cli": "^0.1.2", - "karma-junit-reporter": "^0.4.1", - "karma-mocha": "^0.2.2", - "karma-phantomjs-launcher": "^1.0.0", - "karma-webpack": "^1.7.0", - "minimist": "^1.2.0", - "mkdirp": "^0.5.1", - "mocha": "^2.4.5", - "parallelshell": "^1.2.0", - "phantomjs-prebuilt": "^2.1.7", - "postcss-extend": "^1.0.5", - "postcss-import": "^9.0.0", - "postcss-loader": "^1.2.2", - "postcss-mixins": "^5.4.1", - "postcss-nested": "^1.0.0", - "postcss-scss": "^0.4.0", - "postcss-simple-vars": "^3.0.0", - "postcss-strip-inline-comments": "^0.1.5", - "react-addons-perf": "^15.4.0", - "react-addons-test-utils": "^15.4.0", - "rimraf": "^2.4.3", - "source-map-loader": "^0.1.5", - "webpack": "^1.12.14", - "webpack-dev-server": "^1.16.2" - }, - "optionalDependencies": { - "olm": "https://matrix.org/packages/npm/olm/olm-2.2.1.tgz" - }, - "build": { - "appId": "im.riot.app", - "category": "Network", - "electronVersion": "1.6.2", - "//asar=false": "https://github.com/electron-userland/electron-builder/issues/675", - "asar": false, - "dereference": true, - "//files": "We bundle everything, so we only need to include webapp/", - "files": [ - "node_modules/**", - "src/**", - "img/**" - ], - "extraResources": [ - "webapp/**/*" - ], - "linux": { - "target": "deb", - "maintainer": "support@riot.im", - "desktop": { - "StartupWMClass": "riot-web" - } - }, - "win": { - "target": "squirrel" - }, - "directories": { - "buildResources": "electron/build", - "output": "electron/dist", - "app": "electron" - } - } - } - -yarn manifest: - No manifest - -Lockfile: - No lockfile - -Trace: - Error: https://registry.yarnpkg.com/emojione/-/emojione-2.2.7.tgz: unexpected end of file - at Zlib._handle.onerror (zlib.js:355:17) diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index fa7e9e36..00000000 --- a/yarn.lock +++ /dev/null @@ -1,6076 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"7zip-bin-linux@^1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/7zip-bin-linux/-/7zip-bin-linux-1.0.3.tgz#66724d7bb7526381574393888f62566ed537151c" - -"7zip-bin-mac@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/7zip-bin-mac/-/7zip-bin-mac-1.0.1.tgz#3e68778bbf0926adc68159427074505d47555c02" - -"7zip-bin-win@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/7zip-bin-win/-/7zip-bin-win-2.0.2.tgz#4c36399413922f111b8e80df3065a4069cfc0a64" - -"7zip-bin@^2.0.4": - version "2.0.4" - resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-2.0.4.tgz#0cd28ac3301b1302fbd99922bacb8bad98103e12" - optionalDependencies: - "7zip-bin-linux" "^1.0.3" - "7zip-bin-mac" "^1.0.1" - "7zip-bin-win" "^2.0.2" - -abbrev@1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" - -accepts@1.3.3, accepts@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" - dependencies: - mime-types "~2.1.11" - negotiator "0.6.1" - -acorn-jsx@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" - dependencies: - acorn "^3.0.4" - -acorn@^3.0.0, acorn@^3.0.4: - version "3.3.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" - -acorn@^5.0.1: - version "5.0.3" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" - -after@0.8.2: - version "0.8.2" - resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" - -ajv-keywords@^1.0.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" - -ajv@^4.7.0, ajv@^4.9.1: - version "4.11.8" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" - dependencies: - co "^4.6.0" - json-stable-stringify "^1.0.1" - -align-text@^0.1.1, align-text@^0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" - dependencies: - kind-of "^3.0.2" - longest "^1.0.1" - repeat-string "^1.5.2" - -amdefine@>=0.0.4: - version "1.0.1" - resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" - -another-json@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/another-json/-/another-json-0.2.0.tgz#b5f4019c973b6dd5c6506a2d93469cb6d32aeedc" - -ansi-align@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" - dependencies: - string-width "^1.0.1" - -ansi-escapes@^1.1.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - -any-promise@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-0.1.0.tgz#830b680aa7e56f33451d4b049f3bd8044498ee27" - -anymatch@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" - dependencies: - arrify "^1.0.0" - micromatch "^2.1.5" - -aproba@^1.0.3: - version "1.1.1" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" - -archiver-utils@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-1.3.0.tgz#e50b4c09c70bf3d680e32ff1b7994e9f9d895174" - dependencies: - glob "^7.0.0" - graceful-fs "^4.1.0" - lazystream "^1.0.0" - lodash "^4.8.0" - normalize-path "^2.0.0" - readable-stream "^2.0.0" - -archiver@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/archiver/-/archiver-1.3.0.tgz#4f2194d6d8f99df3f531e6881f14f15d55faaf22" - dependencies: - archiver-utils "^1.3.0" - async "^2.0.0" - buffer-crc32 "^0.2.1" - glob "^7.0.0" - lodash "^4.8.0" - readable-stream "^2.0.0" - tar-stream "^1.5.0" - walkdir "^0.0.11" - zip-stream "^1.1.0" - -are-we-there-yet@~1.1.2: - version "1.1.4" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" - dependencies: - delegates "^1.0.0" - readable-stream "^2.0.6" - -argparse@^1.0.7: - version "1.0.9" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" - dependencies: - sprintf-js "~1.0.2" - -argparse@~0.1.15: - version "0.1.16" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-0.1.16.tgz#cfd01e0fbba3d6caed049fbd758d40f65196f57c" - dependencies: - underscore "~1.7.0" - underscore.string "~2.4.0" - -arr-diff@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" - dependencies: - arr-flatten "^1.0.1" - -arr-flatten@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" - -array-filter@~0.0.0: - version "0.0.1" - resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" - -array-find-index@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - -array-map@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" - -array-reduce@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" - -array-slice@^0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" - -array-union@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" - dependencies: - array-uniq "^1.0.1" - -array-uniq@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" - -array-unique@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" - -array.prototype.find@^2.0.1: - version "2.0.4" - resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.4.tgz#556a5c5362c08648323ddaeb9de9d14bc1864c90" - dependencies: - define-properties "^1.1.2" - es-abstract "^1.7.0" - -arraybuffer.slice@0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca" - -arrify@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - -asap@^2.0.3, asap@~2.0.3: - version "2.0.5" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" - -asar-electron-builder@^0.13.5: - version "0.13.5" - resolved "https://registry.yarnpkg.com/asar-electron-builder/-/asar-electron-builder-0.13.5.tgz#4ccd4d11fd7c9d3b3cffc782fde3deed9ef91af6" - dependencies: - chromium-pickle-js "^0.2.0" - commander "^2.9.0" - cuint "^0.2.1" - minimatch "^3.0.2" - mkdirp "^0.5.1" - -asn1@~0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" - -assert-plus@1.0.0, assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - -assert-plus@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" - -assert@^1.1.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" - dependencies: - util "0.10.3" - -async-each@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" - -async@^0.9.0, async@~0.9.0: - version "0.9.2" - resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" - -async@^1.3.0, async@^1.5.0: - version "1.5.2" - resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" - -async@^2.0.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/async/-/async-2.4.0.tgz#4990200f18ea5b837c2cc4f8c031a6985c385611" - dependencies: - lodash "^4.14.0" - -async@~0.2.6: - version "0.2.10" - resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - -autolinker@~0.15.0: - version "0.15.3" - resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-0.15.3.tgz#342417d8f2f3461b14cf09088d5edf8791dc9832" - -autoprefixer@^6.6.0: - version "6.7.7" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" - dependencies: - browserslist "^1.7.6" - caniuse-db "^1.0.30000634" - normalize-range "^0.1.2" - num2fraction "^1.2.2" - postcss "^5.2.16" - postcss-value-parser "^3.2.3" - -aws-sign2@~0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" - -aws4@^1.2.1: - version "1.6.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" - -babel-cli@^6.5.2: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" - dependencies: - babel-core "^6.24.1" - babel-polyfill "^6.23.0" - babel-register "^6.24.1" - babel-runtime "^6.22.0" - commander "^2.8.1" - convert-source-map "^1.1.0" - fs-readdir-recursive "^1.0.0" - glob "^7.0.0" - lodash "^4.2.0" - output-file-sync "^1.1.0" - path-is-absolute "^1.0.0" - slash "^1.0.0" - source-map "^0.5.0" - v8flags "^2.0.10" - optionalDependencies: - chokidar "^1.6.1" - -babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" - dependencies: - chalk "^1.1.0" - esutils "^2.0.2" - js-tokens "^3.0.0" - -babel-core@^6.14.0, babel-core@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" - dependencies: - babel-code-frame "^6.22.0" - babel-generator "^6.24.1" - babel-helpers "^6.24.1" - babel-messages "^6.23.0" - babel-register "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - babylon "^6.11.0" - convert-source-map "^1.1.0" - debug "^2.1.1" - json5 "^0.5.0" - lodash "^4.2.0" - minimatch "^3.0.2" - path-is-absolute "^1.0.0" - private "^0.1.6" - slash "^1.0.0" - source-map "^0.5.0" - -babel-eslint@^6.1.0: - version "6.1.2" - resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-6.1.2.tgz#5293419fe3672d66598d327da9694567ba6a5f2f" - dependencies: - babel-traverse "^6.0.20" - babel-types "^6.0.19" - babylon "^6.0.18" - lodash.assign "^4.0.0" - lodash.pickby "^4.0.0" - -babel-generator@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" - dependencies: - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - detect-indent "^4.0.0" - jsesc "^1.3.0" - lodash "^4.2.0" - source-map "^0.5.0" - trim-right "^1.0.1" - -babel-helper-bindify-decorators@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" - dependencies: - babel-runtime "^6.22.0" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" - dependencies: - babel-helper-explode-assignable-expression "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-builder-react-jsx@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - esutils "^2.0.0" - -babel-helper-call-delegate@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" - dependencies: - babel-helper-hoist-variables "^6.24.1" - babel-runtime "^6.22.0" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-define-map@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" - dependencies: - babel-helper-function-name "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - lodash "^4.2.0" - -babel-helper-explode-assignable-expression@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" - dependencies: - babel-runtime "^6.22.0" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-explode-class@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" - dependencies: - babel-helper-bindify-decorators "^6.24.1" - babel-runtime "^6.22.0" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-function-name@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" - dependencies: - babel-helper-get-function-arity "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-get-function-arity@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-hoist-variables@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-optimise-call-expression@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-helper-regex@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - lodash "^4.2.0" - -babel-helper-remap-async-to-generator@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" - dependencies: - babel-helper-function-name "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helper-replace-supers@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" - dependencies: - babel-helper-optimise-call-expression "^6.24.1" - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-helpers@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" - dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-loader@^6.2.5: - version "6.4.1" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.1.tgz#0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca" - dependencies: - find-cache-dir "^0.1.1" - loader-utils "^0.2.16" - mkdirp "^0.5.1" - object-assign "^4.0.1" - -babel-messages@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-add-module-exports@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.1.tgz#9ae9a1f4a8dc67f0cdec4f4aeda1e43a5ff65e25" - -babel-plugin-check-es2015-constants@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-syntax-async-functions@^6.8.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" - -babel-plugin-syntax-async-generators@^6.5.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" - -babel-plugin-syntax-class-properties@^6.8.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" - -babel-plugin-syntax-decorators@^6.13.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" - -babel-plugin-syntax-dynamic-import@^6.18.0: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" - -babel-plugin-syntax-exponentiation-operator@^6.8.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" - -babel-plugin-syntax-flow@^6.18.0: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" - -babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" - -babel-plugin-syntax-object-rest-spread@^6.8.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" - -babel-plugin-syntax-trailing-function-commas@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" - -babel-plugin-transform-async-generator-functions@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" - dependencies: - babel-helper-remap-async-to-generator "^6.24.1" - babel-plugin-syntax-async-generators "^6.5.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-async-to-generator@^6.16.0, babel-plugin-transform-async-to-generator@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" - dependencies: - babel-helper-remap-async-to-generator "^6.24.1" - babel-plugin-syntax-async-functions "^6.8.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-class-properties@^6.16.0, babel-plugin-transform-class-properties@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" - dependencies: - babel-helper-function-name "^6.24.1" - babel-plugin-syntax-class-properties "^6.8.0" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-decorators@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" - dependencies: - babel-helper-explode-class "^6.24.1" - babel-plugin-syntax-decorators "^6.13.0" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-arrow-functions@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-block-scoping@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" - dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - lodash "^4.2.0" - -babel-plugin-transform-es2015-classes@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" - dependencies: - babel-helper-define-map "^6.24.1" - babel-helper-function-name "^6.24.1" - babel-helper-optimise-call-expression "^6.24.1" - babel-helper-replace-supers "^6.24.1" - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-computed-properties@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" - dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-destructuring@^6.22.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-duplicate-keys@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-for-of@^6.22.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-function-name@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" - dependencies: - babel-helper-function-name "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-literals@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-modules-amd@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" - dependencies: - babel-plugin-transform-es2015-modules-commonjs "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-modules-commonjs@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" - dependencies: - babel-plugin-transform-strict-mode "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-modules-systemjs@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" - dependencies: - babel-helper-hoist-variables "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-modules-umd@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" - dependencies: - babel-plugin-transform-es2015-modules-amd "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-plugin-transform-es2015-object-super@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" - dependencies: - babel-helper-replace-supers "^6.24.1" - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-parameters@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" - dependencies: - babel-helper-call-delegate "^6.24.1" - babel-helper-get-function-arity "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-shorthand-properties@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-spread@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-sticky-regex@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" - dependencies: - babel-helper-regex "^6.24.1" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-plugin-transform-es2015-template-literals@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-typeof-symbol@^6.22.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-es2015-unicode-regex@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" - dependencies: - babel-helper-regex "^6.24.1" - babel-runtime "^6.22.0" - regexpu-core "^2.0.0" - -babel-plugin-transform-exponentiation-operator@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" - dependencies: - babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" - babel-plugin-syntax-exponentiation-operator "^6.8.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-flow-strip-types@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" - dependencies: - babel-plugin-syntax-flow "^6.18.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-object-rest-spread@^6.16.0, babel-plugin-transform-object-rest-spread@^6.22.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" - dependencies: - babel-plugin-syntax-object-rest-spread "^6.8.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-react-display-name@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-react-jsx-self@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" - dependencies: - babel-plugin-syntax-jsx "^6.8.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-react-jsx-source@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" - dependencies: - babel-plugin-syntax-jsx "^6.8.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-react-jsx@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" - dependencies: - babel-helper-builder-react-jsx "^6.24.1" - babel-plugin-syntax-jsx "^6.8.0" - babel-runtime "^6.22.0" - -babel-plugin-transform-regenerator@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" - dependencies: - regenerator-transform "0.9.11" - -babel-plugin-transform-runtime@^6.15.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-transform-strict-mode@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-polyfill@^6.23.0, babel-polyfill@^6.5.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" - dependencies: - babel-runtime "^6.22.0" - core-js "^2.4.0" - regenerator-runtime "^0.10.0" - -babel-preset-es2015@^6.16.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" - dependencies: - babel-plugin-check-es2015-constants "^6.22.0" - babel-plugin-transform-es2015-arrow-functions "^6.22.0" - babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" - babel-plugin-transform-es2015-block-scoping "^6.24.1" - babel-plugin-transform-es2015-classes "^6.24.1" - babel-plugin-transform-es2015-computed-properties "^6.24.1" - babel-plugin-transform-es2015-destructuring "^6.22.0" - babel-plugin-transform-es2015-duplicate-keys "^6.24.1" - babel-plugin-transform-es2015-for-of "^6.22.0" - babel-plugin-transform-es2015-function-name "^6.24.1" - babel-plugin-transform-es2015-literals "^6.22.0" - babel-plugin-transform-es2015-modules-amd "^6.24.1" - babel-plugin-transform-es2015-modules-commonjs "^6.24.1" - babel-plugin-transform-es2015-modules-systemjs "^6.24.1" - babel-plugin-transform-es2015-modules-umd "^6.24.1" - babel-plugin-transform-es2015-object-super "^6.24.1" - babel-plugin-transform-es2015-parameters "^6.24.1" - babel-plugin-transform-es2015-shorthand-properties "^6.24.1" - babel-plugin-transform-es2015-spread "^6.22.0" - babel-plugin-transform-es2015-sticky-regex "^6.24.1" - babel-plugin-transform-es2015-template-literals "^6.22.0" - babel-plugin-transform-es2015-typeof-symbol "^6.22.0" - babel-plugin-transform-es2015-unicode-regex "^6.24.1" - babel-plugin-transform-regenerator "^6.24.1" - -babel-preset-es2016@^6.16.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-preset-es2016/-/babel-preset-es2016-6.24.1.tgz#f900bf93e2ebc0d276df9b8ab59724ebfd959f8b" - dependencies: - babel-plugin-transform-exponentiation-operator "^6.24.1" - -babel-preset-es2017@^6.16.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-preset-es2017/-/babel-preset-es2017-6.24.1.tgz#597beadfb9f7f208bcfd8a12e9b2b29b8b2f14d1" - dependencies: - babel-plugin-syntax-trailing-function-commas "^6.22.0" - babel-plugin-transform-async-to-generator "^6.24.1" - -babel-preset-flow@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" - dependencies: - babel-plugin-transform-flow-strip-types "^6.22.0" - -babel-preset-react@^6.16.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" - dependencies: - babel-plugin-syntax-jsx "^6.3.13" - babel-plugin-transform-react-display-name "^6.23.0" - babel-plugin-transform-react-jsx "^6.24.1" - babel-plugin-transform-react-jsx-self "^6.22.0" - babel-plugin-transform-react-jsx-source "^6.22.0" - babel-preset-flow "^6.23.0" - -babel-preset-stage-2@^6.17.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" - dependencies: - babel-plugin-syntax-dynamic-import "^6.18.0" - babel-plugin-transform-class-properties "^6.24.1" - babel-plugin-transform-decorators "^6.24.1" - babel-preset-stage-3 "^6.24.1" - -babel-preset-stage-3@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" - dependencies: - babel-plugin-syntax-trailing-function-commas "^6.22.0" - babel-plugin-transform-async-generator-functions "^6.24.1" - babel-plugin-transform-async-to-generator "^6.24.1" - babel-plugin-transform-exponentiation-operator "^6.24.1" - babel-plugin-transform-object-rest-spread "^6.22.0" - -babel-register@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" - dependencies: - babel-core "^6.24.1" - babel-runtime "^6.22.0" - core-js "^2.4.0" - home-or-tmp "^2.0.0" - lodash "^4.2.0" - mkdirp "^0.5.1" - source-map-support "^0.4.2" - -babel-runtime@^6.11.6, babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.9.2: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.10.0" - -babel-template@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" - dependencies: - babel-runtime "^6.22.0" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - babylon "^6.11.0" - lodash "^4.2.0" - -babel-traverse@^6.0.20, babel-traverse@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" - dependencies: - babel-code-frame "^6.22.0" - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - babylon "^6.15.0" - debug "^2.2.0" - globals "^9.0.0" - invariant "^2.2.0" - lodash "^4.2.0" - -babel-types@^6.0.19, babel-types@^6.19.0, babel-types@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" - dependencies: - babel-runtime "^6.22.0" - esutils "^2.0.2" - lodash "^4.2.0" - to-fast-properties "^1.0.1" - -babylon@^6.0.18, babylon@^6.11.0, babylon@^6.15.0: - version "6.17.1" - resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" - -backo2@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" - -balanced-match@^0.4.1: - version "0.4.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" - -base64-arraybuffer@0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" - -base64-js@1.2.0, base64-js@^1.0.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" - -base64id@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" - -batch@0.5.3, batch@^0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" - -bcrypt-pbkdf@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" - dependencies: - tweetnacl "^0.14.3" - -better-assert@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" - dependencies: - callsite "1.0.0" - -big.js@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" - -binary-extensions@^1.0.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" - -bl@^1.0.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.1.tgz#cac328f7bee45730d404b692203fcb590e172d5e" - dependencies: - readable-stream "^2.0.5" - -blob@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" - -block-stream@*: - version "0.0.9" - resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" - dependencies: - inherits "~2.0.0" - -bluebird-lst-c@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/bluebird-lst-c/-/bluebird-lst-c-1.0.6.tgz#81f881d13f9df700f67d577f13480bc32d84bba9" - dependencies: - bluebird "^3.4.7" - -bluebird@^2.9.27: - version "2.11.0" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" - -bluebird@^3.4.7: - version "3.5.0" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" - -blueimp-canvas-to-blob@^3.5.0: - version "3.7.0" - resolved "https://registry.yarnpkg.com/blueimp-canvas-to-blob/-/blueimp-canvas-to-blob-3.7.0.tgz#6e985b935c0223410c3a2ad96c0ba3ea214c2b13" - -body-parser@^1.12.4: - version "1.17.1" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.17.1.tgz#75b3bc98ddd6e7e0d8ffe750dfaca5c66993fa47" - dependencies: - bytes "2.4.0" - content-type "~1.0.2" - debug "2.6.1" - depd "~1.1.0" - http-errors "~1.6.1" - iconv-lite "0.4.15" - on-finished "~2.3.0" - qs "6.4.0" - raw-body "~2.2.0" - type-is "~1.6.14" - -boolbase@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - -boom@2.x.x: - version "2.10.1" - resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" - dependencies: - hoek "2.x.x" - -boxen@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" - dependencies: - ansi-align "^1.1.0" - camelcase "^2.1.0" - chalk "^1.1.1" - cli-boxes "^1.0.0" - filled-array "^1.0.0" - object-assign "^4.0.1" - repeating "^2.0.0" - string-width "^1.0.1" - widest-line "^1.0.0" - -brace-expansion@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" - dependencies: - balanced-match "^0.4.1" - concat-map "0.0.1" - -braces@^0.1.2: - version "0.1.5" - resolved "https://registry.yarnpkg.com/braces/-/braces-0.1.5.tgz#c085711085291d8b75fdd74eab0f8597280711e6" - dependencies: - expand-range "^0.1.0" - -braces@^1.8.2: - version "1.8.5" - resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" - dependencies: - expand-range "^1.8.1" - preserve "^0.2.0" - repeat-element "^1.1.2" - -browser-encrypt-attachment@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/browser-encrypt-attachment/-/browser-encrypt-attachment-0.3.0.tgz#205a94caadf0dc7e81413941812f655bd190ff1c" - -browser-request@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/browser-request/-/browser-request-0.3.3.tgz#9ece5b5aca89a29932242e18bf933def9876cc17" - -browserify-aes@0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-0.4.0.tgz#067149b668df31c4b58533e02d01e806d8608e2c" - dependencies: - inherits "^2.0.1" - -browserify-zlib@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" - dependencies: - pako "~0.2.0" - -browserslist@^1.7.6: - version "1.7.7" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" - dependencies: - caniuse-db "^1.0.30000639" - electron-to-chromium "^1.2.7" - -buffer-crc32@^0.2.1: - version "0.2.13" - resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" - -buffer-shims@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" - -buffer@^4.9.0: - version "4.9.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - isarray "^1.0.0" - -builtin-modules@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" - -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - -bytes@2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.3.0.tgz#d5b680a165b6201739acb611542aabc2d8ceb070" - -bytes@2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" - -caller-path@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" - dependencies: - callsites "^0.2.0" - -callsite@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" - -callsites@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" - -camel-case@3.0.x: - version "3.0.0" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" - dependencies: - no-case "^2.2.0" - upper-case "^1.1.1" - -camelcase-css@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-1.0.1.tgz#157c4238265f5cf94a1dffde86446552cbf3f705" - -camelcase-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" - dependencies: - camelcase "^2.0.0" - map-obj "^1.0.0" - -camelcase@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" - -camelcase@^2.0.0, camelcase@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" - -camelcase@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" - -caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: - version "1.0.30000666" - resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000666.tgz#951ed9f3d3bfaa08a06dafbb5089ab07cce6ab90" - -capture-stack-trace@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" - -caseless@~0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - -center-align@^0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" - dependencies: - align-text "^0.1.3" - lazy-cache "^1.0.3" - -chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -chokidar@^1.0.0, chokidar@^1.4.1, chokidar@^1.6.0, chokidar@^1.6.1: - version "1.7.0" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" - dependencies: - anymatch "^1.3.0" - async-each "^1.0.0" - glob-parent "^2.0.0" - inherits "^2.0.1" - is-binary-path "^1.0.0" - is-glob "^2.0.0" - path-is-absolute "^1.0.0" - readdirp "^2.0.0" - optionalDependencies: - fsevents "^1.0.0" - -chromium-pickle-js@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" - -ci-info@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" - -circular-json@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" - -classnames@^2.1.2: - version "2.2.5" - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.5.tgz#fb3801d453467649ef3603c7d61a02bd129bde6d" - -clean-css@4.0.x: - version "4.0.13" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.0.13.tgz#feb2a176062d72a6c3e624d9213cac6a0c485e80" - dependencies: - source-map "0.5.x" - -clean-css@^3.2.10: - version "3.4.26" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.26.tgz#55323b344ff3bcee684a2eac81c93df8fa73deeb" - dependencies: - commander "2.8.x" - source-map "0.4.x" - -cli-boxes@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" - -cli-cursor@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" - dependencies: - restore-cursor "^1.0.1" - -cli-width@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" - -cliui@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" - dependencies: - center-align "^0.1.1" - right-align "^0.1.1" - wordwrap "0.0.2" - -cliui@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - wrap-ansi "^2.0.0" - -clone@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - -color-convert@~0.5.0: - version "0.5.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-0.5.3.tgz#bdb6c69ce660fadffe0b0007cc447e1b9f7282bd" - -colors@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" - -combined-stream@^1.0.5, combined-stream@~1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" - dependencies: - delayed-stream "~1.0.0" - -commander@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" - -commander@2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" - -commander@2.8.x: - version "2.8.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" - dependencies: - graceful-readlink ">= 1.0.0" - -commander@2.9.x, commander@^2.8.1, commander@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" - dependencies: - graceful-readlink ">= 1.0.0" - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - -commonmark@^0.27.0: - version "0.27.0" - resolved "https://registry.yarnpkg.com/commonmark/-/commonmark-0.27.0.tgz#d86c262b962821e9483c69c547bc58840c047b34" - dependencies: - entities "~ 1.1.1" - mdurl "~ 1.0.1" - minimist "~ 1.2.0" - string.prototype.repeat "^0.2.0" - -compare-version@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz#0162ec2d9351f5ddd59a9202cba935366a725080" - -component-bind@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" - -component-emitter@1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3" - -component-emitter@1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" - -component-inherit@0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" - -compress-commons@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-1.2.0.tgz#58587092ef20d37cb58baf000112c9278ff73b9f" - dependencies: - buffer-crc32 "^0.2.1" - crc32-stream "^2.0.0" - normalize-path "^2.0.0" - readable-stream "^2.0.0" - -compressible@~2.0.8: - version "2.0.10" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.10.tgz#feda1c7f7617912732b29bf8cf26252a20b9eecd" - dependencies: - mime-db ">= 1.27.0 < 2" - -compression@^1.5.2: - version "1.6.2" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.6.2.tgz#cceb121ecc9d09c52d7ad0c3350ea93ddd402bc3" - dependencies: - accepts "~1.3.3" - bytes "2.3.0" - compressible "~2.0.8" - debug "~2.2.0" - on-headers "~1.0.1" - vary "~1.1.0" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - -concat-stream@1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.0.tgz#53f7d43c51c5e43f81c8fdd03321c631be68d611" - dependencies: - inherits "~2.0.1" - readable-stream "~2.0.0" - typedarray "~0.0.5" - -concat-stream@^1.5.2: - version "1.6.0" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" - dependencies: - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - -configstore@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" - dependencies: - dot-prop "^3.0.0" - graceful-fs "^4.1.2" - mkdirp "^0.5.0" - object-assign "^4.0.1" - os-tmpdir "^1.0.0" - osenv "^0.1.0" - uuid "^2.0.1" - write-file-atomic "^1.1.2" - xdg-basedir "^2.0.0" - -connect-history-api-fallback@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" - -connect@^3.3.5: - version "3.6.1" - resolved "https://registry.yarnpkg.com/connect/-/connect-3.6.1.tgz#b7760693a74f0454face1d9378edb3f885b43227" - dependencies: - debug "2.6.3" - finalhandler "1.0.1" - parseurl "~1.3.1" - utils-merge "1.0.0" - -console-browserify@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" - dependencies: - date-now "^0.1.4" - -console-control-strings@^1.0.0, console-control-strings@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - -constants-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" - -content-disposition@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" - -content-type@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" - -convert-source-map@^1.1.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" - -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - -cookie@0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" - -core-js@^1.0.0: - version "1.2.7" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" - -core-js@^2.1.0, core-js@^2.4.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" - -core-util-is@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - -cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.1.3.tgz#952771eb0dddc1cb3fa2f6fbe51a522e93b3ee0a" - dependencies: - is-directory "^0.3.1" - js-yaml "^3.4.3" - minimist "^1.2.0" - object-assign "^4.1.0" - os-homedir "^1.0.1" - parse-json "^2.2.0" - require-from-string "^1.1.0" - -counterpart@Nordgedanken/counterpart#develop: - version "0.17.8" - resolved "https://codeload.github.com/Nordgedanken/counterpart/tar.gz/63dadf4d3d809b41f2a62e407462c5fbbc62cece" - dependencies: - date-names "^0.1.8" - except "^0.1.3" - extend "^3.0.1" - pluralizers "^0.1.5" - sprintf-js "^1.1.0" - -cpx@^1.3.2: - version "1.5.0" - resolved "https://registry.yarnpkg.com/cpx/-/cpx-1.5.0.tgz#185be018511d87270dedccc293171e37655ab88f" - dependencies: - babel-runtime "^6.9.2" - chokidar "^1.6.0" - duplexer "^0.1.1" - glob "^7.0.5" - glob2base "^0.0.12" - minimatch "^3.0.2" - mkdirp "^0.5.1" - resolve "^1.1.7" - safe-buffer "^5.0.1" - shell-quote "^1.6.1" - subarg "^1.0.0" - -crc32-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-2.0.0.tgz#e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4" - dependencies: - crc "^3.4.4" - readable-stream "^2.0.0" - -crc@^3.4.4: - version "3.4.4" - resolved "https://registry.yarnpkg.com/crc/-/crc-3.4.4.tgz#9da1e980e3bd44fc5c93bf5ab3da3378d85e466b" - -create-error-class@^3.0.1: - version "3.0.2" - resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" - dependencies: - capture-stack-trace "^1.0.0" - -cross-env@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-4.0.0.tgz#16083862d08275a4628b0b243b121bedaa55dd80" - dependencies: - cross-spawn "^5.1.0" - is-windows "^1.0.0" - -cross-spawn@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" - dependencies: - lru-cache "^4.0.1" - shebang-command "^1.2.0" - which "^1.2.9" - -cryptiles@2.x.x: - version "2.0.5" - resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" - dependencies: - boom "2.x.x" - -crypto-browserify@3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.3.0.tgz#b9fc75bb4a0ed61dcf1cd5dae96eb30c9c3e506c" - dependencies: - browserify-aes "0.4.0" - pbkdf2-compat "2.0.1" - ripemd160 "0.2.0" - sha.js "2.2.6" - -css-raw-loader@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/css-raw-loader/-/css-raw-loader-0.1.1.tgz#40391ffd18bdb5cc01036e88fdf97de40982708d" - dependencies: - clean-css "^3.2.10" - loader-utils "~0.2.7" - source-list-map "~0.1.5" - -css-select@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" - dependencies: - boolbase "~1.0.0" - css-what "2.1" - domutils "1.5.1" - nth-check "~1.0.1" - -css-what@2.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" - -cuint@^0.2.1, cuint@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/cuint/-/cuint-0.2.2.tgz#408086d409550c2631155619e9fa7bcadc3b991b" - -currently-unhandled@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" - dependencies: - array-find-index "^1.0.1" - -custom-event@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/custom-event/-/custom-event-1.0.1.tgz#5d02a46850adf1b4a317946a3928fccb5bfd0425" - -d@1: - version "1.0.0" - resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" - dependencies: - es5-ext "^0.10.9" - -dashdash@^1.12.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - dependencies: - assert-plus "^1.0.0" - -date-names@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/date-names/-/date-names-0.1.8.tgz#56c916622b658f60185c998719419084c0b0db4b" - -date-now@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" - -debug@0.7.4: - version "0.7.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-0.7.4.tgz#06e1ea8082c2cb14e39806e22e2f6f757f92af39" - -debug@2.2.0, debug@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" - dependencies: - ms "0.7.1" - -debug@2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c" - dependencies: - ms "0.7.2" - -debug@2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" - dependencies: - ms "0.7.2" - -debug@2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" - dependencies: - ms "0.7.2" - -debug@2.6.3: - version "2.6.3" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" - dependencies: - ms "0.7.2" - -debug@2.6.4: - version "2.6.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.4.tgz#7586a9b3c39741c0282ae33445c4e8ac74734fe0" - dependencies: - ms "0.7.3" - -debug@^2.1.1, debug@^2.1.3, debug@^2.2.0, debug@^2.3.2, debug@^2.6.0, debug@^2.6.6: - version "2.6.6" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.6.tgz#a9fa6fbe9ca43cf1e79f73b75c0189cbb7d6db5a" - dependencies: - ms "0.7.3" - -decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - -deep-extend@~0.4.0: - version "0.4.1" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" - -deep-is@~0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - -define-properties@^1.1.2, define-properties@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" - dependencies: - foreach "^2.0.5" - object-keys "^1.0.8" - -del@^2.0.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" - dependencies: - globby "^5.0.0" - is-path-cwd "^1.0.0" - is-path-in-cwd "^1.0.0" - object-assign "^4.0.1" - pify "^2.0.0" - pinkie-promise "^2.0.0" - rimraf "^2.2.8" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - -depd@1.1.0, depd@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" - -destroy@~1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" - -detect-indent@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" - dependencies: - repeating "^2.0.0" - -di@^0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c" - -diff@1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" - -disposables@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/disposables/-/disposables-1.0.1.tgz#064727a25b54f502bd82b89aa2dfb8df9f1b39e3" - -dnd-core@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/dnd-core/-/dnd-core-2.4.0.tgz#c4a5bc2aea75164f8a295d769d5f551810e7d411" - dependencies: - asap "^2.0.3" - invariant "^2.0.0" - lodash "^4.2.0" - redux "^3.2.0" - -doctrine@1.2.3, doctrine@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.2.3.tgz#6aec6bbd62cf89dd498cae70c0ed9f49da873a6a" - dependencies: - esutils "^2.0.2" - isarray "^1.0.0" - -doctrine@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" - dependencies: - esutils "^2.0.2" - isarray "^1.0.0" - -dom-converter@~0.1: - version "0.1.4" - resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b" - dependencies: - utila "~0.3" - -dom-serialize@^2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/dom-serialize/-/dom-serialize-2.2.1.tgz#562ae8999f44be5ea3076f5419dcd59eb43ac95b" - dependencies: - custom-event "~1.0.0" - ent "~2.2.0" - extend "^3.0.0" - void-elements "^2.0.0" - -dom-serializer@0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" - dependencies: - domelementtype "~1.1.1" - entities "~1.1.1" - -domain-browser@^1.1.1: - version "1.1.7" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" - -domelementtype@1, domelementtype@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" - -domelementtype@~1.1.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" - -domhandler@2.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594" - dependencies: - domelementtype "1" - -domhandler@^2.3.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" - dependencies: - domelementtype "1" - -domutils@1.1: - version "1.1.6" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485" - dependencies: - domelementtype "1" - -domutils@1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" - dependencies: - dom-serializer "0" - domelementtype "1" - -domutils@^1.5.1: - version "1.6.2" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.6.2.tgz#1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff" - dependencies: - dom-serializer "0" - domelementtype "1" - -dot-prop@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" - dependencies: - is-obj "^1.0.0" - -draft-js-export-html@^0.5.0: - version "0.5.4" - resolved "https://registry.yarnpkg.com/draft-js-export-html/-/draft-js-export-html-0.5.4.tgz#e24927da3efe6f3df17f1d7606a9dc6141dbf72d" - dependencies: - draft-js-utils "^0.1.5" - -draft-js-export-markdown@^0.2.0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/draft-js-export-markdown/-/draft-js-export-markdown-0.2.2.tgz#5b0a1a10591d8b96199dcb70b04b1ab7deb72a33" - dependencies: - draft-js-utils "^0.1.5" - -draft-js-utils@^0.1.5: - version "0.1.7" - resolved "https://registry.yarnpkg.com/draft-js-utils/-/draft-js-utils-0.1.7.tgz#e2b6927ca620edf1855a4bfc1cf1d21080a70f16" - -draft-js@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/draft-js/-/draft-js-0.8.1.tgz#484256414c963dd1f5309700ddada10f2aa1f6ff" - dependencies: - fbjs "^0.8.3" - immutable "~3.7.4" - object-assign "^4.1.0" - -duplexer2@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" - dependencies: - readable-stream "^2.0.2" - -duplexer@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" - -ecc-jsbn@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" - dependencies: - jsbn "~0.1.0" - -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - -electron-builder-core@11.2.1, electron-builder-core@~11.2.1: - version "11.2.1" - resolved "https://registry.yarnpkg.com/electron-builder-core/-/electron-builder-core-11.2.1.tgz#1dca8c1a1cee8b51750b7708a04913aeffacf8a8" - -electron-builder-http@11.5.0, electron-builder-http@~11.5.0: - version "11.5.0" - resolved "https://registry.yarnpkg.com/electron-builder-http/-/electron-builder-http-11.5.0.tgz#b77396634903444329eda3bbcd02321440e06038" - dependencies: - debug "2.6.0" - fs-extra-p "^3.1.0" - -electron-builder-squirrel-windows@^11.2.1: - version "11.6.1" - resolved "https://registry.yarnpkg.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-11.6.1.tgz#a51612d28883b9eb0af0842e3eb26844cf5a6a52" - dependencies: - archiver "^1.3.0" - bluebird-lst-c "^1.0.6" - electron-builder-core "~11.2.1" - electron-builder-util "~11.6.1" - fs-extra-p "^3.1.0" - -electron-builder-util@11.6.1, electron-builder-util@~11.6.1: - version "11.6.1" - resolved "https://registry.yarnpkg.com/electron-builder-util/-/electron-builder-util-11.6.1.tgz#0f556f67a70e4c8d75185569ef2a7566db015ecc" - dependencies: - "7zip-bin" "^2.0.4" - bluebird-lst-c "^1.0.6" - chalk "^1.1.3" - debug "2.6.0" - electron-builder-http "~11.5.0" - fs-extra-p "^3.1.0" - is-ci "^1.0.10" - node-emoji "^1.5.1" - source-map-support "^0.4.10" - stat-mode "^0.2.2" - -electron-builder@^11.2.4: - version "11.7.0" - resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-11.7.0.tgz#d52912f6e84ac52a065de197a92def931bd9dc25" - dependencies: - "7zip-bin" "^2.0.4" - asar-electron-builder "^0.13.5" - bluebird-lst-c "^1.0.6" - chalk "^1.1.3" - chromium-pickle-js "^0.2.0" - cuint "^0.2.2" - electron-builder-core "11.2.1" - electron-builder-http "11.5.0" - electron-builder-util "11.6.1" - electron-download-tf "3.1.0" - electron-macos-sign "~1.5.0" - fs-extra-p "^3.1.0" - hosted-git-info "^2.1.5" - ini "^1.3.4" - is-ci "^1.0.10" - isbinaryfile "^3.0.2" - js-yaml "^3.7.0" - mime "^1.3.4" - minimatch "^3.0.3" - normalize-package-data "^2.3.5" - parse-color "^1.0.0" - plist "^2.0.1" - progress "^1.1.8" - sanitize-filename "^1.6.1" - semver "^5.3.0" - tunnel-agent "^0.4.3" - update-notifier "^1.0.3" - uuid-1345 "^0.99.6" - yargs "^6.6.0" - -electron-download-tf@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/electron-download-tf/-/electron-download-tf-3.1.0.tgz#c6d62c0e0a4c63b67295f57b6b66514c13b8ed8d" - dependencies: - debug "^2.3.2" - fs-extra "^1.0.0" - minimist "^1.2.0" - nugget "^2.0.1" - path-exists "^3.0.0" - rc "^1.1.6" - semver "^5.3.0" - sumchecker "^1.2.0" - -electron-macos-sign@~1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/electron-macos-sign/-/electron-macos-sign-1.5.0.tgz#fe3a8acb755b5f568f1fe144e9e66cee44019448" - dependencies: - bluebird "^3.4.7" - compare-version "^0.1.2" - debug "^2.6.0" - isbinaryfile "^3.0.2" - plist "^2.0.1" - -electron-to-chromium@^1.2.7: - version "1.3.9" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.9.tgz#db1cba2a26aebcca2f7f5b8b034554468609157d" - -emojione@2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/emojione/-/emojione-2.2.3.tgz#04383203bf51e6a6c00f1fbddc3309e9543ce78f" - -emojione@^2.2.7: - version "2.2.7" - resolved "https://registry.yarnpkg.com/emojione/-/emojione-2.2.7.tgz#46457cf6b9b2f8da13ae8a2e4e547de06ee15e96" - -emojis-list@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" - -encodeurl@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" - -encoding@^0.1.11: - version "0.1.12" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" - dependencies: - iconv-lite "~0.4.13" - -end-of-stream@^1.0.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.0.tgz#7a90d833efda6cfa6eac0f4949dbb0fad3a63206" - dependencies: - once "^1.4.0" - -engine.io-client@~1.8.4: - version "1.8.4" - resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-1.8.4.tgz#9fe85dee25853ca6babe25bd2ad68710863e91c2" - dependencies: - component-emitter "1.2.1" - component-inherit "0.0.3" - debug "2.3.3" - engine.io-parser "1.3.2" - has-cors "1.1.0" - indexof "0.0.1" - parsejson "0.0.3" - parseqs "0.0.5" - parseuri "0.0.5" - ws "1.1.2" - xmlhttprequest-ssl "1.5.3" - yeast "0.1.2" - -engine.io-parser@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-1.3.2.tgz#937b079f0007d0893ec56d46cb220b8cb435220a" - dependencies: - after "0.8.2" - arraybuffer.slice "0.0.6" - base64-arraybuffer "0.1.5" - blob "0.0.4" - has-binary "0.1.7" - wtf-8 "1.0.0" - -engine.io@~1.8.4: - version "1.8.4" - resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-1.8.4.tgz#77bce12b80e5d60429337fec3b0daf691ebc9003" - dependencies: - accepts "1.3.3" - base64id "1.0.0" - cookie "0.3.1" - debug "2.3.3" - engine.io-parser "1.3.2" - ws "1.1.4" - -enhanced-resolve@~0.9.0: - version "0.9.1" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e" - dependencies: - graceful-fs "^4.1.2" - memory-fs "^0.2.0" - tapable "^0.1.8" - -ent@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" - -entities@^1.1.1, "entities@~ 1.1.1", entities@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" - -errno@^0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" - dependencies: - prr "~0.0.0" - -error-ex@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" - dependencies: - is-arrayish "^0.2.1" - -es-abstract@^1.6.1, es-abstract@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" - dependencies: - es-to-primitive "^1.1.1" - function-bind "^1.1.0" - is-callable "^1.1.3" - is-regex "^1.0.3" - -es-to-primitive@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" - dependencies: - is-callable "^1.1.1" - is-date-object "^1.0.1" - is-symbol "^1.0.1" - -es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: - version "0.10.16" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.16.tgz#1ef1b04f3d09db6a5d630226d62202f2e425e45a" - dependencies: - es6-iterator "2" - es6-symbol "~3.1" - -es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" - dependencies: - d "1" - es5-ext "^0.10.14" - es6-symbol "^3.1" - -es6-map@^0.1.3: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-set "~0.1.5" - es6-symbol "~3.1.1" - event-emitter "~0.3.5" - -es6-promise@^4.0.5, es6-promise@~4.0.3: - version "4.0.5" - resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.0.5.tgz#7882f30adde5b240ccfa7f7d78c548330951ae42" - -es6-set@~0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" - dependencies: - d "1" - es5-ext "~0.10.14" - es6-iterator "~2.0.1" - es6-symbol "3.1.1" - event-emitter "~0.3.5" - -es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" - dependencies: - d "1" - es5-ext "~0.10.14" - -es6-weak-map@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" - dependencies: - d "1" - es5-ext "^0.10.14" - es6-iterator "^2.0.1" - es6-symbol "^3.1.1" - -escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - -escape-string-regexp@1.0.2, escape-string-regexp@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - -escope@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" - dependencies: - es6-map "^0.1.3" - es6-weak-map "^2.0.1" - esrecurse "^4.1.0" - estraverse "^4.1.1" - -eslint-config-google@^0.7.1: - version "0.7.1" - resolved "https://registry.yarnpkg.com/eslint-config-google/-/eslint-config-google-0.7.1.tgz#5598f8498e9e078420f34b80495b8d959f651fb2" - -eslint-plugin-flowtype@^2.30.0: - version "2.32.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.32.1.tgz#bbee185dedf97e5f63ec975cdcddd199bd2a2501" - dependencies: - lodash "^4.15.0" - -eslint-plugin-react@^6.9.0: - version "6.10.3" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.3.tgz#c5435beb06774e12c7db2f6abaddcbf900cd3f78" - dependencies: - array.prototype.find "^2.0.1" - doctrine "^1.2.2" - has "^1.0.1" - jsx-ast-utils "^1.3.4" - object.assign "^4.0.4" - -eslint@^3.14.0: - version "3.19.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" - dependencies: - babel-code-frame "^6.16.0" - chalk "^1.1.3" - concat-stream "^1.5.2" - debug "^2.1.1" - doctrine "^2.0.0" - escope "^3.6.0" - espree "^3.4.0" - esquery "^1.0.0" - estraverse "^4.2.0" - esutils "^2.0.2" - file-entry-cache "^2.0.0" - glob "^7.0.3" - globals "^9.14.0" - ignore "^3.2.0" - imurmurhash "^0.1.4" - inquirer "^0.12.0" - is-my-json-valid "^2.10.0" - is-resolvable "^1.0.0" - js-yaml "^3.5.1" - json-stable-stringify "^1.0.0" - levn "^0.3.0" - lodash "^4.0.0" - mkdirp "^0.5.0" - natural-compare "^1.4.0" - optionator "^0.8.2" - path-is-inside "^1.0.1" - pluralize "^1.2.1" - progress "^1.1.8" - require-uncached "^1.0.2" - shelljs "^0.7.5" - strip-bom "^3.0.0" - strip-json-comments "~2.0.1" - table "^3.7.8" - text-table "~0.2.0" - user-home "^2.0.0" - -espree@^3.4.0: - version "3.4.3" - resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" - dependencies: - acorn "^5.0.1" - acorn-jsx "^3.0.0" - -esprima@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" - -esquery@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" - dependencies: - estraverse "^4.0.0" - -esrecurse@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" - dependencies: - estraverse "~4.1.0" - object-assign "^4.0.1" - -estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" - -estraverse@~4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" - -esutils@^2.0.0, esutils@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" - -etag@~1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" - -event-emitter@~0.3.5: - version "0.3.5" - resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" - dependencies: - d "1" - es5-ext "~0.10.14" - -eventemitter3@1.x.x: - version "1.2.0" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" - -events@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" - -eventsource@0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" - dependencies: - original ">=0.0.5" - -except@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/except/-/except-0.1.3.tgz#98261c91958551536b44482238e9783fb73d292a" - dependencies: - indexof "0.0.1" - -exit-hook@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" - -expand-braces@^0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/expand-braces/-/expand-braces-0.1.2.tgz#488b1d1d2451cb3d3a6b192cfc030f44c5855fea" - dependencies: - array-slice "^0.2.3" - array-unique "^0.2.1" - braces "^0.1.2" - -expand-brackets@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" - dependencies: - is-posix-bracket "^0.1.0" - -expand-range@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-0.1.1.tgz#4cb8eda0993ca56fa4f41fc42f3cbb4ccadff044" - dependencies: - is-number "^0.1.1" - repeat-string "^0.2.2" - -expand-range@^1.8.1: - version "1.8.2" - resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" - dependencies: - fill-range "^2.1.0" - -expect@^1.16.0: - version "1.20.2" - resolved "https://registry.yarnpkg.com/expect/-/expect-1.20.2.tgz#d458fe4c56004036bae3232416a3f6361f04f965" - dependencies: - define-properties "~1.1.2" - has "^1.0.1" - is-equal "^1.5.1" - is-regex "^1.0.3" - object-inspect "^1.1.0" - object-keys "^1.0.9" - tmatch "^2.0.1" - -express@^4.13.3: - version "4.15.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.15.2.tgz#af107fc148504457f2dca9a6f2571d7129b97b35" - dependencies: - accepts "~1.3.3" - array-flatten "1.1.1" - content-disposition "0.5.2" - content-type "~1.0.2" - cookie "0.3.1" - cookie-signature "1.0.6" - debug "2.6.1" - depd "~1.1.0" - encodeurl "~1.0.1" - escape-html "~1.0.3" - etag "~1.8.0" - finalhandler "~1.0.0" - fresh "0.5.0" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "~2.3.0" - parseurl "~1.3.1" - path-to-regexp "0.1.7" - proxy-addr "~1.1.3" - qs "6.4.0" - range-parser "~1.2.0" - send "0.15.1" - serve-static "1.12.1" - setprototypeof "1.0.3" - statuses "~1.3.1" - type-is "~1.6.14" - utils-merge "1.0.0" - vary "~1.1.0" - -extend@^3.0.0, extend@^3.0.1, extend@~3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" - -extglob@^0.3.1: - version "0.3.2" - resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" - dependencies: - is-extglob "^1.0.0" - -extract-text-webpack-plugin@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-0.9.1.tgz#ef6dc508cb35ed0dcf8a4009abbe853f7a7622b5" - dependencies: - async "^1.5.0" - loader-utils "^0.2.3" - -extract-zip@~1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.5.0.tgz#92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4" - dependencies: - concat-stream "1.5.0" - debug "0.7.4" - mkdirp "0.5.0" - yauzl "2.4.1" - -extsprintf@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" - -fast-levenshtein@~2.0.4: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - -favico.js@^0.3.10: - version "0.3.10" - resolved "https://registry.yarnpkg.com/favico.js/-/favico.js-0.3.10.tgz#80586e27a117f24a8d51c18a99bdc714d4339301" - -faye-websocket@^0.10.0: - version "0.10.0" - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" - dependencies: - websocket-driver ">=0.5.1" - -faye-websocket@~0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" - dependencies: - websocket-driver ">=0.5.1" - -fbjs@^0.8.3, fbjs@^0.8.4, fbjs@^0.8.9: - version "0.8.12" - resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" - dependencies: - core-js "^1.0.0" - isomorphic-fetch "^2.1.1" - loose-envify "^1.0.0" - object-assign "^4.1.0" - promise "^7.1.1" - setimmediate "^1.0.5" - ua-parser-js "^0.7.9" - -fd-slicer@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" - dependencies: - pend "~1.2.0" - -figures@^1.3.5: - version "1.7.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" - dependencies: - escape-string-regexp "^1.0.5" - object-assign "^4.1.0" - -file-entry-cache@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" - dependencies: - flat-cache "^1.2.1" - object-assign "^4.0.1" - -file-saver@^1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-1.3.3.tgz#cdd4c44d3aa264eac2f68ec165bc791c34af1232" - -file@0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/file/-/file-0.2.2.tgz#c3dfd8f8cf3535ae455c2b423c2e52635d76b4d3" - -filename-regex@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" - -filesize@3.5.6: - version "3.5.6" - resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.5.6.tgz#5fd98f3eac94ec9516ef8ed5782fad84a01a0a1a" - -fill-range@^2.1.0: - version "2.2.3" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" - dependencies: - is-number "^2.1.0" - isobject "^2.0.0" - randomatic "^1.1.3" - repeat-element "^1.1.2" - repeat-string "^1.5.2" - -filled-array@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" - -finalhandler@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.1.tgz#bcd15d1689c0e5ed729b6f7f541a6df984117db8" - dependencies: - debug "2.6.3" - encodeurl "~1.0.1" - escape-html "~1.0.3" - on-finished "~2.3.0" - parseurl "~1.3.1" - statuses "~1.3.1" - unpipe "~1.0.0" - -finalhandler@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.2.tgz#d0e36f9dbc557f2de14423df6261889e9d60c93a" - dependencies: - debug "2.6.4" - encodeurl "~1.0.1" - escape-html "~1.0.3" - on-finished "~2.3.0" - parseurl "~1.3.1" - statuses "~1.3.1" - unpipe "~1.0.0" - -find-cache-dir@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" - dependencies: - commondir "^1.0.1" - mkdirp "^0.5.1" - pkg-dir "^1.0.0" - -find-index@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" - -find-parent-dir@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" - -find-up@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" - dependencies: - path-exists "^2.0.0" - pinkie-promise "^2.0.0" - -flat-cache@^1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" - dependencies: - circular-json "^0.3.1" - del "^2.0.2" - graceful-fs "^4.1.2" - write "^0.2.1" - -flux@^2.0.3, flux@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/flux/-/flux-2.0.3.tgz#787e1aedffb34a322a60b49c57a2d23856a6de27" - -for-in@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - -for-own@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" - dependencies: - for-in "^1.0.1" - -foreach@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" - -forever-agent@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - -form-data@~2.1.1: - version "2.1.4" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.5" - mime-types "^2.1.12" - -forwarded@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" - -fresh@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" - -fs-access@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" - dependencies: - null-check "^1.0.0" - -fs-extra-p@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/fs-extra-p/-/fs-extra-p-3.1.0.tgz#eddf7bb8d9385d79014decb21f45b1d0c57900d3" - dependencies: - bluebird-lst-c "^1.0.6" - fs-extra "^2.0.0" - -fs-extra@^0.30.0: - version "0.30.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" - dependencies: - graceful-fs "^4.1.2" - jsonfile "^2.1.0" - klaw "^1.0.0" - path-is-absolute "^1.0.0" - rimraf "^2.2.8" - -fs-extra@^1.0.0, fs-extra@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" - dependencies: - graceful-fs "^4.1.2" - jsonfile "^2.1.0" - klaw "^1.0.0" - -fs-extra@^2.0.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35" - dependencies: - graceful-fs "^4.1.2" - jsonfile "^2.1.0" - -fs-readdir-recursive@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - -fsevents@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" - dependencies: - nan "^2.3.0" - node-pre-gyp "^0.6.29" - -fstream-ignore@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" - dependencies: - fstream "^1.0.0" - inherits "2" - minimatch "^3.0.0" - -fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: - version "1.0.11" - resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" - dependencies: - graceful-fs "^4.1.2" - inherits "~2.0.0" - mkdirp ">=0.5 0" - rimraf "2" - -function-bind@^1.0.2, function-bind@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" - -fuse.js@^2.2.0: - version "2.7.4" - resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-2.7.4.tgz#96e420fde7ef011ac49c258a621314fe576536f9" - -gauge@~2.7.3: - version "2.7.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" - dependencies: - aproba "^1.0.3" - console-control-strings "^1.0.0" - has-unicode "^2.0.0" - object-assign "^4.1.0" - signal-exit "^3.0.0" - string-width "^1.0.1" - strip-ansi "^3.0.1" - wide-align "^1.1.0" - -gemini-scrollbar@matrix-org/gemini-scrollbar#91e1e566: - version "1.4.3" - resolved "https://codeload.github.com/matrix-org/gemini-scrollbar/tar.gz/91e1e566" - -generate-function@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" - -generate-object-property@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" - dependencies: - is-property "^1.0.0" - -get-caller-file@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" - -get-stdin@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" - -getpass@^0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - dependencies: - assert-plus "^1.0.0" - -gfm.css@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/gfm.css/-/gfm.css-1.1.1.tgz#16b0ef08637f2495b66c84c5024593d71ebeac46" - -glob-base@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" - dependencies: - glob-parent "^2.0.0" - is-glob "^2.0.0" - -glob-parent@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" - dependencies: - is-glob "^2.0.0" - -glob2base@^0.0.12: - version "0.0.12" - resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" - dependencies: - find-index "^0.1.1" - -glob@3.2.11: - version "3.2.11" - resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d" - dependencies: - inherits "2" - minimatch "0.3" - -glob@^5.0.14: - version "5.0.15" - resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" - dependencies: - inflight "^1.0.4" - inherits "2" - minimatch "2 || 3" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: - version "7.1.1" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.2" - once "^1.3.0" - path-is-absolute "^1.0.0" - -globals@^9.0.0, globals@^9.14.0: - version "9.17.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" - -globby@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" - dependencies: - array-union "^1.0.1" - arrify "^1.0.0" - glob "^7.0.3" - object-assign "^4.0.1" - pify "^2.0.0" - pinkie-promise "^2.0.0" - -globby@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" - dependencies: - array-union "^1.0.1" - glob "^7.0.3" - object-assign "^4.0.1" - pify "^2.0.0" - pinkie-promise "^2.0.0" - -got@^5.0.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" - dependencies: - create-error-class "^3.0.1" - duplexer2 "^0.1.4" - is-redirect "^1.0.0" - is-retry-allowed "^1.0.0" - is-stream "^1.0.0" - lowercase-keys "^1.0.0" - node-status-codes "^1.0.0" - object-assign "^4.0.1" - parse-json "^2.1.0" - pinkie-promise "^2.0.0" - read-all-stream "^3.0.0" - readable-stream "^2.0.5" - timed-out "^3.0.0" - unzip-response "^1.0.2" - url-parse-lax "^1.0.0" - -graceful-fs@^4.1.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: - version "4.1.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" - -"graceful-readlink@>= 1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" - -growl@1.9.2: - version "1.9.2" - resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" - -har-schema@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" - -har-validator@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" - dependencies: - chalk "^1.1.1" - commander "^2.9.0" - is-my-json-valid "^2.12.4" - pinkie-promise "^2.0.0" - -har-validator@~4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" - dependencies: - ajv "^4.9.1" - har-schema "^1.0.5" - -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - dependencies: - ansi-regex "^2.0.0" - -has-binary@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c" - dependencies: - isarray "0.0.1" - -has-cors@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" - -has-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" - -has-unicode@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - -has@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" - dependencies: - function-bind "^1.0.2" - -hasha@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/hasha/-/hasha-2.2.0.tgz#78d7cbfc1e6d66303fe79837365984517b2f6ee1" - dependencies: - is-stream "^1.0.1" - pinkie-promise "^2.0.0" - -hawk@~3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" - dependencies: - boom "2.x.x" - cryptiles "2.x.x" - hoek "2.x.x" - sntp "1.x.x" - -he@1.1.x: - version "1.1.1" - resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" - -highlight.js@^8.9.1: - version "8.9.1" - resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-8.9.1.tgz#b8a9c5493212a9392f0222b649c9611497ebfb88" - -highlight.js@^9.0.0: - version "9.11.0" - resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.11.0.tgz#47f98c7399918700db2caf230ded12cec41a84ae" - -hoek@2.x.x: - version "2.16.3" - resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" - -hoist-non-react-statics@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb" - -home-or-tmp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.1" - -hosted-git-info@^2.1.4, hosted-git-info@^2.1.5: - version "2.4.2" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" - -html-minifier@^3.2.3: - version "3.4.4" - resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.4.4.tgz#616fe3e3ef16da02b393d9a6099eeff468a35df0" - dependencies: - camel-case "3.0.x" - clean-css "4.0.x" - commander "2.9.x" - he "1.1.x" - ncname "1.0.x" - param-case "2.1.x" - relateurl "0.2.x" - uglify-js "~2.8.22" - -html-webpack-plugin@^2.24.0: - version "2.28.0" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-2.28.0.tgz#2e7863b57e5fd48fe263303e2ffc934c3064d009" - dependencies: - bluebird "^3.4.7" - html-minifier "^3.2.3" - loader-utils "^0.2.16" - lodash "^4.17.3" - pretty-error "^2.0.2" - toposort "^1.0.0" - -htmlparser2@^3.9.0: - version "3.9.2" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" - dependencies: - domelementtype "^1.3.0" - domhandler "^2.3.0" - domutils "^1.5.1" - entities "^1.1.1" - inherits "^2.0.1" - readable-stream "^2.0.2" - -htmlparser2@~3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe" - dependencies: - domelementtype "1" - domhandler "2.1" - domutils "1.1" - readable-stream "1.0" - -http-errors@~1.5.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" - dependencies: - inherits "2.0.3" - setprototypeof "1.0.2" - statuses ">= 1.3.1 < 2" - -http-errors@~1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" - dependencies: - depd "1.1.0" - inherits "2.0.3" - setprototypeof "1.0.3" - statuses ">= 1.3.1 < 2" - -http-proxy-middleware@~0.17.1: - version "0.17.4" - resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" - dependencies: - http-proxy "^1.16.2" - is-glob "^3.1.0" - lodash "^4.17.2" - micromatch "^2.3.11" - -http-proxy@^1.13.0, http-proxy@^1.16.2: - version "1.16.2" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" - dependencies: - eventemitter3 "1.x.x" - requires-port "1.x.x" - -http-signature@~1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" - dependencies: - assert-plus "^0.2.0" - jsprim "^1.2.2" - sshpk "^1.7.0" - -https-browserify@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" - -iconv-lite@0.4.15, iconv-lite@~0.4.13: - version "0.4.15" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" - -ieee754@^1.1.4: - version "1.1.8" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" - -ignore@^3.2.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.0.tgz#3812d22cbe9125f2c2b4915755a1b8abd745a001" - -immutable@~3.7.4: - version "3.7.6" - resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - -indent-string@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" - dependencies: - repeating "^2.0.0" - -indexof@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - -ini@^1.3.4, ini@~1.3.0: - version "1.3.4" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" - -inquirer@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" - dependencies: - ansi-escapes "^1.1.0" - ansi-regex "^2.0.0" - chalk "^1.0.0" - cli-cursor "^1.0.1" - cli-width "^2.0.0" - figures "^1.3.5" - lodash "^4.3.0" - readline2 "^1.0.1" - run-async "^0.1.0" - rx-lite "^3.1.2" - string-width "^1.0.1" - strip-ansi "^3.0.0" - through "^2.3.6" - -interpret@^0.6.4: - version "0.6.6" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b" - -interpret@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" - -invariant@^2.0.0, invariant@^2.1.0, invariant@^2.2.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" - dependencies: - loose-envify "^1.0.0" - -invert-kv@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" - -ipaddr.js@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.3.0.tgz#1e03a52fdad83a8bbb2b25cbf4998b4cffcd3dec" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - -is-arrow-function@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/is-arrow-function/-/is-arrow-function-2.0.3.tgz#29be2c2d8d9450852b8bbafb635ba7b8d8e87ec2" - dependencies: - is-callable "^1.0.4" - -is-binary-path@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" - dependencies: - binary-extensions "^1.0.0" - -is-boolean-object@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93" - -is-buffer@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" - -is-builtin-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" - dependencies: - builtin-modules "^1.0.0" - -is-callable@^1.0.4, is-callable@^1.1.1, is-callable@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" - -is-ci@^1.0.10: - version "1.0.10" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" - dependencies: - ci-info "^1.0.0" - -is-date-object@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" - -is-directory@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" - -is-dotfile@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" - -is-equal-shallow@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" - dependencies: - is-primitive "^2.0.0" - -is-equal@^1.5.1: - version "1.5.5" - resolved "https://registry.yarnpkg.com/is-equal/-/is-equal-1.5.5.tgz#5e85f1957e052883247feb386965a3bba15fbb3d" - dependencies: - has "^1.0.1" - is-arrow-function "^2.0.3" - is-boolean-object "^1.0.0" - is-callable "^1.1.3" - is-date-object "^1.0.1" - is-generator-function "^1.0.6" - is-number-object "^1.0.3" - is-regex "^1.0.3" - is-string "^1.0.4" - is-symbol "^1.0.1" - object.entries "^1.0.4" - -is-extendable@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - -is-extglob@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" - -is-extglob@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - -is-finite@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - -is-generator-function@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.6.tgz#9e71653cd15fff341c79c4151460a131d31e9fc4" - -is-glob@^2.0.0, is-glob@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" - dependencies: - is-extglob "^1.0.0" - -is-glob@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" - dependencies: - is-extglob "^2.1.0" - -is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: - version "2.16.0" - resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" - dependencies: - generate-function "^2.0.0" - generate-object-property "^1.1.0" - jsonpointer "^4.0.0" - xtend "^4.0.0" - -is-npm@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" - -is-number-object@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799" - -is-number@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-0.1.1.tgz#69a7af116963d47206ec9bd9b48a14216f1e3806" - -is-number@^2.0.2, is-number@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" - dependencies: - kind-of "^3.0.2" - -is-obj@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" - -is-path-cwd@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" - -is-path-in-cwd@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" - dependencies: - is-path-inside "^1.0.0" - -is-path-inside@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" - dependencies: - path-is-inside "^1.0.1" - -is-posix-bracket@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" - -is-primitive@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" - -is-property@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" - -is-redirect@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" - -is-regex@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" - dependencies: - has "^1.0.1" - -is-resolvable@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" - dependencies: - tryit "^1.0.1" - -is-retry-allowed@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" - -is-stream@^1.0.0, is-stream@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - -is-string@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64" - -is-symbol@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" - -is-typedarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - -is-utf8@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - -is-windows@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.1.tgz#310db70f742d259a16a369202b51af84233310d9" - -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - -isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - -isbinaryfile@^3.0.0, isbinaryfile@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621" - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - -isobject@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - dependencies: - isarray "1.0.0" - -isomorphic-fetch@^2.1.1, isomorphic-fetch@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" - dependencies: - node-fetch "^1.0.1" - whatwg-fetch ">=0.10.0" - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - -jade@0.26.3: - version "0.26.3" - resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" - dependencies: - commander "0.6.1" - mkdirp "0.3.0" - -jodid25519@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" - dependencies: - jsbn "~0.1.0" - -"jquery@>= 1.4.3", jquery@>=1.9.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.2.1.tgz#5c4d9de652af6cd0a770154a631bba12b015c787" - -js-base64@^2.1.9: - version "2.1.9" - resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" - -js-tokens@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" - -js-yaml@^3.4.3, js-yaml@^3.5.1, js-yaml@^3.7.0: - version "3.8.4" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" - dependencies: - argparse "^1.0.7" - esprima "^3.1.1" - -jsbn@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - -jsesc@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - -json-loader@^0.5.3: - version "0.5.4" - resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" - -json-schema@0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" - -json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" - dependencies: - jsonify "~0.0.0" - -json-stringify-safe@~5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - -json3@3.3.2, json3@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" - -json5@^0.5.0: - version "0.5.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" - -jsonfile@^2.1.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" - optionalDependencies: - graceful-fs "^4.1.6" - -jsonify@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" - -jsonpointer@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" - -jsprim@^1.2.2: - version "1.4.0" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" - dependencies: - assert-plus "1.0.0" - extsprintf "1.0.2" - json-schema "0.2.3" - verror "1.3.6" - -jsx-ast-utils@^1.3.4: - version "1.4.1" - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" - -karma-chrome-launcher@^0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/karma-chrome-launcher/-/karma-chrome-launcher-0.2.3.tgz#4c6d700d163a9d34c618efd87918be49e7a4a8c9" - dependencies: - fs-access "^1.0.0" - which "^1.2.1" - -karma-cli@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/karma-cli/-/karma-cli-0.1.2.tgz#cacea84371ece19876265c8fa102ebbb9fee4a8c" - dependencies: - resolve "^1.1.6" - -karma-junit-reporter@^0.4.1: - version "0.4.2" - resolved "https://registry.yarnpkg.com/karma-junit-reporter/-/karma-junit-reporter-0.4.2.tgz#492a236728fe4c92aacf419fcd0110a4327e9d7f" - dependencies: - path-is-absolute "^1.0.0" - xmlbuilder "3.1.0" - -karma-mocha@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/karma-mocha/-/karma-mocha-0.2.2.tgz#388ed917da15dcb196d1b915c1934ef803193f8e" - -karma-phantomjs-launcher@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/karma-phantomjs-launcher/-/karma-phantomjs-launcher-1.0.4.tgz#d23ca34801bda9863ad318e3bb4bd4062b13acd2" - dependencies: - lodash "^4.0.1" - phantomjs-prebuilt "^2.1.7" - -karma-webpack@^1.7.0: - version "1.8.1" - resolved "https://registry.yarnpkg.com/karma-webpack/-/karma-webpack-1.8.1.tgz#39d5fd2edeea3cc3ef5b405989b37d5b0e6a3b4e" - dependencies: - async "~0.9.0" - loader-utils "^0.2.5" - lodash "^3.8.0" - source-map "^0.1.41" - webpack-dev-middleware "^1.0.11" - -karma@^0.13.22: - version "0.13.22" - resolved "https://registry.yarnpkg.com/karma/-/karma-0.13.22.tgz#07750b1bd063d7e7e7b91bcd2e6354d8f2aa8744" - dependencies: - batch "^0.5.3" - bluebird "^2.9.27" - body-parser "^1.12.4" - chokidar "^1.4.1" - colors "^1.1.0" - connect "^3.3.5" - core-js "^2.1.0" - di "^0.0.1" - dom-serialize "^2.2.0" - expand-braces "^0.1.1" - glob "^7.0.0" - graceful-fs "^4.1.2" - http-proxy "^1.13.0" - isbinaryfile "^3.0.0" - lodash "^3.8.0" - log4js "^0.6.31" - mime "^1.3.4" - minimatch "^3.0.0" - optimist "^0.6.1" - rimraf "^2.3.3" - socket.io "^1.4.5" - source-map "^0.5.3" - useragent "^2.1.6" - -kew@~0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/kew/-/kew-0.7.0.tgz#79d93d2d33363d6fdd2970b335d9141ad591d79b" - -kind-of@^3.0.2: - version "3.2.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" - dependencies: - is-buffer "^1.1.5" - -klaw@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" - optionalDependencies: - graceful-fs "^4.1.9" - -latest-version@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" - dependencies: - package-json "^2.0.0" - -lazy-cache@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" - -lazy-req@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" - -lazystream@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" - dependencies: - readable-stream "^2.0.5" - -lcid@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" - dependencies: - invert-kv "^1.0.0" - -levn@^0.3.0, levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -linkifyjs@^2.1.3: - version "2.1.4" - resolved "https://registry.yarnpkg.com/linkifyjs/-/linkifyjs-2.1.4.tgz#b04aac3f327afc871deb205546f612d80bd784b5" - optionalDependencies: - jquery ">=1.9.0" - react ">=0.14.0" - react-dom ">=0.14.0" - -load-json-file@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" - dependencies: - graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" - pinkie-promise "^2.0.0" - strip-bom "^2.0.0" - -loader-utils@^0.2.11, loader-utils@^0.2.16, loader-utils@^0.2.3, loader-utils@^0.2.5, loader-utils@~0.2.2, loader-utils@~0.2.7: - version "0.2.17" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" - dependencies: - big.js "^3.1.3" - emojis-list "^2.0.0" - json5 "^0.5.0" - object-assign "^4.0.1" - -loader-utils@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" - dependencies: - big.js "^3.1.3" - emojis-list "^2.0.0" - json5 "^0.5.0" - -lodash-es@^4.2.1: - version "4.17.4" - resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7" - -lodash.assign@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" - -lodash.pickby@^4.0.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" - -lodash@4.17.4, lodash@^4.0.0, lodash@^4.0.1, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.8.0: - version "4.17.4" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" - -lodash@^3.5.0, lodash@^3.8.0: - version "3.10.1" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" - -log4js@^0.6.31: - version "0.6.38" - resolved "https://registry.yarnpkg.com/log4js/-/log4js-0.6.38.tgz#2c494116695d6fb25480943d3fc872e662a522fd" - dependencies: - readable-stream "~1.0.2" - semver "~4.3.3" - -longest@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" - -loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" - dependencies: - js-tokens "^3.0.0" - -loud-rejection@^1.0.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" - dependencies: - currently-unhandled "^0.4.1" - signal-exit "^3.0.0" - -lower-case@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" - -lowercase-keys@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" - -lru-cache@2: - version "2.7.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" - -lru-cache@2.2.x: - version "2.2.4" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.2.4.tgz#6c658619becf14031d0d0b594b16042ce4dc063d" - -lru-cache@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" - dependencies: - pseudomap "^1.0.1" - yallist "^2.0.0" - -macaddress@^0.2.7: - version "0.2.8" - resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" - -map-obj@^1.0.0, map-obj@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - -matrix-js-sdk@matrix-org/matrix-js-sdk#develop: - version "0.7.7" - resolved "https://codeload.github.com/matrix-org/matrix-js-sdk/tar.gz/6021c1c6b11d8bad2b38ce1d70c9d4ff27f17f9c" - dependencies: - another-json "^0.2.0" - browser-request "^0.3.3" - q "^1.4.1" - request "^2.53.0" - optionalDependencies: - olm "https://matrix.org/packages/npm/olm/olm-2.2.1.tgz" - -matrix-react-sdk@matrix-org/matrix-react-sdk#develop: - version "0.8.8" - resolved "https://codeload.github.com/matrix-org/matrix-react-sdk/tar.gz/8a76c0c14207797bf9f41398e6f55708f8513f22" - dependencies: - babel-runtime "^6.11.6" - blueimp-canvas-to-blob "^3.5.0" - browser-encrypt-attachment "^0.3.0" - browser-request "^0.3.3" - classnames "^2.1.2" - commonmark "^0.27.0" - draft-js "^0.8.1" - draft-js-export-html "^0.5.0" - draft-js-export-markdown "^0.2.0" - emojione "2.2.3" - file-saver "^1.3.3" - filesize "3.5.6" - flux "^2.0.3" - fuse.js "^2.2.0" - glob "^5.0.14" - highlight.js "^8.9.1" - isomorphic-fetch "^2.2.1" - linkifyjs "^2.1.3" - lodash "^4.13.1" - matrix-js-sdk matrix-org/matrix-js-sdk#develop - optimist "^0.6.1" - prop-types "^15.5.8" - q "^1.4.1" - react "^15.4.0" - react-addons-css-transition-group "15.3.2" - react-dom "^15.4.0" - react-gemini-scrollbar matrix-org/react-gemini-scrollbar#39d858c - sanitize-html "^1.11.1" - text-encoding-utf-8 "^1.0.1" - velocity-vector vector-im/velocity#059e3b2 - whatwg-fetch "^1.0.0" - -"mdurl@~ 1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - -memory-fs@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290" - -memory-fs@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20" - dependencies: - errno "^0.1.3" - readable-stream "^2.0.1" - -memory-fs@~0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" - dependencies: - errno "^0.1.3" - readable-stream "^2.0.1" - -meow@^3.1.0: - version "3.7.0" - resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" - dependencies: - camelcase-keys "^2.0.0" - decamelize "^1.1.2" - loud-rejection "^1.0.0" - map-obj "^1.0.1" - minimist "^1.1.3" - normalize-package-data "^2.3.4" - object-assign "^4.0.1" - read-pkg-up "^1.0.1" - redent "^1.0.0" - trim-newlines "^1.0.0" - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - -micromatch@^2.1.5, micromatch@^2.3.11: - version "2.3.11" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" - dependencies: - arr-diff "^2.0.0" - array-unique "^0.2.1" - braces "^1.8.2" - expand-brackets "^0.1.4" - extglob "^0.3.1" - filename-regex "^2.0.0" - is-extglob "^1.0.0" - is-glob "^2.0.1" - kind-of "^3.0.2" - normalize-path "^2.0.1" - object.omit "^2.0.0" - parse-glob "^3.0.4" - regex-cache "^0.4.2" - -"mime-db@>= 1.27.0 < 2", mime-db@~1.27.0: - version "1.27.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" - -mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.7: - version "2.1.15" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" - dependencies: - mime-db "~1.27.0" - -mime@1.3.4, mime@^1.3.4: - version "1.3.4" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" - -minimatch@0.3: - version "0.3.0" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd" - dependencies: - lru-cache "2" - sigmund "~1.0.0" - -"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - dependencies: - brace-expansion "^1.1.7" - -minimist@0.0.8, minimist@~0.0.1: - version "0.0.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" - -minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0, "minimist@~ 1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" - -mkdirp@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" - -mkdirp@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" - dependencies: - minimist "0.0.8" - -mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: - version "0.5.1" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" - dependencies: - minimist "0.0.8" - -mocha@^2.4.5: - version "2.5.3" - resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.5.3.tgz#161be5bdeb496771eb9b35745050b622b5aefc58" - dependencies: - commander "2.3.0" - debug "2.2.0" - diff "1.4.0" - escape-string-regexp "1.0.2" - glob "3.2.11" - growl "1.9.2" - jade "0.26.3" - mkdirp "0.5.1" - supports-color "1.2.0" - to-iso-string "0.0.2" - -modernizr@^3.1.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/modernizr/-/modernizr-3.5.0.tgz#396a02231bdc54628bbde2c0813a8e884c7e8060" - dependencies: - doctrine "1.2.3" - file "0.2.2" - find-parent-dir "0.3.0" - lodash "4.17.4" - mkdirp "0.5.1" - remarkable "^1.6.2" - requirejs "2.1.22" - yargs "7.0.2" - -ms@0.7.1: - version "0.7.1" - resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" - -ms@0.7.2: - version "0.7.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" - -ms@0.7.3: - version "0.7.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" - -mute-stream@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" - -nan@^2.3.0: - version "2.6.2" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - -ncname@1.0.x: - version "1.0.0" - resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" - dependencies: - xml-char-classes "^1.0.0" - -negotiator@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" - -no-case@^2.2.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.1.tgz#7aeba1c73a52184265554b7dc03baf720df80081" - dependencies: - lower-case "^1.1.1" - -node-emoji@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.5.1.tgz#fd918e412769bf8c448051238233840b2aff16a1" - dependencies: - string.prototype.codepointat "^0.2.0" - -node-fetch@^1.0.1: - version "1.6.3" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" - dependencies: - encoding "^0.1.11" - is-stream "^1.0.1" - -node-libs-browser@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-0.7.0.tgz#3e272c0819e308935e26674408d7af0e1491b83b" - dependencies: - assert "^1.1.1" - browserify-zlib "^0.1.4" - buffer "^4.9.0" - console-browserify "^1.1.0" - constants-browserify "^1.0.0" - crypto-browserify "3.3.0" - domain-browser "^1.1.1" - events "^1.0.0" - https-browserify "0.0.1" - os-browserify "^0.2.0" - path-browserify "0.0.0" - process "^0.11.0" - punycode "^1.2.4" - querystring-es3 "^0.2.0" - readable-stream "^2.0.5" - stream-browserify "^2.0.1" - stream-http "^2.3.1" - string_decoder "^0.10.25" - timers-browserify "^2.0.2" - tty-browserify "0.0.0" - url "^0.11.0" - util "^0.10.3" - vm-browserify "0.0.4" - -node-pre-gyp@^0.6.29: - version "0.6.34" - resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" - dependencies: - mkdirp "^0.5.1" - nopt "^4.0.1" - npmlog "^4.0.2" - rc "^1.1.7" - request "^2.81.0" - rimraf "^2.6.1" - semver "^5.3.0" - tar "^2.2.1" - tar-pack "^3.4.0" - -node-status-codes@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" - -nopt@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" - dependencies: - abbrev "1" - osenv "^0.1.4" - -normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: - version "2.3.8" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" - dependencies: - hosted-git-info "^2.1.4" - is-builtin-module "^1.0.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-path@^2.0.0, normalize-path@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - dependencies: - remove-trailing-separator "^1.0.1" - -normalize-range@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" - -npmlog@^4.0.2: - version "4.1.0" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" - dependencies: - are-we-there-yet "~1.1.2" - console-control-strings "~1.1.0" - gauge "~2.7.3" - set-blocking "~2.0.0" - -nth-check@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" - dependencies: - boolbase "~1.0.0" - -nugget@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/nugget/-/nugget-2.0.1.tgz#201095a487e1ad36081b3432fa3cada4f8d071b0" - dependencies: - debug "^2.1.3" - minimist "^1.1.0" - pretty-bytes "^1.0.2" - progress-stream "^1.1.0" - request "^2.45.0" - single-line-log "^1.1.2" - throttleit "0.0.2" - -null-check@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" - -num2fraction@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - -oauth-sign@~0.8.1: - version "0.8.2" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" - -object-assign@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" - -object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - -object-component@0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" - -object-inspect@^1.1.0: - version "1.2.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.2.tgz#c82115e4fcc888aea14d64c22e4f17f6a70d5e5a" - -object-keys@^1.0.10, object-keys@^1.0.8, object-keys@^1.0.9: - version "1.0.11" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" - -object-keys@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" - -object.assign@^4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" - dependencies: - define-properties "^1.1.2" - function-bind "^1.1.0" - object-keys "^1.0.10" - -object.entries@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" - dependencies: - define-properties "^1.1.2" - es-abstract "^1.6.1" - function-bind "^1.1.0" - has "^1.0.1" - -object.omit@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" - dependencies: - for-own "^0.1.4" - is-extendable "^0.1.1" - -"olm@https://matrix.org/packages/npm/olm/olm-2.2.1.tgz": - version "2.2.1" - resolved "https://matrix.org/packages/npm/olm/olm-2.2.1.tgz#5e5db50d0a142b7c7a0650d9b3d8acc3d37e697b" - -on-finished@~2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" - dependencies: - ee-first "1.1.1" - -on-headers@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" - -once@^1.3.0, once@^1.3.3, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - dependencies: - wrappy "1" - -onetime@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" - -open@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/open/-/open-0.0.5.tgz#42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc" - -optimist@^0.6.1, optimist@~0.6.0, optimist@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" - dependencies: - minimist "~0.0.1" - wordwrap "~0.0.2" - -optionator@^0.8.2: - version "0.8.2" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.4" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - wordwrap "~1.0.0" - -options@>=0.0.5: - version "0.0.6" - resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" - -original@>=0.0.5: - version "1.0.0" - resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" - dependencies: - url-parse "1.0.x" - -os-browserify@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" - -os-homedir@^1.0.0, os-homedir@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - -os-locale@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" - dependencies: - lcid "^1.0.0" - -os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - -osenv@^0.1.0, osenv@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.0" - -output-file-sync@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" - dependencies: - graceful-fs "^4.1.4" - mkdirp "^0.5.1" - object-assign "^4.1.0" - -package-json@^2.0.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" - dependencies: - got "^5.0.0" - registry-auth-token "^3.0.1" - registry-url "^3.0.3" - semver "^5.1.0" - -pako@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.5.tgz#d2205dfe5b9da8af797e7c163db4d1f84e4600bc" - -pako@~0.2.0: - version "0.2.9" - resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" - -parallelshell@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/parallelshell/-/parallelshell-1.2.0.tgz#df114c05e9c8eba92dc5607c5eb1e1ff04a2e17c" - -param-case@2.1.x: - version "2.1.1" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" - dependencies: - no-case "^2.2.0" - -parse-color@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/parse-color/-/parse-color-1.0.0.tgz#7b748b95a83f03f16a94f535e52d7f3d94658619" - dependencies: - color-convert "~0.5.0" - -parse-glob@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" - dependencies: - glob-base "^0.3.0" - is-dotfile "^1.0.0" - is-extglob "^1.0.0" - is-glob "^2.0.0" - -parse-json@^2.1.0, parse-json@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" - dependencies: - error-ex "^1.2.0" - -parsejson@0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/parsejson/-/parsejson-0.0.3.tgz#ab7e3759f209ece99437973f7d0f1f64ae0e64ab" - dependencies: - better-assert "~1.0.0" - -parseqs@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" - dependencies: - better-assert "~1.0.0" - -parseuri@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" - dependencies: - better-assert "~1.0.0" - -parseurl@~1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" - -path-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" - -path-exists@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" - dependencies: - pinkie-promise "^2.0.0" - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - -path-is-inside@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" - -path-parse@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" - -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - -path-type@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" - dependencies: - graceful-fs "^4.1.2" - pify "^2.0.0" - pinkie-promise "^2.0.0" - -pbkdf2-compat@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz#b6e0c8fa99494d94e0511575802a59a5c142f288" - -pend@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" - -performance-now@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" - -phantomjs-prebuilt@^2.1.7: - version "2.1.14" - resolved "https://registry.yarnpkg.com/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.14.tgz#d53d311fcfb7d1d08ddb24014558f1188c516da0" - dependencies: - es6-promise "~4.0.3" - extract-zip "~1.5.0" - fs-extra "~1.0.0" - hasha "~2.2.0" - kew "~0.7.0" - progress "~1.1.8" - request "~2.79.0" - request-progress "~2.0.1" - which "~1.2.10" - -pify@^2.0.0, pify@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - -pinkie-promise@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" - dependencies: - pinkie "^2.0.0" - -pinkie@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" - -pkg-dir@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" - dependencies: - find-up "^1.0.0" - -plist@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/plist/-/plist-2.1.0.tgz#57ccdb7a0821df21831217a3cad54e3e146a1025" - dependencies: - base64-js "1.2.0" - xmlbuilder "8.2.2" - xmldom "0.1.x" - -pluralize@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" - -pluralizers@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/pluralizers/-/pluralizers-0.1.5.tgz#9b5de28afe16b92c9c056cdf5100acddd752be0d" - -postcss-extend@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/postcss-extend/-/postcss-extend-1.0.5.tgz#5ea98bf787ba3cacf4df4609743f80a833b1d0e7" - dependencies: - postcss "^5.0.4" - -postcss-import@^9.0.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-9.1.0.tgz#95fe9876a1e79af49fbdc3589f01fe5aa7cc1e80" - dependencies: - object-assign "^4.0.1" - postcss "^5.0.14" - postcss-value-parser "^3.2.3" - promise-each "^2.2.0" - read-cache "^1.0.0" - resolve "^1.1.7" - -postcss-js@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-0.2.0.tgz#56e6db0cd910a6dffec3dfb34462693ac72e3882" - dependencies: - camelcase-css "^1.0.1" - postcss "^5.2.6" - -postcss-load-config@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" - dependencies: - cosmiconfig "^2.1.0" - object-assign "^4.1.0" - postcss-load-options "^1.2.0" - postcss-load-plugins "^2.3.0" - -postcss-load-options@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" - dependencies: - cosmiconfig "^2.1.0" - object-assign "^4.1.0" - -postcss-load-plugins@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" - dependencies: - cosmiconfig "^2.1.1" - object-assign "^4.1.0" - -postcss-loader@^1.2.2: - version "1.3.3" - resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-1.3.3.tgz#a621ea1fa29062a83972a46f54486771301916eb" - dependencies: - loader-utils "^1.0.2" - object-assign "^4.1.1" - postcss "^5.2.15" - postcss-load-config "^1.2.0" - -postcss-mixins@^5.4.1: - version "5.4.1" - resolved "https://registry.yarnpkg.com/postcss-mixins/-/postcss-mixins-5.4.1.tgz#004c0acc54328b86bbcb3471f9eb3b52ed70f4a8" - dependencies: - globby "^6.1.0" - postcss "^5.2.6" - postcss-js "^0.2.0" - postcss-simple-vars "^3.0.0" - sugarss "^0.2.0" - -postcss-nested@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-1.0.1.tgz#91f28f4e6e23d567241ac154558a0cfab4cc0d8f" - dependencies: - postcss "^5.2.17" - -postcss-scss@^0.4.0: - version "0.4.1" - resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-0.4.1.tgz#ad771b81f0f72f5f4845d08aa60f93557653d54c" - dependencies: - postcss "^5.2.13" - -postcss-simple-vars@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/postcss-simple-vars/-/postcss-simple-vars-3.1.0.tgz#62c0657214ef1f43a3c5893ade89de414f31b6ff" - dependencies: - postcss "^5.2.16" - -postcss-strip-inline-comments@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/postcss-strip-inline-comments/-/postcss-strip-inline-comments-0.1.5.tgz#7ff6bcdc14e633ed4cdfa020bae3eddad4f84b90" - dependencies: - postcss "^5.0.18" - -postcss-value-parser@^3.2.3: - version "3.3.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" - -postcss@^5.0.14, postcss@^5.0.18, postcss@^5.0.4, postcss@^5.2.13, postcss@^5.2.15, postcss@^5.2.16, postcss@^5.2.17, postcss@^5.2.4, postcss@^5.2.6: - version "5.2.17" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.17.tgz#cf4f597b864d65c8a492b2eabe9d706c879c388b" - dependencies: - chalk "^1.1.3" - js-base64 "^2.1.9" - source-map "^0.5.6" - supports-color "^3.2.3" - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - -prepend-http@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" - -preserve@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" - -pretty-bytes@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-1.0.4.tgz#0a22e8210609ad35542f8c8d5d2159aff0751c84" - dependencies: - get-stdin "^4.0.1" - meow "^3.1.0" - -pretty-error@^2.0.2: - version "2.1.0" - resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.0.tgz#87f4e9d706a24c87d6cbee9fabec001fcf8c75d8" - dependencies: - renderkid "^2.0.1" - utila "~0.4" - -private@^0.1.6: - version "0.1.7" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" - -process-nextick-args@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" - -process@^0.11.0: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - -progress-stream@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/progress-stream/-/progress-stream-1.2.0.tgz#2cd3cfea33ba3a89c9c121ec3347abe9ab125f77" - dependencies: - speedometer "~0.1.2" - through2 "~0.2.3" - -progress@^1.1.8, progress@~1.1.8: - version "1.1.8" - resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" - -promise-each@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/promise-each/-/promise-each-2.2.0.tgz#3353174eff2694481037e04e01f77aa0fb6d1b60" - dependencies: - any-promise "^0.1.0" - -promise@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" - dependencies: - asap "~2.0.3" - -prop-types@^15.5.7, prop-types@^15.5.8, prop-types@~15.5.7: - version "15.5.9" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.9.tgz#d478eef0e761396942f70c78e772f76e8be747c9" - dependencies: - fbjs "^0.8.9" - loose-envify "^1.3.1" - -proxy-addr@~1.1.3: - version "1.1.4" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.4.tgz#27e545f6960a44a627d9b44467e35c1b6b4ce2f3" - dependencies: - forwarded "~0.1.0" - ipaddr.js "1.3.0" - -prr@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" - -pseudomap@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - -punycode@1.3.2, punycode@^1.2.4: - version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - -punycode@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - -q@^1.4.1: - version "1.5.0" - resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" - -qs@6.4.0, qs@~6.4.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" - -qs@~6.3.0: - version "6.3.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" - -querystring-es3@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - -querystring@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - -querystringify@0.0.x: - version "0.0.4" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" - -querystringify@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb" - -randomatic@^1.1.3: - version "1.1.6" - resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" - dependencies: - is-number "^2.0.2" - kind-of "^3.0.2" - -range-parser@^1.0.3, range-parser@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" - -raw-body@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.2.0.tgz#994976cf6a5096a41162840492f0bdc5d6e7fb96" - dependencies: - bytes "2.4.0" - iconv-lite "0.4.15" - unpipe "1.0.0" - -rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: - version "1.2.1" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" - dependencies: - deep-extend "~0.4.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - -react-addons-css-transition-group@15.3.2: - version "15.3.2" - resolved "https://registry.yarnpkg.com/react-addons-css-transition-group/-/react-addons-css-transition-group-15.3.2.tgz#d8fa52bec9bb61bdfde8b9e4652b80297cbff667" - -react-addons-perf@^15.4.0: - version "15.4.2" - resolved "https://registry.yarnpkg.com/react-addons-perf/-/react-addons-perf-15.4.2.tgz#110bdcf5c459c4f77cb85ed634bcd3397536383b" - dependencies: - fbjs "^0.8.4" - object-assign "^4.1.0" - -react-addons-test-utils@^15.4.0: - version "15.5.1" - resolved "https://registry.yarnpkg.com/react-addons-test-utils/-/react-addons-test-utils-15.5.1.tgz#e0d258cda2a122ad0dff69f838260d0c3958f5f7" - dependencies: - fbjs "^0.8.4" - object-assign "^4.1.0" - -react-dnd-html5-backend@^2.1.2: - version "2.4.1" - resolved "https://registry.yarnpkg.com/react-dnd-html5-backend/-/react-dnd-html5-backend-2.4.1.tgz#439d2bcaf8bd8b87a51386beb51c128826182ddd" - dependencies: - lodash "^4.2.0" - -react-dnd@^2.1.4: - version "2.4.0" - resolved "https://registry.yarnpkg.com/react-dnd/-/react-dnd-2.4.0.tgz#96f0042cd4cd375b4f0c3413f6ec84d267b7d792" - dependencies: - disposables "^1.0.1" - dnd-core "^2.4.0" - hoist-non-react-statics "^1.2.0" - invariant "^2.1.0" - lodash "^4.2.0" - prop-types "^15.5.8" - -react-dom@>=0.14.0, react-dom@^15.4.0: - version "15.5.4" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.5.4.tgz#ba0c28786fd52ed7e4f2135fe0288d462aef93da" - dependencies: - fbjs "^0.8.9" - loose-envify "^1.1.0" - object-assign "^4.1.0" - prop-types "~15.5.7" - -react-gemini-scrollbar@matrix-org/react-gemini-scrollbar#39d858c: - version "2.1.5" - resolved "https://codeload.github.com/matrix-org/react-gemini-scrollbar/tar.gz/39d858c" - dependencies: - gemini-scrollbar matrix-org/gemini-scrollbar#91e1e566 - -react@>=0.14.0, react@^15.4.0: - version "15.5.4" - resolved "https://registry.yarnpkg.com/react/-/react-15.5.4.tgz#fa83eb01506ab237cdc1c8c3b1cea8de012bf047" - dependencies: - fbjs "^0.8.9" - loose-envify "^1.1.0" - object-assign "^4.1.0" - prop-types "^15.5.7" - -read-all-stream@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" - dependencies: - pinkie-promise "^2.0.0" - readable-stream "^2.0.0" - -read-cache@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" - dependencies: - pify "^2.3.0" - -read-pkg-up@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" - dependencies: - find-up "^1.0.0" - read-pkg "^1.0.0" - -read-pkg@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" - dependencies: - load-json-file "^1.0.0" - normalize-package-data "^2.3.2" - path-type "^1.0.0" - -readable-stream@1.0, readable-stream@~1.0.2: - version "1.0.34" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "0.0.1" - string_decoder "~0.10.x" - -readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.2.6: - version "2.2.9" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" - dependencies: - buffer-shims "~1.0.0" - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - string_decoder "~1.0.0" - util-deprecate "~1.0.1" - -readable-stream@~1.1.9: - version "1.1.14" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "0.0.1" - string_decoder "~0.10.x" - -readable-stream@~2.0.0: - version "2.0.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - string_decoder "~0.10.x" - util-deprecate "~1.0.1" - -readdirp@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" - dependencies: - graceful-fs "^4.1.2" - minimatch "^3.0.2" - readable-stream "^2.0.2" - set-immediate-shim "^1.0.1" - -readline2@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - mute-stream "0.0.5" - -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - dependencies: - resolve "^1.1.6" - -redent@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" - dependencies: - indent-string "^2.1.0" - strip-indent "^1.0.1" - -redux@^3.2.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/redux/-/redux-3.6.0.tgz#887c2b3d0b9bd86eca2be70571c27654c19e188d" - dependencies: - lodash "^4.2.1" - lodash-es "^4.2.1" - loose-envify "^1.1.0" - symbol-observable "^1.0.2" - -regenerate@^1.2.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" - -regenerator-runtime@^0.10.0: - version "0.10.5" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" - -regenerator-transform@0.9.11: - version "0.9.11" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" - dependencies: - babel-runtime "^6.18.0" - babel-types "^6.19.0" - private "^0.1.6" - -regex-cache@^0.4.2: - version "0.4.3" - resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" - dependencies: - is-equal-shallow "^0.1.3" - is-primitive "^2.0.0" - -regexp-quote@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/regexp-quote/-/regexp-quote-0.0.0.tgz#1e0f4650c862dcbfed54fd42b148e9bb1721fcf2" - -regexpu-core@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" - dependencies: - regenerate "^1.2.1" - regjsgen "^0.2.0" - regjsparser "^0.1.4" - -registry-auth-token@^3.0.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" - dependencies: - rc "^1.1.6" - safe-buffer "^5.0.1" - -registry-url@^3.0.3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" - dependencies: - rc "^1.0.1" - -regjsgen@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" - -regjsparser@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" - dependencies: - jsesc "~0.5.0" - -relateurl@0.2.x: - version "0.2.7" - resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" - -remarkable@^1.6.2: - version "1.7.1" - resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-1.7.1.tgz#aaca4972100b66a642a63a1021ca4bac1be3bff6" - dependencies: - argparse "~0.1.15" - autolinker "~0.15.0" - -remove-trailing-separator@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" - -renderkid@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.1.tgz#898cabfc8bede4b7b91135a3ffd323e58c0db319" - dependencies: - css-select "^1.1.0" - dom-converter "~0.1" - htmlparser2 "~3.3.0" - strip-ansi "^3.0.0" - utila "~0.3" - -repeat-element@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" - -repeat-string@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-0.2.2.tgz#c7a8d3236068362059a7e4651fc6884e8b1fb4ae" - -repeat-string@^1.5.2: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - -repeating@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" - dependencies: - is-finite "^1.0.0" - -request-progress@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-2.0.1.tgz#5d36bb57961c673aa5b788dbc8141fdf23b44e08" - dependencies: - throttleit "^1.0.0" - -request@^2.45.0, request@^2.81.0: - version "2.81.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" - dependencies: - aws-sign2 "~0.6.0" - aws4 "^1.2.1" - caseless "~0.12.0" - combined-stream "~1.0.5" - extend "~3.0.0" - forever-agent "~0.6.1" - form-data "~2.1.1" - har-validator "~4.2.1" - hawk "~3.1.3" - http-signature "~1.1.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.7" - oauth-sign "~0.8.1" - performance-now "^0.2.0" - qs "~6.4.0" - safe-buffer "^5.0.1" - stringstream "~0.0.4" - tough-cookie "~2.3.0" - tunnel-agent "^0.6.0" - uuid "^3.0.0" - -request@^2.53.0, request@~2.79.0: - version "2.79.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" - dependencies: - aws-sign2 "~0.6.0" - aws4 "^1.2.1" - caseless "~0.11.0" - combined-stream "~1.0.5" - extend "~3.0.0" - forever-agent "~0.6.1" - form-data "~2.1.1" - har-validator "~2.0.6" - hawk "~3.1.3" - http-signature "~1.1.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.7" - oauth-sign "~0.8.1" - qs "~6.3.0" - stringstream "~0.0.4" - tough-cookie "~2.3.0" - tunnel-agent "~0.4.1" - uuid "^3.0.0" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - -require-from-string@^1.1.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" - -require-main-filename@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" - -require-uncached@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" - dependencies: - caller-path "^0.1.0" - resolve-from "^1.0.0" - -requirejs@2.1.22: - version "2.1.22" - resolved "https://registry.yarnpkg.com/requirejs/-/requirejs-2.1.22.tgz#dd78fd2d34180c0d62c724b5b8aebc0664e0366f" - -requires-port@1.0.x, requires-port@1.x.x: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - -resolve-from@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" - -resolve@^1.1.6, resolve@^1.1.7: - version "1.3.3" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" - dependencies: - path-parse "^1.0.5" - -restore-cursor@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" - dependencies: - exit-hook "^1.0.0" - onetime "^1.0.0" - -right-align@^0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" - dependencies: - align-text "^0.1.1" - -rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.4.3, rimraf@^2.5.1, rimraf@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" - dependencies: - glob "^7.0.5" - -ripemd160@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-0.2.0.tgz#2bf198bde167cacfa51c0a928e84b68bbe171fce" - -run-async@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" - dependencies: - once "^1.3.0" - -rx-lite@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" - -safe-buffer@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" - -sanitize-filename@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.1.tgz#612da1c96473fa02dccda92dcd5b4ab164a6772a" - dependencies: - truncate-utf8-bytes "^1.0.0" - -sanitize-html@^1.11.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-1.14.1.tgz#730ffa2249bdf18333effe45b286173c9c5ad0b8" - dependencies: - htmlparser2 "^3.9.0" - regexp-quote "0.0.0" - xtend "^4.0.0" - -semver-diff@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" - dependencies: - semver "^5.0.3" - -"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" - -semver@~4.3.3: - version "4.3.6" - resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" - -send@0.15.1: - version "0.15.1" - resolved "https://registry.yarnpkg.com/send/-/send-0.15.1.tgz#8a02354c26e6f5cca700065f5f0cdeba90ec7b5f" - dependencies: - debug "2.6.1" - depd "~1.1.0" - destroy "~1.0.4" - encodeurl "~1.0.1" - escape-html "~1.0.3" - etag "~1.8.0" - fresh "0.5.0" - http-errors "~1.6.1" - mime "1.3.4" - ms "0.7.2" - on-finished "~2.3.0" - range-parser "~1.2.0" - statuses "~1.3.1" - -serve-index@^1.7.2: - version "1.8.0" - resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b" - dependencies: - accepts "~1.3.3" - batch "0.5.3" - debug "~2.2.0" - escape-html "~1.0.3" - http-errors "~1.5.0" - mime-types "~2.1.11" - parseurl "~1.3.1" - -serve-static@1.12.1: - version "1.12.1" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.1.tgz#7443a965e3ced647aceb5639fa06bf4d1bbe0039" - dependencies: - encodeurl "~1.0.1" - escape-html "~1.0.3" - parseurl "~1.3.1" - send "0.15.1" - -set-blocking@^2.0.0, set-blocking@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - -set-immediate-shim@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" - -setimmediate@^1.0.4, setimmediate@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - -setprototypeof@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" - -setprototypeof@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" - -sha.js@2.2.6: - version "2.2.6" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.2.6.tgz#17ddeddc5f722fb66501658895461977867315ba" - -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - dependencies: - shebang-regex "^1.0.0" - -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - -shell-quote@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" - dependencies: - array-filter "~0.0.0" - array-map "~0.0.0" - array-reduce "~0.0.0" - jsonify "~0.0.0" - -shelljs@^0.7.5: - version "0.7.7" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" - dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" - -sigmund@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" - -signal-exit@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" - -single-line-log@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/single-line-log/-/single-line-log-1.1.2.tgz#c2f83f273a3e1a16edb0995661da0ed5ef033364" - dependencies: - string-width "^1.0.1" - -slash@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" - -slice-ansi@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" - -slide@^1.1.5: - version "1.1.6" - resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" - -sntp@1.x.x: - version "1.0.9" - resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" - dependencies: - hoek "2.x.x" - -socket.io-adapter@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz#cb6d4bb8bec81e1078b99677f9ced0046066bb8b" - dependencies: - debug "2.3.3" - socket.io-parser "2.3.1" - -socket.io-client@1.7.4: - version "1.7.4" - resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-1.7.4.tgz#ec9f820356ed99ef6d357f0756d648717bdd4281" - dependencies: - backo2 "1.0.2" - component-bind "1.0.0" - component-emitter "1.2.1" - debug "2.3.3" - engine.io-client "~1.8.4" - has-binary "0.1.7" - indexof "0.0.1" - object-component "0.0.3" - parseuri "0.0.5" - socket.io-parser "2.3.1" - to-array "0.1.4" - -socket.io-parser@2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.3.1.tgz#dd532025103ce429697326befd64005fcfe5b4a0" - dependencies: - component-emitter "1.1.2" - debug "2.2.0" - isarray "0.0.1" - json3 "3.3.2" - -socket.io@^1.4.5: - version "1.7.4" - resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-1.7.4.tgz#2f7ecedc3391bf2d5c73e291fe233e6e34d4dd00" - dependencies: - debug "2.3.3" - engine.io "~1.8.4" - has-binary "0.1.7" - object-assign "4.1.0" - socket.io-adapter "0.5.0" - socket.io-client "1.7.4" - socket.io-parser "2.3.1" - -sockjs-client@^1.0.3: - version "1.1.4" - resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12" - dependencies: - debug "^2.6.6" - eventsource "0.1.6" - faye-websocket "~0.11.0" - inherits "^2.0.1" - json3 "^3.3.2" - url-parse "^1.1.8" - -sockjs@^0.3.15: - version "0.3.18" - resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" - dependencies: - faye-websocket "^0.10.0" - uuid "^2.0.2" - -source-list-map@~0.1.5, source-list-map@~0.1.7: - version "0.1.8" - resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" - -source-map-loader@^0.1.5: - version "0.1.6" - resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-0.1.6.tgz#c09903da6d73b9e53b7ed8ee5245597051e98e91" - dependencies: - async "^0.9.0" - loader-utils "~0.2.2" - source-map "~0.1.33" - -source-map-support@^0.4.10, source-map-support@^0.4.2: - version "0.4.15" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" - dependencies: - source-map "^0.5.6" - -source-map@0.4.x, source-map@~0.4.1: - version "0.4.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" - dependencies: - amdefine ">=0.0.4" - -source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: - version "0.5.6" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" - -source-map@^0.1.41, source-map@~0.1.33: - version "0.1.43" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" - dependencies: - amdefine ">=0.0.4" - -spdx-correct@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" - dependencies: - spdx-license-ids "^1.0.2" - -spdx-expression-parse@~1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" - -spdx-license-ids@^1.0.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" - -speedometer@~0.1.2: - version "0.1.4" - resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-0.1.4.tgz#9876dbd2a169d3115402d48e6ea6329c8816a50d" - -sprintf-js@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.0.tgz#cffcaf702daf65ea39bb4e0fa2b299cec1a1be46" - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - -sshpk@^1.7.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" - dependencies: - asn1 "~0.2.3" - assert-plus "^1.0.0" - dashdash "^1.12.0" - getpass "^0.1.1" - optionalDependencies: - bcrypt-pbkdf "^1.0.0" - ecc-jsbn "~0.1.1" - jodid25519 "^1.0.0" - jsbn "~0.1.0" - tweetnacl "~0.14.0" - -stat-mode@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-0.2.2.tgz#e6c80b623123d7d80cf132ce538f346289072502" - -"statuses@>= 1.3.1 < 2", statuses@~1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" - -stream-browserify@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" - dependencies: - inherits "~2.0.1" - readable-stream "^2.0.2" - -stream-cache@~0.0.1: - version "0.0.2" - resolved "https://registry.yarnpkg.com/stream-cache/-/stream-cache-0.0.2.tgz#1ac5ad6832428ca55667dbdee395dad4e6db118f" - -stream-http@^2.3.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.1.tgz#546a51741ad5a6b07e9e31b0b10441a917df528a" - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.1" - readable-stream "^2.2.6" - to-arraybuffer "^1.0.0" - xtend "^4.0.0" - -string-width@^1.0.1, string-width@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -string-width@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^3.0.0" - -string.prototype.codepointat@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz#6b26e9bd3afcaa7be3b4269b526de1b82000ac78" - -string.prototype.repeat@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz#aba36de08dcee6a5a337d49b2ea1da1b28fc0ecf" - -string_decoder@^0.10.25, string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" - -string_decoder@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" - dependencies: - buffer-shims "~1.0.0" - -stringstream@~0.0.4: - version "0.0.5" - resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" - -strip-ansi@^3.0.0, strip-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - dependencies: - ansi-regex "^2.0.0" - -strip-bom@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - dependencies: - is-utf8 "^0.2.0" - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - -strip-indent@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" - dependencies: - get-stdin "^4.0.1" - -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - -subarg@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" - dependencies: - minimist "^1.1.0" - -sugarss@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/sugarss/-/sugarss-0.2.0.tgz#ac34237563327c6ff897b64742bf6aec190ad39e" - dependencies: - postcss "^5.2.4" - -sumchecker@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-1.3.1.tgz#79bb3b4456dd04f18ebdbc0d703a1d1daec5105d" - dependencies: - debug "^2.2.0" - es6-promise "^4.0.5" - -supports-color@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" - -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - -supports-color@^3.1.0, supports-color@^3.1.1, supports-color@^3.2.3: - version "3.2.3" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" - dependencies: - has-flag "^1.0.0" - -symbol-observable@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" - -table@^3.7.8: - version "3.8.3" - resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" - dependencies: - ajv "^4.7.0" - ajv-keywords "^1.0.0" - chalk "^1.1.1" - lodash "^4.0.0" - slice-ansi "0.0.4" - string-width "^2.0.0" - -tapable@^0.1.8, tapable@~0.1.8: - version "0.1.10" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4" - -tar-pack@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" - dependencies: - debug "^2.2.0" - fstream "^1.0.10" - fstream-ignore "^1.0.5" - once "^1.3.3" - readable-stream "^2.1.4" - rimraf "^2.5.1" - tar "^2.2.1" - uid-number "^0.0.6" - -tar-stream@^1.5.0: - version "1.5.2" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.5.2.tgz#fbc6c6e83c1a19d4cb48c7d96171fc248effc7bf" - dependencies: - bl "^1.0.0" - end-of-stream "^1.0.0" - readable-stream "^2.0.0" - xtend "^4.0.0" - -tar@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" - dependencies: - block-stream "*" - fstream "^1.0.2" - inherits "2" - -text-encoding-utf-8@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/text-encoding-utf-8/-/text-encoding-utf-8-1.0.1.tgz#51ea6c7a7eb2fb4f67467b763735661f5603492d" - -text-table@~0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - -throttleit@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" - -throttleit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" - -through2@~0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/through2/-/through2-0.2.3.tgz#eb3284da4ea311b6cc8ace3653748a52abf25a3f" - dependencies: - readable-stream "~1.1.9" - xtend "~2.1.1" - -through@^2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - -timed-out@^3.0.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.3.tgz#95860bfcc5c76c277f8f8326fd0f5b2e20eba217" - -timers-browserify@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" - dependencies: - setimmediate "^1.0.4" - -tmatch@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/tmatch/-/tmatch-2.0.1.tgz#0c56246f33f30da1b8d3d72895abaf16660f38cf" - -tmp@0.0.x: - version "0.0.31" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" - dependencies: - os-tmpdir "~1.0.1" - -to-array@0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" - -to-arraybuffer@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" - -to-fast-properties@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" - -to-iso-string@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/to-iso-string/-/to-iso-string-0.0.2.tgz#4dc19e664dfccbe25bd8db508b00c6da158255d1" - -toposort@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.3.tgz#f02cd8a74bd8be2fc0e98611c3bacb95a171869c" - -tough-cookie@~2.3.0: - version "2.3.2" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" - dependencies: - punycode "^1.4.1" - -trim-newlines@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" - -trim-right@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" - -truncate-utf8-bytes@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" - dependencies: - utf8-byte-length "^1.0.1" - -tryit@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" - -tty-browserify@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" - -tunnel-agent@^0.4.3, tunnel-agent@~0.4.1: - version "0.4.3" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - dependencies: - safe-buffer "^5.0.1" - -tweetnacl@^0.14.3, tweetnacl@~0.14.0: - version "0.14.5" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - dependencies: - prelude-ls "~1.1.2" - -type-is@~1.6.14: - version "1.6.15" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" - dependencies: - media-typer "0.3.0" - mime-types "~2.1.15" - -typedarray@^0.0.6, typedarray@~0.0.5: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - -ua-parser-js@^0.7.10, ua-parser-js@^0.7.9: - version "0.7.12" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" - -uglify-js@~2.7.3: - version "2.7.5" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" - dependencies: - async "~0.2.6" - source-map "~0.5.1" - uglify-to-browserify "~1.0.0" - yargs "~3.10.0" - -uglify-js@~2.8.22: - version "2.8.23" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.23.tgz#8230dd9783371232d62a7821e2cf9a817270a8a0" - dependencies: - source-map "~0.5.1" - yargs "~3.10.0" - optionalDependencies: - uglify-to-browserify "~1.0.0" - -uglify-to-browserify@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" - -uid-number@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" - -ultron@1.0.x: - version "1.0.2" - resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" - -underscore.string@~2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-2.4.0.tgz#8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b" - -underscore@~1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" - -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - -unzip-response@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" - -update-notifier@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.3.tgz#8f92c515482bd6831b7c93013e70f87552c7cf5a" - dependencies: - boxen "^0.6.0" - chalk "^1.0.0" - configstore "^2.0.0" - is-npm "^1.0.0" - latest-version "^2.0.0" - lazy-req "^1.1.0" - semver-diff "^2.0.0" - xdg-basedir "^2.0.0" - -upper-case@^1.1.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" - -url-parse-lax@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" - dependencies: - prepend-http "^1.0.1" - -url-parse@1.0.x: - version "1.0.5" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" - dependencies: - querystringify "0.0.x" - requires-port "1.0.x" - -url-parse@^1.1.8: - version "1.1.9" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.9.tgz#c67f1d775d51f0a18911dd7b3ffad27bb9e5bd19" - dependencies: - querystringify "~1.0.0" - requires-port "1.0.x" - -url@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - dependencies: - punycode "1.3.2" - querystring "0.2.0" - -user-home@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" - -user-home@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" - dependencies: - os-homedir "^1.0.0" - -useragent@^2.1.6: - version "2.1.13" - resolved "https://registry.yarnpkg.com/useragent/-/useragent-2.1.13.tgz#bba43e8aa24d5ceb83c2937473e102e21df74c10" - dependencies: - lru-cache "2.2.x" - tmp "0.0.x" - -utf8-byte-length@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz#f45f150c4c66eee968186505ab93fcbb8ad6bf61" - -util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - -util@0.10.3, util@^0.10.3: - version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - dependencies: - inherits "2.0.1" - -utila@~0.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226" - -utila@~0.4: - version "0.4.0" - resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" - -utils-merge@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" - -uuid-1345@^0.99.6: - version "0.99.6" - resolved "https://registry.yarnpkg.com/uuid-1345/-/uuid-1345-0.99.6.tgz#b1270ae015a7721c7adec6c46ec169c6098aed40" - dependencies: - macaddress "^0.2.7" - -uuid@^2.0.1, uuid@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" - -uuid@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" - -v8flags@^2.0.10: - version "2.1.1" - resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" - dependencies: - user-home "^1.1.1" - -validate-npm-package-license@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" - dependencies: - spdx-correct "~1.0.0" - spdx-expression-parse "~1.0.0" - -vary@~1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" - -velocity-vector@vector-im/velocity#059e3b2: - version "1.2.3" - resolved "https://codeload.github.com/vector-im/velocity/tar.gz/059e3b2" - dependencies: - jquery ">= 1.4.3" - -verror@1.3.6: - version "1.3.6" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" - dependencies: - extsprintf "1.0.2" - -vm-browserify@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" - dependencies: - indexof "0.0.1" - -void-elements@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" - -walkdir@^0.0.11: - version "0.0.11" - resolved "https://registry.yarnpkg.com/walkdir/-/walkdir-0.0.11.tgz#a16d025eb931bd03b52f308caed0f40fcebe9532" - -watchpack@^0.2.1: - version "0.2.9" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-0.2.9.tgz#62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b" - dependencies: - async "^0.9.0" - chokidar "^1.0.0" - graceful-fs "^4.1.2" - -webpack-core@~0.6.9: - version "0.6.9" - resolved "https://registry.yarnpkg.com/webpack-core/-/webpack-core-0.6.9.tgz#fc571588c8558da77be9efb6debdc5a3b172bdc2" - dependencies: - source-list-map "~0.1.7" - source-map "~0.4.1" - -webpack-dev-middleware@^1.0.11, webpack-dev-middleware@^1.10.2: - version "1.10.2" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.10.2.tgz#2e252ce1dfb020dbda1ccb37df26f30ab014dbd1" - dependencies: - memory-fs "~0.4.1" - mime "^1.3.4" - path-is-absolute "^1.0.0" - range-parser "^1.0.3" - -webpack-dev-server@^1.16.2: - version "1.16.5" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-1.16.5.tgz#0cbd5f2d2ac8d4e593aacd5c9702e7bbd5e59892" - dependencies: - compression "^1.5.2" - connect-history-api-fallback "^1.3.0" - express "^4.13.3" - http-proxy-middleware "~0.17.1" - open "0.0.5" - optimist "~0.6.1" - serve-index "^1.7.2" - sockjs "^0.3.15" - sockjs-client "^1.0.3" - stream-cache "~0.0.1" - strip-ansi "^3.0.0" - supports-color "^3.1.1" - webpack-dev-middleware "^1.10.2" - -webpack@^1.12.14: - version "1.15.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-1.15.0.tgz#4ff31f53db03339e55164a9d468ee0324968fe98" - dependencies: - acorn "^3.0.0" - async "^1.3.0" - clone "^1.0.2" - enhanced-resolve "~0.9.0" - interpret "^0.6.4" - loader-utils "^0.2.11" - memory-fs "~0.3.0" - mkdirp "~0.5.0" - node-libs-browser "^0.7.0" - optimist "~0.6.0" - supports-color "^3.1.0" - tapable "~0.1.8" - uglify-js "~2.7.3" - watchpack "^0.2.1" - webpack-core "~0.6.9" - -websocket-driver@>=0.5.1: - version "0.6.5" - resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" - dependencies: - websocket-extensions ">=0.1.1" - -websocket-extensions@>=0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" - -whatwg-fetch@>=0.10.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" - -whatwg-fetch@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-1.1.1.tgz#ac3c9d39f320c6dce5339969d054ef43dd333319" - -which-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" - -which@^1.2.1, which@^1.2.9, which@~1.2.10: - version "1.2.14" - resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" - dependencies: - isexe "^2.0.0" - -wide-align@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" - dependencies: - string-width "^1.0.1" - -widest-line@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" - dependencies: - string-width "^1.0.1" - -window-size@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" - -wordwrap@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" - -wordwrap@~0.0.2: - version "0.0.3" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" - -wordwrap@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - -wrap-ansi@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - -write-file-atomic@^1.1.2: - version "1.3.4" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" - dependencies: - graceful-fs "^4.1.11" - imurmurhash "^0.1.4" - slide "^1.1.5" - -write@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" - dependencies: - mkdirp "^0.5.1" - -ws@1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.2.tgz#8a244fa052401e08c9886cf44a85189e1fd4067f" - dependencies: - options ">=0.0.5" - ultron "1.0.x" - -ws@1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.4.tgz#57f40d036832e5f5055662a397c4de76ed66bf61" - dependencies: - options ">=0.0.5" - ultron "1.0.x" - -wtf-8@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a" - -xdg-basedir@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" - dependencies: - os-homedir "^1.0.0" - -xml-char-classes@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" - -xmlbuilder@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-3.1.0.tgz#2c86888f2d4eade850fa38ca7f7223f7209516e1" - dependencies: - lodash "^3.5.0" - -xmlbuilder@8.2.2: - version "8.2.2" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz#69248673410b4ba42e1a6136551d2922335aa773" - -xmldom@0.1.x: - version "0.1.27" - resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" - -xmlhttprequest-ssl@1.5.3: - version "1.5.3" - resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz#185a888c04eca46c3e4070d99f7b49de3528992d" - -xtend@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" - -xtend@~2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" - dependencies: - object-keys "~0.4.0" - -y18n@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" - -yallist@^2.0.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - -yargs-parser@^4.2.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" - dependencies: - camelcase "^3.0.0" - -yargs-parser@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" - dependencies: - camelcase "^3.0.0" - -yargs@7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.0.2.tgz#115b97df1321823e8b8648e8968c782521221f67" - dependencies: - camelcase "^3.0.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^1.4.0" - read-pkg-up "^1.0.1" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^1.0.2" - which-module "^1.0.0" - y18n "^3.2.1" - yargs-parser "^5.0.0" - -yargs@^6.6.0: - version "6.6.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" - dependencies: - camelcase "^3.0.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^1.4.0" - read-pkg-up "^1.0.1" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^1.0.2" - which-module "^1.0.0" - y18n "^3.2.1" - yargs-parser "^4.2.0" - -yargs@~3.10.0: - version "3.10.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" - dependencies: - camelcase "^1.0.2" - cliui "^2.1.0" - decamelize "^1.0.0" - window-size "0.1.0" - -yauzl@2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" - dependencies: - fd-slicer "~1.0.1" - -yeast@0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" - -zip-stream@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-1.1.1.tgz#5216b48bbb4d2651f64d5c6e6f09eb4a7399d557" - dependencies: - archiver-utils "^1.3.0" - compress-commons "^1.1.0" - lodash "^4.8.0" - readable-stream "^2.0.0" From a6b11968a476bf690250fd59ed568ccf72142499 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 23 May 2017 16:15:52 +0100 Subject: [PATCH 074/147] s/tabs/spaces/ --- src/vector/index.js | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/vector/index.js b/src/vector/index.js index ba06de33..f1af7ebc 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -282,14 +282,14 @@ async function loadApp() { } if (!configJson.languages) { - let languages; - try { - languages = await languageHandler.getAllLanguageKeysFromJson(); - } catch (e) { - console.log("couldn't load languages from languages.json: error = "+e); - languages = ['en']; - } - configJson.languages = languages; + let languages; + try { + languages = await languageHandler.getAllLanguageKeysFromJson(); + } catch (e) { + console.log("couldn't load languages from languages.json: error = "+e); + languages = ['en']; + } + configJson.languages = languages; } if (window.localStorage && window.localStorage.getItem('mx_accepts_unsupported_browser')) { @@ -339,16 +339,16 @@ async function loadApp() { } function loadLanguage(callback) { - const _localSettings = getLocalSettings(); - var languages = []; - if (!_localSettings.hasOwnProperty('language')) { - languages = languageHandler.getNormalizedLanguageKeys(languageHandler.getLanguageFromBrowser()); - }else { - languages = languageHandler.getNormalizedLanguageKeys(_localSettings.language); - } - languageHandler.setLanguage(languages, counterpart); - setLocalSetting('language', languages[0]); - callback(); + const _localSettings = getLocalSettings(); + var languages = []; + if (!_localSettings.hasOwnProperty('language')) { + languages = languageHandler.getNormalizedLanguageKeys(languageHandler.getLanguageFromBrowser()); + }else { + languages = languageHandler.getNormalizedLanguageKeys(_localSettings.language); + } + languageHandler.setLanguage(languages, counterpart); + setLocalSetting('language', languages[0]); + callback(); } loadLanguage(loadApp); From 241d95293e1dcd1452dc4c07a314bfa609ae205c Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 23 May 2017 16:44:54 +0100 Subject: [PATCH 075/147] Code style fixes Use async/await consistently rather than flipping between that and callbacks, s/var/let/, indenting --- src/vector/index.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/vector/index.js b/src/vector/index.js index f1af7ebc..62595c22 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -247,6 +247,7 @@ function onLoadCompleted() { } async function loadApp() { + await loadLanguage(); const fragparts = parseQsFromFragment(window.location); const params = parseQs(window.location); @@ -338,17 +339,16 @@ async function loadApp() { } } -function loadLanguage(callback) { +async function loadLanguage() { const _localSettings = getLocalSettings(); - var languages = []; + let languages = []; if (!_localSettings.hasOwnProperty('language')) { languages = languageHandler.getNormalizedLanguageKeys(languageHandler.getLanguageFromBrowser()); - }else { - languages = languageHandler.getNormalizedLanguageKeys(_localSettings.language); + } else { + languages = languageHandler.getNormalizedLanguageKeys(_localSettings.language); } languageHandler.setLanguage(languages, counterpart); setLocalSetting('language', languages[0]); - callback(); } -loadLanguage(loadApp); +loadApp(); From caca5cc00bc39828421b2c779c03255bb09cae20 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 23 May 2017 17:06:02 +0100 Subject: [PATCH 076/147] Remove c+ped UserSettingsStore functions as they don't seem to be necessary --- src/vector/index.js | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) diff --git a/src/vector/index.js b/src/vector/index.js index 62595c22..d1bf914b 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -57,7 +57,6 @@ var RunModernizrTests = require("./modernizr"); // this side-effects a global var ReactDOM = require("react-dom"); // Workaround for broken export import * as counterpart from 'counterpart-riot'; -var languageHandler = require("matrix-react-sdk/lib/languageHandler"); var sdk = require("matrix-react-sdk"); var PlatformPeg = require("matrix-react-sdk/lib/PlatformPeg"); sdk.loadSkin(require('../component-index')); @@ -66,6 +65,8 @@ var UpdateChecker = require("./updater"); var q = require('q'); var request = require('browser-request'); import Modal from 'matrix-react-sdk/lib/Modal'; +import * as UserSettingsStore from 'matrix-react-sdk/lib/UserSettingsStore'; +import languageHandler from 'matrix-react-sdk/lib/languageHandler'; import url from 'url'; @@ -218,20 +219,6 @@ function getConfig() { return deferred.promise; } - -// This is needed to not load the UserSettingsStore before languages are laoded -function getLocalSettings() { - const localSettingsString = localStorage.getItem('mx_local_settings') || '{}'; - return JSON.parse(localSettingsString); -} -// This is needed to not load the UserSettingsStore before languages are laoded -function setLocalSetting(type, value) { - const settings = getLocalSettings(); - settings[type] = value; - // FIXME: handle errors - localStorage.setItem('mx_local_settings', JSON.stringify(settings)); -} - function onLoadCompleted() { // if we did a token login, we're now left with the token, hs and is // url as query params in the url; a little nasty but let's redirect to @@ -340,13 +327,8 @@ async function loadApp() { } async function loadLanguage() { - const _localSettings = getLocalSettings(); - let languages = []; - if (!_localSettings.hasOwnProperty('language')) { - languages = languageHandler.getNormalizedLanguageKeys(languageHandler.getLanguageFromBrowser()); - } else { - languages = languageHandler.getNormalizedLanguageKeys(_localSettings.language); - } + const lang = UserSettingsStore.getLocalSetting('language', languageHandler.getLanguageFromBrowser()); + const languages = languageHandler.getNormalizedLanguageKeys(lang); languageHandler.setLanguage(languages, counterpart); setLocalSetting('language', languages[0]); } From af6cc7bf9c1dc9fdc2fd5c145713a126a60c1830 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 23 May 2017 17:06:49 +0100 Subject: [PATCH 077/147] I don't really see why this is necessary --- src/vector/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/vector/index.js b/src/vector/index.js index d1bf914b..37d444ff 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -330,7 +330,6 @@ async function loadLanguage() { const lang = UserSettingsStore.getLocalSetting('language', languageHandler.getLanguageFromBrowser()); const languages = languageHandler.getNormalizedLanguageKeys(lang); languageHandler.setLanguage(languages, counterpart); - setLocalSetting('language', languages[0]); } loadApp(); From ff1567ed2a73bb09776223cb89f2fc762d4b42ad Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Tue, 23 May 2017 17:09:09 +0100 Subject: [PATCH 078/147] Remove spurious import --- src/vector/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/vector/index.js b/src/vector/index.js index 37d444ff..ad1592e8 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -64,7 +64,6 @@ var VectorConferenceHandler = require('../VectorConferenceHandler'); var UpdateChecker = require("./updater"); var q = require('q'); var request = require('browser-request'); -import Modal from 'matrix-react-sdk/lib/Modal'; import * as UserSettingsStore from 'matrix-react-sdk/lib/UserSettingsStore'; import languageHandler from 'matrix-react-sdk/lib/languageHandler'; From d5425b62a18c55821e4dc3215f2c775a5624856d Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Wed, 24 May 2017 11:27:06 +0100 Subject: [PATCH 079/147] Don't inject languages into the config If we're defaulting this it should really be by the component itself or with the other defaukts in SdkConfig, but we've decided to leave out support for reading languages from the config file as it's only useful for a Riot admin to restrict the choice of languages available to users which is of debateable use. --- src/vector/index.js | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/vector/index.js b/src/vector/index.js index ad1592e8..f1ddfd66 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -65,7 +65,7 @@ var UpdateChecker = require("./updater"); var q = require('q'); var request = require('browser-request'); import * as UserSettingsStore from 'matrix-react-sdk/lib/UserSettingsStore'; -import languageHandler from 'matrix-react-sdk/lib/languageHandler'; +import * as languageHandler from 'matrix-react-sdk/lib/languageHandler'; import url from 'url'; @@ -268,17 +268,6 @@ async function loadApp() { configError = e; } - if (!configJson.languages) { - let languages; - try { - languages = await languageHandler.getAllLanguageKeysFromJson(); - } catch (e) { - console.log("couldn't load languages from languages.json: error = "+e); - languages = ['en']; - } - configJson.languages = languages; - } - if (window.localStorage && window.localStorage.getItem('mx_accepts_unsupported_browser')) { console.log('User has previously accepted risks in using an unsupported browser'); validBrowser = true; From d4aa428321ec8536c4fcf2fdb9a94ef94b0c082c Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Wed, 24 May 2017 14:23:34 +0100 Subject: [PATCH 080/147] Move translation status image to i18n section --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c65cca82..4c5452e1 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,6 @@ Riot Riot (formerly known as Vector) is a Matrix web client built using the Matrix React SDK (https://github.com/matrix-org/matrix-react-sdk). -[<img src="https://translate.nordgedanken.de/widgets/riot-web/-/multi-auto.svg" alt="Translationsstatus" width="340">](https://translate.nordgedanken.de/engage/riot-web/?utm_source=widget) - Getting Started =============== @@ -286,6 +284,9 @@ You'll need to do this in each new terminal you open before building Riot. How to add a new translation? ============================= +[<img src="https://translate.nordgedanken.de/widgets/riot-web/-/multi-auto.svg" alt="translationsstatus" width="340">](https://translate.nordgedanken.de/engage/riot-web/?utm_source=widget) + + Head to the [translating doc](docs/translating.md) Adding Strings to the translations (Developer Guide) From aaf948017a81448f64034ce979f366d9b3e7242e Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Wed, 24 May 2017 14:37:12 +0100 Subject: [PATCH 081/147] Make language dropdown a more sensible width --- .../vector/css/matrix-react-sdk/structures/_UserSettings.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/skins/vector/css/matrix-react-sdk/structures/_UserSettings.scss b/src/skins/vector/css/matrix-react-sdk/structures/_UserSettings.scss index fe60aacb..f72a6f08 100644 --- a/src/skins/vector/css/matrix-react-sdk/structures/_UserSettings.scss +++ b/src/skins/vector/css/matrix-react-sdk/structures/_UserSettings.scss @@ -131,6 +131,10 @@ limitations under the License. position: absolute; } +.mx_UserSettings_language { + width: 200px; +} + .mx_UserSettings_profileTable { display: table; From ee85eb961a36b13effec8d2d23373c14a0f2d2d3 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Thu, 25 May 2017 11:39:56 +0100 Subject: [PATCH 082/147] Bulk change counterpart imports to use react-sdk wrapper function, rather than using counterpart directly. --- src/components/structures/BottomLeftMenu.js | 2 +- src/components/structures/RightPanel.js | 2 +- src/components/structures/RoomDirectory.js | 2 +- src/components/structures/RoomSubList.js | 2 +- src/components/structures/SearchBox.js | 2 +- src/components/views/context_menus/MessageContextMenu.js | 2 +- src/components/views/context_menus/RoomTileContextMenu.js | 2 +- src/components/views/elements/ImageView.js | 2 +- src/components/views/globals/MatrixToolbar.js | 2 +- src/components/views/login/VectorCustomServerDialog.js | 2 +- src/components/views/login/VectorLoginFooter.js | 2 +- src/components/views/messages/DateSeparator.js | 2 +- src/components/views/rooms/DNDRoomTile.js | 2 +- src/components/views/settings/Notifications.js | 2 +- src/notifications/VectorPushRulesDefinitions.js | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/components/structures/BottomLeftMenu.js b/src/components/structures/BottomLeftMenu.js index 57da85eb..c8c7ba2c 100644 --- a/src/components/structures/BottomLeftMenu.js +++ b/src/components/structures/BottomLeftMenu.js @@ -19,7 +19,7 @@ limitations under the License. var React = require('react'); var ReactDOM = require('react-dom'); var sdk = require('matrix-react-sdk'); -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; var dis = require('matrix-react-sdk/lib/dispatcher'); var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); diff --git a/src/components/structures/RightPanel.js b/src/components/structures/RightPanel.js index 6a099bf3..c12952fb 100644 --- a/src/components/structures/RightPanel.js +++ b/src/components/structures/RightPanel.js @@ -17,7 +17,7 @@ limitations under the License. 'use strict'; import React from 'react'; -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; import sdk from 'matrix-react-sdk'; import Matrix from "matrix-js-sdk"; import dis from 'matrix-react-sdk/lib/dispatcher'; diff --git a/src/components/structures/RoomDirectory.js b/src/components/structures/RoomDirectory.js index efd61ef9..e9350847 100644 --- a/src/components/structures/RoomDirectory.js +++ b/src/components/structures/RoomDirectory.js @@ -30,7 +30,7 @@ var linkifyMatrix = require('matrix-react-sdk/lib/linkify-matrix'); var sanitizeHtml = require('sanitize-html'); var q = require('q'); -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; import {instanceForInstanceId, protocolNameForInstanceId} from '../../utils/DirectoryUtils'; diff --git a/src/components/structures/RoomSubList.js b/src/components/structures/RoomSubList.js index 2dec274e..b368948c 100644 --- a/src/components/structures/RoomSubList.js +++ b/src/components/structures/RoomSubList.js @@ -21,7 +21,7 @@ var ReactDOM = require('react-dom'); var classNames = require('classnames'); var DropTarget = require('react-dnd').DropTarget; var sdk = require('matrix-react-sdk'); -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; var dis = require('matrix-react-sdk/lib/dispatcher'); var Unread = require('matrix-react-sdk/lib/Unread'); var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg'); diff --git a/src/components/structures/SearchBox.js b/src/components/structures/SearchBox.js index 42777ed0..faee0b5f 100644 --- a/src/components/structures/SearchBox.js +++ b/src/components/structures/SearchBox.js @@ -17,7 +17,7 @@ limitations under the License. 'use strict'; var React = require('react'); -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; var sdk = require('matrix-react-sdk') var dis = require('matrix-react-sdk/lib/dispatcher'); var rate_limited_func = require('matrix-react-sdk/lib/ratelimitedfunc'); diff --git a/src/components/views/context_menus/MessageContextMenu.js b/src/components/views/context_menus/MessageContextMenu.js index 73934cab..227cee10 100644 --- a/src/components/views/context_menus/MessageContextMenu.js +++ b/src/components/views/context_menus/MessageContextMenu.js @@ -21,7 +21,7 @@ var React = require('react'); var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg'); var dis = require('matrix-react-sdk/lib/dispatcher'); var sdk = require('matrix-react-sdk'); -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; var Modal = require('matrix-react-sdk/lib/Modal'); var Resend = require("matrix-react-sdk/lib/Resend"); import * as UserSettingsStore from 'matrix-react-sdk/lib/UserSettingsStore'; diff --git a/src/components/views/context_menus/RoomTileContextMenu.js b/src/components/views/context_menus/RoomTileContextMenu.js index 4401e264..a7b19689 100644 --- a/src/components/views/context_menus/RoomTileContextMenu.js +++ b/src/components/views/context_menus/RoomTileContextMenu.js @@ -21,7 +21,7 @@ import q from 'q'; import React from 'react'; import classNames from 'classnames'; import sdk from 'matrix-react-sdk'; -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg'; import dis from 'matrix-react-sdk/lib/dispatcher'; import DMRoomMap from 'matrix-react-sdk/lib/utils/DMRoomMap'; diff --git a/src/components/views/elements/ImageView.js b/src/components/views/elements/ImageView.js index 187a7bfc..dd0490ac 100644 --- a/src/components/views/elements/ImageView.js +++ b/src/components/views/elements/ImageView.js @@ -25,7 +25,7 @@ var filesize = require('filesize'); var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); const Modal = require('matrix-react-sdk/lib/Modal'); const sdk = require('matrix-react-sdk'); -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; module.exports = React.createClass({ displayName: 'ImageView', diff --git a/src/components/views/globals/MatrixToolbar.js b/src/components/views/globals/MatrixToolbar.js index aef32d99..6d47ad1b 100644 --- a/src/components/views/globals/MatrixToolbar.js +++ b/src/components/views/globals/MatrixToolbar.js @@ -17,7 +17,7 @@ limitations under the License. 'use strict'; var React = require('react'); -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; var Notifier = require("matrix-react-sdk/lib/Notifier"); var sdk = require('matrix-react-sdk') var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton'); diff --git a/src/components/views/login/VectorCustomServerDialog.js b/src/components/views/login/VectorCustomServerDialog.js index 1190c69e..d7fe545a 100644 --- a/src/components/views/login/VectorCustomServerDialog.js +++ b/src/components/views/login/VectorCustomServerDialog.js @@ -15,7 +15,7 @@ limitations under the License. */ var React = require("react"); -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; module.exports = React.createClass({ displayName: 'VectorCustomServerDialog', diff --git a/src/components/views/login/VectorLoginFooter.js b/src/components/views/login/VectorLoginFooter.js index 32929d43..e905afc1 100644 --- a/src/components/views/login/VectorLoginFooter.js +++ b/src/components/views/login/VectorLoginFooter.js @@ -17,7 +17,7 @@ limitations under the License. 'use strict'; var React = require('react'); -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; module.exports = React.createClass({ displayName: 'VectorLoginFooter', diff --git a/src/components/views/messages/DateSeparator.js b/src/components/views/messages/DateSeparator.js index 0810b18b..f2ea3ffa 100644 --- a/src/components/views/messages/DateSeparator.js +++ b/src/components/views/messages/DateSeparator.js @@ -17,7 +17,7 @@ limitations under the License. // 'use strict'; import React from 'react'; -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; import DateUtils from 'matrix-react-sdk/lib/DateUtils'; function getdaysArray() { diff --git a/src/components/views/rooms/DNDRoomTile.js b/src/components/views/rooms/DNDRoomTile.js index 3180103e..6abb5bd0 100644 --- a/src/components/views/rooms/DNDRoomTile.js +++ b/src/components/views/rooms/DNDRoomTile.js @@ -23,7 +23,7 @@ import {DropTarget} from 'react-dnd'; import dis from 'matrix-react-sdk/lib/dispatcher'; import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg'; import sdk from 'matrix-react-sdk'; -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; import RoomTile from 'matrix-react-sdk/lib/components/views/rooms/RoomTile'; import * as Rooms from 'matrix-react-sdk/lib/Rooms'; import Modal from 'matrix-react-sdk/lib/Modal'; diff --git a/src/components/views/settings/Notifications.js b/src/components/views/settings/Notifications.js index 2599cf18..cbffe279 100644 --- a/src/components/views/settings/Notifications.js +++ b/src/components/views/settings/Notifications.js @@ -16,7 +16,7 @@ limitations under the License. 'use strict'; var React = require('react'); -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; var q = require("q"); var sdk = require('matrix-react-sdk'); var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg'); diff --git a/src/notifications/VectorPushRulesDefinitions.js b/src/notifications/VectorPushRulesDefinitions.js index 6aea7137..b9ec3321 100644 --- a/src/notifications/VectorPushRulesDefinitions.js +++ b/src/notifications/VectorPushRulesDefinitions.js @@ -18,7 +18,7 @@ limitations under the License. var StandardActions = require('./StandardActions'); var PushRuleVectorState = require('./PushRuleVectorState'); -import _t from 'counterpart-riot'; +import { _t } from 'matrix-react-sdk/lib/languageHandler'; class VectorPushRuleDefinition { constructor(opts) { From b95da4a40c495566b090badd6c455ebd4c245a2c Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Thu, 25 May 2017 11:40:31 +0100 Subject: [PATCH 083/147] No longer need counterpart We now use stock counterpart, but indirectly via react-sdk so no need to depend on it directly. --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index fcd568c2..79b0bc10 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,6 @@ "babel-runtime": "^6.11.6", "browser-request": "^0.3.3", "classnames": "^2.1.2", - "counterpart-riot": "^0.17.9", "draft-js": "^0.8.1", "extract-text-webpack-plugin": "^0.9.1", "favico.js": "^0.3.10", From 7636212bed961ba2b44f8ec5104dc20eb59fa7d9 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Thu, 25 May 2017 12:08:47 +0100 Subject: [PATCH 084/147] Remove refs to counterpart and remove extCounterpart which is unnecessary now we just use a single counterpart instance --- src/vector/index.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/vector/index.js b/src/vector/index.js index f1ddfd66..193738e2 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -55,8 +55,6 @@ if (process.env.NODE_ENV !== 'production') { var RunModernizrTests = require("./modernizr"); // this side-effects a global var ReactDOM = require("react-dom"); -// Workaround for broken export -import * as counterpart from 'counterpart-riot'; var sdk = require("matrix-react-sdk"); var PlatformPeg = require("matrix-react-sdk/lib/PlatformPeg"); sdk.loadSkin(require('../component-index')); @@ -317,7 +315,7 @@ async function loadApp() { async function loadLanguage() { const lang = UserSettingsStore.getLocalSetting('language', languageHandler.getLanguageFromBrowser()); const languages = languageHandler.getNormalizedLanguageKeys(lang); - languageHandler.setLanguage(languages, counterpart); + languageHandler.setLanguage(languages); } loadApp(); From c4c78c9b3e2e6cf3bf78d57886a174bf6f9499b2 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 25 May 2017 12:42:53 +0100 Subject: [PATCH 085/147] split webContents context handling into own file, as main was growing add handlers for editable fields, with Cut Copy Paste Undo Redo etc add Copy Image feature to all images, working on not only the download buttons now Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/electron-main.js | 60 +---------- electron_app/src/webcontents-handler.js | 126 ++++++++++++++++++++++++ 2 files changed, 128 insertions(+), 58 deletions(-) create mode 100644 electron_app/src/webcontents-handler.js diff --git a/electron_app/src/electron-main.js b/electron_app/src/electron-main.js index ab844bd3..26f8f972 100644 --- a/electron_app/src/electron-main.js +++ b/electron_app/src/electron-main.js @@ -24,11 +24,11 @@ const check_squirrel_hooks = require('./squirrelhooks'); if (check_squirrel_hooks()) return; const electron = require('electron'); -const url = require('url'); const tray = require('./tray'); const VectorMenu = require('./vectormenu'); +const webContentsHandler = require('./webcontents-handler'); const windowStateKeeper = require('electron-window-state'); @@ -42,60 +42,12 @@ try { // Continue with the defaults (ie. an empty config) } -const PERMITTED_URL_SCHEMES = [ - 'http:', - 'https:', - 'mailto:', -]; - const UPDATE_POLL_INTERVAL_MS = 60 * 60 * 1000; const INITIAL_UPDATE_DELAY_MS = 30 * 1000; let mainWindow = null; let appQuitting = false; -function safeOpenURL(target) { - // openExternal passes the target to open/start/xdg-open, - // so put fairly stringent limits on what can be opened - // (for instance, open /bin/sh does indeed open a terminal - // with a shell, albeit with no arguments) - const parsed_url = url.parse(target); - if (PERMITTED_URL_SCHEMES.indexOf(parsed_url.protocol) > -1) { - // explicitly use the URL re-assembled by the url library, - // so we know the url parser has understood all the parts - // of the input string - const new_target = url.format(parsed_url); - electron.shell.openExternal(new_target); - } -} - -function onWindowOrNavigate(ev, target) { - // always prevent the default: if something goes wrong, - // we don't want to end up opening it in the electron - // app, as we could end up opening any sort of random - // url in a window that has node scripting access. - ev.preventDefault(); - safeOpenURL(target); -} - -function onLinkContextMenu(ev, params) { - const popup_menu = new electron.Menu(); - popup_menu.append(new electron.MenuItem({ - label: params.linkURL, - click() { - safeOpenURL(params.linkURL); - }, - })); - popup_menu.append(new electron.MenuItem({ - label: 'Copy Link Address', - click() { - electron.clipboard.writeText(params.linkURL); - }, - })); - popup_menu.popup(); - ev.preventDefault(); -} - function installUpdate() { // for some reason, quitAndInstall does not fire the // before-quit event, so we need to set the flag here. @@ -259,15 +211,7 @@ electron.app.on('ready', () => { } }); - mainWindow.webContents.on('new-window', onWindowOrNavigate); - mainWindow.webContents.on('will-navigate', onWindowOrNavigate); - - mainWindow.webContents.on('context-menu', function(ev, params) { - if (params.linkURL) { - onLinkContextMenu(ev, params); - } - }); - + webContentsHandler(mainWindow.webContents); mainWindowState.manage(mainWindow); }); diff --git a/electron_app/src/webcontents-handler.js b/electron_app/src/webcontents-handler.js new file mode 100644 index 00000000..35785e8b --- /dev/null +++ b/electron_app/src/webcontents-handler.js @@ -0,0 +1,126 @@ +const {clipboard, nativeImage, Menu, MenuItem, shell} = require('electron'); +const url = require('url'); + +let webContents; + +const PERMITTED_URL_SCHEMES = [ + 'http:', + 'https:', + 'mailto:', +]; + +function safeOpenURL(target) { + // openExternal passes the target to open/start/xdg-open, + // so put fairly stringent limits on what can be opened + // (for instance, open /bin/sh does indeed open a terminal + // with a shell, albeit with no arguments) + const parsedUrl = url.parse(target); + if (PERMITTED_URL_SCHEMES.indexOf(parsedUrl.protocol) > -1) { + // explicitly use the URL re-assembled by the url library, + // so we know the url parser has understood all the parts + // of the input string + const newTarget = url.format(parsedUrl); + shell.openExternal(newTarget); + } +} + +function onWindowOrNavigate(ev, target) { + // always prevent the default: if something goes wrong, + // we don't want to end up opening it in the electron + // app, as we could end up opening any sort of random + // url in a window that has node scripting access. + ev.preventDefault(); + safeOpenURL(target); +} + +function onLinkContextMenu(ev, params) { + const url = params.linkURL || params.srcURL; + + const popupMenu = new Menu(); + popupMenu.append(new MenuItem({ + label: url, + click() { + safeOpenURL(url); + }, + })); + + if (params.mediaType && params.mediaType === 'image' && !url.startsWith('file://')) { + popupMenu.append(new MenuItem({ + label: 'Copy Image', + click() { + if (url.startsWith('data:')) { + clipboard.writeImage(nativeImage.createFromDataURL(url)); + } else { + ev.sender.copyImageAt(params.x, params.y); + } + }, + })); + } + + popupMenu.append(new MenuItem({ + label: 'Copy Link Address', + click() { + clipboard.writeText(url); + }, + })); + popupMenu.popup(); + ev.preventDefault(); +} + +function _CutCopyPasteSelectContextMenus(params) { + return [{ + role: 'cut', + enabled: params.editFlags.canCut, + }, { + role: 'copy', + enabled: params.editFlags.canCopy, + }, { + role: 'paste', + enabled: params.editFlags.canPaste, + }, { + role: 'pasteandmatchstyle', + enabled: params.editFlags.canPaste, + }, { + role: 'selectall', + enabled: params.editFlags.canSelectAll, + }]; +} + +function onSelectedContextMenu(ev, params) { + const items = _CutCopyPasteSelectContextMenus(params); + const popupMenu = Menu.buildFromTemplate(items); + + popupMenu.popup(); + ev.preventDefault(); +} + +function onEditableContextMenu(ev, params) { + const items = [ + { role: 'undo' }, + { role: 'redo', enabled: params.editFlags.canRedo }, + { type: 'separator' }, + ].concat(_CutCopyPasteSelectContextMenus(params)); + + const popupMenu = Menu.buildFromTemplate(items); + + popupMenu.popup(); + ev.preventDefault(); +} + + +module.exports = (_webContents) => { + webContents = _webContents; + + webContents.on('new-window', onWindowOrNavigate); + webContents.on('will-navigate', onWindowOrNavigate); + + webContents.on('context-menu', function(ev, params) { + if (params.linkURL || params.srcURL) { + onLinkContextMenu(ev, params); + } else if (params.selectionText) { + onSelectedContextMenu(ev, params); + } else if (params.isEditable) { + onEditableContextMenu(ev, params); + } + }); +}; From 727e2678537c05b6ce72bf1a3f43ff3f517a92eb Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 25 May 2017 12:47:36 +0100 Subject: [PATCH 086/147] we don't really need a webContents like that, so pass if needed Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- electron_app/src/webcontents-handler.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/electron_app/src/webcontents-handler.js b/electron_app/src/webcontents-handler.js index 35785e8b..37416ebe 100644 --- a/electron_app/src/webcontents-handler.js +++ b/electron_app/src/webcontents-handler.js @@ -1,8 +1,6 @@ const {clipboard, nativeImage, Menu, MenuItem, shell} = require('electron'); const url = require('url'); -let webContents; - const PERMITTED_URL_SCHEMES = [ 'http:', 'https:', @@ -108,9 +106,7 @@ function onEditableContextMenu(ev, params) { } -module.exports = (_webContents) => { - webContents = _webContents; - +module.exports = (webContents) => { webContents.on('new-window', onWindowOrNavigate); webContents.on('will-navigate', onWindowOrNavigate); From 9cd04509bf551fad45dbbf9354dd463b716994cc Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@googlemail.com> Date: Thu, 25 May 2017 13:22:01 +0100 Subject: [PATCH 087/147] Add `Chat` to Linux app categories most dists inc Arch have Chat and IRCClient, though the latter isn't exactly correct so missing it --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 79b0bc10..55758033 100644 --- a/package.json +++ b/package.json @@ -158,7 +158,7 @@ ], "linux": { "target": "deb", - "category": "Network;InstantMessaging;", + "category": "Network;InstantMessaging;Chat", "maintainer": "support@riot.im", "desktop": { "StartupWMClass": "riot-web" From 003238c1e73127b83d537fb1ddaa9e2a9a2c31c5 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Thu, 25 May 2017 16:47:12 +0100 Subject: [PATCH 088/147] Update for new API in react-sdk We now get multiple languages from the browser as there may be a whole preference list --- src/vector/index.js | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/src/vector/index.js b/src/vector/index.js index 193738e2..14f8bb4b 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -313,9 +313,21 @@ async function loadApp() { } async function loadLanguage() { - const lang = UserSettingsStore.getLocalSetting('language', languageHandler.getLanguageFromBrowser()); - const languages = languageHandler.getNormalizedLanguageKeys(lang); - languageHandler.setLanguage(languages); + const prefLang = UserSettingsStore.getLocalSetting('language'); + let langs = []; + + if (!prefLang) { + languageHandler.getLanguagesFromBrowser().forEach((l) => { + langs.push(...languageHandler.getNormalizedLanguageKeys(l)); + }); + } else { + langs = [prefLang]; + } + try { + await languageHandler.setLanguage(langs); + } catch (e) { + console.error("Unable to set language", e); + } } loadApp(); From c15a66d1d4dfe268d9f8490d0eaea7ddb2741986 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Thu, 25 May 2017 17:21:41 +0100 Subject: [PATCH 089/147] Fix up notification settings strings --- src/components/views/settings/Notifications.js | 2 +- src/i18n/be.json | 4 ++-- src/i18n/da.json | 2 +- src/i18n/de_DE.json | 2 +- src/i18n/en_EN.json | 3 ++- src/i18n/pt.json | 2 +- src/i18n/pt_BR.json | 3 +-- src/i18n/ru.json | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/components/views/settings/Notifications.js b/src/components/views/settings/Notifications.js index cbffe279..d69a78cf 100644 --- a/src/components/views/settings/Notifications.js +++ b/src/components/views/settings/Notifications.js @@ -785,7 +785,7 @@ module.exports = React.createClass({ if (externalRules.length) { advancedSettings = ( <div> - <h3>{ _t('Advanced notifications settings') }</h3> + <h3>{ _t('Advanced notification settings') }</h3> { _t('There are advanced notifications which are not shown here') }.<br/> { _t('You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply') }. <ul> diff --git a/src/i18n/be.json b/src/i18n/be.json index e6e824b4..0c6e9e30 100644 --- a/src/i18n/be.json +++ b/src/i18n/be.json @@ -56,7 +56,7 @@ "Noisy": "Шумна", "Notification targets": "Мэты апавяшчэння", "Notifications": "Апавяшчэнні", - "Notifications on the following keywords follow rules which can’t be displayed here": "Апавяшчэнні па наступных ключавых словах прытрымліваюцца правілаў, якія не могуць быць адлюстраваны тут", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Апавяшчэнні па наступных ключавых словах прытрымліваюцца правілаў, якія не могуць быць адлюстраваны тут", "Notify for all other messages/rooms": "Апавяшчаць для ўсіх іншых паведамленняў/пакояў", "Notify me for anything else": "Паведаміць мне што-небудзь яшчэ", "Off": "Выключыць", @@ -85,4 +85,4 @@ "The server may be unavailable or overloaded": "Сервер можа быць недаступны ці перагружаны", "This room is inaccessible to guests. You may be able to join if you register": "Гэты пакой недаступны для гасцей. Вы можаце далучыцца, калі вы зарэгіструецеся", " to room": " ў пакоі" -} \ No newline at end of file +} diff --git a/src/i18n/da.json b/src/i18n/da.json index 890ab7bb..74c64396 100644 --- a/src/i18n/da.json +++ b/src/i18n/da.json @@ -49,7 +49,7 @@ "Noisy": "Støjende", "Notification targets": "Meddelelsesmål", "Notifications": "Meddelser", - "Notifications on the following keywords follow rules which can’t be displayed here": "Meddelelser om følgende søgeord følger regler, der ikke kan vises her", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Meddelelser om følgende søgeord følger regler, der ikke kan vises her:", "Notify for all other messages/rooms": "Underret om alle andre meddelelser / rum", "Notify me for anything else": "Underret mig om noget andet", "Off": "Slukket", diff --git a/src/i18n/de_DE.json b/src/i18n/de_DE.json index 2bc23bee..0831ff8e 100644 --- a/src/i18n/de_DE.json +++ b/src/i18n/de_DE.json @@ -61,7 +61,7 @@ "Low Priority": "Niedrige Priorität", "Noisy": "Laut", "Notification targets": "Benachrichtigungsziel", - "Notifications on the following keywords follow rules which can’t be displayed here": "Benachrichtigungen zu folgenden Stichwörtern folgen Regeln, die hier nicht angezeigt werden können", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Benachrichtigungen zu folgenden Stichwörtern folgen Regeln, die hier nicht angezeigt werden können:", "Notify for all other messages/rooms": "Benachrichtigung für alle anderen Mitteilungen/ Räume", "Operation failed": "Ausführung fehlgeschlagen", "Reject": "ablehnen", diff --git a/src/i18n/en_EN.json b/src/i18n/en_EN.json index 67d49864..89df1d22 100644 --- a/src/i18n/en_EN.json +++ b/src/i18n/en_EN.json @@ -1,5 +1,6 @@ { "Add an email address above to configure email notifications": "Add an email address above to configure email notifications", + "Advanced notification settings": "Advanced notification settings", "All messages": "All messages", "All messages (loud)": "All messages (loud)", "All notifications are currently disabled for all targets.": "All notifications are currently disabled for all targets.", @@ -63,7 +64,7 @@ "Noisy": "Noisy", "Notification targets": "Notification targets", "Notifications": "Notifications", - "Notifications on the following keywords follow rules which can’t be displayed here": "Notifications on the following keywords follow rules which can’t be displayed here", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Notifications on the following keywords follow rules which can’t be displayed here:", "Notify for all other messages/rooms": "Notify for all other messages/rooms", "Notify me for anything else": "Notify me for anything else", "Off": "Off", diff --git a/src/i18n/pt.json b/src/i18n/pt.json index befbb6a7..7f3aa82e 100644 --- a/src/i18n/pt.json +++ b/src/i18n/pt.json @@ -56,7 +56,7 @@ "Noisy": "Barulhento", "Notification targets": "Alvos de notificação", "Notifications": "Notificações", - "Notifications on the following keywords follow rules which can’t be displayed here:": "Notificações sobre as seguintes palavras-chave seguem regras que não podem ser exibidas aqui", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Notificações sobre as seguintes palavras-chave seguem regras que não podem ser exibidas aqui:", "Notify for all other messages/rooms": "Notificar para todas as outras mensagens e salas", "Notify me for anything else": "Notificar-me sobre qualquer outro evento", "Off": "Desativado", diff --git a/src/i18n/pt_BR.json b/src/i18n/pt_BR.json index ce1bd6c0..33a40764 100644 --- a/src/i18n/pt_BR.json +++ b/src/i18n/pt_BR.json @@ -63,7 +63,7 @@ "Noisy": "Barulhento", "Notification targets": "Alvos de notificação", "Notifications": "Notificações", - "Notifications on the following keywords follow rules which can’t be displayed here:": "Notificações sobre as seguintes palavras-chave seguem regras que não podem ser exibidas aqui", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Notificações sobre as seguintes palavras-chave seguem regras que não podem ser exibidas aqui:", "Notify for all other messages/rooms": "Notificar para todas as outras mensagens e salas", "Notify me for anything else": "Notificar-me sobre qualquer outro evento", "Off": "Desativado", @@ -119,6 +119,5 @@ "All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desabilitadas para todos os destinatários.", "#example": "#exemplo", "Failed to remove tag %(prevTag)s from room": "Não foi possível remover a marcação %(prevTag)s desta sala", - "Notifications on the following keywords follow rules which can’t be displayed here": "As notificações sobre as palavras-chave abaixo seguem regras que não podem ser mostradas aqui", "Welcome page": "Página de boas vindas" } diff --git a/src/i18n/ru.json b/src/i18n/ru.json index 2b0f7119..c0a7a284 100644 --- a/src/i18n/ru.json +++ b/src/i18n/ru.json @@ -49,7 +49,7 @@ "Noisy": "Шумный", "Notification targets": "Цели уведомления", "Notifications": "Уведомления", - "Notifications on the following keywords follow rules which can’t be displayed here": "Уведомления по следующим ключевым словам соответствуют правилам, которые нельзя отобразить здесь", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Уведомления по следующим ключевым словам соответствуют правилам, которые нельзя отобразить здесь", "Notify for all other messages/rooms": "Уведомить обо всех других сообщениях/комнатах", "Notify me for anything else": "Уведомить меня обо всем кроме", "Off": "Выключить", From 2982174028e3079640c040dce16f5b4dff7b9557 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Thu, 25 May 2017 18:21:40 +0100 Subject: [PATCH 090/147] No need for repeated OKs anymore --- src/components/views/settings/Notifications.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/views/settings/Notifications.js b/src/components/views/settings/Notifications.js index d69a78cf..0c114e40 100644 --- a/src/components/views/settings/Notifications.js +++ b/src/components/views/settings/Notifications.js @@ -179,7 +179,6 @@ module.exports = React.createClass({ title: _t('Keywords'), description: _t('Enter keywords separated by a comma') + ':', value: keywords, - button: _t('OK'), onFinished: function onFinished(should_leave, newValue) { if (should_leave && newValue !== keywords) { From bde501a9ce6b89b035030b02fff846ba55bd8077 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 13:10:57 +0100 Subject: [PATCH 091/147] Languages on config file is no longer a thing --- config.sample.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.sample.json b/config.sample.json index e8239df9..3c513f7a 100644 --- a/config.sample.json +++ b/config.sample.json @@ -10,6 +10,5 @@ "servers": [ "matrix.org" ] - }, - "languages": ["en", "de", "pt-br", "ru", "da"] + } } From 5356eab1593b0d9c01b526860bdcff9db1b59ad9 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 13:16:36 +0100 Subject: [PATCH 092/147] Correct docs Change array.push guideline to not using _t at class-load time which was probably the actual problem. Update guidelines to include punctuation. --- docs/translating-dev.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/translating-dev.md b/docs/translating-dev.md index 8bebd0bc..80d4b64a 100644 --- a/docs/translating-dev.md +++ b/docs/translating-dev.md @@ -22,5 +22,5 @@ ## Things to know/Style Guides - Do not use it inside ``getDefaultProps`` at the point where ``getDefaultProps`` is initialized the translations aren't loaded yet and it causes missing translations. -- Do use ``Array.push()`` instead of directly defining it inside the array. Arrays are not able to access ``_t()`` at runtime. -- Do not include full stops, Emoji or similiar miscellaneous Things to the strings. They are not required to be translated. +- If using translated strings as constants, translated strings can't be in constants loaded at class-load time since the translations won't be loaded. +- If a string is presented in the UI with punctuation like a full stop, include this in the translation strings, since punctuation varies between languages too. From 810fb42458627a240651c6756754a65ba5a83cf6 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 13:25:46 +0100 Subject: [PATCH 093/147] Fix indenting --- src/components/structures/RightPanel.js | 46 ++++++++++++------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/src/components/structures/RightPanel.js b/src/components/structures/RightPanel.js index c12952fb..c7f5394b 100644 --- a/src/components/structures/RightPanel.js +++ b/src/components/structures/RightPanel.js @@ -198,29 +198,29 @@ module.exports = React.createClass({ if (this.props.roomId) { buttonGroup = <div className="mx_RightPanel_headerButtonGroup"> - <AccessibleButton className="mx_RightPanel_headerButton" - title={ _t('Members') } onClick={ this.onMemberListButtonClick }> - <div className="mx_RightPanel_headerButton_badge">{ membersBadge ? membersBadge : <span> </span>}</div> - <TintableSvg src="img/icons-people.svg" width="25" height="25"/> - { membersHighlight } - </AccessibleButton> - <AccessibleButton - className="mx_RightPanel_headerButton mx_RightPanel_filebutton" - title={ _t('Files') } onClick={ this.onFileListButtonClick }> - <div className="mx_RightPanel_headerButton_badge"> </div> - <TintableSvg src="img/icons-files.svg" width="25" height="25"/> - { filesHighlight } - </AccessibleButton> - <AccessibleButton - className="mx_RightPanel_headerButton mx_RightPanel_notificationbutton" - title={ _t('Notifications') } onClick={ this.onNotificationListButtonClick }> - <div className="mx_RightPanel_headerButton_badge"> </div> - <TintableSvg src="img/icons-notifications.svg" width="25" height="25"/> - { notificationsHighlight } - </AccessibleButton> - <div className="mx_RightPanel_headerButton mx_RightPanel_collapsebutton" title="Hide panel" onClick={ this.onCollapseClick }> - <TintableSvg src="img/minimise.svg" width="10" height="16"/> - </div> + <AccessibleButton className="mx_RightPanel_headerButton" + title={ _t('Members') } onClick={ this.onMemberListButtonClick }> + <div className="mx_RightPanel_headerButton_badge">{ membersBadge ? membersBadge : <span> </span>}</div> + <TintableSvg src="img/icons-people.svg" width="25" height="25"/> + { membersHighlight } + </AccessibleButton> + <AccessibleButton + className="mx_RightPanel_headerButton mx_RightPanel_filebutton" + title={ _t('Files') } onClick={ this.onFileListButtonClick }> + <div className="mx_RightPanel_headerButton_badge"> </div> + <TintableSvg src="img/icons-files.svg" width="25" height="25"/> + { filesHighlight } + </AccessibleButton> + <AccessibleButton + className="mx_RightPanel_headerButton mx_RightPanel_notificationbutton" + title={ _t('Notifications') } onClick={ this.onNotificationListButtonClick }> + <div className="mx_RightPanel_headerButton_badge"> </div> + <TintableSvg src="img/icons-notifications.svg" width="25" height="25"/> + { notificationsHighlight } + </AccessibleButton> + <div className="mx_RightPanel_headerButton mx_RightPanel_collapsebutton" title="Hide panel" onClick={ this.onCollapseClick }> + <TintableSvg src="img/minimise.svg" width="10" height="16"/> + </div> </div>; } From 82b2741ed9ddec996b4d567909fd87dcaee57566 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 13:33:00 +0100 Subject: [PATCH 094/147] Move english custom server text to en file As it is in English and not German --- src/i18n/de_DE.json | 1 - src/i18n/en_EN.json | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/de_DE.json b/src/i18n/de_DE.json index 0831ff8e..d0eff4c5 100644 --- a/src/i18n/de_DE.json +++ b/src/i18n/de_DE.json @@ -12,7 +12,6 @@ "Settings": "Einstellungen", "powered by Matrix": "gebaut mit Matrix", "Custom Server Options": "Optionen für eigenen Server", - "customServer_text": "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.", "Dismiss": "ausblenden", "Failed to get protocol list from Home Server": "Fehler beim Abrufen der Protokollliste vom Home Server", "The Home Server may be too old to support third party networks": "Der Home Server kann zu alt sein, um Drittanbieter-Netzwerke zu unterstützen", diff --git a/src/i18n/en_EN.json b/src/i18n/en_EN.json index 89df1d22..c4fdf44b 100644 --- a/src/i18n/en_EN.json +++ b/src/i18n/en_EN.json @@ -12,6 +12,7 @@ "Create new room": "Create new room", "Couldn't find a matching Matrix room": "Couldn't find a matching Matrix room", "Custom Server Options": "Custom Server Options", + "customServer_text": "You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.", "delete the alias": "delete the alias", "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Delete the room alias %(alias)s and remove %(name)s from the directory?", "Direct Chat": "Direct Chat", From d688eade43bb1eac7682351f70edf217841a7fa4 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 13:34:18 +0100 Subject: [PATCH 095/147] Remove commented use strict It's even less use in a comment --- src/components/views/messages/DateSeparator.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/views/messages/DateSeparator.js b/src/components/views/messages/DateSeparator.js index f2ea3ffa..d1d588ce 100644 --- a/src/components/views/messages/DateSeparator.js +++ b/src/components/views/messages/DateSeparator.js @@ -14,8 +14,6 @@ See the License for the specific language governing permissions and limitations under the License. */ -// 'use strict'; - import React from 'react'; import { _t } from 'matrix-react-sdk/lib/languageHandler'; import DateUtils from 'matrix-react-sdk/lib/DateUtils'; From 92579cf4630c609d3bf5e500640258198e76d653 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 13:36:58 +0100 Subject: [PATCH 096/147] Array literal --- src/components/views/messages/DateSeparator.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/views/messages/DateSeparator.js b/src/components/views/messages/DateSeparator.js index d1d588ce..7acc9bd6 100644 --- a/src/components/views/messages/DateSeparator.js +++ b/src/components/views/messages/DateSeparator.js @@ -19,15 +19,15 @@ import { _t } from 'matrix-react-sdk/lib/languageHandler'; import DateUtils from 'matrix-react-sdk/lib/DateUtils'; function getdaysArray() { - var days = []; - days.push(_t('Sunday')); - days.push(_t('Monday')); - days.push(_t('Tuesday')); - days.push(_t('Wednesday')); - days.push(_t('Thursday')); - days.push(_t('Friday')); - days.push(_t('Saturday')); - return days; + return [ + _t('Sunday'), + _t('Monday'), + _t('Tuesday'), + _t('Wednesday'), + _t('Thursday'), + _t('Friday'), + _t('Saturday'), + ]; } module.exports = React.createClass({ From 8ad189c79d28a76b616039c3a2895eb63255ab82 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 13:45:46 +0100 Subject: [PATCH 097/147] Remove unused _t import --- src/notifications/VectorPushRulesDefinitions.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/notifications/VectorPushRulesDefinitions.js b/src/notifications/VectorPushRulesDefinitions.js index b9ec3321..d696451d 100644 --- a/src/notifications/VectorPushRulesDefinitions.js +++ b/src/notifications/VectorPushRulesDefinitions.js @@ -18,7 +18,6 @@ limitations under the License. var StandardActions = require('./StandardActions'); var PushRuleVectorState = require('./PushRuleVectorState'); -import { _t } from 'matrix-react-sdk/lib/languageHandler'; class VectorPushRuleDefinition { constructor(opts) { From ee2a49ad41d04c37e3945046aa7879a980c6ac41 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 13:46:01 +0100 Subject: [PATCH 098/147] Punctuation in translation strings --- src/components/views/settings/Notifications.js | 4 ++-- src/i18n/be.json | 4 ++-- src/i18n/da.json | 4 ++-- src/i18n/de_DE.json | 4 ++-- src/i18n/en_EN.json | 2 +- src/i18n/fr.json | 4 ++-- src/i18n/pt.json | 4 ++-- src/i18n/pt_BR.json | 4 ++-- src/i18n/ru.json | 4 ++-- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/components/views/settings/Notifications.js b/src/components/views/settings/Notifications.js index 0c114e40..131f4759 100644 --- a/src/components/views/settings/Notifications.js +++ b/src/components/views/settings/Notifications.js @@ -133,7 +133,7 @@ module.exports = React.createClass({ var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: _t('Error saving email notification preferences'), - description: _t('An error occurred whilst saving your email notification preferences') + '.', + description: _t('An error occurred whilst saving your email notification preferences.'), }); }); }, @@ -177,7 +177,7 @@ module.exports = React.createClass({ var TextInputDialog = sdk.getComponent("dialogs.TextInputDialog"); Modal.createDialog(TextInputDialog, { title: _t('Keywords'), - description: _t('Enter keywords separated by a comma') + ':', + description: _t('Enter keywords separated by a comma:'), value: keywords, onFinished: function onFinished(should_leave, newValue) { diff --git a/src/i18n/be.json b/src/i18n/be.json index 0c6e9e30..47e566fb 100644 --- a/src/i18n/be.json +++ b/src/i18n/be.json @@ -3,7 +3,7 @@ "All messages": "Усе паведамленні", "All messages (loud)": "Усе паведамленні (гучна)", "All notifications are currently disabled for all targets.": "Усе апавяшчэнні ў цяперашні час адключаныя для ўсіх мэтаў.", - "An error occurred whilst saving your email notification preferences": "Адбылася памылка падчас захавання налады апавяшчэнняў па электроннай пошце", + "An error occurred whilst saving your email notification preferences.": "Адбылася памылка падчас захавання налады апавяшчэнняў па электроннай пошце.", "Cancel Sending": "Адмяніць адпраўку", "Can't update user notification settings": "Немагчыма абнавіць налады апавяшчэнняў карыстальніка", "Close": "Зачыніць", @@ -22,7 +22,7 @@ "Enable email notifications": "Ўключыць паведамлення па электроннай пошце", "Enable notifications for this account": "Ўключыць апавяшчэнні для гэтага ўліковага запісу", "Enable them now": "Уключыць іх зараз", - "Enter keywords separated by a comma": "Калі ласка, увядзіце ключавыя словы, падзеленыя коскамі", + "Enter keywords separated by a comma:": "Калі ласка, увядзіце ключавыя словы, падзеленыя коскамі:", "Error": "Памылка", "Error saving email notification preferences": "Памылка захавання налад апавяшчэнняў па электроннай пошце", "#example": "#прыклад", diff --git a/src/i18n/da.json b/src/i18n/da.json index 74c64396..780d0bbb 100644 --- a/src/i18n/da.json +++ b/src/i18n/da.json @@ -1,7 +1,7 @@ { "Add an email address above to configure email notifications": "Tilføj en emailadresse ovenfor for at konfigurere e-mail-underretninger", "All notifications are currently disabled for all targets.": "Alle meddelelser er for øjeblikket deaktiveret for alle mål.", - "An error occurred whilst saving your email notification preferences": "Der opstod en fejl under opbevaring af dine e-mail-underretningsindstillinger", + "An error occurred whilst saving your email notification preferences.": "Der opstod en fejl under opbevaring af dine e-mail-underretningsindstillinger.", "and remove": "Og fjern", "Can't update user notification settings": "Kan ikke opdatere brugermeddelelsesindstillinger", "Create new room": "Opret nyt rum", @@ -18,7 +18,7 @@ "Enable email notifications": "Aktivér e-mail-underretninger", "Enable notifications for this account": "Aktivér underretninger for dette brugernavn", "Enable them now": "Aktivér dem nu", - "Enter keywords separated by a comma": "Indtast søgeord adskilt af et komma", + "Enter keywords separated by a comma:": "Indtast søgeord adskilt af et komma:", "Error": "Fejl", "Error saving email notification preferences": "Fejl ved at gemme e-mail-underretningsindstillinger", "#example": "#eksempel", diff --git a/src/i18n/de_DE.json b/src/i18n/de_DE.json index d0eff4c5..e7f9b3c2 100644 --- a/src/i18n/de_DE.json +++ b/src/i18n/de_DE.json @@ -25,7 +25,7 @@ "Enable them now": "Aktiviere diese jetzt", "Add an email address above to configure email notifications": "Füge eine E-Mail Adresse hinzu um Benachrichtigungen via E-Mail zu erhalten", "All notifications are currently disabled for all targets.": "Im Moment sind alle Benachrichtigungen für alle Ziele deaktiviert.", - "An error occurred whilst saving your email notification preferences": "Ein Fehler trat auf während deine E-Mail Einstellungen gespeichert wurden", + "An error occurred whilst saving your email notification preferences.": "Ein Fehler trat auf während deine E-Mail Einstellungen gespeichert wurden.", "and remove": "und entfernen", "Can't update user notification settings": "Kann Benutzerdefinierte Einstellungen nicht aktualisieren", "Couldn't find a matching Matrix room": "Kann keinen entsprechenden Matrix Raum finden", @@ -37,7 +37,7 @@ "Enable desktop notifications": "Aktiviere Desktop Benachrichtigungen", "Enable email notifications": "Aktiviere E-Mail Benachrichtigungen", "Enable notifications for this account": "Aktiviere Benachrichtigungen für diesen Benutzer", - "Enter keywords separated by a comma": "Gebe Suchbegriffe getrennt durch Kommata ein", + "Enter keywords separated by a comma:": "Gebe Suchbegriffe getrennt durch Kommata ein:", "Error": "Fehler", "Error saving email notification preferences": "Fehler beim Speichern der E-Mail Benachrichtigungseinstellungen", "#example": "#Beispiel", diff --git a/src/i18n/en_EN.json b/src/i18n/en_EN.json index c4fdf44b..e4f79994 100644 --- a/src/i18n/en_EN.json +++ b/src/i18n/en_EN.json @@ -4,7 +4,7 @@ "All messages": "All messages", "All messages (loud)": "All messages (loud)", "All notifications are currently disabled for all targets.": "All notifications are currently disabled for all targets.", - "An error occurred whilst saving your email notification preferences": "An error occurred whilst saving your email notification preferences", + "An error occurred whilst saving your email notification preferences.": "An error occurred whilst saving your email notification preferences.", "Call invitation": "Call invitation", "Cancel Sending": "Cancel Sending", "Can't update user notification settings": "Can't update user notification settings", diff --git a/src/i18n/fr.json b/src/i18n/fr.json index db39ac9f..958a10d1 100644 --- a/src/i18n/fr.json +++ b/src/i18n/fr.json @@ -3,7 +3,7 @@ "All messages": "Tous les messages", "All messages (loud)": "Tous les messages (fort)", "All notifications are currently disabled for all targets.": "Toutes les notification sont désactivées pour tous les appareils.", - "An error occurred whilst saving your email notification preferences": "Une erreur est survenue lors de la sauvegarde de vos préférences de notifications mails", + "An error occurred whilst saving your email notification preferences.": "Une erreur est survenue lors de la sauvegarde de vos préférences de notifications mails.", "Cancel Sending": "Annuler Envois", "Can't update user notification settings": "Impossible de mettre à jour les notifications utilisateur", "Close": "Fermer", @@ -22,7 +22,7 @@ "Enable email notifications": "Activer les notifications par e-mail", "Enable notifications for this account": "Activer les notifications pour ce compte", "Enable them now": "Les activer maintenant", - "Enter keywords separated by a comma": "Entrez les mots clés séparés par une virgule", + "Enter keywords separated by a comma:": "Entrez les mots clés séparés par une virgule:", "Error": "Erreur", "Error saving email notification preferences": "Erreur lors de la sauvegarde des notifications par email", "#example": "#exemple", diff --git a/src/i18n/pt.json b/src/i18n/pt.json index 7f3aa82e..89385f5d 100644 --- a/src/i18n/pt.json +++ b/src/i18n/pt.json @@ -3,7 +3,7 @@ "All messages": "Todas as mensagens", "All messages (loud)": "Todas as mensagens (alto)", "All notifications are currently disabled for all targets": "Todas as notificações estão atualmente desativadas para todos os destinos", - "An error occurred whilst saving your email notification preferences": "Um erro ocorreu enquanto salvava suas preferências de notificação por email", + "An error occurred whilst saving your email notification preferences.": "Um erro ocorreu enquanto salvava suas preferências de notificação por email.", "Cancel Sending": "Cancelar o envio", "Can't update user notification settings": "Não é possível atualizar as preferências de notificação", "Close": "Fechar", @@ -22,7 +22,7 @@ "Enable email notifications": "Ativar notificações por email", "Enable notifications for this account": "Ativar notificações para esta conta", "Enable them now": "Habilitar agora", - "Enter keywords separated by a comma": "Coloque cada palavras-chave separada por vírgula", + "Enter keywords separated by a comma:": "Coloque cada palavras-chave separada por vírgula:", "Error": "Erro", "Error saving email notification preferences": "Erro ao salvar as preferências de notificação por email", "#example:": "#exemplo", diff --git a/src/i18n/pt_BR.json b/src/i18n/pt_BR.json index 33a40764..7ec59997 100644 --- a/src/i18n/pt_BR.json +++ b/src/i18n/pt_BR.json @@ -3,7 +3,7 @@ "All messages": "Todas as mensagens", "All messages (loud)": "Todas as mensagens (alto)", "All notifications are currently disabled for all targets": "Todas as notificações estão atualmente desativadas para todos os destinos", - "An error occurred whilst saving your email notification preferences": "Um erro ocorreu enquanto o sistema estava salvando suas preferências de notificação por email", + "An error occurred whilst saving your email notification preferences.": "Um erro ocorreu enquanto o sistema estava salvando suas preferências de notificação por email.", "Call invitation": "Convite para chamada", "Cancel Sending": "Cancelar o envio", "Can't update user notification settings": "Não é possível atualizar as preferências de notificação", @@ -23,7 +23,7 @@ "Enable email notifications": "Ativar notificações por email", "Enable notifications for this account": "Ativar notificações para esta conta", "Enable them now": "Habilitar agora", - "Enter keywords separated by a comma": "Coloque cada palavras-chave separada por vírgula", + "Enter keywords separated by a comma:": "Coloque cada palavras-chave separada por vírgula:", "Error": "Erro", "Error saving email notification preferences": "Erro ao salvar as preferências de notificação por email", "#example:": "#exemplo", diff --git a/src/i18n/ru.json b/src/i18n/ru.json index c0a7a284..95949eec 100644 --- a/src/i18n/ru.json +++ b/src/i18n/ru.json @@ -1,7 +1,7 @@ { "Add an email address above to configure email notifications": "Добавьте email адресс для настройки оповещений", "All notifications are currently disabled for all targets.": "Все оповещения отключены.", - "An error occurred whilst saving your email notification preferences": "Возникла ошибка при сохранении настроек оповещения вашего email", + "An error occurred whilst saving your email notification preferences.": "Возникла ошибка при сохранении настроек оповещения вашего email.", "and remove": "и удалить", "Can't update user notification settings": "Не возможно обновить пользовательские настройки оповещения", "Create new room": "Создать комнату", @@ -18,7 +18,7 @@ "Enable email notifications": "Включить email оповещения", "Enable notifications for this account": "Включить оповещения для этого аккаунта", "Enable them now": "Включить сейчас", - "Enter keywords separated by a comma": "Введите ключевые слова, разделенные запятой", + "Enter keywords separated by a comma:": "Введите ключевые слова, разделенные запятой:", "Error": "Ошибка", "Error saving email notification preferences": "Ошибка сохранения настроек email оповещений", "#example": "#пример", From 9c7731e1418ad3b906213f2a9e0c3e3e786ea39a Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 14:02:03 +0100 Subject: [PATCH 099/147] Don't include src in the test resolve root As https://github.com/matrix-org/matrix-react-sdk/pull/931 --- karma.conf.js | 1 - test/skin-sdk.js | 2 +- test/unit-tests/notifications/ContentRules-test.js | 2 +- test/unit-tests/notifications/PushRuleVectorState-test.js | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/karma.conf.js b/karma.conf.js index b0a48c92..1e043663 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -47,7 +47,6 @@ webpack_config.module.noParse.push(/sinon\/pkg\/sinon\.js$/); webpack_config.resolve.alias['sinon'] = 'sinon/pkg/sinon.js'; webpack_config.resolve.root = [ - path.resolve('./src'), path.resolve('./test'), ]; diff --git a/test/skin-sdk.js b/test/skin-sdk.js index a5a7233c..3421d5d0 100644 --- a/test/skin-sdk.js +++ b/test/skin-sdk.js @@ -5,4 +5,4 @@ */ var sdk = require('matrix-react-sdk'); -sdk.loadSkin(require('component-index')); +sdk.loadSkin(require('../src/component-index')); diff --git a/test/unit-tests/notifications/ContentRules-test.js b/test/unit-tests/notifications/ContentRules-test.js index e7928147..c1cdc40a 100644 --- a/test/unit-tests/notifications/ContentRules-test.js +++ b/test/unit-tests/notifications/ContentRules-test.js @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -var notifications = require('notifications'); +var notifications = require('../../../src/notifications'); var ContentRules = notifications.ContentRules; var PushRuleVectorState = notifications.PushRuleVectorState; diff --git a/test/unit-tests/notifications/PushRuleVectorState-test.js b/test/unit-tests/notifications/PushRuleVectorState-test.js index 6b0f81c6..68e7044f 100644 --- a/test/unit-tests/notifications/PushRuleVectorState-test.js +++ b/test/unit-tests/notifications/PushRuleVectorState-test.js @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -var notifications = require('notifications'); +var notifications = require('../../../src/notifications'); var prvs = notifications.PushRuleVectorState; From e07f9a8bc90913c45e7807e380856e8321f031ab Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 15:29:58 +0100 Subject: [PATCH 100/147] Pass through i18n keys in karma tests --- test/app-tests/loading.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/app-tests/loading.js b/test/app-tests/loading.js index d3844522..86fad118 100644 --- a/test/app-tests/loading.js +++ b/test/app-tests/loading.js @@ -28,6 +28,7 @@ import jssdk from 'matrix-js-sdk'; import sdk from 'matrix-react-sdk'; import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg'; +import * as languageHandler from 'matrix-react-sdk/lib/languageHandler'; import test_utils from '../test-utils'; import MockHttpBackend from '../mock-request'; @@ -61,6 +62,10 @@ describe('loading:', function () { windowLocation = null; matrixChat = null; + + languageHandler.setMissingEntryGenerator(function(key) { + return key.split('|', 2)[1]; + }); }); afterEach(function() { From 6c3c4fc547e5ce673f8b53c7cae04e029d542321 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 16:48:21 +0100 Subject: [PATCH 101/147] Language generation and file structure * Move language files to strings/ subdir to be consistent with react-sdk * Only copy static list of languages (to avoid including languages that are only a few percent translated) * Make copy-res script work with watch mode * Other general cleanups like only write each language file once, rather than n times. --- scripts/copy-res.js | 160 ++++++++++++++------------- src/i18n/{ => strings}/basefile.json | 0 src/i18n/{ => strings}/be.json | 0 src/i18n/{ => strings}/da.json | 0 src/i18n/{ => strings}/de_DE.json | 0 src/i18n/{ => strings}/en_EN.json | 0 src/i18n/{ => strings}/fr.json | 0 src/i18n/{ => strings}/ml.json | 0 src/i18n/{ => strings}/pl.json | 0 src/i18n/{ => strings}/pt.json | 0 src/i18n/{ => strings}/pt_BR.json | 0 src/i18n/{ => strings}/ru.json | 0 12 files changed, 81 insertions(+), 79 deletions(-) rename src/i18n/{ => strings}/basefile.json (100%) rename src/i18n/{ => strings}/be.json (100%) rename src/i18n/{ => strings}/da.json (100%) rename src/i18n/{ => strings}/de_DE.json (100%) rename src/i18n/{ => strings}/en_EN.json (100%) rename src/i18n/{ => strings}/fr.json (100%) rename src/i18n/{ => strings}/ml.json (100%) rename src/i18n/{ => strings}/pl.json (100%) rename src/i18n/{ => strings}/pt.json (100%) rename src/i18n/{ => strings}/pt_BR.json (100%) rename src/i18n/{ => strings}/ru.json (100%) diff --git a/scripts/copy-res.js b/scripts/copy-res.js index 4736d401..9672a98c 100755 --- a/scripts/copy-res.js +++ b/scripts/copy-res.js @@ -3,6 +3,23 @@ // copies the resources into the webapp directory. // +// Languages are listed manually so we can choose when to include +// a translation in the app (because having a translation with only +// 3 strings translated is just frustrating) +// This could readily be automated, but it's nice to explicitly +// control when we languages are available. +const INCLUDE_LANGS = [ + //'be' Omitted because no translations in react-sdk + 'en_EN', + 'da', + 'de_DE', + 'fr', + 'be', + 'pt', + 'pt_BR', + 'ru', +]; + // cpx includes globbed parts of the filename in the destination, but excludes // common parents. Hence, "res/{a,b}/**": the output will be "dest/a/..." and // "dest/b/...". @@ -14,32 +31,20 @@ const COPY_LIST = [ ["node_modules/emojione/assets/svg/*", "webapp/emojione/svg/"], ["node_modules/emojione/assets/png/*", "webapp/emojione/png/"], ["./config.json", "webapp", { directwatch: 1 }], - ["src/i18n/", "webapp/i18n/", { languages: 1 }], - ["node_modules/matrix-react-sdk/src/i18n/strings/", "webapp/i18n/", { languages: 1 }], ]; +INCLUDE_LANGS.forEach(function(l) { + COPY_LIST.push([ + l, "webapp/i18n/", { lang: 1 }, + ]); +}); + const parseArgs = require('minimist'); const Cpx = require('cpx'); const chokidar = require('chokidar'); const fs = require('fs'); const rimraf = require('rimraf'); -// cleanup language files before copying them. -//rimraf("webapp/", function () { console.log('cleanup language files'); }); - -//From http://stackoverflow.com/a/20525865/4929236 -function generateFileArray(dir, files_) { - files_ = files_ || []; - var files = fs.readdirSync(dir); - for (var i in files) { - var name = files[i]; - if (name != 'basefile.json') { - files_.push(name); - } - } - return files_; -} - const argv = parseArgs( process.argv.slice(2), {} ); @@ -54,6 +59,15 @@ function errCheck(err) { } } +// Check if webapp exists +if (!fs.existsSync('webapp')) { + fs.mkdirSync('webapp'); +} +// Check if i18n exists +if (!fs.existsSync('webapp/i18n/')) { + fs.mkdirSync('webapp/i18n/'); +} + function next(i, err) { errCheck(err); @@ -67,32 +81,11 @@ function next(i, err) { const opts = ent[2] || {}; let cpx = undefined; - if (opts.languages) { - const sourceFiles = generateFileArray(source); - let Sourcelanguages = {}; - if (!fs.existsSync(dest)) { - fs.mkdirSync(dest); - } - sourceFiles.forEach(file => { - const fileContents = fs.readFileSync(source + file).toString(); - Sourcelanguages[file] = JSON.parse(fileContents); - }); - sourceFiles.forEach(file => { - if (!fs.existsSync(dest + file)) { - let o = Object.assign({}, Sourcelanguages[file]); - fs.writeFileSync(dest + file, JSON.stringify(o, null, 4)); - } else { - const fileContents = fs.readFileSync(dest + file).toString(); - let o = Object.assign(JSON.parse(fileContents), Sourcelanguages[file]); - fs.writeFileSync(dest + file, JSON.stringify(o, null, 4)); - } - }); - - } else { + if (!opts.lang) { cpx = new Cpx.Cpx(source, dest); } - if (verbose) { + if (verbose && cpx) { cpx.on("copy", (event) => { console.log(`Copied: ${event.srcPath} --> ${event.dstPath}`); }); @@ -115,59 +108,68 @@ function next(i, err) { .on('change', copy) .on('ready', cb) .on('error', errCheck); - } else if (opts.languages) { - if (verbose) { - console.log('don\'t copy language file'); - } + } else if (opts.lang) { + const reactSdkFile = 'node_modules/matrix-react-sdk/src/i18n/strings/' + source + '.json'; + const riotWebFile = 'src/i18n/strings/' + source + '.json'; + + const translations = {}; + const makeLang = () => { genLangFile(source, dest) }; + [reactSdkFile, riotWebFile].forEach(function(f) { + chokidar.watch(f) + .on('add', makeLang) + .on('change', makeLang) + //.on('ready', cb) We'd have to do this when both files are ready + .on('error', errCheck); + }); next(i + 1, err); } else { cpx.on('watch-ready', cb); cpx.on("watch-error", cb); cpx.watch(); } - } else if (opts.languages) { - if (verbose) { - console.log('don\'t copy language file'); - } + } else if (opts.lang) { + genLangFile(source, dest); next(i + 1, err); } else { cpx.copy(cb); } } -// Generate Language List +function genLangFile(lang, dest) { + const reactSdkFile = 'node_modules/matrix-react-sdk/src/i18n/strings/' + lang + '.json'; + const riotWebFile = 'src/i18n/strings/' + lang + '.json'; -const testFolder = 'src/i18n/'; -let languages = {}; -// Check if webapp exists -if (!fs.existsSync('webapp')) { - fs.mkdirSync('webapp'); -} -// Check if i18n exists -if (!fs.existsSync('webapp/i18n/')) { - fs.mkdirSync('webapp/i18n/'); -} - -if (!fs.existsSync('webapp/i18n/languages.json')) { - rimraf("webapp/i18n/languages.json", function() { console.log('cleanup languages.json file'); }); -} - -fs.readdir(testFolder, function(err, files) { - if (err) { - throw err; + const translations = {}; + [reactSdkFile, riotWebFile].forEach(function(f) { + if (fs.existsSync(f)) { + Object.assign( + translations, + JSON.parse(fs.readFileSync(f).toString()) + ); + } + }); + fs.writeFileSync(dest + lang + '.json', JSON.stringify(translations, null, 4)); + if (verbose) { + console.log("Generated language file: " + lang); } - files.forEach(function(file) { - var normalizedLanguage = file.toLowerCase().replace("_", "-").split('.json')[0]; - var languageParts = normalizedLanguage.split('-'); - if (file != 'basefile.json') { - if (languageParts.length == 2 && languageParts[0] == languageParts[1]) { - languages[languageParts[0]] = file; - } else { - languages[normalizedLanguage] = file; - } +} + +function genLangList() { + const languages = {}; + INCLUDE_LANGS.forEach(function(lang) { + const normalizedLanguage = lang.toLowerCase().replace("_", "-"); + const languageParts = normalizedLanguage.split('-'); + if (languageParts.length == 2 && languageParts[0] == languageParts[1]) { + languages[languageParts[0]] = lang; + } else { + languages[normalizedLanguage] = lang; } }); fs.writeFile('webapp/i18n/languages.json', JSON.stringify(languages, null, 4)); -}) + if (verbose) { + console.log("Generated language list"); + } +} -next(0); \ No newline at end of file +genLangList(); +next(0); diff --git a/src/i18n/basefile.json b/src/i18n/strings/basefile.json similarity index 100% rename from src/i18n/basefile.json rename to src/i18n/strings/basefile.json diff --git a/src/i18n/be.json b/src/i18n/strings/be.json similarity index 100% rename from src/i18n/be.json rename to src/i18n/strings/be.json diff --git a/src/i18n/da.json b/src/i18n/strings/da.json similarity index 100% rename from src/i18n/da.json rename to src/i18n/strings/da.json diff --git a/src/i18n/de_DE.json b/src/i18n/strings/de_DE.json similarity index 100% rename from src/i18n/de_DE.json rename to src/i18n/strings/de_DE.json diff --git a/src/i18n/en_EN.json b/src/i18n/strings/en_EN.json similarity index 100% rename from src/i18n/en_EN.json rename to src/i18n/strings/en_EN.json diff --git a/src/i18n/fr.json b/src/i18n/strings/fr.json similarity index 100% rename from src/i18n/fr.json rename to src/i18n/strings/fr.json diff --git a/src/i18n/ml.json b/src/i18n/strings/ml.json similarity index 100% rename from src/i18n/ml.json rename to src/i18n/strings/ml.json diff --git a/src/i18n/pl.json b/src/i18n/strings/pl.json similarity index 100% rename from src/i18n/pl.json rename to src/i18n/strings/pl.json diff --git a/src/i18n/pt.json b/src/i18n/strings/pt.json similarity index 100% rename from src/i18n/pt.json rename to src/i18n/strings/pt.json diff --git a/src/i18n/pt_BR.json b/src/i18n/strings/pt_BR.json similarity index 100% rename from src/i18n/pt_BR.json rename to src/i18n/strings/pt_BR.json diff --git a/src/i18n/ru.json b/src/i18n/strings/ru.json similarity index 100% rename from src/i18n/ru.json rename to src/i18n/strings/ru.json From 4fcaccbc7fe8b444182f4cdae01ba22e8b4099a2 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 16:56:49 +0100 Subject: [PATCH 102/147] Merge https://github.com/MTRNord/riot-web/pull/69 --- src/i18n/strings/fr.json | 182 +++++++++++++++++++++++++-------------- 1 file changed, 118 insertions(+), 64 deletions(-) diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index 958a10d1..7017e4a9 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -1,66 +1,120 @@ { - "Add an email address above to configure email notifications": "Ajouter une adresse email pour la configuration des notifications par email", - "All messages": "Tous les messages", - "All messages (loud)": "Tous les messages (fort)", - "All notifications are currently disabled for all targets.": "Toutes les notification sont désactivées pour tous les appareils.", - "An error occurred whilst saving your email notification preferences.": "Une erreur est survenue lors de la sauvegarde de vos préférences de notifications mails.", - "Cancel Sending": "Annuler Envois", - "Can't update user notification settings": "Impossible de mettre à jour les notifications utilisateur", - "Close": "Fermer", - "Create new room": "Créer un nouveau salon", - "Couldn't find a matching Matrix room": "Impossible de trouver un salon Matrix", - "Custom Server Options": "Options de Serveur Personnalisé", - "delete the alias": "Supprimer l'alias", - "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Supprimer le salon alias %(alias)s et supprimer %(name)s du répertoire?", - "Direct Chat": "Chat direct", - "Directory": "Dossier", - "Dismiss": "Rejeter", - "Download this file": "Télécharger ce fichier", - "Drop here to %(verb)s": "Déposer ici pour %(verb)s", - "Enable audible notifications in web client": "Activer les notifications sonores pour le client web", - "Enable desktop notifications": "Activer les notifications de bureau", - "Enable email notifications": "Activer les notifications par e-mail", - "Enable notifications for this account": "Activer les notifications pour ce compte", - "Enable them now": "Les activer maintenant", - "Enter keywords separated by a comma:": "Entrez les mots clés séparés par une virgule:", - "Error": "Erreur", - "Error saving email notification preferences": "Erreur lors de la sauvegarde des notifications par email", - "#example": "#exemple", - "Failed to": "Echec pour", - "Failed to add tag %(tagName)s to room": "Echec lors de l'ajout du tag %(tagName)s pour le salon", - "Failed to change settings": "Changement de configuration échouée", - "Failed to forget room %(errCode)s": "Echec lors de l'oublie du salon %(errCode)s", - "Failed to update keywords": "Échec dans la mise à jour des mots clés", - "Failed to get protocol list from Home Server": "Echec lors de la récupération depuis le serveur maison", - "Failed to get public room list": "Echec lors de la récupération de la liste des salons publics", - "Failed to join the room": "Échec pour joindre le salon", - "Failed to remove tag %(prevTag)s from room": "Échec dans la suppression de l’étiquette %(prevTag)s du salon", - "Failed to set direct chat tag": "Échec dans l'attribution d'une étiquette dans le chat direct", - "Favourite": "Favouris", - "Operation failed": "L'opération a échoué", - "Please Register": "Veuillez vous enregistrer", - "powered by Matrix": "propulsé par Matrix", - "Quote": "Citer", - "Redact": "Rédiger", - "Reject": "Rejeter", - "Remove %(name)s from the directory?": "Supprimer %(name)s du répertoire?", - "Remove": "Supprimer", - "Resend": "Renvoyer", - "Settings": "Paramètres", - "Start chat": "Démarrer la discussion", - "unknown error code": "Code erreur inconnu", - "View Source": "Voir la Source", - "You cannot delete this image. (%(code)s)": "Vous ne pouvez pas supprimer cette image. (%(code)s)", - "You cannot delete this message. (%(code)s)": "Vous ne pouvez pas supprimer ce message. (%(code)s)", - "You are not receiving desktop notifications": "Vous ne recevez pas les notifications sur votre bureau", - "Sunday": "Dimanche", - "Monday": "Lundi", - "Tuesday": "Mardi", - "Wednesday": "Mercredi", - "Thursday": "Jeudi", - "Friday": "Vendredi", - "Saturday": "Samedi", - "Today": "Aujourd'hui", - "Yesterday": "Hier", - "Welcome page": "Page de bienvenue" + "Add an email address above to configure email notifications": "Ajouter une adresse email pour la configuration des notifications par email", + "All messages": "Tous les messages", + "All messages (loud)": "Tous les messages (fort)", + "All notifications are currently disabled for all targets.": "Toutes les notifications sont désactivées pour tous les appareils.", + "An error occurred whilst saving your email notification preferences": "Une erreur est survenue lors de la sauvegarde de vos préférences de notifications par e-mail", + "Cancel Sending": "Annuler l'envoi", + "Can't update user notification settings": "Impossible de mettre à jour les notifications utilisateur", + "Close": "Fermer", + "Create new room": "Créer un nouveau salon", + "Couldn't find a matching Matrix room": "Impossible de trouver un salon Matrix", + "Custom Server Options": "Options de Serveur Personnalisé", + "delete the alias": "Supprimer l'alias", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Supprimer l'alias %(alias)s du salon et supprimer %(name)s du répertoire?", + "Direct Chat": "Chat direct", + "Directory": "Répertoire", + "Dismiss": "Rejeter", + "Download this file": "Télécharger ce fichier", + "Drop here to %(verb)s": "Déposer ici pour %(verb)s", + "Enable audible notifications in web client": "Activer les notifications sonores pour le client web", + "Enable desktop notifications": "Activer les notifications de bureau", + "Enable email notifications": "Activer les notifications par e-mail", + "Enable notifications for this account": "Activer les notifications pour ce compte", + "Enable them now": "Les activer maintenant", + "Enter keywords separated by a comma": "Entrez les mots clés séparés par une virgule", + "Error": "Erreur", + "Error saving email notification preferences": "Erreur lors de la sauvegarde des notifications par email", + "#example": "#exemple", + "Failed to": "Echec pour", + "Failed to add tag %(tagName)s to room": "Echec lors de l'ajout du tag %(tagName)s pour le salon", + "Failed to change settings": "Changement de configuration échouée", + "Failed to forget room %(errCode)s": "Echec lors de l'oublie du salon %(errCode)s", + "Failed to update keywords": "Échec dans la mise à jour des mots clés", + "Failed to get protocol list from Home Server": "Echec lors de la récupération depuis le serveur maison", + "Failed to get public room list": "Echec lors de la récupération de la liste des salons publics", + "Failed to join the room": "Échec pour joindre le salon", + "Failed to remove tag %(prevTag)s from room": "Échec dans la suppression de l’étiquette %(prevTag)s du salon", + "Failed to set direct chat tag": "Échec dans l'attribution d'une étiquette dans le chat direct", + "Favourite": "Favoris", + "Operation failed": "L'opération a échoué", + "Please Register": "Veuillez vous enregistrer", + "powered by Matrix": "propulsé par Matrix", + "Quote": "Citer", + "Redact": "Rédiger", + "Reject": "Rejeter", + "Remove %(name)s from the directory?": "Supprimer %(name)s du répertoire?", + "Remove": "Supprimer", + "Resend": "Renvoyer", + "Settings": "Paramètres", + "Start chat": "Démarrer une discussion", + "unknown error code": "Code erreur inconnu", + "View Source": "Voir la source", + "You cannot delete this image. (%(code)s)": "Vous ne pouvez pas supprimer cette image. (%(code)s)", + "You cannot delete this message. (%(code)s)": "Vous ne pouvez pas supprimer ce message. (%(code)s)", + "You are not receiving desktop notifications": "Vous ne recevez pas les notifications sur votre bureau", + "Sunday": "Dimanche", + "Monday": "Lundi", + "Tuesday": "Mardi", + "Wednesday": "Mercredi", + "Thursday": "Jeudi", + "Friday": "Vendredi", + "Saturday": "Samedi", + "Today": "Aujourd'hui", + "Yesterday": "Hier", + "Welcome page": "Page d'accueil", + "Call invitation": "Appel entrant", + "Failed to set Direct Message status of room": "Échec de la configuration de l'état de Message Direct du salon", + "Fetching third party location failed": "Échec de la récupération de la localisation tierce", + "Files": "Fichiers", + "Filter room names": "Filtrer les noms des salons", + "Forget": "Oublier", + " from room": " du salon", + "Guest users can't invite users. Please register to invite": "Les invités ne peuvent démarrer une discussion. Merci de vous enregistrer pour pouvoir démarrer une discussion", + "Invite to this room": "Inviter dans ce salon", + "Keywords": "Mots-clés", + "Leave": "Quitter", + "Low Priority": "Priorité Basse", + "Members": "Membres", + "Mentions only": "Seulement les mentions", + "Messages containing my display name": "Messages contenant mon nom", + "Messages containing my user name": "Message contenant mon nom d'utilisateur", + "Messages in group chats": "Messages dans les conversations de groupe", + "Messages in one-to-one chats": "Messages dans les conversations directes", + "Messages sent by bot": "Messages envoyés par des robots", + "more": "plus", + "Mute": "Muet", + "No rooms to show": "Aucun salon à afficher", + "Noisy": "Sonore", + "Notification targets": "Appareils recevant les notifications", + "Notifications": "Notifications", + "Notifications on the following keywords follow rules which can’t be displayed here": "Les mots-clés suivants suivent des règles de notification qui ne peuvent être affichées ici", + "Notify for all other messages/rooms": "Me notifier pour tous les autres messages/salons", + "Notify me for anything else": "Me notifier pour tout le reste", + "Off": "Désactivé", + "On": "Activé", + "Permalink": "Permalien", + "remove %(name)s from the directory": "supprimer %(name)s du répertoire", + "Remove from Directory": "Supprimer du répertoire", + "Riot does not know how to join a room on this network": "Riot ne peut pas joindre un salon sur ce réseau", + "Room directory": "Répertoire des salons", + "Room not found": "Salon non trouvé", + "Search for a room": "Chercher un salon", + "Source URL": "URL source", + "The Home Server may be too old to support third party networks": "Le Home Server semble trop ancien pour supporter des réseaux tiers", + "There are advanced notifications which are not shown here": "Il existe une configuration avancée des notifications qui ne peut être affichée ici", + "The server may be unavailable or overloaded": "Le serveur est indisponible ou surchargé", + "This room is inaccessible to guests. You may be able to join if you register": "Ce salon n'est pas ouvert aux invités. Vous pourrez peut-être le rejoindre si vous vous enregistrez", + "Unable to fetch notification target list": "Impossible de récupérer la liste des appareils recevant les notifications", + "Unable to join network": "Impossible de rejoindre le réseau", + "Unable to look up room ID from server": "Impossible de récupérer l'ID du salon sur le serveur", + "Unhide Preview": "Dévoiler l'aperçu", + "Unnamed room": "Salon anonyme", + "Uploaded on %(date)s by %(user)s": "Téléchargé le %(date)s par %(user)s", + "View Decrypted Source": "Voir la source décryptée", + "When I'm invited to a room": "Quand je suis invité dans un salon", + "World readable": "Visible par tout le monde", + "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Vous les avez probablement configurées dans un autre client que Riot. Vous ne pouvez pas les configurer dans Riot mais elles s'appliquent quand même", + "Guests can join": "Ouvert aux invités", + " to room": " au salon" } From d3875ec794506ef296c36b8c5c7d19c3ef7a0f3b Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 17:11:11 +0100 Subject: [PATCH 103/147] Oops, include file extension in language list --- scripts/copy-res.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/copy-res.js b/scripts/copy-res.js index 9672a98c..8554b146 100755 --- a/scripts/copy-res.js +++ b/scripts/copy-res.js @@ -160,9 +160,9 @@ function genLangList() { const normalizedLanguage = lang.toLowerCase().replace("_", "-"); const languageParts = normalizedLanguage.split('-'); if (languageParts.length == 2 && languageParts[0] == languageParts[1]) { - languages[languageParts[0]] = lang; + languages[languageParts[0]] = lang + '.json'; } else { - languages[normalizedLanguage] = lang; + languages[normalizedLanguage] = lang + '.json'; } }); fs.writeFile('webapp/i18n/languages.json', JSON.stringify(languages, null, 4)); From e26422ef1007158ed2c90d7c4cececf493751919 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson <matthew@arasphere.net> Date: Fri, 26 May 2017 18:22:53 +0100 Subject: [PATCH 104/147] fix a typo --- .../vector/css/matrix-react-sdk/views/rooms/_EventTile.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss index 3ea25ba2..2dd037eb 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss @@ -94,7 +94,7 @@ limitations under the License. */ .mx_EventTile_selected .mx_EventTile_line { border-left: $accent-color 5px solid; - padding-left: px; + padding-left: 60px; background-color: $event-selected-color; } From d313f4c7b64be55b244d38c849ed4bd913fc2040 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 18:44:08 +0100 Subject: [PATCH 105/147] Merge https://github.com/MTRNord/riot-web/pull/70/ --- src/i18n/strings/fr.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index 7017e4a9..8de03d72 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -11,8 +11,8 @@ "Couldn't find a matching Matrix room": "Impossible de trouver un salon Matrix", "Custom Server Options": "Options de Serveur Personnalisé", "delete the alias": "Supprimer l'alias", - "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Supprimer l'alias %(alias)s du salon et supprimer %(name)s du répertoire?", - "Direct Chat": "Chat direct", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Supprimer l'alias %(alias)s du salon et supprimer %(name)s du répertoire ?", + "Direct Chat": "Conversation Directe", "Directory": "Répertoire", "Dismiss": "Rejeter", "Download this file": "Télécharger ce fichier", @@ -33,7 +33,7 @@ "Failed to update keywords": "Échec dans la mise à jour des mots clés", "Failed to get protocol list from Home Server": "Echec lors de la récupération depuis le serveur maison", "Failed to get public room list": "Echec lors de la récupération de la liste des salons publics", - "Failed to join the room": "Échec pour joindre le salon", + "Failed to join the room": "Échec de l'adhésion au salon", "Failed to remove tag %(prevTag)s from room": "Échec dans la suppression de l’étiquette %(prevTag)s du salon", "Failed to set direct chat tag": "Échec dans l'attribution d'une étiquette dans le chat direct", "Favourite": "Favoris", @@ -43,7 +43,7 @@ "Quote": "Citer", "Redact": "Rédiger", "Reject": "Rejeter", - "Remove %(name)s from the directory?": "Supprimer %(name)s du répertoire?", + "Remove %(name)s from the directory?": "Supprimer %(name)s du répertoire ?", "Remove": "Supprimer", "Resend": "Renvoyer", "Settings": "Paramètres", From 09adfbd6d6ae70f262985825abfbcac00a9518b2 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson <matthew@matrix.org> Date: Fri, 26 May 2017 19:39:05 +0100 Subject: [PATCH 106/147] remove stale i18n instructions --- docs/translating.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/translating.md b/docs/translating.md index d79a5823..a83d7ce7 100644 --- a/docs/translating.md +++ b/docs/translating.md @@ -34,7 +34,6 @@ Head to the explanations under Steb 2b 3. Select our language 4. Start translating like in 2a.3 5. Repeat these steps for the other projects which are listed at the link of step 2b.1 -6. Add your language to the array at the [config example](../../blob/develop/config.sample.json#L14) ### What means the green button under the text field? From 281979984394dfd3d043b57e6f1495f44c22dc91 Mon Sep 17 00:00:00 2001 From: Krombel <krombel@krombel.de> Date: Fri, 26 May 2017 18:43:08 +0000 Subject: [PATCH 107/147] Translated using Weblate (German) Currently translated at 97.5% (117 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/de/ --- src/i18n/strings/de_DE.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index e7f9b3c2..1c28eeee 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -117,5 +117,13 @@ "Sunday": "Sonntag", "Monday": "Montag", "Yesterday": "Gestern", - "Welcome page": "Willkommensseite" + "Welcome page": "Willkommensseite", + "Advanced notification settings": "Erweiterte Benachrichtigungs-Einstellungen", + "Call invitation": "Anruf-Einladung", + "Enter keywords separated by a comma": "Trage Schlagworte, mit Komma getrennt, ein", + "Messages containing my display name": "Nachrichten, die meinen Anzeigenamen enthalten", + "Messages containing my user name": "Nachrichten, die meinen Nutzernamen enthalten", + "Messages in group chats": "Nachrichten in Chat-Gruppen", + "Messages in one-to-one chats": "Nachrichten in Eins-zu-Eins-Chats", + "Messages sent by bot": "Nachrichten von Bots" } From d626542baf61d118bd2624df4825de5ffb992ec9 Mon Sep 17 00:00:00 2001 From: Krombel <krombel@krombel.de> Date: Fri, 26 May 2017 18:43:23 +0000 Subject: [PATCH 108/147] Translated using Weblate (German) Currently translated at 100.0% (120 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/de/ --- src/i18n/strings/de_DE.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index 1c28eeee..443bf7f9 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -125,5 +125,8 @@ "Messages containing my user name": "Nachrichten, die meinen Nutzernamen enthalten", "Messages in group chats": "Nachrichten in Chat-Gruppen", "Messages in one-to-one chats": "Nachrichten in Eins-zu-Eins-Chats", - "Messages sent by bot": "Nachrichten von Bots" + "Messages sent by bot": "Nachrichten von Bots", + "more": "mehr", + "When I'm invited to a room": "Wenn ich in einen Raum eingeladen werde", + "customServer_text": "Du kannst die erweiterten Server-Optioen nutzen um dich an anderen Matrix-Servern mittels anderer Heimserver-URL anzumelden. <br/>Dies erlaubt dir Riot mit einem existierendem Konto auf einem anderen Heimserver zu nutzen.<br/><br/>Du kannst auch einen benutzerdefinierten Identitäts-Server setzen, aber du wirst dann nicht in der Lage sein, Nutzer per E-Mail-Adresse einzuladen oder selbst mit E-Mail-Adresse eingeladen zu werden." } From 963c90c833a9f129e3e01e8da3022a2225556783 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson <matthew@matrix.org> Date: Fri, 26 May 2017 19:51:04 +0100 Subject: [PATCH 109/147] switch to develop deps... --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 55758033..0f0ffe36 100644 --- a/package.json +++ b/package.json @@ -65,8 +65,8 @@ "gfm.css": "^1.1.1", "highlight.js": "^9.0.0", "linkifyjs": "^2.1.3", - "matrix-js-sdk": "0.7.8", - "matrix-react-sdk": "0.8.9", + "matrix-js-sdk": "matrix-org/matrix-js-sdk#develop", + "matrix-react-sdk": "matrix-org/matrix-react-sdk#develop", "modernizr": "^3.1.0", "pako": "^1.0.5", "q": "^1.4.1", From 8ddf4ced648ec546926cf1258d3a1908b0981d1a Mon Sep 17 00:00:00 2001 From: Travis Ralston <travpc@gmail.com> Date: Fri, 26 May 2017 13:09:40 -0600 Subject: [PATCH 110/147] Update translating.md: Minor suggestions Primarily spelling, wording, and grammar. A little bit of formatting too. --- docs/translating.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/translating.md b/docs/translating.md index a83d7ce7..cd8dd4f6 100644 --- a/docs/translating.md +++ b/docs/translating.md @@ -9,21 +9,21 @@ ## Step 1: Preparing your Weblate Profile 1. Head to https://translate.nordgedanken.de and register either via Github or email -2. After register check if you got a email to verify your account and click the link (if there is none head to step 1.4) +2. After registering check if you got an email to verify your account and click the link (if there is none head to step 1.4) 3. Log into weblate 4. Head to https://translate.nordgedanken.de/accounts/profile/ and select the languages you know and maybe another language you know too. 6. Head to https://translate.nordgedanken.de/accounts/profile/#subscriptions and select Riot Web as Project ## How to check if your language already is being translated -Go to https://translate.nordgedanken.de/projects/riot-web/ and in all 3 sub projects if your language is listed. -If it is listed go to Step 2a if not go to Step 2b +Go to https://translate.nordgedanken.de/projects/riot-web/ and visit the 2 sub-projects. +If your language is listed go to Step 2a and if not go to Step 2b ## Step 2a: Helping on existing languages. 1. Head to one of the projects listed https://translate.nordgedanken.de/projects/riot-web/ 2. Click on the ``translate`` button on the right side of your language -3. Fill in the translations in the writeable field. You will see the original English string and the String of your second language above. +3. Fill in the translations in the writeable field. You will see the original English string and the string of your second language above. Head to the explanations under Steb 2b @@ -31,7 +31,7 @@ Head to the explanations under Steb 2b 1. Go to one of the projects listed https://translate.nordgedanken.de/projects/riot-web/ 2. Click the ``Start new language`` button at the bottom -3. Select our language +3. Select a language 4. Start translating like in 2a.3 5. Repeat these steps for the other projects which are listed at the link of step 2b.1 @@ -41,7 +41,7 @@ The green button let you save our translations directly. Please only use it if y ### What means the yellow button under the text field? -The yellow button has to be used if you are unsure about the translation but you have a rough idea. It ads a new suggestion to the string which can than be reviewed by others. +The yellow button has to be used if you are unsure about the translation but you have a rough idea. It adds a new suggestion to the string which can than be reviewed by others. ### What are "%(something)s"? From de07654f2d778d986fc3e351aa1c4ae8b54eb431 Mon Sep 17 00:00:00 2001 From: dambador <dambador@mailforspam.com> Date: Fri, 26 May 2017 19:52:01 +0000 Subject: [PATCH 111/147] Translated using Weblate (Russian) Currently translated at 90.8% (109 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/ru/ --- src/i18n/strings/ru.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index 95949eec..981e3a6c 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -1,5 +1,5 @@ { - "Add an email address above to configure email notifications": "Добавьте email адресс для настройки оповещений", + "Add an email address above to configure email notifications": "Добавьте email адрес для оповещений", "All notifications are currently disabled for all targets.": "Все оповещения отключены.", "An error occurred whilst saving your email notification preferences.": "Возникла ошибка при сохранении настроек оповещения вашего email.", "and remove": "и удалить", @@ -81,7 +81,7 @@ "You are not receiving desktop notifications": "Вы не получаете уведомления на рабочем столе", "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Вы могли настроить их в клиенте, отличном от Riot. Вы не можете настроить их в Riot, но они все еще применяются", "All messages": "Все сообщения", - "All messages (loud)": "Все сообщения (громко)", + "All messages (loud)": "", "Cancel Sending": "Отмена отправки", "Close": "Закрыть", "Download this file": "Скачать этот файл", @@ -115,5 +115,6 @@ "remove %(name)s from the directory": "удалить %(name)s из каталога", "Resend": "Переслать снова", "Source URL": "Источник URL", - "Welcome page": "Домашняя страница" + "Welcome page": "Домашняя страница", + "Advanced notification settings": "Настройки уведомлений" } From 3a7888e8a8c012edf7cf0063cb2e44e8c859d71a Mon Sep 17 00:00:00 2001 From: Stanislav N <pztrn@pztrn.name> Date: Fri, 26 May 2017 20:07:23 +0000 Subject: [PATCH 112/147] Translated using Weblate (Russian) Currently translated at 100.0% (120 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/ru/ --- src/i18n/strings/ru.json | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index 981e3a6c..b01f8d9f 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -11,7 +11,7 @@ "Delete the room alias": "Удалить привязку комнаты", "Direct Chat": "Персональное сообщение", "Directory": "Каталог", - "Dismiss": "Отелонено", + "Dismiss": "Отмена", "Drop here to": "Перетащите сюда", "Enable audible notifications in web client": "Включить звуковые оповещения в веб клиенте", "Enable desktop notifications": "Включить оповещения на рабочем столе", @@ -81,7 +81,7 @@ "You are not receiving desktop notifications": "Вы не получаете уведомления на рабочем столе", "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Вы могли настроить их в клиенте, отличном от Riot. Вы не можете настроить их в Riot, но они все еще применяются", "All messages": "Все сообщения", - "All messages (loud)": "", + "All messages (loud)": "Все сообщения (громко)", "Cancel Sending": "Отмена отправки", "Close": "Закрыть", "Download this file": "Скачать этот файл", @@ -116,5 +116,15 @@ "Resend": "Переслать снова", "Source URL": "Источник URL", "Welcome page": "Домашняя страница", - "Advanced notification settings": "Настройки уведомлений" + "Advanced notification settings": "Настройки уведомлений", + "Call invitation": "Звонок", + "customServer_text": "Вы можете войти с помощью вашего сервера.<br/>Это позволяет вам использовать Riot с уже существующей учетной записью на другом сервере.<br/><br/>Вы также можете задать свой сервер идентификации, но тогда вы не можете приглашать пользователей с помощью email-адреса и не можете быть приглашены по нему.", + "Enter keywords separated by a comma": "Введите ключевые слова, разделенные запятой", + "Messages containing my display name": "Сообщения, содержащие мое отображаемое имя", + "Messages containing my user name": "Сообщение, содержащие мое имя пользователя", + "Messages in group chats": "Сообщения в групповых чатах", + "Messages in one-to-one chats": "Сообщения в приватных чатах", + "Messages sent by bot": "Сообщения, отправленные ботом", + "more": "больше", + "When I'm invited to a room": "Когда я приглашен в комнату" } From 930e8af48bf28182dd666e43204d4b1b5c0948d2 Mon Sep 17 00:00:00 2001 From: Stanislav N <pztrn@pztrn.name> Date: Fri, 26 May 2017 20:08:38 +0000 Subject: [PATCH 113/147] Translated using Weblate (Russian) Currently translated at 100.0% (120 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/ru/ --- src/i18n/strings/ru.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index b01f8d9f..63ee526b 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -77,7 +77,7 @@ "Unable to look up room ID from server": "Не возможно найти ID комнаты на сервере", "unknown error code": "неизвестная ошибка", "Unnamed room": "Комната без названия", - "World readable": "Читаем мир", + "World readable": "Доступно всем", "You are not receiving desktop notifications": "Вы не получаете уведомления на рабочем столе", "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Вы могли настроить их в клиенте, отличном от Riot. Вы не можете настроить их в Riot, но они все еще применяются", "All messages": "Все сообщения", From 411a8be61dd4ae8850f2005046cc761c863ad4a5 Mon Sep 17 00:00:00 2001 From: Szimszon <github@oregpreshaz.eu> Date: Fri, 26 May 2017 20:17:46 +0000 Subject: [PATCH 114/147] Added translation using Weblate (Hungarian) --- src/i18n/strings/hu.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/i18n/strings/hu.json diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/src/i18n/strings/hu.json @@ -0,0 +1 @@ +{} \ No newline at end of file From 34af9f9b4b32e8eea0e55a925b4aa5204d0f177e Mon Sep 17 00:00:00 2001 From: Max Sandholm <max@sandholm.org> Date: Fri, 26 May 2017 21:20:15 +0000 Subject: [PATCH 115/147] Added translation using Weblate (Swedish) --- src/i18n/strings/sv.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/i18n/strings/sv.json diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/src/i18n/strings/sv.json @@ -0,0 +1 @@ +{} \ No newline at end of file From 96393f69b6a5aa832a6591d77048d62e02629c2c Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 22:37:44 +0100 Subject: [PATCH 116/147] Remove old versions before linking react/js sdk --- scripts/fetch-develop.deps.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/fetch-develop.deps.sh b/scripts/fetch-develop.deps.sh index c3bfb4e1..bbbc8341 100755 --- a/scripts/fetch-develop.deps.sh +++ b/scripts/fetch-develop.deps.sh @@ -40,11 +40,13 @@ dodep matrix-org matrix-react-sdk mkdir -p node_modules cd node_modules +rm -r matrix-js-sdk 2> /dev/null ln -s ../matrix-js-sdk ./ pushd matrix-js-sdk npm install popd +rm -r matrix-react-sdk 2> /dev/null ln -s ../matrix-react-sdk ./ pushd matrix-react-sdk mkdir -p node_modules From 35a671d43c53760698a6131b38c6628e2799dbe9 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson <matthew@matrix.org> Date: Fri, 26 May 2017 22:45:14 +0100 Subject: [PATCH 117/147] more i18n instructions --- docs/translating.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/translating.md b/docs/translating.md index cd8dd4f6..ca9920d3 100644 --- a/docs/translating.md +++ b/docs/translating.md @@ -6,6 +6,11 @@ - Be able to understand English - Be able to understand the language you want to translate riot-web into +## Step 0: Join #riotweb-translations:matrix.org + +1. Come and join https://riot.im/develop/#/room/#riotweb-translations:matrix.org +2. Read scrollback and/or ask if anyone else is working on your language, and co-ordinate if needed. In general little-or-no coordination is needed though :) + ## Step 1: Preparing your Weblate Profile 1. Head to https://translate.nordgedanken.de and register either via Github or email @@ -45,12 +50,15 @@ The yellow button has to be used if you are unsure about the translation but you ### What are "%(something)s"? -These things are variables that are filled inside the code. They can be room names, usernames or similiar. If you find one use it for changing the word order but do not delete it as thing are missing if you do so. +These things are variables that are expanded when displayed by Riot. They can be room names, usernames or similar. If you find one, you can move to the right place for your language, but not delete it as the variable will be missing if you do. + +A special case is `%(urlStart)s` and `%(urlEnd)s` which are used to mark the beginning of a hyperlink (i.e. `<a href="/somewhere">` and `</a>`. You must keep these markers surrounding the equivalent string in your language that needs to be hyperlinked. ### "I want to come back to this string. How?" You can use inside the translation field "Review needed" checkbox. It will be shown as Strings that need to be reviewed. + ### Further reading -The official Doc provides some more in-deepth explanation on how to do translations and talks about do and don't's. You can find it at: https://docs.weblate.org/en/latest/user/translating.html +The official Weblate doc provides some more in-deepth explanation on how to do translations and talks about do and don'ts. You can find it at: https://docs.weblate.org/en/latest/user/translating.html From 22e5e2126b823a615a4a0355cad00e52ebe3480e Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 22:51:55 +0100 Subject: [PATCH 118/147] rev-parse the commit from the deps Because it's not added to package.json by npm anymore --- scripts/jenkins.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/scripts/jenkins.sh b/scripts/jenkins.sh index 17f86fe1..4f2e9405 100755 --- a/scripts/jenkins.sh +++ b/scripts/jenkins.sh @@ -34,11 +34,9 @@ npm run lintall -- -f checkstyle -o eslint.xml || true rm dist/riot-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist - # node_modules deps from 'npm install' don't have a .git dir so can't - # rev-parse; but they do set the commit in package.json under 'gitHead' which - # we're grabbing here. -REACT_SHA=$(grep 'gitHead' node_modules/matrix-react-sdk/package.json | cut -d \" -f 4 | head -c 12) -JSSDK_SHA=$(grep 'gitHead' node_modules/matrix-js-sdk/package.json | cut -d \" -f 4 | head -c 12) +# Since the deps are fetched from git, we can rev-parse +REACT_SHA=$(cd node_modules/matrix-react-sdk; git rev-parse --short=12 HEAD) +JSSDK_SHA=$(cd node_modules/matrix-js-sdk; git rev-parse --short=12 HEAD) VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop From d0395b939a213b9bd1a8dbd0770c4d1741fd0158 Mon Sep 17 00:00:00 2001 From: David Baker <dave@matrix.org> Date: Fri, 26 May 2017 22:59:40 +0100 Subject: [PATCH 119/147] Add babel eslint plugin As our linter has been failing because it needs it --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 0f0ffe36..29b5beee 100644 --- a/package.json +++ b/package.json @@ -104,6 +104,7 @@ "emojione": "^2.2.7", "eslint": "^3.14.0", "eslint-config-google": "^0.7.1", + "eslint-plugin-babel": "^4.1.1", "eslint-plugin-flowtype": "^2.30.0", "eslint-plugin-react": "^6.9.0", "expect": "^1.16.0", From 1ff6d4846c840b66aa1247a40b80cf45d9d484b5 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson <matthew@matrix.org> Date: Sat, 27 May 2017 00:13:59 +0100 Subject: [PATCH 120/147] css for alwaysShowTimestamps --- .../vector/css/matrix-react-sdk/views/rooms/_EventTile.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss index 2dd037eb..9d970ad4 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/rooms/_EventTile.scss @@ -183,6 +183,10 @@ limitations under the License. visibility: visible; } +.mx_MessagePanel_alwaysShowTimestamps .mx_MessageTimestamp { + visibility: visible; +} + .mx_EventTile_selected .mx_MessageTimestamp { left: 3px; } From 8e250531ce03e0f948f7fdc556fee94f332ae948 Mon Sep 17 00:00:00 2001 From: Szimszon <github@oregpreshaz.eu> Date: Fri, 26 May 2017 20:31:02 +0000 Subject: [PATCH 121/147] Translated using Weblate (Hungarian) Currently translated at 11.6% (14 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/hu/ --- src/i18n/strings/hu.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json index 9e26dfee..8d836886 100644 --- a/src/i18n/strings/hu.json +++ b/src/i18n/strings/hu.json @@ -1 +1,16 @@ -{} \ No newline at end of file +{ + "Add an email address above to configure email notifications": "E-mail értesítés beállításához írd be az e-mail címed", + "Advanced notification settings": "Haladó értesítési beállítások", + "All messages": "Minden üzenet", + "All messages (loud)": "Minden üzenet (hangos)", + "All notifications are currently disabled for all targets.": "Minden céleszközön minden értesítés tiltva van.", + "An error occurred whilst saving your email notification preferences.": "Hiba történt az e-mail értesítés beállításánál.", + "Call invitation": "Hívás meghívó", + "Cancel Sending": "Küldés megszakítása", + "Can't update user notification settings": "Nem sikerül frissíteni az értesítési beállításokat", + "Close": "Bezár", + "Create new room": "Új szoba készítés", + "Couldn't find a matching Matrix room": "Nem található a keresett Matrix szoba", + "Custom Server Options": "Egyedi szerver beállítások", + "delete the alias": "becenév törlése" +} From 0074fa00ac294ce9529ccc032fe3d79472030034 Mon Sep 17 00:00:00 2001 From: dambador <dambador@mailforspam.com> Date: Fri, 26 May 2017 21:39:41 +0000 Subject: [PATCH 122/147] Translated using Weblate (Russian) Currently translated at 100.0% (120 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/ru/ --- src/i18n/strings/ru.json | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index 63ee526b..708a9a76 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -1,7 +1,7 @@ { "Add an email address above to configure email notifications": "Добавьте email адрес для оповещений", "All notifications are currently disabled for all targets.": "Все оповещения отключены.", - "An error occurred whilst saving your email notification preferences.": "Возникла ошибка при сохранении настроек оповещения вашего email.", + "An error occurred whilst saving your email notification preferences.": "Возникла ошибка при сохранении настроек оповещения по электронной почте.", "and remove": "и удалить", "Can't update user notification settings": "Не возможно обновить пользовательские настройки оповещения", "Create new room": "Создать комнату", @@ -15,23 +15,23 @@ "Drop here to": "Перетащите сюда", "Enable audible notifications in web client": "Включить звуковые оповещения в веб клиенте", "Enable desktop notifications": "Включить оповещения на рабочем столе", - "Enable email notifications": "Включить email оповещения", + "Enable email notifications": "Включить оповещения по электронной почте", "Enable notifications for this account": "Включить оповещения для этого аккаунта", "Enable them now": "Включить сейчас", "Enter keywords separated by a comma:": "Введите ключевые слова, разделенные запятой:", "Error": "Ошибка", - "Error saving email notification preferences": "Ошибка сохранения настроек email оповещений", + "Error saving email notification preferences": "Ошибка сохранения настроек оповещений по электронной почте", "#example": "#пример", "Failed to": "Не удалось", "Failed to add tag ": "Не удалось добавить тег ", "Failed to change settings": "Не удалось изменить настройки", "Failed to update keywords": "Не удалось обновить ключевые слова", "Failed to get protocol list from Home Server": "Не удалось получить список протоколов с Пользовательского Сервера", - "Failed to get public room list": "Не удалось получить список публичных комнат", - "Failed to join the room": "Не удалось присоединиться к комнате", + "Failed to get public room list": "Не удалось получить список общих комнат", + "Failed to join the room": "Не удалось войти в комнату", "Failed to remove tag ": "Не удалось удалить тег ", "Failed to set Direct Message status of room": "Не удалось задать статус комнаты Персональное Сообщение", - "Favourite": "Фаворит", + "Favourite": "Избранное", "Fetching third party location failed": "Не удалось получить местоположение", "Files": "Файлы", "Filter room names": "Отфильтровать по названию комнаты", @@ -46,7 +46,7 @@ "Low Priority": "Низкий приоритет", "Members": "Пользователи", "No rooms to show": "Нет комнат для отображения", - "Noisy": "Шумный", + "Noisy": "Звук", "Notification targets": "Цели уведомления", "Notifications": "Уведомления", "Notifications on the following keywords follow rules which can’t be displayed here:": "Уведомления по следующим ключевым словам соответствуют правилам, которые нельзя отобразить здесь", @@ -55,24 +55,24 @@ "Off": "Выключить", "On": "Включить", "Operation failed": "Операция не удалась", - "Please Register": "Пожалуйста зарегистрируйтесь", + "Please Register": "Пожалуйста, зарегистрируйтесь", "powered by Matrix": "разработано в Matrix", "Reject": "Отклонить", "Remove": "Удалить", "remove": "удалить", "Remove from Directory": "Удалить из каталога", - "Riot does not know how to join a room on this network": "Riot не знает как присоединиться к этой сети", + "Riot does not know how to join a room on this network": "Riot не знает как войти в комнату в этой сети", "Room directory": "Каталог комнат", "Room not found": "Комната не найдена", "Search for a room": "Искать комнату", "Settings": "Настройки", "Start chat": "Начать чат", "The Home Server may be too old to support third party networks": "Пользовательский сервер может быть слишком старым для поддержки сторонних сетей", - "There are advanced notifications which are not shown here": "TЗдесь представлены расширенные уведомления, которые здесь не показаны", - "The server may be unavailable or overloaded": "Возможно, сервер недоступен или перегружен", + "There are advanced notifications which are not shown here": "Здесь расширенные уведомления, которые здесь не показаны", + "The server may be unavailable or overloaded": "Возможно сервер недоступен или перегружен", "This room is inaccessible to guests. You may be able to join if you register": "Эта комната недоступна для гостей. Вы можете присоединиться, если зарегистрируетесь", " to room": " к комнате", - "Unable to fetch notification target list": "Не удалось получить список целевых уведомлений", + "Unable to fetch notification target list": "Не удалось получить список целей уведомления", "Unable to join network": "Не возможно присоединиться к сети", "Unable to look up room ID from server": "Не возможно найти ID комнаты на сервере", "unknown error code": "неизвестная ошибка", @@ -89,9 +89,9 @@ "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Удалить псевдоним комнаты %(alias)s и очистить %(name)s из каталога?", "Failed to add tag %(tagName)s to room": "Не удалось добавить тег %(tagName)s в комнату", "Failed to forget room %(errCode)s": "Не удалось забыть комнату %(errCode)s", - "Failed to remove tag %(prevTag)s from room": "Не удалось удалить тег %(prevTag)s из комнаты", - "Failed to set direct chat tag": "Не удалось установить прямой чат тег", - "Unhide Preview": "Показать пред. просмотр", + "Failed to remove tag %(prevTag)s from room": "Не удалось убрать пометку %(prevTag)s из комнаты", + "Failed to set direct chat tag": "Не удалось пометить прямую беседу", + "Unhide Preview": "Показать предпросмотр", "Uploaded on %(date)s by %(user)s": "Загружено %(date)s %(user)s", "View Decrypted Source": "Просмотр зашыфрованного источника", "View Source": "Просмотр источника", @@ -103,7 +103,7 @@ "Wednesday": "Среда", "Thursday": "Четверг", "Friday": "Пятница", - "Saturday": "Субота", + "Saturday": "Суббота", "Today": "Сегодня", "Yesterday": "Вчера", "Mentions only": "Только упоминание", @@ -114,7 +114,7 @@ "Remove %(name)s from the directory?": "Удалить %(name)s из каталога?", "remove %(name)s from the directory": "удалить %(name)s из каталога", "Resend": "Переслать снова", - "Source URL": "Источник URL", + "Source URL": "Исходный URL", "Welcome page": "Домашняя страница", "Advanced notification settings": "Настройки уведомлений", "Call invitation": "Звонок", From ac42fbbd494bbd63790c264d6395736a361e8d40 Mon Sep 17 00:00:00 2001 From: Max Sandholm <max@sandholm.org> Date: Fri, 26 May 2017 21:48:34 +0000 Subject: [PATCH 123/147] Translated using Weblate (Swedish) Currently translated at 31.6% (38 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/sv/ --- src/i18n/strings/sv.json | 41 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json index 9e26dfee..0f84fc03 100644 --- a/src/i18n/strings/sv.json +++ b/src/i18n/strings/sv.json @@ -1 +1,40 @@ -{} \ No newline at end of file +{ + "Add an email address above to configure email notifications": "Lägg till en epostadress här för att konfigurera epostaviseringar", + "Advanced notification settings": "Avancerade aviseringsinställingar", + "All messages": "Alla meddelanden", + "All messages (loud)": "Alla meddelanden (högljudd)", + "All notifications are currently disabled for all targets.": "Alla aviseringar är för tillfället avstängda för alla mål.", + "An error occurred whilst saving your email notification preferences.": "Ett fel uppstod då epostaviseringsinställningarna sparades.", + "Call invitation": "Inbjudan till samtal", + "Cancel Sending": "Avbryt sändning", + "Can't update user notification settings": "Kan inte uppdatera aviseringsinställningarna", + "Close": "Stäng", + "Create new room": "Nytt rum", + "Couldn't find a matching Matrix room": "Kunde inte hitta ett matchande Matrix-rum", + "Custom Server Options": "Egna serverinställningar", + "customServer_text": "Du kan använda serverinställningarna för att logga in i en annan Matrix-server genom att specifiera en URL till en annan hemserver.<br/>Så här kan du använda Riot med ett existerande Matrix-konto på en annan hemserver.<br/><br/>Du kan också specifiera en egen identitetsserver, men du kommer inte att kunna bjuda in andra via epostadress, eller bli inbjuden via epostadress.", + "delete the alias": "radera adressen", + "Direct Chat": "Direkt chatt", + "Directory": "Katalog", + "Dismiss": "Avvisa", + "Download this file": "Ladda ner filen", + "Drop here to %(verb)s": "Dra hit för att %(verb)s", + "Enable audible notifications in web client": "Sätt på högljudda aviseringar i webbklienten", + "Enable desktop notifications": "Sätt på skrivbordsaviseringar", + "Enable email notifications": "Sätt på epostaviseringar", + "Enable notifications for this account": "Sätt på aviseringar för det här kontot", + "Enable them now": "Sätt på nu", + "Enter keywords separated by a comma": "Skriv in nyckelord, separerade med kommatecken", + "Error": "Fel", + "Error saving email notification preferences": "Ett fel uppstod då epostaviseringsinställningarna sparades", + "Failed to": "Det gick inte att", + "Failed to add tag %(tagName)s to room": "Det gick inte att lägga till \"%(tagName)s\" till rummet", + "Failed to change settings": "Det gick inte att spara inställningarna", + "Failed to forget room %(errCode)s": "Det gick inte att glömma bort rummet: %(errCode)s", + "Failed to update keywords": "Det gick inte att uppdatera nyckelorden", + "Failed to get protocol list from Home Server": "Det gick inte att hämta protokollistan från hemservern", + "Failed to get public room list": "Det gick inte att hämta listan över offentliga rum", + "Failed to join the room": "Det gick inte att ansluta till rummet", + "Failed to remove tag %(prevTag)s from room": "Det gick inte att radera taggen %(prevTag)s från rummet", + "Failed to set direct chat tag": "Det gick inte att markera rummet som direkt chatt" +} From a60ab42ee381a0fb90ad1225b88683a997710ab3 Mon Sep 17 00:00:00 2001 From: Tulir Asokan <tulir@maunium.net> Date: Sat, 27 May 2017 07:33:17 +0000 Subject: [PATCH 124/147] Added translation using Weblate (Finnish) --- src/i18n/strings/fi.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/i18n/strings/fi.json diff --git a/src/i18n/strings/fi.json b/src/i18n/strings/fi.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/src/i18n/strings/fi.json @@ -0,0 +1 @@ +{} \ No newline at end of file From 4ff09199d7f34459c4edc3fdc4dfbfb69abef452 Mon Sep 17 00:00:00 2001 From: Tulir Asokan <tulir@maunium.net> Date: Sat, 27 May 2017 07:41:41 +0000 Subject: [PATCH 125/147] Translated using Weblate (Finnish) Currently translated at 0.8% (1 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/fi/ --- src/i18n/strings/fi.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/fi.json b/src/i18n/strings/fi.json index 9e26dfee..d2e59432 100644 --- a/src/i18n/strings/fi.json +++ b/src/i18n/strings/fi.json @@ -1 +1,3 @@ -{} \ No newline at end of file +{ + "Sunday": "Sunnuntai" +} From b33eab0188aa6c22a4d0209843d869b0dceeb777 Mon Sep 17 00:00:00 2001 From: nouts <nouts@protonmail.com> Date: Sat, 27 May 2017 09:41:10 +0000 Subject: [PATCH 126/147] Translated using Weblate (French) Currently translated at 100.0% (120 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/fr/ --- src/i18n/strings/fr.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index 8de03d72..ee30d98b 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -116,5 +116,9 @@ "World readable": "Visible par tout le monde", "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Vous les avez probablement configurées dans un autre client que Riot. Vous ne pouvez pas les configurer dans Riot mais elles s'appliquent quand même", "Guests can join": "Ouvert aux invités", - " to room": " au salon" + " to room": " au salon", + "Advanced notification settings": "Paramètres de notifications avancés", + "An error occurred whilst saving your email notification preferences.": "Une erreur est survenue lors de la sauvegarde de vos préférences de notifications mail.", + "customServer_text": "Vous pouvez utiliser l'option de serveur personnalisé pour vous connectez à d'autres serveurs Matrix, en spécifiant une adresse différente pour Home serveur.<br/>Cela permet d'utiliser Riot avec un compte existant sur un Home serveur différent.<br/><br/>Vous pouvez aussi indiquer un serveur d'identité personnel mais vous ne pourrez plus inviter des utilisateurs par email, ou être invité par email.", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Les notifications pour les mots clés suivant répondent à des critères qui ne peuvent pas être affichés ici :" } From a526bd95aa848ae2c46f6ea7a1e0aea0bd2d0765 Mon Sep 17 00:00:00 2001 From: Oliver Hunt <oliver@hunt.bz> Date: Sat, 27 May 2017 15:15:45 +0100 Subject: [PATCH 127/147] Fixed an input field's background color in dark theme --- .../matrix-react-sdk/views/dialogs/_ConfirmUserActionDialog.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/skins/vector/css/matrix-react-sdk/views/dialogs/_ConfirmUserActionDialog.scss b/src/skins/vector/css/matrix-react-sdk/views/dialogs/_ConfirmUserActionDialog.scss index abd4e9c1..d12bcd37 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/dialogs/_ConfirmUserActionDialog.scss +++ b/src/skins/vector/css/matrix-react-sdk/views/dialogs/_ConfirmUserActionDialog.scss @@ -37,6 +37,7 @@ limitations under the License. font-family: 'Open Sans', Arial, Helvetica, Sans-Serif; font-size: 14px; color: $primary-fg-color; + background-color: $primary-bg-color; border-radius: 3px; border: solid 1px $input-border-color; From 4293273e5555f28ebe8c789fc55769f348154dfc Mon Sep 17 00:00:00 2001 From: Matthew Hodgson <matthew@matrix.org> Date: Sat, 27 May 2017 19:26:19 +0100 Subject: [PATCH 128/147] fix a bunch of i18n fails picked up by check-i18n.pl --- src/components/views/settings/Notifications.js | 2 +- src/i18n/strings/be.json | 4 ++-- src/i18n/strings/de_DE.json | 6 +++--- src/i18n/strings/en_EN.json | 6 +++--- src/i18n/strings/fr.json | 8 ++++---- src/i18n/strings/pt.json | 6 +++--- src/i18n/strings/pt_BR.json | 6 +++--- src/i18n/strings/ru.json | 6 +++--- src/i18n/strings/sv.json | 6 +++--- 9 files changed, 25 insertions(+), 25 deletions(-) diff --git a/src/components/views/settings/Notifications.js b/src/components/views/settings/Notifications.js index 131f4759..11948ace 100644 --- a/src/components/views/settings/Notifications.js +++ b/src/components/views/settings/Notifications.js @@ -714,7 +714,7 @@ module.exports = React.createClass({ {masterPushRuleDiv} <div className="mx_UserSettings_notifTable"> - { _t('All notifications are currently disabled for all targets') }. + { _t('All notifications are currently disabled for all targets.') }. </div> </div> ); diff --git a/src/i18n/strings/be.json b/src/i18n/strings/be.json index 47e566fb..34b31de1 100644 --- a/src/i18n/strings/be.json +++ b/src/i18n/strings/be.json @@ -16,7 +16,7 @@ "Directory": "Каталог", "Dismiss": "Aдхіліць", "Download this file": "Спампаваць гэты файл", - "Drop here to %(verb)s": "Перацягнуць сюды %(verb)s", + "Drop here %(toAction)s": "Перацягнуць сюды %(verb)s", "Enable audible notifications in web client": "Ўключыць гукавыя апавяшчэнні ў вэб-кліенце", "Enable desktop notifications": "Ўключыць апавяшчэнні на працоўным стале", "Enable email notifications": "Ўключыць паведамлення па электроннай пошце", @@ -34,7 +34,7 @@ "Failed to get protocol list from Home Server": "Не ўдалося атрымаць спіс пратаколаў ад хатняга сервера", "Failed to get public room list": "Не ўдалося атрымаць спіс агульных пакояў", "Failed to join the room": "Не ўдалося далучыцца да пакоя", - "Failed to remove tag %(prevTag)s from room": "Не ўдалося выдаліць %(prevTag)s з пакоя", + "Failed to remove tag %(tagName)s from room": "Не ўдалося выдаліць %(prevTag)s з пакоя", "Failed to set direct chat tag": "Не ўдалося ўсталяваць тэг прамога чата", "Failed to set Direct Message status of room": "Не ўдалося ўсталяваць статут прамога паведамлення пакою", "Favourite": "Улюбёнае", diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index 443bf7f9..3f103bee 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -81,7 +81,7 @@ "On": "An", "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Du hast sie eventuell auf einem anderen Client als Riot konfiguriert. Sie sind in Riot nicht anpassbar gelten aber trotzdem", " to room": " an Raum", - "Drop here to %(verb)s": "%(verb)s hierher ziehen", + "Drop here %(toAction)s": "%(verb)s hierher ziehen", "All messages": "Alle Nachrichten", "All messages (loud)": "Alle Nachrichten (laut)", "Cancel Sending": "Senden abbrechen", @@ -90,7 +90,7 @@ "Download this file": "Datei Herunterladen", "Failed to add tag %(tagName)s to room": "Das Hinzufügen des Tags %(tagName)s für den Raum ist fehlgeschlagen", "Failed to forget room %(errCode)s": "Das Entfernen des Raums %(errCode)s aus deiner Liste ist fehlgeschlagen", - "Failed to remove tag %(prevTag)s from room": "Das Entfernen des Tags %(prevTag)s für den Raum ist fehlgeschlagen", + "Failed to remove tag %(tagName)s from room": "Das Entfernen des Tags %(prevTag)s für den Raum ist fehlgeschlagen", "Failed to set direct chat tag": "Fehler beim setzen der Direct Chat Kennzeichnung", "Mentions only": "Nur, wenn du erwähnt wirst", "Mute": "Lautlos", @@ -120,7 +120,7 @@ "Welcome page": "Willkommensseite", "Advanced notification settings": "Erweiterte Benachrichtigungs-Einstellungen", "Call invitation": "Anruf-Einladung", - "Enter keywords separated by a comma": "Trage Schlagworte, mit Komma getrennt, ein", + "Enter keywords separated by a comma:": "Trage Schlagworte, mit Komma getrennt, ein", "Messages containing my display name": "Nachrichten, die meinen Anzeigenamen enthalten", "Messages containing my user name": "Nachrichten, die meinen Nutzernamen enthalten", "Messages in group chats": "Nachrichten in Chat-Gruppen", diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index e4f79994..039f5b76 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -19,13 +19,13 @@ "Directory": "Directory", "Dismiss": "Dismiss", "Download this file": "Download this file", - "Drop here to %(verb)s": "Drop here to %(verb)s", + "Drop here %(toAction)s": "Drop here %(toAction)s", "Enable audible notifications in web client": "Enable audible notifications in web client", "Enable desktop notifications": "Enable desktop notifications", "Enable email notifications": "Enable email notifications", "Enable notifications for this account": "Enable notifications for this account", "Enable them now": "Enable them now", - "Enter keywords separated by a comma": "Enter keywords separated by a comma", + "Enter keywords separated by a comma:": "Enter keywords separated by a comma:", "Error": "Error", "Error saving email notification preferences": "Error saving email notification preferences", "#example": "#example", @@ -37,7 +37,7 @@ "Failed to get protocol list from Home Server": "Failed to get protocol list from Home Server", "Failed to get public room list": "Failed to get public room list", "Failed to join the room": "Failed to join the room", - "Failed to remove tag %(prevTag)s from room": "Failed to remove tag %(prevTag)s from room", + "Failed to remove tag %(tagName)s from room": "Failed to remove tag %(tagName)s from room", "Failed to set direct chat tag": "Failed to set direct chat tag", "Failed to set Direct Message status of room": "Failed to set Direct Message status of room", "Favourite": "Favourite", diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index ee30d98b..111817dd 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -3,7 +3,7 @@ "All messages": "Tous les messages", "All messages (loud)": "Tous les messages (fort)", "All notifications are currently disabled for all targets.": "Toutes les notifications sont désactivées pour tous les appareils.", - "An error occurred whilst saving your email notification preferences": "Une erreur est survenue lors de la sauvegarde de vos préférences de notifications par e-mail", + "An error occurred whilst saving your email notification preferences.": "Une erreur est survenue lors de la sauvegarde de vos préférences de notifications par e-mail", "Cancel Sending": "Annuler l'envoi", "Can't update user notification settings": "Impossible de mettre à jour les notifications utilisateur", "Close": "Fermer", @@ -16,13 +16,13 @@ "Directory": "Répertoire", "Dismiss": "Rejeter", "Download this file": "Télécharger ce fichier", - "Drop here to %(verb)s": "Déposer ici pour %(verb)s", + "Drop here %(toAction)s": "Déposer ici pour %(verb)s", "Enable audible notifications in web client": "Activer les notifications sonores pour le client web", "Enable desktop notifications": "Activer les notifications de bureau", "Enable email notifications": "Activer les notifications par e-mail", "Enable notifications for this account": "Activer les notifications pour ce compte", "Enable them now": "Les activer maintenant", - "Enter keywords separated by a comma": "Entrez les mots clés séparés par une virgule", + "Enter keywords separated by a comma:": "Entrez les mots clés séparés par une virgule", "Error": "Erreur", "Error saving email notification preferences": "Erreur lors de la sauvegarde des notifications par email", "#example": "#exemple", @@ -34,7 +34,7 @@ "Failed to get protocol list from Home Server": "Echec lors de la récupération depuis le serveur maison", "Failed to get public room list": "Echec lors de la récupération de la liste des salons publics", "Failed to join the room": "Échec de l'adhésion au salon", - "Failed to remove tag %(prevTag)s from room": "Échec dans la suppression de l’étiquette %(prevTag)s du salon", + "Failed to remove tag %(tagName)s from room": "Échec dans la suppression de l’étiquette %(prevTag)s du salon", "Failed to set direct chat tag": "Échec dans l'attribution d'une étiquette dans le chat direct", "Favourite": "Favoris", "Operation failed": "L'opération a échoué", diff --git a/src/i18n/strings/pt.json b/src/i18n/strings/pt.json index 89385f5d..bcd7d281 100644 --- a/src/i18n/strings/pt.json +++ b/src/i18n/strings/pt.json @@ -2,7 +2,7 @@ "Add an email address above to configure email notifications": "Adicione um endereço de email acima para configurar as notificações por email", "All messages": "Todas as mensagens", "All messages (loud)": "Todas as mensagens (alto)", - "All notifications are currently disabled for all targets": "Todas as notificações estão atualmente desativadas para todos os destinos", + "All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desativadas para todos os destinos", "An error occurred whilst saving your email notification preferences.": "Um erro ocorreu enquanto salvava suas preferências de notificação por email.", "Cancel Sending": "Cancelar o envio", "Can't update user notification settings": "Não é possível atualizar as preferências de notificação", @@ -16,7 +16,7 @@ "Directory": "Diretório", "Dismiss": "Encerrar", "Download this file": "Baixar este arquivo", - "Drop here to %(verb)s": "Arraste aqui para %(verb)s", + "Drop here %(toAction)s": "Arraste aqui para %(verb)s", "Enable audible notifications in web client": "Ativar notificações de áudio no cliente web", "Enable desktop notifications": "Ativar notificações no desktop", "Enable email notifications": "Ativar notificações por email", @@ -110,7 +110,7 @@ "Yesterday": "Ontem", "All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desabilitadas para todos os recipientes.", "#example": "#exemplo", - "Failed to remove tag %(prevTag)s from room": "Não foi possível remover a marcação %(prevTag)s desta sala", + "Failed to remove tag %(tagName)s from room": "Não foi possível remover a marcação %(prevTag)s desta sala", "Notifications on the following keywords follow rules which can’t be displayed here": "As notificações sobre as palavras-chave abaixo seguem regras que não podem ser mostradas aqui", "Welcome page": "Página de boas vindas" } diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json index 7ec59997..5fb9c139 100644 --- a/src/i18n/strings/pt_BR.json +++ b/src/i18n/strings/pt_BR.json @@ -2,7 +2,7 @@ "Add an email address above to configure email notifications": "Insira um endereço de email no campo acima para configurar suas notificações por email", "All messages": "Todas as mensagens", "All messages (loud)": "Todas as mensagens (alto)", - "All notifications are currently disabled for all targets": "Todas as notificações estão atualmente desativadas para todos os destinos", + "All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desativadas para todos os destinos", "An error occurred whilst saving your email notification preferences.": "Um erro ocorreu enquanto o sistema estava salvando suas preferências de notificação por email.", "Call invitation": "Convite para chamada", "Cancel Sending": "Cancelar o envio", @@ -17,7 +17,7 @@ "Directory": "Diretório", "Dismiss": "Encerrar", "Download this file": "Baixar este arquivo", - "Drop here to %(verb)s": "Arraste aqui para %(verb)s", + "Drop here %(toAction)s": "Arraste aqui para %(verb)s", "Enable audible notifications in web client": "Ativar notificações de áudio no cliente web", "Enable desktop notifications": "Ativar notificações no desktop", "Enable email notifications": "Ativar notificações por email", @@ -118,6 +118,6 @@ "Yesterday": "Ontem", "All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desabilitadas para todos os destinatários.", "#example": "#exemplo", - "Failed to remove tag %(prevTag)s from room": "Não foi possível remover a marcação %(prevTag)s desta sala", + "Failed to remove tag %(tagName)s from room": "Não foi possível remover a marcação %(prevTag)s desta sala", "Welcome page": "Página de boas vindas" } diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index 708a9a76..2e765d80 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -85,11 +85,11 @@ "Cancel Sending": "Отмена отправки", "Close": "Закрыть", "Download this file": "Скачать этот файл", - "Drop here to %(verb)s": "Вставить сюда для %(verb)s", + "Drop here %(toAction)s": "Вставить сюда для %(verb)s", "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Удалить псевдоним комнаты %(alias)s и очистить %(name)s из каталога?", "Failed to add tag %(tagName)s to room": "Не удалось добавить тег %(tagName)s в комнату", "Failed to forget room %(errCode)s": "Не удалось забыть комнату %(errCode)s", - "Failed to remove tag %(prevTag)s from room": "Не удалось убрать пометку %(prevTag)s из комнаты", + "Failed to remove tag %(tagName)s from room": "Не удалось убрать пометку %(prevTag)s из комнаты", "Failed to set direct chat tag": "Не удалось пометить прямую беседу", "Unhide Preview": "Показать предпросмотр", "Uploaded on %(date)s by %(user)s": "Загружено %(date)s %(user)s", @@ -119,7 +119,7 @@ "Advanced notification settings": "Настройки уведомлений", "Call invitation": "Звонок", "customServer_text": "Вы можете войти с помощью вашего сервера.<br/>Это позволяет вам использовать Riot с уже существующей учетной записью на другом сервере.<br/><br/>Вы также можете задать свой сервер идентификации, но тогда вы не можете приглашать пользователей с помощью email-адреса и не можете быть приглашены по нему.", - "Enter keywords separated by a comma": "Введите ключевые слова, разделенные запятой", + "Enter keywords separated by a comma:": "Введите ключевые слова, разделенные запятой", "Messages containing my display name": "Сообщения, содержащие мое отображаемое имя", "Messages containing my user name": "Сообщение, содержащие мое имя пользователя", "Messages in group chats": "Сообщения в групповых чатах", diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json index 0f84fc03..1a7ec9a8 100644 --- a/src/i18n/strings/sv.json +++ b/src/i18n/strings/sv.json @@ -18,13 +18,13 @@ "Directory": "Katalog", "Dismiss": "Avvisa", "Download this file": "Ladda ner filen", - "Drop here to %(verb)s": "Dra hit för att %(verb)s", + "Drop here %(toAction)s": "Dra hit för att %(verb)s", "Enable audible notifications in web client": "Sätt på högljudda aviseringar i webbklienten", "Enable desktop notifications": "Sätt på skrivbordsaviseringar", "Enable email notifications": "Sätt på epostaviseringar", "Enable notifications for this account": "Sätt på aviseringar för det här kontot", "Enable them now": "Sätt på nu", - "Enter keywords separated by a comma": "Skriv in nyckelord, separerade med kommatecken", + "Enter keywords separated by a comma:": "Skriv in nyckelord, separerade med kommatecken", "Error": "Fel", "Error saving email notification preferences": "Ett fel uppstod då epostaviseringsinställningarna sparades", "Failed to": "Det gick inte att", @@ -35,6 +35,6 @@ "Failed to get protocol list from Home Server": "Det gick inte att hämta protokollistan från hemservern", "Failed to get public room list": "Det gick inte att hämta listan över offentliga rum", "Failed to join the room": "Det gick inte att ansluta till rummet", - "Failed to remove tag %(prevTag)s from room": "Det gick inte att radera taggen %(prevTag)s från rummet", + "Failed to remove tag %(tagName)s from room": "Det gick inte att radera taggen %(prevTag)s från rummet", "Failed to set direct chat tag": "Det gick inte att markera rummet som direkt chatt" } From 85e6cbe0c779b96bdfc6c21fe5fec285f23ad3c6 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson <matthew@matrix.org> Date: Sat, 27 May 2017 19:28:54 +0100 Subject: [PATCH 129/147] oops, fix var names --- src/i18n/strings/be.json | 4 ++-- src/i18n/strings/de_DE.json | 4 ++-- src/i18n/strings/fr.json | 4 ++-- src/i18n/strings/pt.json | 4 ++-- src/i18n/strings/pt_BR.json | 4 ++-- src/i18n/strings/ru.json | 4 ++-- src/i18n/strings/sv.json | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/i18n/strings/be.json b/src/i18n/strings/be.json index 34b31de1..18b0179a 100644 --- a/src/i18n/strings/be.json +++ b/src/i18n/strings/be.json @@ -16,7 +16,7 @@ "Directory": "Каталог", "Dismiss": "Aдхіліць", "Download this file": "Спампаваць гэты файл", - "Drop here %(toAction)s": "Перацягнуць сюды %(verb)s", + "Drop here %(toAction)s": "Перацягнуць сюды %(toAction)s", "Enable audible notifications in web client": "Ўключыць гукавыя апавяшчэнні ў вэб-кліенце", "Enable desktop notifications": "Ўключыць апавяшчэнні на працоўным стале", "Enable email notifications": "Ўключыць паведамлення па электроннай пошце", @@ -34,7 +34,7 @@ "Failed to get protocol list from Home Server": "Не ўдалося атрымаць спіс пратаколаў ад хатняга сервера", "Failed to get public room list": "Не ўдалося атрымаць спіс агульных пакояў", "Failed to join the room": "Не ўдалося далучыцца да пакоя", - "Failed to remove tag %(tagName)s from room": "Не ўдалося выдаліць %(prevTag)s з пакоя", + "Failed to remove tag %(tagName)s from room": "Не ўдалося выдаліць %(tagName)s з пакоя", "Failed to set direct chat tag": "Не ўдалося ўсталяваць тэг прамога чата", "Failed to set Direct Message status of room": "Не ўдалося ўсталяваць статут прамога паведамлення пакою", "Favourite": "Улюбёнае", diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index 3f103bee..62b28dc6 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -81,7 +81,7 @@ "On": "An", "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Du hast sie eventuell auf einem anderen Client als Riot konfiguriert. Sie sind in Riot nicht anpassbar gelten aber trotzdem", " to room": " an Raum", - "Drop here %(toAction)s": "%(verb)s hierher ziehen", + "Drop here %(toAction)s": "%(toAction)s hierher ziehen", "All messages": "Alle Nachrichten", "All messages (loud)": "Alle Nachrichten (laut)", "Cancel Sending": "Senden abbrechen", @@ -90,7 +90,7 @@ "Download this file": "Datei Herunterladen", "Failed to add tag %(tagName)s to room": "Das Hinzufügen des Tags %(tagName)s für den Raum ist fehlgeschlagen", "Failed to forget room %(errCode)s": "Das Entfernen des Raums %(errCode)s aus deiner Liste ist fehlgeschlagen", - "Failed to remove tag %(tagName)s from room": "Das Entfernen des Tags %(prevTag)s für den Raum ist fehlgeschlagen", + "Failed to remove tag %(tagName)s from room": "Das Entfernen des Tags %(tagName)s für den Raum ist fehlgeschlagen", "Failed to set direct chat tag": "Fehler beim setzen der Direct Chat Kennzeichnung", "Mentions only": "Nur, wenn du erwähnt wirst", "Mute": "Lautlos", diff --git a/src/i18n/strings/fr.json b/src/i18n/strings/fr.json index 111817dd..dfd38e86 100644 --- a/src/i18n/strings/fr.json +++ b/src/i18n/strings/fr.json @@ -16,7 +16,7 @@ "Directory": "Répertoire", "Dismiss": "Rejeter", "Download this file": "Télécharger ce fichier", - "Drop here %(toAction)s": "Déposer ici pour %(verb)s", + "Drop here %(toAction)s": "Déposer ici pour %(toAction)s", "Enable audible notifications in web client": "Activer les notifications sonores pour le client web", "Enable desktop notifications": "Activer les notifications de bureau", "Enable email notifications": "Activer les notifications par e-mail", @@ -34,7 +34,7 @@ "Failed to get protocol list from Home Server": "Echec lors de la récupération depuis le serveur maison", "Failed to get public room list": "Echec lors de la récupération de la liste des salons publics", "Failed to join the room": "Échec de l'adhésion au salon", - "Failed to remove tag %(tagName)s from room": "Échec dans la suppression de l’étiquette %(prevTag)s du salon", + "Failed to remove tag %(tagName)s from room": "Échec dans la suppression de l’étiquette %(tagName)s du salon", "Failed to set direct chat tag": "Échec dans l'attribution d'une étiquette dans le chat direct", "Favourite": "Favoris", "Operation failed": "L'opération a échoué", diff --git a/src/i18n/strings/pt.json b/src/i18n/strings/pt.json index bcd7d281..1f2efa33 100644 --- a/src/i18n/strings/pt.json +++ b/src/i18n/strings/pt.json @@ -16,7 +16,7 @@ "Directory": "Diretório", "Dismiss": "Encerrar", "Download this file": "Baixar este arquivo", - "Drop here %(toAction)s": "Arraste aqui para %(verb)s", + "Drop here %(toAction)s": "Arraste aqui para %(toAction)s", "Enable audible notifications in web client": "Ativar notificações de áudio no cliente web", "Enable desktop notifications": "Ativar notificações no desktop", "Enable email notifications": "Ativar notificações por email", @@ -110,7 +110,7 @@ "Yesterday": "Ontem", "All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desabilitadas para todos os recipientes.", "#example": "#exemplo", - "Failed to remove tag %(tagName)s from room": "Não foi possível remover a marcação %(prevTag)s desta sala", + "Failed to remove tag %(tagName)s from room": "Não foi possível remover a marcação %(tagName)s desta sala", "Notifications on the following keywords follow rules which can’t be displayed here": "As notificações sobre as palavras-chave abaixo seguem regras que não podem ser mostradas aqui", "Welcome page": "Página de boas vindas" } diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json index 5fb9c139..ab1f91b7 100644 --- a/src/i18n/strings/pt_BR.json +++ b/src/i18n/strings/pt_BR.json @@ -17,7 +17,7 @@ "Directory": "Diretório", "Dismiss": "Encerrar", "Download this file": "Baixar este arquivo", - "Drop here %(toAction)s": "Arraste aqui para %(verb)s", + "Drop here %(toAction)s": "Arraste aqui para %(toAction)s", "Enable audible notifications in web client": "Ativar notificações de áudio no cliente web", "Enable desktop notifications": "Ativar notificações no desktop", "Enable email notifications": "Ativar notificações por email", @@ -118,6 +118,6 @@ "Yesterday": "Ontem", "All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desabilitadas para todos os destinatários.", "#example": "#exemplo", - "Failed to remove tag %(tagName)s from room": "Não foi possível remover a marcação %(prevTag)s desta sala", + "Failed to remove tag %(tagName)s from room": "Não foi possível remover a marcação %(tagName)s desta sala", "Welcome page": "Página de boas vindas" } diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index 2e765d80..fe5196ae 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -85,11 +85,11 @@ "Cancel Sending": "Отмена отправки", "Close": "Закрыть", "Download this file": "Скачать этот файл", - "Drop here %(toAction)s": "Вставить сюда для %(verb)s", + "Drop here %(toAction)s": "Вставить сюда для %(toAction)s", "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Удалить псевдоним комнаты %(alias)s и очистить %(name)s из каталога?", "Failed to add tag %(tagName)s to room": "Не удалось добавить тег %(tagName)s в комнату", "Failed to forget room %(errCode)s": "Не удалось забыть комнату %(errCode)s", - "Failed to remove tag %(tagName)s from room": "Не удалось убрать пометку %(prevTag)s из комнаты", + "Failed to remove tag %(tagName)s from room": "Не удалось убрать пометку %(tagName)s из комнаты", "Failed to set direct chat tag": "Не удалось пометить прямую беседу", "Unhide Preview": "Показать предпросмотр", "Uploaded on %(date)s by %(user)s": "Загружено %(date)s %(user)s", diff --git a/src/i18n/strings/sv.json b/src/i18n/strings/sv.json index 1a7ec9a8..0d03a878 100644 --- a/src/i18n/strings/sv.json +++ b/src/i18n/strings/sv.json @@ -18,7 +18,7 @@ "Directory": "Katalog", "Dismiss": "Avvisa", "Download this file": "Ladda ner filen", - "Drop here %(toAction)s": "Dra hit för att %(verb)s", + "Drop here %(toAction)s": "Dra hit för att %(toAction)s", "Enable audible notifications in web client": "Sätt på högljudda aviseringar i webbklienten", "Enable desktop notifications": "Sätt på skrivbordsaviseringar", "Enable email notifications": "Sätt på epostaviseringar", @@ -35,6 +35,6 @@ "Failed to get protocol list from Home Server": "Det gick inte att hämta protokollistan från hemservern", "Failed to get public room list": "Det gick inte att hämta listan över offentliga rum", "Failed to join the room": "Det gick inte att ansluta till rummet", - "Failed to remove tag %(tagName)s from room": "Det gick inte att radera taggen %(prevTag)s från rummet", + "Failed to remove tag %(tagName)s from room": "Det gick inte att radera taggen %(tagName)s från rummet", "Failed to set direct chat tag": "Det gick inte att markera rummet som direkt chatt" } From 4a3480b935465c54b6a08ab457c90448cb28d943 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson <matthew@matrix.org> Date: Sat, 27 May 2017 20:17:19 +0100 Subject: [PATCH 130/147] fix broken vars in i18n --- src/i18n/strings/pt.json | 2 +- src/i18n/strings/pt_BR.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n/strings/pt.json b/src/i18n/strings/pt.json index 1f2efa33..44041bc8 100644 --- a/src/i18n/strings/pt.json +++ b/src/i18n/strings/pt.json @@ -11,7 +11,7 @@ "Couldn't find a matching Matrix room": "Não foi possível encontrar uma sala correspondente no servidor Matrix", "Custom Server Options": "Opções de customização do servidor", "delete the alias": "apagar o apelido da sala", - "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Apagar o apelido %(alias)s da sala e remover %(nome)s da lista pública?", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Apagar o apelido %(alias)s da sala e remover %(name)s da lista pública?", "Direct Chat": "Conversa pessoal", "Directory": "Diretório", "Dismiss": "Encerrar", diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json index ab1f91b7..545ed11a 100644 --- a/src/i18n/strings/pt_BR.json +++ b/src/i18n/strings/pt_BR.json @@ -12,7 +12,7 @@ "Couldn't find a matching Matrix room": "Não foi possível encontrar uma sala correspondente no servidor Matrix", "Custom Server Options": "Opções de personalização do servidor", "delete the alias": "apagar o apelido da sala", - "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Apagar o apelido %(alias)s da sala e remover %(nome)s da lista pública?", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Apagar o apelido %(alias)s da sala e remover %(name)s da lista pública?", "Direct Chat": "Conversa pessoal", "Directory": "Diretório", "Dismiss": "Encerrar", From 664b5c29c3b47ffa9023a417dddec49cef2a5d34 Mon Sep 17 00:00:00 2001 From: Thomas Juberg <Thomas.Juberg+github@gmail.com> Date: Sat, 27 May 2017 22:12:59 +0000 Subject: [PATCH 131/147] =?UTF-8?q?Added=20translation=20using=20Weblate?= =?UTF-8?q?=20(Norwegian=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/i18n/strings/nb_NO.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/i18n/strings/nb_NO.json diff --git a/src/i18n/strings/nb_NO.json b/src/i18n/strings/nb_NO.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/src/i18n/strings/nb_NO.json @@ -0,0 +1 @@ +{} \ No newline at end of file From c83188be51c4699a35f56b7be7748122b8dbf56a Mon Sep 17 00:00:00 2001 From: Bamstam <max.strube@posteo.de> Date: Sat, 27 May 2017 20:15:28 +0000 Subject: [PATCH 132/147] Translated using Weblate (German) Currently translated at 100.0% (120 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/de/ --- src/i18n/strings/de_DE.json | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index 62b28dc6..d030e29d 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -7,14 +7,14 @@ "Invite to this room": "In diesen Raum einladen", "Filter room names": "Raum Namen filtern", "Start chat": "Neuen Chat starten", - "Room directory": "Raum Verzeichnis", + "Room directory": "Raum-Verzeichnis", "Create new room": "Neuen Raum erstellen", "Settings": "Einstellungen", "powered by Matrix": "gebaut mit Matrix", "Custom Server Options": "Optionen für eigenen Server", "Dismiss": "ausblenden", "Failed to get protocol list from Home Server": "Fehler beim Abrufen der Protokollliste vom Home Server", - "The Home Server may be too old to support third party networks": "Der Home Server kann zu alt sein, um Drittanbieter-Netzwerke zu unterstützen", + "The Home Server may be too old to support third party networks": "Der Home-Server ist eventuell zu alt, um Drittanbieter-Netzwerke zu unterstützen", "Directory": "Raum Verzeichnis", "#example:": "#beispiel:", "Search for a room": "Suche einen Raum", @@ -37,13 +37,13 @@ "Enable desktop notifications": "Aktiviere Desktop Benachrichtigungen", "Enable email notifications": "Aktiviere E-Mail Benachrichtigungen", "Enable notifications for this account": "Aktiviere Benachrichtigungen für diesen Benutzer", - "Enter keywords separated by a comma:": "Gebe Suchbegriffe getrennt durch Kommata ein:", + "Enter keywords separated by a comma:": "Trage Schlagworte, mit Komma getrennt, ein", "Error": "Fehler", "Error saving email notification preferences": "Fehler beim Speichern der E-Mail Benachrichtigungseinstellungen", "#example": "#Beispiel", "Failed to": "Konnte nicht", "Failed to add tag ": "Konnte Tag nicht hinzufügen ", - "Failed to change settings": "Konnte Einstellungen nicht ändern", + "Failed to change settings": "Einstellungen konnten nicht geändert werden", "Failed to update keywords": "Konnte Suchbegriff nicht aktualisieren", "Failed to get public room list": "Konnte keine öffentliche Raumliste laden", "Failed to join the room": "Fehler beim Betreten des Raumes", @@ -62,7 +62,7 @@ "Notification targets": "Benachrichtigungsziel", "Notifications on the following keywords follow rules which can’t be displayed here:": "Benachrichtigungen zu folgenden Stichwörtern folgen Regeln, die hier nicht angezeigt werden können:", "Notify for all other messages/rooms": "Benachrichtigung für alle anderen Mitteilungen/ Räume", - "Operation failed": "Ausführung fehlgeschlagen", + "Operation failed": "Aktion fehlgeschlagen", "Reject": "ablehnen", "Remove": "Entferne", "remove": "Entferner", @@ -93,7 +93,7 @@ "Failed to remove tag %(tagName)s from room": "Das Entfernen des Tags %(tagName)s für den Raum ist fehlgeschlagen", "Failed to set direct chat tag": "Fehler beim setzen der Direct Chat Kennzeichnung", "Mentions only": "Nur, wenn du erwähnt wirst", - "Mute": "Lautlos", + "Mute": "Stummschalten", "Permalink": "Permanenter Link", "Quote": "Zitat", "Redact": "Redaktionell entfernen", @@ -120,7 +120,6 @@ "Welcome page": "Willkommensseite", "Advanced notification settings": "Erweiterte Benachrichtigungs-Einstellungen", "Call invitation": "Anruf-Einladung", - "Enter keywords separated by a comma:": "Trage Schlagworte, mit Komma getrennt, ein", "Messages containing my display name": "Nachrichten, die meinen Anzeigenamen enthalten", "Messages containing my user name": "Nachrichten, die meinen Nutzernamen enthalten", "Messages in group chats": "Nachrichten in Chat-Gruppen", From 918aa01ee57573dda5134d50a37a5045108809be Mon Sep 17 00:00:00 2001 From: Szimszon <github@oregpreshaz.eu> Date: Sat, 27 May 2017 20:58:53 +0000 Subject: [PATCH 133/147] Translated using Weblate (Hungarian) Currently translated at 55.0% (66 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/hu/ --- src/i18n/strings/hu.json | 54 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json index 8d836886..09fa3df9 100644 --- a/src/i18n/strings/hu.json +++ b/src/i18n/strings/hu.json @@ -12,5 +12,57 @@ "Create new room": "Új szoba készítés", "Couldn't find a matching Matrix room": "Nem található a keresett Matrix szoba", "Custom Server Options": "Egyedi szerver beállítások", - "delete the alias": "becenév törlése" + "delete the alias": "becenév törlése", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Törlöd a(z) %(alias)s szobát és kiveszed a könyvtárból ezt: %(name)s?", + "Direct Chat": "Közvetlen csevegés", + "Directory": "Könyvtár", + "Dismiss": "Eltűntet", + "Download this file": "Fájl letöltése", + "Drop here %(toAction)s": "%(toAction)s -t húzd ide", + "Enable audible notifications in web client": "Hallható értesítések engedélyezése a webes kliensben", + "Enable desktop notifications": "Asztali értesítések engedélyezése", + "Enable email notifications": "E-mail értesítések engedélyezése", + "Enable notifications for this account": "Értesítések engedélyezése a fiókhoz", + "Enable them now": "Engedélyezés most", + "Enter keywords separated by a comma:": "Kulcsszavak vesszővel elválasztva:", + "Error": "Hiba", + "Error saving email notification preferences": "Hiba email értesítés beállításának mentésénél", + "#example": "#példa", + "Failed to": "Nem lehet", + "Failed to add tag %(tagName)s to room": "Nem lehet a címkét hozzáadni a szobához: %(tagName)s", + "Failed to change settings": "Nem lehet a beállítást megváltoztatni", + "Failed to forget room %(errCode)s": "Nem lehet eltávolítani a szobát: %(errCode)s", + "Failed to update keywords": "Nem lehet a kulcsszavakat frissíteni", + "Failed to get protocol list from Home Server": "Nem lehet a protokoll listát lekérni a Saját szerverről", + "Failed to get public room list": "Nem lehet lekérdezni a nyílt szobák listáját", + "Failed to join the room": "Nem lehet csatlakozni a szobához", + "Failed to remove tag %(tagName)s from room": "Nem lehet törölni a(z) %(tagName)s címkét a szobáról", + "Failed to set direct chat tag": "Nem lehet a címkét beállítani a közvetlen beszélgetéshez", + "Failed to set Direct Message status of room": "Nem lehet beállítani a Közvetlen beszélgetés státuszt a szobához", + "Favourite": "Kedvenc", + "Fetching third party location failed": "Nem sikerült lekérdezni a harmadik felet", + "Files": "Fájlok", + "Filter room names": "Szoba nevek szűrése", + "Forget": "Elfelejt", + " from room": " szobából", + "Guests can join": "Vendégek csatlakozhatnak", + "Guest users can't invite users. Please register to invite": "Vendég felhasználó nem küldhet meghívót. Kérlek regisztrálj meghívó küldéshez", + "Invite to this room": "Meghívás a szobába", + "Keywords": "Kulcsszavak", + "Leave": "Elhagy", + "Low Priority": "Alacsony priorítás", + "Members": "Résztvevők", + "Mentions only": "Csak ha megemlítenek", + "Messages containing my display name": "Az üzenet tartalmazza a nevem", + "Messages containing my user name": "Az üzenet tartalmazza a felhasználói nevem", + "Messages in group chats": "Üzenetek a csoportszobában", + "Messages in one-to-one chats": "Üzenetek közvetlen beszélgetésekben", + "Messages sent by bot": "Botok által küldött üzenetek", + "more": "további", + "Mute": "Elnémít", + "No rooms to show": "Nincs megjeleníthető szoba", + "Noisy": "Hangos", + "Notification targets": "Értesítések célpontja", + "Notifications": "Értesítések", + "Notify for all other messages/rooms": "Értesítés minden más üzenethez/szobához" } From 73a811aa9170cc6c4d155ea3e7c567485d363cc9 Mon Sep 17 00:00:00 2001 From: RiotTranslate <info@nordgedanken.de> Date: Sun, 28 May 2017 00:28:44 +0200 Subject: [PATCH 134/147] Update from Weblate. (#4057) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added translation using Weblate (Norwegian Bokmål) * Translated using Weblate (German) Currently translated at 100.0% (120 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/de/ * Translated using Weblate (Hungarian) Currently translated at 55.0% (66 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/hu/ --- src/i18n/strings/de_DE.json | 13 +++++---- src/i18n/strings/hu.json | 54 ++++++++++++++++++++++++++++++++++++- src/i18n/strings/nb_NO.json | 1 + 3 files changed, 60 insertions(+), 8 deletions(-) create mode 100644 src/i18n/strings/nb_NO.json diff --git a/src/i18n/strings/de_DE.json b/src/i18n/strings/de_DE.json index 62b28dc6..d030e29d 100644 --- a/src/i18n/strings/de_DE.json +++ b/src/i18n/strings/de_DE.json @@ -7,14 +7,14 @@ "Invite to this room": "In diesen Raum einladen", "Filter room names": "Raum Namen filtern", "Start chat": "Neuen Chat starten", - "Room directory": "Raum Verzeichnis", + "Room directory": "Raum-Verzeichnis", "Create new room": "Neuen Raum erstellen", "Settings": "Einstellungen", "powered by Matrix": "gebaut mit Matrix", "Custom Server Options": "Optionen für eigenen Server", "Dismiss": "ausblenden", "Failed to get protocol list from Home Server": "Fehler beim Abrufen der Protokollliste vom Home Server", - "The Home Server may be too old to support third party networks": "Der Home Server kann zu alt sein, um Drittanbieter-Netzwerke zu unterstützen", + "The Home Server may be too old to support third party networks": "Der Home-Server ist eventuell zu alt, um Drittanbieter-Netzwerke zu unterstützen", "Directory": "Raum Verzeichnis", "#example:": "#beispiel:", "Search for a room": "Suche einen Raum", @@ -37,13 +37,13 @@ "Enable desktop notifications": "Aktiviere Desktop Benachrichtigungen", "Enable email notifications": "Aktiviere E-Mail Benachrichtigungen", "Enable notifications for this account": "Aktiviere Benachrichtigungen für diesen Benutzer", - "Enter keywords separated by a comma:": "Gebe Suchbegriffe getrennt durch Kommata ein:", + "Enter keywords separated by a comma:": "Trage Schlagworte, mit Komma getrennt, ein", "Error": "Fehler", "Error saving email notification preferences": "Fehler beim Speichern der E-Mail Benachrichtigungseinstellungen", "#example": "#Beispiel", "Failed to": "Konnte nicht", "Failed to add tag ": "Konnte Tag nicht hinzufügen ", - "Failed to change settings": "Konnte Einstellungen nicht ändern", + "Failed to change settings": "Einstellungen konnten nicht geändert werden", "Failed to update keywords": "Konnte Suchbegriff nicht aktualisieren", "Failed to get public room list": "Konnte keine öffentliche Raumliste laden", "Failed to join the room": "Fehler beim Betreten des Raumes", @@ -62,7 +62,7 @@ "Notification targets": "Benachrichtigungsziel", "Notifications on the following keywords follow rules which can’t be displayed here:": "Benachrichtigungen zu folgenden Stichwörtern folgen Regeln, die hier nicht angezeigt werden können:", "Notify for all other messages/rooms": "Benachrichtigung für alle anderen Mitteilungen/ Räume", - "Operation failed": "Ausführung fehlgeschlagen", + "Operation failed": "Aktion fehlgeschlagen", "Reject": "ablehnen", "Remove": "Entferne", "remove": "Entferner", @@ -93,7 +93,7 @@ "Failed to remove tag %(tagName)s from room": "Das Entfernen des Tags %(tagName)s für den Raum ist fehlgeschlagen", "Failed to set direct chat tag": "Fehler beim setzen der Direct Chat Kennzeichnung", "Mentions only": "Nur, wenn du erwähnt wirst", - "Mute": "Lautlos", + "Mute": "Stummschalten", "Permalink": "Permanenter Link", "Quote": "Zitat", "Redact": "Redaktionell entfernen", @@ -120,7 +120,6 @@ "Welcome page": "Willkommensseite", "Advanced notification settings": "Erweiterte Benachrichtigungs-Einstellungen", "Call invitation": "Anruf-Einladung", - "Enter keywords separated by a comma:": "Trage Schlagworte, mit Komma getrennt, ein", "Messages containing my display name": "Nachrichten, die meinen Anzeigenamen enthalten", "Messages containing my user name": "Nachrichten, die meinen Nutzernamen enthalten", "Messages in group chats": "Nachrichten in Chat-Gruppen", diff --git a/src/i18n/strings/hu.json b/src/i18n/strings/hu.json index 8d836886..09fa3df9 100644 --- a/src/i18n/strings/hu.json +++ b/src/i18n/strings/hu.json @@ -12,5 +12,57 @@ "Create new room": "Új szoba készítés", "Couldn't find a matching Matrix room": "Nem található a keresett Matrix szoba", "Custom Server Options": "Egyedi szerver beállítások", - "delete the alias": "becenév törlése" + "delete the alias": "becenév törlése", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Törlöd a(z) %(alias)s szobát és kiveszed a könyvtárból ezt: %(name)s?", + "Direct Chat": "Közvetlen csevegés", + "Directory": "Könyvtár", + "Dismiss": "Eltűntet", + "Download this file": "Fájl letöltése", + "Drop here %(toAction)s": "%(toAction)s -t húzd ide", + "Enable audible notifications in web client": "Hallható értesítések engedélyezése a webes kliensben", + "Enable desktop notifications": "Asztali értesítések engedélyezése", + "Enable email notifications": "E-mail értesítések engedélyezése", + "Enable notifications for this account": "Értesítések engedélyezése a fiókhoz", + "Enable them now": "Engedélyezés most", + "Enter keywords separated by a comma:": "Kulcsszavak vesszővel elválasztva:", + "Error": "Hiba", + "Error saving email notification preferences": "Hiba email értesítés beállításának mentésénél", + "#example": "#példa", + "Failed to": "Nem lehet", + "Failed to add tag %(tagName)s to room": "Nem lehet a címkét hozzáadni a szobához: %(tagName)s", + "Failed to change settings": "Nem lehet a beállítást megváltoztatni", + "Failed to forget room %(errCode)s": "Nem lehet eltávolítani a szobát: %(errCode)s", + "Failed to update keywords": "Nem lehet a kulcsszavakat frissíteni", + "Failed to get protocol list from Home Server": "Nem lehet a protokoll listát lekérni a Saját szerverről", + "Failed to get public room list": "Nem lehet lekérdezni a nyílt szobák listáját", + "Failed to join the room": "Nem lehet csatlakozni a szobához", + "Failed to remove tag %(tagName)s from room": "Nem lehet törölni a(z) %(tagName)s címkét a szobáról", + "Failed to set direct chat tag": "Nem lehet a címkét beállítani a közvetlen beszélgetéshez", + "Failed to set Direct Message status of room": "Nem lehet beállítani a Közvetlen beszélgetés státuszt a szobához", + "Favourite": "Kedvenc", + "Fetching third party location failed": "Nem sikerült lekérdezni a harmadik felet", + "Files": "Fájlok", + "Filter room names": "Szoba nevek szűrése", + "Forget": "Elfelejt", + " from room": " szobából", + "Guests can join": "Vendégek csatlakozhatnak", + "Guest users can't invite users. Please register to invite": "Vendég felhasználó nem küldhet meghívót. Kérlek regisztrálj meghívó küldéshez", + "Invite to this room": "Meghívás a szobába", + "Keywords": "Kulcsszavak", + "Leave": "Elhagy", + "Low Priority": "Alacsony priorítás", + "Members": "Résztvevők", + "Mentions only": "Csak ha megemlítenek", + "Messages containing my display name": "Az üzenet tartalmazza a nevem", + "Messages containing my user name": "Az üzenet tartalmazza a felhasználói nevem", + "Messages in group chats": "Üzenetek a csoportszobában", + "Messages in one-to-one chats": "Üzenetek közvetlen beszélgetésekben", + "Messages sent by bot": "Botok által küldött üzenetek", + "more": "további", + "Mute": "Elnémít", + "No rooms to show": "Nincs megjeleníthető szoba", + "Noisy": "Hangos", + "Notification targets": "Értesítések célpontja", + "Notifications": "Értesítések", + "Notify for all other messages/rooms": "Értesítés minden más üzenethez/szobához" } diff --git a/src/i18n/strings/nb_NO.json b/src/i18n/strings/nb_NO.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/src/i18n/strings/nb_NO.json @@ -0,0 +1 @@ +{} \ No newline at end of file From 6039e5a2be758b37c70fde0f90e04015c34c0a14 Mon Sep 17 00:00:00 2001 From: PureTryOut <bart.ribbers@openmailbox.org> Date: Sun, 28 May 2017 11:04:06 +0000 Subject: [PATCH 135/147] Added translation using Weblate (Dutch) --- src/i18n/strings/nl.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/i18n/strings/nl.json diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/src/i18n/strings/nl.json @@ -0,0 +1 @@ +{} \ No newline at end of file From 46bca693216474fd924332959e2c50202a700f97 Mon Sep 17 00:00:00 2001 From: Thomas Juberg <Thomas.Juberg+github@gmail.com> Date: Sat, 27 May 2017 22:19:52 +0000 Subject: [PATCH 136/147] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegi?= =?UTF-8?q?an=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 9.1% (11 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/nb_NO/ --- src/i18n/strings/nb_NO.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/nb_NO.json b/src/i18n/strings/nb_NO.json index 9e26dfee..ed503025 100644 --- a/src/i18n/strings/nb_NO.json +++ b/src/i18n/strings/nb_NO.json @@ -1 +1,13 @@ -{} \ No newline at end of file +{ + "Add an email address above to configure email notifications": "Legg til en epost adresse for å sette opp epost varsling", + "Advanced notification settings": "Avanserte varslingsinnstillinger", + "All messages": "Alle meldinger", + "All messages (loud)": "Alle meldinger (høy)", + "All notifications are currently disabled for all targets.": "Alle varsler er deaktivert for alle mottakere.", + "An error occurred whilst saving your email notification preferences.": "En feil oppsto i forbindelse med lagring av epost varsel innstillinger.", + "Cancel Sending": "Avbryt sending", + "Can't update user notification settings": "Kan ikke oppdatere brukervarsel innstillinger", + "Close": "Lukk", + "Create new room": "Opprett nytt rom", + "Couldn't find a matching Matrix room": "Kunne ikke finne et samsvarende Matrix rom" +} From 03f698ce8c949e9ad59d09dddce7cb0c260b8b3a Mon Sep 17 00:00:00 2001 From: PureTryOut <bart.ribbers@openmailbox.org> Date: Sun, 28 May 2017 11:17:05 +0000 Subject: [PATCH 137/147] Translated using Weblate (Dutch) Currently translated at 4.1% (5 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/nl/ --- src/i18n/strings/nl.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json index f9f29cd9..d46e4570 100644 --- a/src/i18n/strings/nl.json +++ b/src/i18n/strings/nl.json @@ -2,5 +2,6 @@ "Add an email address above to configure email notifications": "Voeg een email adres toe om email notificaties te ontvangen", "Advanced notification settings": "Geavanceerde notificatie instellingen", "All messages": "Alle berichten", - "All messages (loud)": "Alle berichten (luid)" + "All messages (loud)": "Alle berichten (luid)", + "All notifications are currently disabled for all targets.": "Alle notificaties zijn op het moment uitgeschakeld voor alle doelen." } From c02ee7a0dd9e04ebb6908ac8fe31c92f14a04642 Mon Sep 17 00:00:00 2001 From: PureTryOut <bart.ribbers@openmailbox.org> Date: Sun, 28 May 2017 11:18:12 +0000 Subject: [PATCH 138/147] Translated using Weblate (Dutch) Currently translated at 5.0% (6 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/nl/ --- src/i18n/strings/nl.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json index d46e4570..69ff04d4 100644 --- a/src/i18n/strings/nl.json +++ b/src/i18n/strings/nl.json @@ -3,5 +3,6 @@ "Advanced notification settings": "Geavanceerde notificatie instellingen", "All messages": "Alle berichten", "All messages (loud)": "Alle berichten (luid)", - "All notifications are currently disabled for all targets.": "Alle notificaties zijn op het moment uitgeschakeld voor alle doelen." + "All notifications are currently disabled for all targets.": "Alle notificaties zijn op het moment uitgeschakeld voor alle doelen.", + "An error occurred whilst saving your email notification preferences.": "Er is een fout ontstaan tijdens het opslaan van jouw email notificatie voorkeuren." } From c238fe66050875f264d3bc2377c831c7e0c43b4e Mon Sep 17 00:00:00 2001 From: PureTryOut <bart.ribbers@openmailbox.org> Date: Sun, 28 May 2017 12:33:11 +0000 Subject: [PATCH 139/147] Translated using Weblate (Dutch) Currently translated at 100.0% (120 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/nl/ --- src/i18n/strings/nl.json | 116 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 115 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/nl.json b/src/i18n/strings/nl.json index 69ff04d4..28e0ac30 100644 --- a/src/i18n/strings/nl.json +++ b/src/i18n/strings/nl.json @@ -4,5 +4,119 @@ "All messages": "Alle berichten", "All messages (loud)": "Alle berichten (luid)", "All notifications are currently disabled for all targets.": "Alle notificaties zijn op het moment uitgeschakeld voor alle doelen.", - "An error occurred whilst saving your email notification preferences.": "Er is een fout ontstaan tijdens het opslaan van jouw email notificatie voorkeuren." + "An error occurred whilst saving your email notification preferences.": "Er is een fout ontstaan tijdens het opslaan van jouw email notificatie voorkeuren.", + "Call invitation": "Audio gesprek uitnodiging", + "Cancel Sending": "Annuleren verzending", + "Can't update user notification settings": "Het is niet gelukt om de gebruiker notificatie instellingen bij te werken", + "Close": "Sluiten", + "Create new room": "Maak een nieuwe kamer", + "Couldn't find a matching Matrix room": "Het is niet gelukt om een bijbehorende Matrix kamer te vinden", + "Custom Server Options": "Aangepaste server instellingen", + "customServer_text": "Je kunt de aangepaste server instellingen gebruiken om in te loggen bij andere Matrix servers door een andere home server URL in te voeren.<br/>Dit maakt het mogelijk om Riot te gebruiken met een bestaand Matrix account op een andere home server.<br/><br/>Je kunt ook een aangepaste identiteit server instellen, maar het is dan niet mogelijk om gebruikers uit te nodigen met behulp van een email adres of zelf uitgenodigt te worden met een email adres.", + "delete the alias": "verwijder de alias", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "Verwijder de alias %(alias)s en verwijder %(name)s uit de map?", + "Direct Chat": "Privé gesprek", + "Directory": "Kamer lijst", + "Dismiss": "Afwijzen", + "Download this file": "Download dit bestand", + "Enable audible notifications in web client": "Zet notificaties aan in de web client", + "Enable desktop notifications": "Zet desktop notificaties aan", + "Enable email notifications": "Zet email notificaties aan", + "Enable notifications for this account": "Zet notificaties aan voor dit account", + "Enable them now": "Zet ze nu aan", + "Enter keywords separated by a comma:": "Voeg trefwoorden toe, gesplitst door een komma:", + "Error": "Fout", + "Error saving email notification preferences": "Fout bij het opslaan van de email notificatie voorkeuren", + "#example": "#voorbeeld", + "Failed to": "Mislukt om", + "Failed to add tag %(tagName)s to room": "Mislukt om de label %(tagName)s aan de kamer toe te voegen", + "Failed to change settings": "Het is mislukt om de instellingen te wijzigen", + "Failed to forget room %(errCode)s": "Het is mislukt om de kamer te vergeten %(errCode)s", + "Failed to update keywords": "Het is mislukt om de trefwoorden bij te werken", + "Failed to get protocol list from Home Server": "Het is mislukt om de protocol lijst op te halen van de home server", + "Failed to get public room list": "Het is mislukt om de lijst van publieke kamers op te halen", + "Failed to join the room": "Het is mislukt om de kamer toe te treden", + "Failed to remove tag %(tagName)s from room": "Het is mislukt om de label %(tagName)s van de kamer te verwijderen", + "Failed to set direct chat tag": "Het is mislukt om de privé chat label weg te halen", + "Favourite": "Favoriet", + "Fetching third party location failed": "Het ophalen van de locatie van de derde partij is mislukt", + "Files": "Bestanden", + "Filter room names": "Filter kamer namen", + "Forget": "Vergeten", + " from room": " van kamer", + "Guests can join": "Gasten kunnen toe treden", + "Guest users can't invite users. Please register to invite": "Gasten kunnen geen gebruikers uitnodigen. Om anderen uit te nodigen zult u moeten registreren", + "Invite to this room": "Uitnodigen voor deze kamer", + "Keywords": "Trefwoorden", + "Leave": "Verlaten", + "Low Priority": "Lage prioriteit", + "Members": "Leden", + "Mentions only": "Alleen vermeldingen", + "Messages containing my display name": "Berichten die mijn weergavenaam bevatten", + "Messages containing my user name": "Berichten die mijn gebruikersnaam bevatten", + "Messages in group chats": "Berichten in groep gesprekken", + "Messages in one-to-one chats": "Berichten in één-op-één gesprekken", + "Messages sent by bot": "Berichten verzonden bij een bot", + "more": "meer", + "Mute": "Dempen", + "No rooms to show": "Geen kamers om te laten zien", + "Noisy": "Luidruchtig", + "Notification targets": "Notificatie doelen", + "Notifications": "Notificaties", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Notificaties op de volgende trefwoorden volgen regels die hier niet kunnen worden laten zien:", + "Notify for all other messages/rooms": "Informeer mij voor alle andere berichten/kamers", + "Notify me for anything else": "Informeer mij voor al het andere", + "Off": "Uit", + "On": "Aan", + "Operation failed": "Actie mislukt", + "Permalink": "Permalink", + "Please Register": "Registreer alsjeblieft", + "powered by Matrix": "aangedreven door Matrix", + "Quote": "Quote", + "Reject": "Afwijzen", + "Remove %(name)s from the directory?": "Verwijder %(name)s uit de kamer lijst?", + "Remove": "Verwijder", + "remove %(name)s from the directory": "verwijder %(name)s uit de kamer lijst", + "Remove from Directory": "Verwijder uit de kamer lijst", + "Resend": "Opnieuw verzenden", + "Riot does not know how to join a room on this network": "Riot weet niet hoe het moet toetreden tot een kamer op dit netwerk", + "Room directory": "Kamer lijst", + "Room not found": "De kamer is niet gevonden", + "Search for a room": "Zoek naar een kamer", + "Settings": "Instellingen", + "Source URL": "Bron URL", + "Start chat": "Start gesprek", + "The Home Server may be too old to support third party networks": "De home server is misschien te oud om netwerken van derde partijen te ondersteunen", + "There are advanced notifications which are not shown here": "Er zijn geavanceerde notificaties die hier niet worden laten zien", + "The server may be unavailable or overloaded": "De server is misschien niet beschikbaar of overbeladen", + "This room is inaccessible to guests. You may be able to join if you register": "Deze kamer is niet toegankelijk voor gasten. Je zou misschien toe kunnen treden als je geregistreerd bent", + " to room": " naar kamer", + "Unable to fetch notification target list": "Het is mislukt om de lijst van notificatie doelen op te halen", + "Unable to join network": "Het is mislukt om toe te treden tot dit netwerk", + "Unable to look up room ID from server": "Het is mislukt om de kamer ID op te halen van de server", + "Unhide Preview": "Zichtbaar maken preview", + "unknown error code": "niet bekende foutcode", + "Unnamed room": "Kamer zonder naam", + "Uploaded on %(date)s by %(user)s": "Geüpload op %(date)s door %(user)s", + "View Decrypted Source": "Bekijk gedecodeerde bron", + "View Source": "Bekijk bron", + "When I'm invited to a room": "Wanneer ik uitgenodigt wordt naar een kamer", + "World readable": "Door iedereen leesbaar", + "You cannot delete this image. (%(code)s)": "Je kunt deze afbeelding niet verwijderen. (%code)s)", + "You cannot delete this message. (%(code)s)": "Je kunt dit bericht niet verwijderen. (%(code)s)", + "You are not receiving desktop notifications": "Je ontvangt momenteel geen desktop notificaties", + "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Je hebt ze mogelijk ingesteld in een andere client dan Riot. Je kunt ze niet aanpassen in Riot maar ze zijn wel actief", + "Sunday": "Zondag", + "Monday": "Maandag", + "Tuesday": "Dinsdag", + "Wednesday": "Woensdag", + "Thursday": "Donderdag", + "Friday": "Vrijdag", + "Saturday": "Zaterdag", + "Today": "Vandaag", + "Yesterday": "Gisteren", + "Welcome page": "Welkom pagina", + "Drop here %(toAction)s": "%(toAction)s hier naar toe verplaatsen", + "Failed to set Direct Message status of room": "Het is mislukt om de directe berichten status van de kamer in te stellen", + "Redact": "Redigeren" } From 44e58d2eff4b3eca6df6c276e9f66cdf1ca0f43e Mon Sep 17 00:00:00 2001 From: Chazy Chaz <ChazyTheBest@hotmail.es> Date: Sun, 28 May 2017 12:40:42 +0000 Subject: [PATCH 140/147] Added translation using Weblate (_ES (generated)) --- src/i18n/strings/_ES.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/i18n/strings/_ES.json diff --git a/src/i18n/strings/_ES.json b/src/i18n/strings/_ES.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/src/i18n/strings/_ES.json @@ -0,0 +1 @@ +{} \ No newline at end of file From efe3c239e173b176c5fe69bd5fc00660a74968ba Mon Sep 17 00:00:00 2001 From: Chazy Chaz <ChazyTheBest@hotmail.es> Date: Sun, 28 May 2017 12:41:24 +0000 Subject: [PATCH 141/147] Added translation using Weblate (Spanish) --- src/i18n/strings/es.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/i18n/strings/es.json diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/src/i18n/strings/es.json @@ -0,0 +1 @@ +{} \ No newline at end of file From 7b00be7f5747388f2c8d7e32b4be8a3eb99562eb Mon Sep 17 00:00:00 2001 From: RiotTranslate <info@nordgedanken.de> Date: Sun, 28 May 2017 13:34:53 +0000 Subject: [PATCH 142/147] remove wrong generated file --- src/i18n/strings/_ES.json | 1 - src/i18n/strings/es.json | 23 ++++++++++++++++++++++- src/i18n/strings/ru.json | 3 +-- 3 files changed, 23 insertions(+), 4 deletions(-) delete mode 100644 src/i18n/strings/_ES.json diff --git a/src/i18n/strings/_ES.json b/src/i18n/strings/_ES.json deleted file mode 100644 index 9e26dfee..00000000 --- a/src/i18n/strings/_ES.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json index 9e26dfee..f97dc5fa 100644 --- a/src/i18n/strings/es.json +++ b/src/i18n/strings/es.json @@ -1 +1,22 @@ -{} \ No newline at end of file +{ + "Add an email address above to configure email notifications": "Añade una dirección de email arriba para configurar las notificaciones por email", + "Advanced notification settings": "Configuración de notificaciones avanzada", + "All messages": "Todos los mensajes", + "An error occurred whilst saving your email notification preferences.": "Se ha producido un error al guardar las preferencias de notificación por email.", + "Call invitation": "Invitación a la llamada", + "Cancel Sending": "Cancelar envío", + "Can't update user notification settings": "No se puede actualizar la configuración de notificación de usuario", + "Close": "Cerrar", + "Create new room": "Crear nueva sala", + "Couldn't find a matching Matrix room": "No se encontró una sala Matrix que coincidiera", + "Custom Server Options": "Opciones de Servidor Personalizado", + "customServer_text": "Puedes utilizar las opciones de servidor personalizadas para iniciar sesión en otros servidores Matrix especificando una URL de Home server distinta.<br/>Esto te permite usar Riot con una cuenta Matrix existente en un Home server distinto.<br/><br/>También puedes configurar un servidor de identidad personalizado, pero no podrás invitar usuarios por dirección de email, ni ser invitado por email por ti mismo.", + "delete the alias": "borrar el alias", + "Delete the room alias %(alias)s and remove %(name)s from the directory?": "¿Borrar la sala alias %(alias)s y retirar %(name)s del directorio?", + "Direct Chat": "Chat Directo", + "Directory": "Directorio", + "Download this file": "Descargar este archivo", + "Drop here %(toAction)s": "Soltar aquí %(toAction)s", + "Enable audible notifications in web client": "Habilitar notificaciones audibles en el cliente web", + "Enable desktop notifications": "Habilitar notificaciones de escritorio" +} diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index fe5196ae..f2f2dbdf 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -18,7 +18,7 @@ "Enable email notifications": "Включить оповещения по электронной почте", "Enable notifications for this account": "Включить оповещения для этого аккаунта", "Enable them now": "Включить сейчас", - "Enter keywords separated by a comma:": "Введите ключевые слова, разделенные запятой:", + "Enter keywords separated by a comma:": "Введите ключевые слова, разделенные запятой", "Error": "Ошибка", "Error saving email notification preferences": "Ошибка сохранения настроек оповещений по электронной почте", "#example": "#пример", @@ -119,7 +119,6 @@ "Advanced notification settings": "Настройки уведомлений", "Call invitation": "Звонок", "customServer_text": "Вы можете войти с помощью вашего сервера.<br/>Это позволяет вам использовать Riot с уже существующей учетной записью на другом сервере.<br/><br/>Вы также можете задать свой сервер идентификации, но тогда вы не можете приглашать пользователей с помощью email-адреса и не можете быть приглашены по нему.", - "Enter keywords separated by a comma:": "Введите ключевые слова, разделенные запятой", "Messages containing my display name": "Сообщения, содержащие мое отображаемое имя", "Messages containing my user name": "Сообщение, содержащие мое имя пользователя", "Messages in group chats": "Сообщения в групповых чатах", From 367585cf6f56a364c21ede87db32edeb10acaa40 Mon Sep 17 00:00:00 2001 From: Chazy Chaz <ChazyTheBest@hotmail.es> Date: Sun, 28 May 2017 13:35:03 +0000 Subject: [PATCH 143/147] Translated using Weblate (Spanish) Currently translated at 18.3% (22 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/es/ --- src/i18n/strings/es.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json index f97dc5fa..fb84357d 100644 --- a/src/i18n/strings/es.json +++ b/src/i18n/strings/es.json @@ -18,5 +18,7 @@ "Download this file": "Descargar este archivo", "Drop here %(toAction)s": "Soltar aquí %(toAction)s", "Enable audible notifications in web client": "Habilitar notificaciones audibles en el cliente web", - "Enable desktop notifications": "Habilitar notificaciones de escritorio" + "Enable desktop notifications": "Habilitar notificaciones de escritorio", + "Enable email notifications": "Habilitar notificaciones por email", + "Enable notifications for this account": "Habilitar notificaciones para esta cuenta" } From 0bdbdc2d1cb7a0b57c5b16d87b4c17522e2c5a5f Mon Sep 17 00:00:00 2001 From: Chazy Chaz <ChazyTheBest@hotmail.es> Date: Sun, 28 May 2017 14:30:38 +0000 Subject: [PATCH 144/147] Translated using Weblate (Spanish) Currently translated at 95.0% (114 of 120 strings) Translation: Riot Web/Riot Web Translate-URL: https://translate.nordgedanken.de/projects/riot-web/riot-web/es/ --- src/i18n/strings/es.json | 94 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 93 insertions(+), 1 deletion(-) diff --git a/src/i18n/strings/es.json b/src/i18n/strings/es.json index fb84357d..beef27c1 100644 --- a/src/i18n/strings/es.json +++ b/src/i18n/strings/es.json @@ -20,5 +20,97 @@ "Enable audible notifications in web client": "Habilitar notificaciones audibles en el cliente web", "Enable desktop notifications": "Habilitar notificaciones de escritorio", "Enable email notifications": "Habilitar notificaciones por email", - "Enable notifications for this account": "Habilitar notificaciones para esta cuenta" + "Enable notifications for this account": "Habilitar notificaciones para esta cuenta", + "Enable them now": "Habilitarlos ahora", + "Enter keywords separated by a comma:": "Introduzca palabras clave separadas por una coma:", + "Error": "Error", + "Error saving email notification preferences": "Error al guardar las preferencias de notificación por email", + "#example": "#ejemplo", + "Failed to add tag %(tagName)s to room": "Error al añadir la etiqueta %(tagName)s a la sala", + "Failed to change settings": "Error al cambiar la configuración", + "Failed to forget room %(errCode)s": "No se pudo olvidar la habitación %(errCode)s", + "Failed to update keywords": "Error al actualizar las palabras clave", + "Failed to get protocol list from Home Server": "Error al obtener la lista de protocolos de Home Server", + "Failed to get public room list": "No se pudo obtener la lista de salas públicas", + "Failed to join the room": "No se puede unir a la habitación", + "Failed to remove tag %(tagName)s from room": "Error al eliminar la etiqueta %(tagName)s de la sala", + "Failed to set direct chat tag": "Error al establecer la etiqueta de chat directo", + "Failed to set Direct Message status of room": "No se pudo establecer el estado de Mensaje Directo de la sala", + "Favourite": "Favorito", + "Fetching third party location failed": "Falló la obtención de la ubicación de un tercero", + "Files": "Archivos", + "Filter room names": "Filtrar los nombres de las salas", + "Forget": "Olvidar", + " from room": " de la sala", + "Guests can join": "Los invitados se pueden unir", + "Guest users can't invite users. Please register to invite": "Los usuarios invitados no pueden invitar usuarios. Por favor, regístrate para poder invitar", + "Invite to this room": "Invitar a esta sala", + "Keywords": "Palabras clave", + "Leave": "Salir", + "Low Priority": "Baja Prioridad", + "Members": "Miembros", + "Mentions only": "Sólo menciones", + "Messages containing my display name": "Mensajes que contienen mi nombre para mostrar", + "Messages containing my user name": "Mensajes que contienen mi nombre de usuario", + "Messages in group chats": "Mensajes en chats de grupo", + "Messages in one-to-one chats": "Mensajes en chats uno a uno", + "Messages sent by bot": "Mensajes enviados por bot", + "more": "más", + "Mute": "Mute", + "No rooms to show": "Sin salas para mostrar", + "Noisy": "Ruidoso", + "Notification targets": "Objetivos de notificación", + "Notifications": "Notificaciones", + "Notifications on the following keywords follow rules which can’t be displayed here:": "Las notificaciones de las siguientes palabras clave siguen reglas que no se pueden mostrar aquí:", + "Notify me for anything else": "Notificarme para cualquier otra cosa", + "Off": "Apagado", + "On": "Encendido", + "Operation failed": "Operación fallida", + "Permalink": "Enlace permanente", + "Please Register": "Por favor regístrate", + "Quote": "Citar", + "Redact": "Redactar", + "Reject": "Rechazar", + "Remove %(name)s from the directory?": "¿Retirar %(name)s del directorio?", + "Remove": "Eliminar", + "remove %(name)s from the directory": "retirar %(name)s del directorio", + "Remove from Directory": "Retirar del Directorio", + "Resend": "Reenviar", + "Riot does not know how to join a room on this network": "Riot no sabe cómo unirse a una sala en esta red", + "Room directory": "Directorio de salas", + "Room not found": "Sala no encontrada", + "Search for a room": "Buscar sala", + "Settings": "Ajustes", + "Source URL": "URL de origen", + "Start chat": "Comenzar chat", + "The Home Server may be too old to support third party networks": "El Home Server puede ser demasiado antiguo para soportar redes de terceros", + "There are advanced notifications which are not shown here": "Hay notificaciones avanzadas que no se muestran aquí", + "The server may be unavailable or overloaded": "El servidor puede estar no disponible o sobrecargado", + "This room is inaccessible to guests. You may be able to join if you register": "Esta sala es inaccesible para los invitados. Puedes unirse si te registras", + " to room": " a la sala", + "Unable to fetch notification target list": "No se puede obtener la lista de objetivos de notificación", + "Unable to join network": "No se puede unir a la red", + "Unable to look up room ID from server": "No se puede buscar el ID de la sala desde el servidor", + "Unhide Preview": "Mostrar Vista Previa", + "unknown error code": "Código de error desconocido", + "Unnamed room": "Sala sin nombre", + "Uploaded on %(date)s by %(user)s": "Subido el %(date)s por %(user)s", + "View Decrypted Source": "Ver Fuente Descifrada", + "View Source": "Ver Fuente", + "When I'm invited to a room": "Cuando estoy invitado a una sala", + "World readable": "Legible por todo el mundo", + "You cannot delete this image. (%(code)s)": "No puedes eliminar esta imagen. (%(code)s)", + "You cannot delete this message. (%(code)s)": "No puedes eliminar este mensaje. (%(code)s)", + "You are not receiving desktop notifications": "No estás recibiendo notificaciones de escritorio", + "You might have configured them in a client other than Riot. You cannot tune them in Riot but they still apply": "Es posible que los hayas configurado en un cliente que no sea Riot. No puedes ajustarlos en Riot, pero todavía se aplican", + "Sunday": "Domingo", + "Monday": "Lunes", + "Tuesday": "Martes", + "Wednesday": "Miércoles", + "Thursday": "Jueves", + "Friday": "Viernes", + "Saturday": "Sábado", + "Today": "Hoy", + "Yesterday": "Ayer", + "Welcome page": "Página de bienvenida" } From 3df6ecfe8488861b9cb81e2787ce42541e010ab7 Mon Sep 17 00:00:00 2001 From: Radium <ztl8702@126.com> Date: Sun, 28 May 2017 16:11:35 +0000 Subject: [PATCH 145/147] Added translation using Weblate (Chinese (Traditional)) --- src/i18n/strings/zh_Hant.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/i18n/strings/zh_Hant.json diff --git a/src/i18n/strings/zh_Hant.json b/src/i18n/strings/zh_Hant.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/src/i18n/strings/zh_Hant.json @@ -0,0 +1 @@ +{} \ No newline at end of file From ab9ecc4f6428afb27d2af746ddf0f59bce868c23 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson <matthew@matrix.org> Date: Sun, 28 May 2017 21:35:47 +0100 Subject: [PATCH 146/147] remove duplicate i18n keys --- src/i18n/strings/pt.json | 1 - src/i18n/strings/pt_BR.json | 1 - src/i18n/strings/ru.json | 1 - 3 files changed, 3 deletions(-) diff --git a/src/i18n/strings/pt.json b/src/i18n/strings/pt.json index 44041bc8..d5548805 100644 --- a/src/i18n/strings/pt.json +++ b/src/i18n/strings/pt.json @@ -2,7 +2,6 @@ "Add an email address above to configure email notifications": "Adicione um endereço de email acima para configurar as notificações por email", "All messages": "Todas as mensagens", "All messages (loud)": "Todas as mensagens (alto)", - "All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desativadas para todos os destinos", "An error occurred whilst saving your email notification preferences.": "Um erro ocorreu enquanto salvava suas preferências de notificação por email.", "Cancel Sending": "Cancelar o envio", "Can't update user notification settings": "Não é possível atualizar as preferências de notificação", diff --git a/src/i18n/strings/pt_BR.json b/src/i18n/strings/pt_BR.json index 545ed11a..f535bf0e 100644 --- a/src/i18n/strings/pt_BR.json +++ b/src/i18n/strings/pt_BR.json @@ -2,7 +2,6 @@ "Add an email address above to configure email notifications": "Insira um endereço de email no campo acima para configurar suas notificações por email", "All messages": "Todas as mensagens", "All messages (loud)": "Todas as mensagens (alto)", - "All notifications are currently disabled for all targets.": "Todas as notificações estão atualmente desativadas para todos os destinos", "An error occurred whilst saving your email notification preferences.": "Um erro ocorreu enquanto o sistema estava salvando suas preferências de notificação por email.", "Call invitation": "Convite para chamada", "Cancel Sending": "Cancelar o envio", diff --git a/src/i18n/strings/ru.json b/src/i18n/strings/ru.json index fe5196ae..465a3573 100644 --- a/src/i18n/strings/ru.json +++ b/src/i18n/strings/ru.json @@ -119,7 +119,6 @@ "Advanced notification settings": "Настройки уведомлений", "Call invitation": "Звонок", "customServer_text": "Вы можете войти с помощью вашего сервера.<br/>Это позволяет вам использовать Riot с уже существующей учетной записью на другом сервере.<br/><br/>Вы также можете задать свой сервер идентификации, но тогда вы не можете приглашать пользователей с помощью email-адреса и не можете быть приглашены по нему.", - "Enter keywords separated by a comma:": "Введите ключевые слова, разделенные запятой", "Messages containing my display name": "Сообщения, содержащие мое отображаемое имя", "Messages containing my user name": "Сообщение, содержащие мое имя пользователя", "Messages in group chats": "Сообщения в групповых чатах", From 8ef7dda7bd6bc6d1760b0ddad0676cab6652c53f Mon Sep 17 00:00:00 2001 From: Matthew Hodgson <matthew@matrix.org> Date: Mon, 29 May 2017 16:43:28 +0100 Subject: [PATCH 147/147] fixing missing OK button on TextInputDialog --- src/components/views/settings/Notifications.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/views/settings/Notifications.js b/src/components/views/settings/Notifications.js index 11948ace..74b9c24a 100644 --- a/src/components/views/settings/Notifications.js +++ b/src/components/views/settings/Notifications.js @@ -178,6 +178,7 @@ module.exports = React.createClass({ Modal.createDialog(TextInputDialog, { title: _t('Keywords'), description: _t('Enter keywords separated by a comma:'), + button: _t('OK'), value: keywords, onFinished: function onFinished(should_leave, newValue) {