diff --git a/.circleci/config.yml b/.circleci/config.yml
index 0de081c36..8f45a9a2a 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -3,7 +3,7 @@ defaults: &defaults
macos: &macos
macos:
- xcode: "13.3.0"
+ xcode: "14.2.0"
resource_class: large
bash-env: &bash-env
@@ -51,14 +51,14 @@ save-gems-cache: &save-gems-cache
update-fastlane-ios: &update-fastlane-ios
name: Update Fastlane
command: |
- echo "ruby-2.6.4" > ~/.ruby-version
+ echo "ruby-2.7.7" > ~/.ruby-version
bundle install
working_directory: ios
update-fastlane-android: &update-fastlane-android
name: Update Fastlane
command: |
- echo "ruby-2.6.4" > ~/.ruby-version
+ echo "ruby-2.7.7" > ~/.ruby-version
bundle install
working_directory: android
@@ -118,26 +118,26 @@ commands:
if [[ $CIRCLE_JOB == "android-build-official" ]]; then
echo -e "APPLICATION_ID=chat.rocket.android" >> ./gradle.properties
echo -e "BugsnagAPIKey=$BUGSNAG_KEY_OFFICIAL" >> ./gradle.properties
- echo $CHAT_ROCKET_ANDROID_STORE_FILE_BASE64_JKS | base64 --decode > ./app/$KEYSTORE_OFFICIAL
+ echo $KEYSTORE_OFFICIAL_BASE64 | base64 --decode > ./app/$KEYSTORE_OFFICIAL
echo -e "KEYSTORE=$KEYSTORE_OFFICIAL" >> ./gradle.properties
- echo -e "KEYSTORE_PASSWORD=$CHAT_ROCKET_ANDROID_STORE_PASSWORD" >> ./gradle.properties
- echo -e "KEY_ALIAS=$CHAT_ROCKET_ANDROID_KEY_ALIAS" >> ./gradle.properties
- echo -e "KEY_PASSWORD=$CHAT_ROCKET_ANDROID_KEY_PASSWORD" >> ./gradle.properties
+ echo -e "KEYSTORE_PASSWORD=$KEYSTORE_OFFICIAL_PASSWORD" >> ./gradle.properties
+ echo -e "KEY_ALIAS=$KEYSTORE_OFFICIAL_ALIAS" >> ./gradle.properties
+ echo -e "KEY_PASSWORD=$KEYSTORE_OFFICIAL_PASSWORD" >> ./gradle.properties
else
echo -e "APPLICATION_ID=chat.rocket.reactnative" >> ./gradle.properties
echo -e "BugsnagAPIKey=$BUGSNAG_KEY" >> ./gradle.properties
- echo $KEYSTORE_BASE64 | base64 --decode > ./app/$KEYSTORE
- echo -e "KEYSTORE=$KEYSTORE" >> ./gradle.properties
- echo -e "KEYSTORE_PASSWORD=$KEYSTORE_PASSWORD" >> ./gradle.properties
- echo -e "KEY_ALIAS=$KEY_ALIAS" >> ./gradle.properties
- echo -e "KEY_PASSWORD=$KEYSTORE_PASSWORD" >> ./gradle.properties
+ echo $KEYSTORE_EXPERIMENTAL_BASE64 | base64 --decode > ./app/$KEYSTORE_EXPERIMENTAL
+ echo -e "KEYSTORE=$KEYSTORE_EXPERIMENTAL" >> ./gradle.properties
+ echo -e "KEYSTORE_PASSWORD=$KEYSTORE_EXPERIMENTAL_PASSWORD" >> ./gradle.properties
+ echo -e "KEY_ALIAS=$KEYSTORE_EXPERIMENTAL_ALIAS" >> ./gradle.properties
+ echo -e "KEY_PASSWORD=$KEYSTORE_EXPERIMENTAL_PASSWORD" >> ./gradle.properties
fi
working_directory: android
- run:
name: Set Google Services
command: |
- if [[ $KEYSTORE ]]; then
+ if [[ $GOOGLE_SERVICES_ANDROID ]]; then
echo $GOOGLE_SERVICES_ANDROID | base64 --decode > google-services.json
fi
working_directory: android/app
@@ -151,7 +151,7 @@ commands:
if [[ $CIRCLE_JOB == "android-build-experimental" || "android-automatic-build-experimental" ]]; then
./gradlew bundleExperimentalPlayRelease
fi
- if [[ ! $KEYSTORE ]]; then
+ if [[ ! $GOOGLE_SERVICES_ANDROID ]]; then
./gradlew assembleExperimentalPlayDebug
fi
working_directory: android
@@ -200,8 +200,12 @@ commands:
- run:
name: Set Google Services
command: |
- if [[ $KEYSTORE ]]; then
- echo $GOOGLE_SERVICES_IOS | base64 --decode > GoogleService-Info.plist
+ if [[ $APP_STORE_CONNECT_API_KEY_BASE64 ]]; then
+ if [[ $CIRCLE_JOB == "ios-build-official" ]]; then
+ echo $GOOGLE_SERVICES_IOS | base64 --decode > GoogleService-Info.plist
+ else
+ echo $GOOGLE_SERVICES_IOS_EXPERIMENTAL | base64 --decode > GoogleService-Info.plist
+ fi
fi
working_directory: ios
- run:
@@ -223,12 +227,12 @@ commands:
/usr/libexec/PlistBuddy -c "Set IS_OFFICIAL NO" ./NotificationService/Info.plist
fi
- if [[ $APP_STORE_CONNECT_API_BASE64 ]]; then
- echo $APP_STORE_CONNECT_API_BASE64 | base64 --decode > ./fastlane/app_store_connect_api_key.p8
+ if [[ $APP_STORE_CONNECT_API_KEY_BASE64 ]]; then
+ echo $APP_STORE_CONNECT_API_KEY_BASE64 | base64 --decode > ./fastlane/app_store_connect_api_key.p8
if [[ $CIRCLE_JOB == "ios-build-official" ]]; then
bundle exec fastlane ios build_official
else
- if [[ $KEYSTORE ]]; then
+ if [[ $APP_STORE_CONNECT_API_KEY_BASE64 ]]; then
bundle exec fastlane ios build_experimental
else
bundle exec fastlane ios build_fork
@@ -318,7 +322,7 @@ commands:
- run:
name: Fastlane Tesflight Upload
command: |
- echo $APP_STORE_CONNECT_API_BASE64 | base64 --decode > ./fastlane/app_store_connect_api_key.p8
+ echo $APP_STORE_CONNECT_API_KEY_BASE64 | base64 --decode > ./fastlane/app_store_connect_api_key.p8
bundle exec fastlane ios beta official:<< parameters.official >>
working_directory: ios
- save_cache: *save-gems-cache
diff --git a/.eslintrc.js b/.eslintrc.js
index 1f0105d18..963e50abf 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -2,7 +2,7 @@ module.exports = {
settings: {
'import/resolver': {
node: {
- extensions: ['.ts', '.tsx', '.js', '.ios.js', '.android.js', '.native.js']
+ extensions: ['.ts', '.tsx', '.js', '.ios.js', '.android.js', '.native.js', '.ios.tsx', '.android.tsx']
}
}
},
diff --git a/.ruby-version b/.ruby-version
index a4dd9dba4..1f7da99d4 100644
--- a/.ruby-version
+++ b/.ruby-version
@@ -1 +1 @@
-2.7.4
+2.7.7
diff --git a/Gemfile b/Gemfile
index bbba14aff..f537d7be3 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,4 +1,4 @@
source 'https://rubygems.org'
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
-ruby '2.7.4'
+ruby '2.7.7'
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
\ No newline at end of file
diff --git a/__tests__/containers/markdown/new/__snapshots__/NewMarkdown.stories.storyshot b/__tests__/containers/markdown/new/__snapshots__/NewMarkdown.stories.storyshot
index 778da6777..70328abba 100644
--- a/__tests__/containers/markdown/new/__snapshots__/NewMarkdown.stories.storyshot
+++ b/__tests__/containers/markdown/new/__snapshots__/NewMarkdown.stories.storyshot
@@ -14,10 +14,12 @@ exports[`Storyshots NewMarkdown Inline Katex 1`] = `"{\\"type\\":\\"View\\",\\"p
exports[`Storyshots NewMarkdown Katex 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginHorizontal\\":15,\\"backgroundColor\\":\\"#ffffff\\",\\"marginVertical\\":50}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"math\\":\\" f(x) = \\\\\\\\int_{-\\\\\\\\infty}^\\\\\\\\infty \\\\\\\\hat f(\\\\\\\\xi)\\\\\\\\,e^{2 \\\\\\\\pi i \\\\\\\\xi x} \\\\\\\\,d\\\\\\\\xi \\",\\"style\\":{\\"color\\":\\"#2f343d\\"}},\\"children\\":null}]}"`;
-exports[`Storyshots NewMarkdown Links 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginHorizontal\\":15,\\"backgroundColor\\":\\"#ffffff\\",\\"marginVertical\\":50}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":[\\"https://rocket.chat\\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":[\\"Markdown link\\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":[\\"Normal Link - \\",{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Bold\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Bold\\"]}]},\\" \\",{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textDecorationLine\\":\\"line-through\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"strike\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"strike\\"]}]},\\" and \\",{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"fontStyle\\":\\"italic\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Italic\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Italic\\"]}]},\\" Styles\\"]}]}]}]}"`;
+exports[`Storyshots NewMarkdown Links 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginHorizontal\\":15,\\"backgroundColor\\":\\"#ffffff\\",\\"marginVertical\\":50}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":[\\"Markdown link\\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":[\\"Normal Link - \\",{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Bold\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Bold\\"]}]},\\" \\",{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textDecorationLine\\":\\"line-through\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"strike\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"strike\\"]}]},\\" and \\",{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"fontStyle\\":\\"italic\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Italic\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Italic\\"]}]},\\" Styles\\"]}]}]}]}"`;
-exports[`Storyshots NewMarkdown Lists 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginHorizontal\\":15,\\"backgroundColor\\":\\"#ffffff\\",\\"marginVertical\\":50}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"- \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Plain text \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Plain text \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"color\\":\\"#2f343d\\"},{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"}]},\\"children\\":[\\"💡\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"fontStyle\\":\\"italic\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" italic \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" italic \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" bold \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" bold \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textDecorationLine\\":\\"line-through\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" strike \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" strike \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F3BE08\\"}]},\\"children\\":[\\"#general\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":[\\" link \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F5455C\\"}]},\\"children\\":[\\"rocket.cat\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Courier New\\",\\"fontWeight\\":\\"400\\",\\"borderWidth\\":1,\\"borderRadius\\":4,\\"paddingLeft\\":2,\\"paddingTop\\":2},{\\"color\\":\\"#2f343d\\",\\"backgroundColor\\":\\"#f1f2f4\\",\\"borderColor\\":\\"#e1e5e8\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{},\\"children\\":[\\" inline code\\"]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"- \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\"]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\". \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Plain text \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Plain text \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"color\\":\\"#2f343d\\"},{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"}]},\\"children\\":[\\"💡\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"fontStyle\\":\\"italic\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" italic \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" italic \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" bold \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" bold \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textDecorationLine\\":\\"line-through\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" strike \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" strike \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F3BE08\\"}]},\\"children\\":[\\"#general\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":[\\" link \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F5455C\\"}]},\\"children\\":[\\"rocket.cat\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Courier New\\",\\"fontWeight\\":\\"400\\",\\"borderWidth\\":1,\\"borderRadius\\":4,\\"paddingLeft\\":2,\\"paddingTop\\":2},{\\"color\\":\\"#2f343d\\",\\"backgroundColor\\":\\"#f1f2f4\\",\\"borderColor\\":\\"#e1e5e8\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{},\\"children\\":[\\" inline code\\"]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\". \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\"]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"- [x] \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Plain text \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Plain text \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"color\\":\\"#2f343d\\"},{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"}]},\\"children\\":[\\"💡\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"fontStyle\\":\\"italic\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" italic \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" italic \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" bold \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" bold \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textDecorationLine\\":\\"line-through\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" strike \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" strike \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F3BE08\\"}]},\\"children\\":[\\"#general\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":[\\" link \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F5455C\\"}]},\\"children\\":[\\"rocket.cat\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Courier New\\",\\"fontWeight\\":\\"400\\",\\"borderWidth\\":1,\\"borderRadius\\":4,\\"paddingLeft\\":2,\\"paddingTop\\":2},{\\"color\\":\\"#2f343d\\",\\"backgroundColor\\":\\"#f1f2f4\\",\\"borderColor\\":\\"#e1e5e8\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{},\\"children\\":[\\" inline code\\"]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"- [ ] \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\"]}]}]}]}]}"`;
+exports[`Storyshots NewMarkdown Lists 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginHorizontal\\":15,\\"backgroundColor\\":\\"#ffffff\\",\\"marginVertical\\":50}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"- \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"color\\":\\"#2f343d\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Plain text \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Plain text \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"color\\":\\"#2f343d\\"},{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"}]},\\"children\\":[\\"💡\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"fontStyle\\":\\"italic\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" italic \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" italic \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" bold \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" bold \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textDecorationLine\\":\\"line-through\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" strike \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" strike \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F3BE08\\"}]},\\"children\\":[\\"#general\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":[\\" link \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F5455C\\"}]},\\"children\\":[\\"rocket.cat\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Courier New\\",\\"fontWeight\\":\\"400\\",\\"borderWidth\\":1,\\"borderRadius\\":4,\\"paddingLeft\\":2,\\"paddingTop\\":2},{\\"color\\":\\"#2f343d\\",\\"backgroundColor\\":\\"#f1f2f4\\",\\"borderColor\\":\\"#e1e5e8\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{},\\"children\\":[\\" inline code\\"]}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"- \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"color\\":\\"#2f343d\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\"]}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\". \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"color\\":\\"#2f343d\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Plain text \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Plain text \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"color\\":\\"#2f343d\\"},{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"}]},\\"children\\":[\\"💡\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"fontStyle\\":\\"italic\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" italic \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" italic \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" bold \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" bold \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textDecorationLine\\":\\"line-through\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" strike \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" strike \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F3BE08\\"}]},\\"children\\":[\\"#general\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":[\\" link \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F5455C\\"}]},\\"children\\":[\\"rocket.cat\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Courier New\\",\\"fontWeight\\":\\"400\\",\\"borderWidth\\":1,\\"borderRadius\\":4,\\"paddingLeft\\":2,\\"paddingTop\\":2},{\\"color\\":\\"#2f343d\\",\\"backgroundColor\\":\\"#f1f2f4\\",\\"borderColor\\":\\"#e1e5e8\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{},\\"children\\":[\\" inline code\\"]}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\". \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"color\\":\\"#2f343d\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\"]}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"- [x] \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Plain text \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Plain text \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"color\\":\\"#2f343d\\"},{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"}]},\\"children\\":[\\"💡\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"fontStyle\\":\\"italic\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" italic \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" italic \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" bold \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" bold \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textDecorationLine\\":\\"line-through\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" strike \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" strike \\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F3BE08\\"}]},\\"children\\":[\\"#general\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":[\\" link \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F5455C\\"}]},\\"children\\":[\\"rocket.cat\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Courier New\\",\\"fontWeight\\":\\"400\\",\\"borderWidth\\":1,\\"borderRadius\\":4,\\"paddingLeft\\":2,\\"paddingTop\\":2},{\\"color\\":\\"#2f343d\\",\\"backgroundColor\\":\\"#f1f2f4\\",\\"borderColor\\":\\"#e1e5e8\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{},\\"children\\":[\\" inline code\\"]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"- [ ] \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\"]}]}]}]}]}"`;
exports[`Storyshots NewMarkdown Mentions 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginHorizontal\\":15,\\"backgroundColor\\":\\"#ffffff\\",\\"marginVertical\\":50}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F5455C\\"}]},\\"children\\":[\\"rocket.cat\\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F3BE08\\"}]},\\"children\\":[\\"name\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F5455C\\"}]},\\"children\\":[\\"rocket.cat\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"@not_a_user\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F38C39\\"}]},\\"children\\":[\\"here\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\" \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\" \\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#F38C39\\"}]},\\"children\\":[\\"all\\"]}]}]}]}"`;
+exports[`Storyshots NewMarkdown Message Quote 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginHorizontal\\":15,\\"backgroundColor\\":\\"#ffffff\\",\\"marginVertical\\":50}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\",\\"fontSize\\":24},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"Hello head 1\\"]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"height\\":8}},\\"children\\":null},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\",\\"fontSize\\":24},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"Head 1 as the first line then line break and after paragraph\\"]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"height\\":8}},\\"children\\":null},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"bla bla bla bla bla bla \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"bla bla bla bla bla bla \\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"bla bla bla bla bla bla \\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"bla bla bla bla bla bla \\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\",\\"fontSize\\":24},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[\\"Head 1 after a forced line break\\"]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"height\\":8}},\\"children\\":null},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Description\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Description\\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#1d74f5\\"}]},\\"children\\":null},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"700\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"There is a link before this bold separated by single space\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"There is a link before this bold separated by single space\\"]}]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Quoting a message wrote before\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Quoting a message wrote before\\"]}]}]}]}"`;
+
exports[`Storyshots NewMarkdown Text 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginHorizontal\\":15,\\"backgroundColor\\":\\"#ffffff\\",\\"marginVertical\\":50}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"This is Rocket.Chat\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"This is Rocket.Chat\\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"a\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"a\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"b\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"b\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"c\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"c\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"d\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"d\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"e\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"e\\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"a b c\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"a b c\\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"This is Rocket.Chat\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"This is Rocket.Chat\\"]}]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":{\\"flexShrink\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\",\\"style\\":{\\"fontSize\\":16,\\"flexShrink\\":1}},\\"children\\":[\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\"]}]}]}]}"`;
diff --git a/__tests__/containers/message/__snapshots__/Message.stories.storyshot b/__tests__/containers/message/__snapshots__/Message.stories.storyshot
index c0b4deb01..81759ec55 100644
--- a/__tests__/containers/message/__snapshots__/Message.stories.storyshot
+++ b/__tests__/containers/message/__snapshots__/Message.stories.storyshot
@@ -42,7 +42,7 @@ exports[`Storyshots Message Mentions 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"
exports[`Storyshots Message Message 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":{\\"backgroundColor\\":\\"#ffffff\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4},{\\"marginTop\\":4}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/diego.mello?format=png&size=72\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},{\\"marginLeft\\":10}]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"justifyContent\\":\\"space-between\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flexShrink\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"flexShrink\\":1,\\"fontSize\\":16,\\"lineHeight\\":22,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#0d0e12\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"diego.mello\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":13,\\"marginLeft\\":8,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#9ca2a8\\"}]},\\"children\\":[\\"10:00 AM\\"]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":null}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}]}]}]}]}]}]}"`;
-exports[`Storyshots Message Message With Read Receipt 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":{\\"backgroundColor\\":\\"#ffffff\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4},{\\"marginTop\\":4}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/diego.mello?format=png&size=72\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},{\\"marginLeft\\":10}]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"justifyContent\\":\\"space-between\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flexShrink\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"flexShrink\\":1,\\"fontSize\\":16,\\"lineHeight\\":22,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#0d0e12\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"diego.mello\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":13,\\"marginLeft\\":8,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#9ca2a8\\"}]},\\"children\\":[\\"10:00 AM\\"]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":null}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},null,{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"I'm fine!\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}]]},\\"children\\":[\\"I'm fine!\\"]}]}]}]}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},false]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},null,{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"I'm fine!\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}]]},\\"children\\":[\\"I'm fine!\\"]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":null}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4},{\\"marginTop\\":4}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/diego.mello?format=png&size=72\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},{\\"marginLeft\\":10}]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"justifyContent\\":\\"space-between\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flexShrink\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"flexShrink\\":1,\\"fontSize\\":16,\\"lineHeight\\":22,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#0d0e12\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"diego.mello\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":13,\\"marginLeft\\":8,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#9ca2a8\\"}]},\\"children\\":[\\"10:00 AM\\"]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":16,\\"color\\":\\"#1d74f5\\"},{\\"paddingLeft\\":5},{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},null,{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"I'm fine!\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}]]},\\"children\\":[\\"I'm fine!\\"]}]}]}]}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},false]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},null,{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"I'm fine!\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}]]},\\"children\\":[\\"I'm fine!\\"]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":16,\\"color\\":\\"#1d74f5\\"},{\\"paddingLeft\\":5},{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}]}]}]}]}]}]}"`;
+exports[`Storyshots Message Message With Read Receipt 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":{\\"backgroundColor\\":\\"#ffffff\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4},{\\"marginTop\\":4}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/diego.mello?format=png&size=72\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},{\\"marginLeft\\":10}]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"justifyContent\\":\\"space-between\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flexShrink\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"flexShrink\\":1,\\"fontSize\\":16,\\"lineHeight\\":22,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#0d0e12\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"diego.mello\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":13,\\"marginLeft\\":8,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#9ca2a8\\"}]},\\"children\\":[\\"10:00 AM\\"]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":16,\\"color\\":\\"#6C727A\\"},{\\"paddingLeft\\":5},{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},null,{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"I'm fine!\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}]]},\\"children\\":[\\"I'm fine!\\"]}]}]}]}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},false]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},null,{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"I'm fine!\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}]]},\\"children\\":[\\"I'm fine!\\"]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":16,\\"color\\":\\"#6C727A\\"},{\\"paddingLeft\\":5},{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4},{\\"marginTop\\":4}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/diego.mello?format=png&size=72\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},{\\"marginLeft\\":10}]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"justifyContent\\":\\"space-between\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flexShrink\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"flexShrink\\":1,\\"fontSize\\":16,\\"lineHeight\\":22,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#0d0e12\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"diego.mello\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":13,\\"marginLeft\\":8,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#9ca2a8\\"}]},\\"children\\":[\\"10:00 AM\\"]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":16,\\"color\\":\\"#1d74f5\\"},{\\"paddingLeft\\":5},{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},null,{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"I'm fine!\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}]]},\\"children\\":[\\"I'm fine!\\"]}]}]}]}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},false]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},null,{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"I'm fine!\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}]]},\\"children\\":[\\"I'm fine!\\"]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":16,\\"color\\":\\"#1d74f5\\"},{\\"paddingLeft\\":5},{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}]}]}]}]}]}]}"`;
exports[`Storyshots Message Message With Reply 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":{\\"backgroundColor\\":\\"#ffffff\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4},{\\"marginTop\\":4}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/diego.mello?format=png&size=72\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},{\\"marginLeft\\":10}]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"justifyContent\\":\\"space-between\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flexShrink\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"flexShrink\\":1,\\"fontSize\\":16,\\"lineHeight\\":22,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#0d0e12\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"diego.mello\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":13,\\"marginLeft\\":8,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#9ca2a8\\"}]},\\"children\\":[\\"10:00 AM\\"]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":null}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},null,{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"I'm fine!\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}]]},\\"children\\":[\\"I'm fine!\\"]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"marginVertical\\":4,\\"alignSelf\\":\\"flex-start\\",\\"borderLeftWidth\\":2,\\"borderColor\\":\\"#e1e5e8\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"borderRadius\\":4,\\"flexDirection\\":\\"column\\",\\"paddingVertical\\":4,\\"paddingLeft\\":8}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"marginBottom\\":8}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"numberOfLines\\":1,\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\",\\"flexShrink\\":1},{\\"color\\":\\"#6C727A\\"}]},\\"children\\":[\\"I'm a very long long title and I'll break\\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{\\"color\\":\\"#6C727A\\",\\"fontSize\\":14}],{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"How are you?\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}],{\\"color\\":\\"#6C727A\\",\\"fontSize\\":14}]},\\"children\\":[\\"How are you?\\"]}]}]}]}]}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4},{\\"marginTop\\":4}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/diego.mello?format=png&size=72\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},{\\"marginLeft\\":10}]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"justifyContent\\":\\"space-between\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flexShrink\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"flexShrink\\":1,\\"fontSize\\":16,\\"lineHeight\\":22,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#0d0e12\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"diego.mello\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":13,\\"marginLeft\\":8,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#9ca2a8\\"}]},\\"children\\":[\\"10:00 AM\\"]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":null}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},null,{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"I'm fine!\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}]]},\\"children\\":[\\"I'm fine!\\"]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"marginVertical\\":4,\\"alignSelf\\":\\"flex-start\\",\\"borderLeftWidth\\":2,\\"borderColor\\":\\"#e1e5e8\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"borderRadius\\":4,\\"flexDirection\\":\\"column\\",\\"paddingVertical\\":4,\\"paddingLeft\\":8}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"marginBottom\\":8}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"numberOfLines\\":1,\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\",\\"flexShrink\\":1},{\\"color\\":\\"#6C727A\\"}]},\\"children\\":[\\"rocket.cat\\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{\\"color\\":\\"#6C727A\\",\\"fontSize\\":14}],{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"How are you? \\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}],{\\"color\\":\\"#6C727A\\",\\"fontSize\\":14}]},\\"children\\":[\\"How are you? \\"]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},[{\\"width\\":20,\\"height\\":20},[{\\"color\\":\\"#6C727A\\",\\"fontSize\\":14}]]]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/emoji-custom/nyan_rocket.png\\",\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"contain\\"},\\"children\\":null}]}]}]}]}]}]}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"paddingVertical\\":4,\\"width\\":\\"100%\\",\\"paddingHorizontal\\":14,\\"flexDirection\\":\\"column\\"},null]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4},{\\"marginTop\\":4}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":36,\\"height\\":36,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/diego.mello?format=png&size=72\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"marginLeft\\":46},{\\"marginLeft\\":10}]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"justifyContent\\":\\"space-between\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flexShrink\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"flexShrink\\":1,\\"fontSize\\":16,\\"lineHeight\\":22,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"600\\"},{\\"color\\":\\"#0d0e12\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"diego.mello\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":13,\\"marginLeft\\":8,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#9ca2a8\\"}]},\\"children\\":[\\"10:00 AM\\"]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":null}]},{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},null,{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Looks cool!\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}]]},\\"children\\":[\\"Looks cool!\\"]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"marginVertical\\":4,\\"alignSelf\\":\\"flex-start\\",\\"borderLeftWidth\\":2,\\"borderColor\\":\\"#e1e5e8\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"borderRadius\\":4,\\"flexDirection\\":\\"column\\",\\"paddingVertical\\":4,\\"paddingLeft\\":8}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"marginBottom\\":8}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"numberOfLines\\":1,\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\",\\"flexShrink\\":1},{\\"color\\":\\"#6C727A\\"}]},\\"children\\":[\\"rocket.cat\\"]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":true},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flexDirection\\":\\"column\\",\\"borderRadius\\":4,\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[[{\\"color\\":\\"#6C727A\\",\\"fontSize\\":14,\\"marginBottom\\":8}]],{\\"color\\":\\"#2f343d\\"}]},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"What you think about this one?\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},[{},{\\"marginTop\\":0,\\"marginBottom\\":0,\\"flexWrap\\":\\"wrap\\",\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"flex-start\\",\\"justifyContent\\":\\"flex-start\\"}],[{\\"color\\":\\"#6C727A\\",\\"fontSize\\":14,\\"marginBottom\\":8}]]},\\"children\\":[\\"What you think about this one?\\"]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":\\"100%\\",\\"minHeight\\":200,\\"borderRadius\\":4,\\"borderWidth\\":1,\\"overflow\\":\\"hidden\\"},{\\"borderColor\\":\\"#e1e5e8\\"}]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},[{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},null]]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://octodex.github.com/images/yaktocat.png?rc_uid=y8bd77ptZswPj3EW8&rc_token=abc\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}]}]}]}]}]}]}]}]}]}]}]}"`;
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 493b9874d..5f4d450c3 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -147,7 +147,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode VERSIONCODE as Integer
- versionName "4.33.0"
+ versionName "4.36.0"
vectorDrawables.useSupportLibrary = true
if (!isFoss) {
manifestPlaceholders = [BugsnagAPIKey: BugsnagAPIKey as String]
@@ -357,9 +357,6 @@ dependencies {
playImplementation project(':@react-native-firebase_app')
playImplementation project(':@react-native-firebase_analytics')
playImplementation project(':@react-native-firebase_crashlytics')
- implementation(project(':react-native-jitsi-meet')) { // https://github.com/skrafft/react-native-jitsi-meet#side-note
- exclude group: 'com.facebook.react',module:'react-native-svg'
- }
implementation fileTree(dir: "libs", include: ["*.jar"])
//noinspection GradleDynamicVersion
diff --git a/android/app/src/debug/java/chat/rocket/reactnative/MainDebugApplication.java b/android/app/src/debug/java/chat/rocket/reactnative/MainDebugApplication.java
deleted file mode 100644
index e6abf3b05..000000000
--- a/android/app/src/debug/java/chat/rocket/reactnative/MainDebugApplication.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package chat.rocket.reactnative;
-
-import android.content.Context;
-
-import com.facebook.react.ReactInstanceManager;
-
-public class MainDebugApplication extends MainApplication {
-
- @Override
- public void onCreate() {
- super.onCreate();
- initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
- }
-
- /**
- * Loads Flipper in React Native templates. Call this in the onCreate method with something like
- * initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
- *
- * @param context
- * @param reactInstanceManager
- */
- private static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
- ReactNativeFlipper.initializeFlipper(context, reactInstanceManager);
- }
-}
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 9c72e6b32..1b48b17ba 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -5,6 +5,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
diff --git a/android/app/src/main/assets/fonts/custom.ttf b/android/app/src/main/assets/fonts/custom.ttf
index 67c42d9e3..ae3cd7da2 100644
Binary files a/android/app/src/main/assets/fonts/custom.ttf and b/android/app/src/main/assets/fonts/custom.ttf differ
diff --git a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java
index 871e6e86d..b94159e09 100644
--- a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java
+++ b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java
@@ -9,13 +9,16 @@ import com.facebook.react.ReactApplication;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.config.ReactFeatureFlags;
+import com.facebook.react.ReactInstanceManager;
import com.facebook.soloader.SoLoader;
import com.reactnativecommunity.viewpager.RNCViewPagerPackage;
import com.facebook.react.bridge.JSIModulePackage;
import com.swmansion.reanimated.ReanimatedJSIModulePackage;
+import android.content.Context;
import android.content.res.Configuration;
import expo.modules.ApplicationLifecycleDispatcher;
import expo.modules.ReactNativeHostWrapper;
+import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;
import java.util.List;
@@ -76,6 +79,7 @@ public class MainApplication extends Application implements ReactApplication {
// If you opted-in for the New Architecture, we enable the TurboModule system
ReactFeatureFlags.useTurboModules = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED;
SoLoader.init(this, /* native exopackage */ false);
+ initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
ApplicationLifecycleDispatcher.onApplicationCreate(this);
}
@@ -84,4 +88,35 @@ public class MainApplication extends Application implements ReactApplication {
super.onConfigurationChanged(newConfig);
ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig);
}
+
+ /**
+ * Loads Flipper in React Native templates. Call this in the onCreate method with something like
+ * initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
+ *
+ * @param context
+ * @param reactInstanceManager
+ */
+ private static void initializeFlipper(
+ Context context, ReactInstanceManager reactInstanceManager) {
+ if (BuildConfig.DEBUG) {
+ try {
+ /*
+ We use reflection here to pick up the class that initializes Flipper,
+ since Flipper library is not available in release mode
+ */
+ Class> aClass = Class.forName("chat.rocket.reactnative.ReactNativeFlipper");
+ aClass
+ .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
+ .invoke(null, context, reactInstanceManager);
+ } catch (ClassNotFoundException e) {
+ e.printStackTrace();
+ } catch (NoSuchMethodException e) {
+ e.printStackTrace();
+ } catch (IllegalAccessException e) {
+ e.printStackTrace();
+ } catch (InvocationTargetException e) {
+ e.printStackTrace();
+ }
+ }
+ }
}
diff --git a/android/build.gradle b/android/build.gradle
index 8680080c2..b05e6a6f1 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -26,8 +26,6 @@ buildscript {
kotlinVersion = '1.6.10'
supportLibVersion = "28.0.0"
libre_build = !(isPlay.toBoolean())
- jitsi_url = "https://github.com/RocketChat/jitsi-maven-repository/raw/master/releases"
- jitsi_version = "3.7.0"
}
repositories {
@@ -68,9 +66,6 @@ allprojects {
url "$rootDir/../node_modules/detox/Detox-android"
}
- maven {
- url jitsi_url
- }
mavenCentral {
content {
excludeGroup "com.facebook.react"
diff --git a/android/gradle.properties b/android/gradle.properties
index 59600f62e..29d16769c 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -23,7 +23,7 @@ android.useAndroidX=true
android.enableJetifier=true
# Version of flipper SDK to use with React Native
-FLIPPER_VERSION=0.125.0
+FLIPPER_VERSION=0.175.0
# Use this property to specify which architecture you want to build.
# You can also override it from the CLI using
diff --git a/app/actions/actionsTypes.ts b/app/actions/actionsTypes.ts
index f33c9ec7f..01c707453 100644
--- a/app/actions/actionsTypes.ts
+++ b/app/actions/actionsTypes.ts
@@ -28,7 +28,9 @@ export const ROOM = createRequestTypes('ROOM', [
'DELETE',
'REMOVED',
'FORWARD',
- 'USER_TYPING'
+ 'USER_TYPING',
+ 'HISTORY_REQUEST',
+ 'HISTORY_FINISHED'
]);
export const INQUIRY = createRequestTypes('INQUIRY', [
...defaultTypes,
diff --git a/app/actions/room.ts b/app/actions/room.ts
index 168110199..901aeba47 100644
--- a/app/actions/room.ts
+++ b/app/actions/room.ts
@@ -1,6 +1,6 @@
import { Action } from 'redux';
-import { ERoomType } from '../definitions/ERoomType';
+import { ERoomType, RoomType } from '../definitions';
import { ROOM } from './actionsTypes';
// TYPE RETURN RELATED
@@ -44,7 +44,24 @@ interface IUserTyping extends Action {
status: boolean;
}
-export type TActionsRoom = TSubscribeRoom & TUnsubscribeRoom & ILeaveRoom & IDeleteRoom & IForwardRoom & IUserTyping;
+export interface IRoomHistoryRequest extends Action {
+ rid: string;
+ t: RoomType;
+ loaderId: string;
+}
+
+export interface IRoomHistoryFinished extends Action {
+ loaderId: string;
+}
+
+export type TActionsRoom = TSubscribeRoom &
+ TUnsubscribeRoom &
+ ILeaveRoom &
+ IDeleteRoom &
+ IForwardRoom &
+ IUserTyping &
+ IRoomHistoryRequest &
+ IRoomHistoryFinished;
export function subscribeRoom(rid: string): TSubscribeRoom {
return {
@@ -99,3 +116,19 @@ export function userTyping(rid: string, status = true): IUserTyping {
status
};
}
+
+export function roomHistoryRequest({ rid, t, loaderId }: { rid: string; t: RoomType; loaderId: string }): IRoomHistoryRequest {
+ return {
+ type: ROOM.HISTORY_REQUEST,
+ rid,
+ t,
+ loaderId
+ };
+}
+
+export function roomHistoryFinished({ loaderId }: { loaderId: string }): IRoomHistoryFinished {
+ return {
+ type: ROOM.HISTORY_FINISHED,
+ loaderId
+ };
+}
diff --git a/app/containers/ActionSheet/ActionSheetContentWithInputAndSubmit/index.tsx b/app/containers/ActionSheet/ActionSheetContentWithInputAndSubmit/index.tsx
index b3562c484..a32f27fc9 100644
--- a/app/containers/ActionSheet/ActionSheetContentWithInputAndSubmit/index.tsx
+++ b/app/containers/ActionSheet/ActionSheetContentWithInputAndSubmit/index.tsx
@@ -122,7 +122,6 @@ const ActionSheetContentWithInputAndSubmit = ({
}}
testID={testID}
secureTextEntry={secureTextEntry}
- inputStyle={{ borderWidth: 2 }}
bottomSheet={isIOS}
/>
) : null}
diff --git a/app/containers/Avatar/interfaces.ts b/app/containers/Avatar/interfaces.ts
index 8124f4e65..2f4fe9106 100644
--- a/app/containers/Avatar/interfaces.ts
+++ b/app/containers/Avatar/interfaces.ts
@@ -1,10 +1,11 @@
import React from 'react';
+import { ViewStyle } from 'react-native';
import { TGetCustomEmoji } from '../../definitions/IEmoji';
export interface IAvatar {
server?: string;
- style?: any;
+ style?: ViewStyle;
text?: string;
avatar?: string;
emoji?: string;
diff --git a/app/containers/CustomIcon/mappedIcons.js b/app/containers/CustomIcon/mappedIcons.js
index 34a6a7f0b..cc9bcbf02 100644
--- a/app/containers/CustomIcon/mappedIcons.js
+++ b/app/containers/CustomIcon/mappedIcons.js
@@ -1,7 +1,9 @@
export const mappedIcons = {
- 'lamp-bulb': 59812,
+ 'lamp-bulb': 59836,
+ 'phone-in': 59835,
'basketball': 59776,
'percentage': 59777,
+ 'glasses': 59812,
'burger': 59813,
'leaf': 59814,
'airplane': 59815,
diff --git a/app/containers/CustomIcon/selection.json b/app/containers/CustomIcon/selection.json
index dfc6253a0..d3aae2b48 100644
--- a/app/containers/CustomIcon/selection.json
+++ b/app/containers/CustomIcon/selection.json
@@ -1 +1 @@
-{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M505.133 128.078c60.819-1.376 120.422 15.569 170.346 48.251 49.904 32.67 87.501 79.327 107.75 133.159 20.24 53.808 22.205 112.266 5.648 167.165-16.554 54.89-50.864 103.683-98.368 139.309-15.501 11.462-28.189 26.246-36.989 43.309-8.822 17.107-13.469 36-13.507 55.216v21.514h-96.013v-148.774l120.989-151.235c11.040-13.802 8.803-33.939-4.998-44.979s-33.939-8.803-44.979 4.998l-103.011 128.765-103.011-128.765c-11.040-13.802-31.178-16.038-44.979-4.998s-16.038 31.178-4.998 44.979l120.989 151.235v148.774h-95.994v-21.677c-0.138-19.030-4.762-37.728-13.462-54.691-8.694-16.954-21.21-31.69-36.509-43.194l-19.229 25.578 19.069-25.696c-34.247-25.418-61.857-57.84-80.845-94.736-18.985-36.89-28.886-77.331-29.027-118.285v-0.045c-0.71-146.981 123.709-271.715 281.13-275.177zM640.013 800c16.506 0 32.618-6.243 44.72-17.795 12.157-11.603 19.28-27.664 19.28-44.746v-22.842c0.022-8.947 2.182-17.856 6.39-26.016 4.214-8.176 10.406-15.459 18.208-21.216l0.192-0.144c58.173-43.59 100.733-103.75 121.35-172.109 20.621-68.378 18.154-141.245-7.021-208.177-25.168-66.908-71.664-124.28-132.602-164.174-60.915-39.878-133.274-60.348-206.826-58.689-189.76 4.184-344.567 155.060-343.702 339.427l0 0.045 32-0.154-32 0.109c0.176 51.165 12.553 101.558 36.121 147.35 23.547 45.754 57.616 85.658 99.521 116.774 7.682 5.792 13.781 13.062 17.952 21.194 4.164 8.122 6.33 16.944 6.409 25.84v22.781c0 17.082 7.123 33.142 19.28 44.746 12.106 11.552 28.218 17.795 44.72 17.795h256.006zM352 864c-17.674 0-32 14.326-32 32s14.326 32 32 32h320c17.674 0 32-14.326 32-32s-14.326-32-32-32h-320z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lamp-bulb"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{}]}},"attrs":[{}],"properties":{"order":268,"id":213,"name":"lamp-bulb","prevSize":32,"code":59812},"setIdx":0,"setId":2,"iconIdx":0},{"icon":{"paths":["M896 512c0-212.077-171.923-384-384-384s-384 171.923-384 384c0 212.077 171.923 384 384 384s384-171.923 384-384zM480 544v286.419c-56.483-5.606-108.646-25.904-152.618-57.011 46.403-78.992 67.251-156.97 71.734-229.408h80.883zM334.8 544c-4.282 58.995-21.005 122.198-56.631 186.458-46.616-49.875-77.462-114.678-84.589-186.458h141.22zM398.954 480c-6.192-93.13-37.366-173.574-70.627-230.072 43.773-30.733 95.594-50.78 151.674-56.348v286.42h-81.046zM279.095 292.556c26.251 47.457 50.118 112.532 55.644 187.444h-141.159c7.174-72.253 38.381-137.437 85.515-187.444zM544 544h80.883c4.483 72.438 25.331 150.416 71.734 229.408-43.971 31.107-96.134 51.405-152.618 57.011v-286.419zM830.419 544c-7.126 71.779-37.971 136.582-84.589 186.458-35.626-64.259-52.349-127.462-56.63-186.458h141.219zM830.419 480h-141.158c5.526-74.912 29.395-139.987 55.645-187.444 47.133 50.008 78.339 115.192 85.514 187.444zM544 193.58c56.080 5.568 107.901 25.614 151.674 56.348-33.261 56.499-64.435 136.943-70.627 230.072h-81.046v-286.42z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["basketball"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]}},"attrs":[{}],"properties":{"order":267,"id":212,"name":"basketball","prevSize":32,"code":59776},"setIdx":0,"setId":2,"iconIdx":1},{"icon":{"paths":["M822.627 201.372c12.496 12.497 12.496 32.758 0 45.255l-576 576c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l576-576c12.496-12.497 32.758-12.497 45.254 0z","M192 320c0-70.692 57.308-128 128-128 70.691 0 128 57.308 128 128 0 70.691-57.309 128-128 128-70.692 0-128-57.309-128-128zM320 256c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.347 0 64-28.653 64-64s-28.653-64-64-64z","M704 576c-70.691 0-128 57.309-128 128s57.309 128 128 128c70.691 0 128-57.309 128-128s-57.309-128-128-128zM640 704c0-35.347 28.653-64 64-64s64 28.653 64 64c0 35.347-28.653 64-64 64s-64-28.653-64-64z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["percentage"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]}},"attrs":[{},{},{}],"properties":{"order":266,"id":211,"name":"percentage","prevSize":32,"code":59777},"setIdx":0,"setId":2,"iconIdx":2},{"icon":{"paths":["M193.603 416h-33.603c-17.673 0-32 14.326-32 32s14.327 32 32 32h704c17.674 0 32-14.326 32-32s-14.326-32-32-32h-33.603c-7.347-73.117-39.702-141.853-92.122-194.274-60.013-60.012-141.405-93.726-226.275-93.726s-166.262 33.714-226.274 93.726c-52.421 52.421-84.777 121.157-92.123 194.274zM330.979 266.981c48.010-48.010 113.126-74.981 181.021-74.981s133.011 26.971 181.021 74.981c40.403 40.404 65.907 92.923 72.973 149.019h-507.987c7.066-56.096 32.57-108.615 72.972-149.019z","M877.242 605.133c16.090-7.315 23.203-26.285 15.891-42.374-7.315-16.090-26.285-23.203-42.374-15.891l-127.558 57.981-127.558-57.981c-8.413-3.824-18.070-3.824-26.483 0l-127.558 57.981-127.558-57.981c-8.413-3.824-18.070-3.824-26.483 0l-140.8 64c-16.089 7.315-23.203 26.285-15.89 42.374s26.284 23.203 42.373 15.891l18.758-8.528v29.68c0 38.102 15.908 74.31 43.672 100.752 27.712 26.394 64.978 40.963 103.528 40.963h345.6c38.55 0 75.814-14.57 103.526-40.963 27.766-26.442 43.674-62.65 43.674-100.752v-64.589l45.242-20.563zM736.442 669.133l31.558-14.346v35.498c0 20.093-8.368 39.699-23.811 54.41-15.494 14.758-36.832 23.306-59.389 23.306h-345.6c-22.556 0-43.893-8.547-59.39-23.306-15.444-14.71-23.81-34.317-23.81-54.41v-58.771l44.8-20.362 127.558 57.981c8.413 3.824 18.070 3.824 26.483 0l127.558-57.981 127.558 57.981c8.413 3.824 18.070 3.824 26.483 0z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]}},"attrs":[{},{}],"properties":{"order":265,"id":209,"name":"burger","prevSize":32,"code":59813},"setIdx":0,"setId":2,"iconIdx":4},{"icon":{"paths":["M234.831 743.917c-75.198-141.606-58.197-285.718 40.507-391.734 101.776-109.314 284.915-172.318 524.636-158.217 16.192 0.953 29.114 13.872 30.064 30.066 14.102 239.723-48.902 422.859-158.218 524.635-106.016 98.707-250.128 115.706-391.737 40.506l-65.457 65.456c-12.497 12.499-32.758 12.499-45.255 0-12.497-12.496-12.497-32.758 0-45.254l65.458-65.456zM282.51 696.237l300.107-300.109c12.496-12.496 32.758-12.496 45.254 0 12.496 12.499 12.496 32.758 0 45.258l-300.109 300.106c113.565 53.238 220.73 34.554 300.448-39.664 86.579-80.611 146.157-231.866 139.251-445.286-213.418-6.905-364.675 52.673-445.283 139.254-74.219 79.715-92.904 186.877-39.669 300.442z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["leaf"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]}},"attrs":[{}],"properties":{"order":264,"id":208,"name":"leaf","prevSize":32,"code":59814},"setIdx":0,"setId":2,"iconIdx":5},{"icon":{"paths":["M512 192c-13.056 0-25.578 5.187-34.813 14.419-9.232 9.233-14.419 21.755-14.419 34.812v162.462c0 12.122-6.848 23.2-17.686 28.621l-253.082 126.541v49.498l232.493-46.499c9.402-1.882 19.149 0.554 26.563 6.63 7.414 6.080 11.712 15.162 11.712 24.749v108.307c0 8.486-3.37 16.624-9.373 22.627l-44.781 44.781v47.789l91.501-36.602c7.629-3.050 16.141-3.050 23.77 0l91.501 36.602v-47.789l-44.781-44.781c-6.003-6.003-9.373-14.141-9.373-22.627v-108.307c0-9.587 4.298-18.669 11.712-24.749 7.414-6.077 17.162-8.512 26.563-6.63l232.493 46.499v-49.498l-253.082-126.541c-10.838-5.421-17.686-16.499-17.686-28.621v-162.462c0-13.057-5.187-25.579-14.419-34.812-9.235-9.232-21.757-14.419-34.813-14.419zM431.933 161.164c21.235-21.235 50.035-33.164 80.067-33.164s58.832 11.93 80.067 33.164c21.235 21.235 33.165 50.036 33.165 80.066v142.686l253.078 126.538c10.842 5.421 17.69 16.502 17.69 28.624v108.307c0 9.587-4.298 18.669-11.712 24.746s-17.162 8.512-26.563 6.63l-232.493-46.496v56.019l44.781 44.781c6 6 9.373 14.141 9.373 22.627v108.307c0 10.618-5.267 20.544-14.061 26.499-8.794 5.952-19.965 7.155-29.824 3.213l-123.501-49.402-123.501 49.402c-9.859 3.942-21.030 2.739-29.824-3.213-8.794-5.955-14.061-15.882-14.061-26.499v-108.307c0-8.486 3.373-16.627 9.373-22.627l44.781-44.781v-56.019l-232.492 46.496c-9.401 1.882-19.149-0.554-26.564-6.63s-11.712-15.158-11.712-24.746v-108.307c0-12.122 6.848-23.203 17.689-28.624l253.079-126.538v-142.686c0-30.031 11.93-58.831 33.165-80.066z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airplane"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]}},"attrs":[{}],"properties":{"order":263,"id":207,"name":"airplane","prevSize":32,"code":59815},"setIdx":0,"setId":2,"iconIdx":6},{"icon":{"paths":["M565.802 233.862l-97.261 97.261h-187.521l-0.456 0.003c-14.696 0.208-28.717 6.186-39.042 16.637l-97.095 96.797-0.048 0.048c-7.165 7.174-12.248 16.157-14.707 25.994-2.459 9.834-2.202 20.154 0.745 29.856 2.946 9.699 8.471 18.419 15.984 25.226 7.506 6.8 16.746 11.443 26.678 13.424l125.65 25.19c5.103 1.024 10.166 0.771 14.859-0.538l162.866 162.867c1.987 1.987 4.17 3.654 6.483 5.011l22.88 114.128c1.981 9.936 6.618 19.146 13.418 26.653 6.81 7.514 15.526 13.037 25.229 15.984s20.019 3.203 29.856 0.746c9.837-2.461 18.819-7.542 25.994-14.707l96.842-97.146c10.451-10.323 16.432-24.346 16.64-39.040l0.003-0.454v-193.802c0-2.893-0.384-5.693-1.104-8.358l77.443-77.44c110.522-110.525 110.474-223.191 103.152-273.759-1.862-13.592-8.122-26.204-17.824-35.908s-22.317-15.962-35.907-17.823c-50.57-7.321-163.235-7.371-273.757 103.151zM611.056 279.117c92.138-92.138 182.144-90.373 218.947-85.121 5.254 36.804 7.018 126.811-85.12 218.948l-245.798 245.802-133.83-133.827 245.802-245.802zM404.541 395.123l-104.222 104.221-100.071-20.064 84.42-84.157h119.873zM542.89 705.446l106.909-106.906v135.61l-84.16 84.422-22.266-111.062c-0.138-0.698-0.301-1.386-0.483-2.064z","M286.325 699.699c15.297-8.851 20.524-28.426 11.674-43.725-8.85-15.296-28.426-20.522-43.723-11.674-49.486 28.63-72.438 77.786-83.25 115.523-5.52 19.267-8.252 36.813-9.619 49.539-0.687 6.397-1.037 11.661-1.217 15.424-0.090 1.885-0.137 3.402-0.162 4.499l-0.023 1.334-0.004 0.422-0.001 0.15v0.083c0 8.486 3.372 16.65 9.372 22.65 6.001 6.003 14.14 9.373 22.628 9.373v-32c0 32 0.037 32 0.048 32h0.208l0.424-0.003 1.333-0.022c1.099-0.026 2.614-0.074 4.498-0.163 3.764-0.179 9.029-0.528 15.425-1.216 12.727-1.366 30.272-4.099 49.54-9.619 37.739-10.813 86.892-33.763 115.523-83.251 8.851-15.296 3.622-34.87-11.674-43.722s-34.874-3.626-43.725 11.674c-16.669 28.813-47.164 45.011-77.751 53.776-6.095 1.744-12.005 3.139-17.55 4.25 1.111-5.546 2.505-11.456 4.251-17.549 8.763-30.589 24.961-61.085 53.775-77.754zM192 831.299l-32-0.022c0 0.013 0 0.022 32 0.022z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["rocket"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]}},"attrs":[{},{}],"properties":{"order":262,"id":206,"name":"rocket","prevSize":32,"code":59816},"setIdx":0,"setId":2,"iconIdx":7},{"icon":{"paths":["M478.65 672c-17.674 0-32-14.326-32-32v-32h-32c-17.674 0-32-14.326-32-32s14.326-32 32-32h32v-58.88h-32c-17.674 0-32-14.326-32-32s14.326-32 32-32h32v-37.12c0-17.674 14.326-32 32-32 17.67 0 32 14.326 32 32v37.12h58.88v-37.12c0-17.674 14.326-32 32-32s32 14.326 32 32v37.12h37.12c17.67 0 32 14.326 32 32s-14.33 32-32 32h-37.12v58.88h37.12c17.67 0 32 14.326 32 32s-14.33 32-32 32h-37.12v32c0 17.674-14.326 32-32 32s-32-14.326-32-32v-32h-58.88v32c0 17.674-14.33 32-32 32zM510.65 544h58.88v-58.88h-58.88v58.88z","M158.648 672h-32c-17.673 0-32-14.326-32-32s14.327-32 32-32h32v-192h-32c-17.673 0-32-14.326-32-32s14.327-32 32-32h32v-160c0-35.346 28.654-64 64-64h608.001c35.344 0 64 28.654 64 64v640c0 35.347-28.656 64-64 64h-608.001c-35.346 0-64-28.653-64-64v-160zM830.65 192h-608.001v160h32c17.673 0 32 14.326 32 32s-14.327 32-32 32h-32v192h32c17.673 0 32 14.326 32 32s-14.327 32-32 32h-32v160h608.001v-640z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directory"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":4,"id":205,"name":"directory","prevSize":32,"code":59648},"setIdx":0,"setId":2,"iconIdx":8},{"icon":{"paths":["M833.35 128c10.285 0 20 2.425 28.611 6.735-11.834 4.684-22.922 11.812-32.493 21.383l-35.882 35.882h-568.236v160h32c17.673 0 32 14.326 32 32s-14.327 32-32 32h-32v192h32c17.673 0 32 14.326 32 32s-14.327 32-32 32h-32v88.237l-64 64v-152.237h-32c-17.673 0-32-14.326-32-32s14.327-32 32-32h32v-192h-32c-17.673 0-32-14.326-32-32s14.327-32 32-32h32v-160c0-35.346 28.654-64 64-64h607.999z","M361.117 896l64-64h408.234v-408.237l64-64v472.237c0 35.347-28.653 64-64 64h-472.234z","M604.23 352c8.166 0 15.616 3.056 21.267 8.090l-53.267 53.267v-29.357c0-17.674 14.33-32 32-32z","M513.35 421.12h51.117l-115.117 115.117v-51.117h-32c-17.67 0-32-14.326-32-32s14.33-32 32-32h32v-37.12c0-17.674 14.33-32 32-32 17.674 0 32 14.326 32 32v37.12z","M391.174 594.413l50.413-50.413h-24.237c-17.67 0-32 14.326-32 32 0 6.854 2.157 13.203 5.824 18.413z","M919.978 201.372c-12.496-12.497-32.755-12.497-45.254 0l-671.999 672c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l671.999-672c12.499-12.497 12.499-32.758 0-45.255z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directory-disabled"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":6,"id":204,"name":"directory-disabled","prevSize":32,"code":59649},"setIdx":0,"setId":2,"iconIdx":9},{"icon":{"paths":["M919.978 105.372c12.499 12.497 12.499 32.758 0 45.255l-89.373 89.372 89.373 89.373c12.499 12.496 12.499 32.758 0 45.254-12.496 12.496-32.755 12.496-45.254 0l-89.373-89.372-89.373 89.372c-12.496 12.496-32.755 12.496-45.254 0-12.496-12.496-12.496-32.758 0-45.254l89.373-89.373-89.373-89.372c-12.496-12.497-12.496-32.758 0-45.255 12.499-12.497 32.758-12.497 45.254 0l89.373 89.373 89.373-89.373c12.499-12.497 32.758-12.497 45.254 0z","M512.419 126.678c1.491 17.61-11.578 33.094-29.187 34.585-180.289 15.259-321.88 166.478-321.88 350.731 0 194.406 157.596 352 351.999 352 194.406 0 352-157.594 352-352 0-17.674 14.33-32 32-32 17.674 0 32 14.326 32 32 0 229.75-186.25 416-416 416s-415.999-186.25-415.999-416c0-217.79 167.341-396.462 380.482-414.503 17.61-1.491 33.094 11.577 34.586 29.187z","M119.219 432.47c0-17.674 14.327-32 32-32h329.037c17.67 0 32 14.326 32 32 0 17.67-14.33 32-32 32h-329.037c-17.673 0-32-14.33-32-32z","M119.233 640c0-17.674 14.327-32 32-32h724.255c17.674 0 32 14.326 32 32s-14.326 32-32 32h-724.255c-17.673 0-32-14.326-32-32z","M504.81 121.090c11.117 13.739 8.992 33.888-4.749 45.005-8.666 7.012-18.886 20.139-29.238 40.961-10.179 20.471-19.61 46.603-27.635 77.587-16.042 61.955-25.837 140.879-25.837 227.356 0 103.555 14.038 195.981 35.85 261.411 10.96 32.88 23.306 57.181 35.462 72.605 12.438 15.786 21.024 17.978 24.688 17.978 3.667 0 12.253-2.192 24.691-17.978 12.157-15.424 24.502-39.725 35.462-72.605 21.808-65.43 35.846-157.856 35.846-261.411 0-17.674 14.33-32 32-32 17.674 0 32 14.326 32 32 0 108.522-14.614 208.096-39.133 281.648-12.202 36.608-27.437 68.544-45.91 91.984-18.186 23.078-43.274 42.362-74.957 42.362-31.68 0-56.768-19.283-74.957-42.362-18.47-23.44-33.706-55.376-45.91-91.984-24.515-73.552-39.133-173.126-39.133-281.648 0-90.915 10.256-175.338 27.882-243.4 8.81-34.025 19.619-64.572 32.282-90.038 12.49-25.115 27.712-47.185 46.288-62.217 13.741-11.117 33.888-8.992 45.008 4.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directory-error"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":7,"id":203,"name":"directory-error","prevSize":32,"code":59650},"setIdx":0,"setId":2,"iconIdx":10},{"icon":{"paths":["M542.65 96c80.093 0 154.902 22.636 218.374 61.859l-46.746 46.746c-24.739-13.843-51.322-24.785-79.286-32.368 12.166 22.395 23.078 49.095 32.406 79.249l-52 51.999c-5.654-22.994-12.17-44.005-19.347-62.666-12.822-33.339-26.522-55.927-38.474-69.070-8.397-9.235-13.43-11.291-14.928-11.698-1.498 0.407-6.531 2.463-14.928 11.698-11.952 13.143-25.654 35.731-38.477 69.070-16.298 42.377-29.174 96.867-36.336 159.18h65.974l-64 64h-7.114c-0.118 2.47-0.224 4.95-0.323 7.437l-64.538 64.538c-0.173-7.933-0.259-15.926-0.259-23.974 0-16.234 0.358-32.25 1.053-48h-189.809c-2.14 15.696-3.245 31.718-3.245 48 0 33.28 4.619 65.485 13.251 96h106.984l-64 64h-17.852c2.004 3.92 4.078 7.798 6.223 11.629l-46.746 46.749c-39.223-63.475-61.859-138.282-61.859-218.378 0-229.75 186.25-416 416.001-416zM896.79 293.623l-46.746 46.748c10.56 18.87 19.43 38.816 26.413 59.629h-86.045l-64 64h164.992c2.138 15.696 3.245 31.718 3.245 48 0 33.28-4.621 65.485-13.251 96h-183.030c2.8-30.816 4.282-62.957 4.282-96 0-8.045-0.090-16.042-0.262-23.974l-64.534 64.534c-0.752 19.008-2.026 37.523-3.766 55.44h-51.674l-64 64h107.088c-7.37 42.458-17.488 80.083-29.45 111.184-12.822 33.338-26.522 55.926-38.474 69.069-8.397 9.235-13.43 11.29-14.928 11.699-1.498-0.41-6.531-2.464-14.928-11.699-11.952-13.142-25.654-35.731-38.477-69.069-7.178-18.662-13.69-39.677-19.344-62.669l-52 51.997c9.325 30.154 20.237 56.854 32.403 79.251-27.965-7.584-54.547-18.525-79.286-32.368l-46.746 46.746c63.347 39.146 137.984 61.77 217.901 61.859h0.954c229.53-0.259 415.523-186.41 415.523-416 0-80.096-22.637-154.902-61.859-218.377zM450.307 172.237c-113.552 30.788-204.312 116.98-241.467 227.763h179.675c10-93.226 32.176-173.252 61.792-227.763zM634.995 851.763c24.394-44.902 43.741-107.117 55.392-179.763h165.878c-44.653 87.35-124.723 153.584-221.27 179.763zM856.022 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672.001 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672.001-672z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["federation-disabled"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":8,"id":201,"name":"federation-disabled","prevSize":32,"code":59651},"setIdx":0,"setId":2,"iconIdx":11},{"icon":{"paths":["M865.139 512c0 33.28-4.624 65.485-13.267 96h-183.274c2.803-30.816 4.288-62.957 4.288-96 0-16.234-0.358-32.25-1.056-48h190.061c2.141 15.696 3.248 31.718 3.248 48zM607.68 464c0.739 15.67 1.123 31.686 1.123 48 0 33.398-1.61 65.555-4.57 96h-183.117c-2.963-30.445-4.57-62.602-4.57-96 0-16.314 0.384-32.33 1.123-48h190.010zM667.014 400c-10.016-93.226-32.221-173.252-61.875-227.763 113.702 30.788 204.579 116.981 241.782 227.763h-179.907zM420.211 172.237c-29.654 54.51-51.862 134.537-61.875 227.763h-179.91c37.204-110.782 128.083-196.975 241.785-227.763zM422.816 400c7.171-62.314 20.064-116.804 36.384-159.18 12.842-33.339 26.56-55.927 38.528-69.070 8.406-9.235 13.446-11.291 14.947-11.698 1.501 0.407 6.541 2.463 14.947 11.698 11.968 13.143 25.686 35.731 38.525 69.070 16.32 42.377 29.216 96.867 36.387 159.18h-179.718zM353.52 464c-0.698 15.75-1.056 31.766-1.056 48 0 33.043 1.482 65.184 4.288 96h-183.275c-8.643-30.515-13.268-62.72-13.268-96 0-16.282 1.107-32.304 3.249-48h190.061zM364.742 672c11.667 72.646 31.040 134.861 55.466 179.763-96.678-26.179-176.854-92.413-221.565-179.763h166.1zM513.152 928c229.834-0.259 416.070-186.41 416.070-416 0-229.75-186.493-416-416.547-416s-416.55 186.25-416.55 416c0 229.59 186.237 415.741 416.070 416 0.16 0 0.32 0 0.48 0s0.32 0 0.477 0zM605.142 851.763c24.426-44.902 43.798-107.117 55.466-179.763h166.099c-44.71 87.35-124.89 153.584-221.565 179.763zM595.638 672c-7.379 42.458-17.514 80.083-29.491 111.184-12.838 33.338-26.557 55.926-38.525 69.069-8.406 9.235-13.446 11.29-14.947 11.699-1.501-0.41-6.541-2.464-14.947-11.699-11.968-13.142-25.686-35.731-38.528-69.069-11.978-31.101-22.109-68.726-29.488-111.184h165.926z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["federation"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":5,"id":200,"name":"federation","prevSize":32,"code":59652},"setIdx":0,"setId":2,"iconIdx":12},{"icon":{"paths":["M649.427 192c-26.454 0-52.016 10.804-71.005 30.343l-305.1 313.906c-31.48 32.387-49.322 76.506-49.322 122.694 0 46.186 17.842 90.304 49.322 122.694 31.451 32.355 73.91 50.362 117.984 50.362s86.531-18.006 117.981-50.362l305.101-313.907c12.317-12.672 32.576-12.96 45.248-0.643 12.675 12.317 12.963 32.576 0.646 45.251l-305.101 313.904c-43.302 44.554-102.23 69.757-163.875 69.757s-120.574-25.203-163.877-69.757c-43.273-44.522-67.428-104.717-67.428-167.299s24.155-122.781 67.428-167.302l305.1-313.905c30.845-31.735 72.874-49.737 116.899-49.737s86.054 18.002 116.899 49.737c30.816 31.704 47.971 74.514 47.971 118.968s-17.155 87.263-47.971 118.969l-305.43 313.904c-0.003 0.006 0.003-0.003 0 0-18.384 18.909-43.523 29.718-69.923 29.718-26.406 0-51.539-10.8-69.923-29.718-18.356-18.883-28.512-44.31-28.512-70.634 0-26.326 10.156-51.754 28.512-70.637l281.872-289.668c12.326-12.666 32.586-12.942 45.251-0.617s12.941 32.585 0.618 45.251l-281.846 289.638c-6.557 6.752-10.406 16.106-10.406 26.032 0 9.93 3.843 19.277 10.406 26.029 6.531 6.72 15.194 10.323 24.029 10.323s17.498-3.603 24.029-10.323l305.43-313.907c19.024-19.568 29.866-46.301 29.866-74.361 0-28.059-10.842-54.791-29.866-74.362-18.989-19.54-44.55-30.343-71.005-30.343z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["attach"],"defaultCode":59676,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":254,"name":"attach","prevSize":32,"id":0,"code":59676},"setIdx":0,"setId":2,"iconIdx":13},{"icon":{"paths":["M254.841 275.612l-13.972 14.271c-37.092 37.883-36.449 98.664 1.435 135.758l145.619 142.573c37.885 37.091 98.666 36.448 135.76-1.437l13.971-14.269c0.723-0.739 1.43-1.488 2.128-2.243l0.099 0.099c5.805-5.904 13.888-9.568 22.822-9.568 17.674 0 32 14.326 32 32 0 9.6-4.227 18.211-10.922 24.077l-0.397 0.41-13.974 14.269c-61.818 63.142-163.12 64.214-226.259 2.394l-145.622-142.576c-63.141-61.818-64.212-163.119-2.392-226.26l13.972-14.27c61.82-63.141 163.12-64.212 226.263-2.392l74.691 73.131c0.976 0.847 1.901 1.752 2.768 2.71l0.374 0.366-0.026 0.026c4.934 5.63 7.923 13.005 7.923 21.078 0 17.674-14.326 32-32 32-7.83 0-15.005-2.813-20.566-7.482l-0.106 0.109-77.834-76.206c-37.885-37.092-98.666-36.45-135.757 1.435zM790.566 768.003l13.971-14.269c37.091-37.885 36.448-98.666-1.437-135.757l-145.619-142.576c-37.885-37.091-98.666-36.448-135.757 1.437l-13.971 14.269c-0.723 0.739-1.434 1.488-2.128 2.243l-0.102-0.099c-5.805 5.907-13.885 9.568-22.822 9.568-17.67 0-32-14.326-32-32 0-9.6 4.227-18.211 10.922-24.077l0.4-0.406 13.971-14.272c61.821-63.142 163.12-64.211 226.262-2.39l145.619 142.573c63.142 61.821 64.211 163.12 2.394 226.262l-13.971 14.269c-61.821 63.142-163.123 64.211-226.262 2.394l-74.694-73.133c-0.976-0.845-1.901-1.75-2.768-2.71l-0.374-0.365 0.026-0.026c-4.931-5.629-7.923-13.005-7.923-21.078 0-17.674 14.326-32 32-32 7.83 0 15.005 2.813 20.566 7.482l0.106-0.109 77.837 76.208c37.885 37.091 98.662 36.448 135.757-1.437z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["link"],"defaultCode":59752,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":253,"name":"link","prevSize":32,"id":1,"code":59752},"setIdx":0,"setId":2,"iconIdx":14},{"icon":{"paths":["M512 896c-212.077 0-384-171.923-384-384s171.923-384 384-384c212.077 0 384 171.923 384 384s-171.923 384-384 384zM565.334 288c0-29.455-23.878-53.333-53.334-53.333s-53.334 23.878-53.334 53.333v249.632l180.016 144.013c23.002 18.403 56.563 14.672 74.963-8.326 18.403-23.002 14.672-56.563-8.326-74.963l-139.984-111.987v-198.368z"],"attrs":[{"fill":"rgb(243, 190, 8)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":3}]},"tags":["status-away"],"defaultCode":59741,"grid":0},"attrs":[{"fill":"rgb(243, 190, 8)"}],"properties":{"order":247,"name":"status-away","prevSize":32,"id":2,"code":59741},"setIdx":0,"setId":2,"iconIdx":15},{"icon":{"paths":["M512 896c-212.077 0-384-171.923-384-384s171.923-384 384-384c212.077 0 384 171.923 384 384s-171.923 384-384 384zM384 458.666c-29.456 0-53.334 23.875-53.334 53.331s23.878 53.334 53.334 53.334h256c29.456 0 53.334-23.878 53.334-53.334s-23.878-53.331-53.334-53.331h-256z"],"attrs":[{"fill":"rgb(245, 69, 92)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":6}]},"tags":["status-busy"],"defaultCode":59742,"grid":0},"attrs":[{"fill":"rgb(245, 69, 92)"}],"properties":{"order":248,"name":"status-busy","prevSize":32,"id":3,"code":59742},"setIdx":0,"setId":2,"iconIdx":16},{"icon":{"paths":["M888.691 586.941l-125.568-24.838c3.187-16.102 4.877-32.842 4.877-50.102s-1.69-34-4.877-50.102l125.568-24.838c4.794 24.237 7.309 49.296 7.309 74.941s-2.515 50.704-7.309 74.941zM831.322 298.644l-106.365 71.209c-18.726-27.971-42.838-52.083-70.81-70.81l71.21-106.364c41.875 28.035 77.93 64.089 105.965 105.965zM586.941 135.309l-24.838 125.566c-16.102-3.185-32.842-4.876-50.102-4.876s-34 1.69-50.102 4.876l-24.838-125.566c24.237-4.795 49.296-7.309 74.941-7.309s50.704 2.514 74.941 7.309zM298.644 192.679l71.209 106.364c-27.971 18.727-52.083 42.839-70.81 70.81l-106.364-71.209c28.035-41.876 64.089-77.93 105.965-105.964zM135.309 437.059c-4.795 24.237-7.309 49.296-7.309 74.941s2.514 50.704 7.309 74.941l125.566-24.838c-3.185-16.102-4.876-32.842-4.876-50.102s1.69-34 4.876-50.102l-125.566-24.838zM192.679 725.357l106.364-71.21c18.727 27.971 42.839 52.083 70.81 70.81l-71.209 106.365c-41.876-28.035-77.93-64.090-105.964-105.965zM437.059 888.691l24.838-125.568c16.102 3.187 32.842 4.877 50.102 4.877s34-1.69 50.102-4.877l24.838 125.568c-24.237 4.794-49.296 7.309-74.941 7.309s-50.704-2.515-74.941-7.309zM725.357 831.322l-71.21-106.365c27.971-18.726 52.083-42.838 70.81-70.81l106.365 71.21c-28.035 41.875-64.090 77.93-105.965 105.965z"],"attrs":[{"fill":"rgb(158, 162, 168)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":7}]},"tags":["status-loading"],"defaultCode":59743,"grid":0},"attrs":[{"fill":"rgb(158, 162, 168)"}],"properties":{"order":249,"name":"status-loading","prevSize":32,"id":4,"code":59743},"setIdx":0,"setId":2,"iconIdx":17},{"icon":{"paths":["M512 789.334c-153.168 0-277.333-124.166-277.333-277.334s124.165-277.333 277.333-277.333c153.168 0 277.334 124.165 277.334 277.333s-124.166 277.334-277.334 277.334zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384z"],"attrs":[{"fill":"rgb(158, 162, 168)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":7}]},"tags":["status-offline"],"defaultCode":59744,"grid":0},"attrs":[{"fill":"rgb(158, 162, 168)"}],"properties":{"order":250,"name":"status-offline","prevSize":32,"id":5,"code":59744},"setIdx":0,"setId":2,"iconIdx":18},{"icon":{"paths":["M896 512c0 212.077-171.923 384-384 384s-384-171.923-384-384c0-212.077 171.923-384 384-384s384 171.923 384 384z"],"attrs":[{"fill":"rgb(45, 224, 165)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":4}]},"tags":["status-online"],"defaultCode":59745,"grid":0},"attrs":[{"fill":"rgb(45, 224, 165)"}],"properties":{"order":251,"name":"status-online","prevSize":32,"id":6,"code":59745},"setIdx":0,"setId":2,"iconIdx":19},{"icon":{"paths":["M631.997 256h24v-56c0-57.437 46.563-104 104-104 57.44 0 104 46.562 104 104v56h24c17.674 0 32 14.327 32 32v192c0 17.674-14.326 32-32 32h-256c-17.67 0-32-14.326-32-32v-192c0-17.673 14.33-32 32-32zM759.997 160c-22.090 0-40 17.908-40 40v55.238h80v-55.238c0-22.092-17.907-40-40-40z","M527.997 224c10.096 0 19.882 1.336 29.184 3.84-13.251 16.46-21.184 37.383-21.184 60.16v0.664c-2.602-0.436-5.274-0.664-8-0.664-26.509 0-48 21.49-48 48s21.491 48 48 48c2.726 0 5.398-0.227 8-0.662v64.381c-2.64 0.186-5.309 0.282-8 0.282-61.856 0-112-50.144-112-112s50.144-112 112-112z","M492.941 500.282c14.883 5.709 30.883 7.283 46.355 4.758 6.182 22.938 20.646 42.474 39.987 55.206-35.123 13.318-74.019 13.309-109.261-0.208l-15.040-5.77c-12.838-4.925-27.104-4.589-39.699 0.931-19.008 8.333-31.286 27.12-31.286 47.872v132.928c0 17.674 14.33 32 32 32h224c17.674 0 32-14.326 32-32v-125.062c0-12.842-4.122-24.995-11.325-34.938h70.291c3.29 11.162 5.034 22.902 5.034 34.938v125.062c0 53.021-42.979 96-96 96h-224c-53.018 0-95.999-42.979-95.999-96v-132.928c0-46.163 27.311-87.955 69.592-106.49 28.019-12.278 59.747-13.024 88.31-2.067l15.040 5.766z","M887.997 576h-15.286v25.766c0 17.674-14.326 32-32 32h-72.714v64h72.714c53.021 0 96-42.979 96-96v-39.027c-14.278 8.426-30.931 13.261-48.714 13.261z","M281.182 416c53.020 0 95.999-42.979 95.999-96 0-53.019-42.979-96-95.999-96s-96 42.981-96 96c0 53.021 42.98 96 96 96zM281.182 352c-17.673 0-32-14.326-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32z","M625.267 640h-0.8c0.262 0.598 0.528 1.194 0.8 1.786v-1.786z","M357.59 464.582c2.531-1.107 5.091-2.122 7.674-3.043-17.907-5.155-37.011-4.832-54.823 1.018l-14.183 4.659c-14.887 4.893-30.998 4.554-45.668-0.954l-4.554-1.709c-21.067-7.91-44.203-8.394-65.581-1.37-40.565 13.325-67.986 51.197-67.986 93.894v44.688c0 53.021 42.98 96 96 96h79.53v-64h-79.53c-17.673 0-32-14.326-32-32v-44.688c0-15.050 9.664-28.394 23.96-33.091 7.534-2.474 15.688-2.304 23.112 0.483l4.554 1.709c21.238 7.974 44.041 10.333 66.238 7.027 10.398-30.173 32.992-55.357 63.258-68.624z","M423.914 640h0.797c-0.259 0.598-0.525 1.194-0.797 1.786v-1.786z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["teams-private"],"defaultCode":59750,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":252,"name":"teams-private","prevSize":32,"id":7,"code":59750},"setIdx":0,"setId":2,"iconIdx":20},{"icon":{"paths":["M368 182.4c0-17.673-14.326-32-32-32s-32 14.327-32 32v144h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v288h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v144c0 17.674 14.327 32 32 32s32-14.326 32-32v-144h288v144c0 17.674 14.326 32 32 32s32-14.326 32-32v-144h144c17.674 0 32-14.326 32-32s-14.326-32-32-32h-144v-80h-64v80h-288v-288h80v-64h-80v-144z","M640.515 327.283c-15.328-3.59-31.306-3.338-46.512 0.733-41.763 11.187-70.803 49.030-70.803 92.269v35.539c0 36.003 29.187 65.194 65.194 65.194h210.413c36.006 0 65.194-29.19 65.194-65.194v-28.336c0-47.667-33.040-88.957-79.27-99.792-16.413-3.846-33.613-3.603-49.946 0.771l-25.827 6.918c-10.381 2.781-21.286 2.95-31.747 0.499l-36.694-8.602z","M782.637 217.037c0 49.174-39.862 89.037-89.037 89.037s-89.037-39.863-89.037-89.037c0-49.174 39.862-89.037 89.037-89.037s89.037 39.863 89.037 89.037z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["channel-auto-join"],"defaultCode":59746,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":2,"name":"channel-auto-join","prevSize":32,"id":8,"code":59746},"setIdx":0,"setId":2,"iconIdx":21},{"icon":{"paths":["M236.709 162.578c11.779-5.037 25.426-2.564 34.688 6.286l150.709 144c6.32 6.037 9.894 14.396 9.894 23.136s-3.574 17.101-9.894 23.136l-150.709 144c-9.262 8.851-22.909 11.325-34.688 6.288s-19.419-16.614-19.419-29.424v-112h-73.29c-17.673 0-32-14.326-32-32 0-17.672 14.327-31.999 32-31.999h73.29v-112c0-12.81 7.64-24.386 19.419-29.423zM320 368.179v-0.179h0.189l-0.189 0.179zM320.189 304.001h-0.189v-0.179l0.189 0.179z","M492.899 303.258c8.762-9.388 21.245-15.258 35.101-15.258 26.509 0 48 21.49 48 48s-21.491 48-48 48c-16.582 0-31.203-8.41-39.824-21.197l-43.098 48.483c20.49 22.554 50.051 36.714 82.922 36.714 61.856 0 112-50.144 112-112s-50.144-112-112-112c-25.549 0-49.098 8.554-67.942 22.955l32.842 56.303z","M145.615 483.229l32.174 64.349c-0.861 3.040-1.318 6.23-1.318 9.501v44.688c0 17.674 14.327 32 32 32h79.53v64h-79.53c-53.019 0-96-42.979-96-96v-44.688c0-28.848 12.515-55.488 33.144-73.85z","M625.267 640h-0.797c0.259 0.598 0.525 1.194 0.797 1.786v-1.786z","M424.714 640h-0.797v1.786c0.272-0.592 0.538-1.187 0.797-1.786z","M477.901 494.515c-28.56-10.957-60.291-10.211-88.307 2.067-42.282 18.534-69.594 60.326-69.594 106.49v132.928c0 53.021 42.979 96 96 96h224c53.021 0 96-42.979 96-96v-125.062c0-51.162-31.536-97.034-79.306-115.354-30.352-11.642-64.067-10.851-93.84 2.198l-2.070 0.909c-21.523 9.434-45.901 10.006-67.843 1.59l-15.040-5.766zM415.286 555.2c12.595-5.52 26.858-5.856 39.699-0.931l15.040 5.77c37.664 14.445 79.504 13.462 116.451-2.73l2.070-0.909c14.349-6.288 30.602-6.669 45.229-1.059 23.024 8.829 38.224 30.938 38.224 55.597v125.062c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32v-132.928c0-20.752 12.278-39.539 31.286-47.872z","M864 320c0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96s96-42.979 96-96zM800 320c0 17.674-14.326 32-32 32s-32-14.326-32-32c0-17.673 14.326-32 32-32s32 14.327 32 32z","M840.714 697.766h-72.714v-64h72.714c17.674 0 32-14.326 32-32v-44.688c0-15.050-9.664-28.394-23.958-33.091-7.536-2.474-15.69-2.304-23.114 0.483l-4.554 1.709c-19.77 7.421-40.89 9.978-61.619 7.632-12.438-31.683-37.722-57.549-70.774-70.227-1.754-0.672-3.52-1.302-5.296-1.894 18.058-5.312 37.36-5.040 55.344 0.867l14.182 4.659c14.886 4.893 30.998 4.554 45.667-0.954l4.554-1.709c21.069-7.91 44.205-8.394 65.581-1.37 40.566 13.325 67.987 51.197 67.987 93.894v44.688c0 53.021-42.982 96-96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["channel-move-to-team"],"defaultCode":59747,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":3,"name":"channel-move-to-team","prevSize":32,"id":9,"code":59747},"setIdx":0,"setId":2,"iconIdx":22},{"icon":{"paths":["M512 128c-97.203 0-176 78.798-176 176v142.477h-16c-53.020 0-96 42.979-96 96v257.523c0 53.021 42.981 96 96 96h384c53.021 0 96-42.979 96-96v-257.523c0-53.021-42.979-96-96-96h-16v-142.477c0-97.202-78.797-176-176-176zM624 304v142.477h-224v-142.477c0-61.856 50.144-112 112-112s112 50.144 112 112z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["lock-filled"],"defaultCode":59748,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":4,"name":"lock-filled","prevSize":32,"id":10,"code":59748},"setIdx":0,"setId":2,"iconIdx":23},{"icon":{"paths":["M336 304c0-97.202 78.797-176 176-176s176 78.798 176 176v142.477h16c53.021 0 96 42.979 96 96v257.523c0 53.021-42.979 96-96 96h-384c-53.019 0-96-42.979-96-96v-257.523c0-53.021 42.981-96 96-96h16v-142.477zM400 446.477h224v-142.477c0-61.856-50.144-112-112-112s-112 50.144-112 112v142.477zM320 510.477c-17.673 0-32 14.326-32 32v257.523c0 17.674 14.327 32 32 32h384c17.674 0 32-14.326 32-32v-257.523c0-17.674-14.326-32-32-32h-384z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["locker"],"defaultCode":59749,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":5,"name":"locker","prevSize":32,"id":11,"code":59749},"setIdx":0,"setId":2,"iconIdx":24},{"icon":{"paths":["M281.184 336c17.673 0 32-14.326 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM281.184 400c-53.020 0-96-42.979-96-96 0-53.019 42.98-96 96-96 53.018 0 96 42.981 96 96 0 53.021-42.982 96-96 96zM576 320c0-26.51-21.491-48-48-48s-48 21.49-48 48c0 26.509 21.491 48 48 48s48-21.491 48-48zM640 320c0 61.856-50.144 112-112 112s-112-50.144-112-112c0-61.856 50.144-112 112-112s112 50.144 112 112zM477.901 478.515c-28.56-10.957-60.291-10.211-88.307 2.067-42.282 18.534-69.594 60.326-69.594 106.49v132.928c0 53.021 42.979 96 96 96h224c53.021 0 96-42.979 96-96v-125.062c0-51.162-31.536-97.034-79.306-115.354-30.352-11.642-64.067-10.851-93.84 2.198l-2.070 0.909c-21.523 9.434-45.901 10.006-67.843 1.59l-15.040-5.766zM415.286 539.2c12.595-5.52 26.858-5.856 39.699-0.931l15.040 5.77c37.664 14.445 79.504 13.462 116.451-2.73l2.070-0.909c14.349-6.288 30.602-6.669 45.229-1.059 23.024 8.829 38.224 30.938 38.224 55.597v125.062c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32v-132.928c0-20.752 12.278-39.539 31.286-47.872zM768 336c-17.674 0-32-14.326-32-32s14.326-32 32-32c17.674 0 32 14.327 32 32s-14.326 32-32 32zM768 400c53.021 0 96-42.979 96-96 0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96zM840.714 681.766h-72.714v-64h72.714c17.674 0 32-14.326 32-32v-44.688c0-15.050-9.664-28.394-23.958-33.091-7.536-2.474-15.69-2.304-23.114 0.483l-4.554 1.709c-19.77 7.421-40.89 9.978-61.619 7.632-12.438-31.683-37.722-57.549-70.774-70.227-1.754-0.672-3.52-1.302-5.296-1.894 18.058-5.312 37.36-5.040 55.344 0.867l14.182 4.659c14.886 4.893 30.998 4.554 45.667-0.954l4.554-1.709c21.069-7.91 44.205-8.394 65.581-1.37 40.566 13.325 67.987 51.197 67.987 93.894v44.688c0 53.021-42.982 96-96 96zM625.267 624h-0.797c0.259 0.598 0.525 1.194 0.797 1.786v-1.786zM357.594 448.582c2.528-1.107 5.088-2.122 7.674-3.043-17.907-5.155-37.014-4.832-54.824 1.018l-14.183 4.659c-14.887 4.893-30.998 4.554-45.668-0.954l-4.554-1.709c-21.067-7.91-44.203-8.394-65.581-1.37-40.565 13.325-67.986 51.197-67.986 93.894v44.688c0 53.021 42.981 96 96 96h79.53v-64h-79.53c-17.673 0-32-14.326-32-32v-44.688c0-15.050 9.664-28.394 23.96-33.091 7.534-2.474 15.688-2.304 23.112 0.483l4.554 1.709c21.238 7.974 44.041 10.333 66.238 7.027 10.398-30.173 32.994-55.357 63.259-68.624zM423.917 624h0.797c-0.259 0.598-0.525 1.194-0.797 1.786v-1.786z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["teams"],"defaultCode":59751,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":7,"name":"teams","prevSize":32,"id":12,"code":59751},"setIdx":0,"setId":2,"iconIdx":25},{"icon":{"paths":["M502.627 142.69c12.915-3.408 26.509-3.289 39.363 0.345l245.194 69.317c29.165 8.245 51.254 33.818 53.504 65.14 24.506 341.145-184.394 520.422-272.611 580.214-33.053 22.403-75.28 22.474-108.416 0.259-88.758-59.504-300.1-238.589-276.51-579.794 2.205-31.89 24.96-57.772 54.753-65.633l264.724-69.849zM524.579 204.621c-1.837-0.519-3.779-0.536-5.622-0.049l-264.725 69.849c-4.4 1.161-6.999 4.775-7.233 8.165-21.305 308.166 168.214 468.531 248.301 522.218 11.507 7.715 25.434 7.677 36.87-0.077 79.379-53.798 266.835-214.288 244.685-522.649-0.243-3.358-2.787-6.925-7.082-8.139l-245.194-69.317z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["set-as-moderator"],"defaultCode":59661,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":245,"name":"shield","prevSize":32,"id":13,"code":59661},"setIdx":0,"setId":2,"iconIdx":26},{"icon":{"paths":["M864 512c0-86.89-31.482-166.429-83.664-227.826l-496.162 496.162c61.397 52.182 140.937 83.664 227.826 83.664 194.403 0 352-157.597 352-352zM239.349 734.65l495.3-495.3c-60.662-49.597-138.182-79.349-222.65-79.349-194.404 0-352 157.596-352 352 0 84.467 29.753 161.987 79.349 222.65zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["ignore"],"defaultCode":59740,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":246,"name":"ignore","prevSize":32,"id":14,"code":59740},"setIdx":0,"setId":2,"iconIdx":27},{"icon":{"paths":["M819.2 204.8v614.4h-614.4v-614.4h614.4zM204.8 128c-42.415 0-76.8 34.385-76.8 76.8v614.4c0 42.416 34.385 76.8 76.8 76.8h614.4c42.416 0 76.8-34.384 76.8-76.8v-614.4c0-42.415-34.384-76.8-76.8-76.8h-614.4z"],"attrs":[{"fill":"rgb(203, 206, 209)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":8}]},"tags":["checkbox-unchecked"],"defaultCode":59648,"grid":0},"attrs":[{"fill":"rgb(203, 206, 209)"}],"properties":{"order":242,"name":"checkbox-unchecked","prevSize":32,"id":15,"code":59653},"setIdx":0,"setId":2,"iconIdx":28},{"icon":{"paths":["M204.8 128h614.4c42.416 0 76.8 34.385 76.8 76.8v614.4c0 42.416-34.384 76.8-76.8 76.8h-614.4c-42.415 0-76.8-34.384-76.8-76.8v-614.4c0-42.415 34.385-76.8 76.8-76.8zM769.062 336.88c9.322-9.424 9.238-24.619-0.182-33.941-9.424-9.322-24.621-9.241-33.942 0.182l-339.085 342.745-106.782-108.051c-9.317-9.43-24.513-9.52-33.94-0.202s-9.518 24.512-0.201 33.939l123.842 125.318c4.509 4.56 10.653 7.126 17.066 7.13s12.557-2.563 17.069-7.12l356.157-360z"],"attrs":[{"fill":"rgb(29, 116, 245)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":5}]},"tags":["checkbox-checked"],"defaultCode":59649,"grid":0},"attrs":[{"fill":"rgb(29, 116, 245)"}],"properties":{"order":243,"name":"checkbox-checked","prevSize":32,"id":16,"code":59654},"setIdx":0,"setId":2,"iconIdx":29},{"icon":{"paths":["M862.454 324.045c-35.2-60.31-82.944-108.057-143.248-143.253-60.314-35.198-126.16-52.792-197.581-52.792-71.414 0-137.28 17.6-197.581 52.792-60.31 35.194-108.053 82.943-143.253 143.253-35.194 60.307-52.792 126.166-52.792 197.571 0 85.77 25.024 162.899 75.086 231.405 50.056 68.509 114.721 115.917 193.989 142.224 9.229 1.712 16.058 0.509 20.499-3.584 4.442-4.096 6.662-9.226 6.662-15.37 0-1.024-0.090-10.246-0.259-27.674-0.176-17.43-0.259-32.637-0.259-45.61l-11.789 2.038c-7.517 1.379-16.998 1.962-28.445 1.795-11.443-0.16-23.322-1.357-35.619-3.587-12.304-2.211-23.747-7.334-34.342-15.366-10.588-8.029-18.104-18.538-22.547-31.514l-5.125-11.795c-3.416-7.853-8.795-16.573-16.142-26.134-7.348-9.571-14.778-16.058-22.294-19.475l-3.588-2.57c-2.391-1.706-4.61-3.766-6.662-6.154-2.050-2.39-3.585-4.781-4.61-7.174-1.027-2.397-0.176-4.365 2.562-5.907 2.738-1.539 7.685-2.288 14.864-2.288l10.247 1.53c6.834 1.37 15.287 5.462 25.371 12.298 10.078 6.835 18.363 15.715 24.856 26.646 7.863 14.013 17.335 24.688 28.445 32.038 11.101 7.347 22.294 11.014 33.568 11.014s21.011-0.854 29.216-2.557c8.192-1.709 15.882-4.275 23.062-7.69 3.075-22.902 11.446-40.499 25.11-52.797-19.475-2.045-36.982-5.13-52.534-9.226-15.542-4.106-31.603-10.765-48.173-20-16.579-9.222-30.331-20.672-41.262-34.333-10.932-13.67-19.905-31.613-26.904-53.818-7.003-22.214-10.505-47.837-10.505-76.88 0-41.35 13.5-76.541 40.493-105.584-12.645-31.088-11.451-65.939 3.585-104.55 9.908-3.079 24.606-0.768 44.078 6.916 19.478 7.689 33.738 14.275 42.797 19.736 9.059 5.46 16.317 10.087 21.786 13.837 31.782-8.88 64.582-13.322 98.406-13.322s66.63 4.442 98.416 13.322l19.475-12.295c13.318-8.204 29.046-15.722 47.142-22.556 18.112-6.83 31.958-8.712 41.53-5.633 15.37 38.612 16.739 73.46 4.093 104.548 26.992 29.046 40.496 64.243 40.496 105.587 0 29.043-3.514 54.746-10.506 77.13-7.002 22.387-16.051 40.314-27.152 53.818-11.114 13.501-24.957 24.864-41.526 34.083-16.573 9.226-32.637 15.888-48.179 19.99-15.552 4.102-33.059 7.187-52.534 9.238 17.763 15.37 26.646 39.632 26.646 72.774v108.134c0 6.141 2.134 11.27 6.41 15.37 4.272 4.090 11.018 5.296 20.243 3.581 79.28-26.304 143.946-73.712 194-142.224 50.048-68.502 75.082-145.632 75.082-231.405-0.019-71.395-17.626-137.248-52.803-197.555z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["github-monochromatic"],"defaultCode":59650,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":152,"name":"github-monochromatic","prevSize":32,"id":17,"code":59655},"setIdx":0,"setId":2,"iconIdx":30},{"icon":{"paths":["M133.618 423.61h215.092l-92.537-284.607c-4.74-14.67-25.504-14.67-30.244 0l-92.311 284.607zM86.899 567.171l46.72-143.546h737.133l46.72 143.546c4.288 13.088-0.451 27.533-11.51 35.434l-403.776 293.408-403.776-293.408c-11.060-7.901-15.799-22.346-11.511-35.434zM655.661 423.61h215.091l-92.31-284.607c-4.739-14.67-25.504-14.67-30.243 0l-92.538 284.607z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["gitlab-monochromatic"],"defaultCode":59651,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":153,"name":"gitlab-monochromatic","prevSize":32,"id":18,"code":59656},"setIdx":0,"setId":2,"iconIdx":31},{"icon":{"paths":["M658.794 338.154c-39.798-38.052-90.416-57.426-146.794-57.426-100.016 0-184.669 67.548-214.865 158.313l-0.002-0.003c-7.679 23.040-12.042 47.648-12.042 72.957s4.364 49.92 12.044 72.96l0 0.003c30.196 90.765 114.849 158.314 214.865 158.314 51.664 0 95.651-13.613 130.035-36.653v-0.016c40.669-27.229 67.725-67.898 76.627-115.898h-206.662v-148.538h361.658c4.538 25.136 6.982 51.315 6.982 78.547 0 116.944-41.891 215.389-114.502 282.24v0.013c-63.533 58.646-150.458 93.030-254.138 93.030-150.109 0-279.971-86.048-343.156-211.549l-0-0.003c-26.007-51.84-40.844-110.49-40.844-172.451 0-61.965 14.836-120.611 40.844-172.451h0.004c63.187-125.495 193.047-211.542 343.153-211.542 103.504 0 190.429 38.051 256.931 100.014l-110.138 110.139z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["google-monochromatic"],"defaultCode":59652,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":154,"name":"google-monochromatic","prevSize":32,"id":19,"code":59657},"setIdx":0,"setId":2,"iconIdx":32},{"icon":{"paths":["M840.541 128c31.318 0 56.813 24.79 56.813 55.383v657.212c0 30.592-25.494 55.427-56.813 55.427h-654.546c-31.254 0-56.642-24.835-56.642-55.427v-657.212c0-30.593 25.387-55.383 56.642-55.383h654.546zM300.196 233.75c-36.588 0-66.093 29.59-66.093 66.050 0 36.482 29.505 66.072 66.093 66.072 36.437 0 66.005-29.59 66.005-66.072 0-36.46-29.568-66.050-66.005-66.050zM243.148 782.461h114.029v-366.515h-114.029v366.515zM537.814 415.923h-109.187v366.515h113.773v-181.274c0-47.83 9.046-94.147 68.333-94.147 58.454 0 59.181 54.678 59.181 97.174v178.246h113.901v-201.008c0-98.714-21.312-174.598-136.666-174.598-55.402 0-92.566 30.381-107.757 59.203h-1.578v-50.112z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["linkedin-monochromatic"],"defaultCode":59653,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":155,"name":"linkedin-monochromatic","prevSize":32,"id":20,"code":59658},"setIdx":0,"setId":2,"iconIdx":33},{"icon":{"paths":["M86.686 85.336l730.792 774.088c0 0 24.899 17.558 43.936-2.928 19.040-20.486 4.394-40.973 4.394-40.973l-779.122-730.187zM318.080 158.503l556.516 599.955c0 0 24.896 17.558 43.936-2.928 19.037-20.486 4.394-40.973 4.394-40.973l-604.845-556.054zM712.035 915.030l-556.517-599.955 604.843 556.054c0 0 14.646 20.486-4.39 40.973-19.040 20.486-43.936 2.928-43.936 2.928zM513.693 221.419l388.803 419.15c0 0 17.395 12.269 30.694-2.042 13.302-14.314 3.069-28.627 3.069-28.627l-422.566-388.482zM597.878 915.677l-388.805-419.152 422.568 388.48c0 0 10.234 14.314-3.069 28.627-13.302 14.31-30.694 2.045-30.694 2.045zM713.498 312.143l176.221 190.551c0 0 8.605 5.747 15.184-0.96 6.579-6.704 1.517-13.411 1.517-13.411l-192.922-176.18zM482.582 880.23l-176.219-190.55 192.923 176.179c0 0 5.059 6.707-1.52 13.414-6.579 6.704-15.184 0.957-15.184 0.957z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["meteor-monochromatic"],"defaultCode":59654,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":156,"name":"meteor-monochromatic","prevSize":32,"id":21,"code":59659},"setIdx":0,"setId":2,"iconIdx":34},{"icon":{"paths":["M378.861 853.331c317.456 0 491.091-262.662 491.091-490.442 0-7.462 0-14.89-0.506-22.282 33.779-24.401 62.938-54.614 86.112-89.224-31.501 13.94-64.918 23.082-99.136 27.12 36.032-21.542 62.998-55.424 75.882-95.34-33.878 20.078-70.944 34.228-109.597 41.839-53.501-56.814-138.515-70.72-207.37-33.919-68.851 36.801-104.426 115.155-86.768 191.127-138.774-6.947-268.074-72.409-355.715-180.093-45.811 78.76-22.412 179.517 53.436 230.1-27.467-0.813-54.335-8.214-78.337-21.574 0 0.704 0 1.443 0 2.182 0.022 82.051 57.937 152.723 138.47 168.97-25.41 6.922-52.071 7.933-77.933 2.957 22.611 70.218 87.409 118.32 161.25 119.706-61.116 47.968-136.616 74.010-214.35 73.933-13.732-0.026-27.452-0.858-41.087-2.486 78.931 50.586 170.772 77.418 264.557 77.293z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["twitter-monochromatic"],"defaultCode":59655,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":157,"name":"twitter-monochromatic","prevSize":32,"id":22,"code":59660},"setIdx":0,"setId":2,"iconIdx":35},{"icon":{"paths":["M512 928c-14.218 0-28.275-0.714-42.144-2.112-16.694-1.68-30.557-12.528-36.688-27.395l-40.538-98.304-98.162 40.838c-14.837 6.173-32.3 4.048-45.292-6.554-21.838-17.818-41.831-37.811-59.65-59.648-10.601-12.992-12.726-30.454-6.553-45.293l40.839-98.16-98.307-40.541c-14.864-6.131-25.714-19.994-27.395-36.688-1.396-13.869-2.111-27.926-2.111-42.144 0-14.214 0.714-28.275 2.11-42.141 1.681-16.694 12.531-30.557 27.395-36.688l98.308-40.541-40.84-98.163c-6.173-14.837-4.047-32.3 6.553-45.292 17.818-21.838 37.81-41.83 59.648-59.648 12.992-10.6 30.455-12.726 45.292-6.553l98.165 40.84 40.541-98.309c6.128-14.865 19.994-25.714 36.688-27.395 13.866-1.396 27.926-2.11 42.141-2.11s28.275 0.714 42.141 2.11c16.694 1.681 30.56 12.531 36.688 27.395l40.541 98.309 98.163-40.84c14.838-6.173 32.301-4.047 45.293 6.553 21.837 17.818 41.83 37.81 59.648 59.648 10.602 12.992 12.726 30.455 6.554 45.292l-40.842 98.163 98.31 40.541c14.864 6.131 25.712 19.994 27.392 36.688 1.398 13.866 2.112 27.926 2.112 42.141 0 14.218-0.714 28.275-2.112 42.144-1.68 16.694-12.528 30.557-27.395 36.688l-98.307 40.541 40.842 98.16c6.173 14.838 4.045 32.301-6.554 45.293-17.821 21.837-37.811 41.83-59.651 59.648-12.992 10.602-30.454 12.726-45.29 6.554l-98.163-40.838-40.538 98.304c-6.131 14.867-19.994 25.715-36.688 27.395-13.869 1.398-27.93 2.112-42.144 2.112zM444.451 757.984l43.386 105.2c7.981 0.541 16.038 0.816 24.163 0.816s16.182-0.275 24.163-0.816l43.382-105.2c9.456-22.925 35.731-33.808 58.627-24.285l105.056 43.709c12.157-10.602 23.578-22.022 34.179-34.179l-43.709-105.056c-9.526-22.893 1.36-49.171 24.282-58.624l105.203-43.386c0.541-7.978 0.816-16.038 0.816-24.163s-0.275-16.182-0.816-24.16l-105.203-43.386c-22.922-9.453-33.808-35.731-24.282-58.624l43.709-105.060c-10.602-12.156-22.022-23.577-34.176-34.177l-105.059 43.708c-22.896 9.525-49.171-1.359-58.627-24.283l-43.382-105.204c-7.981-0.54-16.038-0.815-24.163-0.815s-16.182 0.275-24.163 0.815l-43.386 105.204c-9.453 22.924-35.728 33.808-58.624 24.283l-105.058-43.708c-12.156 10.6-23.577 22.021-34.177 34.177l43.708 105.059c9.525 22.893-1.359 49.171-24.284 58.624l-105.203 43.386c-0.54 7.978-0.815 16.035-0.815 24.16 0 8.128 0.275 16.186 0.815 24.163l105.203 43.386c22.924 9.453 33.809 35.731 24.284 58.624l-43.708 105.056c10.601 12.157 22.022 23.578 34.178 34.179l105.056-43.709c22.896-9.523 49.171 1.36 58.624 24.285zM416 512c0-53.021 42.979-96 96-96s96 42.979 96 96c0 53.021-42.979 96-96 96s-96-42.979-96-96zM512 352c-88.365 0-160 71.635-160 160s71.635 160 160 160c88.365 0 160-71.635 160-160s-71.635-160-160-160z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["administration"],"defaultCode":59657,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":159,"name":"administration","prevSize":32,"id":23,"code":59662},"setIdx":0,"setId":2,"iconIdx":36},{"icon":{"paths":["M878.739 567.622c-41.853-41.136-161.235-29.824-220.925-22.282-59.005-35.997-98.458-85.706-126.243-158.73 13.379-55.194 34.646-139.185 18.525-191.98-14.41-89.82-129.674-80.907-146.141-20.227-15.094 55.195-1.373 131.988 24.013 230.034-34.304 81.936-85.421 191.984-121.441 255.062-68.611 35.312-161.235 89.821-174.957 158.384-11.321 54.166 89.194 189.238 261.063-106.96 76.845-25.37 160.547-56.566 234.65-68.909 64.835 34.97 140.65 58.282 191.421 58.282 87.478 0 96.054-96.678 60.035-132.675zM199.152 834.342c17.496-46.97 84.048-101.133 104.288-119.99-65.18 103.875-104.288 122.39-104.288 119.99zM479.082 180.918c25.386 0 22.986 110.047 6.176 139.873-15.094-47.653-14.752-139.873-6.176-139.873zM395.379 649.216c33.274-57.936 61.747-126.845 84.733-187.526 28.474 51.766 64.838 93.251 103.258 121.706-71.354 14.739-133.446 44.909-187.99 65.821zM846.835 632.074c0 0-17.152 20.57-127.958-26.739 120.413-8.912 140.307 18.512 127.958 26.739z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["adobe-reader-monochromatic"],"defaultCode":59658,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":161,"name":"adobe-reader-monochromatic","prevSize":32,"id":24,"code":59663},"setIdx":0,"setId":2,"iconIdx":37},{"icon":{"paths":["M448 188.865c0 33.615 27.251 60.865 60.864 60.865 33.616 0 60.867-27.25 60.867-60.865s-27.251-60.865-60.867-60.865c-33.613 0-60.864 27.25-60.864 60.865zM384 188.865c0 59.026 40.957 108.485 96 121.512v77.745c-44.314 11.69-78.986 47.13-89.578 91.878h-80.045c-13.027-55.043-62.486-96-121.512-96-68.961 0-124.865 55.904-124.865 124.864 0 68.963 55.904 124.867 124.865 124.867 56.762 0 104.678-37.875 119.854-89.731h83.361c12.227 41.773 45.696 74.47 87.92 85.61v77.744c-55.043 13.027-96 62.486-96 121.51 0 68.963 55.904 124.867 124.864 124.867 68.963 0 124.867-55.904 124.867-124.867 0-56.762-37.875-104.675-89.731-119.853v-79.437c42.163-11.171 75.578-43.846 87.789-85.574h77.222c15.178 51.856 63.091 89.731 119.853 89.731 68.963 0 124.867-55.904 124.867-124.867 0-68.96-55.904-124.864-124.867-124.864-59.024 0-108.483 40.957-121.51 96h-73.907c-10.579-44.707-45.194-80.122-89.446-91.843v-79.438c51.856-15.176 89.731-63.092 89.731-119.854 0-68.961-55.904-124.865-124.867-124.865-68.96 0-124.864 55.904-124.864 124.865zM828.864 569.731c-33.613 0-60.864-27.251-60.864-60.867 0-33.613 27.251-60.864 60.864-60.864 33.616 0 60.867 27.251 60.867 60.864 0 33.616-27.251 60.867-60.867 60.867zM188.865 569.731c-33.615 0-60.865-27.251-60.865-60.867 0-33.613 27.25-60.864 60.865-60.864s60.865 27.251 60.865 60.864c0 33.616-27.25 60.867-60.865 60.867zM451.069 508.864c0 33.616 27.251 60.867 60.867 60.867 33.613 0 60.864-27.251 60.864-60.867 0-33.613-27.251-60.864-60.864-60.864-33.616 0-60.867 27.251-60.867 60.864zM508.864 889.731c-33.613 0-60.864-27.251-60.864-60.867 0-33.613 27.251-60.864 60.864-60.864 33.616 0 60.867 27.251 60.867 60.864 0 33.616-27.251 60.867-60.867 60.867z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["all-contacts-in-channels"],"defaultCode":59659,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":162,"name":"all-contacts-in-channels","prevSize":32,"id":25,"code":59664},"setIdx":0,"setId":2,"iconIdx":38},{"icon":{"paths":["M861.437 160c17.67 0 32 14.327 32 32s-14.33 32-32 32h-384c-17.674 0-32-14.327-32-32s14.326-32 32-32h384zM334.717 442.397c-24.962 0-45.197-20.237-45.197-45.2 0-24.96 20.236-45.197 45.197-45.197 24.963 0 45.2 20.237 45.2 45.197 0 24.963-20.237 45.2-45.2 45.2zM334.717 506.397c-60.308 0-109.197-48.89-109.197-109.2 0-60.307 48.89-109.197 109.197-109.197 60.31 0 109.2 48.89 109.2 109.197 0 60.31-48.89 109.2-109.2 109.2zM456.278 535.504c-18.288-4.899-37.504-5.2-55.939-0.88l-45.005 10.547c-13.194 3.091-26.947 2.877-40.036-0.63l-31.676-8.483c-19.669-5.27-40.384-5.562-60.154-0.928-55.68 13.050-95.468 62.781-95.468 120.179v34.752c0 42.906 34.783 77.686 77.689 77.686h258.057c42.906 0 77.69-34.781 77.69-77.686v-43.587c0-52-34.928-97.514-85.158-110.97zM414.944 596.934c8.166-1.914 16.675-1.779 24.774 0.39 22.246 5.958 37.718 26.118 37.718 49.149v43.587c0 7.558-6.131 13.686-13.69 13.686h-258.057c-7.56 0-13.689-6.128-13.689-13.686v-34.752c0-27.469 19.123-51.552 46.072-57.869 9.556-2.24 19.564-2.086 28.99 0.438l31.676 8.483c23.277 6.237 47.738 6.621 71.2 1.12l45.005-10.547zM893.437 512c0-17.674-14.33-32-32-32h-224c-17.674 0-32 14.326-32 32s14.326 32 32 32h224c17.67 0 32-14.326 32-32zM861.437 640c17.67 0 32 14.326 32 32s-14.33 32-32 32h-192c-17.674 0-32-14.326-32-32s14.326-32 32-32h192zM893.437 352c0-17.674-14.33-32-32-32h-288c-17.674 0-32 14.326-32 32s14.326 32 32 32h288c17.67 0 32-14.326 32-32zM861.437 800c17.67 0 32 14.326 32 32s-14.33 32-32 32h-256c-17.674 0-32-14.326-32-32s14.326-32 32-32h256z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["all-contacts-in-queue"],"defaultCode":59660,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":163,"name":"all-contacts-in-queue","prevSize":32,"id":26,"code":59665},"setIdx":0,"setId":2,"iconIdx":39},{"icon":{"paths":["M523.571 295.385c33.133 0 74.669-22.133 99.402-51.645 22.4-26.745 38.733-64.095 38.733-101.445 0-5.072-0.467-10.144-1.402-14.294-36.864 1.383-81.2 24.439-107.798 55.334-21.002 23.517-40.134 60.406-40.134 98.218 0 5.533 0.934 11.067 1.402 12.911 2.333 0.461 6.067 0.922 9.798 0.922zM406.906 853.334c45.267 0 65.334-29.974 121.798-29.974 57.402 0 70 29.050 120.4 29.050 49.469 0 82.602-45.187 113.869-89.456 34.998-50.72 49.466-100.522 50.4-102.829-3.267-0.922-98-39.194-98-146.634 0-93.146 74.666-135.107 78.867-138.333-49.469-70.090-124.602-71.935-145.136-71.935-55.533 0-100.8 33.199-129.264 33.199-30.8 0-71.402-31.354-119.469-31.354-91.466 0-184.333 74.701-184.333 215.802 0 87.61 34.533 180.294 77 240.24 36.402 50.723 68.133 92.224 113.867 92.224z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["apple-monochromatic"],"defaultCode":59662,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":236,"name":"apple-monochromatic","prevSize":32,"id":27,"code":59666},"setIdx":0,"setId":2,"iconIdx":40},{"icon":{"paths":["M498.694 141.561l-298.666 136.533c-11.39 5.207-18.696 16.58-18.696 29.103v386.844c0 11.818 6.513 22.675 16.941 28.237l298.667 159.286c9.411 5.021 20.707 5.021 30.118 0l298.666-159.286c10.429-5.562 16.941-16.419 16.941-28.237v-386.844c0-12.524-7.306-23.896-18.694-29.103l-298.666-136.533c-8.451-3.862-18.16-3.862-26.611 0zM245.333 357.011l234.667 107.277v335.709l-234.667-125.155v-317.83zM544 799.997l234.666-125.155v-317.83l-234.666 107.277v335.709zM512 408.544l-221.7-101.347 221.7-101.348 221.699 101.348-221.699 101.347z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["apps"],"defaultCode":59663,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":166,"name":"apps","prevSize":32,"id":28,"code":59667},"setIdx":0,"setId":2,"iconIdx":41},{"icon":{"paths":["M374.627 297.372c-12.496-12.497-32.758-12.497-45.254 0l-192 192c-12.497 12.496-12.497 32.758 0 45.254l192 192c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-137.372-137.373h578.745v128c0 17.674 14.326 32 32 32s32-14.326 32-32v-160c0-17.674-14.326-32-32-32h-610.745l137.372-137.373c12.496-12.496 12.496-32.758 0-45.255z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-back"],"defaultCode":59664,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":167,"name":"arrow-back","prevSize":32,"id":29,"code":59668},"setIdx":0,"setId":2,"iconIdx":42},{"icon":{"paths":["M551.392 242.502c0.189-17.672 14.669-31.845 32.339-31.656 17.674 0.189 31.846 14.668 31.658 32.34l-1.318 123.489 193.44-193.439c12.496-12.497 32.755-12.497 45.254 0 12.496 12.497 12.496 32.758 0 45.255l-193.44 193.439 123.488-1.318c17.674-0.189 32.154 13.984 32.339 31.654 0.189 17.674-13.984 32.154-31.654 32.342l-201.92 2.154c-8.605 0.093-16.886-3.283-22.97-9.37-6.086-6.083-9.462-14.365-9.373-22.97l2.157-201.92zM475.981 782.147c-0.189 17.674-14.669 31.846-32.339 31.658-17.674-0.189-31.846-14.669-31.658-32.342l1.318-123.488-193.438 193.44c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l193.438-193.44-123.488 1.318c-17.672 0.189-32.151-13.984-32.34-31.654-0.189-17.674 13.984-32.154 31.656-32.342l201.922-2.154c8.605-0.093 16.883 3.283 22.966 9.37 6.086 6.083 9.462 14.365 9.373 22.97l-2.157 201.92z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-collapse"],"defaultCode":59665,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":168,"name":"arrow-collapse","prevSize":32,"id":30,"code":59669},"setIdx":0,"setId":2,"iconIdx":43},{"icon":{"paths":["M576 672c-17.674 0-32 14.326-32 32s14.326 32 32 32h224c17.674 0 32-14.326 32-32v-208c0-17.674-14.326-32-32-32s-32 14.326-32 32v130.746l-233.373-233.373c-12.496-12.496-32.758-12.496-45.254 0l-73.373 73.373-169.372-169.373c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.759 0 45.255l192 192c12.496 12.496 32.758 12.496 45.254 0l73.373-73.373 210.746 210.746h-146.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-decrease"],"defaultCode":59666,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":169,"name":"arrow-decrease","prevSize":32,"id":31,"code":59670},"setIdx":0,"setId":2,"iconIdx":44},{"icon":{"paths":["M329.373 550.627c-12.497-12.496-12.497-32.758 0-45.254s32.758-12.496 45.254 0l105.373 105.373v-418.746c0-17.673 14.326-32 32-32s32 14.327 32 32v418.746l105.373-105.373c12.496-12.496 32.758-12.496 45.254 0s12.496 32.758 0 45.254l-160 160c-12.496 12.496-32.758 12.496-45.254 0l-160-160zM112 864c0 17.674 14.327 32 32 32h768c17.674 0 32-14.326 32-32v-512c0-17.674-14.326-32-32-32h-96c-17.674 0-32 14.326-32 32s14.326 32 32 32h64v448h-704v-448h64c17.673 0 32-14.326 32-32s-14.327-32-32-32h-96c-17.673 0-32 14.326-32 32v512z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-down-box"],"defaultCode":59667,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":170,"name":"arrow-down-box","prevSize":32,"id":32,"code":59671},"setIdx":0,"setId":2,"iconIdx":45},{"icon":{"paths":["M865.139 512c0-194.404-157.802-352-352.464-352-194.66 0-352.464 157.596-352.464 352s157.804 352 352.464 352c194.662 0 352.464-157.597 352.464-352zM929.226 512c0 229.75-186.496 416-416.55 416-230.053 0-416.548-186.25-416.548-416s186.495-416 416.548-416c230.054 0 416.55 186.25 416.55 416zM695.178 571.37l-160.182 155.715c-12.438 12.093-32.259 12.093-44.701 0l-160.179-155.715c-12.682-12.33-12.955-32.589-0.611-45.251 12.342-12.666 32.63-12.938 45.309-0.611l105.789 102.842 0.003-276.349c0-17.674 14.346-32 32.042-32s32.042 14.326 32.042 32v276.349l105.789-102.842c12.682-12.326 32.966-12.054 45.309 0.611 12.346 12.662 12.070 32.922-0.608 45.251z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-down-circle"],"defaultCode":59668,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":171,"name":"arrow-down-circle","prevSize":32,"id":33,"code":59672},"setIdx":0,"setId":2,"iconIdx":46},{"icon":{"paths":["M726.88 526.064c12.355 12.637 12.128 32.896-0.509 45.254l-191.968 187.715c-12.438 12.163-32.31 12.163-44.746 0l-191.97-187.715c-12.636-12.358-12.863-32.618-0.507-45.254 12.356-12.634 32.615-12.861 45.252-0.506l137.597 134.55v-372.109c0-17.673 14.33-32 32-32 17.674 0 32 14.327 32 32v372.109l137.6-134.55c12.634-12.355 32.896-12.128 45.251 0.506z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-down"],"defaultCode":59669,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":172,"name":"arrow-down","prevSize":32,"id":34,"code":59673},"setIdx":0,"setId":2,"iconIdx":47},{"icon":{"paths":["M859.978 398.15c-0.189 17.67-14.666 31.843-32.339 31.654-17.67-0.189-31.846-14.666-31.658-32.339l1.318-123.488-193.437 193.437c-12.496 12.499-32.758 12.499-45.254 0-12.496-12.496-12.496-32.755 0-45.254l193.437-193.437-123.488 1.318c-17.67 0.189-32.15-13.984-32.339-31.656s13.984-32.151 31.658-32.34l201.92-2.156c8.605-0.092 16.883 3.286 22.97 9.371 6.083 6.085 9.462 14.364 9.37 22.969l-2.157 201.922zM167.394 626.522c0.189-17.674 14.668-31.846 32.34-31.658s31.845 14.669 31.657 32.339l-1.319 123.488 193.438-193.437c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-193.438 193.437 123.489-1.318c17.67-0.189 32.15 13.984 32.339 31.658 0.189 17.67-13.984 32.15-31.658 32.339l-201.92 2.157c-8.605 0.093-16.884-3.286-22.969-9.37-6.085-6.086-9.463-14.365-9.371-22.97l2.156-201.92z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-expand"],"defaultCode":59670,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":173,"name":"arrow-expand","prevSize":32,"id":35,"code":59674},"setIdx":0,"setId":2,"iconIdx":48},{"icon":{"paths":["M576 352c-17.674 0-32-14.326-32-32s14.326-32 32-32h224c17.674 0 32 14.327 32 32v208c0 17.674-14.326 32-32 32s-32-14.326-32-32v-130.746l-233.373 233.373c-12.496 12.496-32.758 12.496-45.254 0l-73.373-73.373-169.372 169.373c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l192-192c12.496-12.496 32.758-12.496 45.254 0l73.373 73.373 210.746-210.746h-146.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-increase"],"defaultCode":59671,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":174,"name":"arrow-increase","prevSize":32,"id":36,"code":59675},"setIdx":0,"setId":2,"iconIdx":49},{"icon":{"paths":["M297.766 105.372c12.513-12.497 32.801-12.497 45.316 0 12.512 12.497 12.512 32.758 0 45.255l-105.513 105.372h611.551c17.699 0 32.045 14.327 32.045 32v112c0 17.674-14.346 32-32.045 32-17.696 0-32.042-14.326-32.042-32v-80h-579.51l105.513 105.373c12.512 12.496 12.512 32.758 0 45.254-12.515 12.496-32.803 12.496-45.316 0l-160.212-160c-12.513-12.497-12.513-32.758 0-45.255l160.212-160zM711.568 918.627c-12.515 12.496-32.803 12.496-45.315 0-12.515-12.496-12.515-32.758 0-45.254l105.51-105.373h-611.552c-17.696 0-32.042-14.326-32.042-32v-112c0-17.674 14.346-32 32.042-32s32.042 14.326 32.042 32v80h579.509l-105.51-105.373c-12.515-12.496-12.515-32.758 0-45.254 12.512-12.496 32.8-12.496 45.315 0l160.211 160c12.512 12.496 12.512 32.758 0 45.254l-160.211 160z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-looping"],"defaultCode":59672,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":175,"name":"arrow-looping","prevSize":32,"id":37,"code":59677},"setIdx":0,"setId":2,"iconIdx":50},{"icon":{"paths":["M374.627 769.296c-12.496 12.496-32.758 12.496-45.254 0l-192-192c-12.497-12.496-12.497-32.758 0-45.254l192-192c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-137.372 137.373h578.745v-192h-192c-17.674 0-32-14.328-32-32.001s14.326-32 32-32h224c17.674 0 32 14.327 32 32v256.001c0 17.674-14.326 32-32 32h-610.745l137.372 137.373c12.496 12.496 12.496 32.758 0 45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-return"],"defaultCode":59673,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":176,"name":"arrow-return","prevSize":32,"id":38,"code":59678},"setIdx":0,"setId":2,"iconIdx":51},{"icon":{"paths":["M694.627 473.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-105.373-105.373v418.746c0 17.674-14.326 32-32 32s-32-14.326-32-32v-418.746l-105.373 105.373c-12.496 12.496-32.758 12.496-45.254 0s-12.497-32.758 0-45.254l160-160c12.496-12.497 32.758-12.497 45.254 0l160 160zM912 160c0-17.673-14.326-32-32-32h-768c-17.673 0-32 14.327-32 32v512c0 17.674 14.327 32 32 32h96c17.673 0 32-14.326 32-32s-14.327-32-32-32h-64v-448h704v448h-64c-17.674 0-32 14.326-32 32s14.326 32 32 32h96c17.674 0 32-14.326 32-32v-512z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-up-box"],"defaultCode":59674,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":177,"name":"arrow-up-box","prevSize":32,"id":39,"code":59679},"setIdx":0,"setId":2,"iconIdx":52},{"icon":{"paths":["M297.181 498.090c-12.356-12.634-12.129-32.896 0.507-45.251l191.97-187.717c12.435-12.161 32.307-12.161 44.746 0l191.968 187.717c12.637 12.355 12.864 32.618 0.509 45.251-12.355 12.637-32.618 12.864-45.251 0.509l-137.6-134.55v372.109c0 17.674-14.326 32-32 32-17.67 0-32-14.326-32-32v-372.109l-137.597 134.55c-12.637 12.355-32.895 12.128-45.251-0.509z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-up"],"defaultCode":59675,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":178,"name":"arrow-up","prevSize":32,"id":40,"code":59680},"setIdx":0,"setId":2,"iconIdx":53},{"icon":{"paths":["M866.128 153.127c-12.496-12.497-32.758-12.497-45.254 0l-668.246 668.245c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l668.246-668.245c12.496-12.497 12.496-32.758 0-45.255zM674.643 480.358l55.92-55.923c16.259 79.565 14.515 161.866-5.229 240.842l-11.622 46.49c-4.288 17.146-21.661 27.571-38.806 23.283-17.146-4.285-27.568-21.661-23.283-38.806l11.622-46.486c13.875-55.507 17.677-112.874 11.398-169.398zM817.162 385.923l-11.312-36.771 51.203-51.206 21.28 69.155c33.344 108.368 31.994 224.445-3.859 332.010l-33.45 100.342c-5.587 16.765-23.709 25.827-40.477 20.24-16.765-5.59-25.827-23.712-20.237-40.48l33.446-100.339c31.635-94.912 32.826-197.334 3.405-292.95zM490.666 664.333l64-64v210.346c0 23.562-19.101 42.666-42.666 42.666h-85.334c-35.459 0-68.394-10.816-95.683-29.325l46.611-46.611c14.701 7.629 31.395 11.936 49.072 11.936h64v-125.011zM128 682.678c0 19.738 13.403 36.346 31.604 41.216l62.552-62.55h-30.156v-298.666h118.99l12.367-48.049c11.843-46.020 53.696-79.953 103.309-79.953h64v158.155l64-64v-115.488c0-23.564-19.101-42.667-42.666-42.667h-85.334c-79.523 0-146.343 54.39-165.289 128h-90.71c-23.564 0-42.667 19.102-42.667 42.667v341.334z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["audio-disabled"],"defaultCode":59677,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":180,"name":"audio-disabled","prevSize":32,"id":41,"code":59681},"setIdx":0,"setId":2,"iconIdx":54},{"icon":{"paths":["M310.99 661.344h-118.99v-298.666h118.99l12.367-48.049c11.843-46.020 53.696-79.953 103.309-79.953h64v554.667h-64c-49.613 0-91.466-33.933-103.309-79.952l-12.367-48.048zM170.667 725.344h90.71c18.946 73.61 85.766 128 165.289 128h85.334c23.565 0 42.666-19.104 42.666-42.666v-597.335c0-23.564-19.101-42.667-42.666-42.667h-85.334c-79.523 0-146.343 54.39-165.289 128h-90.71c-23.564 0-42.667 19.102-42.667 42.667v341.334c0 23.562 19.103 42.666 42.667 42.666zM886.627 393.373c12.496 12.496 12.496 32.758 0 45.254l-73.373 73.373 73.373 73.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-73.373-73.373-73.373 73.373c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l73.373-73.373-73.373-73.373c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l73.373 73.373 73.373-73.373c12.496-12.496 32.758-12.496 45.254 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["audio-unavailable"],"defaultCode":59678,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":181,"name":"audio-unavailable","prevSize":32,"id":42,"code":59682},"setIdx":0,"setId":2,"iconIdx":55},{"icon":{"paths":["M300.1 631.12h-113.433v-280.89h113.433l12.366-48.048c11.054-42.953 50.123-74.619 96.423-74.619h58.666v526.223h-58.666c-46.301 0-85.37-31.667-96.423-74.621l-12.366-48.045zM163.556 695.12h86.931c18.156 70.541 82.192 122.666 158.403 122.666h81.776c22.582 0 40.89-18.307 40.89-40.89v-572.444c0-22.582-18.307-40.889-40.89-40.889h-81.776c-76.211 0-140.247 52.124-158.403 122.667h-86.931c-22.582 0-40.889 18.306-40.889 40.89v327.11c0 22.582 18.307 40.89 40.889 40.89zM646.461 316.515c17.146-4.286 34.518 6.138 38.806 23.284l11.136 44.55c20.81 83.229 20.81 170.301 0 253.533l-11.136 44.55c-4.288 17.146-21.661 27.568-38.806 23.283-17.146-4.288-27.571-21.661-23.283-38.806l11.136-44.55c18.262-73.040 18.262-149.45 0.003-222.486l-11.139-44.55c-4.288-17.146 6.138-34.522 23.283-38.807zM807.472 235.936c-5.197-16.892-23.104-26.372-39.994-21.174-16.893 5.197-26.371 23.104-21.174 39.996l35.536 115.489c28.112 91.37 26.976 189.242-3.254 279.933l-32.054 96.16c-5.59 16.765 3.472 34.886 20.237 40.477 16.768 5.587 34.89-3.472 40.48-20.24l32.051-96.16c34.448-103.344 35.747-214.87 3.709-318.989l-35.536-115.491z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["audio"],"defaultCode":59679,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":182,"name":"audio","prevSize":32,"id":43,"code":59683},"setIdx":0,"setId":2,"iconIdx":56},{"icon":{"paths":["M418.704 128c-35.344 0-64 28.654-64 64v226.637c20.774-2.822 42.134-3.456 64-1.526v-225.11h176v180.707c0 35.344 28.656 64 64 64h176v331.293h-120.554c-17.155 22.179-36.323 43.869-57.312 64h177.866c35.347 0 64-28.653 64-64v-363.293c0-6.413-1.923-12.675-5.526-17.978l-156.63-230.681c-11.914-17.544-31.741-28.049-52.947-28.049h-264.896zM658.704 372.707v-180.707h24.896l122.698 180.707h-147.594zM167.939 668.547c120.524 156.138 218.24 174.586 285.133 158.739 73.293-17.36 139.232-81.648 183.466-151.763-115.155-155.869-211.581-174.589-279.149-158.915-74.362 17.251-142.707 81.683-189.45 151.939zM104.428 649.037c100.621-162.8 337.62-357.19 593.252 1.789 9.072 12.739 10.32 29.818 2.422 43.315-95.27 162.854-326.394 358.346-593.234-0.224-9.745-13.094-11.022-30.995-2.44-44.88zM401.664 735.994c31.514 0 60.269-26.858 60.269-64 0-37.146-28.755-64-60.269-64-31.51 0-60.266 26.854-60.266 64 0 37.142 28.755 64 60.266 64zM401.664 799.994c68.634 0 124.269-57.309 124.269-128 0-70.694-55.635-128-124.269-128-68.63 0-124.267 57.306-124.267 128 0 70.691 55.636 128 124.267 128z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["auditing"],"defaultCode":59680,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":183,"name":"auditing","prevSize":32,"id":44,"code":59684},"setIdx":0,"setId":2,"iconIdx":57},{"icon":{"paths":["M224 224c-17.673 0-32 14.327-32 32v544c0 17.674 14.327 32 32 32h544c17.674 0 32-14.326 32-32v-544c0-17.673-14.326-32-32-32h-544zM128 256c0-53.019 42.981-96 96-96h544c53.021 0 96 42.981 96 96v544c0 53.021-42.979 96-96 96h-544c-53.019 0-96-42.979-96-96v-544zM608 460.813c0 41.798-26.714 77.357-64 90.538v133.462h-64v-133.462c-37.286-13.181-64-48.739-64-90.538 0-53.021 42.979-96 96-96s96 42.979 96 96zM608 588.826c38.861-29.19 64-75.667 64-128.013 0-88.365-71.635-160-160-160s-160 71.636-160 160c0 52.346 25.139 98.822 64 128.013v127.987c0 17.674 14.326 32 32 32h128c17.674 0 32-14.326 32-32v-127.987z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["auth"],"defaultCode":59681,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":184,"name":"auth","prevSize":32,"id":45,"code":59685},"setIdx":0,"setId":2,"iconIdx":58},{"icon":{"paths":["M513.35 554.019c66.467 0 120.349-52.493 120.349-117.242 0-64.752-53.882-117.243-120.349-117.243-66.464 0-120.346 52.491-120.346 117.243 0 64.749 53.882 117.242 120.346 117.242zM513.35 490.019c-32.704 0-56.346-25.405-56.346-53.242 0-27.84 23.642-53.242 56.346-53.242 32.707 0 56.349 25.402 56.349 53.242 0 27.837-23.642 53.242-56.349 53.242z","M365.478 894.144h-172.126c-17.673 0-32-14.33-32-32v-702.144c0-17.673 14.327-32 32-32h640.001c17.674 0 32 14.327 32 32v702.144c0 17.67-14.326 32-32 32h-172.128c-6.24 1.274-12.701 1.942-19.318 1.942h-257.11c-6.618 0-13.078-0.669-19.318-1.942zM225.353 830.144h68.244c-3.114-9.456-4.799-19.558-4.799-30.058v-93.446c0-56.109 37.881-105.142 92.172-119.309 19.171-5.002 39.264-5.312 58.579-0.902l42.778 9.766c20.051 4.579 40.909 4.259 60.81-0.934l28.070-7.325c20.694-5.398 42.384-5.734 63.232-0.973 60.534 13.821 103.469 67.664 103.469 129.754v83.37c0 10.499-1.686 20.602-4.8 30.058h68.246v-638.144h-576.001v638.144zM652.918 830.144c12.246-4.49 20.989-16.253 20.989-30.058v-83.37c0-32.234-22.288-60.186-53.715-67.36-10.822-2.47-22.083-2.298-32.826 0.506l-28.070 7.325c-29.853 7.789-61.139 8.272-91.216 1.405l-42.774-9.766c-9.293-2.122-18.957-1.974-28.176 0.432-26.112 6.813-44.333 30.397-44.333 57.382v93.446c0 13.805 8.742 25.568 20.989 30.058h279.133z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["avatar"],"defaultCode":59682,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":185,"name":"avatar","prevSize":32,"id":46,"code":59686},"setIdx":0,"setId":2,"iconIdx":59},{"icon":{"paths":["M737.779 361.376c12.499 12.496 12.499 32.758 0 45.254l-110.947 110.95 110.947 110.947c12.499 12.496 12.499 32.758 0 45.254-12.496 12.499-32.758 12.499-45.254 0l-110.947-110.947-110.95 110.947c-12.496 12.499-32.758 12.499-45.254 0-12.496-12.496-12.496-32.758 0-45.254l110.95-110.947-110.95-110.95c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l110.95 110.95 110.947-110.95c12.496-12.496 32.758-12.496 45.254 0z","M312.246 218.073c12.061-16.393 31.2-26.073 51.552-26.073h468.202c35.347 0 64 28.654 64 64v512c0 35.347-28.653 64-64 64h-468.202c-20.352 0-39.491-9.68-51.552-26.074l-188.343-256c-16.598-22.56-16.598-53.293 0-75.853l188.343-256.001zM363.798 256l-188.343 256 188.343 256h468.202v-512h-468.202z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["backspace"],"defaultCode":59683,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":186,"name":"backspace","prevSize":32,"id":47,"code":59687},"setIdx":0,"setId":2,"iconIdx":60},{"icon":{"paths":["M376 775.418c-13.254 0-24-10.746-24-24v-469.168c0-13.255 10.746-24 24-24h145.075c56.118 0 98.269 11.603 126.448 34.809 28.416 23.206 42.624 57.542 42.624 103.008 0 24.154-6.867 45.584-20.602 64.291-13.734 18.47-32.442 32.794-56.122 42.976 27.942 7.814 49.965 22.733 66.067 44.755 16.339 21.786 24.509 47.834 24.509 78.144 0 46.413-15.037 82.88-45.11 109.402s-72.579 39.782-127.517 39.782h-155.373zM420.198 533.526v186.125h112.595c31.731 0 56.714-8.17 74.947-24.509 18.47-16.576 27.706-39.309 27.706-68.198 0-62.278-33.862-93.418-101.587-93.418h-113.661zM420.198 478.829h103.008c29.834 0 53.632-7.459 71.392-22.378 17.997-14.918 26.995-35.165 26.995-60.739 0-28.416-8.288-49.018-24.864-61.805-16.576-13.024-41.795-19.536-75.654-19.536h-100.877v164.458z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["bold"],"defaultCode":59684,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":187,"name":"bold","prevSize":32,"id":48,"code":59688},"setIdx":0,"setId":2,"iconIdx":61},{"icon":{"paths":["M352 445.437c0-17.67 14.326-32 32-32h256c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M352 322.557c0-17.672 14.326-31.999 32-31.999h256c17.674 0 32 14.327 32 31.999 0 17.674-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M864 679.68c0 17.674-14.326 32-32 32h-18.509c-8.218 40.547-8.218 82.333 0 122.88h19.789c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72h-545.28c-70.692 0-128-55.014-128-122.88v-453.12c0-106.038 85.961-192 192-192h480c17.674 0 32 14.327 32 32v519.68zM748.419 834.56c-6.787-40.678-6.787-82.202 0-122.88h-460.419c-35.346 0-64 27.507-64 61.44s28.654 61.44 64 61.44h460.419zM224 647.68h576v-455.68h-448c-70.692 0-128 57.308-128 128v327.68z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["book"],"defaultCode":59685,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":188,"name":"book","prevSize":32,"id":49,"code":59689},"setIdx":0,"setId":2,"iconIdx":62},{"icon":{"paths":["M224 224h320v576h-96v-112c0-8.835-7.165-16-16-16h-96c-8.835 0-16 7.165-16 16v112h-96v-576zM608 448h192v352h-192v-352zM832 384h-224v-192c0-17.673-14.326-32-32-32h-384c-17.673 0-32 14.327-32 32v640c0 17.674 14.327 32 32 32h640c17.674 0 32-14.326 32-32v-416c0-17.674-14.326-32-32-32zM304 288c-8.836 0-16 7.164-16 16v32c0 8.835 7.164 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.836-7.165-16-16-16h-32zM288 432c0-8.835 7.164-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.836 0-16-7.165-16-16v-32zM304 544c-8.836 0-16 7.165-16 16v32c0 8.835 7.164 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM416 304c0-8.836 7.165-16 16-16h32c8.835 0 16 7.164 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32zM432 416c-8.835 0-16 7.165-16 16v32c0 8.835 7.165 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM416 560c0-8.835 7.165-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32zM688 512c-8.835 0-16 7.165-16 16v32c0 8.835 7.165 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM672 656c0-8.835 7.165-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["business"],"defaultCode":59686,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":189,"name":"business","prevSize":32,"id":50,"code":59690},"setIdx":0,"setId":2,"iconIdx":63},{"icon":{"paths":["M277.831 157.44c0-16.259 13.181-29.44 29.44-29.44s29.439 13.181 29.439 29.44v58.876h353.28v-58.876c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v58.876h85.76c17.674 0 32 14.327 32 32v583.68c0 17.674-14.326 32-32 32h-642.559c-17.673 0-32-14.326-32-32v-583.68c0-1.105 0.056-2.196 0.165-3.272 1.639-16.136 15.266-28.728 31.835-28.728h85.76v-58.876zM802.63 392.957h-578.559v407.040h578.559v-407.040zM425.034 644.474c0-8.835 7.162-16 16-16h26.88c8.835 0 16 7.165 16 16v26.88c0 8.838-7.165 16-16 16h-26.88c-8.838 0-16-7.162-16-16v-26.88zM323.27 510.72c-8.836 0-15.999 7.162-15.999 16v26.88c0 8.835 7.163 16 15.999 16h26.88c8.838 0 16-7.165 16-16v-26.88c0-8.838-7.162-16-16-16h-26.88zM542.79 526.72c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.835-7.162 16-16 16h-26.88c-8.835 0-16-7.165-16-16v-26.88zM323.27 628.474c-8.835 0-15.999 7.165-15.999 16v26.88c0 8.838 7.164 16 15.999 16h26.88c8.838 0 16-7.162 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88zM542.79 644.474c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.838-7.162 16-16 16h-26.88c-8.835 0-16-7.162-16-16v-26.88zM441.030 510.72c-8.835 0-16 7.165-16 16v26.88c0 8.835 7.165 16 16 16h26.88c8.838 0 16-7.165 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88zM660.55 526.72c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.835-7.162 16-16 16h-26.88c-8.835 0-16-7.165-16-16v-26.88zM676.55 628.474c-8.835 0-16 7.165-16 16v26.88c0 8.838 7.165 16 16 16h26.88c8.838 0 16-7.162 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["calendar"],"defaultCode":59687,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":190,"name":"calendar","prevSize":32,"id":51,"code":59691},"setIdx":0,"setId":2,"iconIdx":64},{"icon":{"paths":["M866.128 153.126c-12.496-12.497-32.758-12.497-45.254 0l-668.246 668.246c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l668.246-668.246c12.496-12.497 12.496-32.758 0-45.255zM298.667 170.671c-23.564 0-42.667 14.327-42.667 32s19.102 32 42.667 32h255.999c23.565 0 42.669-14.327 42.669-32s-19.104-32-42.669-32h-255.999zM574.173 309.327h-403.506c-41.237 0-74.667 33.428-74.667 74.667v384c0 6.010 0.71 11.856 2.051 17.453l61.949-61.949v-339.504c0-5.891 4.776-10.666 10.667-10.666h339.506l64-64.001zM376.339 778.659h306.326c5.891 0 10.669-4.774 10.669-10.666v-85.334c0-11.373 6.038-21.891 15.859-27.629s21.949-5.83 31.856-0.243l97.83 55.162c2.531 1.427 4.858 3.194 6.912 5.248 6.72 6.72 18.208 1.962 18.208-7.542v-263.322c0-9.501-11.488-14.262-18.208-7.542-2.054 2.054-4.381 3.821-6.912 5.248l-97.83 55.162c-9.907 5.587-22.035 5.494-31.856-0.243-9.821-5.734-15.859-16.256-15.859-27.629v-7.661l110.778-73.498c47.418-41.99 123.888-8.701 123.888 56.163v263.322c0 64.864-76.47 98.154-123.888 56.163l-46.778-26.378v30.554c0 41.238-33.43 74.666-74.669 74.666h-370.327l64.001-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["camera-disabled"],"defaultCode":59688,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":191,"name":"camera-disabled","prevSize":32,"id":52,"code":59692},"setIdx":0,"setId":2,"iconIdx":65},{"icon":{"paths":["M288 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h256c17.674 0 32-14.327 32-32s-14.326-32-32-32h-256z","M170.667 341.328c-23.564 0-42.667 19.104-42.667 42.666v384c0 23.565 19.102 42.669 42.667 42.669h511.999c23.565 0 42.669-19.104 42.669-42.669v-128l97.83 97.83c26.877 26.88 72.835 7.843 72.835-30.17v-263.318c0-38.013-45.958-57.050-72.835-30.173l-97.83 97.83v-128c0-23.562-19.104-42.666-42.669-42.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["camera-filled"],"defaultCode":59689,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":192,"name":"camera-filled","prevSize":32,"id":53,"code":59693},"setIdx":0,"setId":2,"iconIdx":66},{"icon":{"paths":["M196.731 191.997c0-15.807 12.814-28.622 28.622-28.622h128.001c15.805 0 28.621 12.814 28.621 28.622s-12.816 28.621-28.621 28.621h-128.001c-15.807 0-28.622-12.814-28.622-28.621z","M737.354 559.997c0 97.203-78.8 176-176 176-97.203 0-176-78.797-176-176s78.797-176 176-176c97.2 0 176 78.797 176 176zM673.354 559.997c0-61.856-50.144-112-112-112s-112 50.144-112 112c0 61.856 50.144 112 112 112s112-50.144 112-112z","M193.353 255.997c-35.346 0-64 28.654-64 64v448c0 35.347 28.654 64 64 64h640.001c35.344 0 64-28.653 64-64v-448c0-35.346-28.656-64-64-64h-640.001zM833.354 319.997v448h-640.001v-448h640.001z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["camera-photo"],"defaultCode":59690,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":193,"name":"camera-photo","prevSize":32,"id":54,"code":59694},"setIdx":0,"setId":2,"iconIdx":67},{"icon":{"paths":["M298.667 170.672c-23.564 0-42.667 14.327-42.667 32s19.102 32 42.667 32h255.999c23.565 0 42.669-14.327 42.669-32s-19.104-32-42.669-32h-255.999z","M545.712 503.453c11.267-11.267 11.19-29.61-0.17-40.97s-29.706-11.437-40.973-0.17l-71.402 71.402-71.994-71.997c-11.363-11.36-29.706-11.437-40.973-0.17s-11.19 29.61 0.17 40.97l71.997 71.997-71.402 71.402c-11.266 11.267-11.19 29.61 0.17 40.97 11.363 11.36 29.706 11.437 40.973 0.17l71.402-71.402 71.997 71.997c11.36 11.36 29.702 11.437 40.97 0.17s11.19-29.61-0.17-40.97l-71.997-71.997 71.402-71.402z","M96 383.994c0-41.235 33.429-74.666 74.667-74.666h511.999c41.238 0 74.669 33.43 74.669 74.666v30.554l46.778-26.378c47.418-41.99 123.888-8.698 123.888 56.166v263.318c0 64.864-76.47 98.154-123.888 56.163l-46.778-26.374v30.55c0 41.238-33.43 74.669-74.669 74.669h-511.999c-41.237 0-74.667-33.43-74.667-74.669v-384zM170.667 373.328c-5.891 0-10.667 4.774-10.667 10.666v384c0 5.891 4.776 10.669 10.667 10.669h511.999c5.891 0 10.669-4.778 10.669-10.669v-85.331c0-11.376 6.038-21.894 15.859-27.632s21.949-5.83 31.856-0.243l97.83 55.165c2.531 1.427 4.858 3.19 6.912 5.245 6.72 6.72 18.208 1.962 18.208-7.542v-263.318c0-9.504-11.488-14.262-18.208-7.546-2.054 2.058-4.381 3.821-6.912 5.248l-97.83 55.165c-9.907 5.587-22.035 5.494-31.856-0.243s-15.859-16.256-15.859-27.632v-85.334c0-5.891-4.778-10.666-10.669-10.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["camera-unavailable"],"defaultCode":59691,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":194,"name":"camera-unavailable","prevSize":32,"id":55,"code":59695},"setIdx":0,"setId":2,"iconIdx":68},{"icon":{"paths":["M256 202.672c0-17.673 19.102-32 42.667-32h255.999c23.565 0 42.669 14.327 42.669 32s-19.104 32-42.669 32h-255.999c-23.564 0-42.667-14.327-42.667-32zM160 383.994c0-5.891 4.776-10.666 10.667-10.666h511.999c5.891 0 10.669 4.774 10.669 10.666v85.334c0 11.376 6.038 21.894 15.859 27.632s21.949 5.83 31.856 0.243l97.83-55.165c2.531-1.427 4.858-3.19 6.912-5.248 6.72-6.717 18.208-1.958 18.208 7.546v263.318c0 9.504-11.488 14.262-18.208 7.542-2.054-2.054-4.381-3.818-6.912-5.245l-97.83-55.165c-9.907-5.587-22.035-5.494-31.856 0.243s-15.859 16.256-15.859 27.632v85.331c0 5.891-4.778 10.669-10.669 10.669h-511.999c-5.891 0-10.667-4.778-10.667-10.669v-384zM170.667 309.328c-41.237 0-74.667 33.43-74.667 74.666v384c0 41.238 33.429 74.669 74.667 74.669h511.999c41.238 0 74.669-33.43 74.669-74.669v-30.55l46.778 26.374c47.418 41.99 123.888 8.701 123.888-56.163v-263.318c0-64.864-76.47-98.157-123.888-56.166l-46.778 26.378v-30.554c0-41.235-33.43-74.666-74.669-74.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["camera"],"defaultCode":59692,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":195,"name":"camera","prevSize":32,"id":56,"code":59696},"setIdx":0,"setId":2,"iconIdx":69},{"icon":{"paths":["M224.248 304.026c-49.642 68.947-66.502 152.646-66.502 207.968v1.453l-0.132 1.446c-9.702 106.717 28.59 181.93 90.135 234.006 62.938 53.254 152.152 83.731 244.197 93.958 91.965 10.218 193.27 1.446 273.306-15.482 40.022-8.461 73.616-18.733 97.443-29.075 9.245-4.013 16.438-7.786 21.734-11.126-2.464-1.565-5.446-3.306-9.002-5.197-9.222-4.912-19.779-9.578-30.733-14.368l-1.914-0.835c-9.667-4.221-20.47-8.941-28.656-13.517-14.835-8.298-29.389-17.734-40.006-27.776-5.222-4.941-11.165-11.571-15.146-19.827-4.208-8.742-7.226-21.792-1.306-35.597 31.978-74.621 47.178-115.494 54.538-142.483 6.874-25.2 6.874-37.888 6.874-58.064v-0.182c0-16.035-9.318-89.517-55.811-158.032-45.018-66.338-125.99-129.968-274.854-129.968-134.637 0-215.698 55.382-264.165 122.698zM172.309 266.63c60.333-83.796 160.606-149.302 316.103-149.302 171.136 0 271.494 75.037 327.811 158.032 54.842 80.819 66.854 167.338 66.854 193.968 0 22.384-0.022 41.696-9.126 75.088-8.131 29.805-23.485 70.928-51.946 137.923 5.261 4.166 13.072 9.306 23.36 15.062 5.315 2.97 13.485 6.55 24.963 11.568 10.653 4.659 23.437 10.266 35.174 16.515 11.258 5.994 24.416 14.029 34.202 24.538 10.234 10.992 20.973 29.846 13.299 52.864-5.056 15.168-16.794 25.939-26.576 33.094-10.63 7.776-23.818 14.762-38.253 21.030-29.008 12.589-67.030 23.962-109.683 32.982-85.309 18.038-193.581 27.587-293.616 16.474-99.955-11.107-202.74-44.634-278.468-108.71-76.833-65.011-123.811-159.994-112.66-287.222 0.286-65.549 19.841-162.349 78.561-243.904zM493.744 320c17.674 0 32 14.326 32 32v224c0 17.674-14.326 32-32 32s-32-14.326-32-32v-224c0-17.674 14.326-32 32-32zM525.744 672c0-17.674-14.326-32-32-32s-32 14.326-32 32c0 17.674 14.326 32 32 32s32-14.326 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["canned-response"],"defaultCode":59693,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":196,"name":"canned-response","prevSize":32,"id":57,"code":59697},"setIdx":0,"setId":2,"iconIdx":70},{"icon":{"paths":["M193.352 181.331c-53.020 0-96 42.981-96 96v469.335c0 53.018 42.98 96 96 96h639.999c53.021 0 96-42.982 96-96v-469.335c0-53.019-42.979-96-96-96h-639.999zM161.352 277.331c0-17.673 14.327-32 32-32h639.999c17.674 0 32 14.327 32 32v202.673h-703.999v-202.673zM161.352 544.003h703.999v202.662c0 17.67-14.326 32-32 32h-639.999c-17.673 0-32-14.33-32-32v-202.662zM812.016 661.331c0-35.347-28.653-64-64-64-35.344 0-64 28.653-64 64s28.656 64 64 64c35.347 0 64-28.653 64-64z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["card"],"defaultCode":59694,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":197,"name":"card","prevSize":32,"id":58,"code":59698},"setIdx":0,"setId":2,"iconIdx":71},{"icon":{"paths":["M368 160c0-17.673-14.326-32-32-32s-32 14.327-32 32v144h-144c-17.673 0-32 14.327-32 32s14.327 32 32 32h144v288h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v144c0 17.674 14.327 32 32 32s32-14.326 32-32v-144h288v144c0 17.674 14.326 32 32 32s32-14.326 32-32v-144h144c17.674 0 32-14.326 32-32s-14.326-32-32-32h-144v-80h-58.666c-1.786 0-3.565-0.042-5.334-0.118v80.118h-288v-288h168.79c-0.522-5.264-0.79-10.602-0.79-16v-48h-168v-144z","M760 96c-57.437 0-104 46.562-104 104v56h-24c-17.674 0-32 14.327-32 32v192c0 17.674 14.326 32 32 32h256c17.674 0 32-14.326 32-32v-192c0-17.673-14.326-32-32-32h-24v-56c0-57.438-46.563-104-104-104zM800 255.238h-80v-55.238c0-22.092 17.907-40 40-40s40 17.908 40 40v55.238z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["channel-private"],"defaultCode":59695,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":198,"name":"channel-private","prevSize":32,"id":59,"code":59699},"setIdx":0,"setId":2,"iconIdx":72},{"icon":{"paths":["M336 128c17.674 0 32 14.327 32 32v144h288v-144c0-17.673 14.326-32 32-32s32 14.327 32 32v144h144c17.674 0 32 14.327 32 32s-14.326 32-32 32h-144v288h144c17.674 0 32 14.326 32 32s-14.326 32-32 32h-144v144c0 17.674-14.326 32-32 32s-32-14.326-32-32v-144h-288v144c0 17.674-14.326 32-32 32s-32-14.326-32-32v-144h-144c-17.673 0-32-14.326-32-32s14.327-32 32-32h144v-288h-144c-17.673 0-32-14.326-32-32s14.327-32 32-32h144v-144c0-17.673 14.327-32 32-32zM368 368v288h288v-288h-288z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["channel-public"],"defaultCode":59696,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":199,"name":"channel-public","prevSize":32,"id":60,"code":59700},"setIdx":0,"setId":2,"iconIdx":73},{"icon":{"paths":["M886.627 105.372c12.496 12.497 12.496 32.758 0 45.255l-89.373 89.372 89.373 89.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-89.373-89.372-89.373 89.372c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l89.373-89.373-89.373-89.372c-12.496-12.497-12.496-32.758 0-45.255s32.758-12.497 45.254 0l89.373 89.373 89.373-89.373c12.496-12.497 32.758-12.497 45.254 0zM226.501 304.042c-49.642 68.947-66.502 152.646-66.502 207.968v1.453l-0.132 1.446c-9.701 106.717 28.59 181.93 90.135 234.006 62.938 53.254 152.151 83.731 244.196 93.958 91.968 10.218 193.27 1.446 273.309-15.482 40.019-8.461 73.613-18.733 97.44-29.075 9.245-4.013 16.438-7.786 21.738-11.126-2.467-1.565-5.446-3.306-9.005-5.2-9.222-4.909-19.776-9.574-30.733-14.365l-1.917-0.838c-9.667-4.221-20.47-8.938-28.653-13.517-14.835-8.294-29.389-17.731-40.003-27.773-5.226-4.941-11.168-11.571-15.146-19.827-4.211-8.742-7.226-21.792-1.309-35.6 42.086-98.205 54.957-137.722 59.219-163.318 2.906-17.434 19.392-29.21 36.822-26.307 17.434 2.906 29.213 19.389 26.307 36.822-5.453 32.749-20.333 76.41-58.006 165.088 5.261 4.166 13.069 9.306 23.357 15.059 5.315 2.973 13.485 6.554 24.963 11.571 10.656 4.656 23.437 10.266 35.174 16.515 11.261 5.994 24.419 14.029 34.202 24.538 10.234 10.992 20.973 29.846 13.299 52.864-5.053 15.168-16.794 25.939-26.576 33.094-10.627 7.776-23.814 14.762-38.253 21.027-29.005 12.592-67.027 23.965-109.68 32.986-85.312 18.038-193.584 27.587-293.616 16.47-99.955-11.104-202.742-44.63-278.471-108.707-76.833-65.014-123.811-159.997-112.66-287.222 0.286-65.549 19.841-162.349 78.561-243.904 60.333-83.796 160.605-149.302 316.103-149.302 17.674 0 32 14.327 32 32s-14.326 32-32 32c-134.637 0-215.697 55.382-264.164 122.698z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chat-close"],"defaultCode":59697,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":200,"name":"chat-close","prevSize":32,"id":61,"code":59701},"setIdx":0,"setId":2,"iconIdx":74},{"icon":{"paths":["M778 93.833c-11.795-13.162-32.026-14.271-45.187-2.477s-14.272 32.025-2.477 45.187l81.222 90.645h-216.358c-17.674 0-32 14.327-32 32s14.326 32 32 32h216.358l-81.222 90.646c-11.795 13.162-10.685 33.392 2.477 45.187 13.162 11.792 33.392 10.685 45.187-2.477l129.030-144.001c10.893-12.154 10.893-30.556 0-42.71l-129.030-144zM159.999 512.010c0-55.322 16.86-139.021 66.502-207.968 48.467-67.316 129.527-122.698 264.164-122.698 17.674 0 32-14.327 32-32s-14.326-32-32-32c-155.498 0-255.77 65.507-316.102 149.302-58.72 81.555-78.275 178.355-78.561 243.904-11.151 127.229 35.827 222.211 112.66 287.222 75.729 64.077 178.516 97.603 278.471 108.707 100.032 11.117 208.304 1.568 293.616-16.47 42.653-9.021 80.675-20.394 109.68-32.982 14.438-6.269 27.626-13.254 38.253-21.030 9.782-7.155 21.523-17.926 26.579-33.094 7.67-23.018-3.069-41.872-13.302-52.864-9.782-10.509-22.941-18.544-34.202-24.538-11.738-6.25-24.518-11.859-35.171-16.515-11.482-5.018-19.651-8.598-24.966-11.571-10.288-5.754-18.096-10.89-23.357-15.059 37.674-88.678 52.554-132.339 58.010-165.088 2.902-17.43-8.877-33.917-26.31-36.822-17.43-2.902-33.917 8.877-36.822 26.307-4.262 25.597-17.133 65.114-59.219 163.318-5.917 13.808-2.902 26.858 1.309 35.6 3.978 8.256 9.92 14.886 15.146 19.827 10.614 10.042 25.171 19.478 40.003 27.776 8.186 4.576 18.989 9.296 28.656 13.517v0l1.914 0.835c10.957 4.79 21.51 9.456 30.733 14.368 3.558 1.891 6.541 3.632 9.005 5.197-5.299 3.341-12.493 7.114-21.738 11.126-23.827 10.342-57.421 20.614-97.44 29.075-80.038 16.928-181.341 25.699-273.309 15.482-92.045-10.227-181.258-40.704-244.196-93.958-61.545-52.077-99.836-127.29-90.135-234.006l0.132-1.446v-1.453z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chat-forward"],"defaultCode":59698,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":201,"name":"chat-forward","prevSize":32,"id":62,"code":59702},"setIdx":0,"setId":2,"iconIdx":75},{"icon":{"paths":["M854.506 233.252c12.563 12.429 12.672 32.691 0.243 45.254l-474.877 480c-6.013 6.077-14.208 9.498-22.755 9.494-8.55-0.003-16.742-3.427-22.752-9.507l-165.126-167.088c-12.423-12.57-12.303-32.832 0.268-45.254s32.831-12.304 45.254 0.269l142.375 144.067 452.115-456.992c12.429-12.564 32.691-12.672 45.254-0.243z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["check"],"defaultCode":59699,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":202,"name":"check","prevSize":32,"id":63,"code":59703},"setIdx":0,"setId":2,"iconIdx":76},{"icon":{"paths":["M281.372 436.042c12.497-12.499 32.758-12.499 45.255 0l185.373 185.373 185.373-185.373c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-208 208c-12.496 12.496-32.758 12.496-45.254 0l-208-208c-12.497-12.496-12.497-32.758 0-45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-down"],"defaultCode":59700,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":203,"name":"chevron-down","prevSize":32,"id":64,"code":59704},"setIdx":0,"setId":2,"iconIdx":77},{"icon":{"paths":["M670.17 183.165c16.662 16.662 16.662 43.677 0 60.34l-268.496 268.495 268.496 268.499c16.662 16.662 16.662 43.677 0 60.339s-43.677 16.662-60.339 0l-298.668-298.669c-8.002-8-12.497-18.851-12.497-30.17 0-11.315 4.495-22.166 12.497-30.17l298.668-298.666c16.662-16.662 43.677-16.662 60.339 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-left-big"],"defaultCode":59701,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":204,"name":"chevron-left-big","prevSize":32,"id":65,"code":59705},"setIdx":0,"setId":2,"iconIdx":78},{"icon":{"paths":["M587.962 281.372c12.496 12.497 12.496 32.758 0 45.255l-185.373 185.373 185.373 185.373c12.496 12.496 12.496 32.758 0 45.254-12.499 12.496-32.758 12.496-45.258 0l-208-208c-12.496-12.496-12.496-32.758 0-45.254l208-208c12.499-12.497 32.758-12.497 45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-left"],"defaultCode":59702,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":205,"name":"chevron-left","prevSize":32,"id":66,"code":59706},"setIdx":0,"setId":2,"iconIdx":79},{"icon":{"paths":["M436.038 742.627c-12.496-12.496-12.496-32.758 0-45.254l185.373-185.373-185.373-185.373c-12.496-12.497-12.496-32.758 0-45.254 12.499-12.497 32.758-12.497 45.254 0l208 208c12.499 12.496 12.499 32.758 0 45.254l-207.997 208c-12.499 12.496-32.758 12.496-45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-right"],"defaultCode":59703,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":206,"name":"chevron-right","prevSize":32,"id":67,"code":59707},"setIdx":0,"setId":2,"iconIdx":80},{"icon":{"paths":["M742.627 587.958c-12.496 12.499-32.758 12.499-45.254 0l-185.373-185.373-185.373 185.373c-12.496 12.499-32.758 12.499-45.254 0-12.497-12.496-12.497-32.758 0-45.254l208-208c12.496-12.496 32.758-12.496 45.254 0l208 208c12.496 12.496 12.496 32.758 0 45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-up"],"defaultCode":59704,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":207,"name":"chevron-up","prevSize":32,"id":68,"code":59708},"setIdx":0,"setId":2,"iconIdx":81},{"icon":{"paths":["M512 864c194.403 0 352-157.597 352-352 0-46.522-9.024-90.931-25.418-131.581l48.518-48.518c26.211 54.496 40.899 115.581 40.899 180.099 0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416 95.376 0 183.254 32.096 253.424 86.076l-45.712 45.712c-58.221-42.623-130.029-67.788-207.712-67.788-194.404 0-352 157.596-352 352s157.596 352 352 352zM902.63 230.623c12.496-12.499 12.493-32.76-0.006-45.255s-32.762-12.491-45.254 0.008l-345.386 345.503-105.341-105.491c-12.486-12.506-32.749-12.522-45.254-0.032-12.506 12.486-12.522 32.749-0.032 45.254l127.971 128.157c6 6.006 14.144 9.386 22.634 9.389 8.493 0 16.637-3.373 22.64-9.376l368.029-368.157z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["circle-check"],"defaultCode":59705,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":208,"name":"circle-check","prevSize":32,"id":69,"code":59709},"setIdx":0,"setId":2,"iconIdx":82},{"icon":{"paths":["M608 192c0-53.019-42.979-96-96-96s-96 42.981-96 96h-192c-17.673 0-32 14.327-32 32v672c0 17.674 14.327 32 32 32h576c17.674 0 32-14.326 32-32v-672c0-17.673-14.326-32-32-32h-192zM256 864v-608h96v64c0 17.674 14.326 32 32 32h256c17.674 0 32-14.326 32-32v-64h96v608h-512zM512 224c17.674 0 32-14.327 32-32s-14.326-32-32-32c-17.674 0-32 14.327-32 32s14.326 32 32 32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["clipboard"],"defaultCode":59706,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":209,"name":"clipboard","prevSize":32,"id":70,"code":59710},"setIdx":0,"setId":2,"iconIdx":83},{"icon":{"paths":["M864 512c0 194.403-157.597 352-352 352s-352-157.597-352-352c0-194.404 157.596-352 352-352s352 157.596 352 352zM928 512c0-229.75-186.25-416-416-416s-416 186.25-416 416c0 229.75 186.25 416 416 416s416-186.25 416-416zM544 288c0-17.673-14.326-32-32-32s-32 14.327-32 32v224c0 8.486 3.373 16.627 9.373 22.627l96 96c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-86.627-86.627v-210.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["clock"],"defaultCode":59707,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":210,"name":"clock","prevSize":32,"id":71,"code":59711},"setIdx":0,"setId":2,"iconIdx":84},{"icon":{"paths":["M806.627 262.628c12.496-12.497 12.496-32.758 0-45.255s-32.758-12.497-45.254 0l-249.373 249.373-249.372-249.373c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.758 0 45.255l249.373 249.372-249.373 249.373c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l249.372-249.373 249.373 249.373c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-249.373-249.373 249.373-249.372z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["close"],"defaultCode":59708,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":211,"name":"close","prevSize":32,"id":72,"code":59712},"setIdx":0,"setId":2,"iconIdx":85},{"icon":{"paths":["M273.129 356.678c6.747-28.298 25.696-52.004 51.21-67.152 25.6-15.2 56.323-20.858 84.698-14.53 27.642 6.163 55.117 24.12 74.874 60.339l22.541 41.325 30.134-36.16c27.238-32.689 85.126-39.713 134.714-14.064 23.562 12.186 42.208 30.618 52.064 53.488 9.654 22.406 12.112 51.898-1.434 89.149l-15.616 42.938h45.686c53.606 0 82.419 15.882 97.642 33.75 15.651 18.374 21.898 44.646 18.557 74.714-3.344 30.083-16.054 60.518-33.456 82.89-17.939 23.066-36.646 32.646-50.742 32.646h-543.998c-18.791 0-37.068-10.362-52.195-31.578-15.217-21.344-24.978-51.050-25.818-81.312-0.84-30.227 7.237-57.914 23.733-77.491 15.796-18.746 42.268-33.619 86.279-33.619h59.791l-33.165-49.75c-27.882-41.824-32.118-77.814-25.498-105.581zM518.218 272.084c-26.339-32.073-59.667-51.619-95.251-59.554-45.626-10.174-92.902-0.833-131.301 21.965-38.487 22.85-69.538 60.142-80.791 107.342-8.278 34.72-5.369 72.758 10.731 111.77-35.67 8.464-64.099 26.186-84.825 50.784-29.004 34.422-39.927 78.733-38.766 120.506 1.159 41.738 14.399 84.032 37.682 116.688 23.373 32.784 59.097 58.426 104.306 58.426h543.999c41.907 0 77.2-26.419 101.261-57.354 24.598-31.629 41.888-73.197 46.544-115.114 4.659-41.933-3.094-87.658-33.443-123.283-24.106-28.301-59.504-46.774-105.616-53.456 5.83-35.194 1.686-67.674-10.605-96.205-16.646-38.628-46.998-67.197-81.437-85.010-54.902-28.397-128.733-32.652-182.486 2.495zM512 437.331c17.674 0 32 14.33 32 32v53.328h53.334c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-53.334v53.341c0 17.674-14.326 32-32 32s-32-14.326-32-32v-53.341h-53.331c-17.674 0-32-14.326-32-32 0-17.67 14.326-32 32-32h53.331v-53.328c0-17.67 14.326-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["cloud-connectivity"],"defaultCode":59709,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":212,"name":"cloud-connectivity","prevSize":32,"id":73,"code":59713},"setIdx":0,"setId":2,"iconIdx":86},{"icon":{"paths":["M630.154 204.798c16.496 6.344 24.723 24.859 18.381 41.355l-213.334 554.667c-6.342 16.496-24.858 24.723-41.354 18.381-16.496-6.346-24.723-24.861-18.381-41.357l213.334-554.666c6.346-16.495 24.858-24.724 41.354-18.38zM321.293 361.37c12.499 12.499 12.499 32.758 0 45.258l-105.371 105.37 105.371 105.373c12.499 12.499 12.499 32.758 0 45.258-12.495 12.496-32.756 12.496-45.253 0l-128-128c-12.497-12.499-12.497-32.758 0-45.258l128-128c12.497-12.496 32.758-12.496 45.253 0zM702.707 361.37c12.496-12.496 32.758-12.496 45.254 0l128 128c12.496 12.499 12.496 32.758 0 45.258l-128 128c-12.496 12.496-32.758 12.496-45.254 0-12.499-12.499-12.499-32.758 0-45.258l105.373-105.373-105.373-105.37c-12.499-12.499-12.499-32.758 0-45.258z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["code"],"defaultCode":59710,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":213,"name":"code","prevSize":32,"id":74,"code":59714},"setIdx":0,"setId":2,"iconIdx":87},{"icon":{"paths":["M770.704 224c17.674 0 32 14.327 32 32v544c0 17.674-14.326 32-32 32h-543.999c-17.673 0-32-14.326-32-32v-128c17.673 0 32-14.326 32-32s-14.327-32-32-32v-192c17.673 0 32-14.326 32-32s-14.327-32-32-32v-96c0-17.673 14.327-32 32-32h543.999zM130.705 608c-17.673 0-32 14.326-32 32s14.327 32 32 32v128c0 53.021 42.981 96 96 96h543.999c53.021 0 96-42.979 96-96v-544c0-53.019-42.979-96-96-96h-543.999c-53.019 0-96 42.981-96 96v96c-17.673 0-32 14.326-32 32s14.327 32 32 32v192zM427.91 514.266c13.315-3.568 27.309-3.789 40.73-0.643l31.52 7.389c8.73 2.045 17.83 1.904 26.49-0.416l22.186-5.942c14.285-3.827 29.328-4.042 43.683-0.675 40.429 9.475 69.325 45.584 69.325 87.277v24.336c0 31.811-25.789 57.6-57.6 57.6h-180.739c-31.811 0-57.6-25.789-57.6-57.6v-30.525c0-37.862 25.434-71.005 62.006-80.8zM456.957 563.472c-5.206-1.219-10.634-1.133-15.798 0.25-14.189 3.798-24.054 16.656-24.054 31.344v30.525c0 3.536 2.867 6.4 6.4 6.4h180.739c3.533 0 6.4-2.864 6.4-6.4v-24.336c0-17.75-12.365-33.341-29.808-37.427-6.186-1.45-12.662-1.35-18.752 0.282l-22.186 5.942c-16.813 4.502-34.474 4.781-51.421 0.81l-31.52-7.389zM539.155 420.48c0-13.962-11.318-25.28-25.28-25.28s-25.283 11.318-25.283 25.28c0 13.962 11.322 25.28 25.283 25.28s25.28-11.318 25.28-25.28zM590.355 420.48c0 42.24-34.243 76.48-76.48 76.48-42.24 0-76.483-34.24-76.483-76.48s34.243-76.48 76.483-76.48c42.237 0 76.48 34.24 76.48 76.48z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["contacts"],"defaultCode":59711,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":214,"name":"contacts","prevSize":32,"id":75,"code":59715},"setIdx":0,"setId":2,"iconIdx":88},{"icon":{"paths":["M464 272c-35.347 0-64 28.654-64 64v480c0 35.347 28.653 64 64 64h352c35.347 0 64-28.653 64-64v-304c0-6.509-1.984-12.864-5.69-18.214l-134.458-194.215c-11.952-17.267-31.619-27.571-52.621-27.571h-223.232zM464 336h144v144c0 35.347 28.653 64 64 64h144v272h-352v-480zM672 480v-144h15.232l99.693 144h-114.925zM144 208c0-35.346 28.654-64 64-64h241.844c18.032 0 35.229 7.607 47.357 20.949l39.136 43.051h-328.336v480h128v64h-128c-35.346 0-64-28.653-64-64v-480z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["copy"],"defaultCode":59712,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":215,"name":"copy","prevSize":32,"id":76,"code":59716},"setIdx":0,"setId":2,"iconIdx":89},{"icon":{"paths":["M824.682 183.521c-37.19-37.986-98.202-38.583-136.131-1.333l-348.48 342.237c-12.739 12.512-21.733 28.32-25.976 45.654l-23.681 96.749c-6.94 28.355 16.754 54.845 45.747 51.142l90.691-11.578c20.224-2.582 39.104-11.52 53.907-25.52l360.486-340.922c38.986-36.868 40.173-98.482 2.637-136.82l-19.2-19.61zM733.485 227.821c12.643-12.417 32.979-12.218 45.376 0.444l19.2 19.61c12.512 12.78 12.115 33.317-0.88 45.607l-69.965 66.169-63.446-63.364 69.715-68.466zM618.074 341.162l62.592 62.512-243.971 230.73c-4.934 4.666-11.229 7.645-17.968 8.506l-58.307 7.443 15.926-65.075c1.414-5.779 4.413-11.046 8.659-15.219l233.069-228.896zM193.608 265.602c0-17.673 14.346-32 32.042-32h281.332c17.696 0 32.042-14.327 32.042-32s-14.346-32-32.042-32h-281.332c-53.089 0-96.127 42.981-96.127 96v534.402c0 53.018 43.037 95.997 96.127 95.997h529.764c53.091 0 96.128-42.979 96.128-96v-279.414c0-17.67-14.346-32-32.042-32s-32.042 14.33-32.042 32v279.414c0 17.674-14.346 32-32.045 32h-529.764c-17.696 0-32.042-14.326-32.042-31.997v-534.402z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["create"],"defaultCode":59713,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":216,"name":"create","prevSize":32,"id":77,"code":59717},"setIdx":0,"setId":2,"iconIdx":90},{"icon":{"paths":["M717.373 298.663c0-17.673-14.326-32-32-32s-32 14.327-32 32v426.665c0 17.674 14.326 32 32 32s32-14.326 32-32v-426.665z","M514.704 394.672c17.674 0 32 14.326 32 32v298.666c0 17.674-14.326 32-32 32s-32-14.326-32-32v-298.666c0-17.674 14.326-32 32-32z","M376.038 554.672c0-17.674-14.326-32-32-32s-32 14.326-32 32v170.669c0 17.67 14.327 32 32 32s32-14.33 32-32v-170.669z","M130.705 199.556v624.889c0 39.52 32.036 71.555 71.556 71.555h624.888c39.52 0 71.555-32.035 71.555-71.555v-624.889c0-39.519-32.035-71.556-71.555-71.556h-624.888c-39.519 0-71.556 32.036-71.556 71.556zM202.26 192h624.888c4.173 0 7.555 3.383 7.555 7.556v624.889c0 4.173-3.382 7.555-7.555 7.555h-624.888c-4.173 0-7.556-3.382-7.556-7.555v-624.889c0-4.173 3.383-7.556 7.556-7.556z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["dashboard"],"defaultCode":59714,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":217,"name":"dashboard","prevSize":32,"id":78,"code":59718},"setIdx":0,"setId":2,"iconIdx":91},{"icon":{"paths":["M739.68 864v-448h-448.593v448h448.593zM227.003 864v-448c-35.393 0-64.084-28.653-64.084-64v-128c0-35.346 28.692-64 64.084-64h224.297c0-35.346 28.691-64 64.083-64 35.395 0 64.086 28.654 64.086 64h224.294c35.395 0 64.086 28.654 64.086 64v128c0 35.347-28.691 64-64.086 64v448c0 35.347-28.691 64-64.083 64h-448.593c-35.393 0-64.085-28.653-64.085-64zM803.763 224h-576.761v128h576.761v-128zM419.258 544v192c0 17.674 14.346 32 32.042 32s32.042-14.326 32.042-32v-192c0-17.674-14.346-32-32.042-32s-32.042 14.326-32.042 32zM579.469 512c17.696 0 32.042 14.326 32.042 32v192c0 17.674-14.346 32-32.042 32s-32.042-14.326-32.042-32v-192c0-17.674 14.346-32 32.042-32z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["delete"],"defaultCode":59715,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":218,"name":"delete","prevSize":32,"id":79,"code":59719},"setIdx":0,"setId":2,"iconIdx":92},{"icon":{"paths":["M341.334 778.672c-17.674 0-32 14.326-32 32s14.327 32 32 32h341.334c17.67 0 32-14.326 32-32s-14.33-32-32-32h-341.334z","M85.334 298.672c0-70.692 57.308-128 128-128h597.335c70.691 0 128 57.308 128 128v298.666c0 70.694-57.309 128-128 128h-597.335c-70.692 0-128-57.306-128-128v-298.666zM213.334 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.347 28.654 64 64 64h597.335c35.344 0 64-28.653 64-64v-298.666c0-35.347-28.656-64-64-64h-597.335z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["desktop"],"defaultCode":59716,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":9,"name":"desktop","prevSize":32,"id":80,"code":59720},"setIdx":0,"setId":2,"iconIdx":93},{"icon":{"paths":["M325.837 160c0-17.673-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.327-32.042 32v64c0 17.673 14.346 32 32.042 32h64.085c17.696 0 32.043-14.327 32.043-32v-64zM325.837 586.666c0-17.674-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.085c17.696 0 32.043-14.326 32.043-32v-64zM454.006 160c0-17.673 14.346-32 32.042-32h64.083c17.696 0 32.042 14.327 32.042 32v64c0 17.673-14.346 32-32.042 32h-64.083c-17.696 0-32.042-14.327-32.042-32v-64zM582.173 373.334c0-17.674-14.346-32-32.042-32h-64.083c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM454.006 586.666c0-17.674 14.346-32 32.042-32h64.083c17.696 0 32.042 14.326 32.042 32v64c0 17.674-14.346 32-32.042 32h-64.083c-17.696 0-32.042-14.326-32.042-32v-64zM582.173 800c0-17.674-14.346-32-32.042-32h-64.083c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM710.342 160c0-17.673 14.346-32 32.045-32h64.083c17.696 0 32.042 14.327 32.042 32v64c0 17.673-14.346 32-32.042 32h-64.083c-17.699 0-32.045-14.327-32.045-32v-64zM838.512 373.334c0-17.674-14.346-32-32.042-32h-64.083c-17.699 0-32.045 14.326-32.045 32v64c0 17.674 14.346 32 32.045 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM710.342 586.666c0-17.674 14.346-32 32.045-32h64.083c17.696 0 32.042 14.326 32.042 32v64c0 17.674-14.346 32-32.042 32h-64.083c-17.699 0-32.045-14.326-32.045-32v-64zM325.837 373.334c0-17.674-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.085c17.696 0 32.043-14.326 32.043-32v-64z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["dialpad"],"defaultCode":59717,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":220,"name":"dialpad","prevSize":32,"id":81,"code":59721},"setIdx":0,"setId":2,"iconIdx":94},{"icon":{"paths":["M561.667 127.992c-121.696 0-200.973 50.509-248.813 115.801-46.216 63.073-61.638 137.752-61.933 188.616-8.705 98.746 28.601 172.896 89.422 223.469 59.686 49.626 140.202 75.258 217.85 83.738 77.75 8.486 161.715 1.197 227.856-12.547 33.066-6.87 62.774-15.581 85.642-25.331 11.366-4.848 22.029-10.368 30.797-16.669 7.875-5.661 18.541-14.976 23.242-28.835 7.286-21.475-3.133-38.784-11.965-48.102-8.41-8.877-19.427-15.405-28.24-20.016-9.306-4.867-19.379-9.206-27.533-12.707-8.973-3.856-14.858-6.4-18.56-8.432-4.845-2.662-8.842-5.088-12.026-7.203 20.256-47.142 31.549-77.043 37.696-99.19 7.293-26.272 7.315-41.725 7.315-58.909 0-21.523-9.603-88.542-52.81-151.108-44.701-64.73-124.074-122.573-257.939-122.573zM314.916 433.898c0-40.416 12.607-101.84 49.564-152.277 35.782-48.836 95.882-89.628 197.187-89.628 112.086 0 172.090 46.886 205.277 94.94 34.678 50.219 41.472 104.040 41.472 114.741v0.198c0 14.918 0 23.638-4.982 41.594-5.491 19.779-16.963 50.189-41.539 106.538-5.802 13.296-2.762 25.77 1.155 33.754 3.664 7.478 9.005 13.242 13.331 17.261 8.835 8.211 20.653 15.686 32.224 22.045 6.618 3.638 15.238 7.334 22.563 10.477l1.562 0.672c5.904 2.534 11.52 4.97 16.688 7.418-0.909 0.406-1.856 0.819-2.835 1.238-17.741 7.568-43.078 15.206-73.555 21.539-60.947 12.666-138.064 19.21-207.888 11.587-69.926-7.635-136.982-30.336-183.878-69.328-45.459-37.798-73.674-92.064-66.481-169.821l0.136-1.469v-1.478zM819.162 553.354l-0.074-0.086c0 0.003 0.010 0.013 0.029 0.035 0.010 0.013 0.026 0.029 0.045 0.051z","M178.552 502.474c7.496-11.258 16.26-22.259 26.436-32.592 0.876 31.747 6.169 61.226 15.216 88.358-15.094 30.877-18.374 59.315-18.374 65.357v0.186c0 11.382 0 17.536 3.524 30.701 3.993 14.918 12.441 38.211 30.867 82.022 5.256 12.496 2.48 24.099-0.985 31.43-3.249 6.874-7.925 12.058-11.512 15.514-7.319 7.053-16.852 13.254-25.75 18.326-5.008 2.854-11.333 5.706-16.546 8.029 11.182 3.939 24.98 7.814 40.802 11.226 44.977 9.693 101.833 14.669 153.062 8.87 51.28-5.808 99.776-23.014 133.35-51.965l0.608-0.528c14.794 2.784 29.53 4.938 44.051 6.525 10.886 1.187 21.862 2.086 32.877 2.72-10.122 14.797-22.163 28.045-35.741 39.754-46.362 39.974-108.547 60.362-167.946 67.088-59.45 6.73-123.405 0.947-173.744-9.901-25.17-5.424-48.056-12.352-65.901-20.243-8.86-3.92-17.458-8.502-24.686-13.891-6.431-4.794-15.831-13.171-20.001-25.92-6.422-19.632 2.792-35.443 10.458-43.834 7.193-7.872 16.405-13.462 23.248-17.174 7.309-3.965 15.158-7.466 21.235-10.173 6.907-3.078 10.854-4.858 13.183-6.186 1.349-0.768 2.591-1.501 3.727-2.195-13.937-33.885-21.976-56.118-26.48-72.947-5.68-21.222-5.7-33.875-5.7-47.434 0-17.712 7.436-71.139 40.721-121.123zM155.337 797.248c-0.012 0 0.084 0.102 0.317 0.301-0.19-0.202-0.306-0.301-0.317-0.301zM179.587 737.085c-0.004 0-0.052 0.051-0.137 0.15l0.112-0.118c0.019-0.022 0.027-0.032 0.025-0.032z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["discussions"],"defaultCode":59720,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":223,"name":"discussions","prevSize":32,"id":84,"code":59722},"setIdx":0,"setId":2,"iconIdx":95},{"icon":{"paths":["M160 256c0-17.673 14.327-32 32-32h640c17.674 0 32 14.327 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.327-32-32zM160 421.162c0-17.674 14.327-32 32-32h640c17.674 0 32 14.326 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.326-32-32zM160 602.838c0-17.674 14.327-32 32-32h640c17.674 0 32 14.326 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.326-32-32zM160 768c0-17.674 14.327-32 32-32h344.614c17.674 0 32 14.326 32 32s-14.326 32-32 32h-344.614c-17.673 0-32-14.326-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["document"],"defaultCode":59721,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":224,"name":"document","prevSize":32,"id":85,"code":59723},"setIdx":0,"setId":2,"iconIdx":96},{"icon":{"paths":["M128.169 352c0-17.674 14.346-32 32.042-32h704.928c17.696 0 32.045 14.326 32.045 32s-14.349 32-32.045 32h-704.928c-17.696 0-32.042-14.326-32.042-32zM213.615 522.669c0-17.674 14.346-32 32.042-32h534.036c17.699 0 32.045 14.326 32.045 32s-14.346 32-32.045 32h-534.036c-17.697 0-32.042-14.326-32.042-32zM331.104 661.331c-17.698 0-32.043 14.326-32.043 32s14.346 32 32.043 32h363.146c17.696 0 32.042-14.326 32.042-32s-14.346-32-32.042-32h-363.146z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["donner"],"defaultCode":59722,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":225,"name":"donner","prevSize":32,"id":86,"code":59724},"setIdx":0,"setId":2,"iconIdx":97},{"icon":{"paths":["M273.128 356.678c-6.62 27.766-2.384 63.757 25.498 105.581l21.374 32.061v17.69h-48c-44.011 0-70.483 14.874-86.278 33.619-16.496 19.578-24.573 47.264-23.734 77.491 0.841 30.262 10.601 59.968 25.818 81.312 15.127 21.216 33.404 31.578 52.195 31.578h79.999v64h-80c-45.209 0-80.932-25.642-104.306-58.426-23.283-32.656-36.522-74.95-37.682-116.688-1.16-41.773 9.763-86.083 38.766-120.506 20.726-24.598 49.155-42.32 84.825-50.784-16.1-39.011-19.009-77.050-10.731-111.77 11.253-47.2 42.304-84.492 80.791-107.342 38.4-22.798 85.677-32.139 131.303-21.965 35.584 7.935 68.909 27.48 95.251 59.554 53.75-35.147 127.584-30.892 182.483-2.495 34.438 17.812 64.794 46.382 81.437 85.010 12.294 28.531 16.438 61.011 10.608 96.205 46.112 6.682 81.507 25.155 105.613 53.456 30.349 35.626 38.106 81.35 33.446 123.283-4.659 41.917-21.946 83.485-46.544 115.114-24.061 30.934-59.354 57.354-101.261 57.354h-80v-64h80c14.093 0 32.8-9.581 50.742-32.646 17.398-22.371 30.112-52.806 33.453-82.89 3.341-30.067-2.902-56.339-18.554-74.714-15.222-17.869-44.035-33.75-97.642-33.75h-45.686l15.613-42.938c13.546-37.251 11.091-66.742 1.437-89.149-9.856-22.87-28.502-41.302-52.064-53.488-49.587-25.649-107.475-18.625-134.717 14.064l-30.134 36.16-22.541-41.325c-19.757-36.219-47.232-54.175-74.87-60.339-28.378-6.327-59.098-0.669-84.701 14.53-25.512 15.148-44.461 38.855-51.208 67.152zM630.979 787.222c12.298-12.691 11.981-32.95-0.707-45.251-12.691-12.298-32.95-11.981-45.251 0.707l-41.021 42.326v-273.005c0-17.674-14.326-32-32-32s-32 14.326-32 32v273.005l-41.021-42.326c-12.301-12.688-32.56-13.005-45.251-0.707-12.688 12.301-13.005 32.56-0.707 45.251l96 99.050c6.029 6.218 14.32 9.728 22.979 9.728s16.95-3.51 22.979-9.728l96-99.050z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["download"],"defaultCode":59723,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":226,"name":"download","prevSize":32,"id":87,"code":59725},"setIdx":0,"setId":2,"iconIdx":98},{"icon":{"paths":["M795.648 132.004c-25.027-25.027-65.603-25.027-90.63-0l-530.467 530.469c-9.577 9.574-15.873 21.939-17.985 35.318l-19.611 124.186c-1.386 8.771-0.942 17.299 1.006 25.261 7.597 31.037 38.083 53.44 72.291 48.038l124.184-19.613c13.379-2.112 25.744-8.41 35.322-17.984l530.467-530.47c12.512-12.513 18.768-28.914 18.768-45.316 0-10.379-2.506-20.757-7.517-30.15-2.906-5.451-6.656-10.57-11.251-15.164l-104.576-104.575zM630.675 296.979l119.658-119.658 104.576 104.574-119.658 119.657-104.576-104.573zM200.255 831.974l19.611-124.186 365.494-365.494 104.576 104.573-365.494 365.494-124.187 19.613z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["edit"],"defaultCode":59724,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":227,"name":"edit","prevSize":32,"id":88,"code":59726},"setIdx":0,"setId":2,"iconIdx":99},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM400.166 480c-35.347 0-64-28.653-64-64s28.653-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64zM688.166 416c0-35.347-28.653-64-64-64s-64 28.653-64 64c0 35.347 28.653 64 64 64s64-28.653 64-64zM353.226 720c8.963 0 17.526-3.53 24.272-9.437 21.603-18.918 42.64-31.958 62.701-40.509 36.563-15.59 71.805-17.107 104.794-9.939 37.632 8.176 72.659 27.808 102.109 51.341 6.726 5.376 14.995 8.544 23.606 8.544 30.218 0 45.616-34.256 22.397-53.594-36.912-30.742-82.79-57.59-134.522-68.832-44.794-9.734-93.67-7.632-143.485 13.606-28.79 12.275-57.232 30.653-85.024 55.933-21.572 19.619-6.010 52.886 23.152 52.886z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["emoji-bad-mood"],"defaultCode":59725,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":228,"name":"emoji-bad-mood","prevSize":32,"id":89,"code":59727},"setIdx":0,"setId":2,"iconIdx":100},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM400.166 480c-35.347 0-64-28.653-64-64s28.653-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64zM688.166 416c0-35.347-28.653-64-64-64s-64 28.653-64 64c0 35.347 28.653 64 64 64s64-28.653 64-64zM384 640h256c17.674 0 32 14.326 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32s14.326-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["emoji-neutral-mood"],"defaultCode":59726,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":229,"name":"emoji-neutral-mood","prevSize":32,"id":90,"code":59728},"setIdx":0,"setId":2,"iconIdx":101},{"icon":{"paths":["M330.074 644.886c-21.572-19.619-6.010-52.886 23.152-52.886 8.963 0 17.526 3.53 24.272 9.437 21.603 18.918 42.64 31.958 62.701 40.509 36.563 15.59 71.805 17.107 104.794 9.939 37.632-8.176 72.659-27.808 102.109-51.341 6.726-5.376 14.995-8.544 23.606-8.544 30.218 0 45.616 34.256 22.397 53.594-36.912 30.742-82.79 57.59-134.522 68.832-44.794 9.734-93.67 7.632-143.485-13.606-28.79-12.275-57.232-30.653-85.024-55.933z","M400.17 480c35.344 0 64-28.653 64-64s-28.656-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64z","M624.17 480c35.344 0 64-28.653 64-64s-28.656-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64z","M928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["emoji"],"defaultCode":59727,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":230,"name":"emoji","prevSize":32,"id":91,"code":59729},"setIdx":0,"setId":2,"iconIdx":102},{"icon":{"paths":["M655.744 512c88.365 0 160-71.635 160-160s-71.635-160-160-160c-88.368 0-160 71.635-160 160 0 26.934 6.653 52.314 18.41 74.582l-11.914 11.914 0.128 0.131-299.135 299.136c-3.533 9.926-6.41 20.976-7.738 31.606-1.652 13.219-0.563 22.966 1.874 28.938 1.768 4.333 4.22 7.232 10.772 9.014 8.316 2.262 24.518 2.794 52.822-5.501 8.524-3.808 27.721-16.285 45.132-35.382 18.18-19.939 29.648-41.856 29.648-62.438 0-15.642 11.309-28.992 26.736-31.565l91.75-15.293c3.766-2.656 18.768-15.693 10.134-58.867-2.099-10.49 1.184-21.338 8.749-28.902l88.198-88.195c26.467 19.379 59.114 30.822 94.432 30.822zM439.571 410.915c-5.104-18.771-7.827-38.525-7.827-58.915 0-123.712 100.288-224 224-224 123.709 0 224 100.288 224 224s-100.291 224-224 224c-29.29 0-57.264-5.619-82.906-15.843l-43.008 43.008c7.158 65.494-23.99 104.534-55.968 115.194l-2.384 0.794-74.854 12.477c-7.085 31.405-25.174 58.122-43.235 77.933-23.123 25.357-50.958 44.627-69.762 52.15l-1.324 0.528-1.365 0.41c-34.714 10.416-64.73 13.19-89.594 6.429-26.782-7.286-44.33-24.784-53.228-46.586-8.23-20.163-8.473-42.282-6.126-61.062 2.402-19.216 7.899-37.958 14.042-53.315 1.61-4.022 4.020-7.677 7.084-10.742l286.456-286.458zM623.744 336c0 26.509 21.488 48 48 48 26.509 0 48-21.491 48-48s-21.491-48-48-48c-26.512 0-48 21.49-48 48z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["encrypted"],"defaultCode":59728,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":231,"name":"encrypted","prevSize":32,"id":92,"code":59730},"setIdx":0,"setId":2,"iconIdx":103},{"icon":{"paths":["M536.89 64c233.677 0 423.11 189.433 423.11 423.11h-423.11v-423.11z","M64 536.89c0-233.678 189.433-423.112 423.11-423.112v423.112h423.11c0 233.677-189.43 423.11-423.11 423.11-233.677 0-423.11-189.434-423.11-423.11z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["engagement-dashboard"],"defaultCode":59729,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":232,"name":"engagement-dashboard","prevSize":32,"id":93,"code":59731},"setIdx":0,"setId":2,"iconIdx":104},{"icon":{"paths":["M416 586.445v177.232l75.514-62.928c11.869-9.888 29.104-9.888 40.973 0l75.514 62.928v-177.232c-29.098 13.821-61.645 21.555-96 21.555s-66.902-7.734-96-21.555zM352 540.768v291.232c0 12.416 7.184 23.712 18.426 28.979 11.245 5.267 24.522 3.552 34.061-4.397l107.514-89.594 107.514 89.594c9.539 7.949 22.816 9.664 34.061 4.397 11.242-5.267 18.426-16.563 18.426-28.979v-291.232c39.59-40.403 64-95.734 64-156.768 0-123.712-100.288-224.001-224-224.001s-224 100.288-224 224.001c0 61.034 24.41 116.365 64 156.768zM416 512.013l-0.016-0.013c-38.854-29.19-63.984-75.661-63.984-128 0-88.366 71.635-160.001 160-160.001s160 71.635 160 160.001c0 52.339-25.13 98.81-63.984 128l-0.016 0.013c-26.742 20.083-59.981 31.987-96 31.987s-69.258-11.904-96-31.987z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["enterprise-feature"],"defaultCode":59730,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":233,"name":"enterprise-feature","prevSize":32,"id":94,"code":59732},"setIdx":0,"setId":2,"iconIdx":105},{"icon":{"paths":["M500.64 128c213.35 0 386.336 172.985 386.336 386.336 0 192.87-141.254 352.707-325.974 381.664v-269.958h90.022l17.114-111.706h-107.136v-72.47c0-11.462 2.102-22.822 7.274-32.544 2.474-4.656 5.651-8.934 9.635-12.666 9.866-9.245 24.688-15.152 46.058-15.152h48.733v-95.080c0 0-44.224-7.552-86.493-7.552-84.698 0-141.258 49.313-145.651 138.907-0.182 3.738-0.275 7.546-0.275 11.424v85.133h-98.122v111.706h98.122v269.958c-184.721-29.011-325.978-188.848-325.978-381.664 0-213.351 172.985-386.336 386.336-386.336z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["facebook-monochromatic"],"defaultCode":59731,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":30,"name":"facebook-monochromatic","prevSize":32,"id":95,"code":59733},"setIdx":0,"setId":2,"iconIdx":106},{"icon":{"paths":["M373.334 448c0-17.674 14.326-32 32-32h213.331c17.674 0 32 14.326 32 32s-14.326 32-32 32h-213.331c-17.674 0-32-14.326-32-32z","M405.334 544c-17.674 0-32 14.326-32 32s14.326 32 32 32h213.331c17.674 0 32-14.326 32-32s-14.326-32-32-32h-213.331z","M256 128c-17.673 0-32 14.327-32 32v704c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-501.744c0-6.672-2.083-13.174-5.962-18.602l-144.467-202.254c-6.006-8.409-15.706-13.4-26.038-13.4h-367.533zM736 372.509v459.491h-448v-640h319.066l128.934 180.509z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["file-document"],"defaultCode":59732,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":29,"name":"file-document","prevSize":32,"id":96,"code":59734},"setIdx":0,"setId":2,"iconIdx":107},{"icon":{"paths":["M128 192c-17.673 0-32 14.327-32 32v576.019c0 17.674 14.327 32 32 32h768c17.674 0 32-14.326 32-32v-576.019c0-17.673-14.326-32-32-32h-768zM160 378.301v-122.301h149.333v122.301h-149.333zM160 442.301h149.333v141.722h-149.333v-141.722zM160 648.022h149.333v119.997h-149.333v-119.997zM373.334 768.019v-119.997h490.666v119.997h-490.666zM864 584.022h-490.666v-141.722h490.666v141.722zM864 378.301h-490.666v-122.301h490.666v122.301z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["file-sheet"],"defaultCode":59733,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":28,"name":"file-sheet","prevSize":32,"id":97,"code":59735},"setIdx":0,"setId":2,"iconIdx":108},{"icon":{"paths":["M206.667 293.692c-30.421-42.402-0.116-101.442 52.070-101.442h518.572c51.174 0 81.706 57.026 53.334 99.615l-180.678 271.207v220.762c0 46.352-47.693 77.373-90.067 58.582l-121.424-53.85c-23.168-10.275-38.102-33.238-38.102-58.582v-166.304l-193.704-269.988zM777.309 256.334h-518.572l193.705 269.989c7.811 10.89 12.013 23.955 12.013 37.357v166.304l121.424 53.85v-220.762c0-12.646 3.741-25.008 10.752-35.533l180.678-271.205z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["filter"],"defaultCode":59734,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":27,"name":"filter","prevSize":32,"id":98,"code":59736},"setIdx":0,"setId":2,"iconIdx":109},{"icon":{"paths":["M623.091 896c-2.806 0-5.296-0.624-7.168-0.938-62-16.858-102.816-39.648-145.811-80.858-55.149-54.010-85.37-125.814-85.37-202.301 0-65.875 56.704-119.571 126.496-119.571s126.496 53.696 126.496 119.571c0 34.963 31.469 63.373 69.792 63.373s69.789-28.41 69.789-63.373c0-135.808-119.642-246.637-266.701-246.637-104.998 0-200.338 57.133-243.334 145.795-14.332 29.347-21.498 63.066-21.498 100.842 0 28.72 2.492 73.363 24.925 131.744 2.804 7.181 2.492 14.675-0.623 21.856-3.116 6.867-9.035 11.862-16.201 14.358-2.804 1.251-6.231 1.562-9.659 1.562-11.84 0-22.433-7.181-26.484-18.106-19.005-50.266-28.353-99.904-28.353-151.728 0-46.205 9.036-88.352 26.795-125.504 52.343-108.019 167.936-177.638 294.432-177.638 178.528 0 323.718 135.804 323.718 302.828 0 65.875-56.704 119.571-126.806 119.571s-126.81-53.696-126.81-119.571c0-34.963-31.469-63.373-69.792-63.373-38.634 0-69.789 28.41-69.789 63.373 0 61.504 24.301 119.261 68.544 162.342 35.206 34.029 68.858 53.072 120.576 67.123 7.168 1.872 13.398 6.557 17.136 13.11 3.741 6.557 4.675 14.362 2.806 21.229-2.806 11.866-14.022 20.918-27.107 20.918zM426.803 888.195c-7.789 0-15.267-3.123-20.253-8.742-33.338-32.781-51.718-54.010-77.891-100.525-26.795-47.142-41.127-105.21-41.127-167.338 0-116.448 100.948-211.357 224.951-211.357s224.954 94.909 224.954 211.357c0 15.61-12.464 28.096-28.352 28.096-15.891 0-28.666-12.173-28.666-28.096 0-85.542-75.398-155.162-168.246-155.162s-168.246 69.619-168.246 155.162c0 52.448 11.84 100.528 34.272 139.552 23.366 41.52 38.947 59.005 68.858 88.662 10.902 11.238 10.902 28.723 0 39.648-5.92 5.933-13.088 8.742-20.253 8.742zM699.738 818.886c-47.36 0-88.797-11.862-123.382-34.963-59.197-39.651-94.717-103.962-94.717-172.333 0-15.61 12.464-28.099 28.352-28.099 15.891 0 28.355 12.49 28.355 28.099 0 49.638 26.17 96.781 69.789 125.501 25.238 16.861 55.149 24.976 91.603 24.976 7.789 0 22.432-0.934 38.010-3.744 1.558-0.314 3.427-0.314 4.986-0.314 13.709 0 25.238 9.99 27.728 23.414 1.248 7.181-0.31 14.672-4.362 20.605-4.362 6.243-10.902 10.614-18.694 11.862-23.366 4.685-43.93 4.995-47.667 4.995zM188.765 435.824c-5.608 0-11.217-1.562-16.202-4.995-6.543-4.058-10.593-10.614-12.151-18.106-1.246-7.494 0.311-14.986 4.985-21.232 38.635-53.696 87.862-95.843 146.125-125.501 60.132-30.595 129.613-46.829 200.961-46.829 71.037 0 140.205 15.922 200.029 46.205 58.573 29.659 107.802 71.492 146.125 124.567 4.362 5.93 6.23 13.424 4.986 20.915-1.248 7.494-5.61 14.048-11.84 18.419-4.986 3.437-10.595 4.995-16.515 4.995-9.034 0-17.757-4.371-23.056-11.862-33.338-45.891-75.709-82.109-125.562-107.083-52.342-26.224-112.787-40.273-174.477-40.273-62.314 0-122.758 14.049-175.101 40.585-49.852 25.913-92.537 62.128-126.186 108.643-3.739 6.87-12.463 11.552-22.121 11.552zM733.696 239.141c-4.672 0-9.347-1.249-13.395-3.434-71.35-35.902-133.354-51.512-207.504-51.512-74.467 0-144.256 17.483-207.817 51.824-4.050 2.185-8.724 3.122-13.397 3.122-10.282 0-19.629-5.62-24.925-14.361-3.739-6.556-4.673-14.361-2.492-21.541s7.166-13.424 13.709-16.859c72.594-38.712 151.733-58.38 234.924-58.38 82.563 0 154.848 17.795 233.987 58.068 6.854 3.434 11.84 9.366 14.33 16.859 2.182 7.18 1.248 14.673-2.179 21.229-4.986 9.054-14.643 14.985-25.238 14.985z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["fingerprint"],"defaultCode":59735,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":26,"name":"fingerprint","prevSize":32,"id":99,"code":59737},"setIdx":0,"setId":2,"iconIdx":110},{"icon":{"paths":["M266.667 170.664c0-17.673 14.327-32 32-32h500.623c12.122 0 23.2 6.848 28.621 17.689s4.253 23.814-3.021 33.511l-122.134 162.843 122.134 162.845c7.274 9.696 8.442 22.672 3.021 33.51-5.421 10.842-16.499 17.69-28.621 17.69h-468.624v286.579c0 17.674-14.325 32-31.999 32s-32-14.326-32-32v-682.667zM330.666 502.752h404.624l-98.134-130.845c-8.531-11.376-8.531-27.021 0-38.4l98.134-130.843h-404.624v300.088z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["flag"],"defaultCode":59736,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":25,"name":"flag","prevSize":32,"id":100,"code":59738},"setIdx":0,"setId":2,"iconIdx":111},{"icon":{"paths":["M140.020 213.336c0-17.673 14.327-32 32-32h234.057c7.181 0 14.157 2.416 19.798 6.86l88.813 69.94h339.997c17.674 0 32 14.327 32 32v520.533c0 17.674-14.326 32-32 32h-682.665c-17.673 0-32-14.326-32-32v-597.333zM204.020 245.336v533.333h618.665v-456.534h-319.085c-7.181 0-14.154-2.415-19.798-6.858l-88.813-69.94h-190.969z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["folder"],"defaultCode":59737,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":24,"name":"folder","prevSize":32,"id":101,"code":59739},"setIdx":0,"setId":2,"iconIdx":112},{"icon":{"paths":["M370.704 544c0-17.674-14.326-32-32-32s-31.999 14.326-31.999 32v32h-32c-17.673 0-32 14.326-32 32s14.327 32 32 32h32v32c0 17.674 14.325 32 31.999 32s32-14.326 32-32v-32h32c17.674 0 32-14.326 32-32s-14.326-32-32-32h-32v-32z","M746.704 624c30.928 0 56-25.072 56-56s-25.072-56-56-56c-30.928 0-56 25.072-56 56s25.072 56 56 56z","M674.704 664c0 30.928-25.072 56-56 56s-56-25.072-56-56c0-30.928 25.072-56 56-56s56 25.072 56 56z","M706.704 128c0-17.673-14.326-32-32-32s-32 14.327-32 32v96h-128c-17.674 0-32 14.327-32 32v96h-191.999c-106.038 0-192 85.962-192 192v128c0 106.038 85.961 192 192 192h447.999c106.038 0 192-85.962 192-192v-128c0-106.038-85.962-192-192-192h-192v-64h128c17.674 0 32-14.327 32-32v-128zM866.704 544v128c0 70.691-57.306 128-128 128h-447.999c-70.692 0-128-57.309-128-128v-128c0-70.691 57.308-128 128-128h447.999c70.694 0 128 57.309 128 128z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["game"],"defaultCode":59738,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":23,"name":"game","prevSize":32,"id":102,"code":59753},"setIdx":0,"setId":2,"iconIdx":113},{"icon":{"paths":["M494.31 170.648l23.037 24.005 23.629-24.005 74.669 0.041v75.854h74.669v75.856h74.666v26.518h0.003v504.419h-522.678v-682.689h252.006zM540.976 246.503h-224.004v530.979h373.341v-379.229h-149.338v-151.75z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["giphy-monochromatic"],"defaultCode":59739,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":21,"name":"giphy-monochromatic","prevSize":32,"id":103,"code":59754},"setIdx":0,"setId":2,"iconIdx":114},{"icon":{"paths":["M634.803 170.664h-256.112l-264.387 460.802 124.984 221.866h534.916l124.982-221.866-264.384-460.802zM367.814 631.466l138.931-239.789 138.934 239.789h-277.866z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["google-drive-monochromatic"],"defaultCode":59756,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":19,"name":"google-drive-monochromatic","prevSize":32,"id":104,"code":59756},"setIdx":0,"setId":2,"iconIdx":115},{"icon":{"paths":["M129.354 272c0-17.673 14.327-32 32-32h704c17.674 0 32 14.327 32 32s-14.326 32-32 32h-704c-17.673 0-32-14.327-32-32zM289.354 432c0 17.674-14.327 32-32 32s-32-14.326-32-32c0-17.674 14.327-32 32-32s32 14.326 32 32zM289.354 752c0 17.674-14.327 32-32 32s-32-14.326-32-32c0-17.674 14.327-32 32-32s32 14.326 32 32zM449.354 624c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.674 0-32 14.326-32 32s14.326 32 32 32zM385.354 400c-17.674 0-32 14.326-32 32s14.326 32 32 32h480c17.674 0 32-14.326 32-32s-14.326-32-32-32h-480zM353.354 752c0-17.674 14.326-32 32-32h480c17.674 0 32 14.326 32 32s-14.326 32-32 32h-480c-17.674 0-32-14.326-32-32zM577.354 560c-17.674 0-32 14.326-32 32s14.326 32 32 32h288c17.674 0 32-14.326 32-32s-14.326-32-32-32h-288z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["group-by-type"],"defaultCode":59757,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":150,"name":"group-by-type","prevSize":32,"id":105,"code":59757},"setIdx":0,"setId":2,"iconIdx":116},{"icon":{"paths":["M170.668 245.336c0-17.673 14.327-32 32-32h640.846c17.674 0 32 14.327 32 32s-14.326 32-32 32h-640.846c-17.673 0-32-14.327-32-32zM170.668 501.334c0-17.67 14.327-32 32-32h640.846c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-640.846c-17.673 0-32-14.326-32-32zM170.668 757.334c0-17.67 14.327-32 32-32h640.846c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-640.846c-17.673 0-32-14.326-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["hamburguer"],"defaultCode":59758,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":148,"name":"hamburguer","prevSize":32,"id":106,"code":59758},"setIdx":0,"setId":2,"iconIdx":117},{"icon":{"paths":["M832 512c0 176.73-143.27 320-320 320s-320-143.27-320-320h-64c0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384-123.718 0-233.772 58.508-304 149.364v-101.364c0-17.673-14.327-32-32-32s-32 14.327-32 32v192c0 17.674 14.327 32 32 32h176c17.674 0 32-14.326 32-32s-14.326-32-32-32h-107.295c57.24-86.756 155.583-144 267.295-144 176.73 0 320 143.27 320 320z","M544 320c0-17.673-14.326-32-32-32s-32 14.327-32 32v224c0 8.486 3.373 16.627 9.373 22.627l96 96c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-86.627-86.627v-210.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["history"],"defaultCode":59759,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":145,"name":"history","prevSize":32,"id":107,"code":59759},"setIdx":0,"setId":2,"iconIdx":118},{"icon":{"paths":["M522.042 195.354l224.464 260.044v366.234c0 5.856-4.752 10.605-10.614 10.605h-136.416v-149.821c0-23.424-19.014-42.413-42.47-42.413h-85.955c-23.453 0-42.467 18.989-42.467 42.413v149.821h-136.41c-5.864 0-10.617-4.749-10.617-10.605v-366.307l224.403-259.971c4.237-4.907 11.85-4.907 16.083 0zM560.57 895.856h175.322c41.043 0 74.32-33.232 74.32-74.224v-244.205h56.227c12.454 0 23.766-7.251 28.954-18.557 5.19-11.309 3.302-24.602-4.829-34.022l-320.272-371.033c-29.648-34.347-82.934-34.347-112.582 0l-320.27 371.033c-8.132 9.421-10.020 22.714-4.831 34.022 5.188 11.306 16.501 18.557 28.956 18.557h56.288v244.205c0 40.992 33.274 74.224 74.32 74.224h175.316c1.174 0.096 2.362 0.147 3.562 0.147h85.955c1.2 0 2.39-0.051 3.565-0.147z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["home"],"defaultCode":59760,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":146,"name":"home","prevSize":32,"id":108,"code":59760},"setIdx":0,"setId":2,"iconIdx":119},{"icon":{"paths":["M406.685 405.334c0 47.126-38.205 85.331-85.334 85.331-47.127 0-85.332-38.205-85.332-85.331 0-47.13 38.205-85.334 85.332-85.334 47.13 0 85.334 38.205 85.334 85.334z","M97.352 192c0-17.673 14.327-32 32-32h767.999c17.674 0 32 14.327 32 32v640c0 17.674-14.326 32-32 32h-767.999c-17.673 0-32-14.326-32-32v-640zM161.352 764.163l151.704-176.989c9.271-10.813 24.57-14.202 37.536-8.307l153.123 69.603 160.474-204.24c6.010-7.651 15.174-12.15 24.902-12.23s18.963 4.272 25.098 11.821l151.162 186.048v-405.869h-703.999v540.163zM214.927 800h650.423v-68.64l-175.581-216.099-166.781 212.269-176.989-80.448-131.073 152.918z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["image"],"defaultCode":59761,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":147,"name":"image","prevSize":32,"id":109,"code":59761},"setIdx":0,"setId":2,"iconIdx":120},{"icon":{"paths":["M512 873.027c-199.389 0-361.026-161.635-361.026-361.024s161.636-361.026 361.026-361.026c199.389 0 361.024 161.637 361.024 361.026s-161.635 361.024-361.024 361.024zM512 938.669c235.642 0 426.666-191.024 426.666-426.666s-191.024-426.667-426.666-426.667c-235.642 0-426.667 191.025-426.667 426.667s191.025 426.666 426.667 426.666zM544.819 347.901c0 18.125-14.694 32.819-32.819 32.819-18.128 0-32.822-14.694-32.822-32.819 0-18.128 14.694-32.821 32.822-32.821 18.125 0 32.819 14.693 32.819 32.821zM512 413.542c-18.128 0-32.822 14.694-32.822 32.819v229.744c0 18.125 14.694 32.819 32.822 32.819 18.125 0 32.819-14.694 32.819-32.819v-229.744c0-18.125-14.694-32.819-32.819-32.819z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["info"],"defaultCode":59762,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":144,"name":"info","prevSize":32,"id":110,"code":59762},"setIdx":0,"setId":2,"iconIdx":121},{"icon":{"paths":["M512 864c-194.404 0-352-157.597-352-352s157.596-352 352-352c194.403 0 352 157.596 352 352s-157.597 352-352 352zM512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.75 0-416 186.25-416 416s186.25 416 416 416zM662.627 361.373c12.496 12.496 12.496 32.758 0 45.254l-105.373 105.373 105.373 105.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-105.373-105.373-105.373 105.373c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l105.373-105.373-105.373-105.373c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l105.373 105.373 105.373-105.373c12.496-12.496 32.758-12.496 45.254 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["input-clear"],"defaultCode":59763,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":143,"name":"input-clear","prevSize":32,"id":111,"code":59763},"setIdx":0,"setId":2,"iconIdx":122},{"icon":{"paths":["M384 288c-17.674 0-32 14.327-32 32s14.326 32 32 32h256c17.674 0 32-14.326 32-32s-14.326-32-32-32h-256z","M352 448c0-17.674 14.326-32 32-32h256c17.674 0 32 14.326 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M512 640c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M224 224v576c0 35.347 28.654 64 64 64h448c35.347 0 64-28.653 64-64v-576c0-35.346-28.653-64-64-64h-448c-35.346 0-64 28.654-64 64zM288 800v-576h448v576h-448z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["instance"],"defaultCode":59764,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":18,"name":"instance","prevSize":32,"id":112,"code":59764},"setIdx":0,"setId":2,"iconIdx":123},{"icon":{"paths":["M544 352c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.674 0-32 14.327-32 32s14.326 32 32 32zM559.61 436.995c2.755-17.456-9.162-33.843-26.618-36.598-17.456-2.758-33.843 9.162-36.598 26.618l-48 304c-2.758 17.456 9.158 33.843 26.618 36.598 17.456 2.755 33.84-9.162 36.598-26.618l48-304z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["italic"],"defaultCode":59765,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":17,"name":"italic","prevSize":32,"id":113,"code":59765},"setIdx":0,"setId":2,"iconIdx":124},{"icon":{"paths":["M497.136 169.372c12.499 12.497 12.499 32.758 0 45.255l-35.958 35.96c1.078-0.016 2.163-0.025 3.245-0.025h191.152c115.11 0 208.426 93.316 208.426 208.426 0 115.107-93.315 208.422-208.426 208.422h-15.574v-64h15.574c79.763 0 144.426-64.659 144.426-144.422 0-79.766-64.662-144.426-144.426-144.426h-191.152c-1.030 0-2.058 0.011-3.082 0.032l35.795 35.796c12.499 12.499 12.499 32.758 0 45.258-12.496 12.496-32.758 12.496-45.254 0l-90.509-90.511c-12.496-12.497-12.496-32.758 0-45.255l90.509-90.51c12.496-12.497 32.758-12.497 45.254 0zM201.318 500.746h56.159v325.818h-59.023v-268.387h-1.909l-76.204 48.682v-54.090l80.977-52.022zM570.41 719.494c0 64.749-48.045 111.523-116.931 111.523-63.638 0-110.886-38.979-112.48-93.069h57.274c2.070 26.726 25.773 45.341 55.206 45.341 34.838 0 59.978-25.933 59.818-62.365 0.16-36.909-25.613-63.318-61.411-63.475-19.568-0.16-40.25 7.955-51.226 20.045l-53.296-8.749 17.024-168h188.998v49.318h-140.16l-9.386 86.384h1.91c12.090-14.317 35.475-24.816 61.885-24.816 59.184 0 102.774 45.181 102.774 107.862z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["jump-backward"],"defaultCode":59766,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":16,"name":"jump-backward","prevSize":32,"id":114,"code":59766},"setIdx":0,"setId":2,"iconIdx":125},{"icon":{"paths":["M494.861 169.372c-12.496 12.497-12.496 32.758 0 45.255l35.962 35.96c-1.082-0.016-2.163-0.025-3.248-0.025h-191.149c-115.111 0-208.426 93.316-208.426 208.426 0 115.107 93.315 208.422 208.426 208.422h15.574v-64h-15.574c-79.764 0-144.426-64.659-144.426-144.422 0-79.766 64.661-144.426 144.426-144.426h191.149c1.030 0 2.061 0.011 3.085 0.032l-35.798 35.796c-12.496 12.499-12.496 32.758 0 45.258 12.499 12.496 32.758 12.496 45.258 0l90.509-90.511c12.496-12.497 12.496-32.758 0-45.255l-90.509-90.51c-12.499-12.497-32.758-12.497-45.258 0zM521.318 500.746h56.157v325.818h-59.021v-268.387h-1.91l-76.205 48.682v-54.090l80.979-52.022zM890.41 719.494c0 64.749-48.048 111.523-116.934 111.523-63.635 0-110.886-38.979-112.477-93.069h57.274c2.067 26.726 25.773 45.341 55.203 45.341 34.842 0 59.978-25.933 59.821-62.365 0.157-36.909-25.616-63.318-61.411-63.475-19.568-0.16-40.25 7.955-51.226 20.045l-53.296-8.749 17.021-168h189.002v49.318h-140.16l-9.386 86.384h1.91c12.090-14.317 35.475-24.816 61.885-24.816 59.181 0 102.774 45.181 102.774 107.862z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["jump-forward"],"defaultCode":59767,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":15,"name":"jump-forward","prevSize":32,"id":115,"code":59767},"setIdx":0,"setId":2,"iconIdx":126},{"icon":{"paths":["M769.296 649.373c12.496 12.496 12.496 32.758 0 45.254l-192 192c-12.499 12.496-32.758 12.496-45.258 0l-192-192c-12.496-12.496-12.496-32.758 0-45.254 12.499-12.496 32.758-12.496 45.258 0l137.37 137.373v-578.746h-192v192c0 17.674-14.325 32-31.999 32s-32-14.326-32-32v-224c0-17.673 14.327-32 32-32h255.999c17.674 0 32 14.327 32 32v610.746l137.373-137.373c12.499-12.496 32.758-12.496 45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["jump-to-message"],"defaultCode":59768,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":14,"name":"jump-to-message","prevSize":32,"id":116,"code":59768},"setIdx":0,"setId":2,"iconIdx":127},{"icon":{"paths":["M576 256c0 35.346-28.653 64-64 64s-64-28.654-64-64c0-35.346 28.653-64 64-64s64 28.654 64 64z","M576 512c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64z","M576 768c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["kebab"],"defaultCode":59769,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":13,"name":"kebab","prevSize":32,"id":117,"code":59769},"setIdx":0,"setId":2,"iconIdx":128},{"icon":{"paths":["M160 224c-35.346 0-64 28.654-64 64v448c0 35.347 28.654 64 64 64h704c35.347 0 64-28.653 64-64v-448c0-35.346-28.653-64-64-64h-704zM160 288h704v448h-704v-448zM256 352c-17.673 0-32 14.326-32 32s14.327 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM256 512c0-17.674 14.327-32 32-32h64c17.674 0 32 14.326 32 32s-14.326 32-32 32h-64c-17.673 0-32-14.326-32-32zM480 480c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM640 512c0-17.674 14.326-32 32-32h64c17.674 0 32 14.326 32 32s-14.326 32-32 32h-64c-17.674 0-32-14.326-32-32zM480 352c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM320 640c0-17.674 14.326-32 32-32h320c17.674 0 32 14.326 32 32s-14.326 32-32 32h-320c-17.674 0-32-14.326-32-32zM704 352c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["keyboard"],"defaultCode":59770,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":12,"name":"keyboard","prevSize":32,"id":118,"code":59770},"setIdx":0,"setId":2,"iconIdx":129},{"icon":{"paths":["M681.904 256c0-17.673-14.326-32-32-32s-32 14.327-32 32v56.875l-80.346 13.998c-17.411 3.034-29.069 19.61-26.035 37.021 3.034 17.408 19.61 29.066 37.021 26.032l69.36-12.086v69.373c-30.384 6.851-60.461 20.074-84.154 43.139-27.923 27.184-44.070 65.238-44.070 113.808 0 25.741 6.262 48.262 18.451 66.621 12.186 18.349 29.062 30.682 47.251 38 35.357 14.221 76.72 10.173 108.128-4.579l1.206-0.566c31.126-14.621 62.493-29.354 90.723-57.818 21.325-21.507 39.709-49.539 56.848-88.678 5.654 9.498 9.594 20.966 10.285 34.339 1.632 31.526-14.275 82.813-87.955 153.418-12.758 12.227-13.19 32.483-0.963 45.245 12.227 12.758 32.486 13.19 45.245 0.963 80.192-76.851 110.586-145.034 107.59-202.934-2.986-57.658-38.586-96.022-70.675-113.955-20.774-13.014-50.214-22.826-81.216-28.288-16.624-2.931-34.47-4.749-52.694-4.995v-74.243l101.718-17.722c17.411-3.034 29.066-19.61 26.032-37.019-3.034-17.411-19.606-29.066-37.018-26.032l-90.733 15.809v-45.724zM578.394 536.208c10.163-9.891 23.565-17.475 39.51-22.704v138.653c-13.443 2.547-27.485 1.731-38.634-2.752-7.712-3.104-13.658-7.757-17.824-14.029-4.157-6.262-7.766-15.997-7.766-31.216 0-33.35 10.563-54.176 24.714-67.952zM709.994 600.752c-8.682 8.755-17.782 15.706-28.090 22.074v-117.888c14.125 0.24 28.224 1.661 41.587 4.016 13.587 2.397 25.683 5.622 35.763 9.165-16.88 42.038-33.069 66.304-49.261 82.634zM247.704 565.334h98.386l-49.193-184.883-49.193 184.883zM390.851 733.562l-27.734-104.227h-132.442l-27.732 104.227c-4.544 17.078-22.073 27.242-39.152 22.694-17.079-4.544-27.24-22.070-22.696-39.152l106.323-399.598c13.494-50.714 85.462-50.713 98.956 0l106.323 399.598c4.544 17.082-5.616 34.608-22.694 39.152-17.078 4.547-34.608-5.616-39.152-22.694z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["language"],"defaultCode":59771,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":11,"name":"language","prevSize":32,"id":119,"code":59771},"setIdx":0,"setId":2,"iconIdx":130},{"icon":{"paths":["M439.274 704.374c0-33.645 26.278-47.677 72.726-47.677s72.73 14.032 72.73 47.677c0 32.96-13.19 111.069-23.914 149.76-4.963 17.808-22.080 25.171-48.816 25.171s-43.85-7.363-48.813-25.174c-10.717-38.666-23.914-116.688-23.914-149.757zM616.778 870.374l0.026-0.090c6.176-22.291 12.566-53.869 17.386-83.453 4.688-28.787 8.72-60.707 8.72-82.458 0-35.891-15.811-67.802-46.797-87.114-26.035-16.227-57.152-19.926-84.112-19.926-26.957 0-58.077 3.699-84.112 19.926-30.982 19.312-46.797 51.222-46.797 87.114 0 21.805 4.035 53.728 8.726 82.515 4.819 29.578 11.21 61.123 17.379 83.392l0.026 0.086c7.402 26.557 24.982 45.664 46.87 56.467 19.472 9.61 40.426 11.834 57.907 11.834 17.485 0 38.435-2.224 57.907-11.83 21.888-10.8 39.469-29.907 46.87-56.464zM459.635 460.8c0-28.275 23.446-51.2 52.365-51.2s52.365 22.925 52.365 51.2c0 28.278-23.446 51.2-52.365 51.2s-52.365-22.922-52.365-51.2zM512 341.334c-67.478 0-122.182 53.488-122.182 119.466 0 65.981 54.704 119.469 122.182 119.469s122.182-53.488 122.182-119.469c0-65.978-54.704-119.466-122.182-119.466zM677.802 537.254c-6.662 13.792-3.882 31.11 6.278 42.573 14.086 15.894 39.85 17.939 50.205-0.602 19.642-35.174 30.806-75.526 30.806-118.426 0-136.672-113.315-247.465-253.091-247.465-139.779 0-253.092 110.793-253.092 247.465 0 42.899 11.164 83.251 30.806 118.426 10.354 18.541 36.119 16.496 50.205 0.602 10.16-11.462 12.938-28.781 6.275-42.573-11.203-23.187-17.469-49.104-17.469-76.454 0-98.97 82.054-179.199 183.274-179.199s183.27 80.229 183.27 179.199c0 27.35-6.262 53.267-17.469 76.454zM730.16 699.795c-0.304-10.659 3.542-21.072 10.928-28.762 52.771-54.957 85.094-128.902 85.094-210.234 0-169.661-140.666-307.199-314.182-307.199s-314.182 137.538-314.182 307.199c0 81.331 32.323 155.28 85.093 210.234 7.386 7.69 11.234 18.102 10.928 28.762-0.833 29.018-31.273 47.917-52.121 27.715-70.223-68.042-113.718-162.41-113.718-266.71 0-207.363 171.923-375.465 384-375.465s384 168.102 384 375.465c0 104.304-43.498 198.672-113.722 266.714-20.848 20.202-51.286 1.302-52.118-27.718z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["live-streaming"],"defaultCode":59773,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":9,"name":"live-streaming","prevSize":32,"id":120,"code":59773},"setIdx":0,"setId":2,"iconIdx":131},{"icon":{"paths":["M700.144 361.891c4.685-24.973 34.704-34.093 49.13-13.171 31.994 46.403 50.726 102.653 50.726 163.28s-18.733 116.88-50.726 163.283c-14.426 20.922-44.445 11.802-49.13-13.174l-1.706-9.101c-1.581-8.429 0.384-17.082 4.858-24.403 20.749-33.965 32.704-73.888 32.704-116.605 0-42.714-11.955-82.637-32.704-116.605-4.474-7.318-6.438-15.971-4.858-24.4l1.706-9.104z","M320.704 395.395c-20.748 33.968-32.704 73.891-32.704 116.605 0 42.717 11.956 82.64 32.704 116.605 4.474 7.322 6.438 15.974 4.858 24.403l-1.706 9.101c-4.684 24.976-34.705 34.096-49.128 13.174-31.994-46.403-50.728-102.656-50.728-163.283s18.733-116.877 50.728-163.28c14.424-20.922 44.444-11.802 49.128 13.171l1.706 9.104c1.581 8.429-0.384 17.082-4.858 24.4z","M728.765 209.256l-0.515 2.747c-2.234 11.911 2.534 23.967 11.763 31.821 75.866 64.565 123.987 160.751 123.987 268.175 0 107.427-48.122 203.613-123.987 268.176-9.229 7.856-13.997 19.914-11.763 31.824l0.515 2.746c4.192 22.362 29.69 33.194 47.261 18.746 92.794-76.294 151.974-191.981 151.974-321.491 0-129.507-59.181-245.193-151.974-321.489-17.571-14.448-43.069-3.615-47.261 18.745z","M283.986 243.825c9.228-7.854 13.998-19.911 11.764-31.821l-0.515-2.747c-4.192-22.359-29.69-33.193-47.262-18.745-92.793 76.296-151.973 191.981-151.973 321.489 0 129.51 59.18 245.197 151.973 321.491 17.572 14.448 43.070 3.616 47.262-18.746l0.515-2.746c2.233-11.91-2.536-23.968-11.764-31.824-75.864-64.563-123.986-160.749-123.986-268.176 0-107.424 48.122-203.61 123.986-268.175z","M608 512c0 53.021-42.979 96-96 96s-96-42.979-96-96c0-53.018 42.979-96 96-96s96 42.982 96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["live"],"defaultCode":59774,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":8,"name":"live","prevSize":32,"id":121,"code":59774},"setIdx":0,"setId":2,"iconIdx":132},{"icon":{"paths":["M397.011 527.334c26.576 0 48.122-21.587 48.122-48.214s-21.546-48.214-48.122-48.214c-26.576 0-48.118 21.587-48.118 48.214s21.542 48.214 48.118 48.214z","M589.491 479.12c0 26.627-21.542 48.214-48.118 48.214s-48.122-21.587-48.122-48.214c0-26.627 21.546-48.214 48.122-48.214s48.118 21.587 48.118 48.214z","M733.853 479.12c0 26.627-21.542 48.214-48.118 48.214s-48.122-21.587-48.122-48.214c0-26.627 21.546-48.214 48.122-48.214s48.118 21.587 48.118 48.214z","M88.039 813.683l119.625 31.283c85.312 22.307 173.45-16.256 238.691-79.709 29.501 4.794 59.875 7.242 90.678 7.242 218.294 0 404.339-122.864 404.339-294.518 0-171.664-186.042-294.52-404.339-294.52-218.314 0-404.351 122.852-404.34 294.523 0 65.072 27.642 125.014 75.655 173.587-2.847 24.835-14.596 44.73-36.049 68.55l-84.261 93.562zM537.034 258.997c183.13 0 331.6 98.043 331.6 218.984 0 120.931-148.47 218.982-331.6 218.982-40.781 0-79.834-4.877-115.91-13.763-36.669 45.6-117.335 109.008-195.697 88.518 25.489-28.304 63.251-76.131 55.168-154.909-46.968-37.779-75.162-86.134-75.162-138.829-0.008-120.95 148.461-218.984 331.6-218.984z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["livechat-monochromatic"],"defaultCode":59775,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":31,"name":"livechat-monochromatic","prevSize":32,"id":122,"code":59775},"setIdx":0,"setId":2,"iconIdx":133},{"icon":{"paths":["M341.334 778.672c-17.674 0-32 14.326-32 32s14.326 32 32 32h341.334c17.674 0 32-14.326 32-32s-14.326-32-32-32h-341.334zM85.335 298.672c0-70.692 57.308-128 128-128h597.334c70.691 0 128 57.308 128 128v298.666c0 70.694-57.309 128-128 128h-597.334c-70.692 0-128-57.306-128-128v-298.666zM213.335 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.347 28.654 64 64 64h597.334c35.344 0 64-28.653 64-64v-298.666c0-35.347-28.656-64-64-64h-597.334zM256 320c0-11.782 9.551-21.333 21.333-21.333h170.667c11.782 0 21.334 9.551 21.334 21.333s-9.552 21.334-21.334 21.334h-170.667c-11.782 0-21.333-9.552-21.333-21.334zM277.333 554.666c-11.782 0-21.333 9.552-21.333 21.334s9.551 21.334 21.333 21.334h85.332c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-85.332zM554.666 320c0-11.782 9.552-21.333 21.334-21.333h170.666c11.782 0 21.334 9.551 21.334 21.333s-9.552 21.334-21.334 21.334h-170.666c-11.782 0-21.334-9.552-21.334-21.334zM448 554.666c-11.782 0-21.334 9.552-21.334 21.334s9.552 21.334 21.334 21.334h298.666c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-298.666zM256 448c0-11.782 9.551-21.334 21.333-21.334h213.332c11.782 0 21.334 9.552 21.334 21.334s-9.552 21.334-21.334 21.334h-213.332c-11.782 0-21.333-9.552-21.333-21.334zM618.666 426.666c-11.782 0-21.331 9.552-21.331 21.334s9.549 21.334 21.331 21.334h128c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["log-view"],"defaultCode":59778,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":33,"name":"log-view","prevSize":32,"id":123,"code":59778},"setIdx":0,"setId":2,"iconIdx":134},{"icon":{"paths":["M176 96c-17.673 0-32 14.327-32 32v768c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-96c0-17.674-14.326-32-32-32s-32 14.326-32 32v64h-448v-704h448v64c0 17.673 14.326 32 32 32s32-14.327 32-32v-96c0-17.673-14.326-32-32-32h-512zM521.373 329.373c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.254l-105.373 105.373h418.746c17.674 0 32 14.326 32 32s-14.326 32-32 32h-418.746l105.373 105.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-160-160c-12.496-12.496-12.496-32.758 0-45.254l160-160z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["login"],"defaultCode":59779,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":34,"name":"login","prevSize":32,"id":124,"code":59779},"setIdx":0,"setId":2,"iconIdx":135},{"icon":{"paths":["M268.099 96c-17.673 0-32 14.327-32 32v768c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-96c0-17.674-14.326-32-32-32s-32 14.326-32 32v64h-448v-704h448v64c0 17.673 14.326 32 32 32s32-14.327 32-32v-96c0-17.673-14.326-32-32-32h-512zM994.726 489.373l-160-160c-12.496-12.497-32.758-12.497-45.254 0s-12.496 32.758 0 45.254l105.373 105.373h-418.746c-17.674 0-32 14.326-32 32s14.326 32 32 32h418.746l-105.373 105.373c-12.496 12.496-12.496 32.758 0 45.254s32.758 12.496 45.254 0l160-160c12.496-12.496 12.496-32.758 0-45.254z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["logout"],"defaultCode":59780,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":35,"name":"logout","prevSize":32,"id":125,"code":59780},"setIdx":0,"setId":2,"iconIdx":136},{"icon":{"paths":["M192 736h640v-448h-640v448zM128 256c0-17.673 14.327-32 32-32h704c17.674 0 32 14.327 32 32v512c0 17.674-14.326 32-32 32h-704c-17.673 0-32-14.326-32-32v-512zM305.304 389.082c-14.866-9.555-34.665-5.251-44.222 9.613-9.557 14.867-5.253 34.666 9.613 44.224l241.304 155.123 241.306-155.123c14.864-9.558 19.168-29.357 9.613-44.224-9.558-14.864-29.357-19.168-44.224-9.613l-206.694 132.877-206.696-132.877z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["mail"],"defaultCode":59781,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":36,"name":"mail","prevSize":32,"id":126,"code":59781},"setIdx":0,"setId":2,"iconIdx":137},{"icon":{"paths":["M302.769 192h418.463l23.187 72.727h-0.211l23.792 63.999c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818c0-18.476-14.326-33.454-32-33.454s-32 14.978-32 33.454c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818c0-18.476-14.326-33.454-32-33.454s-32 14.978-32 33.454c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818l23.794-63.999h-0.213l23.188-72.727zM212.406 264.727l36.491-114.448c4.231-13.27 16.56-22.279 30.488-22.279h465.23c13.93 0 26.259 9.009 30.49 22.279l56.896 178.447c0 33.939-12.083 64.925-32 88.515v350.778c0 53.018-42.979 96-96 96h-384c-53.019 0-96-42.982-96-96v-350.778c-19.916-23.59-32-54.576-32-88.515l20.406-63.999zM288 458.33v309.69c0 17.67 14.327 32 32 32h128v-192.019h128v192.019h128c17.674 0 32-14.33 32-32v-309.69c-10.227 2.752-20.95 4.214-32 4.214-38.23 0-72.547-17.52-96-45.302-23.453 27.782-57.77 45.302-96 45.302s-72.547-17.52-96-45.302c-23.453 27.782-57.77 45.302-96 45.302-11.050 0-21.772-1.462-32-4.214z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["marketplace"],"defaultCode":59782,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":37,"name":"marketplace","prevSize":32,"id":127,"code":59782},"setIdx":0,"setId":2,"iconIdx":138},{"icon":{"paths":["M773.072 576c-35.344 0-64-28.653-64-64s28.656-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64z","M517.072 576c-35.344 0-64-28.653-64-64s28.656-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64z","M261.073 576c-35.346 0-64-28.653-64-64s28.654-64 64-64c35.346 0 63.999 28.653 63.999 64s-28.652 64-63.999 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["meatballs"],"defaultCode":59783,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":38,"name":"meatballs","prevSize":32,"id":128,"code":59783},"setIdx":0,"setId":2,"iconIdx":139},{"icon":{"paths":["M651.36 116.071c-57.242-19.989-105.792-20.069-138.358-20.071v64l-1.002-64c-92.006 0.342-297.345 47.824-381.242 242.995-17.897 38.97-34.758 103.344-34.758 173.005 0 69.958 17.020 146.285 52.216 207.875 23.229 40.653 92.799 131.376 191.179 173.536 94.861 40.656 206.368 52.349 296.49 16.301 16.41-6.563 24.39-25.187 17.827-41.597s-25.187-24.39-41.597-17.827c-69.878 27.952-163.171 20.445-247.51-15.699-80.819-34.64-141.384-112.451-160.821-146.464-28.804-50.41-43.784-115.418-43.784-176.125 0-60.765 15.020-116.182 29.055-146.589l0.184-0.4 0.173-0.406c69.507-162.181 243.823-204.604 323.589-204.605 31.594 0.002 70.877 0.296 117.258 16.493 46.147 16.114 101.389 48.779 161.824 116.767 43.658 49.115 63.533 114.977 69.389 177.713 5.891 63.12-2.854 118.189-11.546 142.093-6.4 17.6-20.429 45.44-59.392 45.699-18.259-0.806-72.822-14.672-83.12-69.568v-235.062c0-17.674-3.414-34.134-29.014-34.134-19.338 0-26.454 16.461-26.454 34.134v34.131c-35.181-39.859-95.402-68.266-152.746-68.266-106.038 0-192 85.962-192 192s85.962 192 192 192c62.179 0 117.658-29.555 152.746-75.386 25.715 71.078 102.57 93.027 137.014 94.134l0.515 0.016h0.512c82.643 0 111.715-64.806 120.086-87.83 12.64-34.762 21.674-99.696 15.12-169.907-6.589-70.595-29.379-151.401-85.277-214.287-66.902-75.265-131.075-114.597-188.557-134.67zM627.2 512c0 70.691-57.309 128-128 128s-128-57.309-128-128c0-70.691 57.309-128 128-128s128 57.309 128 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["mention"],"defaultCode":59784,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":142,"name":"mention","prevSize":32,"id":129,"code":59784},"setIdx":0,"setId":2,"iconIdx":140},{"icon":{"paths":["M477.84 128c104.256 0 181.251 29.018 237.494 70.652l-44.317 44.317c-45.52-31.22-107.747-53.057-193.178-53.057-129.725 0-207.83 53.576-254.529 118.696-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-7.328 80.928 13.761 143.126 51.784 190.499l-43.879 43.878c-50.179-59.901-78.131-139.043-69.441-238.595 0.276-63.411 19.117-157.053 75.696-235.948 58.132-81.063 154.749-144.433 304.573-144.433zM822.848 332.499l-47.008 47.008c16.502 42.634 20.608 78.525 20.608 89.011v0.179c0 19.517 0 31.792-6.621 56.17-7.094 26.109-21.738 65.648-52.554 137.834-5.699 13.357-2.794 25.981 1.261 34.435 3.834 7.99 9.562 14.403 14.595 19.184 10.227 9.712 24.253 18.842 38.544 26.867 7.888 4.429 18.298 8.995 27.613 13.078l1.843 0.81c10.554 4.634 20.726 9.146 29.613 13.894 3.427 1.834 6.298 3.517 8.672 5.030-5.104 3.229-12.035 6.883-20.941 10.765-22.96 10.003-55.328 19.939-93.888 28.128-77.12 16.371-174.73 24.858-263.341 14.973-43.744-4.88-86.826-14.525-126.534-29.229l-47.542 47.542c52.771 23.018 110.492 36.886 167.267 43.222 96.387 10.752 200.71 1.517 282.909-15.936 41.098-8.726 77.731-19.731 105.68-31.907 13.91-6.064 26.618-12.822 36.858-20.342 9.427-6.925 20.739-17.344 25.61-32.016 7.392-22.269-2.957-40.509-12.816-51.139-9.427-10.166-22.106-17.939-32.954-23.738-11.309-6.048-23.626-11.472-33.891-15.978-11.059-4.854-18.934-8.317-24.054-11.194-9.914-5.565-17.437-10.538-22.506-14.57 27.421-64.81 42.214-104.589 50.048-133.424 8.774-32.304 8.797-50.986 8.797-72.64 0-20.106-7.053-75.501-35.267-136.019zM836.038 153.372c12.499-12.497 32.758-12.497 45.254 0 12.499 12.497 12.499 32.758 0 45.255l-682.665 682.665c-12.497 12.499-32.758 12.499-45.255 0-12.497-12.496-12.497-32.755 0-45.254l682.666-682.666z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["message-disabled"],"defaultCode":59785,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":57,"name":"message-disabled","prevSize":32,"id":130,"code":59785},"setIdx":0,"setId":2,"iconIdx":141},{"icon":{"paths":["M223.311 308.609c-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-9.348 103.235 27.547 175.997 86.848 226.374 60.643 51.52 146.602 80.998 235.29 90.893 88.614 9.885 186.224 1.398 263.341-14.973 38.56-8.189 70.928-18.125 93.888-28.128 8.906-3.882 15.837-7.536 20.944-10.765-2.378-1.514-5.248-3.197-8.675-5.030-8.886-4.749-19.059-9.261-29.613-13.894l-1.843-0.81c-9.315-4.083-19.725-8.65-27.613-13.078-14.291-8.026-28.317-17.155-38.544-26.867-5.034-4.781-10.762-11.194-14.595-19.184-4.054-8.454-6.96-21.078-1.261-34.435 30.816-72.186 45.459-111.725 52.554-137.834 6.621-24.378 6.621-36.653 6.621-56.17v-0.179c0-15.51-8.979-86.595-53.776-152.876-43.376-64.174-121.395-125.729-264.832-125.729-129.725 0-207.83 53.576-254.529 118.696zM173.267 272.433c58.132-81.063 154.749-144.433 304.573-144.433 164.896 0 261.594 72.589 315.859 152.878 52.838 78.181 64.416 161.881 64.416 187.641 0 21.654-0.022 40.336-8.797 72.64-7.83 28.835-22.627 68.614-50.048 133.424 5.069 4.032 12.592 9.005 22.506 14.57 5.123 2.877 12.995 6.339 24.054 11.194 10.266 4.506 22.582 9.93 33.891 15.978 10.848 5.798 23.526 13.571 32.954 23.738 9.859 10.63 20.208 28.87 12.816 51.139-4.87 14.672-16.182 25.091-25.61 32.016-10.24 7.52-22.947 14.278-36.858 20.342-27.946 12.176-64.582 23.181-105.68 31.907-82.198 17.453-186.522 26.688-282.909 15.936-96.31-10.746-195.346-43.178-268.313-105.165-74.031-62.893-119.295-154.778-108.551-277.856 0.276-63.411 19.117-157.053 75.696-235.948z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["message"],"defaultCode":59786,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":58,"name":"message","prevSize":32,"id":131,"code":59786},"setIdx":0,"setId":2,"iconIdx":142},{"icon":{"paths":["M512 128c75.546 0 138.861 52.356 155.645 122.762l-59.645 59.644v-22.405c0-53.019-42.979-96-96-96s-96 42.981-96 96v128c0 24.067 8.858 46.067 23.488 62.915l-45.322 45.325c-26.182-28.49-42.166-66.499-42.166-108.24v-128c0-88.365 71.635-160 160-160zM561.35 568.243l102.893-102.893c-15.763 48.672-54.221 87.13-102.893 102.893zM288 416c0 72.154 23.181 123.101 55.328 159.078l-45.304 45.302c-43.428-47.35-74.024-113.99-74.024-204.381 0-17.674 14.327-32 32-32s32 14.326 32 32zM478.659 650.938l-51.808 51.808c18.56 6.374 36.579 10.806 53.149 13.635v115.619h-160c-17.673 0-32 14.326-32 32s14.327 32 32 32h384c17.674 0 32-14.326 32-32s-14.326-32-32-32h-160v-115.619c44.64-7.619 99.818-26.896 147.722-64.381 60.704-47.501 108.278-123.286 108.278-236 0-17.674-14.326-32-32-32s-32 14.326-32 32c0 92.086-37.757 149.632-83.722 185.6-46.464 36.358-102.736 51.581-140.278 54.326-9.971-0.73-21.264-2.339-33.341-4.989zM825.373 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672-672z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["microphone-disabled"],"defaultCode":59787,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":59,"name":"microphone-disabled","prevSize":32,"id":132,"code":59787},"setIdx":0,"setId":2,"iconIdx":143},{"icon":{"paths":["M608 288c0-53.019-42.979-96-96-96s-96 42.981-96 96v128c0 53.021 42.979 96 96 96s96-42.979 96-96v-128zM352 288c0-88.365 71.635-160 160-160s160 71.635 160 160v128c0 88.365-71.635 160-160 160s-160-71.635-160-160v-128zM256 384c17.673 0 32 14.326 32 32 0 92.086 37.757 149.632 83.722 185.6 46.464 36.358 102.736 51.581 140.278 54.326 37.542-2.746 93.814-17.968 140.278-54.326 45.962-35.968 83.722-93.514 83.722-185.6 0-17.674 14.326-32 32-32s32 14.326 32 32c0 112.714-47.574 188.499-108.278 236-47.904 37.485-103.082 56.762-147.722 64.381v115.619h160c17.674 0 32 14.326 32 32s-14.326 32-32 32h-384c-17.673 0-32-14.326-32-32s14.327-32 32-32h160v-115.619c-44.64-7.619-99.818-26.896-147.722-64.381-60.703-47.501-108.278-123.286-108.278-236 0-17.674 14.327-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["microphone"],"defaultCode":59788,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":60,"name":"microphone","prevSize":32,"id":133,"code":59788},"setIdx":0,"setId":2,"iconIdx":144},{"icon":{"paths":["M234.666 170.661c0-47.128 38.205-85.333 85.333-85.333h384.001c47.126 0 85.331 38.205 85.331 85.333v682.667c0 47.13-38.205 85.334-85.331 85.334h-384.001c-47.128 0-85.333-38.205-85.333-85.334v-682.667zM298.666 170.661v682.667c0 11.782 9.551 21.334 21.333 21.334h384.001c11.782 0 21.331-9.552 21.331-21.334v-682.667c0-11.782-9.549-21.333-21.331-21.333h-96.291c-2.653 24.002-23.002 42.672-47.709 42.672h-96c-24.707 0-45.056-18.67-47.709-42.672h-96.292c-11.782 0-21.333 9.551-21.333 21.333z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["mobile"],"defaultCode":59789,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":61,"name":"mobile","prevSize":32,"id":134,"code":59789},"setIdx":0,"setId":2,"iconIdx":145},{"icon":{"paths":["M319.247 231.566c-62.882 49.504-135.086 136.549-141.94 266.127-5.762 108.922 37.404 187.184 89.915 241.51 53.258 55.098 115.702 84.925 144.25 94.438 41.859 13.955 114.269 29.536 234.643-15.603 34.858-13.072 73.165-42.096 108.304-78.426 14.272-14.755 27.616-30.294 39.6-45.773-28.778 9.293-61.699 17.754-96.589 23.594-56.192 9.405-119.29 12.32-179.411-0.237-2.49-0.518-4.96-1.030-7.408-1.536-22.195-4.576-42.733-8.816-62.589-17.648-23.091-10.275-43.805-25.891-69.299-51.386-42.096-42.096-89.142-107.222-89.371-213.843-1.569-34.080 4.622-81.878 13.764-129.216 4.624-23.946 10.142-48.465 16.132-72.003zM345.562 138.217c32.8-17.15 63.709 15.843 53.875 45.907-12.234 37.414-24.586 85.511-33.482 131.58-9.024 46.732-13.949 88.633-12.643 114.7l0.038 0.797v0.8c0 84.915 36.173 134.918 70.627 169.373 22.509 22.509 36.835 32.278 50.064 38.166 13.229 5.885 26.832 8.717 51.085 13.763 1.923 0.4 3.917 0.816 5.978 1.248 49.914 10.426 104.534 8.336 155.76-0.237 65.434-10.954 122.384-31.981 152.374-47.386 17.562-9.021 34.992-2.47 44.477 5.965 9.661 8.589 19.376 27.152 8.886 46.954-20.637 38.95-53.645 84.419-92.182 124.259-38.211 39.51-84.317 76.038-131.834 93.859-135.626 50.858-223.216 34.438-277.354 16.394-36.515-12.173-108.392-46.912-170.026-110.675-62.381-64.534-114.684-159.427-107.81-289.373 10.79-203.979 157.583-317.098 232.165-356.093z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["moon"],"defaultCode":59790,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":62,"name":"moon","prevSize":32,"id":135,"code":59790},"setIdx":0,"setId":2,"iconIdx":146},{"icon":{"paths":["M144 160c-17.673 0-32 14.327-32 32s14.327 32 32 32h192c17.674 0 32-14.327 32-32s-14.326-32-32-32h-192zM700.4 346.646c11.795-13.165 32.026-14.272 45.187-2.48 13.162 11.795 14.272 32.026 2.477 45.187l-81.222 90.646h216.358c17.674 0 32 14.326 32 32s-14.326 32-32 32h-216.358l81.222 90.646c11.795 13.162 10.685 33.392-2.477 45.187-13.162 11.792-33.392 10.685-45.187-2.48l-129.030-144c-10.893-12.154-10.893-30.554 0-42.707l129.030-144zM112 512c0-17.674 14.327-32 32-32h192c17.674 0 32 14.326 32 32s-14.326 32-32 32h-192c-17.673 0-32-14.326-32-32zM144 640c-17.673 0-32 14.326-32 32s14.327 32 32 32h192c17.674 0 32-14.326 32-32s-14.326-32-32-32h-192zM112 352c0-17.674 14.327-32 32-32h192c17.674 0 32 14.326 32 32s-14.326 32-32 32h-192c-17.673 0-32-14.326-32-32zM144 800c-17.673 0-32 14.326-32 32s14.327 32 32 32h192c17.674 0 32-14.326 32-32s-14.326-32-32-32h-192z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["move-to-the-queue"],"defaultCode":59791,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":63,"name":"move-to-the-queue","prevSize":32,"id":136,"code":59791},"setIdx":0,"setId":2,"iconIdx":147},{"icon":{"paths":["M809.002 166.758c7.782 6.063 12.333 15.377 12.333 25.242v448h-0.112c0.074 1.734 0.112 3.478 0.112 5.229 0 69.053-57.309 125.030-128 125.030-70.694 0-128-55.978-128-125.030s57.306-125.030 128-125.030c23.312 0 45.171 6.090 64 16.73v-303.86l-384 96.798v409.136c0 69.053-57.309 125.037-128.001 125.037s-128-55.978-128-125.030c0-69.050 57.308-125.027 128-125.027 23.314 0 45.173 6.086 64 16.726v-325.777c0-14.66 9.962-27.446 24.177-31.029l448-112.93c9.568-2.411 19.709-0.276 27.491 5.788z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["musical-note"],"defaultCode":59792,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":64,"name":"musical-note","prevSize":32,"id":137,"code":59792},"setIdx":0,"setId":2,"iconIdx":148},{"icon":{"paths":["M208 176c-35.346 0-64 28.654-64 64v576c0 35.347 28.654 64 64 64h576c35.347 0 64-28.653 64-64v-576c0-35.346-28.653-64-64-64h-576zM208 240h576v576h-576v-576zM698.627 558.15c-0.189 17.674-14.669 31.846-32.339 31.658-17.674-0.189-31.846-14.669-31.658-32.339l1.318-123.594-309.341 308.774c-12.51 12.483-32.771 12.464-45.256-0.042-12.485-12.509-12.467-32.771 0.042-45.258l309.195-308.624-123.382 1.315c-17.674 0.189-32.154-13.984-32.339-31.654-0.189-17.674 13.984-32.15 31.654-32.339l201.92-2.157c8.605-0.093 16.886 3.286 22.97 9.37 6.086 6.086 9.462 14.365 9.373 22.97l-2.157 201.92z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["new-window"],"defaultCode":59793,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":65,"name":"new-window","prevSize":32,"id":138,"code":59793},"setIdx":0,"setId":2,"iconIdx":149},{"icon":{"paths":["M781.837 402.634c0-5.245-0.154-10.454-0.461-15.622l-63.539 63.539v265.363h-265.363l-66.979 66.979h425.363c12.944 0 24.611-7.795 29.565-19.754 4.954-11.955 2.214-25.722-6.938-34.874l-51.648-51.648v-273.984zM704.765 217.373l-45.254 45.255c-35.638-35.351-84.704-57.189-138.867-57.189-108.909 0-197.194 88.287-197.194 197.195v196.054l-64.001 64v-260.054c0-144.254 116.941-261.195 261.194-261.195 71.837 0 136.899 29.001 184.122 75.934zM433.578 808.934c0 48.086 38.982 87.066 87.066 87.066s87.066-38.979 87.066-87.066h-174.131zM854.275 190.982c-11.334-11.334-29.709-11.334-41.043 0l-612.732 612.733c-11.333 11.331-11.333 29.709 0 41.040 11.334 11.334 29.709 11.334 41.043 0l612.732-612.731c11.334-11.333 11.334-29.709 0-41.043z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["notification-disabled"],"defaultCode":59794,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":66,"name":"notification-disabled","prevSize":32,"id":139,"code":59794},"setIdx":0,"setId":2,"iconIdx":150},{"icon":{"paths":["M601.331 808.928h-174.154c0.003 48.090 38.989 87.072 87.078 87.072s87.075-38.982 87.075-87.072zM815.597 731.677c7.274 9.696 8.442 22.669 3.021 33.51s-16.499 17.69-28.621 17.69h-565.996c-12.943 0-24.611-7.798-29.564-19.757-4.953-11.955-2.215-25.718 6.937-34.87l51.653-51.654v-274.032c0-144.272 116.957-261.228 261.229-261.228s261.229 116.956 261.229 261.228v275.629l40.112 53.485zM711.485 715.894v-313.331c0-108.926-88.304-197.228-197.229-197.228-108.928 0-197.229 88.302-197.229 197.228v313.331h394.458z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["notification"],"defaultCode":59795,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":67,"name":"notification","prevSize":32,"id":140,"code":59795},"setIdx":0,"setId":2,"iconIdx":151},{"icon":{"paths":["M712.051 512.675v54.89c-0.195 76.736-43.741 143.283-107.44 176.445-5.53-25.67-28.362-44.906-55.683-44.906h-72.502c-31.459 0-56.963 25.501-56.963 56.963v41.427c0 31.462 25.504 56.963 56.963 56.963h72.502c28.509 0 52.128-20.944 56.307-48.288 69.261-26.829 123.962-82.883 148.966-153.030 4.723 1.27 9.69 1.946 14.813 1.946h28.483c31.459 0 56.963-25.504 56.963-56.963v-85.446c0-31.459-25.504-56.963-56.963-56.963h-28.483v-28.483c0-141.572-114.765-256.338-256.336-256.338s-256.339 114.766-256.339 256.338v23.302h-28.483c-31.46 0-56.964 25.504-56.964 56.966v103.571c0 31.459 25.504 56.963 56.964 56.963h28.482c31.46 0 56.964-25.504 56.964-56.963v-36.253h0.149c-0.099-2.576-0.148-5.165-0.148-7.766v-139.821c0-110.111 89.263-199.374 199.375-199.374s199.373 89.263 199.373 199.374v85.446z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["omnichannel"],"defaultCode":59796,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":123,"name":"omnichannel","prevSize":32,"id":141,"code":59796},"setIdx":0,"setId":2,"iconIdx":152},{"icon":{"paths":["M705.578 633.158c9.507-9.235 24.701-9.018 33.939 0.486 9.238 9.507 9.021 24.701-0.486 33.939l-208.275 202.387c-9.312 9.050-24.138 9.050-33.45 0l-208.276-202.387c-9.506-9.238-9.724-24.432-0.487-33.939 9.237-9.504 24.432-9.722 33.937-0.486l191.549 186.134 191.549-186.134zM705.578 411.584c9.507 9.238 24.701 9.021 33.939-0.486s9.021-24.701-0.486-33.939l-208.275-202.385c-9.312-9.051-24.138-9.051-33.45 0l-208.276 202.385c-9.506 9.238-9.724 24.432-0.487 33.939 9.237 9.504 24.432 9.725 33.937 0.486l191.549-186.134 191.549 186.134z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["order"],"defaultCode":59797,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":124,"name":"order","prevSize":32,"id":142,"code":59797},"setIdx":0,"setId":2,"iconIdx":153},{"icon":{"paths":["M742.317 652.566c12.666-12.323 12.944-32.582 0.618-45.248-12.323-12.669-32.582-12.944-45.251-0.621l44.634 45.869zM512 832.019l-22.317 22.934c12.422 12.086 32.211 12.086 44.634 0l-22.317-22.934zM326.317 606.698c-12.667-12.323-32.927-12.048-45.252 0.621-12.324 12.666-12.047 32.925 0.619 45.248l44.632-45.869zM697.683 606.698l-208 202.387 44.634 45.869 208-202.387-44.634-45.869zM534.317 809.085l-208-202.387-44.632 45.869 207.999 202.387 44.634-45.869z","M742.317 371.456c12.666 12.323 12.944 32.582 0.618 45.251-12.323 12.666-32.582 12.944-45.251 0.618l44.634-45.869zM512 192.004l-22.317-22.935c12.422-12.087 32.211-12.087 44.634 0l-22.317 22.935zM326.317 417.325c-12.668 12.326-32.927 12.048-45.252-0.618-12.325-12.669-12.048-32.928 0.619-45.251l44.633 45.869zM697.683 417.325l-208-202.386 44.634-45.87 208 202.387-44.634 45.869zM534.317 214.939l-208 202.386-44.633-45.869 207.999-202.387 44.634 45.87z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"isMulticolor":true,"isMulticolor2":true,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":7}]},"tags":["ordering-ascending"],"defaultCode":59798,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"properties":{"order":125,"name":"ordering-ascending","prevSize":32,"codes":[59798,59799],"id":143,"code":59798},"setIdx":0,"setId":2,"iconIdx":154},{"icon":{"paths":["M281.684 371.434c-12.667 12.323-12.944 32.582-0.619 45.248 12.324 12.669 32.584 12.944 45.252 0.621l-44.633-45.869zM512 191.981l22.317-22.935c-12.422-12.087-32.211-12.087-44.634 0l22.317 22.935zM697.683 417.302c12.669 12.323 32.928 12.048 45.251-0.621 12.326-12.666 12.048-32.925-0.618-45.248l-44.634 45.869zM326.317 417.302l208-202.387-44.634-45.869-207.999 202.387 44.633 45.869zM489.683 214.916l208 202.387 44.634-45.869-208-202.387-44.634 45.869z","M281.684 652.544c-12.667-12.323-12.944-32.582-0.619-45.251 12.324-12.666 32.584-12.944 45.252-0.618l-44.633 45.869zM512 831.997l22.317 22.934c-12.422 12.086-32.211 12.086-44.634 0l22.317-22.934zM697.683 606.675c12.669-12.326 32.928-12.048 45.251 0.618 12.326 12.669 12.048 32.928-0.618 45.251l-44.634-45.869zM326.317 606.675l208 202.384-44.634 45.872-207.999-202.387 44.633-45.869zM489.683 809.059l208-202.384 44.634 45.869-208 202.387-44.634-45.872z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"isMulticolor":true,"isMulticolor2":true,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":7}]},"tags":["ordering-descending"],"defaultCode":59800,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"properties":{"order":126,"name":"ordering-descending","prevSize":32,"codes":[59800,59801],"id":144,"code":59800},"setIdx":0,"setId":2,"iconIdx":155},{"icon":{"paths":["M512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.752 0-416.001 186.25-416.001 416s186.25 416 416.001 416zM399.997 383.994c0-17.67 14.326-32 32-32s32 14.33 32 32v256c0 17.674-14.326 32-32 32s-32-14.326-32-32v-256zM559.997 383.994c0-17.67 14.326-32 32-32s32 14.33 32 32v256c0 17.674-14.326 32-32 32s-32-14.326-32-32v-256z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pause-filled"],"defaultCode":59802,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":128,"name":"pause-filled","prevSize":32,"id":145,"code":59802},"setIdx":0,"setId":2,"iconIdx":156},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352-194.405 0-352.001 157.596-352.001 352s157.596 352 352.001 352c194.403 0 352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416-229.752 0-416.001-186.25-416.001-416s186.25-416 416.001-416c229.75 0 416 186.25 416 416zM399.997 383.994v256c0 17.674 14.326 32 32 32s32-14.326 32-32v-256c0-17.67-14.326-32-32-32s-32 14.33-32 32zM559.997 383.994v256c0 17.674 14.326 32 32 32s32-14.326 32-32v-256c0-17.67-14.326-32-32-32s-32 14.33-32 32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pause"],"defaultCode":59803,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":129,"name":"pause","prevSize":32,"id":146,"code":59803},"setIdx":0,"setId":2,"iconIdx":157},{"icon":{"paths":["M825.373 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672-672zM575.613 569.069l-44.707 44.707c7.846 5.904 15.846 11.453 23.533 16.016 9.2 5.459 22.838 12.579 36.973 13.222 16.224 0.736 31.446-5.302 42.47-10.976 11.741-6.042 22.79-13.824 31.744-20.944 1.053-0.838 2.134-1.232 2.883-1.341 0.403-0.061 0.611-0.032 0.688-0.013l121.094 59.075c-5.578 29.331-20.381 66.771-42.39 92.621-11.229 13.187-23.197 22.038-35.389 26.32-11.597 4.074-25.402 4.762-42.653-1.677-48.422-18.070-103.405-53.152-151.69-89.261-14.026-10.49-27.299-20.922-39.469-30.842l-44.387 44.39c14.186 11.683 29.84 24.061 46.445 36.48 49.808 37.248 110.448 76.56 167.261 97.76 30.275 11.299 59.149 11.238 85.197 2.086 25.45-8.938 46.090-25.786 62.246-44.755 31.866-37.424 50.634-88.144 57.059-126.246 4.72-27.987-11.776-51.77-33.136-62.192l-122.81-59.91c-24.41-11.907-51.462-6-69.834 8.611-7.008 5.571-14.544 10.739-21.443 14.291-5.574 2.867-8.931 3.741-10.314 4.003l-0.093-0.038c-0.992-0.4-3.731-1.514-8.57-4.387-3.277-1.942-6.87-4.301-10.71-7.002zM313.636 589.683l44.389-44.387c-9.92-12.17-20.349-25.44-30.838-39.466-36.109-48.285-71.192-103.267-89.263-151.69-6.437-17.251-5.748-31.056-1.675-42.652 4.283-12.192 13.134-24.16 26.319-35.388 25.849-22.012 63.291-36.814 92.622-42.392l59.075 121.095c0.019 0.077 0.048 0.285-0.013 0.688-0.109 0.752-0.502 1.83-1.341 2.883-7.12 8.954-14.902 20.003-20.944 31.744-5.674 11.024-11.715 26.246-10.976 42.47 0.643 14.134 7.763 27.773 13.222 36.973 4.563 7.686 10.109 15.683 16.013 23.53l44.707-44.707c-2.701-3.837-5.056-7.434-7.002-10.707-2.87-4.838-3.984-7.578-4.387-8.57l-0.038-0.093c0.266-1.382 1.139-4.739 4.006-10.314 3.552-6.899 8.72-14.435 14.291-21.443 14.611-18.371 20.518-45.424 8.611-69.834l-59.91-122.809c-10.422-21.362-34.205-37.856-62.192-33.137-38.103 6.425-88.824 25.194-126.246 57.060-18.972 16.155-35.817 36.795-44.757 62.246-9.15 26.048-9.211 54.921 2.087 85.196 21.202 56.813 60.513 117.453 97.761 167.261 12.417 16.605 24.795 32.256 36.478 46.442z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["phone-disabled"],"defaultCode":59804,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":130,"name":"phone-disabled","prevSize":32,"id":147,"code":59804},"setIdx":0,"setId":2,"iconIdx":158},{"icon":{"paths":["M801.123 657.59c22.474 7.734 50.954 2.582 67.408-20.544 22.4-31.488 44.992-80.624 48.922-129.619 1.99-24.838-0.691-51.344-12.368-75.661-11.949-24.89-32.32-45.35-61.718-58.768-55.165-25.181-125.84-40.262-187.398-49.146-61.946-8.936-117.494-11.98-143.965-11.98v62.469c23.2 0 75.757 2.787 135.043 11.341 59.677 8.611 123.36 22.682 170.381 44.144 16.749 7.645 26.022 17.894 31.344 28.973 5.59 11.651 7.795 26.371 6.413 43.635-2.717 33.843-18.723 70.784-35.52 95.469l-127.398-43.853c-0.067-0.042-0.237-0.17-0.48-0.496-0.451-0.608-0.934-1.651-1.088-2.989-1.296-11.363-3.606-24.678-7.635-37.254-3.786-11.808-10.278-26.842-22.272-37.792-10.451-9.539-25.126-14.15-35.494-16.794-11.914-3.040-25.568-5.181-38.944-6.717-26.858-3.088-55.773-4.093-74.352-4.093v62.47c16.902 0 43.338 0.938 67.219 3.683 11.99 1.379 22.554 3.123 30.64 5.187 5.45 1.389 8.173 2.541 9.162 2.957l0.093 0.038c0.79 1.165 2.544 4.154 4.458 10.125 2.368 7.392 4.045 16.374 5.059 25.267 2.659 23.325 17.61 46.63 43.29 55.469l129.203 44.477zM222.875 657.584c-22.474 7.738-50.954 2.586-67.407-20.544-22.4-31.485-44.993-80.621-48.922-129.616-1.992-24.838 0.691-51.344 12.366-75.664 11.949-24.886 32.321-45.347 61.719-58.765 55.165-25.181 125.841-40.262 187.4-49.146 61.946-8.937 117.494-11.98 143.965-11.98v62.47c-23.2 0-75.757 2.787-135.046 11.341-59.674 8.608-123.358 22.682-170.378 44.144-16.748 7.645-26.024 17.894-31.343 28.973-5.593 11.651-7.797 26.371-6.412 43.635 2.714 33.843 18.721 70.784 35.518 95.469l127.4-43.856c0.067-0.038 0.234-0.166 0.477-0.493 0.454-0.611 0.938-1.651 1.091-2.989 1.296-11.363 3.606-24.682 7.635-37.254 3.786-11.808 10.275-26.842 22.272-37.792 10.448-9.542 25.126-14.15 35.491-16.794 11.917-3.040 25.568-5.181 38.947-6.717 26.858-3.088 55.77-4.093 74.349-4.093v62.47c-16.899 0-43.338 0.938-67.216 3.683-11.99 1.376-22.554 3.123-30.64 5.187-5.453 1.389-8.176 2.541-9.162 2.957l-0.093 0.038c-0.79 1.162-2.547 4.154-4.458 10.125-2.371 7.389-4.045 16.371-5.059 25.267-2.659 23.322-17.61 46.627-43.293 55.469l-129.202 44.474z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["phone-end"],"defaultCode":59805,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":131,"name":"phone-end","prevSize":32,"id":148,"code":59805},"setIdx":0,"setId":2,"iconIdx":159},{"icon":{"paths":["M410.502 204.616c-10.419-21.362-34.202-37.856-62.189-33.137-38.104 6.425-88.825 25.194-126.247 57.060-18.972 16.155-35.817 36.795-44.757 62.246-9.15 26.048-9.211 54.919 2.087 85.195 21.202 56.816 60.513 117.456 97.761 167.264 37.482 50.122 74.609 91.552 93.329 110.269l44.173-44.173c-16.406-16.403-51.6-55.536-87.472-103.51-36.11-48.285-71.192-103.264-89.264-151.69-6.437-17.248-5.748-31.056-1.675-42.651 4.283-12.192 13.134-24.16 26.319-35.388 25.849-22.012 63.292-36.814 92.623-42.392l59.075 121.097c0.019 0.074 0.045 0.285-0.013 0.688-0.112 0.749-0.502 1.827-1.344 2.883-7.117 8.95-14.899 20-20.941 31.741-5.674 11.024-11.715 26.246-10.976 42.47 0.643 14.138 7.76 27.773 13.222 36.973 6.275 10.576 14.416 21.741 22.79 32.291 16.806 21.171 36.541 42.326 49.68 55.466l44.173-44.173c-11.952-11.952-29.981-31.309-44.928-50.134-7.504-9.453-13.738-18.157-17.997-25.334-2.87-4.838-3.984-7.578-4.387-8.57l-0.038-0.093c0.266-1.382 1.139-4.736 4.006-10.31 3.552-6.902 8.717-14.438 14.291-21.443 14.611-18.374 20.518-45.424 8.611-69.837l-59.914-122.808zM819.386 613.504c21.36 10.419 37.856 34.202 33.136 62.189-6.426 38.106-25.194 88.826-57.059 126.246-16.157 18.973-36.797 35.818-62.246 44.758-26.048 9.149-54.922 9.21-85.197-2.086-56.813-21.203-117.453-60.515-167.261-97.763-50.122-37.482-91.555-74.608-110.272-93.328l44.173-44.173c16.403 16.406 55.539 51.6 103.51 87.472 48.285 36.109 103.267 71.194 151.69 89.264 17.248 6.435 31.056 5.747 42.653 1.674 12.192-4.282 24.16-13.133 35.386-26.317 22.013-25.85 36.816-63.293 42.394-92.624l-121.094-59.075c-0.077-0.019-0.288-0.048-0.688 0.013-0.752 0.112-1.83 0.502-2.886 1.344-8.95 7.117-20 14.899-31.741 20.941-11.024 5.674-26.246 11.715-42.47 10.976-14.134-0.643-27.773-7.76-36.973-13.222-10.576-6.275-21.741-14.416-32.288-22.79-21.174-16.806-42.33-36.541-55.469-49.68l44.173-44.173c11.952 11.952 31.309 29.981 50.134 44.928 9.453 7.504 18.16 13.738 25.334 17.997 4.838 2.87 7.578 3.984 8.57 4.387l0.093 0.038c1.382-0.266 4.739-1.139 10.314-4.006 6.899-3.552 14.435-8.717 21.44-14.291 18.374-14.611 45.427-20.518 69.837-8.611l122.81 59.914z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["phone"],"defaultCode":59806,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":68,"name":"phone","prevSize":32,"id":149,"code":59806},"setIdx":0,"setId":2,"iconIdx":160},{"icon":{"paths":["M512.608 128.019c-72.378-1.376-144.906 25.78-199.307 80.524-54.654 54.999-89.301 136.056-89.301 239.464 0 80.234 44.5 174.87 97.546 252.806 53.066 77.965 120.829 148.157 176.141 175.821l15.194 7.6 14.81-8.326c217.158-122.154 272.31-333.882 272.31-427.898 0-101.731-27.923-181.776-80.179-236.932-52.346-55.248-125.296-81.503-207.213-83.060zM288 448.006c0-88.589 29.353-152.745 70.698-194.351 41.6-41.862 97.072-62.705 152.694-61.648 68.992 1.311 124.038 23.054 161.968 63.088 38.019 40.126 62.64 102.649 62.64 192.914 0 74.55-44.691 253.677-224.176 363.030-39.683-25.61-92.186-79.853-137.37-146.237-50.954-74.864-86.454-156.221-86.454-216.797zM544 416c0-17.674-14.326-32-32-32s-32 14.326-32 32c0 17.674 14.326 32 32 32s32-14.326 32-32zM608 416c0 53.021-42.979 96-96 96s-96-42.979-96-96c0-53.021 42.979-96 96-96s96 42.979 96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pin-map"],"defaultCode":59807,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":69,"name":"pin-map","prevSize":32,"id":150,"code":59807},"setIdx":0,"setId":2,"iconIdx":161},{"icon":{"paths":["M428.346 199.399c17.542-17.543 45.984-17.543 63.53 0 17.542 17.543 17.542 45.986 0 63.53l-43.661 43.659 177.83 177.828 60.339-60.339c24.992-24.995 65.517-24.995 90.509 0l45.254 45.254-331.869 331.869-45.254-45.254c-24.992-24.995-24.992-65.517 0-90.509l60.339-60.339-177.827-177.83-43.661 43.661c-17.543 17.542-45.987 17.542-63.53 0s-17.543-45.987 0-63.53l208.001-207.999zM175.090 362.144c-42.537 42.538-42.537 111.501 0 154.038 42.001 42.003 109.771 42.531 152.42 1.587l87.334 87.334-15.075 15.075c-49.987 49.987-49.987 131.034 0 181.021l67.882 67.882c12.496 12.496 32.758 12.496 45.254 0l167.936-167.933 88.013 92.003c12.218 12.771 32.474 13.219 45.245 1.002 12.771-12.214 13.219-32.47 1.002-45.242l-88.995-93.030 163.923-163.923c12.499-12.496 12.499-32.758 0-45.254l-67.882-67.882c-49.987-49.987-131.030-49.987-181.018 0l-15.907 15.907-87.325-87.323c41.766-42.596 41.51-110.983-0.768-153.262-42.538-42.537-111.504-42.537-154.042 0l-207.998 208z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pin"],"defaultCode":59808,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":70,"name":"pin","prevSize":32,"id":151,"code":59808},"setIdx":0,"setId":2,"iconIdx":162},{"icon":{"paths":["M513.354 160c17.674 0 32 13.133 32 29.333v645.332c0 16.202-14.326 29.334-32 29.334s-32-13.133-32-29.334v-645.332c0-16.2 14.326-29.333 32-29.333z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["Pipe"],"defaultCode":59809,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":71,"name":"Pipe","prevSize":32,"id":152,"code":59809},"setIdx":0,"setId":2,"iconIdx":163},{"icon":{"paths":["M512 928.003c229.75 0 416-186.25 416-416s-186.25-415.999-416-415.999c-229.75 0-416 186.25-416 415.999s186.25 416 416 416zM451.846 357.19l195.258 136.768c14.205 9.952 18.496 30.874 9.578 46.73-2.429 4.323-5.706 7.978-9.578 10.691l-195.258 136.768c-14.205 9.952-32.95 5.165-41.866-10.691-3.037-5.398-4.646-11.645-4.646-18.019v-273.536c0-18.72 13.597-33.894 30.368-33.894 5.712 0 11.309 1.795 16.144 5.184z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["play-filled"],"defaultCode":59810,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":72,"name":"play-filled","prevSize":32,"id":153,"code":59810},"setIdx":0,"setId":2,"iconIdx":164},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM451.85 357.187l195.254 136.768c14.208 9.949 18.496 30.87 9.581 46.726-2.432 4.326-5.706 7.981-9.581 10.694l-195.254 136.768c-14.208 9.952-32.954 5.165-41.869-10.694-3.037-5.398-4.646-11.642-4.646-18.016v-273.536c0-18.723 13.597-33.898 30.371-33.898 5.709 0 11.306 1.798 16.144 5.187z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["play"],"defaultCode":59811,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":73,"name":"play","prevSize":32,"id":154,"code":59811},"setIdx":0,"setId":2,"iconIdx":165},{"icon":{"paths":["M325.686 430.88l224.49 224.49-126.118 126.118-224.491-224.49 126.12-126.118zM370.941 385.626l192.115-192.117 224.49 224.491-192.115 192.115-224.49-224.49zM585.683 125.627c-12.496-12.497-32.758-12.497-45.254 0l-408.745 408.745c-12.497 12.496-12.497 32.758 0 45.254l269.746 269.747c5.229 5.229 11.818 8.269 18.63 9.123v0.067h0.57c2.278 0.243 4.576 0.243 6.851 0h440.579c17.674 0 32-14.33 32-32 0-17.674-14.326-32.003-32-32.003h-366.566l353.936-353.933c12.496-12.496 12.496-32.758 0-45.254l-269.747-269.746z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["prune"],"defaultCode":59817,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":77,"name":"prune","prevSize":32,"id":155,"code":59817},"setIdx":0,"setId":2,"iconIdx":166},{"icon":{"paths":["M230.486 636.688c-14.92-9.472-34.694-5.056-44.167 9.862-9.473 14.922-5.057 34.694 9.862 44.166l298.666 189.632c10.47 6.646 23.837 6.646 34.304 0l298.669-189.632c14.918-9.472 19.334-29.245 9.862-44.166-9.475-14.918-29.248-19.334-44.166-9.862l-281.517 178.739-281.514-178.739zM186.319 494.848c9.473-14.922 29.247-19.334 44.167-9.862l281.514 178.739 281.517-178.739c14.918-9.472 34.691-5.059 44.166 9.862 9.472 14.918 5.056 34.694-9.862 44.166l-298.669 189.632c-10.467 6.646-23.834 6.646-34.304 0l-298.666-189.632c-14.92-9.472-19.335-29.248-9.862-44.166zM529.152 143.657l298.669 189.629c9.245 5.872 14.848 16.064 14.848 27.014 0 10.954-5.603 21.146-14.848 27.014l-298.669 189.632c-10.467 6.646-23.834 6.646-34.304 0l-298.666-189.632c-9.246-5.869-14.848-16.061-14.848-27.014 0-10.95 5.602-21.142 14.848-27.014l298.666-189.629c10.47-6.647 23.837-6.647 34.304 0zM273.035 360.301l238.965 151.725 238.966-151.725-238.966-151.724-238.965 151.724z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["queue"],"defaultCode":59818,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":78,"name":"queue","prevSize":32,"id":156,"code":59818},"setIdx":0,"setId":2,"iconIdx":167},{"icon":{"paths":["M161.352 800c-11.706 0-22.477-6.39-28.087-16.666s-5.161-22.79 1.169-32.64l112.304-174.694h-69.387c-17.673 0-32-14.326-32-32v-288c0-17.673 14.327-32 32-32h255.999c17.674 0 32 14.327 32 32v288c0 6.138-1.763 12.144-5.082 17.306l-143.999 224c-5.888 9.158-16.029 14.694-26.918 14.694h-128zM332.269 561.306l-112.304 174.694h51.916l129.469-201.398v-246.602h-191.999v224h96c11.706 0 22.479 6.39 28.085 16.666 5.61 10.275 5.162 22.79-1.168 32.64zM577.35 800c-11.706 0-22.477-6.39-28.086-16.666s-5.162-22.79 1.171-32.64l112.304-174.694h-69.389c-17.67 0-32-14.326-32-32v-288c0-17.673 14.33-32 32-32h256c17.674 0 32 14.327 32 32v288c0 6.138-1.763 12.144-5.082 17.306l-144 224c-5.888 9.158-16.029 14.694-26.918 14.694h-128zM748.269 561.306l-112.304 174.694h51.917l129.469-201.398v-246.602h-192v224h96c11.706 0 22.48 6.39 28.086 16.666 5.61 10.275 5.162 22.79-1.168 32.64z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["quote"],"defaultCode":59819,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":79,"name":"quote","prevSize":32,"id":157,"code":59819},"setIdx":0,"setId":2,"iconIdx":168},{"icon":{"paths":["M800 560c0 176.73-143.27 320-320 320-176.731 0-320-143.27-320-320s143.269-320 320-320v-64c-212.077 0-384 171.923-384 384s171.923 384 384 384c212.077 0 384-171.923 384-384 0-10.778-0.445-21.45-1.315-32h-64.266c1.046 10.525 1.581 21.2 1.581 32zM800 128c0-17.673-14.326-32-32-32s-32 14.327-32 32v112h-112c-17.674 0-32 14.327-32 32s14.326 32 32 32h112v112c0 17.674 14.326 32 32 32s32-14.326 32-32v-112h112c17.674 0 32-14.327 32-32s-14.326-32-32-32h-112v-112zM384 528c35.347 0 64-28.653 64-64s-28.653-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64zM640 464c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64zM329.805 605.075c-10.451-14.25-30.477-17.331-44.728-6.88s-17.333 30.477-6.882 44.73c37.658 51.35 77.754 84.624 119.178 102.662 41.741 18.179 82.797 19.99 120.362 11.651 73.469-16.307 132.211-70.87 164.070-114.314 10.451-14.253 7.37-34.278-6.88-44.73-14.253-10.451-34.278-7.37-44.73 6.88-26.81 36.557-73.664 77.994-126.33 89.686-25.501 5.661-52.643 4.474-80.938-7.85-28.608-12.461-60.381-37.187-93.123-81.837z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["reaction-add"],"defaultCode":59820,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":132,"name":"reaction-add","prevSize":32,"id":158,"code":59820},"setIdx":0,"setId":2,"iconIdx":169},{"icon":{"paths":["M832 512c0-176.73-143.27-320-320-320s-320 143.27-320 320c0 176.73 143.27 320 320 320s320-143.27 320-320zM896 512c0 212.077-171.923 384-384 384s-384-171.923-384-384c0-212.077 171.923-384 384-384s384 171.923 384 384zM512 704c-106.038 0-192-85.962-192-192s85.962-192 192-192c106.038 0 192 85.962 192 192s-85.962 192-192 192z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["record"],"defaultCode":59821,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":133,"name":"record","prevSize":32,"id":159,"code":59821},"setIdx":0,"setId":2,"iconIdx":170},{"icon":{"paths":["M896 512h-63.984c0-175.414-145.754-320-328.518-320-115.27 0-215.818 57.513-274.362 144h110.768c17.674 0 32 14.326 32 32s-14.326 32-32 32h-179.904c-17.673 0-32-14.326-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v102.32c71.751-91.401 184.589-150.32 311.498-150.32 216.781 0 392.502 171.923 392.502 384 0 1.114 0.010 2.227 0 3.338v-3.338z","M127.997 512h63.986c0 175.414 145.751 320 328.519 320 115.27 0 215.818-57.514 274.358-144h-110.768c-17.67 0-32-14.326-32-32s14.33-32 32-32h179.907c17.67 0 32 14.326 32 32v192c0 17.674-14.33 32-32 32-17.674 0-32-14.326-32-32v-102.32c-71.754 91.402-184.592 150.32-311.498 150.32-216.782 0-392.505-171.923-392.505-384 0-1.082-0.009-2.166 0-3.245v3.245z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["refresh"],"defaultCode":59822,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":134,"name":"refresh","prevSize":32,"id":160,"code":59822},"setIdx":0,"setId":2,"iconIdx":171},{"icon":{"paths":["M713.718 450.362c0-142.689-115.824-258.362-258.701-258.362-142.878 0-258.704 115.673-258.704 258.362 0 142.691 115.826 258.365 258.704 258.365 142.877 0 258.701-115.674 258.701-258.365zM659.302 699.965c-55.645 45.475-126.774 72.762-204.285 72.762-178.271 0-322.788-144.326-322.788-322.365 0-178.035 144.517-322.362 322.788-322.362 178.269 0 322.787 144.327 322.787 322.362 0 77.408-27.318 148.442-72.854 204.013l186.838 186.592c12.608 12.589 12.608 33.002 0 45.59-12.605 12.589-33.043 12.589-45.648 0l-186.838-186.592z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["search"],"defaultCode":59823,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":136,"name":"search","prevSize":32,"id":161,"code":59823},"setIdx":0,"setId":2,"iconIdx":172},{"icon":{"paths":["M891.494 238.96l-297.475 637.446c-16.854 36.115-69.622 31.459-79.891-7.050l-66-247.498 151.248-189.059-219.994 109.997-226.833-113.418c-35.43-17.715-29.696-69.949 8.733-79.555l681.197-170.3c34.842-8.71 64.202 26.892 49.014 59.436z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["send-filled"],"defaultCode":59824,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":137,"name":"send-filled","prevSize":32,"id":162,"code":59824},"setIdx":0,"setId":2,"iconIdx":173},{"icon":{"paths":["M878.022 192.974c7.85 9.521 9.526 22.708 4.31 33.891l-298.669 640.002c-5.69 12.195-18.403 19.526-31.811 18.342-13.405-1.184-24.637-10.627-28.106-23.632l-81.619-306.070-285.772-142.886c-11.978-5.987-18.959-18.8-17.498-32.112s11.056-24.307 24.048-27.552l682.665-170.668c11.974-2.993 24.598 1.165 32.451 10.686zM505.821 545.968l57.082 214.051 233.027-499.35-533.58 133.395 203.606 101.802 69.51-52.131c14.141-10.605 34.198-7.741 44.8 6.4 10.605 14.138 7.741 34.195-6.4 44.8l-68.045 51.034z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["send"],"defaultCode":59825,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":138,"name":"send","prevSize":32,"id":163,"code":59825},"setIdx":0,"setId":2,"iconIdx":174},{"icon":{"paths":["M421.334 256c0-44.183-35.818-80-80-80s-80 35.817-80 80c0 44.183 35.817 80 80 80s80-35.817 80-80zM465.302 288c-14.211 55.206-64.326 96-123.968 96-59.643 0-109.758-40.794-123.968-96h-89.367c-17.673 0-32-14.327-32-32s14.327-32 32-32h89.367c14.209-55.207 64.324-96 123.968-96 59.642 0 109.757 40.793 123.968 96h430.698c17.674 0 32 14.327 32 32s-14.326 32-32 32h-430.698zM96 768c0-17.674 14.327-32 32-32h89.367c14.209-55.206 64.324-96 123.968-96 60.781 0 111.67 42.365 124.742 99.181 4.208-2.038 8.934-3.181 13.923-3.181h416c17.674 0 32 14.326 32 32s-14.326 32-32 32h-416c-4.989 0-9.715-1.142-13.923-3.181-13.072 56.816-63.962 99.181-124.742 99.181-59.643 0-109.758-40.794-123.968-96h-89.367c-17.673 0-32-14.326-32-32zM341.334 848c44.182 0 80-35.818 80-80s-35.818-80-80-80c-44.183 0-80 35.818-80 80s35.817 80 80 80zM796.029 543.757c-14.122 55.331-64.298 96.243-124.029 96.243s-109.904-40.912-124.029-96.243c-1.302 0.16-2.627 0.243-3.971 0.243h-416c-17.673 0-32-14.326-32-32s14.327-32 32-32h416c1.344 0 2.669 0.083 3.971 0.243 14.125-55.331 64.298-96.243 124.029-96.243s109.907 40.912 124.029 96.243c1.302-0.16 2.627-0.243 3.971-0.243h96c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96c-1.344 0-2.669-0.083-3.971-0.243zM752 512c0-44.182-35.818-80-80-80s-80 35.818-80 80c0 44.182 35.818 80 80 80s80-35.818 80-80z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["settings"],"defaultCode":59826,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":139,"name":"settings","prevSize":32,"id":164,"code":59826},"setIdx":0,"setId":2,"iconIdx":175},{"icon":{"paths":["M690.176 301.708c11.645-11.977 11.645-31.396 0-43.374l-149.091-153.351c-11.645-11.977-30.525-11.977-42.17 0l-149.091 153.351c-11.645 11.977-11.645 31.397 0 43.374s30.525 11.978 42.17 0l98.189-100.993v401.343c0 16.938 13.35 30.669 29.818 30.669s29.818-13.731 29.818-30.669v-401.343l98.189 100.993c11.645 11.978 30.525 11.978 42.17 0z","M221.818 379.274h149.091v59.635h-119.272v387.635h536.728v-387.635h-119.274v-59.635h149.091c16.467 0 29.818 13.35 29.818 29.818v447.274c0 16.467-13.35 29.818-29.818 29.818h-596.364c-16.468 0-29.818-13.35-29.818-29.818v-447.274c0-16.467 13.35-29.818 29.818-29.818z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["share"],"defaultCode":59827,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":244,"name":"share","prevSize":32,"id":165,"code":59827},"setIdx":0,"setId":2,"iconIdx":176},{"icon":{"paths":["M664.083 405.072c11.638-13.299 10.288-33.517-3.011-45.155s-33.517-10.288-45.155 3.011l-125.251 143.142-39.917-45.619c-11.638-13.299-31.853-14.646-45.155-3.011-13.299 11.638-14.646 31.856-3.008 45.155l64 73.142c6.077 6.944 14.854 10.928 24.080 10.928 9.229 0 18.006-3.984 24.083-10.928l149.334-170.666z","M541.99 143.050c-12.854-3.634-26.448-3.753-39.363-0.345l-264.724 69.849c-29.793 7.861-52.548 33.743-54.753 65.633-23.589 341.205 187.752 520.29 276.51 579.794 33.136 22.211 75.363 22.144 108.416-0.259 88.218-59.792 297.117-239.072 272.611-580.214-2.25-31.321-24.339-56.895-53.504-65.14l-245.194-69.318zM518.957 204.587c1.843-0.487 3.786-0.47 5.622 0.049l245.194 69.318c4.294 1.214 6.838 4.781 7.082 8.139 22.15 308.362-165.306 468.851-244.685 522.65-11.437 7.754-25.363 7.792-36.87 0.077-80.086-53.686-269.606-214.054-248.301-522.218 0.234-3.389 2.833-7.004 7.233-8.164l264.725-69.849z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["shield-check"],"defaultCode":59828,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":80,"name":"shield-check","prevSize":32,"id":166,"code":59828},"setIdx":0,"setId":2,"iconIdx":177},{"icon":{"paths":["M513.302 142.705c12.915-3.408 26.509-3.289 39.36 0.345l245.197 69.318c29.165 8.245 51.254 33.818 53.504 65.14 24.506 341.142-184.397 520.422-272.611 580.214-33.053 22.403-75.28 22.47-108.416 0.259-88.762-59.504-300.101-238.589-276.511-579.794 2.205-31.89 24.96-57.772 54.753-65.633l264.725-69.849zM535.251 204.637c-1.834-0.519-3.776-0.536-5.622-0.050l-264.723 69.849c-4.4 1.161-6.999 4.775-7.234 8.164-21.305 308.164 168.216 468.532 248.299 522.218 11.507 7.715 25.434 7.677 36.874-0.077 79.379-53.798 266.832-214.288 244.682-522.65-0.24-3.358-2.784-6.925-7.078-8.139l-245.197-69.317z","M490.672 337.334c-19.76 4.672-47.245 12.31-81.149 24.554 20.81 108.771 53.219 187.014 81.149 238.832v-263.386zM492.867 271.316c33.77-6.898 61.805 19.742 61.805 51.125v360.963c0 17.024-10.333 31.747-25.642 37.52-15.67 5.91-33.779 1.331-44.861-12.675-32.656-41.267-106.323-152.95-141.19-354.563-3.242-18.746 7.066-37.695 25.328-44.726 56.186-21.63 99.094-32.442 124.56-37.644z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["shield"],"defaultCode":59829,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":81,"name":"shield-alt","prevSize":32,"id":167,"code":59829},"setIdx":0,"setId":2,"iconIdx":178},{"icon":{"paths":["M778.64 213.336c-17.674 0-32 14.327-32 32v533.333c0 17.674 14.326 32 32 32s32-14.326 32-32v-533.333c0-17.673-14.326-32-32-32z","M600.87 341.334c-17.674 0-32 14.33-32 32v405.334c0 17.674 14.326 32 32 32s32-14.326 32-32v-405.334c0-17.67-14.326-32-32-32z","M423.104 810.669c-17.674 0-32-14.326-32-32v-277.334c0-17.67 14.326-32 32-32 17.67 0 32 14.33 32 32v277.334c0 17.674-14.33 32-32 32z","M245.333 597.334c-17.673 0-32 14.33-32 32v149.334c0 17.674 14.327 32 32 32s32-14.326 32-32v-149.334c0-17.67-14.327-32-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["signal"],"defaultCode":59830,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":82,"name":"signal","prevSize":32,"id":168,"code":59830},"setIdx":0,"setId":2,"iconIdx":179},{"icon":{"paths":["M289.362 192c13.364 0 25.321 8.305 29.987 20.829l96.001 257.699c6.17 16.56-2.256 34.986-18.816 41.155-16.563 6.17-34.989-2.253-41.158-18.816l-20.477-54.963h-91.074l-20.476 54.963c-6.17 16.563-24.597 24.986-41.158 18.816s-24.986-24.595-18.816-41.155l96-257.699c4.666-12.524 16.622-20.829 29.987-20.829zM311.058 373.904l-21.695-58.238-21.695 58.238h43.391z","M522.131 626.435c-12.154 12.829-11.606 33.082 1.222 45.238l160 151.587c12.342 11.693 31.674 11.693 44.016 0l160-151.587c12.832-12.157 13.376-32.41 1.222-45.238s-32.41-13.376-45.238-1.222l-105.99 100.419v-501.632c0-17.673-14.326-32-32-32s-32 14.327-32 32v501.632l-105.994-100.419c-12.829-12.154-33.082-11.606-45.238 1.222z","M193.362 570.947c-17.673 0-32 14.326-32 32 0 17.67 14.327 32 32 32h116.145l-139.065 142.73c-8.979 9.216-11.565 22.915-6.564 34.771 5.001 11.853 16.617 19.562 29.484 19.562h192.001c17.674 0 32-14.326 32-32s-14.326-32-32-32h-116.146l139.064-142.733c8.979-9.216 11.565-22.915 6.563-34.768-4.998-11.856-16.614-19.562-29.482-19.562h-192.001z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["sort-az"],"defaultCode":59831,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":83,"name":"sort-az","prevSize":32,"id":169,"code":59831},"setIdx":0,"setId":2,"iconIdx":180},{"icon":{"paths":["M919.258 667.229c12.605-12.253 12.877-32.394 0.605-44.982-12.269-12.589-32.435-12.858-45.040-0.605l-106.112 103.155v-500.8c0-17.568-14.259-31.81-31.853-31.81-17.59 0-31.85 14.242-31.85 31.81v500.8l-106.115-103.155c-12.605-12.253-32.768-11.984-45.040 0.605-12.269 12.589-11.997 32.73 0.608 44.982l160.179 155.718c12.368 12.019 32.070 12.019 44.435 0l160.182-155.718zM560.659 333.667c17.59 0 31.85-14.243 31.85-31.811s-14.259-31.809-31.85-31.809h-432.49c-17.591 0-31.852 14.242-31.852 31.809s14.26 31.811 31.852 31.811h432.49zM464.55 536.099c17.59 0 31.85-14.243 31.85-31.811 0-17.565-14.259-31.808-31.85-31.808h-336.381c-17.591 0-31.852 14.24-31.852 31.808s14.26 31.811 31.852 31.811h336.381zM384.458 722.96c17.594 0 31.853-14.24 31.853-31.808s-14.259-31.811-31.853-31.811h-256.289c-17.591 0-31.852 14.243-31.852 31.811s14.26 31.808 31.852 31.808h256.289z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["sort"],"defaultCode":59832,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":84,"name":"sort","prevSize":32,"id":170,"code":59832},"setIdx":0,"setId":2,"iconIdx":181},{"icon":{"paths":["M593.939 170.244c-20.867-57.726-103.155-55.816-121.322 2.815l-58.976 190.348h-221.513c-58.947 0-86.549 72.944-42.37 111.968l157.591 139.206-53.209 216.928c-14.17 57.77 51.25 101.936 99.533 67.197l177.741-127.875 177.741 127.875c48.285 34.739 113.706-9.427 99.536-67.197l-53.386-217.651 147.888-139.968c42.032-39.779 13.878-110.483-43.99-110.483h-195.443l-69.821-193.164z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["star-filled"],"defaultCode":59833,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":85,"name":"star-filled","prevSize":32,"id":171,"code":59833},"setIdx":0,"setId":2,"iconIdx":182},{"icon":{"paths":["M472.618 173.508c18.166-58.554 100.454-60.461 121.322-2.812l69.821 192.91h195.44c57.872 0 86.026 70.611 43.994 110.336l-147.888 139.782 53.386 217.363c14.17 57.696-51.251 101.805-99.536 67.11l-177.741-127.709-177.741 127.709c-48.283 34.691-113.703-9.414-99.533-67.11l53.209-216.64-157.591-139.024c-44.179-38.973-16.577-111.818 42.37-111.818h221.513l58.976-190.098zM603.574 385.334l-69.824-192.91-58.976 190.098c-8.304 26.758-33.085 45.002-61.133 45.002h-221.513l157.59 139.021c17.837 15.731 25.456 40.048 19.789 63.13l-53.209 216.643 177.74-127.709c22.33-16.045 52.426-16.045 74.755 0l177.738 127.709-53.386-217.363c-5.478-22.317 1.456-45.856 18.166-61.648l147.888-139.782h-195.44c-26.957 0-51.024-16.87-60.186-42.189z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["star"],"defaultCode":59834,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":86,"name":"star","prevSize":32,"id":172,"code":59834},"setIdx":0,"setId":2,"iconIdx":183},{"icon":{"paths":["M499.952 539.082c2.714 0.819 5.462 1.629 8.25 2.429 45.341 13.12 76.643 26.47 93.904 40.048 17.264 13.35 25.894 32.339 25.894 56.966s-9.322 44.074-27.965 58.346c-18.643 14.269-45.456 21.405-80.442 21.405-37.514 0-67.552-8.749-90.106-26.24-15.216-12.077-25.245-27.094-30.090-45.050-3.942-14.605-15.664-27.104-30.794-27.104h-11.843c-15.13 0-27.722 12.378-24.893 27.242 3.514 18.47 10.736 35.514 21.667 51.126 16.339 23.018 39.472 41.2 69.392 54.547 29.92 13.12 62.144 19.68 96.666 19.68 53.168 0 95.632-12.198 127.395-36.595 31.76-24.627 47.642-57.309 47.642-98.048 0-25.549-5.754-47.757-17.261-66.63-6.947-11.626-16.25-22.33-27.91-32.122h99.962c15.13 0 27.395-12.266 27.395-27.395s-12.266-27.392-27.395-27.392h-217.398c-1.709-0.493-3.437-0.986-5.178-1.472-41.658-11.738-71.235-24.627-88.726-38.669-17.261-14.269-25.894-31.645-25.894-52.131 0-25.546 9.091-45.456 27.277-59.725 18.41-14.5 43.958-21.75 76.64-21.75 35.216 0 62.49 8.746 81.824 26.24 13.139 11.731 21.814 26.496 26.022 44.288 3.485 14.723 15.242 27.174 30.371 27.174h11.84c15.13 0 27.702-12.374 24.88-27.238-3.331-17.552-9.974-34.134-19.923-49.75-14.733-23.475-35.677-41.888-62.835-55.237-26.928-13.349-57.654-20.024-92.179-20.024-50.634 0-91.834 13.004-123.594 39.012-31.533 25.779-47.299 58.46-47.299 98.047 0 34.986 12.89 64.445 38.669 88.381 1.050 0.957 2.125 1.907 3.222 2.854h-112.56c-15.13 0-27.395 12.262-27.395 27.392s12.265 27.395 27.395 27.395h225.373z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["strike"],"defaultCode":59846,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":94,"name":"strike","prevSize":32,"id":173,"code":59846},"setIdx":0,"setId":2,"iconIdx":184},{"icon":{"paths":["M481.35 117.336c0-17.673 14.326-32 32-32s32 14.327 32 32v106.667c0 17.673-14.326 32-32 32s-32-14.327-32-32v-106.667zM771.392 214.631c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-75.411 75.413c-12.499 12.496-32.758 12.496-45.254 0-12.499-12.496-12.499-32.759 0-45.255l75.411-75.412zM336.73 694.63c-12.499-12.496-32.759-12.496-45.256 0l-75.495 75.498c-12.497 12.496-12.497 32.755 0 45.254 12.497 12.496 32.758 12.496 45.255 0l75.496-75.498c12.496-12.496 12.496-32.755 0-45.254zM481.35 800.003c0-17.674 14.326-32 32-32s32 14.326 32 32v106.669c0 17.67-14.326 32-32 32s-32-14.33-32-32v-106.669zM213.352 212.001c-12.497 12.497-12.497 32.758 0 45.255l75.349 75.348c12.497 12.496 32.758 12.496 45.254 0 12.499-12.496 12.496-32.757 0-45.254l-75.348-75.349c-12.497-12.497-32.758-12.497-45.255 0zM695.978 739.885c-12.496-12.496-12.496-32.758 0-45.254 12.499-12.496 32.758-12.496 45.254 0l75.331 75.328c12.496 12.496 12.496 32.758 0 45.254-12.499 12.496-32.758 12.496-45.258 0l-75.328-75.328zM87.751 512.003c0 17.674 14.327 32 32 32h106.667c17.673 0 32-14.326 32-32s-14.327-32-32-32h-106.667c-17.673 0-32 14.326-32 32zM801.35 544.003c-17.674 0-32-14.326-32-32s14.326-32 32-32h106.669c17.67 0 32 14.326 32 32s-14.33 32-32 32h-106.669zM668.17 512c0-85.504-69.315-154.816-154.819-154.816-85.507 0-154.819 69.312-154.819 154.816 0 85.507 69.312 154.819 154.819 154.819 85.504 0 154.819-69.312 154.819-154.819zM726.682 512c0 117.821-95.51 213.334-213.331 213.334s-213.335-95.514-213.335-213.334c0-117.821 95.514-213.332 213.335-213.332s213.331 95.511 213.331 213.332z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["sun"],"defaultCode":59847,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":95,"name":"sun","prevSize":32,"id":174,"code":59847},"setIdx":0,"setId":2,"iconIdx":185},{"icon":{"paths":["M930.704 512c0 229.75-186.25 416-416 416s-415.999-186.25-415.999-416c0-229.75 186.25-416 415.999-416s416 186.25 416 416zM570.49 859.603l-41.827-156.102c-4.611 0.33-9.264 0.499-13.958 0.499-4.57 0-9.101-0.16-13.594-0.474l-41.837 156.134c18.058 2.854 36.573 4.339 55.43 4.339 18.986 0 37.616-1.504 55.786-4.397zM438.893 688.451c-47.549-20.454-85.181-59.571-103.674-108.125l-155.029 41.539c33.968 103.485 114.617 185.805 217.045 222.058l41.658-155.472zM162.705 512c0 16.090 1.080 31.926 3.17 47.443l156.906-42.042c-0.051-1.795-0.077-3.594-0.077-5.402 0-4.909 0.186-9.776 0.547-14.595l-156.051-41.814c-2.958 18.368-4.496 37.21-4.496 56.41zM396.31 180.407c-99.16 35.408-177.786 114.033-213.196 213.19l155.535 41.677c19.357-44.352 54.982-79.978 99.334-99.331l-41.674-155.536zM514.704 160c-19.197 0-38.035 1.537-56.4 4.494l41.814 156.053c4.813-0.362 9.68-0.547 14.586-0.547 5.030 0 10.019 0.192 14.95 0.573l41.808-156.021c-18.477-2.995-37.437-4.552-56.758-4.552zM632.512 843.802c102.659-36.451 183.392-119.194 217.094-223.12l-154.973-41.526c-18.291 48.982-56.010 88.493-103.786 109.155l41.664 155.491zM863.699 558.198c1.984-15.117 3.005-30.538 3.005-46.198 0-18.771-1.469-37.197-4.298-55.171l-156.157 41.84c0.301 4.406 0.454 8.851 0.454 13.331 0 1.376-0.013 2.752-0.042 4.122l157.037 42.077zM846.714 394.774c-35.165-99.6-113.885-178.641-213.277-214.247l-41.68 155.559c44.582 19.555 80.314 55.565 99.504 100.342l155.453-41.654zM642.704 512c0-70.691-57.306-128-128-128-70.691 0-128 57.309-128 128s57.309 128 128 128c70.694 0 128-57.309 128-128z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["support"],"defaultCode":59848,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":96,"name":"support","prevSize":32,"id":175,"code":59848},"setIdx":0,"setId":2,"iconIdx":186},{"icon":{"paths":["M368 412.982c-53.592 0-96-42.877-96-94.491 0-51.616 42.408-94.491 96-94.491 53.594 0 96 42.876 96 94.491 0 51.614-42.406 94.491-96 94.491zM368 476.982c88.365 0 160-70.96 160-158.491s-71.635-158.491-160-158.491c-88.365 0-160 70.959-160 158.491s71.635 158.491 160 158.491zM713.6 397.133c-35.92 0-64-28.685-64-62.794s28.080-62.792 64-62.792c35.92 0 64 28.684 64 62.792s-28.080 62.794-64 62.794zM713.6 461.133c70.691 0 128-56.768 128-126.794s-57.309-126.792-128-126.792c-70.691 0-128 56.767-128 126.792s57.309 126.794 128 126.794zM197.459 527.267c27.344-8.707 56.67-9.242 84.319-1.539l48.491 13.51c24.205 6.742 49.882 6.275 73.824-1.347l30.099-9.584c29.475-9.386 61.085-9.962 90.89-1.658 67.962 18.934 114.918 80.333 114.918 150.269v91.987c0 52.518-42.979 95.094-96 95.094h-352c-53.019 0-96-42.576-96-95.094v-103.766c0-62.909 40.999-118.621 101.459-137.872zM264.451 586.758c-15.545-4.333-32.034-4.032-47.407 0.864-33.993 10.822-57.044 42.147-57.044 77.517v103.766c0 17.507 14.327 31.699 32 31.699h352c17.674 0 32-14.192 32-31.699v-91.987c0-41.533-27.885-77.997-68.246-89.242-17.699-4.931-36.474-4.589-53.978 0.986l-30.099 9.584c-35.91 11.434-74.426 12.138-110.737 2.019l-48.489-13.507zM691.2 778.717h140.8c53.021 0 96-42.979 96-96v-30.611c0-56.877-38.614-106.49-93.747-120.454-21.398-5.418-43.853-5.040-65.056 1.098l-16.4 4.746c-21.843 6.323-44.973 6.714-67.018 1.13l-29.805-7.549c-19.907-5.043-40.797-4.691-60.522 1.018-1.066 0.31-2.122 0.634-3.174 0.97 10.71 4.048 20.896 9.539 30.253 16.374l2.429 1.776 15.040 13.206c9.939 8.726 18.141 19.248 24.182 31.014l2.208 4.301 3.677 0.931c33.062 8.374 67.76 7.789 100.525-1.693l16.4-4.749c10.282-2.976 21.171-3.158 31.546-0.531 26.736 6.771 45.462 30.832 45.462 58.413v30.611c0 17.674-14.326 32-32 32h-140.8v64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["team"],"defaultCode":59849,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":97,"name":"team","prevSize":32,"id":176,"code":59849},"setIdx":0,"setId":2,"iconIdx":187},{"icon":{"paths":["M223.311 308.609c-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-9.348 103.235 27.547 175.997 86.848 226.374 60.642 51.52 146.602 80.998 235.29 90.893 88.611 9.885 186.221 1.398 263.341-14.973 38.56-8.189 70.928-18.125 93.888-28.128 8.906-3.882 15.837-7.536 20.941-10.765-2.374-1.514-5.245-3.197-8.672-5.030-8.886-4.749-19.059-9.261-29.613-13.894l-1.843-0.81c-9.315-4.083-19.725-8.65-27.613-13.078-14.291-8.026-28.317-17.155-38.544-26.867-5.034-4.781-10.762-11.194-14.595-19.184-4.054-8.454-6.96-21.078-1.261-34.435 30.816-72.186 45.459-111.725 52.554-137.834 6.621-24.378 6.621-36.653 6.621-56.17v-0.179c0-15.51-8.979-86.595-53.776-152.876-43.376-64.174-121.398-125.729-264.832-125.729-129.725 0-207.83 53.576-254.529 118.696zM173.267 272.433c58.132-81.063 154.749-144.433 304.573-144.433 164.896 0 261.594 72.589 315.859 152.878 52.838 78.181 64.416 161.881 64.416 187.641 0 21.654-0.022 40.336-8.797 72.64-7.834 28.835-22.627 68.614-50.048 133.424 5.069 4.032 12.592 9.005 22.506 14.57 5.12 2.877 12.995 6.339 24.054 11.194 10.266 4.506 22.582 9.93 33.891 15.978 10.848 5.798 23.526 13.571 32.954 23.738 9.859 10.63 20.208 28.87 12.816 51.139-4.87 14.672-16.182 25.091-25.61 32.016-10.24 7.52-22.947 14.278-36.858 20.342-27.949 12.176-64.582 23.181-105.68 31.907-82.198 17.453-186.522 26.688-282.909 15.936-96.31-10.746-195.346-43.178-268.313-105.165-74.031-62.893-119.295-154.778-108.551-277.856 0.276-63.411 19.117-157.053 75.696-235.948zM333.952 422.051c0-17.648 14.25-31.955 31.83-31.955h183.008c17.578 0 31.827 14.307 31.827 31.955s-14.25 31.955-31.827 31.955h-183.008c-17.581 0-31.83-14.307-31.83-31.955zM365.782 539.709c-17.581 0-31.83 14.307-31.83 31.955s14.25 31.955 31.83 31.955h224.118c17.578 0 31.827-14.307 31.827-31.955s-14.25-31.955-31.827-31.955h-224.118z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["threads"],"defaultCode":59850,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":98,"name":"threads","prevSize":32,"id":177,"code":59850},"setIdx":0,"setId":2,"iconIdx":188},{"icon":{"paths":["M353.354 320c0-17.673 14.326-32 32-32h256c17.674 0 32 14.327 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M385.354 416c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M481.354 448c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M641.354 416c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M353.354 576c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M513.354 544c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M609.354 576c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M385.354 672c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M481.354 704c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M641.354 672c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M289.353 160h448.001c35.344 0 64 28.654 64 64v576c0 35.347-28.656 64-64 64h-448.001c-35.346 0-64-28.653-64-64v-576c0-35.346 28.654-64 64-64zM289.353 224v576h448.001v-576h-448.001z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["total"],"defaultCode":59851,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":99,"name":"total","prevSize":32,"id":178,"code":59851},"setIdx":0,"setId":2,"iconIdx":189},{"icon":{"paths":["M713.613 91.356c13.162-11.794 33.392-10.685 45.187 2.477l129.034 144c10.89 12.154 10.89 30.556 0 42.71l-129.034 144.001c-11.795 13.162-32.026 14.269-45.187 2.477-13.162-11.795-14.272-32.026-2.477-45.187l81.222-90.646h-216.358c-17.674 0-32-14.327-32-32s14.326-32 32-32h216.358l-81.222-90.645c-11.795-13.162-10.685-33.393 2.477-45.187zM340.026 464.461c8.586-15.45 28.067-21.018 43.514-12.432l128.461 71.366 128.461-71.366c15.446-8.586 34.928-3.018 43.514 12.432 8.582 15.45 3.014 34.931-12.435 43.514l-159.539 88.634-159.539-88.634c-15.45-8.582-21.018-28.064-12.435-43.514zM192 288v448h640v-192c0-17.674 14.326-32 32-32s32 14.326 32 32v224c0 17.674-14.326 32-32 32h-704c-17.673 0-32-14.326-32-32v-512c0-17.673 14.327-32 32-32h272c17.674 0 32 14.327 32 32s-14.326 32-32 32h-240z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["transcript"],"defaultCode":59852,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":100,"name":"transcript","prevSize":32,"id":179,"code":59852},"setIdx":0,"setId":2,"iconIdx":190},{"icon":{"paths":["M384 320c0-17.673-14.326-32-32-32s-32 14.327-32 32v256c0 106.038 85.962 192 192 192s192-85.962 192-192v-256c0-17.673-14.326-32-32-32s-32 14.327-32 32v256c0 70.691-57.309 128-128 128s-128-57.309-128-128v-256zM352 856c-13.254 0-24 10.746-24 24s10.746 24 24 24h320c13.254 0 24-10.746 24-24s-10.746-24-24-24h-320z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["underline"],"defaultCode":59853,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":101,"name":"underline","prevSize":32,"id":180,"code":59853},"setIdx":0,"setId":2,"iconIdx":191},{"icon":{"paths":["M512 832c176.73 0 320-143.27 320-320s-143.27-320-320-320c-111.712 0-210.056 57.244-267.295 144h107.295c17.674 0 32 14.326 32 32s-14.326 32-32 32h-176c-17.673 0-32-14.326-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v101.364c70.228-90.856 180.282-149.364 304-149.364 212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384h64c0 176.73 143.27 320 320 320z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["undo"],"defaultCode":59854,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":102,"name":"undo","prevSize":32,"id":181,"code":59854},"setIdx":0,"setId":2,"iconIdx":192},{"icon":{"paths":["M467.808 512c0-63.322-61.053-128-153.903-128s-153.905 64.678-153.905 128c0 63.322 61.054 128 153.905 128s153.903-64.678 153.903-128zM512 592.099c34.454 66.042 110.195 111.901 198.096 111.901 120.346 0 217.904-85.962 217.904-192s-97.558-192-217.904-192c-87.901 0-163.642 45.859-198.096 111.901-34.451-66.042-110.195-111.901-198.095-111.901-120.345 0-217.905 85.962-217.905 192s97.559 192 217.905 192c87.9 0 163.644-45.859 198.095-111.901zM864 512c0 63.322-61.053 128-153.904 128s-153.904-64.678-153.904-128c0-63.322 61.053-128 153.904-128s153.904 64.678 153.904 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["Unlimited"],"defaultCode":59855,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":103,"name":"Unlimited","prevSize":32,"id":182,"code":59855},"setIdx":0,"setId":2,"iconIdx":193},{"icon":{"paths":["M829.168 153.372c12.515-12.497 32.803-12.497 45.315 0 12.515 12.497 12.515 32.758 0 45.255l-672.887 672c-12.513 12.496-32.801 12.496-45.315 0s-12.513-32.758 0-45.254l672.887-672zM110.155 480.051c101.936-153.699 303.797-327.676 542.114-225.436l-49.578 49.512c-56.528-19.209-108.077-19.504-153.526-9.726-114.906 24.721-215.653 118.392-280.79 213.871 38.633 48 75.969 86.822 111.862 117.885l-45.363 45.302c-39.684-34.736-80.189-77.437-121.317-129.181-14.248-17.923-16.056-43.146-3.402-62.227zM797.981 350.454l-45.328 45.27c35.546 31.427 72.336 70.947 110.186 120.080-61.546 95.187-158.656 188.682-272.125 213.626-46.752 10.278-100.624 9.734-160.592-11.603l-49.331 49.267c244.662 107.334 443.389-69.158 540.778-224.253 11.674-18.589 9.894-42.656-3.395-60.128-40.493-53.235-80.64-96.931-120.192-132.259zM514.982 347.43c13.709 0 27.037 1.571 39.802 4.541l-203.738 203.469c-3.901-13.837-5.981-28.403-5.981-43.44 0-90.89 76.074-164.57 169.917-164.57zM679.091 469.184l-203.264 202.998c12.57 2.87 25.68 4.39 39.155 4.39 93.843 0 169.917-73.68 169.917-164.573 0-14.81-2.019-29.162-5.808-42.816z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["unread-on-top-disabled"],"defaultCode":59856,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":104,"name":"unread-on-top-disabled","prevSize":32,"id":183,"code":59856},"setIdx":0,"setId":2,"iconIdx":194},{"icon":{"paths":["M589.36 729.43c-107.366 23.603-252.288-9.875-422.339-221.158 65.137-95.478 165.885-189.15 280.79-213.871 108.314-23.302 251.286 10.604 413.674 221.404-61.546 95.187-158.653 188.682-272.125 213.626zM916.819 482.714c-347.59-456.963-669.742-211.156-808.018-2.662-12.655 19.082-10.846 44.304 3.402 62.227 362.786 456.419 677.038 209.142 808.011 0.563 11.674-18.589 9.894-42.656-3.395-60.128zM619.462 512c0-53.709-45.517-100.57-105.834-100.57s-105.834 46.861-105.834 100.57c0 53.709 45.517 100.573 105.834 100.573s105.834-46.864 105.834-100.573zM683.546 512c0 90.893-76.074 164.573-169.917 164.573s-169.917-73.68-169.917-164.573c0-90.89 76.074-164.57 169.917-164.57s169.917 73.68 169.917 164.57z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["unread-on-top"],"defaultCode":59857,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":105,"name":"unread-on-top","prevSize":32,"id":184,"code":59857},"setIdx":0,"setId":2,"iconIdx":195},{"icon":{"paths":["M273.128 356.678c-6.62 27.766-2.384 63.757 25.498 105.581l33.166 49.75h-59.792c-44.011 0-70.484 14.874-86.279 33.619-16.496 19.578-24.573 47.264-23.734 77.491 0.841 30.262 10.601 59.968 25.818 81.312 15.127 21.216 33.404 31.578 52.195 31.578h143.999v64h-144c-45.209 0-80.932-25.642-104.306-58.426-23.283-32.656-36.522-74.95-37.682-116.688-1.16-41.773 9.763-86.083 38.766-120.506 20.726-24.598 49.155-42.32 84.825-50.784-16.1-39.011-19.009-77.050-10.731-111.77 11.253-47.2 42.305-84.492 80.791-107.342 38.4-22.798 85.677-32.139 131.303-21.965 35.584 7.935 68.909 27.48 95.251 59.554 53.75-35.147 127.584-30.892 182.483-2.495 34.438 17.812 64.794 46.382 81.437 85.010 12.294 28.531 16.438 61.011 10.608 96.205 46.112 6.682 81.507 25.155 105.616 53.456 30.346 35.626 38.102 81.35 33.443 123.283-4.659 41.917-21.946 83.485-46.544 115.114-24.061 30.934-59.354 57.354-101.261 57.354h-144v-64h144c14.093 0 32.8-9.581 50.742-32.646 17.398-22.371 30.112-52.806 33.453-82.89 3.341-30.067-2.902-56.339-18.554-74.714-15.222-17.869-44.035-33.75-97.642-33.75h-45.686l15.613-42.938c13.546-37.251 11.091-66.742 1.437-89.149-9.856-22.87-28.502-41.302-52.064-53.488-49.587-25.649-107.475-18.625-134.717 14.064l-30.134 36.16-22.541-41.325c-19.757-36.219-47.232-54.175-74.87-60.339-28.378-6.327-59.098-0.669-84.701 14.53-25.512 15.148-44.461 38.855-51.208 67.152zM630.979 588.778l-96-99.050c-6.029-6.218-14.32-9.728-22.979-9.728s-16.95 3.51-22.979 9.728l-96 99.050c-12.298 12.691-11.981 32.95 0.707 45.251 12.691 12.298 32.95 11.981 45.251-0.707l41.021-42.326v273.005c0 17.674 14.326 32 32 32s32-14.326 32-32v-273.005l41.021 42.326c12.301 12.688 32.56 13.005 45.251 0.707 12.691-12.301 13.005-32.56 0.707-45.251z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["upload"],"defaultCode":59858,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":106,"name":"upload","prevSize":32,"id":185,"code":59858},"setIdx":0,"setId":2,"iconIdx":196},{"icon":{"paths":["M553.411 326.282c0 91.578-75.846 165.818-169.411 165.818-93.564 0-169.412-74.24-169.412-165.818 0-91.581 75.848-165.821 169.412-165.821 93.565 0 169.411 74.24 169.411 165.821zM485.648 326.282c0-54.949-45.51-99.493-101.648-99.493s-101.647 44.544-101.647 99.493c0 54.947 45.509 99.491 101.647 99.491s101.648-44.544 101.648-99.491z","M203.427 511.232c28.952-9.11 60.004-9.67 89.279-1.61l51.342 14.131c25.632 7.056 52.819 6.566 78.166-1.408l31.872-10.026c31.206-9.821 64.678-10.422 96.234-1.738 71.962 19.811 121.68 84.051 121.68 157.219v96.24c0 54.947-45.51 99.491-101.648 99.491h-372.705c-56.138 0-101.647-44.544-101.647-99.491v-108.566c0-65.814 43.411-124.106 107.427-144.243zM274.359 573.472c-16.46-4.531-33.918-4.218-50.196 0.906-35.992 11.322-60.399 44.093-60.399 81.098v108.566c0 18.317 15.17 33.165 33.882 33.165h372.705c18.714 0 33.882-14.848 33.882-33.165v-96.24c0-43.453-29.523-81.603-72.259-93.366-18.739-5.158-38.618-4.8-57.152 1.030l-31.872 10.026c-38.022 11.962-78.803 12.698-117.248 2.115l-51.343-14.134z","M797.091 189.321c0-15.913-13.024-28.812-29.091-28.812s-29.091 12.9-29.091 28.812v100.844h-101.818c-16.067 0-29.091 12.9-29.091 28.812s13.024 28.812 29.091 28.812h101.818v100.845c0 15.914 13.024 28.813 29.091 28.813s29.091-12.899 29.091-28.813v-100.845h101.818c16.067 0 29.091-12.899 29.091-28.812s-13.024-28.812-29.091-28.812h-101.818v-100.844z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["user-add"],"defaultCode":59859,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":107,"name":"user-add","prevSize":32,"id":186,"code":59859},"setIdx":0,"setId":2,"iconIdx":197},{"icon":{"paths":["M464 318.747c0-51.548-42.406-94.366-96-94.366-53.592 0-96 42.819-96 94.366s42.408 94.367 96 94.367c53.594 0 96-42.819 96-94.367zM528 318.747c0 87.416-71.635 158.284-160 158.284s-160-70.867-160-158.284c0-87.417 71.635-158.282 160-158.282s160 70.865 160 158.282zM281.778 525.712c-27.649-7.693-56.976-7.158-84.319 1.536-60.46 19.226-101.459 74.864-101.459 137.69v103.629c0 52.451 42.981 94.97 96 94.97h352c3.606 0 7.165-0.195 10.666-0.579v-64.534c-3.334 1.168-6.925 1.802-10.666 1.802h-352c-17.673 0-32-14.173-32-31.658v-103.629c0-35.325 23.051-66.605 57.044-77.414 15.373-4.89 31.862-5.187 47.407-0.864l48.489 13.491c36.311 10.102 74.827 9.402 110.737-2.016l30.099-9.571c17.504-5.568 36.278-5.91 53.978-0.986 18.899 5.261 35.066 16.042 46.912 30.282v-79.712c-9.309-4.749-19.203-8.627-29.584-11.517-29.805-8.291-61.414-7.715-90.89 1.654l-30.099 9.574c-23.942 7.61-49.619 8.080-73.824 1.344l-48.491-13.491zM763.366 489.709c-12.326-12.646-32.586-12.918-45.248-0.608-12.666 12.31-12.938 32.544-0.611 45.19l102.842 105.51h-324.349c-17.674 0-32 14.307-32 31.958 0 17.648 14.326 31.958 32 31.958h324.349l-102.842 105.507c-12.326 12.65-12.054 32.88 0.611 45.194 12.662 12.31 32.922 12.038 45.248-0.611l155.718-159.757c12.093-12.406 12.093-32.176 0-44.582l-155.718-159.76z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["user-forward"],"defaultCode":59860,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":108,"name":"user-forward","prevSize":32,"id":187,"code":59860},"setIdx":0,"setId":2,"iconIdx":198},{"icon":{"paths":["M609.354 336c0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96s96-42.979 96-96zM673.354 336c0 88.365-71.635 160-160 160s-160-71.635-160-160c0-88.365 71.635-160 160-160s160 71.635 160 160zM413.805 551.802c-24.621-5.77-50.285-5.366-74.714 1.178-67.086 17.968-113.738 78.762-113.738 148.211v66.81c0 53.021 42.98 96 96 96h384c53.021 0 96-42.979 96-96v-58.531c0-74.301-51.149-138.826-123.488-155.779l-6.458-1.514c-25.674-6.016-52.435-5.594-77.907 1.229l-49.626 13.293c-20.378 5.456-41.789 5.795-62.326 0.979l-67.744-15.875zM355.651 614.8c14.237-3.814 29.197-4.051 43.549-0.688l67.744 15.878c30.806 7.219 62.925 6.714 93.488-1.472l49.629-13.293c15.283-4.096 31.341-4.349 46.742-0.736l6.458 1.51c43.402 10.173 74.093 48.89 74.093 93.469v58.531c0 17.674-14.326 32-32 32h-384c-17.673 0-32-14.326-32-32v-66.81c0-40.483 27.193-75.917 66.298-86.39z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["user"],"defaultCode":59861,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":109,"name":"user","prevSize":32,"id":188,"code":59861},"setIdx":0,"setId":2,"iconIdx":199},{"icon":{"paths":["M201.583 672c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 576c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M201.583 480c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 384c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M201.583 288c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M329.584 192c-17.674 0-32.001 14.327-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.327 32-32s-14.326-32-32-32h-544z","M201.583 864c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 768c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["view-condensed"],"defaultCode":59862,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":110,"name":"view-condensed","prevSize":32,"id":189,"code":59862},"setIdx":0,"setId":2,"iconIdx":200},{"icon":{"paths":["M288 192c0-17.673 14.327-32 32-32h544c17.674 0 32 14.327 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.327-32-32zM288 288c0-17.673 14.327-32 32-32h448c17.674 0 32 14.327 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.327-32-32zM192 304c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M288 464c0-17.674 14.327-32 32-32h544c17.674 0 32 14.326 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.326-32-32zM288 560c0-17.674 14.327-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.326-32-32zM192 576c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M288 736c0-17.674 14.327-32 32-32h544c17.674 0 32 14.326 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.326-32-32zM288 832c0-17.674 14.327-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.326-32-32zM192 848c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["view-extended"],"defaultCode":59863,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":111,"name":"view-extended","prevSize":32,"id":190,"code":59863},"setIdx":0,"setId":2,"iconIdx":201},{"icon":{"paths":["M192 320c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M320 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h544c17.674 0 32-14.327 32-32s-14.326-32-32-32h-544z","M192 576c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M320 480c-17.673 0-32 14.326-32 32s14.327 32 32 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M192 832c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M320 736c-17.673 0-32 14.326-32 32s14.327 32 32 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["view-medium"],"defaultCode":59864,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":112,"name":"view-medium","prevSize":32,"id":191,"code":59864},"setIdx":0,"setId":2,"iconIdx":202},{"icon":{"paths":["M640.854 256c26.512 0 48-21.49 48-48s-21.488-48-48-48c-26.509 0-48 21.49-48 48s21.491 48 48 48zM640.854 320c61.856 0 112-50.144 112-112s-50.144-112-112-112c-61.856 0-112 50.144-112 112s50.144 112 112 112zM592.854 416v256h-160v128h32v-96h224v-288h-96zM528.854 768h160c35.347 0 64-28.653 64-64v-288c0-35.347-28.653-64-64-64h-96c-35.344 0-64 28.653-64 64v192h-96c-35.344 0-64 28.653-64 64v128c0 35.347 28.656 64 64 64h32c35.347 0 64-28.653 64-64v-32zM784.854 448c0-17.674 14.326-32 32-32s32 14.326 32 32v384c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32s14.326-32 32-32h192v-352zM368.403 401.52c9.677-9.059 10.176-24.246 1.117-33.923l-48.272-51.558v-47.925c0-13.255-10.746-24-24-24s-24 10.745-24 24v57.406c0 6.093 2.316 11.955 6.48 16.403l54.752 58.48c9.059 9.677 24.246 10.176 33.923 1.117zM170.974 414.278c53.308 74.218 156.687 91.171 230.908 37.862 10.765-7.731 25.76-5.274 33.494 5.491 7.731 10.768 5.274 25.763-5.494 33.494-95.75 68.771-229.121 46.902-297.894-48.848s-46.902-229.123 48.848-297.895c75.545-54.26 174.453-52.073 246.597-1.796 10.874 7.578 13.546 22.538 5.968 33.412s-22.538 13.547-33.411 5.968c-55.971-39.005-132.65-40.618-191.153 1.402-74.219 53.308-91.171 156.688-37.864 230.909z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["waiting-on-me"],"defaultCode":59865,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":113,"name":"waiting-on-me","prevSize":32,"id":192,"code":59865},"setIdx":0,"setId":2,"iconIdx":203},{"icon":{"paths":["M512 352.003c17.674 0 32 14.33 32 32v224c0 17.674-14.326 32-32 32s-32-14.326-32-32v-224c0-17.67 14.326-32 32-32z","M512 672.003c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32s-32-14.326-32-32c0-17.67 14.326-32 32-32z","M567.101 158.348c-24.774-41.922-85.427-41.922-110.202 0l-359.92 609.099c-25.21 42.662 5.544 96.557 55.099 96.557h719.845c49.555 0 80.307-53.894 55.098-96.557l-359.92-609.099zM512 190.906l359.923 609.097h-719.845l359.922-609.097z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["warning"],"defaultCode":59866,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":114,"name":"warning","prevSize":32,"id":193,"code":59866},"setIdx":0,"setId":2,"iconIdx":204},{"icon":{"paths":["M784.131 240.143c-35.43-35.658-77.581-63.931-124.016-83.181s-96.227-29.094-146.493-28.961c-210.863 0-382.322 171.532-382.414 382.376-0.085 67.104 17.523 133.043 51.047 191.171l-54.256 198.154 202.72-53.174c56.064 30.531 118.883 46.531 182.717 46.538h0.166c210.752 0 382.32-171.552 382.394-382.394 0.16-50.25-9.645-100.029-28.848-146.464-19.2-46.436-47.418-88.604-83.018-124.065zM513.622 828.486h-0.186c-56.922 0.006-112.797-15.293-161.776-44.298l-11.606-6.896-120.302 31.555 32.124-117.347-7.573-12.029c-31.783-50.64-48.608-109.232-48.535-169.021 0-175.235 142.653-317.816 317.981-317.816 84.301 0.049 165.13 33.58 224.707 93.218 59.581 59.638 93.034 140.499 92.998 224.8-0.074 175.254-142.653 317.834-317.834 317.834zM687.958 590.451c-9.552-4.787-56.528-27.907-65.293-31.171s-15.126-4.768-21.491 4.784c-6.362 9.555-24.678 31.171-30.253 37.462-5.574 6.288-11.149 7.187-20.701 2.4-9.555-4.784-40.339-14.87-76.845-47.434-28.403-25.322-47.584-56.621-53.174-66.192-5.594-9.571-0.589-14.669 4.198-19.491 4.291-4.291 9.552-11.168 14.32-16.742s6.381-9.571 9.552-15.933c3.174-6.362 1.597-11.955-0.787-16.739-2.384-4.787-21.491-51.818-29.466-70.96-7.757-18.63-15.622-16.099-21.491-16.394-5.501-0.275-11.955-0.349-18.336-0.349-4.842 0.131-9.606 1.264-13.994 3.325-4.387 2.058-8.298 5.005-11.491 8.65-8.749 9.552-33.428 32.675-33.428 79.706s34.234 92.467 39.002 98.848c4.765 6.381 67.382 102.883 163.187 144.266 17.792 7.68 35.974 14.413 54.477 20.17 22.902 7.334 43.731 6.237 60.179 3.779 18.336-2.733 56.547-23.104 64.506-45.418 7.955-22.317 7.955-41.459 5.501-45.456-2.458-3.997-8.618-6.326-18.173-11.11z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["whatsapp-monochromatic"],"defaultCode":59868,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":237,"name":"whatsapp-monochromatic","prevSize":32,"id":194,"code":59868},"setIdx":0,"setId":2,"iconIdx":205},{"icon":{"paths":["M354.006 399.123l14.029 0.627-0.541-16.726-152.878 1.578c49.916-116.491 165.64-198.133 300.366-198.133 99.645 0 188.893 44.659 248.81 115.065-3.712 0.171-7.491 0.492-11.526 1.068 0 0-63.76 14.898-13.302 118.708 0 0 31.085 84.541-19.306 198.774l-28.403 73.306-99.101-264.723c0 0-5.984-28.154 23.61-28.154l23.76-1.472 0.339-16.035h-228.368v14.458c0 0 39.83-0.288 56.15 27.149l40.762 103.779-73.014 174.403-108.608-272.4c0 0-3.389-31.779 27.222-31.27z","M841.603 513.168c0-33.862-5.235-66.643-14.726-97.357l-145.949 378.755c96.134-56.88 160.675-161.571 160.675-281.398z","M411.478 823.011c32.49 10.912 67.267 16.778 103.488 16.778 37.85 0 74.102-6.406 107.898-18.256l-99.709-258.502-111.677 259.981z","M188.279 513.149c0-32.083 4.712-63.066 13.339-92.336l1 2.051 152.656 375.229c-99.606-55.882-166.994-162.538-166.994-284.944z","M130.705 512.093c0-211.775 172.316-384.093 384.076-384.093 211.725 0 383.923 172.318 383.923 384.093 0 211.776-172.198 384.010-383.923 384.010-211.757 0-384.076-172.234-384.076-384.010zM514.781 879.254c202.384 0 367.11-164.742 367.11-367.178 0-202.486-164.726-367.145-367.11-367.161-202.489 0-367.213 164.673-367.213 367.161 0 202.435 164.724 367.178 367.213 367.178z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["wordpress-monochromatic"],"defaultCode":59656,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":241,"name":"wordpress-monochromatic","prevSize":32,"id":195,"code":59755},"setIdx":0,"setId":2,"iconIdx":206},{"icon":{"paths":["M193.353 405.334h213.332v-213.334h-213.332v213.334zM129.353 170.667c0-23.564 19.102-42.667 42.667-42.667h256c23.565 0 42.666 19.102 42.666 42.667v255.999c0 23.565-19.101 42.669-42.666 42.669h-256c-23.564 0-42.667-19.104-42.667-42.669v-255.999zM620.019 405.334h213.334v-213.334h-213.334v213.334zM556.019 170.667c0-23.564 19.104-42.667 42.666-42.667h256c23.565 0 42.669 19.102 42.669 42.667v255.999c0 23.565-19.104 42.669-42.669 42.669h-256c-23.562 0-42.666-19.104-42.666-42.669v-255.999zM620.019 618.666h213.334v213.334h-213.334v-213.334zM598.685 554.666c-23.562 0-42.666 19.104-42.666 42.669v256c0 23.562 19.104 42.666 42.666 42.666h256c23.565 0 42.669-19.104 42.669-42.666v-256c0-23.565-19.104-42.669-42.669-42.669h-256zM193.353 832h213.332v-213.334h-213.332v213.334zM129.353 597.334c0-23.565 19.102-42.669 42.667-42.669h256c23.565 0 42.666 19.104 42.666 42.669v256c0 23.562-19.101 42.666-42.666 42.666h-256c-23.564 0-42.667-19.104-42.667-42.666v-256z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["workspaces"],"defaultCode":59870,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":119,"name":"workspaces","prevSize":32,"id":196,"code":59870},"setIdx":0,"setId":2,"iconIdx":207},{"icon":{"paths":["M384.509 149.333c0-11.782 9.562-21.333 21.36-21.333h85.446c11.798 0 21.363 9.551 21.363 21.333v106.667h-106.81c-11.798 0-21.36-9.551-21.36-21.333v-85.333z","M512.678 256h106.806c11.798 0 21.36 9.551 21.36 21.333v85.332c0 11.782-9.562 21.334-21.36 21.334h-106.806v-128z","M384.509 405.334c0-11.782 9.562-21.334 21.36-21.334h106.81v128h-106.81c-11.798 0-21.36-9.552-21.36-21.334v-85.331z","M512.678 512h106.806c11.798 0 21.36 9.552 21.36 21.334v106.666h-128.166v-128z","M427.232 640c-23.597 0-42.723 19.104-42.723 42.666v170.669c0 23.562 19.126 42.666 42.723 42.666h170.89c23.597 0 42.723-19.104 42.723-42.666v-213.334h-213.613zM491.315 725.334c-11.798 0-21.36 9.549-21.36 21.331v42.669c0 11.782 9.562 21.331 21.36 21.331h42.723c11.798 0 21.36-9.549 21.36-21.331v-42.669c0-11.782-9.562-21.331-21.36-21.331h-42.723z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["zip"],"defaultCode":59871,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":120,"name":"zip","prevSize":32,"id":197,"code":59871},"setIdx":0,"setId":2,"iconIdx":208},{"icon":{"paths":["M544 208c0-17.673-14.326-32-32-32s-32 14.327-32 32v271.997h-271.998c-17.673 0-32 14.326-32 32s14.327 32 32 32h271.998v272.003c0 17.674 14.326 32 32 32s32-14.326 32-32v-272.003l272-0.003c17.674 0 32-14.326 32-32s-14.326-32-32-32l-272 0.003v-271.997z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["add"],"defaultCode":59872,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":240,"name":"add","prevSize":32,"id":198,"code":59872},"setIdx":0,"setId":2,"iconIdx":209},{"icon":{"paths":["M772.986 470.432h-40.186c-1.104-12.381-10.090-19.757-26.454-19.757-16.278 0-24.416 6.867-24.502 16.365-0.339 10.342 9.667 15.6 25.437 18.992l14.922 3.389c34.253 7.546 52.989 24.502 53.158 52.227-0.17 32.982-25.773 52.566-69.014 52.566-43.661 0-71.894-19.414-72.403-60.026h40.186c0.934 16.701 13.142 25.35 31.709 25.35 16.874 0 26.794-7.376 26.963-17.974-0.17-9.75-8.733-14.922-27.811-19.331l-18.141-4.24c-30.016-6.867-48.496-21.706-48.413-48.070-0.253-32.304 28.317-53.923 67.997-53.923 40.355 0 66.214 21.958 66.554 54.432z","M354.858 470.432h40.186c-0.339-32.474-26.198-54.432-66.554-54.432-39.679 0-68.251 21.619-67.996 53.923-0.085 26.365 18.398 41.203 48.411 48.070l18.145 4.24c19.075 4.41 27.638 9.581 27.808 19.331-0.17 10.598-10.090 17.974-26.96 17.974-18.569 0-30.778-8.65-31.71-25.35h-40.187c0.509 40.611 28.741 60.026 72.403 60.026 43.242 0 68.845-19.584 69.014-52.566-0.17-27.725-18.906-44.682-53.158-52.227l-14.922-3.389c-15.77-3.392-25.774-8.65-25.435-18.992 0.085-9.498 8.224-16.365 24.501-16.365 16.365 0 25.35 7.376 26.454 19.757z","M418.614 418.374v173.635h40.864v-107.251h1.443l41.712 106.15h26.112l41.715-105.555h1.44v106.656h40.867v-173.635h-51.974l-44.086 107.504h-2.035l-44.086-107.504h-51.971z","M864 192c16.973 0 33.251 6.743 45.254 18.745s18.746 28.281 18.746 45.255v635.296c0 12.186-3.478 24.122-10.032 34.397-6.55 10.278-15.898 18.474-26.947 23.619-11.046 5.146-23.334 7.027-35.418 5.43-12.083-1.6-23.456-6.614-32.787-14.458l-128.81-108.285h-534.006c-16.974 0-33.252-6.742-45.255-18.746s-18.745-28.282-18.745-45.254v-512c0-16.974 6.743-33.252 18.745-45.255s28.281-18.745 45.255-18.745h704zM864 256h-704v512h534.006c15.066 0 29.648 5.315 41.181 15.011l128.813 108.285v-635.296z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["sms"],"defaultCode":59753,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":3,"name":"sms","prevSize":32,"id":199,"code":59772},"setIdx":0,"setId":2,"iconIdx":210}],"height":1024,"metadata":{"name":"custom"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"custom","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"showSelector":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16}}
\ No newline at end of file
+{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M505.133 128.078c60.819-1.376 120.422 15.569 170.346 48.251 49.904 32.67 87.501 79.327 107.75 133.159 20.24 53.808 22.205 112.266 5.648 167.165-16.554 54.89-50.864 103.683-98.368 139.309-15.501 11.462-28.189 26.246-36.989 43.309-8.822 17.107-13.469 36-13.507 55.216v21.514h-96.013v-148.774l120.989-151.235c11.040-13.802 8.803-33.939-4.998-44.979s-33.939-8.803-44.979 4.998l-103.011 128.765-103.011-128.765c-11.040-13.802-31.178-16.038-44.979-4.998s-16.038 31.178-4.998 44.979l120.989 151.235v148.774h-95.994v-21.677c-0.138-19.030-4.762-37.728-13.462-54.691-8.694-16.954-21.21-31.69-36.509-43.194l-19.229 25.578 19.069-25.696c-34.247-25.418-61.857-57.84-80.845-94.736-18.985-36.89-28.886-77.331-29.027-118.285v-0.045c-0.71-146.981 123.709-271.715 281.13-275.177zM640.013 800c16.506 0 32.618-6.243 44.72-17.795 12.157-11.603 19.28-27.664 19.28-44.746v-22.842c0.022-8.947 2.182-17.856 6.39-26.016 4.214-8.176 10.406-15.459 18.208-21.216l0.192-0.144c58.173-43.59 100.733-103.75 121.35-172.109 20.621-68.378 18.154-141.245-7.021-208.177-25.168-66.908-71.664-124.28-132.602-164.174-60.915-39.878-133.274-60.348-206.826-58.689-189.76 4.184-344.567 155.060-343.702 339.427l0 0.045 32-0.154-32 0.109c0.176 51.165 12.553 101.558 36.121 147.35 23.547 45.754 57.616 85.658 99.521 116.774 7.682 5.792 13.781 13.062 17.952 21.194 4.164 8.122 6.33 16.944 6.409 25.84v22.781c0 17.082 7.123 33.142 19.28 44.746 12.106 11.552 28.218 17.795 44.72 17.795h256.006zM352 864c-17.674 0-32 14.326-32 32s14.326 32 32 32h320c17.674 0 32-14.326 32-32s-14.326-32-32-32h-320z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lamp-bulb"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{}]}},"attrs":[{}],"properties":{"order":2,"id":211,"name":"lamp-bulb","prevSize":32,"code":59836},"setIdx":0,"setId":3,"iconIdx":0},{"icon":{"paths":["M805.237 283.429l196.242-196.247c17.854-17.852 17.854-46.797 0-64.65s-46.797-17.853-64.651 0l-196.242 196.247v-118.208c0-25.247-20.469-45.714-45.716-45.714s-45.714 20.467-45.714 45.714v228.571c0 6.198 1.233 12.109 3.468 17.499 2.18 5.269 5.388 10.214 9.623 14.526 0.197 0.201 0.396 0.4 0.597 0.597 4.313 4.236 9.258 7.444 14.527 9.624 5.39 2.235 11.3 3.468 17.499 3.468h228.573c25.249 0 45.714-20.467 45.714-45.714s-20.465-45.714-45.714-45.714h-118.206z","M951.267 656.825l-175.543-85.486c-16.084-7.554-33.975-10.404-51.609-8.22s-34.292 9.313-48.046 20.563c-9.736 7.537-19.969 14.41-30.629 20.571-4.83 2.333-9.885 4.171-15.086 5.486-4.296-1.762-8.427-3.904-12.343-6.4-12.499-7.862-24.556-16.408-36.114-25.6-26.971-21.486-54.4-45.714-71.771-63.999s-42.514-45.715-64-71.772c-9.191-11.557-17.737-23.614-25.6-36.114-2.496-3.915-4.637-8.046-6.4-12.343 1.315-5.2 3.153-10.255 5.486-15.086 6.162-10.659 13.035-20.892 20.571-30.629 11.25-13.755 18.379-30.411 20.563-48.046s-0.666-35.527-8.221-51.611l-85.486-175.542c-8.049-16.123-21.039-29.253-37.074-37.477s-34.278-11.109-52.069-8.238c-65.816 11.076-127.77 38.594-180.114 80-29.112 24.217-51.21 55.785-64 91.429-13.541 39.607-12.406 82.76 3.2 121.6 35.759 85.055 82.645 164.991 139.428 237.714 40.98 55.305 85.573 107.838 133.486 157.257 49.154 47.566 101.381 91.854 156.343 132.573 73.149 56.891 153.552 103.775 239.086 139.425 38.8 15.813 82.028 16.955 121.598 3.204 34.816-13.144 65.558-35.218 89.147-64 41.896-52.202 69.888-114.169 81.371-180.114 2.831-17.842-0.124-36.123-8.426-52.165-8.309-16.041-21.541-29-37.749-36.98zM848.867 868.023c-13.122 16.867-30.471 29.952-50.286 37.947-20.070 6.312-41.706 5.5-61.257-2.289-77.428-32.98-150.262-75.849-216.684-127.539-51.185-39.314-99.887-81.758-145.829-127.087-44.761-46.585-86.594-95.898-125.257-147.657-51.713-66.32-94.445-139.178-127.086-216.686-8.331-19.406-9.306-41.183-2.743-61.257 7.992-19.814 21.083-37.162 37.943-50.285 38.131-29.723 82.791-49.938 130.286-58.971l86.857 173.256c0.222 1.363 0.222 2.752 0 4.114-11.332 14.261-21.282 29.569-29.714 45.715-10.492 18.525-15.857 39.512-15.543 60.799 1.935 18.775 8.363 36.808 18.743 52.571 9.907 15.866 20.745 31.131 32.457 45.714 24.229 30.171 52.114 60.8 70.857 79.543s49.371 45.715 79.543 70.858c14.584 11.712 29.849 22.55 45.714 32.456 15.764 10.38 33.796 16.809 52.571 18.743 21.288 0.315 42.275-5.050 60.8-15.543 16.146-8.432 31.454-18.382 45.716-29.714 1.214-1.009 2.611-1.784 4.111-2.285l169.604 85.486c-9.296 48.304-30.157 93.63-60.804 132.111z"],"attrs":[{"fill":"rgb(9, 90, 210)"},{"fill":"rgb(9, 90, 210)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":1},{"f":1}]},"tags":["Vector"],"grid":0},"attrs":[{"fill":"rgb(9, 90, 210)"},{"fill":"rgb(9, 90, 210)"}],"properties":{"order":540,"id":0,"name":"phone-in","prevSize":32,"code":59835},"setIdx":0,"setId":3,"iconIdx":1},{"icon":{"paths":["M896 512c0-212.077-171.923-384-384-384s-384 171.923-384 384c0 212.077 171.923 384 384 384s384-171.923 384-384zM480 544v286.419c-56.483-5.606-108.646-25.904-152.618-57.011 46.403-78.992 67.251-156.97 71.734-229.408h80.883zM334.8 544c-4.282 58.995-21.005 122.198-56.631 186.458-46.616-49.875-77.462-114.678-84.589-186.458h141.22zM398.954 480c-6.192-93.13-37.366-173.574-70.627-230.072 43.773-30.733 95.594-50.78 151.674-56.348v286.42h-81.046zM279.095 292.556c26.251 47.457 50.118 112.532 55.644 187.444h-141.159c7.174-72.253 38.381-137.437 85.515-187.444zM544 544h80.883c4.483 72.438 25.331 150.416 71.734 229.408-43.971 31.107-96.134 51.405-152.618 57.011v-286.419zM830.419 544c-7.126 71.779-37.971 136.582-84.589 186.458-35.626-64.259-52.349-127.462-56.63-186.458h141.219zM830.419 480h-141.158c5.526-74.912 29.395-139.987 55.645-187.444 47.133 50.008 78.339 115.192 85.514 187.444zM544 193.58c56.080 5.568 107.901 25.614 151.674 56.348-33.261 56.499-64.435 136.943-70.627 230.072h-81.046v-286.42z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["basketball"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":255,"id":1,"name":"basketball","prevSize":32,"code":59776},"setIdx":0,"setId":3,"iconIdx":2},{"icon":{"paths":["M822.627 201.372c12.496 12.497 12.496 32.758 0 45.255l-576 576c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l576-576c12.496-12.497 32.758-12.497 45.254 0z","M192 320c0-70.692 57.308-128 128-128 70.691 0 128 57.308 128 128 0 70.691-57.309 128-128 128-70.692 0-128-57.309-128-128zM320 256c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.347 0 64-28.653 64-64s-28.653-64-64-64z","M704 576c-70.691 0-128 57.309-128 128s57.309 128 128 128c70.691 0 128-57.309 128-128s-57.309-128-128-128zM640 704c0-35.347 28.653-64 64-64s64 28.653 64 64c0 35.347-28.653 64-64 64s-64-28.653-64-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["percentage"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":256,"id":2,"name":"percentage","prevSize":32,"code":59777},"setIdx":0,"setId":3,"iconIdx":3},{"icon":{"paths":["M226.9 260.289c6.691-2.875 13.811-4.319 20.961-4.288 17.673 0.077 32.062-14.187 32.14-31.86s-14.187-32.062-31.86-32.14c-15.989-0.070-31.8 3.167-46.506 9.485-14.702 6.317-27.969 15.571-39.071 27.156-11.1 11.582-19.822 25.269-25.729 40.238-5.898 14.946-8.889 30.916-8.834 47.005l-0.001 15.941 0.001-11.899v255.848c-0 0.074-0.001 0.15-0.001 0.224v89.6c0 43.642 16.497 85.792 46.318 117.104 29.872 31.366 70.73 49.296 113.682 49.296 42.954 0 83.811-17.93 113.683-49.296 29.821-31.312 46.317-73.462 46.317-117.104v-57.6h128v57.6c0 43.642 16.496 85.792 46.317 117.104 29.872 31.366 70.73 49.296 113.683 49.296s83.811-17.93 113.683-49.296c29.821-31.312 46.317-73.462 46.317-117.104v-89.6c0-0.077 0-0.15 0-0.227v-259.883c0.054-16.090-2.938-32.062-8.835-47.010-5.907-14.969-14.627-28.656-25.728-40.238-11.104-11.585-24.368-20.839-39.072-27.156-14.704-6.318-30.515-9.555-46.506-9.485-17.674 0.077-31.936 14.467-31.859 32.14s14.467 31.937 32.141 31.86c7.149-0.031 14.269 1.413 20.96 4.288 6.694 2.876 12.867 7.147 18.128 12.636 5.264 5.492 9.501 12.090 12.403 19.448 2.906 7.36 4.4 15.292 4.368 23.326v228.302h-639.999l0-228.173-0-0.128c-0.032-8.034 1.462-15.965 4.366-23.326 2.904-7.358 7.141-13.957 12.404-19.448 5.26-5.489 11.434-9.759 18.129-12.636zM269.255 608l104.214 104.214c6.826-14.237 10.531-30.173 10.531-46.614v-57.6h-114.745zM717.254 608l104.214 104.214c6.826-14.237 10.531-30.173 10.531-46.614v-57.6h-114.746zM896 315.89v0zM128.001 319.928l0-3.973-0-0.069v4.043zM328.954 758.208l-136.954-136.954v44.346c0 27.648 10.475 53.869 28.663 72.966 18.137 19.043 42.394 29.434 67.337 29.434 14.208 0 28.194-3.37 40.954-9.792zM640 665.6v-44.346l136.954 136.954c-12.758 6.422-26.746 9.792-40.954 9.792-24.944 0-49.2-10.39-67.338-29.434-18.189-19.098-28.662-45.318-28.662-72.966z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["glasses"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":257,"id":3,"name":"glasses","prevSize":32,"code":59812},"setIdx":0,"setId":3,"iconIdx":4},{"icon":{"paths":["M193.603 416h-33.603c-17.673 0-32 14.326-32 32s14.327 32 32 32h704c17.674 0 32-14.326 32-32s-14.326-32-32-32h-33.603c-7.347-73.117-39.702-141.853-92.122-194.274-60.013-60.012-141.405-93.726-226.275-93.726s-166.262 33.714-226.274 93.726c-52.421 52.421-84.777 121.157-92.123 194.274zM330.979 266.981c48.010-48.010 113.126-74.981 181.021-74.981s133.011 26.971 181.021 74.981c40.403 40.404 65.907 92.923 72.973 149.019h-507.987c7.066-56.096 32.57-108.615 72.972-149.019z","M877.242 605.133c16.090-7.315 23.203-26.285 15.891-42.374-7.315-16.090-26.285-23.203-42.374-15.891l-127.558 57.981-127.558-57.981c-8.413-3.824-18.070-3.824-26.483 0l-127.558 57.981-127.558-57.981c-8.413-3.824-18.070-3.824-26.483 0l-140.8 64c-16.089 7.315-23.203 26.285-15.89 42.374s26.284 23.203 42.373 15.891l18.758-8.528v29.68c0 38.102 15.908 74.31 43.672 100.752 27.712 26.394 64.978 40.963 103.528 40.963h345.6c38.55 0 75.814-14.57 103.526-40.963 27.766-26.442 43.674-62.65 43.674-100.752v-64.589l45.242-20.563zM736.442 669.133l31.558-14.346v35.498c0 20.093-8.368 39.699-23.811 54.41-15.494 14.758-36.832 23.306-59.389 23.306h-345.6c-22.556 0-43.893-8.547-59.39-23.306-15.444-14.71-23.81-34.317-23.81-54.41v-58.771l44.8-20.362 127.558 57.981c8.413 3.824 18.070 3.824 26.483 0l127.558-57.981 127.558 57.981c8.413 3.824 18.070 3.824 26.483 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["burger"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":258,"id":4,"name":"burger","prevSize":32,"code":59813},"setIdx":0,"setId":3,"iconIdx":5},{"icon":{"paths":["M234.831 743.917c-75.198-141.606-58.197-285.718 40.507-391.734 101.776-109.314 284.915-172.318 524.636-158.217 16.192 0.953 29.114 13.872 30.064 30.066 14.102 239.723-48.902 422.859-158.218 524.635-106.016 98.707-250.128 115.706-391.737 40.506l-65.457 65.456c-12.497 12.499-32.758 12.499-45.255 0-12.497-12.496-12.497-32.758 0-45.254l65.458-65.456zM282.51 696.237l300.107-300.109c12.496-12.496 32.758-12.496 45.254 0 12.496 12.499 12.496 32.758 0 45.258l-300.109 300.106c113.565 53.238 220.73 34.554 300.448-39.664 86.579-80.611 146.157-231.866 139.251-445.286-213.418-6.905-364.675 52.673-445.283 139.254-74.219 79.715-92.904 186.877-39.669 300.442z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["leaf"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":259,"id":5,"name":"leaf","prevSize":32,"code":59814},"setIdx":0,"setId":3,"iconIdx":6},{"icon":{"paths":["M512 192c-13.056 0-25.578 5.187-34.813 14.419-9.232 9.233-14.419 21.755-14.419 34.812v162.462c0 12.122-6.848 23.2-17.686 28.621l-253.082 126.541v49.498l232.493-46.499c9.402-1.882 19.149 0.554 26.563 6.63 7.414 6.080 11.712 15.162 11.712 24.749v108.307c0 8.486-3.37 16.624-9.373 22.627l-44.781 44.781v47.789l91.501-36.602c7.629-3.050 16.141-3.050 23.77 0l91.501 36.602v-47.789l-44.781-44.781c-6.003-6.003-9.373-14.141-9.373-22.627v-108.307c0-9.587 4.298-18.669 11.712-24.749 7.414-6.077 17.162-8.512 26.563-6.63l232.493 46.499v-49.498l-253.082-126.541c-10.838-5.421-17.686-16.499-17.686-28.621v-162.462c0-13.057-5.187-25.579-14.419-34.812-9.235-9.232-21.757-14.419-34.813-14.419zM431.933 161.164c21.235-21.235 50.035-33.164 80.067-33.164s58.832 11.93 80.067 33.164c21.235 21.235 33.165 50.036 33.165 80.066v142.686l253.078 126.538c10.842 5.421 17.69 16.502 17.69 28.624v108.307c0 9.587-4.298 18.669-11.712 24.746s-17.162 8.512-26.563 6.63l-232.493-46.496v56.019l44.781 44.781c6 6 9.373 14.141 9.373 22.627v108.307c0 10.618-5.267 20.544-14.061 26.499-8.794 5.952-19.965 7.155-29.824 3.213l-123.501-49.402-123.501 49.402c-9.859 3.942-21.030 2.739-29.824-3.213-8.794-5.955-14.061-15.882-14.061-26.499v-108.307c0-8.486 3.373-16.627 9.373-22.627l44.781-44.781v-56.019l-232.492 46.496c-9.401 1.882-19.149-0.554-26.564-6.63s-11.712-15.158-11.712-24.746v-108.307c0-12.122 6.848-23.203 17.689-28.624l253.079-126.538v-142.686c0-30.031 11.93-58.831 33.165-80.066z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["airplane"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":260,"id":6,"name":"airplane","prevSize":32,"code":59815},"setIdx":0,"setId":3,"iconIdx":7},{"icon":{"paths":["M565.802 233.862l-97.261 97.261h-187.521l-0.456 0.003c-14.696 0.208-28.717 6.186-39.042 16.637l-97.095 96.797-0.048 0.048c-7.165 7.174-12.248 16.157-14.707 25.994-2.459 9.834-2.202 20.154 0.745 29.856 2.946 9.699 8.471 18.419 15.984 25.226 7.506 6.8 16.746 11.443 26.678 13.424l125.65 25.19c5.103 1.024 10.166 0.771 14.859-0.538l162.866 162.867c1.987 1.987 4.17 3.654 6.483 5.011l22.88 114.128c1.981 9.936 6.618 19.146 13.418 26.653 6.81 7.514 15.526 13.037 25.229 15.984s20.019 3.203 29.856 0.746c9.837-2.461 18.819-7.542 25.994-14.707l96.842-97.146c10.451-10.323 16.432-24.346 16.64-39.040l0.003-0.454v-193.802c0-2.893-0.384-5.693-1.104-8.358l77.443-77.44c110.522-110.525 110.474-223.191 103.152-273.759-1.862-13.592-8.122-26.204-17.824-35.908s-22.317-15.962-35.907-17.823c-50.57-7.321-163.235-7.371-273.757 103.151zM611.056 279.117c92.138-92.138 182.144-90.373 218.947-85.121 5.254 36.804 7.018 126.811-85.12 218.948l-245.798 245.802-133.83-133.827 245.802-245.802zM404.541 395.123l-104.222 104.221-100.071-20.064 84.42-84.157h119.873zM542.89 705.446l106.909-106.906v135.61l-84.16 84.422-22.266-111.062c-0.138-0.698-0.301-1.386-0.483-2.064z","M286.325 699.699c15.297-8.851 20.524-28.426 11.674-43.725-8.85-15.296-28.426-20.522-43.723-11.674-49.486 28.63-72.438 77.786-83.25 115.523-5.52 19.267-8.252 36.813-9.619 49.539-0.687 6.397-1.037 11.661-1.217 15.424-0.090 1.885-0.137 3.402-0.162 4.499l-0.023 1.334-0.004 0.422-0.001 0.15v0.083c0 8.486 3.372 16.65 9.372 22.65 6.001 6.003 14.14 9.373 22.628 9.373v-32c0 32 0.037 32 0.048 32h0.208l0.424-0.003 1.333-0.022c1.099-0.026 2.614-0.074 4.498-0.163 3.764-0.179 9.029-0.528 15.425-1.216 12.727-1.366 30.272-4.099 49.54-9.619 37.739-10.813 86.892-33.763 115.523-83.251 8.851-15.296 3.622-34.87-11.674-43.722s-34.874-3.626-43.725 11.674c-16.669 28.813-47.164 45.011-77.751 53.776-6.095 1.744-12.005 3.139-17.55 4.25 1.111-5.546 2.505-11.456 4.251-17.549 8.763-30.589 24.961-61.085 53.775-77.754zM192 831.299l-32-0.022c0 0.013 0 0.022 32 0.022z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["rocket"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":261,"id":7,"name":"rocket","prevSize":32,"code":59816},"setIdx":0,"setId":3,"iconIdx":8},{"icon":{"paths":["M478.65 672c-17.674 0-32-14.326-32-32v-32h-32c-17.674 0-32-14.326-32-32s14.326-32 32-32h32v-58.88h-32c-17.674 0-32-14.326-32-32s14.326-32 32-32h32v-37.12c0-17.674 14.326-32 32-32 17.67 0 32 14.326 32 32v37.12h58.88v-37.12c0-17.674 14.326-32 32-32s32 14.326 32 32v37.12h37.12c17.67 0 32 14.326 32 32s-14.33 32-32 32h-37.12v58.88h37.12c17.67 0 32 14.326 32 32s-14.33 32-32 32h-37.12v32c0 17.674-14.326 32-32 32s-32-14.326-32-32v-32h-58.88v32c0 17.674-14.33 32-32 32zM510.65 544h58.88v-58.88h-58.88v58.88z","M158.648 672h-32c-17.673 0-32-14.326-32-32s14.327-32 32-32h32v-192h-32c-17.673 0-32-14.326-32-32s14.327-32 32-32h32v-160c0-35.346 28.654-64 64-64h608.001c35.344 0 64 28.654 64 64v640c0 35.347-28.656 64-64 64h-608.001c-35.346 0-64-28.653-64-64v-160zM830.65 192h-608.001v160h32c17.673 0 32 14.326 32 32s-14.327 32-32 32h-32v192h32c17.673 0 32 14.326 32 32s-14.327 32-32 32h-32v160h608.001v-640z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["directory"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":4,"id":8,"name":"directory","prevSize":32,"code":59648},"setIdx":0,"setId":3,"iconIdx":9},{"icon":{"paths":["M833.35 128c10.285 0 20 2.425 28.611 6.735-11.834 4.684-22.922 11.812-32.493 21.383l-35.882 35.882h-568.236v160h32c17.673 0 32 14.326 32 32s-14.327 32-32 32h-32v192h32c17.673 0 32 14.326 32 32s-14.327 32-32 32h-32v88.237l-64 64v-152.237h-32c-17.673 0-32-14.326-32-32s14.327-32 32-32h32v-192h-32c-17.673 0-32-14.326-32-32s14.327-32 32-32h32v-160c0-35.346 28.654-64 64-64h607.999z","M361.117 896l64-64h408.234v-408.237l64-64v472.237c0 35.347-28.653 64-64 64h-472.234z","M604.23 352c8.166 0 15.616 3.056 21.267 8.090l-53.267 53.267v-29.357c0-17.674 14.33-32 32-32z","M513.35 421.12h51.117l-115.117 115.117v-51.117h-32c-17.67 0-32-14.326-32-32s14.33-32 32-32h32v-37.12c0-17.674 14.33-32 32-32 17.674 0 32 14.326 32 32v37.12z","M391.174 594.413l50.413-50.413h-24.237c-17.67 0-32 14.326-32 32 0 6.854 2.157 13.203 5.824 18.413z","M919.978 201.372c-12.496-12.497-32.755-12.497-45.254 0l-671.999 672c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l671.999-672c12.499-12.497 12.499-32.758 0-45.255z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["directory-disabled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":6,"id":9,"name":"directory-disabled","prevSize":32,"code":59649},"setIdx":0,"setId":3,"iconIdx":10},{"icon":{"paths":["M919.978 105.372c12.499 12.497 12.499 32.758 0 45.255l-89.373 89.372 89.373 89.373c12.499 12.496 12.499 32.758 0 45.254-12.496 12.496-32.755 12.496-45.254 0l-89.373-89.372-89.373 89.372c-12.496 12.496-32.755 12.496-45.254 0-12.496-12.496-12.496-32.758 0-45.254l89.373-89.373-89.373-89.372c-12.496-12.497-12.496-32.758 0-45.255 12.499-12.497 32.758-12.497 45.254 0l89.373 89.373 89.373-89.373c12.499-12.497 32.758-12.497 45.254 0z","M512.419 126.678c1.491 17.61-11.578 33.094-29.187 34.585-180.289 15.259-321.88 166.478-321.88 350.731 0 194.406 157.596 352 351.999 352 194.406 0 352-157.594 352-352 0-17.674 14.33-32 32-32 17.674 0 32 14.326 32 32 0 229.75-186.25 416-416 416s-415.999-186.25-415.999-416c0-217.79 167.341-396.462 380.482-414.503 17.61-1.491 33.094 11.577 34.586 29.187z","M119.219 432.47c0-17.674 14.327-32 32-32h329.037c17.67 0 32 14.326 32 32 0 17.67-14.33 32-32 32h-329.037c-17.673 0-32-14.33-32-32z","M119.233 640c0-17.674 14.327-32 32-32h724.255c17.674 0 32 14.326 32 32s-14.326 32-32 32h-724.255c-17.673 0-32-14.326-32-32z","M504.81 121.090c11.117 13.739 8.992 33.888-4.749 45.005-8.666 7.012-18.886 20.139-29.238 40.961-10.179 20.471-19.61 46.603-27.635 77.587-16.042 61.955-25.837 140.879-25.837 227.356 0 103.555 14.038 195.981 35.85 261.411 10.96 32.88 23.306 57.181 35.462 72.605 12.438 15.786 21.024 17.978 24.688 17.978 3.667 0 12.253-2.192 24.691-17.978 12.157-15.424 24.502-39.725 35.462-72.605 21.808-65.43 35.846-157.856 35.846-261.411 0-17.674 14.33-32 32-32 17.674 0 32 14.326 32 32 0 108.522-14.614 208.096-39.133 281.648-12.202 36.608-27.437 68.544-45.91 91.984-18.186 23.078-43.274 42.362-74.957 42.362-31.68 0-56.768-19.283-74.957-42.362-18.47-23.44-33.706-55.376-45.91-91.984-24.515-73.552-39.133-173.126-39.133-281.648 0-90.915 10.256-175.338 27.882-243.4 8.81-34.025 19.619-64.572 32.282-90.038 12.49-25.115 27.712-47.185 46.288-62.217 13.741-11.117 33.888-8.992 45.008 4.746z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["directory-error"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":7,"id":10,"name":"directory-error","prevSize":32,"code":59650},"setIdx":0,"setId":3,"iconIdx":11},{"icon":{"paths":["M542.65 96c80.093 0 154.902 22.636 218.374 61.859l-46.746 46.746c-24.739-13.843-51.322-24.785-79.286-32.368 12.166 22.395 23.078 49.095 32.406 79.249l-52 51.999c-5.654-22.994-12.17-44.005-19.347-62.666-12.822-33.339-26.522-55.927-38.474-69.070-8.397-9.235-13.43-11.291-14.928-11.698-1.498 0.407-6.531 2.463-14.928 11.698-11.952 13.143-25.654 35.731-38.477 69.070-16.298 42.377-29.174 96.867-36.336 159.18h65.974l-64 64h-7.114c-0.118 2.47-0.224 4.95-0.323 7.437l-64.538 64.538c-0.173-7.933-0.259-15.926-0.259-23.974 0-16.234 0.358-32.25 1.053-48h-189.809c-2.14 15.696-3.245 31.718-3.245 48 0 33.28 4.619 65.485 13.251 96h106.984l-64 64h-17.852c2.004 3.92 4.078 7.798 6.223 11.629l-46.746 46.749c-39.223-63.475-61.859-138.282-61.859-218.378 0-229.75 186.25-416 416.001-416zM896.79 293.623l-46.746 46.748c10.56 18.87 19.43 38.816 26.413 59.629h-86.045l-64 64h164.992c2.138 15.696 3.245 31.718 3.245 48 0 33.28-4.621 65.485-13.251 96h-183.030c2.8-30.816 4.282-62.957 4.282-96 0-8.045-0.090-16.042-0.262-23.974l-64.534 64.534c-0.752 19.008-2.026 37.523-3.766 55.44h-51.674l-64 64h107.088c-7.37 42.458-17.488 80.083-29.45 111.184-12.822 33.338-26.522 55.926-38.474 69.069-8.397 9.235-13.43 11.29-14.928 11.699-1.498-0.41-6.531-2.464-14.928-11.699-11.952-13.142-25.654-35.731-38.477-69.069-7.178-18.662-13.69-39.677-19.344-62.669l-52 51.997c9.325 30.154 20.237 56.854 32.403 79.251-27.965-7.584-54.547-18.525-79.286-32.368l-46.746 46.746c63.347 39.146 137.984 61.77 217.901 61.859h0.954c229.53-0.259 415.523-186.41 415.523-416 0-80.096-22.637-154.902-61.859-218.377zM450.307 172.237c-113.552 30.788-204.312 116.98-241.467 227.763h179.675c10-93.226 32.176-173.252 61.792-227.763zM634.995 851.763c24.394-44.902 43.741-107.117 55.392-179.763h165.878c-44.653 87.35-124.723 153.584-221.27 179.763zM856.022 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672.001 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672.001-672z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["federation-disabled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":8,"id":11,"name":"federation-disabled","prevSize":32,"code":59651},"setIdx":0,"setId":3,"iconIdx":12},{"icon":{"paths":["M865.139 512c0 33.28-4.624 65.485-13.267 96h-183.274c2.803-30.816 4.288-62.957 4.288-96 0-16.234-0.358-32.25-1.056-48h190.061c2.141 15.696 3.248 31.718 3.248 48zM607.68 464c0.739 15.67 1.123 31.686 1.123 48 0 33.398-1.61 65.555-4.57 96h-183.117c-2.963-30.445-4.57-62.602-4.57-96 0-16.314 0.384-32.33 1.123-48h190.010zM667.014 400c-10.016-93.226-32.221-173.252-61.875-227.763 113.702 30.788 204.579 116.981 241.782 227.763h-179.907zM420.211 172.237c-29.654 54.51-51.862 134.537-61.875 227.763h-179.91c37.204-110.782 128.083-196.975 241.785-227.763zM422.816 400c7.171-62.314 20.064-116.804 36.384-159.18 12.842-33.339 26.56-55.927 38.528-69.070 8.406-9.235 13.446-11.291 14.947-11.698 1.501 0.407 6.541 2.463 14.947 11.698 11.968 13.143 25.686 35.731 38.525 69.070 16.32 42.377 29.216 96.867 36.387 159.18h-179.718zM353.52 464c-0.698 15.75-1.056 31.766-1.056 48 0 33.043 1.482 65.184 4.288 96h-183.275c-8.643-30.515-13.268-62.72-13.268-96 0-16.282 1.107-32.304 3.249-48h190.061zM364.742 672c11.667 72.646 31.040 134.861 55.466 179.763-96.678-26.179-176.854-92.413-221.565-179.763h166.1zM513.152 928c229.834-0.259 416.070-186.41 416.070-416 0-229.75-186.493-416-416.547-416s-416.55 186.25-416.55 416c0 229.59 186.237 415.741 416.070 416 0.16 0 0.32 0 0.48 0s0.32 0 0.477 0zM605.142 851.763c24.426-44.902 43.798-107.117 55.466-179.763h166.099c-44.71 87.35-124.89 153.584-221.565 179.763zM595.638 672c-7.379 42.458-17.514 80.083-29.491 111.184-12.838 33.338-26.557 55.926-38.525 69.069-8.406 9.235-13.446 11.29-14.947 11.699-1.501-0.41-6.541-2.464-14.947-11.699-11.968-13.142-25.686-35.731-38.528-69.069-11.978-31.101-22.109-68.726-29.488-111.184h165.926z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["federation"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":5,"id":12,"name":"federation","prevSize":32,"code":59652},"setIdx":0,"setId":3,"iconIdx":13},{"icon":{"paths":["M649.427 192c-26.454 0-52.016 10.804-71.005 30.343l-305.1 313.906c-31.48 32.387-49.322 76.506-49.322 122.694 0 46.186 17.842 90.304 49.322 122.694 31.451 32.355 73.91 50.362 117.984 50.362s86.531-18.006 117.981-50.362l305.101-313.907c12.317-12.672 32.576-12.96 45.248-0.643 12.675 12.317 12.963 32.576 0.646 45.251l-305.101 313.904c-43.302 44.554-102.23 69.757-163.875 69.757s-120.574-25.203-163.877-69.757c-43.273-44.522-67.428-104.717-67.428-167.299s24.155-122.781 67.428-167.302l305.1-313.905c30.845-31.735 72.874-49.737 116.899-49.737s86.054 18.002 116.899 49.737c30.816 31.704 47.971 74.514 47.971 118.968s-17.155 87.263-47.971 118.969l-305.43 313.904c-0.003 0.006 0.003-0.003 0 0-18.384 18.909-43.523 29.718-69.923 29.718-26.406 0-51.539-10.8-69.923-29.718-18.356-18.883-28.512-44.31-28.512-70.634 0-26.326 10.156-51.754 28.512-70.637l281.872-289.668c12.326-12.666 32.586-12.942 45.251-0.617s12.941 32.585 0.618 45.251l-281.846 289.638c-6.557 6.752-10.406 16.106-10.406 26.032 0 9.93 3.843 19.277 10.406 26.029 6.531 6.72 15.194 10.323 24.029 10.323s17.498-3.603 24.029-10.323l305.43-313.907c19.024-19.568 29.866-46.301 29.866-74.361 0-28.059-10.842-54.791-29.866-74.362-18.989-19.54-44.55-30.343-71.005-30.343z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["attach"],"defaultCode":59676,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":254,"name":"attach","prevSize":32,"id":13,"code":59676},"setIdx":0,"setId":3,"iconIdx":14},{"icon":{"paths":["M254.841 275.612l-13.972 14.271c-37.092 37.883-36.449 98.664 1.435 135.758l145.619 142.573c37.885 37.091 98.666 36.448 135.76-1.437l13.971-14.269c0.723-0.739 1.43-1.488 2.128-2.243l0.099 0.099c5.805-5.904 13.888-9.568 22.822-9.568 17.674 0 32 14.326 32 32 0 9.6-4.227 18.211-10.922 24.077l-0.397 0.41-13.974 14.269c-61.818 63.142-163.12 64.214-226.259 2.394l-145.622-142.576c-63.141-61.818-64.212-163.119-2.392-226.26l13.972-14.27c61.82-63.141 163.12-64.212 226.263-2.392l74.691 73.131c0.976 0.847 1.901 1.752 2.768 2.71l0.374 0.366-0.026 0.026c4.934 5.63 7.923 13.005 7.923 21.078 0 17.674-14.326 32-32 32-7.83 0-15.005-2.813-20.566-7.482l-0.106 0.109-77.834-76.206c-37.885-37.092-98.666-36.45-135.757 1.435zM790.566 768.003l13.971-14.269c37.091-37.885 36.448-98.666-1.437-135.757l-145.619-142.576c-37.885-37.091-98.666-36.448-135.757 1.437l-13.971 14.269c-0.723 0.739-1.434 1.488-2.128 2.243l-0.102-0.099c-5.805 5.907-13.885 9.568-22.822 9.568-17.67 0-32-14.326-32-32 0-9.6 4.227-18.211 10.922-24.077l0.4-0.406 13.971-14.272c61.821-63.142 163.12-64.211 226.262-2.39l145.619 142.573c63.142 61.821 64.211 163.12 2.394 226.262l-13.971 14.269c-61.821 63.142-163.123 64.211-226.262 2.394l-74.694-73.133c-0.976-0.845-1.901-1.75-2.768-2.71l-0.374-0.365 0.026-0.026c-4.931-5.629-7.923-13.005-7.923-21.078 0-17.674 14.326-32 32-32 7.83 0 15.005 2.813 20.566 7.482l0.106-0.109 77.837 76.208c37.885 37.091 98.662 36.448 135.757-1.437z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["link"],"defaultCode":59752,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":253,"name":"link","prevSize":32,"id":14,"code":59752},"setIdx":0,"setId":3,"iconIdx":15},{"icon":{"paths":["M512 896c-212.077 0-384-171.923-384-384s171.923-384 384-384c212.077 0 384 171.923 384 384s-171.923 384-384 384zM565.334 288c0-29.455-23.878-53.333-53.334-53.333s-53.334 23.878-53.334 53.333v249.632l180.016 144.013c23.002 18.403 56.563 14.672 74.963-8.326 18.403-23.002 14.672-56.563-8.326-74.963l-139.984-111.987v-198.368z"],"attrs":[{"fill":"rgb(243, 190, 8)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":3}]},"tags":["status-away"],"defaultCode":59741,"grid":0},"attrs":[{"fill":"rgb(243, 190, 8)"}],"properties":{"order":247,"name":"status-away","prevSize":32,"id":15,"code":59741},"setIdx":0,"setId":3,"iconIdx":16},{"icon":{"paths":["M512 896c-212.077 0-384-171.923-384-384s171.923-384 384-384c212.077 0 384 171.923 384 384s-171.923 384-384 384zM384 458.666c-29.456 0-53.334 23.875-53.334 53.331s23.878 53.334 53.334 53.334h256c29.456 0 53.334-23.878 53.334-53.334s-23.878-53.331-53.334-53.331h-256z"],"attrs":[{"fill":"rgb(245, 69, 92)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":6}]},"tags":["status-busy"],"defaultCode":59742,"grid":0},"attrs":[{"fill":"rgb(245, 69, 92)"}],"properties":{"order":248,"name":"status-busy","prevSize":32,"id":16,"code":59742},"setIdx":0,"setId":3,"iconIdx":17},{"icon":{"paths":["M888.691 586.941l-125.568-24.838c3.187-16.102 4.877-32.842 4.877-50.102s-1.69-34-4.877-50.102l125.568-24.838c4.794 24.237 7.309 49.296 7.309 74.941s-2.515 50.704-7.309 74.941zM831.322 298.644l-106.365 71.209c-18.726-27.971-42.838-52.083-70.81-70.81l71.21-106.364c41.875 28.035 77.93 64.089 105.965 105.965zM586.941 135.309l-24.838 125.566c-16.102-3.185-32.842-4.876-50.102-4.876s-34 1.69-50.102 4.876l-24.838-125.566c24.237-4.795 49.296-7.309 74.941-7.309s50.704 2.514 74.941 7.309zM298.644 192.679l71.209 106.364c-27.971 18.727-52.083 42.839-70.81 70.81l-106.364-71.209c28.035-41.876 64.089-77.93 105.965-105.964zM135.309 437.059c-4.795 24.237-7.309 49.296-7.309 74.941s2.514 50.704 7.309 74.941l125.566-24.838c-3.185-16.102-4.876-32.842-4.876-50.102s1.69-34 4.876-50.102l-125.566-24.838zM192.679 725.357l106.364-71.21c18.727 27.971 42.839 52.083 70.81 70.81l-71.209 106.365c-41.876-28.035-77.93-64.090-105.964-105.965zM437.059 888.691l24.838-125.568c16.102 3.187 32.842 4.877 50.102 4.877s34-1.69 50.102-4.877l24.838 125.568c-24.237 4.794-49.296 7.309-74.941 7.309s-50.704-2.515-74.941-7.309zM725.357 831.322l-71.21-106.365c27.971-18.726 52.083-42.838 70.81-70.81l106.365 71.21c-28.035 41.875-64.090 77.93-105.965 105.965z"],"attrs":[{"fill":"rgb(158, 162, 168)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":7}]},"tags":["status-loading"],"defaultCode":59743,"grid":0},"attrs":[{"fill":"rgb(158, 162, 168)"}],"properties":{"order":249,"name":"status-loading","prevSize":32,"id":17,"code":59743},"setIdx":0,"setId":3,"iconIdx":18},{"icon":{"paths":["M512 789.334c-153.168 0-277.333-124.166-277.333-277.334s124.165-277.333 277.333-277.333c153.168 0 277.334 124.165 277.334 277.333s-124.166 277.334-277.334 277.334zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384z"],"attrs":[{"fill":"rgb(158, 162, 168)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":7}]},"tags":["status-offline"],"defaultCode":59744,"grid":0},"attrs":[{"fill":"rgb(158, 162, 168)"}],"properties":{"order":250,"name":"status-offline","prevSize":32,"id":18,"code":59744},"setIdx":0,"setId":3,"iconIdx":19},{"icon":{"paths":["M896 512c0 212.077-171.923 384-384 384s-384-171.923-384-384c0-212.077 171.923-384 384-384s384 171.923 384 384z"],"attrs":[{"fill":"rgb(45, 224, 165)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":4}]},"tags":["status-online"],"defaultCode":59745,"grid":0},"attrs":[{"fill":"rgb(45, 224, 165)"}],"properties":{"order":251,"name":"status-online","prevSize":32,"id":19,"code":59745},"setIdx":0,"setId":3,"iconIdx":20},{"icon":{"paths":["M631.997 256h24v-56c0-57.437 46.563-104 104-104 57.44 0 104 46.562 104 104v56h24c17.674 0 32 14.327 32 32v192c0 17.674-14.326 32-32 32h-256c-17.67 0-32-14.326-32-32v-192c0-17.673 14.33-32 32-32zM759.997 160c-22.090 0-40 17.908-40 40v55.238h80v-55.238c0-22.092-17.907-40-40-40z","M527.997 224c10.096 0 19.882 1.336 29.184 3.84-13.251 16.46-21.184 37.383-21.184 60.16v0.664c-2.602-0.436-5.274-0.664-8-0.664-26.509 0-48 21.49-48 48s21.491 48 48 48c2.726 0 5.398-0.227 8-0.662v64.381c-2.64 0.186-5.309 0.282-8 0.282-61.856 0-112-50.144-112-112s50.144-112 112-112z","M492.941 500.282c14.883 5.709 30.883 7.283 46.355 4.758 6.182 22.938 20.646 42.474 39.987 55.206-35.123 13.318-74.019 13.309-109.261-0.208l-15.040-5.77c-12.838-4.925-27.104-4.589-39.699 0.931-19.008 8.333-31.286 27.12-31.286 47.872v132.928c0 17.674 14.33 32 32 32h224c17.674 0 32-14.326 32-32v-125.062c0-12.842-4.122-24.995-11.325-34.938h70.291c3.29 11.162 5.034 22.902 5.034 34.938v125.062c0 53.021-42.979 96-96 96h-224c-53.018 0-95.999-42.979-95.999-96v-132.928c0-46.163 27.311-87.955 69.592-106.49 28.019-12.278 59.747-13.024 88.31-2.067l15.040 5.766z","M887.997 576h-15.286v25.766c0 17.674-14.326 32-32 32h-72.714v64h72.714c53.021 0 96-42.979 96-96v-39.027c-14.278 8.426-30.931 13.261-48.714 13.261z","M281.182 416c53.020 0 95.999-42.979 95.999-96 0-53.019-42.979-96-95.999-96s-96 42.981-96 96c0 53.021 42.98 96 96 96zM281.182 352c-17.673 0-32-14.326-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32z","M625.267 640h-0.8c0.262 0.598 0.528 1.194 0.8 1.786v-1.786z","M357.59 464.582c2.531-1.107 5.091-2.122 7.674-3.043-17.907-5.155-37.011-4.832-54.823 1.018l-14.183 4.659c-14.887 4.893-30.998 4.554-45.668-0.954l-4.554-1.709c-21.067-7.91-44.203-8.394-65.581-1.37-40.565 13.325-67.986 51.197-67.986 93.894v44.688c0 53.021 42.98 96 96 96h79.53v-64h-79.53c-17.673 0-32-14.326-32-32v-44.688c0-15.050 9.664-28.394 23.96-33.091 7.534-2.474 15.688-2.304 23.112 0.483l4.554 1.709c21.238 7.974 44.041 10.333 66.238 7.027 10.398-30.173 32.992-55.357 63.258-68.624z","M423.914 640h0.797c-0.259 0.598-0.525 1.194-0.797 1.786v-1.786z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["teams-private"],"defaultCode":59750,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":252,"name":"teams-private","prevSize":32,"id":20,"code":59750},"setIdx":0,"setId":3,"iconIdx":21},{"icon":{"paths":["M368 182.4c0-17.673-14.326-32-32-32s-32 14.327-32 32v144h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v288h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v144c0 17.674 14.327 32 32 32s32-14.326 32-32v-144h288v144c0 17.674 14.326 32 32 32s32-14.326 32-32v-144h144c17.674 0 32-14.326 32-32s-14.326-32-32-32h-144v-80h-64v80h-288v-288h80v-64h-80v-144z","M640.515 327.283c-15.328-3.59-31.306-3.338-46.512 0.733-41.763 11.187-70.803 49.030-70.803 92.269v35.539c0 36.003 29.187 65.194 65.194 65.194h210.413c36.006 0 65.194-29.19 65.194-65.194v-28.336c0-47.667-33.040-88.957-79.27-99.792-16.413-3.846-33.613-3.603-49.946 0.771l-25.827 6.918c-10.381 2.781-21.286 2.95-31.747 0.499l-36.694-8.602z","M782.637 217.037c0 49.174-39.862 89.037-89.037 89.037s-89.037-39.863-89.037-89.037c0-49.174 39.862-89.037 89.037-89.037s89.037 39.863 89.037 89.037z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["channel-auto-join"],"defaultCode":59746,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":2,"name":"channel-auto-join","prevSize":32,"id":21,"code":59746},"setIdx":0,"setId":3,"iconIdx":22},{"icon":{"paths":["M236.709 162.578c11.779-5.037 25.426-2.564 34.688 6.286l150.709 144c6.32 6.037 9.894 14.396 9.894 23.136s-3.574 17.101-9.894 23.136l-150.709 144c-9.262 8.851-22.909 11.325-34.688 6.288s-19.419-16.614-19.419-29.424v-112h-73.29c-17.673 0-32-14.326-32-32 0-17.672 14.327-31.999 32-31.999h73.29v-112c0-12.81 7.64-24.386 19.419-29.423zM320 368.179v-0.179h0.189l-0.189 0.179zM320.189 304.001h-0.189v-0.179l0.189 0.179z","M492.899 303.258c8.762-9.388 21.245-15.258 35.101-15.258 26.509 0 48 21.49 48 48s-21.491 48-48 48c-16.582 0-31.203-8.41-39.824-21.197l-43.098 48.483c20.49 22.554 50.051 36.714 82.922 36.714 61.856 0 112-50.144 112-112s-50.144-112-112-112c-25.549 0-49.098 8.554-67.942 22.955l32.842 56.303z","M145.615 483.229l32.174 64.349c-0.861 3.040-1.318 6.23-1.318 9.501v44.688c0 17.674 14.327 32 32 32h79.53v64h-79.53c-53.019 0-96-42.979-96-96v-44.688c0-28.848 12.515-55.488 33.144-73.85z","M625.267 640h-0.797c0.259 0.598 0.525 1.194 0.797 1.786v-1.786z","M424.714 640h-0.797v1.786c0.272-0.592 0.538-1.187 0.797-1.786z","M477.901 494.515c-28.56-10.957-60.291-10.211-88.307 2.067-42.282 18.534-69.594 60.326-69.594 106.49v132.928c0 53.021 42.979 96 96 96h224c53.021 0 96-42.979 96-96v-125.062c0-51.162-31.536-97.034-79.306-115.354-30.352-11.642-64.067-10.851-93.84 2.198l-2.070 0.909c-21.523 9.434-45.901 10.006-67.843 1.59l-15.040-5.766zM415.286 555.2c12.595-5.52 26.858-5.856 39.699-0.931l15.040 5.77c37.664 14.445 79.504 13.462 116.451-2.73l2.070-0.909c14.349-6.288 30.602-6.669 45.229-1.059 23.024 8.829 38.224 30.938 38.224 55.597v125.062c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32v-132.928c0-20.752 12.278-39.539 31.286-47.872z","M864 320c0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96s96-42.979 96-96zM800 320c0 17.674-14.326 32-32 32s-32-14.326-32-32c0-17.673 14.326-32 32-32s32 14.327 32 32z","M840.714 697.766h-72.714v-64h72.714c17.674 0 32-14.326 32-32v-44.688c0-15.050-9.664-28.394-23.958-33.091-7.536-2.474-15.69-2.304-23.114 0.483l-4.554 1.709c-19.77 7.421-40.89 9.978-61.619 7.632-12.438-31.683-37.722-57.549-70.774-70.227-1.754-0.672-3.52-1.302-5.296-1.894 18.058-5.312 37.36-5.040 55.344 0.867l14.182 4.659c14.886 4.893 30.998 4.554 45.667-0.954l4.554-1.709c21.069-7.91 44.205-8.394 65.581-1.37 40.566 13.325 67.987 51.197 67.987 93.894v44.688c0 53.021-42.982 96-96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["channel-move-to-team"],"defaultCode":59747,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":3,"name":"channel-move-to-team","prevSize":32,"id":22,"code":59747},"setIdx":0,"setId":3,"iconIdx":23},{"icon":{"paths":["M512 128c-97.203 0-176 78.798-176 176v142.477h-16c-53.020 0-96 42.979-96 96v257.523c0 53.021 42.981 96 96 96h384c53.021 0 96-42.979 96-96v-257.523c0-53.021-42.979-96-96-96h-16v-142.477c0-97.202-78.797-176-176-176zM624 304v142.477h-224v-142.477c0-61.856 50.144-112 112-112s112 50.144 112 112z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["lock-filled"],"defaultCode":59748,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":4,"name":"lock-filled","prevSize":32,"id":23,"code":59748},"setIdx":0,"setId":3,"iconIdx":24},{"icon":{"paths":["M336 304c0-97.202 78.797-176 176-176s176 78.798 176 176v142.477h16c53.021 0 96 42.979 96 96v257.523c0 53.021-42.979 96-96 96h-384c-53.019 0-96-42.979-96-96v-257.523c0-53.021 42.981-96 96-96h16v-142.477zM400 446.477h224v-142.477c0-61.856-50.144-112-112-112s-112 50.144-112 112v142.477zM320 510.477c-17.673 0-32 14.326-32 32v257.523c0 17.674 14.327 32 32 32h384c17.674 0 32-14.326 32-32v-257.523c0-17.674-14.326-32-32-32h-384z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["locker"],"defaultCode":59749,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":5,"name":"locker","prevSize":32,"id":24,"code":59749},"setIdx":0,"setId":3,"iconIdx":25},{"icon":{"paths":["M281.184 336c17.673 0 32-14.326 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM281.184 400c-53.020 0-96-42.979-96-96 0-53.019 42.98-96 96-96 53.018 0 96 42.981 96 96 0 53.021-42.982 96-96 96zM576 320c0-26.51-21.491-48-48-48s-48 21.49-48 48c0 26.509 21.491 48 48 48s48-21.491 48-48zM640 320c0 61.856-50.144 112-112 112s-112-50.144-112-112c0-61.856 50.144-112 112-112s112 50.144 112 112zM477.901 478.515c-28.56-10.957-60.291-10.211-88.307 2.067-42.282 18.534-69.594 60.326-69.594 106.49v132.928c0 53.021 42.979 96 96 96h224c53.021 0 96-42.979 96-96v-125.062c0-51.162-31.536-97.034-79.306-115.354-30.352-11.642-64.067-10.851-93.84 2.198l-2.070 0.909c-21.523 9.434-45.901 10.006-67.843 1.59l-15.040-5.766zM415.286 539.2c12.595-5.52 26.858-5.856 39.699-0.931l15.040 5.77c37.664 14.445 79.504 13.462 116.451-2.73l2.070-0.909c14.349-6.288 30.602-6.669 45.229-1.059 23.024 8.829 38.224 30.938 38.224 55.597v125.062c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32v-132.928c0-20.752 12.278-39.539 31.286-47.872zM768 336c-17.674 0-32-14.326-32-32s14.326-32 32-32c17.674 0 32 14.327 32 32s-14.326 32-32 32zM768 400c53.021 0 96-42.979 96-96 0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96zM840.714 681.766h-72.714v-64h72.714c17.674 0 32-14.326 32-32v-44.688c0-15.050-9.664-28.394-23.958-33.091-7.536-2.474-15.69-2.304-23.114 0.483l-4.554 1.709c-19.77 7.421-40.89 9.978-61.619 7.632-12.438-31.683-37.722-57.549-70.774-70.227-1.754-0.672-3.52-1.302-5.296-1.894 18.058-5.312 37.36-5.040 55.344 0.867l14.182 4.659c14.886 4.893 30.998 4.554 45.667-0.954l4.554-1.709c21.069-7.91 44.205-8.394 65.581-1.37 40.566 13.325 67.987 51.197 67.987 93.894v44.688c0 53.021-42.982 96-96 96zM625.267 624h-0.797c0.259 0.598 0.525 1.194 0.797 1.786v-1.786zM357.594 448.582c2.528-1.107 5.088-2.122 7.674-3.043-17.907-5.155-37.014-4.832-54.824 1.018l-14.183 4.659c-14.887 4.893-30.998 4.554-45.668-0.954l-4.554-1.709c-21.067-7.91-44.203-8.394-65.581-1.37-40.565 13.325-67.986 51.197-67.986 93.894v44.688c0 53.021 42.981 96 96 96h79.53v-64h-79.53c-17.673 0-32-14.326-32-32v-44.688c0-15.050 9.664-28.394 23.96-33.091 7.534-2.474 15.688-2.304 23.112 0.483l4.554 1.709c21.238 7.974 44.041 10.333 66.238 7.027 10.398-30.173 32.994-55.357 63.259-68.624zM423.917 624h0.797c-0.259 0.598-0.525 1.194-0.797 1.786v-1.786z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["teams"],"defaultCode":59751,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":7,"name":"teams","prevSize":32,"id":25,"code":59751},"setIdx":0,"setId":3,"iconIdx":26},{"icon":{"paths":["M502.627 142.69c12.915-3.408 26.509-3.289 39.363 0.345l245.194 69.317c29.165 8.245 51.254 33.818 53.504 65.14 24.506 341.145-184.394 520.422-272.611 580.214-33.053 22.403-75.28 22.474-108.416 0.259-88.758-59.504-300.1-238.589-276.51-579.794 2.205-31.89 24.96-57.772 54.753-65.633l264.724-69.849zM524.579 204.621c-1.837-0.519-3.779-0.536-5.622-0.049l-264.725 69.849c-4.4 1.161-6.999 4.775-7.233 8.165-21.305 308.166 168.214 468.531 248.301 522.218 11.507 7.715 25.434 7.677 36.87-0.077 79.379-53.798 266.835-214.288 244.685-522.649-0.243-3.358-2.787-6.925-7.082-8.139l-245.194-69.317z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["set-as-moderator"],"defaultCode":59661,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":245,"name":"shield","prevSize":32,"id":26,"code":59661},"setIdx":0,"setId":3,"iconIdx":27},{"icon":{"paths":["M864 512c0-86.89-31.482-166.429-83.664-227.826l-496.162 496.162c61.397 52.182 140.937 83.664 227.826 83.664 194.403 0 352-157.597 352-352zM239.349 734.65l495.3-495.3c-60.662-49.597-138.182-79.349-222.65-79.349-194.404 0-352 157.596-352 352 0 84.467 29.753 161.987 79.349 222.65zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["ignore"],"defaultCode":59740,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":246,"name":"ignore","prevSize":32,"id":27,"code":59740},"setIdx":0,"setId":3,"iconIdx":28},{"icon":{"paths":["M819.2 204.8v614.4h-614.4v-614.4h614.4zM204.8 128c-42.415 0-76.8 34.385-76.8 76.8v614.4c0 42.416 34.385 76.8 76.8 76.8h614.4c42.416 0 76.8-34.384 76.8-76.8v-614.4c0-42.415-34.384-76.8-76.8-76.8h-614.4z"],"attrs":[{"fill":"rgb(203, 206, 209)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":8}]},"tags":["checkbox-unchecked"],"defaultCode":59648,"grid":0},"attrs":[{"fill":"rgb(203, 206, 209)"}],"properties":{"order":242,"name":"checkbox-unchecked","prevSize":32,"id":28,"code":59653},"setIdx":0,"setId":3,"iconIdx":29},{"icon":{"paths":["M204.8 128h614.4c42.416 0 76.8 34.385 76.8 76.8v614.4c0 42.416-34.384 76.8-76.8 76.8h-614.4c-42.415 0-76.8-34.384-76.8-76.8v-614.4c0-42.415 34.385-76.8 76.8-76.8zM769.062 336.88c9.322-9.424 9.238-24.619-0.182-33.941-9.424-9.322-24.621-9.241-33.942 0.182l-339.085 342.745-106.782-108.051c-9.317-9.43-24.513-9.52-33.94-0.202s-9.518 24.512-0.201 33.939l123.842 125.318c4.509 4.56 10.653 7.126 17.066 7.13s12.557-2.563 17.069-7.12l356.157-360z"],"attrs":[{"fill":"rgb(29, 116, 245)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":5}]},"tags":["checkbox-checked"],"defaultCode":59649,"grid":0},"attrs":[{"fill":"rgb(29, 116, 245)"}],"properties":{"order":243,"name":"checkbox-checked","prevSize":32,"id":29,"code":59654},"setIdx":0,"setId":3,"iconIdx":30},{"icon":{"paths":["M862.454 324.045c-35.2-60.31-82.944-108.057-143.248-143.253-60.314-35.198-126.16-52.792-197.581-52.792-71.414 0-137.28 17.6-197.581 52.792-60.31 35.194-108.053 82.943-143.253 143.253-35.194 60.307-52.792 126.166-52.792 197.571 0 85.77 25.024 162.899 75.086 231.405 50.056 68.509 114.721 115.917 193.989 142.224 9.229 1.712 16.058 0.509 20.499-3.584 4.442-4.096 6.662-9.226 6.662-15.37 0-1.024-0.090-10.246-0.259-27.674-0.176-17.43-0.259-32.637-0.259-45.61l-11.789 2.038c-7.517 1.379-16.998 1.962-28.445 1.795-11.443-0.16-23.322-1.357-35.619-3.587-12.304-2.211-23.747-7.334-34.342-15.366-10.588-8.029-18.104-18.538-22.547-31.514l-5.125-11.795c-3.416-7.853-8.795-16.573-16.142-26.134-7.348-9.571-14.778-16.058-22.294-19.475l-3.588-2.57c-2.391-1.706-4.61-3.766-6.662-6.154-2.050-2.39-3.585-4.781-4.61-7.174-1.027-2.397-0.176-4.365 2.562-5.907 2.738-1.539 7.685-2.288 14.864-2.288l10.247 1.53c6.834 1.37 15.287 5.462 25.371 12.298 10.078 6.835 18.363 15.715 24.856 26.646 7.863 14.013 17.335 24.688 28.445 32.038 11.101 7.347 22.294 11.014 33.568 11.014s21.011-0.854 29.216-2.557c8.192-1.709 15.882-4.275 23.062-7.69 3.075-22.902 11.446-40.499 25.11-52.797-19.475-2.045-36.982-5.13-52.534-9.226-15.542-4.106-31.603-10.765-48.173-20-16.579-9.222-30.331-20.672-41.262-34.333-10.932-13.67-19.905-31.613-26.904-53.818-7.003-22.214-10.505-47.837-10.505-76.88 0-41.35 13.5-76.541 40.493-105.584-12.645-31.088-11.451-65.939 3.585-104.55 9.908-3.079 24.606-0.768 44.078 6.916 19.478 7.689 33.738 14.275 42.797 19.736 9.059 5.46 16.317 10.087 21.786 13.837 31.782-8.88 64.582-13.322 98.406-13.322s66.63 4.442 98.416 13.322l19.475-12.295c13.318-8.204 29.046-15.722 47.142-22.556 18.112-6.83 31.958-8.712 41.53-5.633 15.37 38.612 16.739 73.46 4.093 104.548 26.992 29.046 40.496 64.243 40.496 105.587 0 29.043-3.514 54.746-10.506 77.13-7.002 22.387-16.051 40.314-27.152 53.818-11.114 13.501-24.957 24.864-41.526 34.083-16.573 9.226-32.637 15.888-48.179 19.99-15.552 4.102-33.059 7.187-52.534 9.238 17.763 15.37 26.646 39.632 26.646 72.774v108.134c0 6.141 2.134 11.27 6.41 15.37 4.272 4.090 11.018 5.296 20.243 3.581 79.28-26.304 143.946-73.712 194-142.224 50.048-68.502 75.082-145.632 75.082-231.405-0.019-71.395-17.626-137.248-52.803-197.555z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["github-monochromatic"],"defaultCode":59650,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":152,"name":"github-monochromatic","prevSize":32,"id":30,"code":59655},"setIdx":0,"setId":3,"iconIdx":31},{"icon":{"paths":["M133.618 423.61h215.092l-92.537-284.607c-4.74-14.67-25.504-14.67-30.244 0l-92.311 284.607zM86.899 567.171l46.72-143.546h737.133l46.72 143.546c4.288 13.088-0.451 27.533-11.51 35.434l-403.776 293.408-403.776-293.408c-11.060-7.901-15.799-22.346-11.511-35.434zM655.661 423.61h215.091l-92.31-284.607c-4.739-14.67-25.504-14.67-30.243 0l-92.538 284.607z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["gitlab-monochromatic"],"defaultCode":59651,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":153,"name":"gitlab-monochromatic","prevSize":32,"id":31,"code":59656},"setIdx":0,"setId":3,"iconIdx":32},{"icon":{"paths":["M658.794 338.154c-39.798-38.052-90.416-57.426-146.794-57.426-100.016 0-184.669 67.548-214.865 158.313l-0.002-0.003c-7.679 23.040-12.042 47.648-12.042 72.957s4.364 49.92 12.044 72.96l0 0.003c30.196 90.765 114.849 158.314 214.865 158.314 51.664 0 95.651-13.613 130.035-36.653v-0.016c40.669-27.229 67.725-67.898 76.627-115.898h-206.662v-148.538h361.658c4.538 25.136 6.982 51.315 6.982 78.547 0 116.944-41.891 215.389-114.502 282.24v0.013c-63.533 58.646-150.458 93.030-254.138 93.030-150.109 0-279.971-86.048-343.156-211.549l-0-0.003c-26.007-51.84-40.844-110.49-40.844-172.451 0-61.965 14.836-120.611 40.844-172.451h0.004c63.187-125.495 193.047-211.542 343.153-211.542 103.504 0 190.429 38.051 256.931 100.014l-110.138 110.139z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["google-monochromatic"],"defaultCode":59652,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":154,"name":"google-monochromatic","prevSize":32,"id":32,"code":59657},"setIdx":0,"setId":3,"iconIdx":33},{"icon":{"paths":["M840.541 128c31.318 0 56.813 24.79 56.813 55.383v657.212c0 30.592-25.494 55.427-56.813 55.427h-654.546c-31.254 0-56.642-24.835-56.642-55.427v-657.212c0-30.593 25.387-55.383 56.642-55.383h654.546zM300.196 233.75c-36.588 0-66.093 29.59-66.093 66.050 0 36.482 29.505 66.072 66.093 66.072 36.437 0 66.005-29.59 66.005-66.072 0-36.46-29.568-66.050-66.005-66.050zM243.148 782.461h114.029v-366.515h-114.029v366.515zM537.814 415.923h-109.187v366.515h113.773v-181.274c0-47.83 9.046-94.147 68.333-94.147 58.454 0 59.181 54.678 59.181 97.174v178.246h113.901v-201.008c0-98.714-21.312-174.598-136.666-174.598-55.402 0-92.566 30.381-107.757 59.203h-1.578v-50.112z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["linkedin-monochromatic"],"defaultCode":59653,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":155,"name":"linkedin-monochromatic","prevSize":32,"id":33,"code":59658},"setIdx":0,"setId":3,"iconIdx":34},{"icon":{"paths":["M86.686 85.336l730.792 774.088c0 0 24.899 17.558 43.936-2.928 19.040-20.486 4.394-40.973 4.394-40.973l-779.122-730.187zM318.080 158.503l556.516 599.955c0 0 24.896 17.558 43.936-2.928 19.037-20.486 4.394-40.973 4.394-40.973l-604.845-556.054zM712.035 915.030l-556.517-599.955 604.843 556.054c0 0 14.646 20.486-4.39 40.973-19.040 20.486-43.936 2.928-43.936 2.928zM513.693 221.419l388.803 419.15c0 0 17.395 12.269 30.694-2.042 13.302-14.314 3.069-28.627 3.069-28.627l-422.566-388.482zM597.878 915.677l-388.805-419.152 422.568 388.48c0 0 10.234 14.314-3.069 28.627-13.302 14.31-30.694 2.045-30.694 2.045zM713.498 312.143l176.221 190.551c0 0 8.605 5.747 15.184-0.96 6.579-6.704 1.517-13.411 1.517-13.411l-192.922-176.18zM482.582 880.23l-176.219-190.55 192.923 176.179c0 0 5.059 6.707-1.52 13.414-6.579 6.704-15.184 0.957-15.184 0.957z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["meteor-monochromatic"],"defaultCode":59654,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":156,"name":"meteor-monochromatic","prevSize":32,"id":34,"code":59659},"setIdx":0,"setId":3,"iconIdx":35},{"icon":{"paths":["M378.861 853.331c317.456 0 491.091-262.662 491.091-490.442 0-7.462 0-14.89-0.506-22.282 33.779-24.401 62.938-54.614 86.112-89.224-31.501 13.94-64.918 23.082-99.136 27.12 36.032-21.542 62.998-55.424 75.882-95.34-33.878 20.078-70.944 34.228-109.597 41.839-53.501-56.814-138.515-70.72-207.37-33.919-68.851 36.801-104.426 115.155-86.768 191.127-138.774-6.947-268.074-72.409-355.715-180.093-45.811 78.76-22.412 179.517 53.436 230.1-27.467-0.813-54.335-8.214-78.337-21.574 0 0.704 0 1.443 0 2.182 0.022 82.051 57.937 152.723 138.47 168.97-25.41 6.922-52.071 7.933-77.933 2.957 22.611 70.218 87.409 118.32 161.25 119.706-61.116 47.968-136.616 74.010-214.35 73.933-13.732-0.026-27.452-0.858-41.087-2.486 78.931 50.586 170.772 77.418 264.557 77.293z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["twitter-monochromatic"],"defaultCode":59655,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":157,"name":"twitter-monochromatic","prevSize":32,"id":35,"code":59660},"setIdx":0,"setId":3,"iconIdx":36},{"icon":{"paths":["M512 928c-14.218 0-28.275-0.714-42.144-2.112-16.694-1.68-30.557-12.528-36.688-27.395l-40.538-98.304-98.162 40.838c-14.837 6.173-32.3 4.048-45.292-6.554-21.838-17.818-41.831-37.811-59.65-59.648-10.601-12.992-12.726-30.454-6.553-45.293l40.839-98.16-98.307-40.541c-14.864-6.131-25.714-19.994-27.395-36.688-1.396-13.869-2.111-27.926-2.111-42.144 0-14.214 0.714-28.275 2.11-42.141 1.681-16.694 12.531-30.557 27.395-36.688l98.308-40.541-40.84-98.163c-6.173-14.837-4.047-32.3 6.553-45.292 17.818-21.838 37.81-41.83 59.648-59.648 12.992-10.6 30.455-12.726 45.292-6.553l98.165 40.84 40.541-98.309c6.128-14.865 19.994-25.714 36.688-27.395 13.866-1.396 27.926-2.11 42.141-2.11s28.275 0.714 42.141 2.11c16.694 1.681 30.56 12.531 36.688 27.395l40.541 98.309 98.163-40.84c14.838-6.173 32.301-4.047 45.293 6.553 21.837 17.818 41.83 37.81 59.648 59.648 10.602 12.992 12.726 30.455 6.554 45.292l-40.842 98.163 98.31 40.541c14.864 6.131 25.712 19.994 27.392 36.688 1.398 13.866 2.112 27.926 2.112 42.141 0 14.218-0.714 28.275-2.112 42.144-1.68 16.694-12.528 30.557-27.395 36.688l-98.307 40.541 40.842 98.16c6.173 14.838 4.045 32.301-6.554 45.293-17.821 21.837-37.811 41.83-59.651 59.648-12.992 10.602-30.454 12.726-45.29 6.554l-98.163-40.838-40.538 98.304c-6.131 14.867-19.994 25.715-36.688 27.395-13.869 1.398-27.93 2.112-42.144 2.112zM444.451 757.984l43.386 105.2c7.981 0.541 16.038 0.816 24.163 0.816s16.182-0.275 24.163-0.816l43.382-105.2c9.456-22.925 35.731-33.808 58.627-24.285l105.056 43.709c12.157-10.602 23.578-22.022 34.179-34.179l-43.709-105.056c-9.526-22.893 1.36-49.171 24.282-58.624l105.203-43.386c0.541-7.978 0.816-16.038 0.816-24.163s-0.275-16.182-0.816-24.16l-105.203-43.386c-22.922-9.453-33.808-35.731-24.282-58.624l43.709-105.060c-10.602-12.156-22.022-23.577-34.176-34.177l-105.059 43.708c-22.896 9.525-49.171-1.359-58.627-24.283l-43.382-105.204c-7.981-0.54-16.038-0.815-24.163-0.815s-16.182 0.275-24.163 0.815l-43.386 105.204c-9.453 22.924-35.728 33.808-58.624 24.283l-105.058-43.708c-12.156 10.6-23.577 22.021-34.177 34.177l43.708 105.059c9.525 22.893-1.359 49.171-24.284 58.624l-105.203 43.386c-0.54 7.978-0.815 16.035-0.815 24.16 0 8.128 0.275 16.186 0.815 24.163l105.203 43.386c22.924 9.453 33.809 35.731 24.284 58.624l-43.708 105.056c10.601 12.157 22.022 23.578 34.178 34.179l105.056-43.709c22.896-9.523 49.171 1.36 58.624 24.285zM416 512c0-53.021 42.979-96 96-96s96 42.979 96 96c0 53.021-42.979 96-96 96s-96-42.979-96-96zM512 352c-88.365 0-160 71.635-160 160s71.635 160 160 160c88.365 0 160-71.635 160-160s-71.635-160-160-160z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["administration"],"defaultCode":59657,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":159,"name":"administration","prevSize":32,"id":36,"code":59662},"setIdx":0,"setId":3,"iconIdx":37},{"icon":{"paths":["M878.739 567.622c-41.853-41.136-161.235-29.824-220.925-22.282-59.005-35.997-98.458-85.706-126.243-158.73 13.379-55.194 34.646-139.185 18.525-191.98-14.41-89.82-129.674-80.907-146.141-20.227-15.094 55.195-1.373 131.988 24.013 230.034-34.304 81.936-85.421 191.984-121.441 255.062-68.611 35.312-161.235 89.821-174.957 158.384-11.321 54.166 89.194 189.238 261.063-106.96 76.845-25.37 160.547-56.566 234.65-68.909 64.835 34.97 140.65 58.282 191.421 58.282 87.478 0 96.054-96.678 60.035-132.675zM199.152 834.342c17.496-46.97 84.048-101.133 104.288-119.99-65.18 103.875-104.288 122.39-104.288 119.99zM479.082 180.918c25.386 0 22.986 110.047 6.176 139.873-15.094-47.653-14.752-139.873-6.176-139.873zM395.379 649.216c33.274-57.936 61.747-126.845 84.733-187.526 28.474 51.766 64.838 93.251 103.258 121.706-71.354 14.739-133.446 44.909-187.99 65.821zM846.835 632.074c0 0-17.152 20.57-127.958-26.739 120.413-8.912 140.307 18.512 127.958 26.739z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["adobe-reader-monochromatic"],"defaultCode":59658,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":161,"name":"adobe-reader-monochromatic","prevSize":32,"id":37,"code":59663},"setIdx":0,"setId":3,"iconIdx":38},{"icon":{"paths":["M448 188.865c0 33.615 27.251 60.865 60.864 60.865 33.616 0 60.867-27.25 60.867-60.865s-27.251-60.865-60.867-60.865c-33.613 0-60.864 27.25-60.864 60.865zM384 188.865c0 59.026 40.957 108.485 96 121.512v77.745c-44.314 11.69-78.986 47.13-89.578 91.878h-80.045c-13.027-55.043-62.486-96-121.512-96-68.961 0-124.865 55.904-124.865 124.864 0 68.963 55.904 124.867 124.865 124.867 56.762 0 104.678-37.875 119.854-89.731h83.361c12.227 41.773 45.696 74.47 87.92 85.61v77.744c-55.043 13.027-96 62.486-96 121.51 0 68.963 55.904 124.867 124.864 124.867 68.963 0 124.867-55.904 124.867-124.867 0-56.762-37.875-104.675-89.731-119.853v-79.437c42.163-11.171 75.578-43.846 87.789-85.574h77.222c15.178 51.856 63.091 89.731 119.853 89.731 68.963 0 124.867-55.904 124.867-124.867 0-68.96-55.904-124.864-124.867-124.864-59.024 0-108.483 40.957-121.51 96h-73.907c-10.579-44.707-45.194-80.122-89.446-91.843v-79.438c51.856-15.176 89.731-63.092 89.731-119.854 0-68.961-55.904-124.865-124.867-124.865-68.96 0-124.864 55.904-124.864 124.865zM828.864 569.731c-33.613 0-60.864-27.251-60.864-60.867 0-33.613 27.251-60.864 60.864-60.864 33.616 0 60.867 27.251 60.867 60.864 0 33.616-27.251 60.867-60.867 60.867zM188.865 569.731c-33.615 0-60.865-27.251-60.865-60.867 0-33.613 27.25-60.864 60.865-60.864s60.865 27.251 60.865 60.864c0 33.616-27.25 60.867-60.865 60.867zM451.069 508.864c0 33.616 27.251 60.867 60.867 60.867 33.613 0 60.864-27.251 60.864-60.867 0-33.613-27.251-60.864-60.864-60.864-33.616 0-60.867 27.251-60.867 60.864zM508.864 889.731c-33.613 0-60.864-27.251-60.864-60.867 0-33.613 27.251-60.864 60.864-60.864 33.616 0 60.867 27.251 60.867 60.864 0 33.616-27.251 60.867-60.867 60.867z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["all-contacts-in-channels"],"defaultCode":59659,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":162,"name":"all-contacts-in-channels","prevSize":32,"id":38,"code":59664},"setIdx":0,"setId":3,"iconIdx":39},{"icon":{"paths":["M861.437 160c17.67 0 32 14.327 32 32s-14.33 32-32 32h-384c-17.674 0-32-14.327-32-32s14.326-32 32-32h384zM334.717 442.397c-24.962 0-45.197-20.237-45.197-45.2 0-24.96 20.236-45.197 45.197-45.197 24.963 0 45.2 20.237 45.2 45.197 0 24.963-20.237 45.2-45.2 45.2zM334.717 506.397c-60.308 0-109.197-48.89-109.197-109.2 0-60.307 48.89-109.197 109.197-109.197 60.31 0 109.2 48.89 109.2 109.197 0 60.31-48.89 109.2-109.2 109.2zM456.278 535.504c-18.288-4.899-37.504-5.2-55.939-0.88l-45.005 10.547c-13.194 3.091-26.947 2.877-40.036-0.63l-31.676-8.483c-19.669-5.27-40.384-5.562-60.154-0.928-55.68 13.050-95.468 62.781-95.468 120.179v34.752c0 42.906 34.783 77.686 77.689 77.686h258.057c42.906 0 77.69-34.781 77.69-77.686v-43.587c0-52-34.928-97.514-85.158-110.97zM414.944 596.934c8.166-1.914 16.675-1.779 24.774 0.39 22.246 5.958 37.718 26.118 37.718 49.149v43.587c0 7.558-6.131 13.686-13.69 13.686h-258.057c-7.56 0-13.689-6.128-13.689-13.686v-34.752c0-27.469 19.123-51.552 46.072-57.869 9.556-2.24 19.564-2.086 28.99 0.438l31.676 8.483c23.277 6.237 47.738 6.621 71.2 1.12l45.005-10.547zM893.437 512c0-17.674-14.33-32-32-32h-224c-17.674 0-32 14.326-32 32s14.326 32 32 32h224c17.67 0 32-14.326 32-32zM861.437 640c17.67 0 32 14.326 32 32s-14.33 32-32 32h-192c-17.674 0-32-14.326-32-32s14.326-32 32-32h192zM893.437 352c0-17.674-14.33-32-32-32h-288c-17.674 0-32 14.326-32 32s14.326 32 32 32h288c17.67 0 32-14.326 32-32zM861.437 800c17.67 0 32 14.326 32 32s-14.33 32-32 32h-256c-17.674 0-32-14.326-32-32s14.326-32 32-32h256z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["all-contacts-in-queue"],"defaultCode":59660,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":163,"name":"all-contacts-in-queue","prevSize":32,"id":39,"code":59665},"setIdx":0,"setId":3,"iconIdx":40},{"icon":{"paths":["M523.571 295.385c33.133 0 74.669-22.133 99.402-51.645 22.4-26.745 38.733-64.095 38.733-101.445 0-5.072-0.467-10.144-1.402-14.294-36.864 1.383-81.2 24.439-107.798 55.334-21.002 23.517-40.134 60.406-40.134 98.218 0 5.533 0.934 11.067 1.402 12.911 2.333 0.461 6.067 0.922 9.798 0.922zM406.906 853.334c45.267 0 65.334-29.974 121.798-29.974 57.402 0 70 29.050 120.4 29.050 49.469 0 82.602-45.187 113.869-89.456 34.998-50.72 49.466-100.522 50.4-102.829-3.267-0.922-98-39.194-98-146.634 0-93.146 74.666-135.107 78.867-138.333-49.469-70.090-124.602-71.935-145.136-71.935-55.533 0-100.8 33.199-129.264 33.199-30.8 0-71.402-31.354-119.469-31.354-91.466 0-184.333 74.701-184.333 215.802 0 87.61 34.533 180.294 77 240.24 36.402 50.723 68.133 92.224 113.867 92.224z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["apple-monochromatic"],"defaultCode":59662,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":236,"name":"apple-monochromatic","prevSize":32,"id":40,"code":59666},"setIdx":0,"setId":3,"iconIdx":41},{"icon":{"paths":["M498.694 141.561l-298.666 136.533c-11.39 5.207-18.696 16.58-18.696 29.103v386.844c0 11.818 6.513 22.675 16.941 28.237l298.667 159.286c9.411 5.021 20.707 5.021 30.118 0l298.666-159.286c10.429-5.562 16.941-16.419 16.941-28.237v-386.844c0-12.524-7.306-23.896-18.694-29.103l-298.666-136.533c-8.451-3.862-18.16-3.862-26.611 0zM245.333 357.011l234.667 107.277v335.709l-234.667-125.155v-317.83zM544 799.997l234.666-125.155v-317.83l-234.666 107.277v335.709zM512 408.544l-221.7-101.347 221.7-101.348 221.699 101.348-221.699 101.347z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["apps"],"defaultCode":59663,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":166,"name":"apps","prevSize":32,"id":41,"code":59667},"setIdx":0,"setId":3,"iconIdx":42},{"icon":{"paths":["M374.627 297.372c-12.496-12.497-32.758-12.497-45.254 0l-192 192c-12.497 12.496-12.497 32.758 0 45.254l192 192c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-137.372-137.373h578.745v128c0 17.674 14.326 32 32 32s32-14.326 32-32v-160c0-17.674-14.326-32-32-32h-610.745l137.372-137.373c12.496-12.496 12.496-32.758 0-45.255z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-back"],"defaultCode":59664,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":167,"name":"arrow-back","prevSize":32,"id":42,"code":59668},"setIdx":0,"setId":3,"iconIdx":43},{"icon":{"paths":["M551.392 242.502c0.189-17.672 14.669-31.845 32.339-31.656 17.674 0.189 31.846 14.668 31.658 32.34l-1.318 123.489 193.44-193.439c12.496-12.497 32.755-12.497 45.254 0 12.496 12.497 12.496 32.758 0 45.255l-193.44 193.439 123.488-1.318c17.674-0.189 32.154 13.984 32.339 31.654 0.189 17.674-13.984 32.154-31.654 32.342l-201.92 2.154c-8.605 0.093-16.886-3.283-22.97-9.37-6.086-6.083-9.462-14.365-9.373-22.97l2.157-201.92zM475.981 782.147c-0.189 17.674-14.669 31.846-32.339 31.658-17.674-0.189-31.846-14.669-31.658-32.342l1.318-123.488-193.438 193.44c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l193.438-193.44-123.488 1.318c-17.672 0.189-32.151-13.984-32.34-31.654-0.189-17.674 13.984-32.154 31.656-32.342l201.922-2.154c8.605-0.093 16.883 3.283 22.966 9.37 6.086 6.083 9.462 14.365 9.373 22.97l-2.157 201.92z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-collapse"],"defaultCode":59665,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":168,"name":"arrow-collapse","prevSize":32,"id":43,"code":59669},"setIdx":0,"setId":3,"iconIdx":44},{"icon":{"paths":["M576 672c-17.674 0-32 14.326-32 32s14.326 32 32 32h224c17.674 0 32-14.326 32-32v-208c0-17.674-14.326-32-32-32s-32 14.326-32 32v130.746l-233.373-233.373c-12.496-12.496-32.758-12.496-45.254 0l-73.373 73.373-169.372-169.373c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.759 0 45.255l192 192c12.496 12.496 32.758 12.496 45.254 0l73.373-73.373 210.746 210.746h-146.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-decrease"],"defaultCode":59666,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":169,"name":"arrow-decrease","prevSize":32,"id":44,"code":59670},"setIdx":0,"setId":3,"iconIdx":45},{"icon":{"paths":["M329.373 550.627c-12.497-12.496-12.497-32.758 0-45.254s32.758-12.496 45.254 0l105.373 105.373v-418.746c0-17.673 14.326-32 32-32s32 14.327 32 32v418.746l105.373-105.373c12.496-12.496 32.758-12.496 45.254 0s12.496 32.758 0 45.254l-160 160c-12.496 12.496-32.758 12.496-45.254 0l-160-160zM112 864c0 17.674 14.327 32 32 32h768c17.674 0 32-14.326 32-32v-512c0-17.674-14.326-32-32-32h-96c-17.674 0-32 14.326-32 32s14.326 32 32 32h64v448h-704v-448h64c17.673 0 32-14.326 32-32s-14.327-32-32-32h-96c-17.673 0-32 14.326-32 32v512z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-down-box"],"defaultCode":59667,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":170,"name":"arrow-down-box","prevSize":32,"id":45,"code":59671},"setIdx":0,"setId":3,"iconIdx":46},{"icon":{"paths":["M865.139 512c0-194.404-157.802-352-352.464-352-194.66 0-352.464 157.596-352.464 352s157.804 352 352.464 352c194.662 0 352.464-157.597 352.464-352zM929.226 512c0 229.75-186.496 416-416.55 416-230.053 0-416.548-186.25-416.548-416s186.495-416 416.548-416c230.054 0 416.55 186.25 416.55 416zM695.178 571.37l-160.182 155.715c-12.438 12.093-32.259 12.093-44.701 0l-160.179-155.715c-12.682-12.33-12.955-32.589-0.611-45.251 12.342-12.666 32.63-12.938 45.309-0.611l105.789 102.842 0.003-276.349c0-17.674 14.346-32 32.042-32s32.042 14.326 32.042 32v276.349l105.789-102.842c12.682-12.326 32.966-12.054 45.309 0.611 12.346 12.662 12.070 32.922-0.608 45.251z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-down-circle"],"defaultCode":59668,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":171,"name":"arrow-down-circle","prevSize":32,"id":46,"code":59672},"setIdx":0,"setId":3,"iconIdx":47},{"icon":{"paths":["M726.88 526.064c12.355 12.637 12.128 32.896-0.509 45.254l-191.968 187.715c-12.438 12.163-32.31 12.163-44.746 0l-191.97-187.715c-12.636-12.358-12.863-32.618-0.507-45.254 12.356-12.634 32.615-12.861 45.252-0.506l137.597 134.55v-372.109c0-17.673 14.33-32 32-32 17.674 0 32 14.327 32 32v372.109l137.6-134.55c12.634-12.355 32.896-12.128 45.251 0.506z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-down"],"defaultCode":59669,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":172,"name":"arrow-down","prevSize":32,"id":47,"code":59673},"setIdx":0,"setId":3,"iconIdx":48},{"icon":{"paths":["M859.978 398.15c-0.189 17.67-14.666 31.843-32.339 31.654-17.67-0.189-31.846-14.666-31.658-32.339l1.318-123.488-193.437 193.437c-12.496 12.499-32.758 12.499-45.254 0-12.496-12.496-12.496-32.755 0-45.254l193.437-193.437-123.488 1.318c-17.67 0.189-32.15-13.984-32.339-31.656s13.984-32.151 31.658-32.34l201.92-2.156c8.605-0.092 16.883 3.286 22.97 9.371 6.083 6.085 9.462 14.364 9.37 22.969l-2.157 201.922zM167.394 626.522c0.189-17.674 14.668-31.846 32.34-31.658s31.845 14.669 31.657 32.339l-1.319 123.488 193.438-193.437c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-193.438 193.437 123.489-1.318c17.67-0.189 32.15 13.984 32.339 31.658 0.189 17.67-13.984 32.15-31.658 32.339l-201.92 2.157c-8.605 0.093-16.884-3.286-22.969-9.37-6.085-6.086-9.463-14.365-9.371-22.97l2.156-201.92z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-expand"],"defaultCode":59670,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":173,"name":"arrow-expand","prevSize":32,"id":48,"code":59674},"setIdx":0,"setId":3,"iconIdx":49},{"icon":{"paths":["M576 352c-17.674 0-32-14.326-32-32s14.326-32 32-32h224c17.674 0 32 14.327 32 32v208c0 17.674-14.326 32-32 32s-32-14.326-32-32v-130.746l-233.373 233.373c-12.496 12.496-32.758 12.496-45.254 0l-73.373-73.373-169.372 169.373c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l192-192c12.496-12.496 32.758-12.496 45.254 0l73.373 73.373 210.746-210.746h-146.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-increase"],"defaultCode":59671,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":174,"name":"arrow-increase","prevSize":32,"id":49,"code":59675},"setIdx":0,"setId":3,"iconIdx":50},{"icon":{"paths":["M297.766 105.372c12.513-12.497 32.801-12.497 45.316 0 12.512 12.497 12.512 32.758 0 45.255l-105.513 105.372h611.551c17.699 0 32.045 14.327 32.045 32v112c0 17.674-14.346 32-32.045 32-17.696 0-32.042-14.326-32.042-32v-80h-579.51l105.513 105.373c12.512 12.496 12.512 32.758 0 45.254-12.515 12.496-32.803 12.496-45.316 0l-160.212-160c-12.513-12.497-12.513-32.758 0-45.255l160.212-160zM711.568 918.627c-12.515 12.496-32.803 12.496-45.315 0-12.515-12.496-12.515-32.758 0-45.254l105.51-105.373h-611.552c-17.696 0-32.042-14.326-32.042-32v-112c0-17.674 14.346-32 32.042-32s32.042 14.326 32.042 32v80h579.509l-105.51-105.373c-12.515-12.496-12.515-32.758 0-45.254 12.512-12.496 32.8-12.496 45.315 0l160.211 160c12.512 12.496 12.512 32.758 0 45.254l-160.211 160z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-looping"],"defaultCode":59672,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":175,"name":"arrow-looping","prevSize":32,"id":50,"code":59677},"setIdx":0,"setId":3,"iconIdx":51},{"icon":{"paths":["M374.627 769.296c-12.496 12.496-32.758 12.496-45.254 0l-192-192c-12.497-12.496-12.497-32.758 0-45.254l192-192c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-137.372 137.373h578.745v-192h-192c-17.674 0-32-14.328-32-32.001s14.326-32 32-32h224c17.674 0 32 14.327 32 32v256.001c0 17.674-14.326 32-32 32h-610.745l137.372 137.373c12.496 12.496 12.496 32.758 0 45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-return"],"defaultCode":59673,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":176,"name":"arrow-return","prevSize":32,"id":51,"code":59678},"setIdx":0,"setId":3,"iconIdx":52},{"icon":{"paths":["M694.627 473.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-105.373-105.373v418.746c0 17.674-14.326 32-32 32s-32-14.326-32-32v-418.746l-105.373 105.373c-12.496 12.496-32.758 12.496-45.254 0s-12.497-32.758 0-45.254l160-160c12.496-12.497 32.758-12.497 45.254 0l160 160zM912 160c0-17.673-14.326-32-32-32h-768c-17.673 0-32 14.327-32 32v512c0 17.674 14.327 32 32 32h96c17.673 0 32-14.326 32-32s-14.327-32-32-32h-64v-448h704v448h-64c-17.674 0-32 14.326-32 32s14.326 32 32 32h96c17.674 0 32-14.326 32-32v-512z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-up-box"],"defaultCode":59674,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":177,"name":"arrow-up-box","prevSize":32,"id":52,"code":59679},"setIdx":0,"setId":3,"iconIdx":53},{"icon":{"paths":["M297.181 498.090c-12.356-12.634-12.129-32.896 0.507-45.251l191.97-187.717c12.435-12.161 32.307-12.161 44.746 0l191.968 187.717c12.637 12.355 12.864 32.618 0.509 45.251-12.355 12.637-32.618 12.864-45.251 0.509l-137.6-134.55v372.109c0 17.674-14.326 32-32 32-17.67 0-32-14.326-32-32v-372.109l-137.597 134.55c-12.637 12.355-32.895 12.128-45.251-0.509z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-up"],"defaultCode":59675,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":178,"name":"arrow-up","prevSize":32,"id":53,"code":59680},"setIdx":0,"setId":3,"iconIdx":54},{"icon":{"paths":["M866.128 153.127c-12.496-12.497-32.758-12.497-45.254 0l-668.246 668.245c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l668.246-668.245c12.496-12.497 12.496-32.758 0-45.255zM674.643 480.358l55.92-55.923c16.259 79.565 14.515 161.866-5.229 240.842l-11.622 46.49c-4.288 17.146-21.661 27.571-38.806 23.283-17.146-4.285-27.568-21.661-23.283-38.806l11.622-46.486c13.875-55.507 17.677-112.874 11.398-169.398zM817.162 385.923l-11.312-36.771 51.203-51.206 21.28 69.155c33.344 108.368 31.994 224.445-3.859 332.010l-33.45 100.342c-5.587 16.765-23.709 25.827-40.477 20.24-16.765-5.59-25.827-23.712-20.237-40.48l33.446-100.339c31.635-94.912 32.826-197.334 3.405-292.95zM490.666 664.333l64-64v210.346c0 23.562-19.101 42.666-42.666 42.666h-85.334c-35.459 0-68.394-10.816-95.683-29.325l46.611-46.611c14.701 7.629 31.395 11.936 49.072 11.936h64v-125.011zM128 682.678c0 19.738 13.403 36.346 31.604 41.216l62.552-62.55h-30.156v-298.666h118.99l12.367-48.049c11.843-46.020 53.696-79.953 103.309-79.953h64v158.155l64-64v-115.488c0-23.564-19.101-42.667-42.666-42.667h-85.334c-79.523 0-146.343 54.39-165.289 128h-90.71c-23.564 0-42.667 19.102-42.667 42.667v341.334z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["audio-disabled"],"defaultCode":59677,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":180,"name":"audio-disabled","prevSize":32,"id":54,"code":59681},"setIdx":0,"setId":3,"iconIdx":55},{"icon":{"paths":["M310.99 661.344h-118.99v-298.666h118.99l12.367-48.049c11.843-46.020 53.696-79.953 103.309-79.953h64v554.667h-64c-49.613 0-91.466-33.933-103.309-79.952l-12.367-48.048zM170.667 725.344h90.71c18.946 73.61 85.766 128 165.289 128h85.334c23.565 0 42.666-19.104 42.666-42.666v-597.335c0-23.564-19.101-42.667-42.666-42.667h-85.334c-79.523 0-146.343 54.39-165.289 128h-90.71c-23.564 0-42.667 19.102-42.667 42.667v341.334c0 23.562 19.103 42.666 42.667 42.666zM886.627 393.373c12.496 12.496 12.496 32.758 0 45.254l-73.373 73.373 73.373 73.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-73.373-73.373-73.373 73.373c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l73.373-73.373-73.373-73.373c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l73.373 73.373 73.373-73.373c12.496-12.496 32.758-12.496 45.254 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["audio-unavailable"],"defaultCode":59678,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":181,"name":"audio-unavailable","prevSize":32,"id":55,"code":59682},"setIdx":0,"setId":3,"iconIdx":56},{"icon":{"paths":["M300.1 631.12h-113.433v-280.89h113.433l12.366-48.048c11.054-42.953 50.123-74.619 96.423-74.619h58.666v526.223h-58.666c-46.301 0-85.37-31.667-96.423-74.621l-12.366-48.045zM163.556 695.12h86.931c18.156 70.541 82.192 122.666 158.403 122.666h81.776c22.582 0 40.89-18.307 40.89-40.89v-572.444c0-22.582-18.307-40.889-40.89-40.889h-81.776c-76.211 0-140.247 52.124-158.403 122.667h-86.931c-22.582 0-40.889 18.306-40.889 40.89v327.11c0 22.582 18.307 40.89 40.889 40.89zM646.461 316.515c17.146-4.286 34.518 6.138 38.806 23.284l11.136 44.55c20.81 83.229 20.81 170.301 0 253.533l-11.136 44.55c-4.288 17.146-21.661 27.568-38.806 23.283-17.146-4.288-27.571-21.661-23.283-38.806l11.136-44.55c18.262-73.040 18.262-149.45 0.003-222.486l-11.139-44.55c-4.288-17.146 6.138-34.522 23.283-38.807zM807.472 235.936c-5.197-16.892-23.104-26.372-39.994-21.174-16.893 5.197-26.371 23.104-21.174 39.996l35.536 115.489c28.112 91.37 26.976 189.242-3.254 279.933l-32.054 96.16c-5.59 16.765 3.472 34.886 20.237 40.477 16.768 5.587 34.89-3.472 40.48-20.24l32.051-96.16c34.448-103.344 35.747-214.87 3.709-318.989l-35.536-115.491z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["audio"],"defaultCode":59679,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":182,"name":"audio","prevSize":32,"id":56,"code":59683},"setIdx":0,"setId":3,"iconIdx":57},{"icon":{"paths":["M418.704 128c-35.344 0-64 28.654-64 64v226.637c20.774-2.822 42.134-3.456 64-1.526v-225.11h176v180.707c0 35.344 28.656 64 64 64h176v331.293h-120.554c-17.155 22.179-36.323 43.869-57.312 64h177.866c35.347 0 64-28.653 64-64v-363.293c0-6.413-1.923-12.675-5.526-17.978l-156.63-230.681c-11.914-17.544-31.741-28.049-52.947-28.049h-264.896zM658.704 372.707v-180.707h24.896l122.698 180.707h-147.594zM167.939 668.547c120.524 156.138 218.24 174.586 285.133 158.739 73.293-17.36 139.232-81.648 183.466-151.763-115.155-155.869-211.581-174.589-279.149-158.915-74.362 17.251-142.707 81.683-189.45 151.939zM104.428 649.037c100.621-162.8 337.62-357.19 593.252 1.789 9.072 12.739 10.32 29.818 2.422 43.315-95.27 162.854-326.394 358.346-593.234-0.224-9.745-13.094-11.022-30.995-2.44-44.88zM401.664 735.994c31.514 0 60.269-26.858 60.269-64 0-37.146-28.755-64-60.269-64-31.51 0-60.266 26.854-60.266 64 0 37.142 28.755 64 60.266 64zM401.664 799.994c68.634 0 124.269-57.309 124.269-128 0-70.694-55.635-128-124.269-128-68.63 0-124.267 57.306-124.267 128 0 70.691 55.636 128 124.267 128z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["auditing"],"defaultCode":59680,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":183,"name":"auditing","prevSize":32,"id":57,"code":59684},"setIdx":0,"setId":3,"iconIdx":58},{"icon":{"paths":["M224 224c-17.673 0-32 14.327-32 32v544c0 17.674 14.327 32 32 32h544c17.674 0 32-14.326 32-32v-544c0-17.673-14.326-32-32-32h-544zM128 256c0-53.019 42.981-96 96-96h544c53.021 0 96 42.981 96 96v544c0 53.021-42.979 96-96 96h-544c-53.019 0-96-42.979-96-96v-544zM608 460.813c0 41.798-26.714 77.357-64 90.538v133.462h-64v-133.462c-37.286-13.181-64-48.739-64-90.538 0-53.021 42.979-96 96-96s96 42.979 96 96zM608 588.826c38.861-29.19 64-75.667 64-128.013 0-88.365-71.635-160-160-160s-160 71.636-160 160c0 52.346 25.139 98.822 64 128.013v127.987c0 17.674 14.326 32 32 32h128c17.674 0 32-14.326 32-32v-127.987z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["auth"],"defaultCode":59681,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":184,"name":"auth","prevSize":32,"id":58,"code":59685},"setIdx":0,"setId":3,"iconIdx":59},{"icon":{"paths":["M513.35 554.019c66.467 0 120.349-52.493 120.349-117.242 0-64.752-53.882-117.243-120.349-117.243-66.464 0-120.346 52.491-120.346 117.243 0 64.749 53.882 117.242 120.346 117.242zM513.35 490.019c-32.704 0-56.346-25.405-56.346-53.242 0-27.84 23.642-53.242 56.346-53.242 32.707 0 56.349 25.402 56.349 53.242 0 27.837-23.642 53.242-56.349 53.242z","M365.478 894.144h-172.126c-17.673 0-32-14.33-32-32v-702.144c0-17.673 14.327-32 32-32h640.001c17.674 0 32 14.327 32 32v702.144c0 17.67-14.326 32-32 32h-172.128c-6.24 1.274-12.701 1.942-19.318 1.942h-257.11c-6.618 0-13.078-0.669-19.318-1.942zM225.353 830.144h68.244c-3.114-9.456-4.799-19.558-4.799-30.058v-93.446c0-56.109 37.881-105.142 92.172-119.309 19.171-5.002 39.264-5.312 58.579-0.902l42.778 9.766c20.051 4.579 40.909 4.259 60.81-0.934l28.070-7.325c20.694-5.398 42.384-5.734 63.232-0.973 60.534 13.821 103.469 67.664 103.469 129.754v83.37c0 10.499-1.686 20.602-4.8 30.058h68.246v-638.144h-576.001v638.144zM652.918 830.144c12.246-4.49 20.989-16.253 20.989-30.058v-83.37c0-32.234-22.288-60.186-53.715-67.36-10.822-2.47-22.083-2.298-32.826 0.506l-28.070 7.325c-29.853 7.789-61.139 8.272-91.216 1.405l-42.774-9.766c-9.293-2.122-18.957-1.974-28.176 0.432-26.112 6.813-44.333 30.397-44.333 57.382v93.446c0 13.805 8.742 25.568 20.989 30.058h279.133z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["avatar"],"defaultCode":59682,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":185,"name":"avatar","prevSize":32,"id":59,"code":59686},"setIdx":0,"setId":3,"iconIdx":60},{"icon":{"paths":["M737.779 361.376c12.499 12.496 12.499 32.758 0 45.254l-110.947 110.95 110.947 110.947c12.499 12.496 12.499 32.758 0 45.254-12.496 12.499-32.758 12.499-45.254 0l-110.947-110.947-110.95 110.947c-12.496 12.499-32.758 12.499-45.254 0-12.496-12.496-12.496-32.758 0-45.254l110.95-110.947-110.95-110.95c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l110.95 110.95 110.947-110.95c12.496-12.496 32.758-12.496 45.254 0z","M312.246 218.073c12.061-16.393 31.2-26.073 51.552-26.073h468.202c35.347 0 64 28.654 64 64v512c0 35.347-28.653 64-64 64h-468.202c-20.352 0-39.491-9.68-51.552-26.074l-188.343-256c-16.598-22.56-16.598-53.293 0-75.853l188.343-256.001zM363.798 256l-188.343 256 188.343 256h468.202v-512h-468.202z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["backspace"],"defaultCode":59683,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":186,"name":"backspace","prevSize":32,"id":60,"code":59687},"setIdx":0,"setId":3,"iconIdx":61},{"icon":{"paths":["M376 775.418c-13.254 0-24-10.746-24-24v-469.168c0-13.255 10.746-24 24-24h145.075c56.118 0 98.269 11.603 126.448 34.809 28.416 23.206 42.624 57.542 42.624 103.008 0 24.154-6.867 45.584-20.602 64.291-13.734 18.47-32.442 32.794-56.122 42.976 27.942 7.814 49.965 22.733 66.067 44.755 16.339 21.786 24.509 47.834 24.509 78.144 0 46.413-15.037 82.88-45.11 109.402s-72.579 39.782-127.517 39.782h-155.373zM420.198 533.526v186.125h112.595c31.731 0 56.714-8.17 74.947-24.509 18.47-16.576 27.706-39.309 27.706-68.198 0-62.278-33.862-93.418-101.587-93.418h-113.661zM420.198 478.829h103.008c29.834 0 53.632-7.459 71.392-22.378 17.997-14.918 26.995-35.165 26.995-60.739 0-28.416-8.288-49.018-24.864-61.805-16.576-13.024-41.795-19.536-75.654-19.536h-100.877v164.458z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["bold"],"defaultCode":59684,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":187,"name":"bold","prevSize":32,"id":61,"code":59688},"setIdx":0,"setId":3,"iconIdx":62},{"icon":{"paths":["M352 445.437c0-17.67 14.326-32 32-32h256c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M352 322.557c0-17.672 14.326-31.999 32-31.999h256c17.674 0 32 14.327 32 31.999 0 17.674-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M864 679.68c0 17.674-14.326 32-32 32h-18.509c-8.218 40.547-8.218 82.333 0 122.88h19.789c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72h-545.28c-70.692 0-128-55.014-128-122.88v-453.12c0-106.038 85.961-192 192-192h480c17.674 0 32 14.327 32 32v519.68zM748.419 834.56c-6.787-40.678-6.787-82.202 0-122.88h-460.419c-35.346 0-64 27.507-64 61.44s28.654 61.44 64 61.44h460.419zM224 647.68h576v-455.68h-448c-70.692 0-128 57.308-128 128v327.68z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["book"],"defaultCode":59685,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":188,"name":"book","prevSize":32,"id":62,"code":59689},"setIdx":0,"setId":3,"iconIdx":63},{"icon":{"paths":["M224 224h320v576h-96v-112c0-8.835-7.165-16-16-16h-96c-8.835 0-16 7.165-16 16v112h-96v-576zM608 448h192v352h-192v-352zM832 384h-224v-192c0-17.673-14.326-32-32-32h-384c-17.673 0-32 14.327-32 32v640c0 17.674 14.327 32 32 32h640c17.674 0 32-14.326 32-32v-416c0-17.674-14.326-32-32-32zM304 288c-8.836 0-16 7.164-16 16v32c0 8.835 7.164 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.836-7.165-16-16-16h-32zM288 432c0-8.835 7.164-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.836 0-16-7.165-16-16v-32zM304 544c-8.836 0-16 7.165-16 16v32c0 8.835 7.164 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM416 304c0-8.836 7.165-16 16-16h32c8.835 0 16 7.164 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32zM432 416c-8.835 0-16 7.165-16 16v32c0 8.835 7.165 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM416 560c0-8.835 7.165-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32zM688 512c-8.835 0-16 7.165-16 16v32c0 8.835 7.165 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM672 656c0-8.835 7.165-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["business"],"defaultCode":59686,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":189,"name":"business","prevSize":32,"id":63,"code":59690},"setIdx":0,"setId":3,"iconIdx":64},{"icon":{"paths":["M277.831 157.44c0-16.259 13.181-29.44 29.44-29.44s29.439 13.181 29.439 29.44v58.876h353.28v-58.876c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v58.876h85.76c17.674 0 32 14.327 32 32v583.68c0 17.674-14.326 32-32 32h-642.559c-17.673 0-32-14.326-32-32v-583.68c0-1.105 0.056-2.196 0.165-3.272 1.639-16.136 15.266-28.728 31.835-28.728h85.76v-58.876zM802.63 392.957h-578.559v407.040h578.559v-407.040zM425.034 644.474c0-8.835 7.162-16 16-16h26.88c8.835 0 16 7.165 16 16v26.88c0 8.838-7.165 16-16 16h-26.88c-8.838 0-16-7.162-16-16v-26.88zM323.27 510.72c-8.836 0-15.999 7.162-15.999 16v26.88c0 8.835 7.163 16 15.999 16h26.88c8.838 0 16-7.165 16-16v-26.88c0-8.838-7.162-16-16-16h-26.88zM542.79 526.72c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.835-7.162 16-16 16h-26.88c-8.835 0-16-7.165-16-16v-26.88zM323.27 628.474c-8.835 0-15.999 7.165-15.999 16v26.88c0 8.838 7.164 16 15.999 16h26.88c8.838 0 16-7.162 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88zM542.79 644.474c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.838-7.162 16-16 16h-26.88c-8.835 0-16-7.162-16-16v-26.88zM441.030 510.72c-8.835 0-16 7.165-16 16v26.88c0 8.835 7.165 16 16 16h26.88c8.838 0 16-7.165 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88zM660.55 526.72c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.835-7.162 16-16 16h-26.88c-8.835 0-16-7.165-16-16v-26.88zM676.55 628.474c-8.835 0-16 7.165-16 16v26.88c0 8.838 7.165 16 16 16h26.88c8.838 0 16-7.162 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["calendar"],"defaultCode":59687,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":190,"name":"calendar","prevSize":32,"id":64,"code":59691},"setIdx":0,"setId":3,"iconIdx":65},{"icon":{"paths":["M866.128 153.126c-12.496-12.497-32.758-12.497-45.254 0l-668.246 668.246c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l668.246-668.246c12.496-12.497 12.496-32.758 0-45.255zM298.667 170.671c-23.564 0-42.667 14.327-42.667 32s19.102 32 42.667 32h255.999c23.565 0 42.669-14.327 42.669-32s-19.104-32-42.669-32h-255.999zM574.173 309.327h-403.506c-41.237 0-74.667 33.428-74.667 74.667v384c0 6.010 0.71 11.856 2.051 17.453l61.949-61.949v-339.504c0-5.891 4.776-10.666 10.667-10.666h339.506l64-64.001zM376.339 778.659h306.326c5.891 0 10.669-4.774 10.669-10.666v-85.334c0-11.373 6.038-21.891 15.859-27.629s21.949-5.83 31.856-0.243l97.83 55.162c2.531 1.427 4.858 3.194 6.912 5.248 6.72 6.72 18.208 1.962 18.208-7.542v-263.322c0-9.501-11.488-14.262-18.208-7.542-2.054 2.054-4.381 3.821-6.912 5.248l-97.83 55.162c-9.907 5.587-22.035 5.494-31.856-0.243-9.821-5.734-15.859-16.256-15.859-27.629v-7.661l110.778-73.498c47.418-41.99 123.888-8.701 123.888 56.163v263.322c0 64.864-76.47 98.154-123.888 56.163l-46.778-26.378v30.554c0 41.238-33.43 74.666-74.669 74.666h-370.327l64.001-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["camera-disabled"],"defaultCode":59688,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":191,"name":"camera-disabled","prevSize":32,"id":65,"code":59692},"setIdx":0,"setId":3,"iconIdx":66},{"icon":{"paths":["M288 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h256c17.674 0 32-14.327 32-32s-14.326-32-32-32h-256z","M170.667 341.328c-23.564 0-42.667 19.104-42.667 42.666v384c0 23.565 19.102 42.669 42.667 42.669h511.999c23.565 0 42.669-19.104 42.669-42.669v-128l97.83 97.83c26.877 26.88 72.835 7.843 72.835-30.17v-263.318c0-38.013-45.958-57.050-72.835-30.173l-97.83 97.83v-128c0-23.562-19.104-42.666-42.669-42.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["camera-filled"],"defaultCode":59689,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":192,"name":"camera-filled","prevSize":32,"id":66,"code":59693},"setIdx":0,"setId":3,"iconIdx":67},{"icon":{"paths":["M196.731 191.997c0-15.807 12.814-28.622 28.622-28.622h128.001c15.805 0 28.621 12.814 28.621 28.622s-12.816 28.621-28.621 28.621h-128.001c-15.807 0-28.622-12.814-28.622-28.621z","M737.354 559.997c0 97.203-78.8 176-176 176-97.203 0-176-78.797-176-176s78.797-176 176-176c97.2 0 176 78.797 176 176zM673.354 559.997c0-61.856-50.144-112-112-112s-112 50.144-112 112c0 61.856 50.144 112 112 112s112-50.144 112-112z","M193.353 255.997c-35.346 0-64 28.654-64 64v448c0 35.347 28.654 64 64 64h640.001c35.344 0 64-28.653 64-64v-448c0-35.346-28.656-64-64-64h-640.001zM833.354 319.997v448h-640.001v-448h640.001z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["camera-photo"],"defaultCode":59690,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":193,"name":"camera-photo","prevSize":32,"id":67,"code":59694},"setIdx":0,"setId":3,"iconIdx":68},{"icon":{"paths":["M298.667 170.672c-23.564 0-42.667 14.327-42.667 32s19.102 32 42.667 32h255.999c23.565 0 42.669-14.327 42.669-32s-19.104-32-42.669-32h-255.999z","M545.712 503.453c11.267-11.267 11.19-29.61-0.17-40.97s-29.706-11.437-40.973-0.17l-71.402 71.402-71.994-71.997c-11.363-11.36-29.706-11.437-40.973-0.17s-11.19 29.61 0.17 40.97l71.997 71.997-71.402 71.402c-11.266 11.267-11.19 29.61 0.17 40.97 11.363 11.36 29.706 11.437 40.973 0.17l71.402-71.402 71.997 71.997c11.36 11.36 29.702 11.437 40.97 0.17s11.19-29.61-0.17-40.97l-71.997-71.997 71.402-71.402z","M96 383.994c0-41.235 33.429-74.666 74.667-74.666h511.999c41.238 0 74.669 33.43 74.669 74.666v30.554l46.778-26.378c47.418-41.99 123.888-8.698 123.888 56.166v263.318c0 64.864-76.47 98.154-123.888 56.163l-46.778-26.374v30.55c0 41.238-33.43 74.669-74.669 74.669h-511.999c-41.237 0-74.667-33.43-74.667-74.669v-384zM170.667 373.328c-5.891 0-10.667 4.774-10.667 10.666v384c0 5.891 4.776 10.669 10.667 10.669h511.999c5.891 0 10.669-4.778 10.669-10.669v-85.331c0-11.376 6.038-21.894 15.859-27.632s21.949-5.83 31.856-0.243l97.83 55.165c2.531 1.427 4.858 3.19 6.912 5.245 6.72 6.72 18.208 1.962 18.208-7.542v-263.318c0-9.504-11.488-14.262-18.208-7.546-2.054 2.058-4.381 3.821-6.912 5.248l-97.83 55.165c-9.907 5.587-22.035 5.494-31.856-0.243s-15.859-16.256-15.859-27.632v-85.334c0-5.891-4.778-10.666-10.669-10.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["camera-unavailable"],"defaultCode":59691,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":194,"name":"camera-unavailable","prevSize":32,"id":68,"code":59695},"setIdx":0,"setId":3,"iconIdx":69},{"icon":{"paths":["M256 202.672c0-17.673 19.102-32 42.667-32h255.999c23.565 0 42.669 14.327 42.669 32s-19.104 32-42.669 32h-255.999c-23.564 0-42.667-14.327-42.667-32zM160 383.994c0-5.891 4.776-10.666 10.667-10.666h511.999c5.891 0 10.669 4.774 10.669 10.666v85.334c0 11.376 6.038 21.894 15.859 27.632s21.949 5.83 31.856 0.243l97.83-55.165c2.531-1.427 4.858-3.19 6.912-5.248 6.72-6.717 18.208-1.958 18.208 7.546v263.318c0 9.504-11.488 14.262-18.208 7.542-2.054-2.054-4.381-3.818-6.912-5.245l-97.83-55.165c-9.907-5.587-22.035-5.494-31.856 0.243s-15.859 16.256-15.859 27.632v85.331c0 5.891-4.778 10.669-10.669 10.669h-511.999c-5.891 0-10.667-4.778-10.667-10.669v-384zM170.667 309.328c-41.237 0-74.667 33.43-74.667 74.666v384c0 41.238 33.429 74.669 74.667 74.669h511.999c41.238 0 74.669-33.43 74.669-74.669v-30.55l46.778 26.374c47.418 41.99 123.888 8.701 123.888-56.163v-263.318c0-64.864-76.47-98.157-123.888-56.166l-46.778 26.378v-30.554c0-41.235-33.43-74.666-74.669-74.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["camera"],"defaultCode":59692,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":195,"name":"camera","prevSize":32,"id":69,"code":59696},"setIdx":0,"setId":3,"iconIdx":70},{"icon":{"paths":["M224.248 304.026c-49.642 68.947-66.502 152.646-66.502 207.968v1.453l-0.132 1.446c-9.702 106.717 28.59 181.93 90.135 234.006 62.938 53.254 152.152 83.731 244.197 93.958 91.965 10.218 193.27 1.446 273.306-15.482 40.022-8.461 73.616-18.733 97.443-29.075 9.245-4.013 16.438-7.786 21.734-11.126-2.464-1.565-5.446-3.306-9.002-5.197-9.222-4.912-19.779-9.578-30.733-14.368l-1.914-0.835c-9.667-4.221-20.47-8.941-28.656-13.517-14.835-8.298-29.389-17.734-40.006-27.776-5.222-4.941-11.165-11.571-15.146-19.827-4.208-8.742-7.226-21.792-1.306-35.597 31.978-74.621 47.178-115.494 54.538-142.483 6.874-25.2 6.874-37.888 6.874-58.064v-0.182c0-16.035-9.318-89.517-55.811-158.032-45.018-66.338-125.99-129.968-274.854-129.968-134.637 0-215.698 55.382-264.165 122.698zM172.309 266.63c60.333-83.796 160.606-149.302 316.103-149.302 171.136 0 271.494 75.037 327.811 158.032 54.842 80.819 66.854 167.338 66.854 193.968 0 22.384-0.022 41.696-9.126 75.088-8.131 29.805-23.485 70.928-51.946 137.923 5.261 4.166 13.072 9.306 23.36 15.062 5.315 2.97 13.485 6.55 24.963 11.568 10.653 4.659 23.437 10.266 35.174 16.515 11.258 5.994 24.416 14.029 34.202 24.538 10.234 10.992 20.973 29.846 13.299 52.864-5.056 15.168-16.794 25.939-26.576 33.094-10.63 7.776-23.818 14.762-38.253 21.030-29.008 12.589-67.030 23.962-109.683 32.982-85.309 18.038-193.581 27.587-293.616 16.474-99.955-11.107-202.74-44.634-278.468-108.71-76.833-65.011-123.811-159.994-112.66-287.222 0.286-65.549 19.841-162.349 78.561-243.904zM493.744 320c17.674 0 32 14.326 32 32v224c0 17.674-14.326 32-32 32s-32-14.326-32-32v-224c0-17.674 14.326-32 32-32zM525.744 672c0-17.674-14.326-32-32-32s-32 14.326-32 32c0 17.674 14.326 32 32 32s32-14.326 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["canned-response"],"defaultCode":59693,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":196,"name":"canned-response","prevSize":32,"id":70,"code":59697},"setIdx":0,"setId":3,"iconIdx":71},{"icon":{"paths":["M193.352 181.331c-53.020 0-96 42.981-96 96v469.335c0 53.018 42.98 96 96 96h639.999c53.021 0 96-42.982 96-96v-469.335c0-53.019-42.979-96-96-96h-639.999zM161.352 277.331c0-17.673 14.327-32 32-32h639.999c17.674 0 32 14.327 32 32v202.673h-703.999v-202.673zM161.352 544.003h703.999v202.662c0 17.67-14.326 32-32 32h-639.999c-17.673 0-32-14.33-32-32v-202.662zM812.016 661.331c0-35.347-28.653-64-64-64-35.344 0-64 28.653-64 64s28.656 64 64 64c35.347 0 64-28.653 64-64z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["card"],"defaultCode":59694,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":197,"name":"card","prevSize":32,"id":71,"code":59698},"setIdx":0,"setId":3,"iconIdx":72},{"icon":{"paths":["M368 160c0-17.673-14.326-32-32-32s-32 14.327-32 32v144h-144c-17.673 0-32 14.327-32 32s14.327 32 32 32h144v288h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v144c0 17.674 14.327 32 32 32s32-14.326 32-32v-144h288v144c0 17.674 14.326 32 32 32s32-14.326 32-32v-144h144c17.674 0 32-14.326 32-32s-14.326-32-32-32h-144v-80h-58.666c-1.786 0-3.565-0.042-5.334-0.118v80.118h-288v-288h168.79c-0.522-5.264-0.79-10.602-0.79-16v-48h-168v-144z","M760 96c-57.437 0-104 46.562-104 104v56h-24c-17.674 0-32 14.327-32 32v192c0 17.674 14.326 32 32 32h256c17.674 0 32-14.326 32-32v-192c0-17.673-14.326-32-32-32h-24v-56c0-57.438-46.563-104-104-104zM800 255.238h-80v-55.238c0-22.092 17.907-40 40-40s40 17.908 40 40v55.238z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["channel-private"],"defaultCode":59695,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":198,"name":"channel-private","prevSize":32,"id":72,"code":59699},"setIdx":0,"setId":3,"iconIdx":73},{"icon":{"paths":["M336 128c17.674 0 32 14.327 32 32v144h288v-144c0-17.673 14.326-32 32-32s32 14.327 32 32v144h144c17.674 0 32 14.327 32 32s-14.326 32-32 32h-144v288h144c17.674 0 32 14.326 32 32s-14.326 32-32 32h-144v144c0 17.674-14.326 32-32 32s-32-14.326-32-32v-144h-288v144c0 17.674-14.326 32-32 32s-32-14.326-32-32v-144h-144c-17.673 0-32-14.326-32-32s14.327-32 32-32h144v-288h-144c-17.673 0-32-14.326-32-32s14.327-32 32-32h144v-144c0-17.673 14.327-32 32-32zM368 368v288h288v-288h-288z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["channel-public"],"defaultCode":59696,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":199,"name":"channel-public","prevSize":32,"id":73,"code":59700},"setIdx":0,"setId":3,"iconIdx":74},{"icon":{"paths":["M886.627 105.372c12.496 12.497 12.496 32.758 0 45.255l-89.373 89.372 89.373 89.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-89.373-89.372-89.373 89.372c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l89.373-89.373-89.373-89.372c-12.496-12.497-12.496-32.758 0-45.255s32.758-12.497 45.254 0l89.373 89.373 89.373-89.373c12.496-12.497 32.758-12.497 45.254 0zM226.501 304.042c-49.642 68.947-66.502 152.646-66.502 207.968v1.453l-0.132 1.446c-9.701 106.717 28.59 181.93 90.135 234.006 62.938 53.254 152.151 83.731 244.196 93.958 91.968 10.218 193.27 1.446 273.309-15.482 40.019-8.461 73.613-18.733 97.44-29.075 9.245-4.013 16.438-7.786 21.738-11.126-2.467-1.565-5.446-3.306-9.005-5.2-9.222-4.909-19.776-9.574-30.733-14.365l-1.917-0.838c-9.667-4.221-20.47-8.938-28.653-13.517-14.835-8.294-29.389-17.731-40.003-27.773-5.226-4.941-11.168-11.571-15.146-19.827-4.211-8.742-7.226-21.792-1.309-35.6 42.086-98.205 54.957-137.722 59.219-163.318 2.906-17.434 19.392-29.21 36.822-26.307 17.434 2.906 29.213 19.389 26.307 36.822-5.453 32.749-20.333 76.41-58.006 165.088 5.261 4.166 13.069 9.306 23.357 15.059 5.315 2.973 13.485 6.554 24.963 11.571 10.656 4.656 23.437 10.266 35.174 16.515 11.261 5.994 24.419 14.029 34.202 24.538 10.234 10.992 20.973 29.846 13.299 52.864-5.053 15.168-16.794 25.939-26.576 33.094-10.627 7.776-23.814 14.762-38.253 21.027-29.005 12.592-67.027 23.965-109.68 32.986-85.312 18.038-193.584 27.587-293.616 16.47-99.955-11.104-202.742-44.63-278.471-108.707-76.833-65.014-123.811-159.997-112.66-287.222 0.286-65.549 19.841-162.349 78.561-243.904 60.333-83.796 160.605-149.302 316.103-149.302 17.674 0 32 14.327 32 32s-14.326 32-32 32c-134.637 0-215.697 55.382-264.164 122.698z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chat-close"],"defaultCode":59697,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":200,"name":"chat-close","prevSize":32,"id":74,"code":59701},"setIdx":0,"setId":3,"iconIdx":75},{"icon":{"paths":["M778 93.833c-11.795-13.162-32.026-14.271-45.187-2.477s-14.272 32.025-2.477 45.187l81.222 90.645h-216.358c-17.674 0-32 14.327-32 32s14.326 32 32 32h216.358l-81.222 90.646c-11.795 13.162-10.685 33.392 2.477 45.187 13.162 11.792 33.392 10.685 45.187-2.477l129.030-144.001c10.893-12.154 10.893-30.556 0-42.71l-129.030-144zM159.999 512.010c0-55.322 16.86-139.021 66.502-207.968 48.467-67.316 129.527-122.698 264.164-122.698 17.674 0 32-14.327 32-32s-14.326-32-32-32c-155.498 0-255.77 65.507-316.102 149.302-58.72 81.555-78.275 178.355-78.561 243.904-11.151 127.229 35.827 222.211 112.66 287.222 75.729 64.077 178.516 97.603 278.471 108.707 100.032 11.117 208.304 1.568 293.616-16.47 42.653-9.021 80.675-20.394 109.68-32.982 14.438-6.269 27.626-13.254 38.253-21.030 9.782-7.155 21.523-17.926 26.579-33.094 7.67-23.018-3.069-41.872-13.302-52.864-9.782-10.509-22.941-18.544-34.202-24.538-11.738-6.25-24.518-11.859-35.171-16.515-11.482-5.018-19.651-8.598-24.966-11.571-10.288-5.754-18.096-10.89-23.357-15.059 37.674-88.678 52.554-132.339 58.010-165.088 2.902-17.43-8.877-33.917-26.31-36.822-17.43-2.902-33.917 8.877-36.822 26.307-4.262 25.597-17.133 65.114-59.219 163.318-5.917 13.808-2.902 26.858 1.309 35.6 3.978 8.256 9.92 14.886 15.146 19.827 10.614 10.042 25.171 19.478 40.003 27.776 8.186 4.576 18.989 9.296 28.656 13.517v0l1.914 0.835c10.957 4.79 21.51 9.456 30.733 14.368 3.558 1.891 6.541 3.632 9.005 5.197-5.299 3.341-12.493 7.114-21.738 11.126-23.827 10.342-57.421 20.614-97.44 29.075-80.038 16.928-181.341 25.699-273.309 15.482-92.045-10.227-181.258-40.704-244.196-93.958-61.545-52.077-99.836-127.29-90.135-234.006l0.132-1.446v-1.453z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chat-forward"],"defaultCode":59698,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":201,"name":"chat-forward","prevSize":32,"id":75,"code":59702},"setIdx":0,"setId":3,"iconIdx":76},{"icon":{"paths":["M854.506 233.252c12.563 12.429 12.672 32.691 0.243 45.254l-474.877 480c-6.013 6.077-14.208 9.498-22.755 9.494-8.55-0.003-16.742-3.427-22.752-9.507l-165.126-167.088c-12.423-12.57-12.303-32.832 0.268-45.254s32.831-12.304 45.254 0.269l142.375 144.067 452.115-456.992c12.429-12.564 32.691-12.672 45.254-0.243z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["check"],"defaultCode":59699,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":202,"name":"check","prevSize":32,"id":76,"code":59703},"setIdx":0,"setId":3,"iconIdx":77},{"icon":{"paths":["M281.372 436.042c12.497-12.499 32.758-12.499 45.255 0l185.373 185.373 185.373-185.373c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-208 208c-12.496 12.496-32.758 12.496-45.254 0l-208-208c-12.497-12.496-12.497-32.758 0-45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-down"],"defaultCode":59700,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":203,"name":"chevron-down","prevSize":32,"id":77,"code":59704},"setIdx":0,"setId":3,"iconIdx":78},{"icon":{"paths":["M670.17 183.165c16.662 16.662 16.662 43.677 0 60.34l-268.496 268.495 268.496 268.499c16.662 16.662 16.662 43.677 0 60.339s-43.677 16.662-60.339 0l-298.668-298.669c-8.002-8-12.497-18.851-12.497-30.17 0-11.315 4.495-22.166 12.497-30.17l298.668-298.666c16.662-16.662 43.677-16.662 60.339 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-left-big"],"defaultCode":59701,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":204,"name":"chevron-left-big","prevSize":32,"id":78,"code":59705},"setIdx":0,"setId":3,"iconIdx":79},{"icon":{"paths":["M587.962 281.372c12.496 12.497 12.496 32.758 0 45.255l-185.373 185.373 185.373 185.373c12.496 12.496 12.496 32.758 0 45.254-12.499 12.496-32.758 12.496-45.258 0l-208-208c-12.496-12.496-12.496-32.758 0-45.254l208-208c12.499-12.497 32.758-12.497 45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-left"],"defaultCode":59702,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":205,"name":"chevron-left","prevSize":32,"id":79,"code":59706},"setIdx":0,"setId":3,"iconIdx":80},{"icon":{"paths":["M436.038 742.627c-12.496-12.496-12.496-32.758 0-45.254l185.373-185.373-185.373-185.373c-12.496-12.497-12.496-32.758 0-45.254 12.499-12.497 32.758-12.497 45.254 0l208 208c12.499 12.496 12.499 32.758 0 45.254l-207.997 208c-12.499 12.496-32.758 12.496-45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-right"],"defaultCode":59703,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":206,"name":"chevron-right","prevSize":32,"id":80,"code":59707},"setIdx":0,"setId":3,"iconIdx":81},{"icon":{"paths":["M742.627 587.958c-12.496 12.499-32.758 12.499-45.254 0l-185.373-185.373-185.373 185.373c-12.496 12.499-32.758 12.499-45.254 0-12.497-12.496-12.497-32.758 0-45.254l208-208c12.496-12.496 32.758-12.496 45.254 0l208 208c12.496 12.496 12.496 32.758 0 45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-up"],"defaultCode":59704,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":207,"name":"chevron-up","prevSize":32,"id":81,"code":59708},"setIdx":0,"setId":3,"iconIdx":82},{"icon":{"paths":["M512 864c194.403 0 352-157.597 352-352 0-46.522-9.024-90.931-25.418-131.581l48.518-48.518c26.211 54.496 40.899 115.581 40.899 180.099 0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416 95.376 0 183.254 32.096 253.424 86.076l-45.712 45.712c-58.221-42.623-130.029-67.788-207.712-67.788-194.404 0-352 157.596-352 352s157.596 352 352 352zM902.63 230.623c12.496-12.499 12.493-32.76-0.006-45.255s-32.762-12.491-45.254 0.008l-345.386 345.503-105.341-105.491c-12.486-12.506-32.749-12.522-45.254-0.032-12.506 12.486-12.522 32.749-0.032 45.254l127.971 128.157c6 6.006 14.144 9.386 22.634 9.389 8.493 0 16.637-3.373 22.64-9.376l368.029-368.157z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["circle-check"],"defaultCode":59705,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":208,"name":"circle-check","prevSize":32,"id":82,"code":59709},"setIdx":0,"setId":3,"iconIdx":83},{"icon":{"paths":["M608 192c0-53.019-42.979-96-96-96s-96 42.981-96 96h-192c-17.673 0-32 14.327-32 32v672c0 17.674 14.327 32 32 32h576c17.674 0 32-14.326 32-32v-672c0-17.673-14.326-32-32-32h-192zM256 864v-608h96v64c0 17.674 14.326 32 32 32h256c17.674 0 32-14.326 32-32v-64h96v608h-512zM512 224c17.674 0 32-14.327 32-32s-14.326-32-32-32c-17.674 0-32 14.327-32 32s14.326 32 32 32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["clipboard"],"defaultCode":59706,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":209,"name":"clipboard","prevSize":32,"id":83,"code":59710},"setIdx":0,"setId":3,"iconIdx":84},{"icon":{"paths":["M864 512c0 194.403-157.597 352-352 352s-352-157.597-352-352c0-194.404 157.596-352 352-352s352 157.596 352 352zM928 512c0-229.75-186.25-416-416-416s-416 186.25-416 416c0 229.75 186.25 416 416 416s416-186.25 416-416zM544 288c0-17.673-14.326-32-32-32s-32 14.327-32 32v224c0 8.486 3.373 16.627 9.373 22.627l96 96c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-86.627-86.627v-210.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["clock"],"defaultCode":59707,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":210,"name":"clock","prevSize":32,"id":84,"code":59711},"setIdx":0,"setId":3,"iconIdx":85},{"icon":{"paths":["M806.627 262.628c12.496-12.497 12.496-32.758 0-45.255s-32.758-12.497-45.254 0l-249.373 249.373-249.372-249.373c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.758 0 45.255l249.373 249.372-249.373 249.373c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l249.372-249.373 249.373 249.373c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-249.373-249.373 249.373-249.372z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["close"],"defaultCode":59708,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":211,"name":"close","prevSize":32,"id":85,"code":59712},"setIdx":0,"setId":3,"iconIdx":86},{"icon":{"paths":["M273.129 356.678c6.747-28.298 25.696-52.004 51.21-67.152 25.6-15.2 56.323-20.858 84.698-14.53 27.642 6.163 55.117 24.12 74.874 60.339l22.541 41.325 30.134-36.16c27.238-32.689 85.126-39.713 134.714-14.064 23.562 12.186 42.208 30.618 52.064 53.488 9.654 22.406 12.112 51.898-1.434 89.149l-15.616 42.938h45.686c53.606 0 82.419 15.882 97.642 33.75 15.651 18.374 21.898 44.646 18.557 74.714-3.344 30.083-16.054 60.518-33.456 82.89-17.939 23.066-36.646 32.646-50.742 32.646h-543.998c-18.791 0-37.068-10.362-52.195-31.578-15.217-21.344-24.978-51.050-25.818-81.312-0.84-30.227 7.237-57.914 23.733-77.491 15.796-18.746 42.268-33.619 86.279-33.619h59.791l-33.165-49.75c-27.882-41.824-32.118-77.814-25.498-105.581zM518.218 272.084c-26.339-32.073-59.667-51.619-95.251-59.554-45.626-10.174-92.902-0.833-131.301 21.965-38.487 22.85-69.538 60.142-80.791 107.342-8.278 34.72-5.369 72.758 10.731 111.77-35.67 8.464-64.099 26.186-84.825 50.784-29.004 34.422-39.927 78.733-38.766 120.506 1.159 41.738 14.399 84.032 37.682 116.688 23.373 32.784 59.097 58.426 104.306 58.426h543.999c41.907 0 77.2-26.419 101.261-57.354 24.598-31.629 41.888-73.197 46.544-115.114 4.659-41.933-3.094-87.658-33.443-123.283-24.106-28.301-59.504-46.774-105.616-53.456 5.83-35.194 1.686-67.674-10.605-96.205-16.646-38.628-46.998-67.197-81.437-85.010-54.902-28.397-128.733-32.652-182.486 2.495zM512 437.331c17.674 0 32 14.33 32 32v53.328h53.334c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-53.334v53.341c0 17.674-14.326 32-32 32s-32-14.326-32-32v-53.341h-53.331c-17.674 0-32-14.326-32-32 0-17.67 14.326-32 32-32h53.331v-53.328c0-17.67 14.326-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["cloud-connectivity"],"defaultCode":59709,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":212,"name":"cloud-connectivity","prevSize":32,"id":86,"code":59713},"setIdx":0,"setId":3,"iconIdx":87},{"icon":{"paths":["M630.154 204.798c16.496 6.344 24.723 24.859 18.381 41.355l-213.334 554.667c-6.342 16.496-24.858 24.723-41.354 18.381-16.496-6.346-24.723-24.861-18.381-41.357l213.334-554.666c6.346-16.495 24.858-24.724 41.354-18.38zM321.293 361.37c12.499 12.499 12.499 32.758 0 45.258l-105.371 105.37 105.371 105.373c12.499 12.499 12.499 32.758 0 45.258-12.495 12.496-32.756 12.496-45.253 0l-128-128c-12.497-12.499-12.497-32.758 0-45.258l128-128c12.497-12.496 32.758-12.496 45.253 0zM702.707 361.37c12.496-12.496 32.758-12.496 45.254 0l128 128c12.496 12.499 12.496 32.758 0 45.258l-128 128c-12.496 12.496-32.758 12.496-45.254 0-12.499-12.499-12.499-32.758 0-45.258l105.373-105.373-105.373-105.37c-12.499-12.499-12.499-32.758 0-45.258z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["code"],"defaultCode":59710,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":213,"name":"code","prevSize":32,"id":87,"code":59714},"setIdx":0,"setId":3,"iconIdx":88},{"icon":{"paths":["M770.704 224c17.674 0 32 14.327 32 32v544c0 17.674-14.326 32-32 32h-543.999c-17.673 0-32-14.326-32-32v-128c17.673 0 32-14.326 32-32s-14.327-32-32-32v-192c17.673 0 32-14.326 32-32s-14.327-32-32-32v-96c0-17.673 14.327-32 32-32h543.999zM130.705 608c-17.673 0-32 14.326-32 32s14.327 32 32 32v128c0 53.021 42.981 96 96 96h543.999c53.021 0 96-42.979 96-96v-544c0-53.019-42.979-96-96-96h-543.999c-53.019 0-96 42.981-96 96v96c-17.673 0-32 14.326-32 32s14.327 32 32 32v192zM427.91 514.266c13.315-3.568 27.309-3.789 40.73-0.643l31.52 7.389c8.73 2.045 17.83 1.904 26.49-0.416l22.186-5.942c14.285-3.827 29.328-4.042 43.683-0.675 40.429 9.475 69.325 45.584 69.325 87.277v24.336c0 31.811-25.789 57.6-57.6 57.6h-180.739c-31.811 0-57.6-25.789-57.6-57.6v-30.525c0-37.862 25.434-71.005 62.006-80.8zM456.957 563.472c-5.206-1.219-10.634-1.133-15.798 0.25-14.189 3.798-24.054 16.656-24.054 31.344v30.525c0 3.536 2.867 6.4 6.4 6.4h180.739c3.533 0 6.4-2.864 6.4-6.4v-24.336c0-17.75-12.365-33.341-29.808-37.427-6.186-1.45-12.662-1.35-18.752 0.282l-22.186 5.942c-16.813 4.502-34.474 4.781-51.421 0.81l-31.52-7.389zM539.155 420.48c0-13.962-11.318-25.28-25.28-25.28s-25.283 11.318-25.283 25.28c0 13.962 11.322 25.28 25.283 25.28s25.28-11.318 25.28-25.28zM590.355 420.48c0 42.24-34.243 76.48-76.48 76.48-42.24 0-76.483-34.24-76.483-76.48s34.243-76.48 76.483-76.48c42.237 0 76.48 34.24 76.48 76.48z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["contacts"],"defaultCode":59711,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":214,"name":"contacts","prevSize":32,"id":88,"code":59715},"setIdx":0,"setId":3,"iconIdx":89},{"icon":{"paths":["M464 272c-35.347 0-64 28.654-64 64v480c0 35.347 28.653 64 64 64h352c35.347 0 64-28.653 64-64v-304c0-6.509-1.984-12.864-5.69-18.214l-134.458-194.215c-11.952-17.267-31.619-27.571-52.621-27.571h-223.232zM464 336h144v144c0 35.347 28.653 64 64 64h144v272h-352v-480zM672 480v-144h15.232l99.693 144h-114.925zM144 208c0-35.346 28.654-64 64-64h241.844c18.032 0 35.229 7.607 47.357 20.949l39.136 43.051h-328.336v480h128v64h-128c-35.346 0-64-28.653-64-64v-480z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["copy"],"defaultCode":59712,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":215,"name":"copy","prevSize":32,"id":89,"code":59716},"setIdx":0,"setId":3,"iconIdx":90},{"icon":{"paths":["M824.682 183.521c-37.19-37.986-98.202-38.583-136.131-1.333l-348.48 342.237c-12.739 12.512-21.733 28.32-25.976 45.654l-23.681 96.749c-6.94 28.355 16.754 54.845 45.747 51.142l90.691-11.578c20.224-2.582 39.104-11.52 53.907-25.52l360.486-340.922c38.986-36.868 40.173-98.482 2.637-136.82l-19.2-19.61zM733.485 227.821c12.643-12.417 32.979-12.218 45.376 0.444l19.2 19.61c12.512 12.78 12.115 33.317-0.88 45.607l-69.965 66.169-63.446-63.364 69.715-68.466zM618.074 341.162l62.592 62.512-243.971 230.73c-4.934 4.666-11.229 7.645-17.968 8.506l-58.307 7.443 15.926-65.075c1.414-5.779 4.413-11.046 8.659-15.219l233.069-228.896zM193.608 265.602c0-17.673 14.346-32 32.042-32h281.332c17.696 0 32.042-14.327 32.042-32s-14.346-32-32.042-32h-281.332c-53.089 0-96.127 42.981-96.127 96v534.402c0 53.018 43.037 95.997 96.127 95.997h529.764c53.091 0 96.128-42.979 96.128-96v-279.414c0-17.67-14.346-32-32.042-32s-32.042 14.33-32.042 32v279.414c0 17.674-14.346 32-32.045 32h-529.764c-17.696 0-32.042-14.326-32.042-31.997v-534.402z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["create"],"defaultCode":59713,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":216,"name":"create","prevSize":32,"id":90,"code":59717},"setIdx":0,"setId":3,"iconIdx":91},{"icon":{"paths":["M717.373 298.663c0-17.673-14.326-32-32-32s-32 14.327-32 32v426.665c0 17.674 14.326 32 32 32s32-14.326 32-32v-426.665z","M514.704 394.672c17.674 0 32 14.326 32 32v298.666c0 17.674-14.326 32-32 32s-32-14.326-32-32v-298.666c0-17.674 14.326-32 32-32z","M376.038 554.672c0-17.674-14.326-32-32-32s-32 14.326-32 32v170.669c0 17.67 14.327 32 32 32s32-14.33 32-32v-170.669z","M130.705 199.556v624.889c0 39.52 32.036 71.555 71.556 71.555h624.888c39.52 0 71.555-32.035 71.555-71.555v-624.889c0-39.519-32.035-71.556-71.555-71.556h-624.888c-39.519 0-71.556 32.036-71.556 71.556zM202.26 192h624.888c4.173 0 7.555 3.383 7.555 7.556v624.889c0 4.173-3.382 7.555-7.555 7.555h-624.888c-4.173 0-7.556-3.382-7.556-7.555v-624.889c0-4.173 3.383-7.556 7.556-7.556z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["dashboard"],"defaultCode":59714,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":217,"name":"dashboard","prevSize":32,"id":91,"code":59718},"setIdx":0,"setId":3,"iconIdx":92},{"icon":{"paths":["M739.68 864v-448h-448.593v448h448.593zM227.003 864v-448c-35.393 0-64.084-28.653-64.084-64v-128c0-35.346 28.692-64 64.084-64h224.297c0-35.346 28.691-64 64.083-64 35.395 0 64.086 28.654 64.086 64h224.294c35.395 0 64.086 28.654 64.086 64v128c0 35.347-28.691 64-64.086 64v448c0 35.347-28.691 64-64.083 64h-448.593c-35.393 0-64.085-28.653-64.085-64zM803.763 224h-576.761v128h576.761v-128zM419.258 544v192c0 17.674 14.346 32 32.042 32s32.042-14.326 32.042-32v-192c0-17.674-14.346-32-32.042-32s-32.042 14.326-32.042 32zM579.469 512c17.696 0 32.042 14.326 32.042 32v192c0 17.674-14.346 32-32.042 32s-32.042-14.326-32.042-32v-192c0-17.674 14.346-32 32.042-32z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["delete"],"defaultCode":59715,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":218,"name":"delete","prevSize":32,"id":92,"code":59719},"setIdx":0,"setId":3,"iconIdx":93},{"icon":{"paths":["M341.334 778.672c-17.674 0-32 14.326-32 32s14.327 32 32 32h341.334c17.67 0 32-14.326 32-32s-14.33-32-32-32h-341.334z","M85.334 298.672c0-70.692 57.308-128 128-128h597.335c70.691 0 128 57.308 128 128v298.666c0 70.694-57.309 128-128 128h-597.335c-70.692 0-128-57.306-128-128v-298.666zM213.334 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.347 28.654 64 64 64h597.335c35.344 0 64-28.653 64-64v-298.666c0-35.347-28.656-64-64-64h-597.335z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["desktop"],"defaultCode":59716,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":9,"name":"desktop","prevSize":32,"id":93,"code":59720},"setIdx":0,"setId":3,"iconIdx":94},{"icon":{"paths":["M325.837 160c0-17.673-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.327-32.042 32v64c0 17.673 14.346 32 32.042 32h64.085c17.696 0 32.043-14.327 32.043-32v-64zM325.837 586.666c0-17.674-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.085c17.696 0 32.043-14.326 32.043-32v-64zM454.006 160c0-17.673 14.346-32 32.042-32h64.083c17.696 0 32.042 14.327 32.042 32v64c0 17.673-14.346 32-32.042 32h-64.083c-17.696 0-32.042-14.327-32.042-32v-64zM582.173 373.334c0-17.674-14.346-32-32.042-32h-64.083c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM454.006 586.666c0-17.674 14.346-32 32.042-32h64.083c17.696 0 32.042 14.326 32.042 32v64c0 17.674-14.346 32-32.042 32h-64.083c-17.696 0-32.042-14.326-32.042-32v-64zM582.173 800c0-17.674-14.346-32-32.042-32h-64.083c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM710.342 160c0-17.673 14.346-32 32.045-32h64.083c17.696 0 32.042 14.327 32.042 32v64c0 17.673-14.346 32-32.042 32h-64.083c-17.699 0-32.045-14.327-32.045-32v-64zM838.512 373.334c0-17.674-14.346-32-32.042-32h-64.083c-17.699 0-32.045 14.326-32.045 32v64c0 17.674 14.346 32 32.045 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM710.342 586.666c0-17.674 14.346-32 32.045-32h64.083c17.696 0 32.042 14.326 32.042 32v64c0 17.674-14.346 32-32.042 32h-64.083c-17.699 0-32.045-14.326-32.045-32v-64zM325.837 373.334c0-17.674-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.085c17.696 0 32.043-14.326 32.043-32v-64z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["dialpad"],"defaultCode":59717,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":220,"name":"dialpad","prevSize":32,"id":94,"code":59721},"setIdx":0,"setId":3,"iconIdx":95},{"icon":{"paths":["M561.667 127.992c-121.696 0-200.973 50.509-248.813 115.801-46.216 63.073-61.638 137.752-61.933 188.616-8.705 98.746 28.601 172.896 89.422 223.469 59.686 49.626 140.202 75.258 217.85 83.738 77.75 8.486 161.715 1.197 227.856-12.547 33.066-6.87 62.774-15.581 85.642-25.331 11.366-4.848 22.029-10.368 30.797-16.669 7.875-5.661 18.541-14.976 23.242-28.835 7.286-21.475-3.133-38.784-11.965-48.102-8.41-8.877-19.427-15.405-28.24-20.016-9.306-4.867-19.379-9.206-27.533-12.707-8.973-3.856-14.858-6.4-18.56-8.432-4.845-2.662-8.842-5.088-12.026-7.203 20.256-47.142 31.549-77.043 37.696-99.19 7.293-26.272 7.315-41.725 7.315-58.909 0-21.523-9.603-88.542-52.81-151.108-44.701-64.73-124.074-122.573-257.939-122.573zM314.916 433.898c0-40.416 12.607-101.84 49.564-152.277 35.782-48.836 95.882-89.628 197.187-89.628 112.086 0 172.090 46.886 205.277 94.94 34.678 50.219 41.472 104.040 41.472 114.741v0.198c0 14.918 0 23.638-4.982 41.594-5.491 19.779-16.963 50.189-41.539 106.538-5.802 13.296-2.762 25.77 1.155 33.754 3.664 7.478 9.005 13.242 13.331 17.261 8.835 8.211 20.653 15.686 32.224 22.045 6.618 3.638 15.238 7.334 22.563 10.477l1.562 0.672c5.904 2.534 11.52 4.97 16.688 7.418-0.909 0.406-1.856 0.819-2.835 1.238-17.741 7.568-43.078 15.206-73.555 21.539-60.947 12.666-138.064 19.21-207.888 11.587-69.926-7.635-136.982-30.336-183.878-69.328-45.459-37.798-73.674-92.064-66.481-169.821l0.136-1.469v-1.478zM819.162 553.354l-0.074-0.086c0 0.003 0.010 0.013 0.029 0.035 0.010 0.013 0.026 0.029 0.045 0.051z","M178.552 502.474c7.496-11.258 16.26-22.259 26.436-32.592 0.876 31.747 6.169 61.226 15.216 88.358-15.094 30.877-18.374 59.315-18.374 65.357v0.186c0 11.382 0 17.536 3.524 30.701 3.993 14.918 12.441 38.211 30.867 82.022 5.256 12.496 2.48 24.099-0.985 31.43-3.249 6.874-7.925 12.058-11.512 15.514-7.319 7.053-16.852 13.254-25.75 18.326-5.008 2.854-11.333 5.706-16.546 8.029 11.182 3.939 24.98 7.814 40.802 11.226 44.977 9.693 101.833 14.669 153.062 8.87 51.28-5.808 99.776-23.014 133.35-51.965l0.608-0.528c14.794 2.784 29.53 4.938 44.051 6.525 10.886 1.187 21.862 2.086 32.877 2.72-10.122 14.797-22.163 28.045-35.741 39.754-46.362 39.974-108.547 60.362-167.946 67.088-59.45 6.73-123.405 0.947-173.744-9.901-25.17-5.424-48.056-12.352-65.901-20.243-8.86-3.92-17.458-8.502-24.686-13.891-6.431-4.794-15.831-13.171-20.001-25.92-6.422-19.632 2.792-35.443 10.458-43.834 7.193-7.872 16.405-13.462 23.248-17.174 7.309-3.965 15.158-7.466 21.235-10.173 6.907-3.078 10.854-4.858 13.183-6.186 1.349-0.768 2.591-1.501 3.727-2.195-13.937-33.885-21.976-56.118-26.48-72.947-5.68-21.222-5.7-33.875-5.7-47.434 0-17.712 7.436-71.139 40.721-121.123zM155.337 797.248c-0.012 0 0.084 0.102 0.317 0.301-0.19-0.202-0.306-0.301-0.317-0.301zM179.587 737.085c-0.004 0-0.052 0.051-0.137 0.15l0.112-0.118c0.019-0.022 0.027-0.032 0.025-0.032z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["discussions"],"defaultCode":59720,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":223,"name":"discussions","prevSize":32,"id":95,"code":59722},"setIdx":0,"setId":3,"iconIdx":96},{"icon":{"paths":["M160 256c0-17.673 14.327-32 32-32h640c17.674 0 32 14.327 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.327-32-32zM160 421.162c0-17.674 14.327-32 32-32h640c17.674 0 32 14.326 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.326-32-32zM160 602.838c0-17.674 14.327-32 32-32h640c17.674 0 32 14.326 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.326-32-32zM160 768c0-17.674 14.327-32 32-32h344.614c17.674 0 32 14.326 32 32s-14.326 32-32 32h-344.614c-17.673 0-32-14.326-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["document"],"defaultCode":59721,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":224,"name":"document","prevSize":32,"id":96,"code":59723},"setIdx":0,"setId":3,"iconIdx":97},{"icon":{"paths":["M128.169 352c0-17.674 14.346-32 32.042-32h704.928c17.696 0 32.045 14.326 32.045 32s-14.349 32-32.045 32h-704.928c-17.696 0-32.042-14.326-32.042-32zM213.615 522.669c0-17.674 14.346-32 32.042-32h534.036c17.699 0 32.045 14.326 32.045 32s-14.346 32-32.045 32h-534.036c-17.697 0-32.042-14.326-32.042-32zM331.104 661.331c-17.698 0-32.043 14.326-32.043 32s14.346 32 32.043 32h363.146c17.696 0 32.042-14.326 32.042-32s-14.346-32-32.042-32h-363.146z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["donner"],"defaultCode":59722,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":225,"name":"donner","prevSize":32,"id":97,"code":59724},"setIdx":0,"setId":3,"iconIdx":98},{"icon":{"paths":["M273.128 356.678c-6.62 27.766-2.384 63.757 25.498 105.581l21.374 32.061v17.69h-48c-44.011 0-70.483 14.874-86.278 33.619-16.496 19.578-24.573 47.264-23.734 77.491 0.841 30.262 10.601 59.968 25.818 81.312 15.127 21.216 33.404 31.578 52.195 31.578h79.999v64h-80c-45.209 0-80.932-25.642-104.306-58.426-23.283-32.656-36.522-74.95-37.682-116.688-1.16-41.773 9.763-86.083 38.766-120.506 20.726-24.598 49.155-42.32 84.825-50.784-16.1-39.011-19.009-77.050-10.731-111.77 11.253-47.2 42.304-84.492 80.791-107.342 38.4-22.798 85.677-32.139 131.303-21.965 35.584 7.935 68.909 27.48 95.251 59.554 53.75-35.147 127.584-30.892 182.483-2.495 34.438 17.812 64.794 46.382 81.437 85.010 12.294 28.531 16.438 61.011 10.608 96.205 46.112 6.682 81.507 25.155 105.613 53.456 30.349 35.626 38.106 81.35 33.446 123.283-4.659 41.917-21.946 83.485-46.544 115.114-24.061 30.934-59.354 57.354-101.261 57.354h-80v-64h80c14.093 0 32.8-9.581 50.742-32.646 17.398-22.371 30.112-52.806 33.453-82.89 3.341-30.067-2.902-56.339-18.554-74.714-15.222-17.869-44.035-33.75-97.642-33.75h-45.686l15.613-42.938c13.546-37.251 11.091-66.742 1.437-89.149-9.856-22.87-28.502-41.302-52.064-53.488-49.587-25.649-107.475-18.625-134.717 14.064l-30.134 36.16-22.541-41.325c-19.757-36.219-47.232-54.175-74.87-60.339-28.378-6.327-59.098-0.669-84.701 14.53-25.512 15.148-44.461 38.855-51.208 67.152zM630.979 787.222c12.298-12.691 11.981-32.95-0.707-45.251-12.691-12.298-32.95-11.981-45.251 0.707l-41.021 42.326v-273.005c0-17.674-14.326-32-32-32s-32 14.326-32 32v273.005l-41.021-42.326c-12.301-12.688-32.56-13.005-45.251-0.707-12.688 12.301-13.005 32.56-0.707 45.251l96 99.050c6.029 6.218 14.32 9.728 22.979 9.728s16.95-3.51 22.979-9.728l96-99.050z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["download"],"defaultCode":59723,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":226,"name":"download","prevSize":32,"id":98,"code":59725},"setIdx":0,"setId":3,"iconIdx":99},{"icon":{"paths":["M795.648 132.004c-25.027-25.027-65.603-25.027-90.63-0l-530.467 530.469c-9.577 9.574-15.873 21.939-17.985 35.318l-19.611 124.186c-1.386 8.771-0.942 17.299 1.006 25.261 7.597 31.037 38.083 53.44 72.291 48.038l124.184-19.613c13.379-2.112 25.744-8.41 35.322-17.984l530.467-530.47c12.512-12.513 18.768-28.914 18.768-45.316 0-10.379-2.506-20.757-7.517-30.15-2.906-5.451-6.656-10.57-11.251-15.164l-104.576-104.575zM630.675 296.979l119.658-119.658 104.576 104.574-119.658 119.657-104.576-104.573zM200.255 831.974l19.611-124.186 365.494-365.494 104.576 104.573-365.494 365.494-124.187 19.613z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["edit"],"defaultCode":59724,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":227,"name":"edit","prevSize":32,"id":99,"code":59726},"setIdx":0,"setId":3,"iconIdx":100},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM400.166 480c-35.347 0-64-28.653-64-64s28.653-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64zM688.166 416c0-35.347-28.653-64-64-64s-64 28.653-64 64c0 35.347 28.653 64 64 64s64-28.653 64-64zM353.226 720c8.963 0 17.526-3.53 24.272-9.437 21.603-18.918 42.64-31.958 62.701-40.509 36.563-15.59 71.805-17.107 104.794-9.939 37.632 8.176 72.659 27.808 102.109 51.341 6.726 5.376 14.995 8.544 23.606 8.544 30.218 0 45.616-34.256 22.397-53.594-36.912-30.742-82.79-57.59-134.522-68.832-44.794-9.734-93.67-7.632-143.485 13.606-28.79 12.275-57.232 30.653-85.024 55.933-21.572 19.619-6.010 52.886 23.152 52.886z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["emoji-bad-mood"],"defaultCode":59725,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":228,"name":"emoji-bad-mood","prevSize":32,"id":100,"code":59727},"setIdx":0,"setId":3,"iconIdx":101},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM400.166 480c-35.347 0-64-28.653-64-64s28.653-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64zM688.166 416c0-35.347-28.653-64-64-64s-64 28.653-64 64c0 35.347 28.653 64 64 64s64-28.653 64-64zM384 640h256c17.674 0 32 14.326 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32s14.326-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["emoji-neutral-mood"],"defaultCode":59726,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":229,"name":"emoji-neutral-mood","prevSize":32,"id":101,"code":59728},"setIdx":0,"setId":3,"iconIdx":102},{"icon":{"paths":["M330.074 644.886c-21.572-19.619-6.010-52.886 23.152-52.886 8.963 0 17.526 3.53 24.272 9.437 21.603 18.918 42.64 31.958 62.701 40.509 36.563 15.59 71.805 17.107 104.794 9.939 37.632-8.176 72.659-27.808 102.109-51.341 6.726-5.376 14.995-8.544 23.606-8.544 30.218 0 45.616 34.256 22.397 53.594-36.912 30.742-82.79 57.59-134.522 68.832-44.794 9.734-93.67 7.632-143.485-13.606-28.79-12.275-57.232-30.653-85.024-55.933z","M400.17 480c35.344 0 64-28.653 64-64s-28.656-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64z","M624.17 480c35.344 0 64-28.653 64-64s-28.656-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64z","M928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["emoji"],"defaultCode":59727,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":230,"name":"emoji","prevSize":32,"id":102,"code":59729},"setIdx":0,"setId":3,"iconIdx":103},{"icon":{"paths":["M655.744 512c88.365 0 160-71.635 160-160s-71.635-160-160-160c-88.368 0-160 71.635-160 160 0 26.934 6.653 52.314 18.41 74.582l-11.914 11.914 0.128 0.131-299.135 299.136c-3.533 9.926-6.41 20.976-7.738 31.606-1.652 13.219-0.563 22.966 1.874 28.938 1.768 4.333 4.22 7.232 10.772 9.014 8.316 2.262 24.518 2.794 52.822-5.501 8.524-3.808 27.721-16.285 45.132-35.382 18.18-19.939 29.648-41.856 29.648-62.438 0-15.642 11.309-28.992 26.736-31.565l91.75-15.293c3.766-2.656 18.768-15.693 10.134-58.867-2.099-10.49 1.184-21.338 8.749-28.902l88.198-88.195c26.467 19.379 59.114 30.822 94.432 30.822zM439.571 410.915c-5.104-18.771-7.827-38.525-7.827-58.915 0-123.712 100.288-224 224-224 123.709 0 224 100.288 224 224s-100.291 224-224 224c-29.29 0-57.264-5.619-82.906-15.843l-43.008 43.008c7.158 65.494-23.99 104.534-55.968 115.194l-2.384 0.794-74.854 12.477c-7.085 31.405-25.174 58.122-43.235 77.933-23.123 25.357-50.958 44.627-69.762 52.15l-1.324 0.528-1.365 0.41c-34.714 10.416-64.73 13.19-89.594 6.429-26.782-7.286-44.33-24.784-53.228-46.586-8.23-20.163-8.473-42.282-6.126-61.062 2.402-19.216 7.899-37.958 14.042-53.315 1.61-4.022 4.020-7.677 7.084-10.742l286.456-286.458zM623.744 336c0 26.509 21.488 48 48 48 26.509 0 48-21.491 48-48s-21.491-48-48-48c-26.512 0-48 21.49-48 48z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["encrypted"],"defaultCode":59728,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":231,"name":"encrypted","prevSize":32,"id":103,"code":59730},"setIdx":0,"setId":3,"iconIdx":104},{"icon":{"paths":["M536.89 64c233.677 0 423.11 189.433 423.11 423.11h-423.11v-423.11z","M64 536.89c0-233.678 189.433-423.112 423.11-423.112v423.112h423.11c0 233.677-189.43 423.11-423.11 423.11-233.677 0-423.11-189.434-423.11-423.11z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["engagement-dashboard"],"defaultCode":59729,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":232,"name":"engagement-dashboard","prevSize":32,"id":104,"code":59731},"setIdx":0,"setId":3,"iconIdx":105},{"icon":{"paths":["M416 586.445v177.232l75.514-62.928c11.869-9.888 29.104-9.888 40.973 0l75.514 62.928v-177.232c-29.098 13.821-61.645 21.555-96 21.555s-66.902-7.734-96-21.555zM352 540.768v291.232c0 12.416 7.184 23.712 18.426 28.979 11.245 5.267 24.522 3.552 34.061-4.397l107.514-89.594 107.514 89.594c9.539 7.949 22.816 9.664 34.061 4.397 11.242-5.267 18.426-16.563 18.426-28.979v-291.232c39.59-40.403 64-95.734 64-156.768 0-123.712-100.288-224.001-224-224.001s-224 100.288-224 224.001c0 61.034 24.41 116.365 64 156.768zM416 512.013l-0.016-0.013c-38.854-29.19-63.984-75.661-63.984-128 0-88.366 71.635-160.001 160-160.001s160 71.635 160 160.001c0 52.339-25.13 98.81-63.984 128l-0.016 0.013c-26.742 20.083-59.981 31.987-96 31.987s-69.258-11.904-96-31.987z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["enterprise-feature"],"defaultCode":59730,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":233,"name":"enterprise-feature","prevSize":32,"id":105,"code":59732},"setIdx":0,"setId":3,"iconIdx":106},{"icon":{"paths":["M500.64 128c213.35 0 386.336 172.985 386.336 386.336 0 192.87-141.254 352.707-325.974 381.664v-269.958h90.022l17.114-111.706h-107.136v-72.47c0-11.462 2.102-22.822 7.274-32.544 2.474-4.656 5.651-8.934 9.635-12.666 9.866-9.245 24.688-15.152 46.058-15.152h48.733v-95.080c0 0-44.224-7.552-86.493-7.552-84.698 0-141.258 49.313-145.651 138.907-0.182 3.738-0.275 7.546-0.275 11.424v85.133h-98.122v111.706h98.122v269.958c-184.721-29.011-325.978-188.848-325.978-381.664 0-213.351 172.985-386.336 386.336-386.336z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["facebook-monochromatic"],"defaultCode":59731,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":30,"name":"facebook-monochromatic","prevSize":32,"id":106,"code":59733},"setIdx":0,"setId":3,"iconIdx":107},{"icon":{"paths":["M373.334 448c0-17.674 14.326-32 32-32h213.331c17.674 0 32 14.326 32 32s-14.326 32-32 32h-213.331c-17.674 0-32-14.326-32-32z","M405.334 544c-17.674 0-32 14.326-32 32s14.326 32 32 32h213.331c17.674 0 32-14.326 32-32s-14.326-32-32-32h-213.331z","M256 128c-17.673 0-32 14.327-32 32v704c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-501.744c0-6.672-2.083-13.174-5.962-18.602l-144.467-202.254c-6.006-8.409-15.706-13.4-26.038-13.4h-367.533zM736 372.509v459.491h-448v-640h319.066l128.934 180.509z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["file-document"],"defaultCode":59732,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":29,"name":"file-document","prevSize":32,"id":107,"code":59734},"setIdx":0,"setId":3,"iconIdx":108},{"icon":{"paths":["M128 192c-17.673 0-32 14.327-32 32v576.019c0 17.674 14.327 32 32 32h768c17.674 0 32-14.326 32-32v-576.019c0-17.673-14.326-32-32-32h-768zM160 378.301v-122.301h149.333v122.301h-149.333zM160 442.301h149.333v141.722h-149.333v-141.722zM160 648.022h149.333v119.997h-149.333v-119.997zM373.334 768.019v-119.997h490.666v119.997h-490.666zM864 584.022h-490.666v-141.722h490.666v141.722zM864 378.301h-490.666v-122.301h490.666v122.301z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["file-sheet"],"defaultCode":59733,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":28,"name":"file-sheet","prevSize":32,"id":108,"code":59735},"setIdx":0,"setId":3,"iconIdx":109},{"icon":{"paths":["M206.667 293.692c-30.421-42.402-0.116-101.442 52.070-101.442h518.572c51.174 0 81.706 57.026 53.334 99.615l-180.678 271.207v220.762c0 46.352-47.693 77.373-90.067 58.582l-121.424-53.85c-23.168-10.275-38.102-33.238-38.102-58.582v-166.304l-193.704-269.988zM777.309 256.334h-518.572l193.705 269.989c7.811 10.89 12.013 23.955 12.013 37.357v166.304l121.424 53.85v-220.762c0-12.646 3.741-25.008 10.752-35.533l180.678-271.205z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["filter"],"defaultCode":59734,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":27,"name":"filter","prevSize":32,"id":109,"code":59736},"setIdx":0,"setId":3,"iconIdx":110},{"icon":{"paths":["M623.091 896c-2.806 0-5.296-0.624-7.168-0.938-62-16.858-102.816-39.648-145.811-80.858-55.149-54.010-85.37-125.814-85.37-202.301 0-65.875 56.704-119.571 126.496-119.571s126.496 53.696 126.496 119.571c0 34.963 31.469 63.373 69.792 63.373s69.789-28.41 69.789-63.373c0-135.808-119.642-246.637-266.701-246.637-104.998 0-200.338 57.133-243.334 145.795-14.332 29.347-21.498 63.066-21.498 100.842 0 28.72 2.492 73.363 24.925 131.744 2.804 7.181 2.492 14.675-0.623 21.856-3.116 6.867-9.035 11.862-16.201 14.358-2.804 1.251-6.231 1.562-9.659 1.562-11.84 0-22.433-7.181-26.484-18.106-19.005-50.266-28.353-99.904-28.353-151.728 0-46.205 9.036-88.352 26.795-125.504 52.343-108.019 167.936-177.638 294.432-177.638 178.528 0 323.718 135.804 323.718 302.828 0 65.875-56.704 119.571-126.806 119.571s-126.81-53.696-126.81-119.571c0-34.963-31.469-63.373-69.792-63.373-38.634 0-69.789 28.41-69.789 63.373 0 61.504 24.301 119.261 68.544 162.342 35.206 34.029 68.858 53.072 120.576 67.123 7.168 1.872 13.398 6.557 17.136 13.11 3.741 6.557 4.675 14.362 2.806 21.229-2.806 11.866-14.022 20.918-27.107 20.918zM426.803 888.195c-7.789 0-15.267-3.123-20.253-8.742-33.338-32.781-51.718-54.010-77.891-100.525-26.795-47.142-41.127-105.21-41.127-167.338 0-116.448 100.948-211.357 224.951-211.357s224.954 94.909 224.954 211.357c0 15.61-12.464 28.096-28.352 28.096-15.891 0-28.666-12.173-28.666-28.096 0-85.542-75.398-155.162-168.246-155.162s-168.246 69.619-168.246 155.162c0 52.448 11.84 100.528 34.272 139.552 23.366 41.52 38.947 59.005 68.858 88.662 10.902 11.238 10.902 28.723 0 39.648-5.92 5.933-13.088 8.742-20.253 8.742zM699.738 818.886c-47.36 0-88.797-11.862-123.382-34.963-59.197-39.651-94.717-103.962-94.717-172.333 0-15.61 12.464-28.099 28.352-28.099 15.891 0 28.355 12.49 28.355 28.099 0 49.638 26.17 96.781 69.789 125.501 25.238 16.861 55.149 24.976 91.603 24.976 7.789 0 22.432-0.934 38.010-3.744 1.558-0.314 3.427-0.314 4.986-0.314 13.709 0 25.238 9.99 27.728 23.414 1.248 7.181-0.31 14.672-4.362 20.605-4.362 6.243-10.902 10.614-18.694 11.862-23.366 4.685-43.93 4.995-47.667 4.995zM188.765 435.824c-5.608 0-11.217-1.562-16.202-4.995-6.543-4.058-10.593-10.614-12.151-18.106-1.246-7.494 0.311-14.986 4.985-21.232 38.635-53.696 87.862-95.843 146.125-125.501 60.132-30.595 129.613-46.829 200.961-46.829 71.037 0 140.205 15.922 200.029 46.205 58.573 29.659 107.802 71.492 146.125 124.567 4.362 5.93 6.23 13.424 4.986 20.915-1.248 7.494-5.61 14.048-11.84 18.419-4.986 3.437-10.595 4.995-16.515 4.995-9.034 0-17.757-4.371-23.056-11.862-33.338-45.891-75.709-82.109-125.562-107.083-52.342-26.224-112.787-40.273-174.477-40.273-62.314 0-122.758 14.049-175.101 40.585-49.852 25.913-92.537 62.128-126.186 108.643-3.739 6.87-12.463 11.552-22.121 11.552zM733.696 239.141c-4.672 0-9.347-1.249-13.395-3.434-71.35-35.902-133.354-51.512-207.504-51.512-74.467 0-144.256 17.483-207.817 51.824-4.050 2.185-8.724 3.122-13.397 3.122-10.282 0-19.629-5.62-24.925-14.361-3.739-6.556-4.673-14.361-2.492-21.541s7.166-13.424 13.709-16.859c72.594-38.712 151.733-58.38 234.924-58.38 82.563 0 154.848 17.795 233.987 58.068 6.854 3.434 11.84 9.366 14.33 16.859 2.182 7.18 1.248 14.673-2.179 21.229-4.986 9.054-14.643 14.985-25.238 14.985z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["fingerprint"],"defaultCode":59735,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":26,"name":"fingerprint","prevSize":32,"id":110,"code":59737},"setIdx":0,"setId":3,"iconIdx":111},{"icon":{"paths":["M266.667 170.664c0-17.673 14.327-32 32-32h500.623c12.122 0 23.2 6.848 28.621 17.689s4.253 23.814-3.021 33.511l-122.134 162.843 122.134 162.845c7.274 9.696 8.442 22.672 3.021 33.51-5.421 10.842-16.499 17.69-28.621 17.69h-468.624v286.579c0 17.674-14.325 32-31.999 32s-32-14.326-32-32v-682.667zM330.666 502.752h404.624l-98.134-130.845c-8.531-11.376-8.531-27.021 0-38.4l98.134-130.843h-404.624v300.088z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["flag"],"defaultCode":59736,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":25,"name":"flag","prevSize":32,"id":111,"code":59738},"setIdx":0,"setId":3,"iconIdx":112},{"icon":{"paths":["M140.020 213.336c0-17.673 14.327-32 32-32h234.057c7.181 0 14.157 2.416 19.798 6.86l88.813 69.94h339.997c17.674 0 32 14.327 32 32v520.533c0 17.674-14.326 32-32 32h-682.665c-17.673 0-32-14.326-32-32v-597.333zM204.020 245.336v533.333h618.665v-456.534h-319.085c-7.181 0-14.154-2.415-19.798-6.858l-88.813-69.94h-190.969z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["folder"],"defaultCode":59737,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":24,"name":"folder","prevSize":32,"id":112,"code":59739},"setIdx":0,"setId":3,"iconIdx":113},{"icon":{"paths":["M370.704 544c0-17.674-14.326-32-32-32s-31.999 14.326-31.999 32v32h-32c-17.673 0-32 14.326-32 32s14.327 32 32 32h32v32c0 17.674 14.325 32 31.999 32s32-14.326 32-32v-32h32c17.674 0 32-14.326 32-32s-14.326-32-32-32h-32v-32z","M746.704 624c30.928 0 56-25.072 56-56s-25.072-56-56-56c-30.928 0-56 25.072-56 56s25.072 56 56 56z","M674.704 664c0 30.928-25.072 56-56 56s-56-25.072-56-56c0-30.928 25.072-56 56-56s56 25.072 56 56z","M706.704 128c0-17.673-14.326-32-32-32s-32 14.327-32 32v96h-128c-17.674 0-32 14.327-32 32v96h-191.999c-106.038 0-192 85.962-192 192v128c0 106.038 85.961 192 192 192h447.999c106.038 0 192-85.962 192-192v-128c0-106.038-85.962-192-192-192h-192v-64h128c17.674 0 32-14.327 32-32v-128zM866.704 544v128c0 70.691-57.306 128-128 128h-447.999c-70.692 0-128-57.309-128-128v-128c0-70.691 57.308-128 128-128h447.999c70.694 0 128 57.309 128 128z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["game"],"defaultCode":59738,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":23,"name":"game","prevSize":32,"id":113,"code":59753},"setIdx":0,"setId":3,"iconIdx":114},{"icon":{"paths":["M494.31 170.648l23.037 24.005 23.629-24.005 74.669 0.041v75.854h74.669v75.856h74.666v26.518h0.003v504.419h-522.678v-682.689h252.006zM540.976 246.503h-224.004v530.979h373.341v-379.229h-149.338v-151.75z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["giphy-monochromatic"],"defaultCode":59739,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":21,"name":"giphy-monochromatic","prevSize":32,"id":114,"code":59754},"setIdx":0,"setId":3,"iconIdx":115},{"icon":{"paths":["M634.803 170.664h-256.112l-264.387 460.802 124.984 221.866h534.916l124.982-221.866-264.384-460.802zM367.814 631.466l138.931-239.789 138.934 239.789h-277.866z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["google-drive-monochromatic"],"defaultCode":59756,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":19,"name":"google-drive-monochromatic","prevSize":32,"id":115,"code":59756},"setIdx":0,"setId":3,"iconIdx":116},{"icon":{"paths":["M129.354 272c0-17.673 14.327-32 32-32h704c17.674 0 32 14.327 32 32s-14.326 32-32 32h-704c-17.673 0-32-14.327-32-32zM289.354 432c0 17.674-14.327 32-32 32s-32-14.326-32-32c0-17.674 14.327-32 32-32s32 14.326 32 32zM289.354 752c0 17.674-14.327 32-32 32s-32-14.326-32-32c0-17.674 14.327-32 32-32s32 14.326 32 32zM449.354 624c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.674 0-32 14.326-32 32s14.326 32 32 32zM385.354 400c-17.674 0-32 14.326-32 32s14.326 32 32 32h480c17.674 0 32-14.326 32-32s-14.326-32-32-32h-480zM353.354 752c0-17.674 14.326-32 32-32h480c17.674 0 32 14.326 32 32s-14.326 32-32 32h-480c-17.674 0-32-14.326-32-32zM577.354 560c-17.674 0-32 14.326-32 32s14.326 32 32 32h288c17.674 0 32-14.326 32-32s-14.326-32-32-32h-288z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["group-by-type"],"defaultCode":59757,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":150,"name":"group-by-type","prevSize":32,"id":116,"code":59757},"setIdx":0,"setId":3,"iconIdx":117},{"icon":{"paths":["M170.668 245.336c0-17.673 14.327-32 32-32h640.846c17.674 0 32 14.327 32 32s-14.326 32-32 32h-640.846c-17.673 0-32-14.327-32-32zM170.668 501.334c0-17.67 14.327-32 32-32h640.846c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-640.846c-17.673 0-32-14.326-32-32zM170.668 757.334c0-17.67 14.327-32 32-32h640.846c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-640.846c-17.673 0-32-14.326-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["hamburguer"],"defaultCode":59758,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":148,"name":"hamburguer","prevSize":32,"id":117,"code":59758},"setIdx":0,"setId":3,"iconIdx":118},{"icon":{"paths":["M832 512c0 176.73-143.27 320-320 320s-320-143.27-320-320h-64c0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384-123.718 0-233.772 58.508-304 149.364v-101.364c0-17.673-14.327-32-32-32s-32 14.327-32 32v192c0 17.674 14.327 32 32 32h176c17.674 0 32-14.326 32-32s-14.326-32-32-32h-107.295c57.24-86.756 155.583-144 267.295-144 176.73 0 320 143.27 320 320z","M544 320c0-17.673-14.326-32-32-32s-32 14.327-32 32v224c0 8.486 3.373 16.627 9.373 22.627l96 96c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-86.627-86.627v-210.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["history"],"defaultCode":59759,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":145,"name":"history","prevSize":32,"id":118,"code":59759},"setIdx":0,"setId":3,"iconIdx":119},{"icon":{"paths":["M522.042 195.354l224.464 260.044v366.234c0 5.856-4.752 10.605-10.614 10.605h-136.416v-149.821c0-23.424-19.014-42.413-42.47-42.413h-85.955c-23.453 0-42.467 18.989-42.467 42.413v149.821h-136.41c-5.864 0-10.617-4.749-10.617-10.605v-366.307l224.403-259.971c4.237-4.907 11.85-4.907 16.083 0zM560.57 895.856h175.322c41.043 0 74.32-33.232 74.32-74.224v-244.205h56.227c12.454 0 23.766-7.251 28.954-18.557 5.19-11.309 3.302-24.602-4.829-34.022l-320.272-371.033c-29.648-34.347-82.934-34.347-112.582 0l-320.27 371.033c-8.132 9.421-10.020 22.714-4.831 34.022 5.188 11.306 16.501 18.557 28.956 18.557h56.288v244.205c0 40.992 33.274 74.224 74.32 74.224h175.316c1.174 0.096 2.362 0.147 3.562 0.147h85.955c1.2 0 2.39-0.051 3.565-0.147z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["home"],"defaultCode":59760,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":146,"name":"home","prevSize":32,"id":119,"code":59760},"setIdx":0,"setId":3,"iconIdx":120},{"icon":{"paths":["M406.685 405.334c0 47.126-38.205 85.331-85.334 85.331-47.127 0-85.332-38.205-85.332-85.331 0-47.13 38.205-85.334 85.332-85.334 47.13 0 85.334 38.205 85.334 85.334z","M97.352 192c0-17.673 14.327-32 32-32h767.999c17.674 0 32 14.327 32 32v640c0 17.674-14.326 32-32 32h-767.999c-17.673 0-32-14.326-32-32v-640zM161.352 764.163l151.704-176.989c9.271-10.813 24.57-14.202 37.536-8.307l153.123 69.603 160.474-204.24c6.010-7.651 15.174-12.15 24.902-12.23s18.963 4.272 25.098 11.821l151.162 186.048v-405.869h-703.999v540.163zM214.927 800h650.423v-68.64l-175.581-216.099-166.781 212.269-176.989-80.448-131.073 152.918z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["image"],"defaultCode":59761,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":147,"name":"image","prevSize":32,"id":120,"code":59761},"setIdx":0,"setId":3,"iconIdx":121},{"icon":{"paths":["M512 873.027c-199.389 0-361.026-161.635-361.026-361.024s161.636-361.026 361.026-361.026c199.389 0 361.024 161.637 361.024 361.026s-161.635 361.024-361.024 361.024zM512 938.669c235.642 0 426.666-191.024 426.666-426.666s-191.024-426.667-426.666-426.667c-235.642 0-426.667 191.025-426.667 426.667s191.025 426.666 426.667 426.666zM544.819 347.901c0 18.125-14.694 32.819-32.819 32.819-18.128 0-32.822-14.694-32.822-32.819 0-18.128 14.694-32.821 32.822-32.821 18.125 0 32.819 14.693 32.819 32.821zM512 413.542c-18.128 0-32.822 14.694-32.822 32.819v229.744c0 18.125 14.694 32.819 32.822 32.819 18.125 0 32.819-14.694 32.819-32.819v-229.744c0-18.125-14.694-32.819-32.819-32.819z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["info"],"defaultCode":59762,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":144,"name":"info","prevSize":32,"id":121,"code":59762},"setIdx":0,"setId":3,"iconIdx":122},{"icon":{"paths":["M512 864c-194.404 0-352-157.597-352-352s157.596-352 352-352c194.403 0 352 157.596 352 352s-157.597 352-352 352zM512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.75 0-416 186.25-416 416s186.25 416 416 416zM662.627 361.373c12.496 12.496 12.496 32.758 0 45.254l-105.373 105.373 105.373 105.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-105.373-105.373-105.373 105.373c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l105.373-105.373-105.373-105.373c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l105.373 105.373 105.373-105.373c12.496-12.496 32.758-12.496 45.254 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["input-clear"],"defaultCode":59763,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":143,"name":"input-clear","prevSize":32,"id":122,"code":59763},"setIdx":0,"setId":3,"iconIdx":123},{"icon":{"paths":["M384 288c-17.674 0-32 14.327-32 32s14.326 32 32 32h256c17.674 0 32-14.326 32-32s-14.326-32-32-32h-256z","M352 448c0-17.674 14.326-32 32-32h256c17.674 0 32 14.326 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M512 640c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M224 224v576c0 35.347 28.654 64 64 64h448c35.347 0 64-28.653 64-64v-576c0-35.346-28.653-64-64-64h-448c-35.346 0-64 28.654-64 64zM288 800v-576h448v576h-448z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["instance"],"defaultCode":59764,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":18,"name":"instance","prevSize":32,"id":123,"code":59764},"setIdx":0,"setId":3,"iconIdx":124},{"icon":{"paths":["M544 352c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.674 0-32 14.327-32 32s14.326 32 32 32zM559.61 436.995c2.755-17.456-9.162-33.843-26.618-36.598-17.456-2.758-33.843 9.162-36.598 26.618l-48 304c-2.758 17.456 9.158 33.843 26.618 36.598 17.456 2.755 33.84-9.162 36.598-26.618l48-304z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["italic"],"defaultCode":59765,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":17,"name":"italic","prevSize":32,"id":124,"code":59765},"setIdx":0,"setId":3,"iconIdx":125},{"icon":{"paths":["M497.136 169.372c12.499 12.497 12.499 32.758 0 45.255l-35.958 35.96c1.078-0.016 2.163-0.025 3.245-0.025h191.152c115.11 0 208.426 93.316 208.426 208.426 0 115.107-93.315 208.422-208.426 208.422h-15.574v-64h15.574c79.763 0 144.426-64.659 144.426-144.422 0-79.766-64.662-144.426-144.426-144.426h-191.152c-1.030 0-2.058 0.011-3.082 0.032l35.795 35.796c12.499 12.499 12.499 32.758 0 45.258-12.496 12.496-32.758 12.496-45.254 0l-90.509-90.511c-12.496-12.497-12.496-32.758 0-45.255l90.509-90.51c12.496-12.497 32.758-12.497 45.254 0zM201.318 500.746h56.159v325.818h-59.023v-268.387h-1.909l-76.204 48.682v-54.090l80.977-52.022zM570.41 719.494c0 64.749-48.045 111.523-116.931 111.523-63.638 0-110.886-38.979-112.48-93.069h57.274c2.070 26.726 25.773 45.341 55.206 45.341 34.838 0 59.978-25.933 59.818-62.365 0.16-36.909-25.613-63.318-61.411-63.475-19.568-0.16-40.25 7.955-51.226 20.045l-53.296-8.749 17.024-168h188.998v49.318h-140.16l-9.386 86.384h1.91c12.090-14.317 35.475-24.816 61.885-24.816 59.184 0 102.774 45.181 102.774 107.862z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["jump-backward"],"defaultCode":59766,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":16,"name":"jump-backward","prevSize":32,"id":125,"code":59766},"setIdx":0,"setId":3,"iconIdx":126},{"icon":{"paths":["M494.861 169.372c-12.496 12.497-12.496 32.758 0 45.255l35.962 35.96c-1.082-0.016-2.163-0.025-3.248-0.025h-191.149c-115.111 0-208.426 93.316-208.426 208.426 0 115.107 93.315 208.422 208.426 208.422h15.574v-64h-15.574c-79.764 0-144.426-64.659-144.426-144.422 0-79.766 64.661-144.426 144.426-144.426h191.149c1.030 0 2.061 0.011 3.085 0.032l-35.798 35.796c-12.496 12.499-12.496 32.758 0 45.258 12.499 12.496 32.758 12.496 45.258 0l90.509-90.511c12.496-12.497 12.496-32.758 0-45.255l-90.509-90.51c-12.499-12.497-32.758-12.497-45.258 0zM521.318 500.746h56.157v325.818h-59.021v-268.387h-1.91l-76.205 48.682v-54.090l80.979-52.022zM890.41 719.494c0 64.749-48.048 111.523-116.934 111.523-63.635 0-110.886-38.979-112.477-93.069h57.274c2.067 26.726 25.773 45.341 55.203 45.341 34.842 0 59.978-25.933 59.821-62.365 0.157-36.909-25.616-63.318-61.411-63.475-19.568-0.16-40.25 7.955-51.226 20.045l-53.296-8.749 17.021-168h189.002v49.318h-140.16l-9.386 86.384h1.91c12.090-14.317 35.475-24.816 61.885-24.816 59.181 0 102.774 45.181 102.774 107.862z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["jump-forward"],"defaultCode":59767,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":15,"name":"jump-forward","prevSize":32,"id":126,"code":59767},"setIdx":0,"setId":3,"iconIdx":127},{"icon":{"paths":["M769.296 649.373c12.496 12.496 12.496 32.758 0 45.254l-192 192c-12.499 12.496-32.758 12.496-45.258 0l-192-192c-12.496-12.496-12.496-32.758 0-45.254 12.499-12.496 32.758-12.496 45.258 0l137.37 137.373v-578.746h-192v192c0 17.674-14.325 32-31.999 32s-32-14.326-32-32v-224c0-17.673 14.327-32 32-32h255.999c17.674 0 32 14.327 32 32v610.746l137.373-137.373c12.499-12.496 32.758-12.496 45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["jump-to-message"],"defaultCode":59768,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":14,"name":"jump-to-message","prevSize":32,"id":127,"code":59768},"setIdx":0,"setId":3,"iconIdx":128},{"icon":{"paths":["M576 256c0 35.346-28.653 64-64 64s-64-28.654-64-64c0-35.346 28.653-64 64-64s64 28.654 64 64z","M576 512c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64z","M576 768c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["kebab"],"defaultCode":59769,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":13,"name":"kebab","prevSize":32,"id":128,"code":59769},"setIdx":0,"setId":3,"iconIdx":129},{"icon":{"paths":["M160 224c-35.346 0-64 28.654-64 64v448c0 35.347 28.654 64 64 64h704c35.347 0 64-28.653 64-64v-448c0-35.346-28.653-64-64-64h-704zM160 288h704v448h-704v-448zM256 352c-17.673 0-32 14.326-32 32s14.327 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM256 512c0-17.674 14.327-32 32-32h64c17.674 0 32 14.326 32 32s-14.326 32-32 32h-64c-17.673 0-32-14.326-32-32zM480 480c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM640 512c0-17.674 14.326-32 32-32h64c17.674 0 32 14.326 32 32s-14.326 32-32 32h-64c-17.674 0-32-14.326-32-32zM480 352c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM320 640c0-17.674 14.326-32 32-32h320c17.674 0 32 14.326 32 32s-14.326 32-32 32h-320c-17.674 0-32-14.326-32-32zM704 352c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["keyboard"],"defaultCode":59770,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":12,"name":"keyboard","prevSize":32,"id":129,"code":59770},"setIdx":0,"setId":3,"iconIdx":130},{"icon":{"paths":["M681.904 256c0-17.673-14.326-32-32-32s-32 14.327-32 32v56.875l-80.346 13.998c-17.411 3.034-29.069 19.61-26.035 37.021 3.034 17.408 19.61 29.066 37.021 26.032l69.36-12.086v69.373c-30.384 6.851-60.461 20.074-84.154 43.139-27.923 27.184-44.070 65.238-44.070 113.808 0 25.741 6.262 48.262 18.451 66.621 12.186 18.349 29.062 30.682 47.251 38 35.357 14.221 76.72 10.173 108.128-4.579l1.206-0.566c31.126-14.621 62.493-29.354 90.723-57.818 21.325-21.507 39.709-49.539 56.848-88.678 5.654 9.498 9.594 20.966 10.285 34.339 1.632 31.526-14.275 82.813-87.955 153.418-12.758 12.227-13.19 32.483-0.963 45.245 12.227 12.758 32.486 13.19 45.245 0.963 80.192-76.851 110.586-145.034 107.59-202.934-2.986-57.658-38.586-96.022-70.675-113.955-20.774-13.014-50.214-22.826-81.216-28.288-16.624-2.931-34.47-4.749-52.694-4.995v-74.243l101.718-17.722c17.411-3.034 29.066-19.61 26.032-37.019-3.034-17.411-19.606-29.066-37.018-26.032l-90.733 15.809v-45.724zM578.394 536.208c10.163-9.891 23.565-17.475 39.51-22.704v138.653c-13.443 2.547-27.485 1.731-38.634-2.752-7.712-3.104-13.658-7.757-17.824-14.029-4.157-6.262-7.766-15.997-7.766-31.216 0-33.35 10.563-54.176 24.714-67.952zM709.994 600.752c-8.682 8.755-17.782 15.706-28.090 22.074v-117.888c14.125 0.24 28.224 1.661 41.587 4.016 13.587 2.397 25.683 5.622 35.763 9.165-16.88 42.038-33.069 66.304-49.261 82.634zM247.704 565.334h98.386l-49.193-184.883-49.193 184.883zM390.851 733.562l-27.734-104.227h-132.442l-27.732 104.227c-4.544 17.078-22.073 27.242-39.152 22.694-17.079-4.544-27.24-22.070-22.696-39.152l106.323-399.598c13.494-50.714 85.462-50.713 98.956 0l106.323 399.598c4.544 17.082-5.616 34.608-22.694 39.152-17.078 4.547-34.608-5.616-39.152-22.694z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["language"],"defaultCode":59771,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":11,"name":"language","prevSize":32,"id":130,"code":59771},"setIdx":0,"setId":3,"iconIdx":131},{"icon":{"paths":["M439.274 704.374c0-33.645 26.278-47.677 72.726-47.677s72.73 14.032 72.73 47.677c0 32.96-13.19 111.069-23.914 149.76-4.963 17.808-22.080 25.171-48.816 25.171s-43.85-7.363-48.813-25.174c-10.717-38.666-23.914-116.688-23.914-149.757zM616.778 870.374l0.026-0.090c6.176-22.291 12.566-53.869 17.386-83.453 4.688-28.787 8.72-60.707 8.72-82.458 0-35.891-15.811-67.802-46.797-87.114-26.035-16.227-57.152-19.926-84.112-19.926-26.957 0-58.077 3.699-84.112 19.926-30.982 19.312-46.797 51.222-46.797 87.114 0 21.805 4.035 53.728 8.726 82.515 4.819 29.578 11.21 61.123 17.379 83.392l0.026 0.086c7.402 26.557 24.982 45.664 46.87 56.467 19.472 9.61 40.426 11.834 57.907 11.834 17.485 0 38.435-2.224 57.907-11.83 21.888-10.8 39.469-29.907 46.87-56.464zM459.635 460.8c0-28.275 23.446-51.2 52.365-51.2s52.365 22.925 52.365 51.2c0 28.278-23.446 51.2-52.365 51.2s-52.365-22.922-52.365-51.2zM512 341.334c-67.478 0-122.182 53.488-122.182 119.466 0 65.981 54.704 119.469 122.182 119.469s122.182-53.488 122.182-119.469c0-65.978-54.704-119.466-122.182-119.466zM677.802 537.254c-6.662 13.792-3.882 31.11 6.278 42.573 14.086 15.894 39.85 17.939 50.205-0.602 19.642-35.174 30.806-75.526 30.806-118.426 0-136.672-113.315-247.465-253.091-247.465-139.779 0-253.092 110.793-253.092 247.465 0 42.899 11.164 83.251 30.806 118.426 10.354 18.541 36.119 16.496 50.205 0.602 10.16-11.462 12.938-28.781 6.275-42.573-11.203-23.187-17.469-49.104-17.469-76.454 0-98.97 82.054-179.199 183.274-179.199s183.27 80.229 183.27 179.199c0 27.35-6.262 53.267-17.469 76.454zM730.16 699.795c-0.304-10.659 3.542-21.072 10.928-28.762 52.771-54.957 85.094-128.902 85.094-210.234 0-169.661-140.666-307.199-314.182-307.199s-314.182 137.538-314.182 307.199c0 81.331 32.323 155.28 85.093 210.234 7.386 7.69 11.234 18.102 10.928 28.762-0.833 29.018-31.273 47.917-52.121 27.715-70.223-68.042-113.718-162.41-113.718-266.71 0-207.363 171.923-375.465 384-375.465s384 168.102 384 375.465c0 104.304-43.498 198.672-113.722 266.714-20.848 20.202-51.286 1.302-52.118-27.718z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["live-streaming"],"defaultCode":59773,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":9,"name":"live-streaming","prevSize":32,"id":131,"code":59773},"setIdx":0,"setId":3,"iconIdx":132},{"icon":{"paths":["M700.144 361.891c4.685-24.973 34.704-34.093 49.13-13.171 31.994 46.403 50.726 102.653 50.726 163.28s-18.733 116.88-50.726 163.283c-14.426 20.922-44.445 11.802-49.13-13.174l-1.706-9.101c-1.581-8.429 0.384-17.082 4.858-24.403 20.749-33.965 32.704-73.888 32.704-116.605 0-42.714-11.955-82.637-32.704-116.605-4.474-7.318-6.438-15.971-4.858-24.4l1.706-9.104z","M320.704 395.395c-20.748 33.968-32.704 73.891-32.704 116.605 0 42.717 11.956 82.64 32.704 116.605 4.474 7.322 6.438 15.974 4.858 24.403l-1.706 9.101c-4.684 24.976-34.705 34.096-49.128 13.174-31.994-46.403-50.728-102.656-50.728-163.283s18.733-116.877 50.728-163.28c14.424-20.922 44.444-11.802 49.128 13.171l1.706 9.104c1.581 8.429-0.384 17.082-4.858 24.4z","M728.765 209.256l-0.515 2.747c-2.234 11.911 2.534 23.967 11.763 31.821 75.866 64.565 123.987 160.751 123.987 268.175 0 107.427-48.122 203.613-123.987 268.176-9.229 7.856-13.997 19.914-11.763 31.824l0.515 2.746c4.192 22.362 29.69 33.194 47.261 18.746 92.794-76.294 151.974-191.981 151.974-321.491 0-129.507-59.181-245.193-151.974-321.489-17.571-14.448-43.069-3.615-47.261 18.745z","M283.986 243.825c9.228-7.854 13.998-19.911 11.764-31.821l-0.515-2.747c-4.192-22.359-29.69-33.193-47.262-18.745-92.793 76.296-151.973 191.981-151.973 321.489 0 129.51 59.18 245.197 151.973 321.491 17.572 14.448 43.070 3.616 47.262-18.746l0.515-2.746c2.233-11.91-2.536-23.968-11.764-31.824-75.864-64.563-123.986-160.749-123.986-268.176 0-107.424 48.122-203.61 123.986-268.175z","M608 512c0 53.021-42.979 96-96 96s-96-42.979-96-96c0-53.018 42.979-96 96-96s96 42.982 96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["live"],"defaultCode":59774,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":8,"name":"live","prevSize":32,"id":132,"code":59774},"setIdx":0,"setId":3,"iconIdx":133},{"icon":{"paths":["M397.011 527.334c26.576 0 48.122-21.587 48.122-48.214s-21.546-48.214-48.122-48.214c-26.576 0-48.118 21.587-48.118 48.214s21.542 48.214 48.118 48.214z","M589.491 479.12c0 26.627-21.542 48.214-48.118 48.214s-48.122-21.587-48.122-48.214c0-26.627 21.546-48.214 48.122-48.214s48.118 21.587 48.118 48.214z","M733.853 479.12c0 26.627-21.542 48.214-48.118 48.214s-48.122-21.587-48.122-48.214c0-26.627 21.546-48.214 48.122-48.214s48.118 21.587 48.118 48.214z","M88.039 813.683l119.625 31.283c85.312 22.307 173.45-16.256 238.691-79.709 29.501 4.794 59.875 7.242 90.678 7.242 218.294 0 404.339-122.864 404.339-294.518 0-171.664-186.042-294.52-404.339-294.52-218.314 0-404.351 122.852-404.34 294.523 0 65.072 27.642 125.014 75.655 173.587-2.847 24.835-14.596 44.73-36.049 68.55l-84.261 93.562zM537.034 258.997c183.13 0 331.6 98.043 331.6 218.984 0 120.931-148.47 218.982-331.6 218.982-40.781 0-79.834-4.877-115.91-13.763-36.669 45.6-117.335 109.008-195.697 88.518 25.489-28.304 63.251-76.131 55.168-154.909-46.968-37.779-75.162-86.134-75.162-138.829-0.008-120.95 148.461-218.984 331.6-218.984z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["livechat-monochromatic"],"defaultCode":59775,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":31,"name":"livechat-monochromatic","prevSize":32,"id":133,"code":59775},"setIdx":0,"setId":3,"iconIdx":134},{"icon":{"paths":["M341.334 778.672c-17.674 0-32 14.326-32 32s14.326 32 32 32h341.334c17.674 0 32-14.326 32-32s-14.326-32-32-32h-341.334zM85.335 298.672c0-70.692 57.308-128 128-128h597.334c70.691 0 128 57.308 128 128v298.666c0 70.694-57.309 128-128 128h-597.334c-70.692 0-128-57.306-128-128v-298.666zM213.335 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.347 28.654 64 64 64h597.334c35.344 0 64-28.653 64-64v-298.666c0-35.347-28.656-64-64-64h-597.334zM256 320c0-11.782 9.551-21.333 21.333-21.333h170.667c11.782 0 21.334 9.551 21.334 21.333s-9.552 21.334-21.334 21.334h-170.667c-11.782 0-21.333-9.552-21.333-21.334zM277.333 554.666c-11.782 0-21.333 9.552-21.333 21.334s9.551 21.334 21.333 21.334h85.332c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-85.332zM554.666 320c0-11.782 9.552-21.333 21.334-21.333h170.666c11.782 0 21.334 9.551 21.334 21.333s-9.552 21.334-21.334 21.334h-170.666c-11.782 0-21.334-9.552-21.334-21.334zM448 554.666c-11.782 0-21.334 9.552-21.334 21.334s9.552 21.334 21.334 21.334h298.666c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-298.666zM256 448c0-11.782 9.551-21.334 21.333-21.334h213.332c11.782 0 21.334 9.552 21.334 21.334s-9.552 21.334-21.334 21.334h-213.332c-11.782 0-21.333-9.552-21.333-21.334zM618.666 426.666c-11.782 0-21.331 9.552-21.331 21.334s9.549 21.334 21.331 21.334h128c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["log-view"],"defaultCode":59778,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":33,"name":"log-view","prevSize":32,"id":134,"code":59778},"setIdx":0,"setId":3,"iconIdx":135},{"icon":{"paths":["M176 96c-17.673 0-32 14.327-32 32v768c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-96c0-17.674-14.326-32-32-32s-32 14.326-32 32v64h-448v-704h448v64c0 17.673 14.326 32 32 32s32-14.327 32-32v-96c0-17.673-14.326-32-32-32h-512zM521.373 329.373c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.254l-105.373 105.373h418.746c17.674 0 32 14.326 32 32s-14.326 32-32 32h-418.746l105.373 105.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-160-160c-12.496-12.496-12.496-32.758 0-45.254l160-160z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["login"],"defaultCode":59779,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":34,"name":"login","prevSize":32,"id":135,"code":59779},"setIdx":0,"setId":3,"iconIdx":136},{"icon":{"paths":["M268.099 96c-17.673 0-32 14.327-32 32v768c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-96c0-17.674-14.326-32-32-32s-32 14.326-32 32v64h-448v-704h448v64c0 17.673 14.326 32 32 32s32-14.327 32-32v-96c0-17.673-14.326-32-32-32h-512zM994.726 489.373l-160-160c-12.496-12.497-32.758-12.497-45.254 0s-12.496 32.758 0 45.254l105.373 105.373h-418.746c-17.674 0-32 14.326-32 32s14.326 32 32 32h418.746l-105.373 105.373c-12.496 12.496-12.496 32.758 0 45.254s32.758 12.496 45.254 0l160-160c12.496-12.496 12.496-32.758 0-45.254z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["logout"],"defaultCode":59780,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":35,"name":"logout","prevSize":32,"id":136,"code":59780},"setIdx":0,"setId":3,"iconIdx":137},{"icon":{"paths":["M192 736h640v-448h-640v448zM128 256c0-17.673 14.327-32 32-32h704c17.674 0 32 14.327 32 32v512c0 17.674-14.326 32-32 32h-704c-17.673 0-32-14.326-32-32v-512zM305.304 389.082c-14.866-9.555-34.665-5.251-44.222 9.613-9.557 14.867-5.253 34.666 9.613 44.224l241.304 155.123 241.306-155.123c14.864-9.558 19.168-29.357 9.613-44.224-9.558-14.864-29.357-19.168-44.224-9.613l-206.694 132.877-206.696-132.877z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["mail"],"defaultCode":59781,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":36,"name":"mail","prevSize":32,"id":137,"code":59781},"setIdx":0,"setId":3,"iconIdx":138},{"icon":{"paths":["M302.769 192h418.463l23.187 72.727h-0.211l23.792 63.999c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818c0-18.476-14.326-33.454-32-33.454s-32 14.978-32 33.454c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818c0-18.476-14.326-33.454-32-33.454s-32 14.978-32 33.454c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818l23.794-63.999h-0.213l23.188-72.727zM212.406 264.727l36.491-114.448c4.231-13.27 16.56-22.279 30.488-22.279h465.23c13.93 0 26.259 9.009 30.49 22.279l56.896 178.447c0 33.939-12.083 64.925-32 88.515v350.778c0 53.018-42.979 96-96 96h-384c-53.019 0-96-42.982-96-96v-350.778c-19.916-23.59-32-54.576-32-88.515l20.406-63.999zM288 458.33v309.69c0 17.67 14.327 32 32 32h128v-192.019h128v192.019h128c17.674 0 32-14.33 32-32v-309.69c-10.227 2.752-20.95 4.214-32 4.214-38.23 0-72.547-17.52-96-45.302-23.453 27.782-57.77 45.302-96 45.302s-72.547-17.52-96-45.302c-23.453 27.782-57.77 45.302-96 45.302-11.050 0-21.772-1.462-32-4.214z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["marketplace"],"defaultCode":59782,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":37,"name":"marketplace","prevSize":32,"id":138,"code":59782},"setIdx":0,"setId":3,"iconIdx":139},{"icon":{"paths":["M773.072 576c-35.344 0-64-28.653-64-64s28.656-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64z","M517.072 576c-35.344 0-64-28.653-64-64s28.656-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64z","M261.073 576c-35.346 0-64-28.653-64-64s28.654-64 64-64c35.346 0 63.999 28.653 63.999 64s-28.652 64-63.999 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["meatballs"],"defaultCode":59783,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":38,"name":"meatballs","prevSize":32,"id":139,"code":59783},"setIdx":0,"setId":3,"iconIdx":140},{"icon":{"paths":["M651.36 116.071c-57.242-19.989-105.792-20.069-138.358-20.071v64l-1.002-64c-92.006 0.342-297.345 47.824-381.242 242.995-17.897 38.97-34.758 103.344-34.758 173.005 0 69.958 17.020 146.285 52.216 207.875 23.229 40.653 92.799 131.376 191.179 173.536 94.861 40.656 206.368 52.349 296.49 16.301 16.41-6.563 24.39-25.187 17.827-41.597s-25.187-24.39-41.597-17.827c-69.878 27.952-163.171 20.445-247.51-15.699-80.819-34.64-141.384-112.451-160.821-146.464-28.804-50.41-43.784-115.418-43.784-176.125 0-60.765 15.020-116.182 29.055-146.589l0.184-0.4 0.173-0.406c69.507-162.181 243.823-204.604 323.589-204.605 31.594 0.002 70.877 0.296 117.258 16.493 46.147 16.114 101.389 48.779 161.824 116.767 43.658 49.115 63.533 114.977 69.389 177.713 5.891 63.12-2.854 118.189-11.546 142.093-6.4 17.6-20.429 45.44-59.392 45.699-18.259-0.806-72.822-14.672-83.12-69.568v-235.062c0-17.674-3.414-34.134-29.014-34.134-19.338 0-26.454 16.461-26.454 34.134v34.131c-35.181-39.859-95.402-68.266-152.746-68.266-106.038 0-192 85.962-192 192s85.962 192 192 192c62.179 0 117.658-29.555 152.746-75.386 25.715 71.078 102.57 93.027 137.014 94.134l0.515 0.016h0.512c82.643 0 111.715-64.806 120.086-87.83 12.64-34.762 21.674-99.696 15.12-169.907-6.589-70.595-29.379-151.401-85.277-214.287-66.902-75.265-131.075-114.597-188.557-134.67zM627.2 512c0 70.691-57.309 128-128 128s-128-57.309-128-128c0-70.691 57.309-128 128-128s128 57.309 128 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["mention"],"defaultCode":59784,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":142,"name":"mention","prevSize":32,"id":140,"code":59784},"setIdx":0,"setId":3,"iconIdx":141},{"icon":{"paths":["M477.84 128c104.256 0 181.251 29.018 237.494 70.652l-44.317 44.317c-45.52-31.22-107.747-53.057-193.178-53.057-129.725 0-207.83 53.576-254.529 118.696-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-7.328 80.928 13.761 143.126 51.784 190.499l-43.879 43.878c-50.179-59.901-78.131-139.043-69.441-238.595 0.276-63.411 19.117-157.053 75.696-235.948 58.132-81.063 154.749-144.433 304.573-144.433zM822.848 332.499l-47.008 47.008c16.502 42.634 20.608 78.525 20.608 89.011v0.179c0 19.517 0 31.792-6.621 56.17-7.094 26.109-21.738 65.648-52.554 137.834-5.699 13.357-2.794 25.981 1.261 34.435 3.834 7.99 9.562 14.403 14.595 19.184 10.227 9.712 24.253 18.842 38.544 26.867 7.888 4.429 18.298 8.995 27.613 13.078l1.843 0.81c10.554 4.634 20.726 9.146 29.613 13.894 3.427 1.834 6.298 3.517 8.672 5.030-5.104 3.229-12.035 6.883-20.941 10.765-22.96 10.003-55.328 19.939-93.888 28.128-77.12 16.371-174.73 24.858-263.341 14.973-43.744-4.88-86.826-14.525-126.534-29.229l-47.542 47.542c52.771 23.018 110.492 36.886 167.267 43.222 96.387 10.752 200.71 1.517 282.909-15.936 41.098-8.726 77.731-19.731 105.68-31.907 13.91-6.064 26.618-12.822 36.858-20.342 9.427-6.925 20.739-17.344 25.61-32.016 7.392-22.269-2.957-40.509-12.816-51.139-9.427-10.166-22.106-17.939-32.954-23.738-11.309-6.048-23.626-11.472-33.891-15.978-11.059-4.854-18.934-8.317-24.054-11.194-9.914-5.565-17.437-10.538-22.506-14.57 27.421-64.81 42.214-104.589 50.048-133.424 8.774-32.304 8.797-50.986 8.797-72.64 0-20.106-7.053-75.501-35.267-136.019zM836.038 153.372c12.499-12.497 32.758-12.497 45.254 0 12.499 12.497 12.499 32.758 0 45.255l-682.665 682.665c-12.497 12.499-32.758 12.499-45.255 0-12.497-12.496-12.497-32.755 0-45.254l682.666-682.666z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["message-disabled"],"defaultCode":59785,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":57,"name":"message-disabled","prevSize":32,"id":141,"code":59785},"setIdx":0,"setId":3,"iconIdx":142},{"icon":{"paths":["M223.311 308.609c-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-9.348 103.235 27.547 175.997 86.848 226.374 60.643 51.52 146.602 80.998 235.29 90.893 88.614 9.885 186.224 1.398 263.341-14.973 38.56-8.189 70.928-18.125 93.888-28.128 8.906-3.882 15.837-7.536 20.944-10.765-2.378-1.514-5.248-3.197-8.675-5.030-8.886-4.749-19.059-9.261-29.613-13.894l-1.843-0.81c-9.315-4.083-19.725-8.65-27.613-13.078-14.291-8.026-28.317-17.155-38.544-26.867-5.034-4.781-10.762-11.194-14.595-19.184-4.054-8.454-6.96-21.078-1.261-34.435 30.816-72.186 45.459-111.725 52.554-137.834 6.621-24.378 6.621-36.653 6.621-56.17v-0.179c0-15.51-8.979-86.595-53.776-152.876-43.376-64.174-121.395-125.729-264.832-125.729-129.725 0-207.83 53.576-254.529 118.696zM173.267 272.433c58.132-81.063 154.749-144.433 304.573-144.433 164.896 0 261.594 72.589 315.859 152.878 52.838 78.181 64.416 161.881 64.416 187.641 0 21.654-0.022 40.336-8.797 72.64-7.83 28.835-22.627 68.614-50.048 133.424 5.069 4.032 12.592 9.005 22.506 14.57 5.123 2.877 12.995 6.339 24.054 11.194 10.266 4.506 22.582 9.93 33.891 15.978 10.848 5.798 23.526 13.571 32.954 23.738 9.859 10.63 20.208 28.87 12.816 51.139-4.87 14.672-16.182 25.091-25.61 32.016-10.24 7.52-22.947 14.278-36.858 20.342-27.946 12.176-64.582 23.181-105.68 31.907-82.198 17.453-186.522 26.688-282.909 15.936-96.31-10.746-195.346-43.178-268.313-105.165-74.031-62.893-119.295-154.778-108.551-277.856 0.276-63.411 19.117-157.053 75.696-235.948z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["message"],"defaultCode":59786,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":58,"name":"message","prevSize":32,"id":142,"code":59786},"setIdx":0,"setId":3,"iconIdx":143},{"icon":{"paths":["M512 128c75.546 0 138.861 52.356 155.645 122.762l-59.645 59.644v-22.405c0-53.019-42.979-96-96-96s-96 42.981-96 96v128c0 24.067 8.858 46.067 23.488 62.915l-45.322 45.325c-26.182-28.49-42.166-66.499-42.166-108.24v-128c0-88.365 71.635-160 160-160zM561.35 568.243l102.893-102.893c-15.763 48.672-54.221 87.13-102.893 102.893zM288 416c0 72.154 23.181 123.101 55.328 159.078l-45.304 45.302c-43.428-47.35-74.024-113.99-74.024-204.381 0-17.674 14.327-32 32-32s32 14.326 32 32zM478.659 650.938l-51.808 51.808c18.56 6.374 36.579 10.806 53.149 13.635v115.619h-160c-17.673 0-32 14.326-32 32s14.327 32 32 32h384c17.674 0 32-14.326 32-32s-14.326-32-32-32h-160v-115.619c44.64-7.619 99.818-26.896 147.722-64.381 60.704-47.501 108.278-123.286 108.278-236 0-17.674-14.326-32-32-32s-32 14.326-32 32c0 92.086-37.757 149.632-83.722 185.6-46.464 36.358-102.736 51.581-140.278 54.326-9.971-0.73-21.264-2.339-33.341-4.989zM825.373 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672-672z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["microphone-disabled"],"defaultCode":59787,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":59,"name":"microphone-disabled","prevSize":32,"id":143,"code":59787},"setIdx":0,"setId":3,"iconIdx":144},{"icon":{"paths":["M608 288c0-53.019-42.979-96-96-96s-96 42.981-96 96v128c0 53.021 42.979 96 96 96s96-42.979 96-96v-128zM352 288c0-88.365 71.635-160 160-160s160 71.635 160 160v128c0 88.365-71.635 160-160 160s-160-71.635-160-160v-128zM256 384c17.673 0 32 14.326 32 32 0 92.086 37.757 149.632 83.722 185.6 46.464 36.358 102.736 51.581 140.278 54.326 37.542-2.746 93.814-17.968 140.278-54.326 45.962-35.968 83.722-93.514 83.722-185.6 0-17.674 14.326-32 32-32s32 14.326 32 32c0 112.714-47.574 188.499-108.278 236-47.904 37.485-103.082 56.762-147.722 64.381v115.619h160c17.674 0 32 14.326 32 32s-14.326 32-32 32h-384c-17.673 0-32-14.326-32-32s14.327-32 32-32h160v-115.619c-44.64-7.619-99.818-26.896-147.722-64.381-60.703-47.501-108.278-123.286-108.278-236 0-17.674 14.327-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["microphone"],"defaultCode":59788,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":60,"name":"microphone","prevSize":32,"id":144,"code":59788},"setIdx":0,"setId":3,"iconIdx":145},{"icon":{"paths":["M234.666 170.661c0-47.128 38.205-85.333 85.333-85.333h384.001c47.126 0 85.331 38.205 85.331 85.333v682.667c0 47.13-38.205 85.334-85.331 85.334h-384.001c-47.128 0-85.333-38.205-85.333-85.334v-682.667zM298.666 170.661v682.667c0 11.782 9.551 21.334 21.333 21.334h384.001c11.782 0 21.331-9.552 21.331-21.334v-682.667c0-11.782-9.549-21.333-21.331-21.333h-96.291c-2.653 24.002-23.002 42.672-47.709 42.672h-96c-24.707 0-45.056-18.67-47.709-42.672h-96.292c-11.782 0-21.333 9.551-21.333 21.333z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["mobile"],"defaultCode":59789,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":61,"name":"mobile","prevSize":32,"id":145,"code":59789},"setIdx":0,"setId":3,"iconIdx":146},{"icon":{"paths":["M319.247 231.566c-62.882 49.504-135.086 136.549-141.94 266.127-5.762 108.922 37.404 187.184 89.915 241.51 53.258 55.098 115.702 84.925 144.25 94.438 41.859 13.955 114.269 29.536 234.643-15.603 34.858-13.072 73.165-42.096 108.304-78.426 14.272-14.755 27.616-30.294 39.6-45.773-28.778 9.293-61.699 17.754-96.589 23.594-56.192 9.405-119.29 12.32-179.411-0.237-2.49-0.518-4.96-1.030-7.408-1.536-22.195-4.576-42.733-8.816-62.589-17.648-23.091-10.275-43.805-25.891-69.299-51.386-42.096-42.096-89.142-107.222-89.371-213.843-1.569-34.080 4.622-81.878 13.764-129.216 4.624-23.946 10.142-48.465 16.132-72.003zM345.562 138.217c32.8-17.15 63.709 15.843 53.875 45.907-12.234 37.414-24.586 85.511-33.482 131.58-9.024 46.732-13.949 88.633-12.643 114.7l0.038 0.797v0.8c0 84.915 36.173 134.918 70.627 169.373 22.509 22.509 36.835 32.278 50.064 38.166 13.229 5.885 26.832 8.717 51.085 13.763 1.923 0.4 3.917 0.816 5.978 1.248 49.914 10.426 104.534 8.336 155.76-0.237 65.434-10.954 122.384-31.981 152.374-47.386 17.562-9.021 34.992-2.47 44.477 5.965 9.661 8.589 19.376 27.152 8.886 46.954-20.637 38.95-53.645 84.419-92.182 124.259-38.211 39.51-84.317 76.038-131.834 93.859-135.626 50.858-223.216 34.438-277.354 16.394-36.515-12.173-108.392-46.912-170.026-110.675-62.381-64.534-114.684-159.427-107.81-289.373 10.79-203.979 157.583-317.098 232.165-356.093z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["moon"],"defaultCode":59790,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":62,"name":"moon","prevSize":32,"id":146,"code":59790},"setIdx":0,"setId":3,"iconIdx":147},{"icon":{"paths":["M144 160c-17.673 0-32 14.327-32 32s14.327 32 32 32h192c17.674 0 32-14.327 32-32s-14.326-32-32-32h-192zM700.4 346.646c11.795-13.165 32.026-14.272 45.187-2.48 13.162 11.795 14.272 32.026 2.477 45.187l-81.222 90.646h216.358c17.674 0 32 14.326 32 32s-14.326 32-32 32h-216.358l81.222 90.646c11.795 13.162 10.685 33.392-2.477 45.187-13.162 11.792-33.392 10.685-45.187-2.48l-129.030-144c-10.893-12.154-10.893-30.554 0-42.707l129.030-144zM112 512c0-17.674 14.327-32 32-32h192c17.674 0 32 14.326 32 32s-14.326 32-32 32h-192c-17.673 0-32-14.326-32-32zM144 640c-17.673 0-32 14.326-32 32s14.327 32 32 32h192c17.674 0 32-14.326 32-32s-14.326-32-32-32h-192zM112 352c0-17.674 14.327-32 32-32h192c17.674 0 32 14.326 32 32s-14.326 32-32 32h-192c-17.673 0-32-14.326-32-32zM144 800c-17.673 0-32 14.326-32 32s14.327 32 32 32h192c17.674 0 32-14.326 32-32s-14.326-32-32-32h-192z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["move-to-the-queue"],"defaultCode":59791,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":63,"name":"move-to-the-queue","prevSize":32,"id":147,"code":59791},"setIdx":0,"setId":3,"iconIdx":148},{"icon":{"paths":["M809.002 166.758c7.782 6.063 12.333 15.377 12.333 25.242v448h-0.112c0.074 1.734 0.112 3.478 0.112 5.229 0 69.053-57.309 125.030-128 125.030-70.694 0-128-55.978-128-125.030s57.306-125.030 128-125.030c23.312 0 45.171 6.090 64 16.73v-303.86l-384 96.798v409.136c0 69.053-57.309 125.037-128.001 125.037s-128-55.978-128-125.030c0-69.050 57.308-125.027 128-125.027 23.314 0 45.173 6.086 64 16.726v-325.777c0-14.66 9.962-27.446 24.177-31.029l448-112.93c9.568-2.411 19.709-0.276 27.491 5.788z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["musical-note"],"defaultCode":59792,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":64,"name":"musical-note","prevSize":32,"id":148,"code":59792},"setIdx":0,"setId":3,"iconIdx":149},{"icon":{"paths":["M208 176c-35.346 0-64 28.654-64 64v576c0 35.347 28.654 64 64 64h576c35.347 0 64-28.653 64-64v-576c0-35.346-28.653-64-64-64h-576zM208 240h576v576h-576v-576zM698.627 558.15c-0.189 17.674-14.669 31.846-32.339 31.658-17.674-0.189-31.846-14.669-31.658-32.339l1.318-123.594-309.341 308.774c-12.51 12.483-32.771 12.464-45.256-0.042-12.485-12.509-12.467-32.771 0.042-45.258l309.195-308.624-123.382 1.315c-17.674 0.189-32.154-13.984-32.339-31.654-0.189-17.674 13.984-32.15 31.654-32.339l201.92-2.157c8.605-0.093 16.886 3.286 22.97 9.37 6.086 6.086 9.462 14.365 9.373 22.97l-2.157 201.92z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["new-window"],"defaultCode":59793,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":65,"name":"new-window","prevSize":32,"id":149,"code":59793},"setIdx":0,"setId":3,"iconIdx":150},{"icon":{"paths":["M781.837 402.634c0-5.245-0.154-10.454-0.461-15.622l-63.539 63.539v265.363h-265.363l-66.979 66.979h425.363c12.944 0 24.611-7.795 29.565-19.754 4.954-11.955 2.214-25.722-6.938-34.874l-51.648-51.648v-273.984zM704.765 217.373l-45.254 45.255c-35.638-35.351-84.704-57.189-138.867-57.189-108.909 0-197.194 88.287-197.194 197.195v196.054l-64.001 64v-260.054c0-144.254 116.941-261.195 261.194-261.195 71.837 0 136.899 29.001 184.122 75.934zM433.578 808.934c0 48.086 38.982 87.066 87.066 87.066s87.066-38.979 87.066-87.066h-174.131zM854.275 190.982c-11.334-11.334-29.709-11.334-41.043 0l-612.732 612.733c-11.333 11.331-11.333 29.709 0 41.040 11.334 11.334 29.709 11.334 41.043 0l612.732-612.731c11.334-11.333 11.334-29.709 0-41.043z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["notification-disabled"],"defaultCode":59794,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":66,"name":"notification-disabled","prevSize":32,"id":150,"code":59794},"setIdx":0,"setId":3,"iconIdx":151},{"icon":{"paths":["M601.331 808.928h-174.154c0.003 48.090 38.989 87.072 87.078 87.072s87.075-38.982 87.075-87.072zM815.597 731.677c7.274 9.696 8.442 22.669 3.021 33.51s-16.499 17.69-28.621 17.69h-565.996c-12.943 0-24.611-7.798-29.564-19.757-4.953-11.955-2.215-25.718 6.937-34.87l51.653-51.654v-274.032c0-144.272 116.957-261.228 261.229-261.228s261.229 116.956 261.229 261.228v275.629l40.112 53.485zM711.485 715.894v-313.331c0-108.926-88.304-197.228-197.229-197.228-108.928 0-197.229 88.302-197.229 197.228v313.331h394.458z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["notification"],"defaultCode":59795,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":67,"name":"notification","prevSize":32,"id":151,"code":59795},"setIdx":0,"setId":3,"iconIdx":152},{"icon":{"paths":["M712.051 512.675v54.89c-0.195 76.736-43.741 143.283-107.44 176.445-5.53-25.67-28.362-44.906-55.683-44.906h-72.502c-31.459 0-56.963 25.501-56.963 56.963v41.427c0 31.462 25.504 56.963 56.963 56.963h72.502c28.509 0 52.128-20.944 56.307-48.288 69.261-26.829 123.962-82.883 148.966-153.030 4.723 1.27 9.69 1.946 14.813 1.946h28.483c31.459 0 56.963-25.504 56.963-56.963v-85.446c0-31.459-25.504-56.963-56.963-56.963h-28.483v-28.483c0-141.572-114.765-256.338-256.336-256.338s-256.339 114.766-256.339 256.338v23.302h-28.483c-31.46 0-56.964 25.504-56.964 56.966v103.571c0 31.459 25.504 56.963 56.964 56.963h28.482c31.46 0 56.964-25.504 56.964-56.963v-36.253h0.149c-0.099-2.576-0.148-5.165-0.148-7.766v-139.821c0-110.111 89.263-199.374 199.375-199.374s199.373 89.263 199.373 199.374v85.446z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["omnichannel"],"defaultCode":59796,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":123,"name":"omnichannel","prevSize":32,"id":152,"code":59796},"setIdx":0,"setId":3,"iconIdx":153},{"icon":{"paths":["M705.578 633.158c9.507-9.235 24.701-9.018 33.939 0.486 9.238 9.507 9.021 24.701-0.486 33.939l-208.275 202.387c-9.312 9.050-24.138 9.050-33.45 0l-208.276-202.387c-9.506-9.238-9.724-24.432-0.487-33.939 9.237-9.504 24.432-9.722 33.937-0.486l191.549 186.134 191.549-186.134zM705.578 411.584c9.507 9.238 24.701 9.021 33.939-0.486s9.021-24.701-0.486-33.939l-208.275-202.385c-9.312-9.051-24.138-9.051-33.45 0l-208.276 202.385c-9.506 9.238-9.724 24.432-0.487 33.939 9.237 9.504 24.432 9.725 33.937 0.486l191.549-186.134 191.549 186.134z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["order"],"defaultCode":59797,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":124,"name":"order","prevSize":32,"id":153,"code":59797},"setIdx":0,"setId":3,"iconIdx":154},{"icon":{"paths":["M742.317 652.566c12.666-12.323 12.944-32.582 0.618-45.248-12.323-12.669-32.582-12.944-45.251-0.621l44.634 45.869zM512 832.019l-22.317 22.934c12.422 12.086 32.211 12.086 44.634 0l-22.317-22.934zM326.317 606.698c-12.667-12.323-32.927-12.048-45.252 0.621-12.324 12.666-12.047 32.925 0.619 45.248l44.632-45.869zM697.683 606.698l-208 202.387 44.634 45.869 208-202.387-44.634-45.869zM534.317 809.085l-208-202.387-44.632 45.869 207.999 202.387 44.634-45.869z","M742.317 371.456c12.666 12.323 12.944 32.582 0.618 45.251-12.323 12.666-32.582 12.944-45.251 0.618l44.634-45.869zM512 192.004l-22.317-22.935c12.422-12.087 32.211-12.087 44.634 0l-22.317 22.935zM326.317 417.325c-12.668 12.326-32.927 12.048-45.252-0.618-12.325-12.669-12.048-32.928 0.619-45.251l44.633 45.869zM697.683 417.325l-208-202.386 44.634-45.87 208 202.387-44.634 45.869zM534.317 214.939l-208 202.386-44.633-45.869 207.999-202.387 44.634 45.87z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"isMulticolor":true,"isMulticolor2":true,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":7}]},"tags":["ordering-ascending"],"defaultCode":59798,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"properties":{"order":125,"name":"ordering-ascending","prevSize":32,"codes":[59798,59799],"id":154,"code":59798},"setIdx":0,"setId":3,"iconIdx":155},{"icon":{"paths":["M281.684 371.434c-12.667 12.323-12.944 32.582-0.619 45.248 12.324 12.669 32.584 12.944 45.252 0.621l-44.633-45.869zM512 191.981l22.317-22.935c-12.422-12.087-32.211-12.087-44.634 0l22.317 22.935zM697.683 417.302c12.669 12.323 32.928 12.048 45.251-0.621 12.326-12.666 12.048-32.925-0.618-45.248l-44.634 45.869zM326.317 417.302l208-202.387-44.634-45.869-207.999 202.387 44.633 45.869zM489.683 214.916l208 202.387 44.634-45.869-208-202.387-44.634 45.869z","M281.684 652.544c-12.667-12.323-12.944-32.582-0.619-45.251 12.324-12.666 32.584-12.944 45.252-0.618l-44.633 45.869zM512 831.997l22.317 22.934c-12.422 12.086-32.211 12.086-44.634 0l22.317-22.934zM697.683 606.675c12.669-12.326 32.928-12.048 45.251 0.618 12.326 12.669 12.048 32.928-0.618 45.251l-44.634-45.869zM326.317 606.675l208 202.384-44.634 45.872-207.999-202.387 44.633-45.869zM489.683 809.059l208-202.384 44.634 45.869-208 202.387-44.634-45.872z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"isMulticolor":true,"isMulticolor2":true,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":7}]},"tags":["ordering-descending"],"defaultCode":59800,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"properties":{"order":126,"name":"ordering-descending","prevSize":32,"codes":[59800,59801],"id":155,"code":59800},"setIdx":0,"setId":3,"iconIdx":156},{"icon":{"paths":["M512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.752 0-416.001 186.25-416.001 416s186.25 416 416.001 416zM399.997 383.994c0-17.67 14.326-32 32-32s32 14.33 32 32v256c0 17.674-14.326 32-32 32s-32-14.326-32-32v-256zM559.997 383.994c0-17.67 14.326-32 32-32s32 14.33 32 32v256c0 17.674-14.326 32-32 32s-32-14.326-32-32v-256z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pause-filled"],"defaultCode":59802,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":128,"name":"pause-filled","prevSize":32,"id":156,"code":59802},"setIdx":0,"setId":3,"iconIdx":157},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352-194.405 0-352.001 157.596-352.001 352s157.596 352 352.001 352c194.403 0 352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416-229.752 0-416.001-186.25-416.001-416s186.25-416 416.001-416c229.75 0 416 186.25 416 416zM399.997 383.994v256c0 17.674 14.326 32 32 32s32-14.326 32-32v-256c0-17.67-14.326-32-32-32s-32 14.33-32 32zM559.997 383.994v256c0 17.674 14.326 32 32 32s32-14.326 32-32v-256c0-17.67-14.326-32-32-32s-32 14.33-32 32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pause"],"defaultCode":59803,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":129,"name":"pause","prevSize":32,"id":157,"code":59803},"setIdx":0,"setId":3,"iconIdx":158},{"icon":{"paths":["M825.373 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672-672zM575.613 569.069l-44.707 44.707c7.846 5.904 15.846 11.453 23.533 16.016 9.2 5.459 22.838 12.579 36.973 13.222 16.224 0.736 31.446-5.302 42.47-10.976 11.741-6.042 22.79-13.824 31.744-20.944 1.053-0.838 2.134-1.232 2.883-1.341 0.403-0.061 0.611-0.032 0.688-0.013l121.094 59.075c-5.578 29.331-20.381 66.771-42.39 92.621-11.229 13.187-23.197 22.038-35.389 26.32-11.597 4.074-25.402 4.762-42.653-1.677-48.422-18.070-103.405-53.152-151.69-89.261-14.026-10.49-27.299-20.922-39.469-30.842l-44.387 44.39c14.186 11.683 29.84 24.061 46.445 36.48 49.808 37.248 110.448 76.56 167.261 97.76 30.275 11.299 59.149 11.238 85.197 2.086 25.45-8.938 46.090-25.786 62.246-44.755 31.866-37.424 50.634-88.144 57.059-126.246 4.72-27.987-11.776-51.77-33.136-62.192l-122.81-59.91c-24.41-11.907-51.462-6-69.834 8.611-7.008 5.571-14.544 10.739-21.443 14.291-5.574 2.867-8.931 3.741-10.314 4.003l-0.093-0.038c-0.992-0.4-3.731-1.514-8.57-4.387-3.277-1.942-6.87-4.301-10.71-7.002zM313.636 589.683l44.389-44.387c-9.92-12.17-20.349-25.44-30.838-39.466-36.109-48.285-71.192-103.267-89.263-151.69-6.437-17.251-5.748-31.056-1.675-42.652 4.283-12.192 13.134-24.16 26.319-35.388 25.849-22.012 63.291-36.814 92.622-42.392l59.075 121.095c0.019 0.077 0.048 0.285-0.013 0.688-0.109 0.752-0.502 1.83-1.341 2.883-7.12 8.954-14.902 20.003-20.944 31.744-5.674 11.024-11.715 26.246-10.976 42.47 0.643 14.134 7.763 27.773 13.222 36.973 4.563 7.686 10.109 15.683 16.013 23.53l44.707-44.707c-2.701-3.837-5.056-7.434-7.002-10.707-2.87-4.838-3.984-7.578-4.387-8.57l-0.038-0.093c0.266-1.382 1.139-4.739 4.006-10.314 3.552-6.899 8.72-14.435 14.291-21.443 14.611-18.371 20.518-45.424 8.611-69.834l-59.91-122.809c-10.422-21.362-34.205-37.856-62.192-33.137-38.103 6.425-88.824 25.194-126.246 57.060-18.972 16.155-35.817 36.795-44.757 62.246-9.15 26.048-9.211 54.921 2.087 85.196 21.202 56.813 60.513 117.453 97.761 167.261 12.417 16.605 24.795 32.256 36.478 46.442z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["phone-disabled"],"defaultCode":59804,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":130,"name":"phone-disabled","prevSize":32,"id":158,"code":59804},"setIdx":0,"setId":3,"iconIdx":159},{"icon":{"paths":["M801.123 657.59c22.474 7.734 50.954 2.582 67.408-20.544 22.4-31.488 44.992-80.624 48.922-129.619 1.99-24.838-0.691-51.344-12.368-75.661-11.949-24.89-32.32-45.35-61.718-58.768-55.165-25.181-125.84-40.262-187.398-49.146-61.946-8.936-117.494-11.98-143.965-11.98v62.469c23.2 0 75.757 2.787 135.043 11.341 59.677 8.611 123.36 22.682 170.381 44.144 16.749 7.645 26.022 17.894 31.344 28.973 5.59 11.651 7.795 26.371 6.413 43.635-2.717 33.843-18.723 70.784-35.52 95.469l-127.398-43.853c-0.067-0.042-0.237-0.17-0.48-0.496-0.451-0.608-0.934-1.651-1.088-2.989-1.296-11.363-3.606-24.678-7.635-37.254-3.786-11.808-10.278-26.842-22.272-37.792-10.451-9.539-25.126-14.15-35.494-16.794-11.914-3.040-25.568-5.181-38.944-6.717-26.858-3.088-55.773-4.093-74.352-4.093v62.47c16.902 0 43.338 0.938 67.219 3.683 11.99 1.379 22.554 3.123 30.64 5.187 5.45 1.389 8.173 2.541 9.162 2.957l0.093 0.038c0.79 1.165 2.544 4.154 4.458 10.125 2.368 7.392 4.045 16.374 5.059 25.267 2.659 23.325 17.61 46.63 43.29 55.469l129.203 44.477zM222.875 657.584c-22.474 7.738-50.954 2.586-67.407-20.544-22.4-31.485-44.993-80.621-48.922-129.616-1.992-24.838 0.691-51.344 12.366-75.664 11.949-24.886 32.321-45.347 61.719-58.765 55.165-25.181 125.841-40.262 187.4-49.146 61.946-8.937 117.494-11.98 143.965-11.98v62.47c-23.2 0-75.757 2.787-135.046 11.341-59.674 8.608-123.358 22.682-170.378 44.144-16.748 7.645-26.024 17.894-31.343 28.973-5.593 11.651-7.797 26.371-6.412 43.635 2.714 33.843 18.721 70.784 35.518 95.469l127.4-43.856c0.067-0.038 0.234-0.166 0.477-0.493 0.454-0.611 0.938-1.651 1.091-2.989 1.296-11.363 3.606-24.682 7.635-37.254 3.786-11.808 10.275-26.842 22.272-37.792 10.448-9.542 25.126-14.15 35.491-16.794 11.917-3.040 25.568-5.181 38.947-6.717 26.858-3.088 55.77-4.093 74.349-4.093v62.47c-16.899 0-43.338 0.938-67.216 3.683-11.99 1.376-22.554 3.123-30.64 5.187-5.453 1.389-8.176 2.541-9.162 2.957l-0.093 0.038c-0.79 1.162-2.547 4.154-4.458 10.125-2.371 7.389-4.045 16.371-5.059 25.267-2.659 23.322-17.61 46.627-43.293 55.469l-129.202 44.474z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["phone-end"],"defaultCode":59805,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":131,"name":"phone-end","prevSize":32,"id":159,"code":59805},"setIdx":0,"setId":3,"iconIdx":160},{"icon":{"paths":["M410.502 204.616c-10.419-21.362-34.202-37.856-62.189-33.137-38.104 6.425-88.825 25.194-126.247 57.060-18.972 16.155-35.817 36.795-44.757 62.246-9.15 26.048-9.211 54.919 2.087 85.195 21.202 56.816 60.513 117.456 97.761 167.264 37.482 50.122 74.609 91.552 93.329 110.269l44.173-44.173c-16.406-16.403-51.6-55.536-87.472-103.51-36.11-48.285-71.192-103.264-89.264-151.69-6.437-17.248-5.748-31.056-1.675-42.651 4.283-12.192 13.134-24.16 26.319-35.388 25.849-22.012 63.292-36.814 92.623-42.392l59.075 121.097c0.019 0.074 0.045 0.285-0.013 0.688-0.112 0.749-0.502 1.827-1.344 2.883-7.117 8.95-14.899 20-20.941 31.741-5.674 11.024-11.715 26.246-10.976 42.47 0.643 14.138 7.76 27.773 13.222 36.973 6.275 10.576 14.416 21.741 22.79 32.291 16.806 21.171 36.541 42.326 49.68 55.466l44.173-44.173c-11.952-11.952-29.981-31.309-44.928-50.134-7.504-9.453-13.738-18.157-17.997-25.334-2.87-4.838-3.984-7.578-4.387-8.57l-0.038-0.093c0.266-1.382 1.139-4.736 4.006-10.31 3.552-6.902 8.717-14.438 14.291-21.443 14.611-18.374 20.518-45.424 8.611-69.837l-59.914-122.808zM819.386 613.504c21.36 10.419 37.856 34.202 33.136 62.189-6.426 38.106-25.194 88.826-57.059 126.246-16.157 18.973-36.797 35.818-62.246 44.758-26.048 9.149-54.922 9.21-85.197-2.086-56.813-21.203-117.453-60.515-167.261-97.763-50.122-37.482-91.555-74.608-110.272-93.328l44.173-44.173c16.403 16.406 55.539 51.6 103.51 87.472 48.285 36.109 103.267 71.194 151.69 89.264 17.248 6.435 31.056 5.747 42.653 1.674 12.192-4.282 24.16-13.133 35.386-26.317 22.013-25.85 36.816-63.293 42.394-92.624l-121.094-59.075c-0.077-0.019-0.288-0.048-0.688 0.013-0.752 0.112-1.83 0.502-2.886 1.344-8.95 7.117-20 14.899-31.741 20.941-11.024 5.674-26.246 11.715-42.47 10.976-14.134-0.643-27.773-7.76-36.973-13.222-10.576-6.275-21.741-14.416-32.288-22.79-21.174-16.806-42.33-36.541-55.469-49.68l44.173-44.173c11.952 11.952 31.309 29.981 50.134 44.928 9.453 7.504 18.16 13.738 25.334 17.997 4.838 2.87 7.578 3.984 8.57 4.387l0.093 0.038c1.382-0.266 4.739-1.139 10.314-4.006 6.899-3.552 14.435-8.717 21.44-14.291 18.374-14.611 45.427-20.518 69.837-8.611l122.81 59.914z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["phone"],"defaultCode":59806,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":68,"name":"phone","prevSize":32,"id":160,"code":59806},"setIdx":0,"setId":3,"iconIdx":161},{"icon":{"paths":["M512.608 128.019c-72.378-1.376-144.906 25.78-199.307 80.524-54.654 54.999-89.301 136.056-89.301 239.464 0 80.234 44.5 174.87 97.546 252.806 53.066 77.965 120.829 148.157 176.141 175.821l15.194 7.6 14.81-8.326c217.158-122.154 272.31-333.882 272.31-427.898 0-101.731-27.923-181.776-80.179-236.932-52.346-55.248-125.296-81.503-207.213-83.060zM288 448.006c0-88.589 29.353-152.745 70.698-194.351 41.6-41.862 97.072-62.705 152.694-61.648 68.992 1.311 124.038 23.054 161.968 63.088 38.019 40.126 62.64 102.649 62.64 192.914 0 74.55-44.691 253.677-224.176 363.030-39.683-25.61-92.186-79.853-137.37-146.237-50.954-74.864-86.454-156.221-86.454-216.797zM544 416c0-17.674-14.326-32-32-32s-32 14.326-32 32c0 17.674 14.326 32 32 32s32-14.326 32-32zM608 416c0 53.021-42.979 96-96 96s-96-42.979-96-96c0-53.021 42.979-96 96-96s96 42.979 96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pin-map"],"defaultCode":59807,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":69,"name":"pin-map","prevSize":32,"id":161,"code":59807},"setIdx":0,"setId":3,"iconIdx":162},{"icon":{"paths":["M428.346 199.399c17.542-17.543 45.984-17.543 63.53 0 17.542 17.543 17.542 45.986 0 63.53l-43.661 43.659 177.83 177.828 60.339-60.339c24.992-24.995 65.517-24.995 90.509 0l45.254 45.254-331.869 331.869-45.254-45.254c-24.992-24.995-24.992-65.517 0-90.509l60.339-60.339-177.827-177.83-43.661 43.661c-17.543 17.542-45.987 17.542-63.53 0s-17.543-45.987 0-63.53l208.001-207.999zM175.090 362.144c-42.537 42.538-42.537 111.501 0 154.038 42.001 42.003 109.771 42.531 152.42 1.587l87.334 87.334-15.075 15.075c-49.987 49.987-49.987 131.034 0 181.021l67.882 67.882c12.496 12.496 32.758 12.496 45.254 0l167.936-167.933 88.013 92.003c12.218 12.771 32.474 13.219 45.245 1.002 12.771-12.214 13.219-32.47 1.002-45.242l-88.995-93.030 163.923-163.923c12.499-12.496 12.499-32.758 0-45.254l-67.882-67.882c-49.987-49.987-131.030-49.987-181.018 0l-15.907 15.907-87.325-87.323c41.766-42.596 41.51-110.983-0.768-153.262-42.538-42.537-111.504-42.537-154.042 0l-207.998 208z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pin"],"defaultCode":59808,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":70,"name":"pin","prevSize":32,"id":162,"code":59808},"setIdx":0,"setId":3,"iconIdx":163},{"icon":{"paths":["M513.354 160c17.674 0 32 13.133 32 29.333v645.332c0 16.202-14.326 29.334-32 29.334s-32-13.133-32-29.334v-645.332c0-16.2 14.326-29.333 32-29.333z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["Pipe"],"defaultCode":59809,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":71,"name":"Pipe","prevSize":32,"id":163,"code":59809},"setIdx":0,"setId":3,"iconIdx":164},{"icon":{"paths":["M512 928.003c229.75 0 416-186.25 416-416s-186.25-415.999-416-415.999c-229.75 0-416 186.25-416 415.999s186.25 416 416 416zM451.846 357.19l195.258 136.768c14.205 9.952 18.496 30.874 9.578 46.73-2.429 4.323-5.706 7.978-9.578 10.691l-195.258 136.768c-14.205 9.952-32.95 5.165-41.866-10.691-3.037-5.398-4.646-11.645-4.646-18.019v-273.536c0-18.72 13.597-33.894 30.368-33.894 5.712 0 11.309 1.795 16.144 5.184z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["play-filled"],"defaultCode":59810,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":72,"name":"play-filled","prevSize":32,"id":164,"code":59810},"setIdx":0,"setId":3,"iconIdx":165},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM451.85 357.187l195.254 136.768c14.208 9.949 18.496 30.87 9.581 46.726-2.432 4.326-5.706 7.981-9.581 10.694l-195.254 136.768c-14.208 9.952-32.954 5.165-41.869-10.694-3.037-5.398-4.646-11.642-4.646-18.016v-273.536c0-18.723 13.597-33.898 30.371-33.898 5.709 0 11.306 1.798 16.144 5.187z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["play"],"defaultCode":59811,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":73,"name":"play","prevSize":32,"id":165,"code":59811},"setIdx":0,"setId":3,"iconIdx":166},{"icon":{"paths":["M325.686 430.88l224.49 224.49-126.118 126.118-224.491-224.49 126.12-126.118zM370.941 385.626l192.115-192.117 224.49 224.491-192.115 192.115-224.49-224.49zM585.683 125.627c-12.496-12.497-32.758-12.497-45.254 0l-408.745 408.745c-12.497 12.496-12.497 32.758 0 45.254l269.746 269.747c5.229 5.229 11.818 8.269 18.63 9.123v0.067h0.57c2.278 0.243 4.576 0.243 6.851 0h440.579c17.674 0 32-14.33 32-32 0-17.674-14.326-32.003-32-32.003h-366.566l353.936-353.933c12.496-12.496 12.496-32.758 0-45.254l-269.747-269.746z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["prune"],"defaultCode":59817,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":77,"name":"prune","prevSize":32,"id":166,"code":59817},"setIdx":0,"setId":3,"iconIdx":167},{"icon":{"paths":["M230.486 636.688c-14.92-9.472-34.694-5.056-44.167 9.862-9.473 14.922-5.057 34.694 9.862 44.166l298.666 189.632c10.47 6.646 23.837 6.646 34.304 0l298.669-189.632c14.918-9.472 19.334-29.245 9.862-44.166-9.475-14.918-29.248-19.334-44.166-9.862l-281.517 178.739-281.514-178.739zM186.319 494.848c9.473-14.922 29.247-19.334 44.167-9.862l281.514 178.739 281.517-178.739c14.918-9.472 34.691-5.059 44.166 9.862 9.472 14.918 5.056 34.694-9.862 44.166l-298.669 189.632c-10.467 6.646-23.834 6.646-34.304 0l-298.666-189.632c-14.92-9.472-19.335-29.248-9.862-44.166zM529.152 143.657l298.669 189.629c9.245 5.872 14.848 16.064 14.848 27.014 0 10.954-5.603 21.146-14.848 27.014l-298.669 189.632c-10.467 6.646-23.834 6.646-34.304 0l-298.666-189.632c-9.246-5.869-14.848-16.061-14.848-27.014 0-10.95 5.602-21.142 14.848-27.014l298.666-189.629c10.47-6.647 23.837-6.647 34.304 0zM273.035 360.301l238.965 151.725 238.966-151.725-238.966-151.724-238.965 151.724z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["queue"],"defaultCode":59818,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":78,"name":"queue","prevSize":32,"id":167,"code":59818},"setIdx":0,"setId":3,"iconIdx":168},{"icon":{"paths":["M161.352 800c-11.706 0-22.477-6.39-28.087-16.666s-5.161-22.79 1.169-32.64l112.304-174.694h-69.387c-17.673 0-32-14.326-32-32v-288c0-17.673 14.327-32 32-32h255.999c17.674 0 32 14.327 32 32v288c0 6.138-1.763 12.144-5.082 17.306l-143.999 224c-5.888 9.158-16.029 14.694-26.918 14.694h-128zM332.269 561.306l-112.304 174.694h51.916l129.469-201.398v-246.602h-191.999v224h96c11.706 0 22.479 6.39 28.085 16.666 5.61 10.275 5.162 22.79-1.168 32.64zM577.35 800c-11.706 0-22.477-6.39-28.086-16.666s-5.162-22.79 1.171-32.64l112.304-174.694h-69.389c-17.67 0-32-14.326-32-32v-288c0-17.673 14.33-32 32-32h256c17.674 0 32 14.327 32 32v288c0 6.138-1.763 12.144-5.082 17.306l-144 224c-5.888 9.158-16.029 14.694-26.918 14.694h-128zM748.269 561.306l-112.304 174.694h51.917l129.469-201.398v-246.602h-192v224h96c11.706 0 22.48 6.39 28.086 16.666 5.61 10.275 5.162 22.79-1.168 32.64z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["quote"],"defaultCode":59819,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":79,"name":"quote","prevSize":32,"id":168,"code":59819},"setIdx":0,"setId":3,"iconIdx":169},{"icon":{"paths":["M800 560c0 176.73-143.27 320-320 320-176.731 0-320-143.27-320-320s143.269-320 320-320v-64c-212.077 0-384 171.923-384 384s171.923 384 384 384c212.077 0 384-171.923 384-384 0-10.778-0.445-21.45-1.315-32h-64.266c1.046 10.525 1.581 21.2 1.581 32zM800 128c0-17.673-14.326-32-32-32s-32 14.327-32 32v112h-112c-17.674 0-32 14.327-32 32s14.326 32 32 32h112v112c0 17.674 14.326 32 32 32s32-14.326 32-32v-112h112c17.674 0 32-14.327 32-32s-14.326-32-32-32h-112v-112zM384 528c35.347 0 64-28.653 64-64s-28.653-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64zM640 464c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64zM329.805 605.075c-10.451-14.25-30.477-17.331-44.728-6.88s-17.333 30.477-6.882 44.73c37.658 51.35 77.754 84.624 119.178 102.662 41.741 18.179 82.797 19.99 120.362 11.651 73.469-16.307 132.211-70.87 164.070-114.314 10.451-14.253 7.37-34.278-6.88-44.73-14.253-10.451-34.278-7.37-44.73 6.88-26.81 36.557-73.664 77.994-126.33 89.686-25.501 5.661-52.643 4.474-80.938-7.85-28.608-12.461-60.381-37.187-93.123-81.837z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["reaction-add"],"defaultCode":59820,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":132,"name":"reaction-add","prevSize":32,"id":169,"code":59820},"setIdx":0,"setId":3,"iconIdx":170},{"icon":{"paths":["M832 512c0-176.73-143.27-320-320-320s-320 143.27-320 320c0 176.73 143.27 320 320 320s320-143.27 320-320zM896 512c0 212.077-171.923 384-384 384s-384-171.923-384-384c0-212.077 171.923-384 384-384s384 171.923 384 384zM512 704c-106.038 0-192-85.962-192-192s85.962-192 192-192c106.038 0 192 85.962 192 192s-85.962 192-192 192z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["record"],"defaultCode":59821,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":133,"name":"record","prevSize":32,"id":170,"code":59821},"setIdx":0,"setId":3,"iconIdx":171},{"icon":{"paths":["M896 512h-63.984c0-175.414-145.754-320-328.518-320-115.27 0-215.818 57.513-274.362 144h110.768c17.674 0 32 14.326 32 32s-14.326 32-32 32h-179.904c-17.673 0-32-14.326-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v102.32c71.751-91.401 184.589-150.32 311.498-150.32 216.781 0 392.502 171.923 392.502 384 0 1.114 0.010 2.227 0 3.338v-3.338z","M127.997 512h63.986c0 175.414 145.751 320 328.519 320 115.27 0 215.818-57.514 274.358-144h-110.768c-17.67 0-32-14.326-32-32s14.33-32 32-32h179.907c17.67 0 32 14.326 32 32v192c0 17.674-14.33 32-32 32-17.674 0-32-14.326-32-32v-102.32c-71.754 91.402-184.592 150.32-311.498 150.32-216.782 0-392.505-171.923-392.505-384 0-1.082-0.009-2.166 0-3.245v3.245z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["refresh"],"defaultCode":59822,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":134,"name":"refresh","prevSize":32,"id":171,"code":59822},"setIdx":0,"setId":3,"iconIdx":172},{"icon":{"paths":["M713.718 450.362c0-142.689-115.824-258.362-258.701-258.362-142.878 0-258.704 115.673-258.704 258.362 0 142.691 115.826 258.365 258.704 258.365 142.877 0 258.701-115.674 258.701-258.365zM659.302 699.965c-55.645 45.475-126.774 72.762-204.285 72.762-178.271 0-322.788-144.326-322.788-322.365 0-178.035 144.517-322.362 322.788-322.362 178.269 0 322.787 144.327 322.787 322.362 0 77.408-27.318 148.442-72.854 204.013l186.838 186.592c12.608 12.589 12.608 33.002 0 45.59-12.605 12.589-33.043 12.589-45.648 0l-186.838-186.592z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["search"],"defaultCode":59823,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":136,"name":"search","prevSize":32,"id":172,"code":59823},"setIdx":0,"setId":3,"iconIdx":173},{"icon":{"paths":["M891.494 238.96l-297.475 637.446c-16.854 36.115-69.622 31.459-79.891-7.050l-66-247.498 151.248-189.059-219.994 109.997-226.833-113.418c-35.43-17.715-29.696-69.949 8.733-79.555l681.197-170.3c34.842-8.71 64.202 26.892 49.014 59.436z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["send-filled"],"defaultCode":59824,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":137,"name":"send-filled","prevSize":32,"id":173,"code":59824},"setIdx":0,"setId":3,"iconIdx":174},{"icon":{"paths":["M878.022 192.974c7.85 9.521 9.526 22.708 4.31 33.891l-298.669 640.002c-5.69 12.195-18.403 19.526-31.811 18.342-13.405-1.184-24.637-10.627-28.106-23.632l-81.619-306.070-285.772-142.886c-11.978-5.987-18.959-18.8-17.498-32.112s11.056-24.307 24.048-27.552l682.665-170.668c11.974-2.993 24.598 1.165 32.451 10.686zM505.821 545.968l57.082 214.051 233.027-499.35-533.58 133.395 203.606 101.802 69.51-52.131c14.141-10.605 34.198-7.741 44.8 6.4 10.605 14.138 7.741 34.195-6.4 44.8l-68.045 51.034z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["send"],"defaultCode":59825,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":138,"name":"send","prevSize":32,"id":174,"code":59825},"setIdx":0,"setId":3,"iconIdx":175},{"icon":{"paths":["M421.334 256c0-44.183-35.818-80-80-80s-80 35.817-80 80c0 44.183 35.817 80 80 80s80-35.817 80-80zM465.302 288c-14.211 55.206-64.326 96-123.968 96-59.643 0-109.758-40.794-123.968-96h-89.367c-17.673 0-32-14.327-32-32s14.327-32 32-32h89.367c14.209-55.207 64.324-96 123.968-96 59.642 0 109.757 40.793 123.968 96h430.698c17.674 0 32 14.327 32 32s-14.326 32-32 32h-430.698zM96 768c0-17.674 14.327-32 32-32h89.367c14.209-55.206 64.324-96 123.968-96 60.781 0 111.67 42.365 124.742 99.181 4.208-2.038 8.934-3.181 13.923-3.181h416c17.674 0 32 14.326 32 32s-14.326 32-32 32h-416c-4.989 0-9.715-1.142-13.923-3.181-13.072 56.816-63.962 99.181-124.742 99.181-59.643 0-109.758-40.794-123.968-96h-89.367c-17.673 0-32-14.326-32-32zM341.334 848c44.182 0 80-35.818 80-80s-35.818-80-80-80c-44.183 0-80 35.818-80 80s35.817 80 80 80zM796.029 543.757c-14.122 55.331-64.298 96.243-124.029 96.243s-109.904-40.912-124.029-96.243c-1.302 0.16-2.627 0.243-3.971 0.243h-416c-17.673 0-32-14.326-32-32s14.327-32 32-32h416c1.344 0 2.669 0.083 3.971 0.243 14.125-55.331 64.298-96.243 124.029-96.243s109.907 40.912 124.029 96.243c1.302-0.16 2.627-0.243 3.971-0.243h96c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96c-1.344 0-2.669-0.083-3.971-0.243zM752 512c0-44.182-35.818-80-80-80s-80 35.818-80 80c0 44.182 35.818 80 80 80s80-35.818 80-80z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["settings"],"defaultCode":59826,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":139,"name":"settings","prevSize":32,"id":175,"code":59826},"setIdx":0,"setId":3,"iconIdx":176},{"icon":{"paths":["M690.176 301.708c11.645-11.977 11.645-31.396 0-43.374l-149.091-153.351c-11.645-11.977-30.525-11.977-42.17 0l-149.091 153.351c-11.645 11.977-11.645 31.397 0 43.374s30.525 11.978 42.17 0l98.189-100.993v401.343c0 16.938 13.35 30.669 29.818 30.669s29.818-13.731 29.818-30.669v-401.343l98.189 100.993c11.645 11.978 30.525 11.978 42.17 0z","M221.818 379.274h149.091v59.635h-119.272v387.635h536.728v-387.635h-119.274v-59.635h149.091c16.467 0 29.818 13.35 29.818 29.818v447.274c0 16.467-13.35 29.818-29.818 29.818h-596.364c-16.468 0-29.818-13.35-29.818-29.818v-447.274c0-16.467 13.35-29.818 29.818-29.818z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["share"],"defaultCode":59827,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":244,"name":"share","prevSize":32,"id":176,"code":59827},"setIdx":0,"setId":3,"iconIdx":177},{"icon":{"paths":["M664.083 405.072c11.638-13.299 10.288-33.517-3.011-45.155s-33.517-10.288-45.155 3.011l-125.251 143.142-39.917-45.619c-11.638-13.299-31.853-14.646-45.155-3.011-13.299 11.638-14.646 31.856-3.008 45.155l64 73.142c6.077 6.944 14.854 10.928 24.080 10.928 9.229 0 18.006-3.984 24.083-10.928l149.334-170.666z","M541.99 143.050c-12.854-3.634-26.448-3.753-39.363-0.345l-264.724 69.849c-29.793 7.861-52.548 33.743-54.753 65.633-23.589 341.205 187.752 520.29 276.51 579.794 33.136 22.211 75.363 22.144 108.416-0.259 88.218-59.792 297.117-239.072 272.611-580.214-2.25-31.321-24.339-56.895-53.504-65.14l-245.194-69.318zM518.957 204.587c1.843-0.487 3.786-0.47 5.622 0.049l245.194 69.318c4.294 1.214 6.838 4.781 7.082 8.139 22.15 308.362-165.306 468.851-244.685 522.65-11.437 7.754-25.363 7.792-36.87 0.077-80.086-53.686-269.606-214.054-248.301-522.218 0.234-3.389 2.833-7.004 7.233-8.164l264.725-69.849z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["shield-check"],"defaultCode":59828,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":80,"name":"shield-check","prevSize":32,"id":177,"code":59828},"setIdx":0,"setId":3,"iconIdx":178},{"icon":{"paths":["M513.302 142.705c12.915-3.408 26.509-3.289 39.36 0.345l245.197 69.318c29.165 8.245 51.254 33.818 53.504 65.14 24.506 341.142-184.397 520.422-272.611 580.214-33.053 22.403-75.28 22.47-108.416 0.259-88.762-59.504-300.101-238.589-276.511-579.794 2.205-31.89 24.96-57.772 54.753-65.633l264.725-69.849zM535.251 204.637c-1.834-0.519-3.776-0.536-5.622-0.050l-264.723 69.849c-4.4 1.161-6.999 4.775-7.234 8.164-21.305 308.164 168.216 468.532 248.299 522.218 11.507 7.715 25.434 7.677 36.874-0.077 79.379-53.798 266.832-214.288 244.682-522.65-0.24-3.358-2.784-6.925-7.078-8.139l-245.197-69.317z","M490.672 337.334c-19.76 4.672-47.245 12.31-81.149 24.554 20.81 108.771 53.219 187.014 81.149 238.832v-263.386zM492.867 271.316c33.77-6.898 61.805 19.742 61.805 51.125v360.963c0 17.024-10.333 31.747-25.642 37.52-15.67 5.91-33.779 1.331-44.861-12.675-32.656-41.267-106.323-152.95-141.19-354.563-3.242-18.746 7.066-37.695 25.328-44.726 56.186-21.63 99.094-32.442 124.56-37.644z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["shield"],"defaultCode":59829,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":81,"name":"shield-alt","prevSize":32,"id":178,"code":59829},"setIdx":0,"setId":3,"iconIdx":179},{"icon":{"paths":["M778.64 213.336c-17.674 0-32 14.327-32 32v533.333c0 17.674 14.326 32 32 32s32-14.326 32-32v-533.333c0-17.673-14.326-32-32-32z","M600.87 341.334c-17.674 0-32 14.33-32 32v405.334c0 17.674 14.326 32 32 32s32-14.326 32-32v-405.334c0-17.67-14.326-32-32-32z","M423.104 810.669c-17.674 0-32-14.326-32-32v-277.334c0-17.67 14.326-32 32-32 17.67 0 32 14.33 32 32v277.334c0 17.674-14.33 32-32 32z","M245.333 597.334c-17.673 0-32 14.33-32 32v149.334c0 17.674 14.327 32 32 32s32-14.326 32-32v-149.334c0-17.67-14.327-32-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["signal"],"defaultCode":59830,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":82,"name":"signal","prevSize":32,"id":179,"code":59830},"setIdx":0,"setId":3,"iconIdx":180},{"icon":{"paths":["M289.362 192c13.364 0 25.321 8.305 29.987 20.829l96.001 257.699c6.17 16.56-2.256 34.986-18.816 41.155-16.563 6.17-34.989-2.253-41.158-18.816l-20.477-54.963h-91.074l-20.476 54.963c-6.17 16.563-24.597 24.986-41.158 18.816s-24.986-24.595-18.816-41.155l96-257.699c4.666-12.524 16.622-20.829 29.987-20.829zM311.058 373.904l-21.695-58.238-21.695 58.238h43.391z","M522.131 626.435c-12.154 12.829-11.606 33.082 1.222 45.238l160 151.587c12.342 11.693 31.674 11.693 44.016 0l160-151.587c12.832-12.157 13.376-32.41 1.222-45.238s-32.41-13.376-45.238-1.222l-105.99 100.419v-501.632c0-17.673-14.326-32-32-32s-32 14.327-32 32v501.632l-105.994-100.419c-12.829-12.154-33.082-11.606-45.238 1.222z","M193.362 570.947c-17.673 0-32 14.326-32 32 0 17.67 14.327 32 32 32h116.145l-139.065 142.73c-8.979 9.216-11.565 22.915-6.564 34.771 5.001 11.853 16.617 19.562 29.484 19.562h192.001c17.674 0 32-14.326 32-32s-14.326-32-32-32h-116.146l139.064-142.733c8.979-9.216 11.565-22.915 6.563-34.768-4.998-11.856-16.614-19.562-29.482-19.562h-192.001z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["sort-az"],"defaultCode":59831,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":83,"name":"sort-az","prevSize":32,"id":180,"code":59831},"setIdx":0,"setId":3,"iconIdx":181},{"icon":{"paths":["M919.258 667.229c12.605-12.253 12.877-32.394 0.605-44.982-12.269-12.589-32.435-12.858-45.040-0.605l-106.112 103.155v-500.8c0-17.568-14.259-31.81-31.853-31.81-17.59 0-31.85 14.242-31.85 31.81v500.8l-106.115-103.155c-12.605-12.253-32.768-11.984-45.040 0.605-12.269 12.589-11.997 32.73 0.608 44.982l160.179 155.718c12.368 12.019 32.070 12.019 44.435 0l160.182-155.718zM560.659 333.667c17.59 0 31.85-14.243 31.85-31.811s-14.259-31.809-31.85-31.809h-432.49c-17.591 0-31.852 14.242-31.852 31.809s14.26 31.811 31.852 31.811h432.49zM464.55 536.099c17.59 0 31.85-14.243 31.85-31.811 0-17.565-14.259-31.808-31.85-31.808h-336.381c-17.591 0-31.852 14.24-31.852 31.808s14.26 31.811 31.852 31.811h336.381zM384.458 722.96c17.594 0 31.853-14.24 31.853-31.808s-14.259-31.811-31.853-31.811h-256.289c-17.591 0-31.852 14.243-31.852 31.811s14.26 31.808 31.852 31.808h256.289z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["sort"],"defaultCode":59832,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":84,"name":"sort","prevSize":32,"id":181,"code":59832},"setIdx":0,"setId":3,"iconIdx":182},{"icon":{"paths":["M593.939 170.244c-20.867-57.726-103.155-55.816-121.322 2.815l-58.976 190.348h-221.513c-58.947 0-86.549 72.944-42.37 111.968l157.591 139.206-53.209 216.928c-14.17 57.77 51.25 101.936 99.533 67.197l177.741-127.875 177.741 127.875c48.285 34.739 113.706-9.427 99.536-67.197l-53.386-217.651 147.888-139.968c42.032-39.779 13.878-110.483-43.99-110.483h-195.443l-69.821-193.164z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["star-filled"],"defaultCode":59833,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":85,"name":"star-filled","prevSize":32,"id":182,"code":59833},"setIdx":0,"setId":3,"iconIdx":183},{"icon":{"paths":["M472.618 173.508c18.166-58.554 100.454-60.461 121.322-2.812l69.821 192.91h195.44c57.872 0 86.026 70.611 43.994 110.336l-147.888 139.782 53.386 217.363c14.17 57.696-51.251 101.805-99.536 67.11l-177.741-127.709-177.741 127.709c-48.283 34.691-113.703-9.414-99.533-67.11l53.209-216.64-157.591-139.024c-44.179-38.973-16.577-111.818 42.37-111.818h221.513l58.976-190.098zM603.574 385.334l-69.824-192.91-58.976 190.098c-8.304 26.758-33.085 45.002-61.133 45.002h-221.513l157.59 139.021c17.837 15.731 25.456 40.048 19.789 63.13l-53.209 216.643 177.74-127.709c22.33-16.045 52.426-16.045 74.755 0l177.738 127.709-53.386-217.363c-5.478-22.317 1.456-45.856 18.166-61.648l147.888-139.782h-195.44c-26.957 0-51.024-16.87-60.186-42.189z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["star"],"defaultCode":59834,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":86,"name":"star","prevSize":32,"id":183,"code":59834},"setIdx":0,"setId":3,"iconIdx":184},{"icon":{"paths":["M499.952 539.082c2.714 0.819 5.462 1.629 8.25 2.429 45.341 13.12 76.643 26.47 93.904 40.048 17.264 13.35 25.894 32.339 25.894 56.966s-9.322 44.074-27.965 58.346c-18.643 14.269-45.456 21.405-80.442 21.405-37.514 0-67.552-8.749-90.106-26.24-15.216-12.077-25.245-27.094-30.090-45.050-3.942-14.605-15.664-27.104-30.794-27.104h-11.843c-15.13 0-27.722 12.378-24.893 27.242 3.514 18.47 10.736 35.514 21.667 51.126 16.339 23.018 39.472 41.2 69.392 54.547 29.92 13.12 62.144 19.68 96.666 19.68 53.168 0 95.632-12.198 127.395-36.595 31.76-24.627 47.642-57.309 47.642-98.048 0-25.549-5.754-47.757-17.261-66.63-6.947-11.626-16.25-22.33-27.91-32.122h99.962c15.13 0 27.395-12.266 27.395-27.395s-12.266-27.392-27.395-27.392h-217.398c-1.709-0.493-3.437-0.986-5.178-1.472-41.658-11.738-71.235-24.627-88.726-38.669-17.261-14.269-25.894-31.645-25.894-52.131 0-25.546 9.091-45.456 27.277-59.725 18.41-14.5 43.958-21.75 76.64-21.75 35.216 0 62.49 8.746 81.824 26.24 13.139 11.731 21.814 26.496 26.022 44.288 3.485 14.723 15.242 27.174 30.371 27.174h11.84c15.13 0 27.702-12.374 24.88-27.238-3.331-17.552-9.974-34.134-19.923-49.75-14.733-23.475-35.677-41.888-62.835-55.237-26.928-13.349-57.654-20.024-92.179-20.024-50.634 0-91.834 13.004-123.594 39.012-31.533 25.779-47.299 58.46-47.299 98.047 0 34.986 12.89 64.445 38.669 88.381 1.050 0.957 2.125 1.907 3.222 2.854h-112.56c-15.13 0-27.395 12.262-27.395 27.392s12.265 27.395 27.395 27.395h225.373z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["strike"],"defaultCode":59846,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":94,"name":"strike","prevSize":32,"id":184,"code":59846},"setIdx":0,"setId":3,"iconIdx":185},{"icon":{"paths":["M481.35 117.336c0-17.673 14.326-32 32-32s32 14.327 32 32v106.667c0 17.673-14.326 32-32 32s-32-14.327-32-32v-106.667zM771.392 214.631c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-75.411 75.413c-12.499 12.496-32.758 12.496-45.254 0-12.499-12.496-12.499-32.759 0-45.255l75.411-75.412zM336.73 694.63c-12.499-12.496-32.759-12.496-45.256 0l-75.495 75.498c-12.497 12.496-12.497 32.755 0 45.254 12.497 12.496 32.758 12.496 45.255 0l75.496-75.498c12.496-12.496 12.496-32.755 0-45.254zM481.35 800.003c0-17.674 14.326-32 32-32s32 14.326 32 32v106.669c0 17.67-14.326 32-32 32s-32-14.33-32-32v-106.669zM213.352 212.001c-12.497 12.497-12.497 32.758 0 45.255l75.349 75.348c12.497 12.496 32.758 12.496 45.254 0 12.499-12.496 12.496-32.757 0-45.254l-75.348-75.349c-12.497-12.497-32.758-12.497-45.255 0zM695.978 739.885c-12.496-12.496-12.496-32.758 0-45.254 12.499-12.496 32.758-12.496 45.254 0l75.331 75.328c12.496 12.496 12.496 32.758 0 45.254-12.499 12.496-32.758 12.496-45.258 0l-75.328-75.328zM87.751 512.003c0 17.674 14.327 32 32 32h106.667c17.673 0 32-14.326 32-32s-14.327-32-32-32h-106.667c-17.673 0-32 14.326-32 32zM801.35 544.003c-17.674 0-32-14.326-32-32s14.326-32 32-32h106.669c17.67 0 32 14.326 32 32s-14.33 32-32 32h-106.669zM668.17 512c0-85.504-69.315-154.816-154.819-154.816-85.507 0-154.819 69.312-154.819 154.816 0 85.507 69.312 154.819 154.819 154.819 85.504 0 154.819-69.312 154.819-154.819zM726.682 512c0 117.821-95.51 213.334-213.331 213.334s-213.335-95.514-213.335-213.334c0-117.821 95.514-213.332 213.335-213.332s213.331 95.511 213.331 213.332z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["sun"],"defaultCode":59847,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":95,"name":"sun","prevSize":32,"id":185,"code":59847},"setIdx":0,"setId":3,"iconIdx":186},{"icon":{"paths":["M930.704 512c0 229.75-186.25 416-416 416s-415.999-186.25-415.999-416c0-229.75 186.25-416 415.999-416s416 186.25 416 416zM570.49 859.603l-41.827-156.102c-4.611 0.33-9.264 0.499-13.958 0.499-4.57 0-9.101-0.16-13.594-0.474l-41.837 156.134c18.058 2.854 36.573 4.339 55.43 4.339 18.986 0 37.616-1.504 55.786-4.397zM438.893 688.451c-47.549-20.454-85.181-59.571-103.674-108.125l-155.029 41.539c33.968 103.485 114.617 185.805 217.045 222.058l41.658-155.472zM162.705 512c0 16.090 1.080 31.926 3.17 47.443l156.906-42.042c-0.051-1.795-0.077-3.594-0.077-5.402 0-4.909 0.186-9.776 0.547-14.595l-156.051-41.814c-2.958 18.368-4.496 37.21-4.496 56.41zM396.31 180.407c-99.16 35.408-177.786 114.033-213.196 213.19l155.535 41.677c19.357-44.352 54.982-79.978 99.334-99.331l-41.674-155.536zM514.704 160c-19.197 0-38.035 1.537-56.4 4.494l41.814 156.053c4.813-0.362 9.68-0.547 14.586-0.547 5.030 0 10.019 0.192 14.95 0.573l41.808-156.021c-18.477-2.995-37.437-4.552-56.758-4.552zM632.512 843.802c102.659-36.451 183.392-119.194 217.094-223.12l-154.973-41.526c-18.291 48.982-56.010 88.493-103.786 109.155l41.664 155.491zM863.699 558.198c1.984-15.117 3.005-30.538 3.005-46.198 0-18.771-1.469-37.197-4.298-55.171l-156.157 41.84c0.301 4.406 0.454 8.851 0.454 13.331 0 1.376-0.013 2.752-0.042 4.122l157.037 42.077zM846.714 394.774c-35.165-99.6-113.885-178.641-213.277-214.247l-41.68 155.559c44.582 19.555 80.314 55.565 99.504 100.342l155.453-41.654zM642.704 512c0-70.691-57.306-128-128-128-70.691 0-128 57.309-128 128s57.309 128 128 128c70.694 0 128-57.309 128-128z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["support"],"defaultCode":59848,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":96,"name":"support","prevSize":32,"id":186,"code":59848},"setIdx":0,"setId":3,"iconIdx":187},{"icon":{"paths":["M368 412.982c-53.592 0-96-42.877-96-94.491 0-51.616 42.408-94.491 96-94.491 53.594 0 96 42.876 96 94.491 0 51.614-42.406 94.491-96 94.491zM368 476.982c88.365 0 160-70.96 160-158.491s-71.635-158.491-160-158.491c-88.365 0-160 70.959-160 158.491s71.635 158.491 160 158.491zM713.6 397.133c-35.92 0-64-28.685-64-62.794s28.080-62.792 64-62.792c35.92 0 64 28.684 64 62.792s-28.080 62.794-64 62.794zM713.6 461.133c70.691 0 128-56.768 128-126.794s-57.309-126.792-128-126.792c-70.691 0-128 56.767-128 126.792s57.309 126.794 128 126.794zM197.459 527.267c27.344-8.707 56.67-9.242 84.319-1.539l48.491 13.51c24.205 6.742 49.882 6.275 73.824-1.347l30.099-9.584c29.475-9.386 61.085-9.962 90.89-1.658 67.962 18.934 114.918 80.333 114.918 150.269v91.987c0 52.518-42.979 95.094-96 95.094h-352c-53.019 0-96-42.576-96-95.094v-103.766c0-62.909 40.999-118.621 101.459-137.872zM264.451 586.758c-15.545-4.333-32.034-4.032-47.407 0.864-33.993 10.822-57.044 42.147-57.044 77.517v103.766c0 17.507 14.327 31.699 32 31.699h352c17.674 0 32-14.192 32-31.699v-91.987c0-41.533-27.885-77.997-68.246-89.242-17.699-4.931-36.474-4.589-53.978 0.986l-30.099 9.584c-35.91 11.434-74.426 12.138-110.737 2.019l-48.489-13.507zM691.2 778.717h140.8c53.021 0 96-42.979 96-96v-30.611c0-56.877-38.614-106.49-93.747-120.454-21.398-5.418-43.853-5.040-65.056 1.098l-16.4 4.746c-21.843 6.323-44.973 6.714-67.018 1.13l-29.805-7.549c-19.907-5.043-40.797-4.691-60.522 1.018-1.066 0.31-2.122 0.634-3.174 0.97 10.71 4.048 20.896 9.539 30.253 16.374l2.429 1.776 15.040 13.206c9.939 8.726 18.141 19.248 24.182 31.014l2.208 4.301 3.677 0.931c33.062 8.374 67.76 7.789 100.525-1.693l16.4-4.749c10.282-2.976 21.171-3.158 31.546-0.531 26.736 6.771 45.462 30.832 45.462 58.413v30.611c0 17.674-14.326 32-32 32h-140.8v64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["team"],"defaultCode":59849,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":97,"name":"team","prevSize":32,"id":187,"code":59849},"setIdx":0,"setId":3,"iconIdx":188},{"icon":{"paths":["M223.311 308.609c-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-9.348 103.235 27.547 175.997 86.848 226.374 60.642 51.52 146.602 80.998 235.29 90.893 88.611 9.885 186.221 1.398 263.341-14.973 38.56-8.189 70.928-18.125 93.888-28.128 8.906-3.882 15.837-7.536 20.941-10.765-2.374-1.514-5.245-3.197-8.672-5.030-8.886-4.749-19.059-9.261-29.613-13.894l-1.843-0.81c-9.315-4.083-19.725-8.65-27.613-13.078-14.291-8.026-28.317-17.155-38.544-26.867-5.034-4.781-10.762-11.194-14.595-19.184-4.054-8.454-6.96-21.078-1.261-34.435 30.816-72.186 45.459-111.725 52.554-137.834 6.621-24.378 6.621-36.653 6.621-56.17v-0.179c0-15.51-8.979-86.595-53.776-152.876-43.376-64.174-121.398-125.729-264.832-125.729-129.725 0-207.83 53.576-254.529 118.696zM173.267 272.433c58.132-81.063 154.749-144.433 304.573-144.433 164.896 0 261.594 72.589 315.859 152.878 52.838 78.181 64.416 161.881 64.416 187.641 0 21.654-0.022 40.336-8.797 72.64-7.834 28.835-22.627 68.614-50.048 133.424 5.069 4.032 12.592 9.005 22.506 14.57 5.12 2.877 12.995 6.339 24.054 11.194 10.266 4.506 22.582 9.93 33.891 15.978 10.848 5.798 23.526 13.571 32.954 23.738 9.859 10.63 20.208 28.87 12.816 51.139-4.87 14.672-16.182 25.091-25.61 32.016-10.24 7.52-22.947 14.278-36.858 20.342-27.949 12.176-64.582 23.181-105.68 31.907-82.198 17.453-186.522 26.688-282.909 15.936-96.31-10.746-195.346-43.178-268.313-105.165-74.031-62.893-119.295-154.778-108.551-277.856 0.276-63.411 19.117-157.053 75.696-235.948zM333.952 422.051c0-17.648 14.25-31.955 31.83-31.955h183.008c17.578 0 31.827 14.307 31.827 31.955s-14.25 31.955-31.827 31.955h-183.008c-17.581 0-31.83-14.307-31.83-31.955zM365.782 539.709c-17.581 0-31.83 14.307-31.83 31.955s14.25 31.955 31.83 31.955h224.118c17.578 0 31.827-14.307 31.827-31.955s-14.25-31.955-31.827-31.955h-224.118z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["threads"],"defaultCode":59850,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":98,"name":"threads","prevSize":32,"id":188,"code":59850},"setIdx":0,"setId":3,"iconIdx":189},{"icon":{"paths":["M353.354 320c0-17.673 14.326-32 32-32h256c17.674 0 32 14.327 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M385.354 416c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M481.354 448c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M641.354 416c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M353.354 576c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M513.354 544c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M609.354 576c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M385.354 672c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M481.354 704c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M641.354 672c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M289.353 160h448.001c35.344 0 64 28.654 64 64v576c0 35.347-28.656 64-64 64h-448.001c-35.346 0-64-28.653-64-64v-576c0-35.346 28.654-64 64-64zM289.353 224v576h448.001v-576h-448.001z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["total"],"defaultCode":59851,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":99,"name":"total","prevSize":32,"id":189,"code":59851},"setIdx":0,"setId":3,"iconIdx":190},{"icon":{"paths":["M713.613 91.356c13.162-11.794 33.392-10.685 45.187 2.477l129.034 144c10.89 12.154 10.89 30.556 0 42.71l-129.034 144.001c-11.795 13.162-32.026 14.269-45.187 2.477-13.162-11.795-14.272-32.026-2.477-45.187l81.222-90.646h-216.358c-17.674 0-32-14.327-32-32s14.326-32 32-32h216.358l-81.222-90.645c-11.795-13.162-10.685-33.393 2.477-45.187zM340.026 464.461c8.586-15.45 28.067-21.018 43.514-12.432l128.461 71.366 128.461-71.366c15.446-8.586 34.928-3.018 43.514 12.432 8.582 15.45 3.014 34.931-12.435 43.514l-159.539 88.634-159.539-88.634c-15.45-8.582-21.018-28.064-12.435-43.514zM192 288v448h640v-192c0-17.674 14.326-32 32-32s32 14.326 32 32v224c0 17.674-14.326 32-32 32h-704c-17.673 0-32-14.326-32-32v-512c0-17.673 14.327-32 32-32h272c17.674 0 32 14.327 32 32s-14.326 32-32 32h-240z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["transcript"],"defaultCode":59852,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":100,"name":"transcript","prevSize":32,"id":190,"code":59852},"setIdx":0,"setId":3,"iconIdx":191},{"icon":{"paths":["M384 320c0-17.673-14.326-32-32-32s-32 14.327-32 32v256c0 106.038 85.962 192 192 192s192-85.962 192-192v-256c0-17.673-14.326-32-32-32s-32 14.327-32 32v256c0 70.691-57.309 128-128 128s-128-57.309-128-128v-256zM352 856c-13.254 0-24 10.746-24 24s10.746 24 24 24h320c13.254 0 24-10.746 24-24s-10.746-24-24-24h-320z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["underline"],"defaultCode":59853,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":101,"name":"underline","prevSize":32,"id":191,"code":59853},"setIdx":0,"setId":3,"iconIdx":192},{"icon":{"paths":["M512 832c176.73 0 320-143.27 320-320s-143.27-320-320-320c-111.712 0-210.056 57.244-267.295 144h107.295c17.674 0 32 14.326 32 32s-14.326 32-32 32h-176c-17.673 0-32-14.326-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v101.364c70.228-90.856 180.282-149.364 304-149.364 212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384h64c0 176.73 143.27 320 320 320z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["undo"],"defaultCode":59854,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":102,"name":"undo","prevSize":32,"id":192,"code":59854},"setIdx":0,"setId":3,"iconIdx":193},{"icon":{"paths":["M467.808 512c0-63.322-61.053-128-153.903-128s-153.905 64.678-153.905 128c0 63.322 61.054 128 153.905 128s153.903-64.678 153.903-128zM512 592.099c34.454 66.042 110.195 111.901 198.096 111.901 120.346 0 217.904-85.962 217.904-192s-97.558-192-217.904-192c-87.901 0-163.642 45.859-198.096 111.901-34.451-66.042-110.195-111.901-198.095-111.901-120.345 0-217.905 85.962-217.905 192s97.559 192 217.905 192c87.9 0 163.644-45.859 198.095-111.901zM864 512c0 63.322-61.053 128-153.904 128s-153.904-64.678-153.904-128c0-63.322 61.053-128 153.904-128s153.904 64.678 153.904 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["Unlimited"],"defaultCode":59855,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":103,"name":"Unlimited","prevSize":32,"id":193,"code":59855},"setIdx":0,"setId":3,"iconIdx":194},{"icon":{"paths":["M829.168 153.372c12.515-12.497 32.803-12.497 45.315 0 12.515 12.497 12.515 32.758 0 45.255l-672.887 672c-12.513 12.496-32.801 12.496-45.315 0s-12.513-32.758 0-45.254l672.887-672zM110.155 480.051c101.936-153.699 303.797-327.676 542.114-225.436l-49.578 49.512c-56.528-19.209-108.077-19.504-153.526-9.726-114.906 24.721-215.653 118.392-280.79 213.871 38.633 48 75.969 86.822 111.862 117.885l-45.363 45.302c-39.684-34.736-80.189-77.437-121.317-129.181-14.248-17.923-16.056-43.146-3.402-62.227zM797.981 350.454l-45.328 45.27c35.546 31.427 72.336 70.947 110.186 120.080-61.546 95.187-158.656 188.682-272.125 213.626-46.752 10.278-100.624 9.734-160.592-11.603l-49.331 49.267c244.662 107.334 443.389-69.158 540.778-224.253 11.674-18.589 9.894-42.656-3.395-60.128-40.493-53.235-80.64-96.931-120.192-132.259zM514.982 347.43c13.709 0 27.037 1.571 39.802 4.541l-203.738 203.469c-3.901-13.837-5.981-28.403-5.981-43.44 0-90.89 76.074-164.57 169.917-164.57zM679.091 469.184l-203.264 202.998c12.57 2.87 25.68 4.39 39.155 4.39 93.843 0 169.917-73.68 169.917-164.573 0-14.81-2.019-29.162-5.808-42.816z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["unread-on-top-disabled"],"defaultCode":59856,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":104,"name":"unread-on-top-disabled","prevSize":32,"id":194,"code":59856},"setIdx":0,"setId":3,"iconIdx":195},{"icon":{"paths":["M589.36 729.43c-107.366 23.603-252.288-9.875-422.339-221.158 65.137-95.478 165.885-189.15 280.79-213.871 108.314-23.302 251.286 10.604 413.674 221.404-61.546 95.187-158.653 188.682-272.125 213.626zM916.819 482.714c-347.59-456.963-669.742-211.156-808.018-2.662-12.655 19.082-10.846 44.304 3.402 62.227 362.786 456.419 677.038 209.142 808.011 0.563 11.674-18.589 9.894-42.656-3.395-60.128zM619.462 512c0-53.709-45.517-100.57-105.834-100.57s-105.834 46.861-105.834 100.57c0 53.709 45.517 100.573 105.834 100.573s105.834-46.864 105.834-100.573zM683.546 512c0 90.893-76.074 164.573-169.917 164.573s-169.917-73.68-169.917-164.573c0-90.89 76.074-164.57 169.917-164.57s169.917 73.68 169.917 164.57z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["unread-on-top"],"defaultCode":59857,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":105,"name":"unread-on-top","prevSize":32,"id":195,"code":59857},"setIdx":0,"setId":3,"iconIdx":196},{"icon":{"paths":["M273.128 356.678c-6.62 27.766-2.384 63.757 25.498 105.581l33.166 49.75h-59.792c-44.011 0-70.484 14.874-86.279 33.619-16.496 19.578-24.573 47.264-23.734 77.491 0.841 30.262 10.601 59.968 25.818 81.312 15.127 21.216 33.404 31.578 52.195 31.578h143.999v64h-144c-45.209 0-80.932-25.642-104.306-58.426-23.283-32.656-36.522-74.95-37.682-116.688-1.16-41.773 9.763-86.083 38.766-120.506 20.726-24.598 49.155-42.32 84.825-50.784-16.1-39.011-19.009-77.050-10.731-111.77 11.253-47.2 42.305-84.492 80.791-107.342 38.4-22.798 85.677-32.139 131.303-21.965 35.584 7.935 68.909 27.48 95.251 59.554 53.75-35.147 127.584-30.892 182.483-2.495 34.438 17.812 64.794 46.382 81.437 85.010 12.294 28.531 16.438 61.011 10.608 96.205 46.112 6.682 81.507 25.155 105.616 53.456 30.346 35.626 38.102 81.35 33.443 123.283-4.659 41.917-21.946 83.485-46.544 115.114-24.061 30.934-59.354 57.354-101.261 57.354h-144v-64h144c14.093 0 32.8-9.581 50.742-32.646 17.398-22.371 30.112-52.806 33.453-82.89 3.341-30.067-2.902-56.339-18.554-74.714-15.222-17.869-44.035-33.75-97.642-33.75h-45.686l15.613-42.938c13.546-37.251 11.091-66.742 1.437-89.149-9.856-22.87-28.502-41.302-52.064-53.488-49.587-25.649-107.475-18.625-134.717 14.064l-30.134 36.16-22.541-41.325c-19.757-36.219-47.232-54.175-74.87-60.339-28.378-6.327-59.098-0.669-84.701 14.53-25.512 15.148-44.461 38.855-51.208 67.152zM630.979 588.778l-96-99.050c-6.029-6.218-14.32-9.728-22.979-9.728s-16.95 3.51-22.979 9.728l-96 99.050c-12.298 12.691-11.981 32.95 0.707 45.251 12.691 12.298 32.95 11.981 45.251-0.707l41.021-42.326v273.005c0 17.674 14.326 32 32 32s32-14.326 32-32v-273.005l41.021 42.326c12.301 12.688 32.56 13.005 45.251 0.707 12.691-12.301 13.005-32.56 0.707-45.251z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["upload"],"defaultCode":59858,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":106,"name":"upload","prevSize":32,"id":196,"code":59858},"setIdx":0,"setId":3,"iconIdx":197},{"icon":{"paths":["M553.411 326.282c0 91.578-75.846 165.818-169.411 165.818-93.564 0-169.412-74.24-169.412-165.818 0-91.581 75.848-165.821 169.412-165.821 93.565 0 169.411 74.24 169.411 165.821zM485.648 326.282c0-54.949-45.51-99.493-101.648-99.493s-101.647 44.544-101.647 99.493c0 54.947 45.509 99.491 101.647 99.491s101.648-44.544 101.648-99.491z","M203.427 511.232c28.952-9.11 60.004-9.67 89.279-1.61l51.342 14.131c25.632 7.056 52.819 6.566 78.166-1.408l31.872-10.026c31.206-9.821 64.678-10.422 96.234-1.738 71.962 19.811 121.68 84.051 121.68 157.219v96.24c0 54.947-45.51 99.491-101.648 99.491h-372.705c-56.138 0-101.647-44.544-101.647-99.491v-108.566c0-65.814 43.411-124.106 107.427-144.243zM274.359 573.472c-16.46-4.531-33.918-4.218-50.196 0.906-35.992 11.322-60.399 44.093-60.399 81.098v108.566c0 18.317 15.17 33.165 33.882 33.165h372.705c18.714 0 33.882-14.848 33.882-33.165v-96.24c0-43.453-29.523-81.603-72.259-93.366-18.739-5.158-38.618-4.8-57.152 1.030l-31.872 10.026c-38.022 11.962-78.803 12.698-117.248 2.115l-51.343-14.134z","M797.091 189.321c0-15.913-13.024-28.812-29.091-28.812s-29.091 12.9-29.091 28.812v100.844h-101.818c-16.067 0-29.091 12.9-29.091 28.812s13.024 28.812 29.091 28.812h101.818v100.845c0 15.914 13.024 28.813 29.091 28.813s29.091-12.899 29.091-28.813v-100.845h101.818c16.067 0 29.091-12.899 29.091-28.812s-13.024-28.812-29.091-28.812h-101.818v-100.844z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["user-add"],"defaultCode":59859,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":107,"name":"user-add","prevSize":32,"id":197,"code":59859},"setIdx":0,"setId":3,"iconIdx":198},{"icon":{"paths":["M464 318.747c0-51.548-42.406-94.366-96-94.366-53.592 0-96 42.819-96 94.366s42.408 94.367 96 94.367c53.594 0 96-42.819 96-94.367zM528 318.747c0 87.416-71.635 158.284-160 158.284s-160-70.867-160-158.284c0-87.417 71.635-158.282 160-158.282s160 70.865 160 158.282zM281.778 525.712c-27.649-7.693-56.976-7.158-84.319 1.536-60.46 19.226-101.459 74.864-101.459 137.69v103.629c0 52.451 42.981 94.97 96 94.97h352c3.606 0 7.165-0.195 10.666-0.579v-64.534c-3.334 1.168-6.925 1.802-10.666 1.802h-352c-17.673 0-32-14.173-32-31.658v-103.629c0-35.325 23.051-66.605 57.044-77.414 15.373-4.89 31.862-5.187 47.407-0.864l48.489 13.491c36.311 10.102 74.827 9.402 110.737-2.016l30.099-9.571c17.504-5.568 36.278-5.91 53.978-0.986 18.899 5.261 35.066 16.042 46.912 30.282v-79.712c-9.309-4.749-19.203-8.627-29.584-11.517-29.805-8.291-61.414-7.715-90.89 1.654l-30.099 9.574c-23.942 7.61-49.619 8.080-73.824 1.344l-48.491-13.491zM763.366 489.709c-12.326-12.646-32.586-12.918-45.248-0.608-12.666 12.31-12.938 32.544-0.611 45.19l102.842 105.51h-324.349c-17.674 0-32 14.307-32 31.958 0 17.648 14.326 31.958 32 31.958h324.349l-102.842 105.507c-12.326 12.65-12.054 32.88 0.611 45.194 12.662 12.31 32.922 12.038 45.248-0.611l155.718-159.757c12.093-12.406 12.093-32.176 0-44.582l-155.718-159.76z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["user-forward"],"defaultCode":59860,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":108,"name":"user-forward","prevSize":32,"id":198,"code":59860},"setIdx":0,"setId":3,"iconIdx":199},{"icon":{"paths":["M609.354 336c0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96s96-42.979 96-96zM673.354 336c0 88.365-71.635 160-160 160s-160-71.635-160-160c0-88.365 71.635-160 160-160s160 71.635 160 160zM413.805 551.802c-24.621-5.77-50.285-5.366-74.714 1.178-67.086 17.968-113.738 78.762-113.738 148.211v66.81c0 53.021 42.98 96 96 96h384c53.021 0 96-42.979 96-96v-58.531c0-74.301-51.149-138.826-123.488-155.779l-6.458-1.514c-25.674-6.016-52.435-5.594-77.907 1.229l-49.626 13.293c-20.378 5.456-41.789 5.795-62.326 0.979l-67.744-15.875zM355.651 614.8c14.237-3.814 29.197-4.051 43.549-0.688l67.744 15.878c30.806 7.219 62.925 6.714 93.488-1.472l49.629-13.293c15.283-4.096 31.341-4.349 46.742-0.736l6.458 1.51c43.402 10.173 74.093 48.89 74.093 93.469v58.531c0 17.674-14.326 32-32 32h-384c-17.673 0-32-14.326-32-32v-66.81c0-40.483 27.193-75.917 66.298-86.39z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["user"],"defaultCode":59861,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":109,"name":"user","prevSize":32,"id":199,"code":59861},"setIdx":0,"setId":3,"iconIdx":200},{"icon":{"paths":["M201.583 672c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 576c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M201.583 480c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 384c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M201.583 288c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M329.584 192c-17.674 0-32.001 14.327-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.327 32-32s-14.326-32-32-32h-544z","M201.583 864c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 768c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["view-condensed"],"defaultCode":59862,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":110,"name":"view-condensed","prevSize":32,"id":200,"code":59862},"setIdx":0,"setId":3,"iconIdx":201},{"icon":{"paths":["M288 192c0-17.673 14.327-32 32-32h544c17.674 0 32 14.327 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.327-32-32zM288 288c0-17.673 14.327-32 32-32h448c17.674 0 32 14.327 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.327-32-32zM192 304c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M288 464c0-17.674 14.327-32 32-32h544c17.674 0 32 14.326 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.326-32-32zM288 560c0-17.674 14.327-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.326-32-32zM192 576c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M288 736c0-17.674 14.327-32 32-32h544c17.674 0 32 14.326 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.326-32-32zM288 832c0-17.674 14.327-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.326-32-32zM192 848c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["view-extended"],"defaultCode":59863,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":111,"name":"view-extended","prevSize":32,"id":201,"code":59863},"setIdx":0,"setId":3,"iconIdx":202},{"icon":{"paths":["M192 320c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M320 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h544c17.674 0 32-14.327 32-32s-14.326-32-32-32h-544z","M192 576c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M320 480c-17.673 0-32 14.326-32 32s14.327 32 32 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M192 832c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M320 736c-17.673 0-32 14.326-32 32s14.327 32 32 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["view-medium"],"defaultCode":59864,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":112,"name":"view-medium","prevSize":32,"id":202,"code":59864},"setIdx":0,"setId":3,"iconIdx":203},{"icon":{"paths":["M640.854 256c26.512 0 48-21.49 48-48s-21.488-48-48-48c-26.509 0-48 21.49-48 48s21.491 48 48 48zM640.854 320c61.856 0 112-50.144 112-112s-50.144-112-112-112c-61.856 0-112 50.144-112 112s50.144 112 112 112zM592.854 416v256h-160v128h32v-96h224v-288h-96zM528.854 768h160c35.347 0 64-28.653 64-64v-288c0-35.347-28.653-64-64-64h-96c-35.344 0-64 28.653-64 64v192h-96c-35.344 0-64 28.653-64 64v128c0 35.347 28.656 64 64 64h32c35.347 0 64-28.653 64-64v-32zM784.854 448c0-17.674 14.326-32 32-32s32 14.326 32 32v384c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32s14.326-32 32-32h192v-352zM368.403 401.52c9.677-9.059 10.176-24.246 1.117-33.923l-48.272-51.558v-47.925c0-13.255-10.746-24-24-24s-24 10.745-24 24v57.406c0 6.093 2.316 11.955 6.48 16.403l54.752 58.48c9.059 9.677 24.246 10.176 33.923 1.117zM170.974 414.278c53.308 74.218 156.687 91.171 230.908 37.862 10.765-7.731 25.76-5.274 33.494 5.491 7.731 10.768 5.274 25.763-5.494 33.494-95.75 68.771-229.121 46.902-297.894-48.848s-46.902-229.123 48.848-297.895c75.545-54.26 174.453-52.073 246.597-1.796 10.874 7.578 13.546 22.538 5.968 33.412s-22.538 13.547-33.411 5.968c-55.971-39.005-132.65-40.618-191.153 1.402-74.219 53.308-91.171 156.688-37.864 230.909z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["waiting-on-me"],"defaultCode":59865,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":113,"name":"waiting-on-me","prevSize":32,"id":203,"code":59865},"setIdx":0,"setId":3,"iconIdx":204},{"icon":{"paths":["M512 352.003c17.674 0 32 14.33 32 32v224c0 17.674-14.326 32-32 32s-32-14.326-32-32v-224c0-17.67 14.326-32 32-32z","M512 672.003c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32s-32-14.326-32-32c0-17.67 14.326-32 32-32z","M567.101 158.348c-24.774-41.922-85.427-41.922-110.202 0l-359.92 609.099c-25.21 42.662 5.544 96.557 55.099 96.557h719.845c49.555 0 80.307-53.894 55.098-96.557l-359.92-609.099zM512 190.906l359.923 609.097h-719.845l359.922-609.097z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["warning"],"defaultCode":59866,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":114,"name":"warning","prevSize":32,"id":204,"code":59866},"setIdx":0,"setId":3,"iconIdx":205},{"icon":{"paths":["M784.131 240.143c-35.43-35.658-77.581-63.931-124.016-83.181s-96.227-29.094-146.493-28.961c-210.863 0-382.322 171.532-382.414 382.376-0.085 67.104 17.523 133.043 51.047 191.171l-54.256 198.154 202.72-53.174c56.064 30.531 118.883 46.531 182.717 46.538h0.166c210.752 0 382.32-171.552 382.394-382.394 0.16-50.25-9.645-100.029-28.848-146.464-19.2-46.436-47.418-88.604-83.018-124.065zM513.622 828.486h-0.186c-56.922 0.006-112.797-15.293-161.776-44.298l-11.606-6.896-120.302 31.555 32.124-117.347-7.573-12.029c-31.783-50.64-48.608-109.232-48.535-169.021 0-175.235 142.653-317.816 317.981-317.816 84.301 0.049 165.13 33.58 224.707 93.218 59.581 59.638 93.034 140.499 92.998 224.8-0.074 175.254-142.653 317.834-317.834 317.834zM687.958 590.451c-9.552-4.787-56.528-27.907-65.293-31.171s-15.126-4.768-21.491 4.784c-6.362 9.555-24.678 31.171-30.253 37.462-5.574 6.288-11.149 7.187-20.701 2.4-9.555-4.784-40.339-14.87-76.845-47.434-28.403-25.322-47.584-56.621-53.174-66.192-5.594-9.571-0.589-14.669 4.198-19.491 4.291-4.291 9.552-11.168 14.32-16.742s6.381-9.571 9.552-15.933c3.174-6.362 1.597-11.955-0.787-16.739-2.384-4.787-21.491-51.818-29.466-70.96-7.757-18.63-15.622-16.099-21.491-16.394-5.501-0.275-11.955-0.349-18.336-0.349-4.842 0.131-9.606 1.264-13.994 3.325-4.387 2.058-8.298 5.005-11.491 8.65-8.749 9.552-33.428 32.675-33.428 79.706s34.234 92.467 39.002 98.848c4.765 6.381 67.382 102.883 163.187 144.266 17.792 7.68 35.974 14.413 54.477 20.17 22.902 7.334 43.731 6.237 60.179 3.779 18.336-2.733 56.547-23.104 64.506-45.418 7.955-22.317 7.955-41.459 5.501-45.456-2.458-3.997-8.618-6.326-18.173-11.11z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["whatsapp-monochromatic"],"defaultCode":59868,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":237,"name":"whatsapp-monochromatic","prevSize":32,"id":205,"code":59868},"setIdx":0,"setId":3,"iconIdx":206},{"icon":{"paths":["M354.006 399.123l14.029 0.627-0.541-16.726-152.878 1.578c49.916-116.491 165.64-198.133 300.366-198.133 99.645 0 188.893 44.659 248.81 115.065-3.712 0.171-7.491 0.492-11.526 1.068 0 0-63.76 14.898-13.302 118.708 0 0 31.085 84.541-19.306 198.774l-28.403 73.306-99.101-264.723c0 0-5.984-28.154 23.61-28.154l23.76-1.472 0.339-16.035h-228.368v14.458c0 0 39.83-0.288 56.15 27.149l40.762 103.779-73.014 174.403-108.608-272.4c0 0-3.389-31.779 27.222-31.27z","M841.603 513.168c0-33.862-5.235-66.643-14.726-97.357l-145.949 378.755c96.134-56.88 160.675-161.571 160.675-281.398z","M411.478 823.011c32.49 10.912 67.267 16.778 103.488 16.778 37.85 0 74.102-6.406 107.898-18.256l-99.709-258.502-111.677 259.981z","M188.279 513.149c0-32.083 4.712-63.066 13.339-92.336l1 2.051 152.656 375.229c-99.606-55.882-166.994-162.538-166.994-284.944z","M130.705 512.093c0-211.775 172.316-384.093 384.076-384.093 211.725 0 383.923 172.318 383.923 384.093 0 211.776-172.198 384.010-383.923 384.010-211.757 0-384.076-172.234-384.076-384.010zM514.781 879.254c202.384 0 367.11-164.742 367.11-367.178 0-202.486-164.726-367.145-367.11-367.161-202.489 0-367.213 164.673-367.213 367.161 0 202.435 164.724 367.178 367.213 367.178z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["wordpress-monochromatic"],"defaultCode":59656,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":241,"name":"wordpress-monochromatic","prevSize":32,"id":206,"code":59755},"setIdx":0,"setId":3,"iconIdx":207},{"icon":{"paths":["M193.353 405.334h213.332v-213.334h-213.332v213.334zM129.353 170.667c0-23.564 19.102-42.667 42.667-42.667h256c23.565 0 42.666 19.102 42.666 42.667v255.999c0 23.565-19.101 42.669-42.666 42.669h-256c-23.564 0-42.667-19.104-42.667-42.669v-255.999zM620.019 405.334h213.334v-213.334h-213.334v213.334zM556.019 170.667c0-23.564 19.104-42.667 42.666-42.667h256c23.565 0 42.669 19.102 42.669 42.667v255.999c0 23.565-19.104 42.669-42.669 42.669h-256c-23.562 0-42.666-19.104-42.666-42.669v-255.999zM620.019 618.666h213.334v213.334h-213.334v-213.334zM598.685 554.666c-23.562 0-42.666 19.104-42.666 42.669v256c0 23.562 19.104 42.666 42.666 42.666h256c23.565 0 42.669-19.104 42.669-42.666v-256c0-23.565-19.104-42.669-42.669-42.669h-256zM193.353 832h213.332v-213.334h-213.332v213.334zM129.353 597.334c0-23.565 19.102-42.669 42.667-42.669h256c23.565 0 42.666 19.104 42.666 42.669v256c0 23.562-19.101 42.666-42.666 42.666h-256c-23.564 0-42.667-19.104-42.667-42.666v-256z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["workspaces"],"defaultCode":59870,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":119,"name":"workspaces","prevSize":32,"id":207,"code":59870},"setIdx":0,"setId":3,"iconIdx":208},{"icon":{"paths":["M384.509 149.333c0-11.782 9.562-21.333 21.36-21.333h85.446c11.798 0 21.363 9.551 21.363 21.333v106.667h-106.81c-11.798 0-21.36-9.551-21.36-21.333v-85.333z","M512.678 256h106.806c11.798 0 21.36 9.551 21.36 21.333v85.332c0 11.782-9.562 21.334-21.36 21.334h-106.806v-128z","M384.509 405.334c0-11.782 9.562-21.334 21.36-21.334h106.81v128h-106.81c-11.798 0-21.36-9.552-21.36-21.334v-85.331z","M512.678 512h106.806c11.798 0 21.36 9.552 21.36 21.334v106.666h-128.166v-128z","M427.232 640c-23.597 0-42.723 19.104-42.723 42.666v170.669c0 23.562 19.126 42.666 42.723 42.666h170.89c23.597 0 42.723-19.104 42.723-42.666v-213.334h-213.613zM491.315 725.334c-11.798 0-21.36 9.549-21.36 21.331v42.669c0 11.782 9.562 21.331 21.36 21.331h42.723c11.798 0 21.36-9.549 21.36-21.331v-42.669c0-11.782-9.562-21.331-21.36-21.331h-42.723z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["zip"],"defaultCode":59871,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":120,"name":"zip","prevSize":32,"id":208,"code":59871},"setIdx":0,"setId":3,"iconIdx":209},{"icon":{"paths":["M544 208c0-17.673-14.326-32-32-32s-32 14.327-32 32v271.997h-271.998c-17.673 0-32 14.326-32 32s14.327 32 32 32h271.998v272.003c0 17.674 14.326 32 32 32s32-14.326 32-32v-272.003l272-0.003c17.674 0 32-14.326 32-32s-14.326-32-32-32l-272 0.003v-271.997z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["add"],"defaultCode":59872,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":240,"name":"add","prevSize":32,"id":209,"code":59872},"setIdx":0,"setId":3,"iconIdx":210},{"icon":{"paths":["M772.986 470.432h-40.186c-1.104-12.381-10.090-19.757-26.454-19.757-16.278 0-24.416 6.867-24.502 16.365-0.339 10.342 9.667 15.6 25.437 18.992l14.922 3.389c34.253 7.546 52.989 24.502 53.158 52.227-0.17 32.982-25.773 52.566-69.014 52.566-43.661 0-71.894-19.414-72.403-60.026h40.186c0.934 16.701 13.142 25.35 31.709 25.35 16.874 0 26.794-7.376 26.963-17.974-0.17-9.75-8.733-14.922-27.811-19.331l-18.141-4.24c-30.016-6.867-48.496-21.706-48.413-48.070-0.253-32.304 28.317-53.923 67.997-53.923 40.355 0 66.214 21.958 66.554 54.432z","M354.858 470.432h40.186c-0.339-32.474-26.198-54.432-66.554-54.432-39.679 0-68.251 21.619-67.996 53.923-0.085 26.365 18.398 41.203 48.411 48.070l18.145 4.24c19.075 4.41 27.638 9.581 27.808 19.331-0.17 10.598-10.090 17.974-26.96 17.974-18.569 0-30.778-8.65-31.71-25.35h-40.187c0.509 40.611 28.741 60.026 72.403 60.026 43.242 0 68.845-19.584 69.014-52.566-0.17-27.725-18.906-44.682-53.158-52.227l-14.922-3.389c-15.77-3.392-25.774-8.65-25.435-18.992 0.085-9.498 8.224-16.365 24.501-16.365 16.365 0 25.35 7.376 26.454 19.757z","M418.614 418.374v173.635h40.864v-107.251h1.443l41.712 106.15h26.112l41.715-105.555h1.44v106.656h40.867v-173.635h-51.974l-44.086 107.504h-2.035l-44.086-107.504h-51.971z","M864 192c16.973 0 33.251 6.743 45.254 18.745s18.746 28.281 18.746 45.255v635.296c0 12.186-3.478 24.122-10.032 34.397-6.55 10.278-15.898 18.474-26.947 23.619-11.046 5.146-23.334 7.027-35.418 5.43-12.083-1.6-23.456-6.614-32.787-14.458l-128.81-108.285h-534.006c-16.974 0-33.252-6.742-45.255-18.746s-18.745-28.282-18.745-45.254v-512c0-16.974 6.743-33.252 18.745-45.255s28.281-18.745 45.255-18.745h704zM864 256h-704v512h534.006c15.066 0 29.648 5.315 41.181 15.011l128.813 108.285v-635.296z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["sms"],"defaultCode":59753,"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":3,"name":"sms","prevSize":32,"id":210,"code":59772},"setIdx":0,"setId":3,"iconIdx":211}],"height":1024,"metadata":{"name":"custom"},"preferences":{"showGlyphs":false,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"custom","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16}}
\ No newline at end of file
diff --git a/app/containers/InAppNotification/NotifierComponent.tsx b/app/containers/InAppNotification/NotifierComponent.tsx
index b46c1b51a..8b32ae1c6 100644
--- a/app/containers/InAppNotification/NotifierComponent.tsx
+++ b/app/containers/InAppNotification/NotifierComponent.tsx
@@ -12,7 +12,6 @@ import { themes } from '../../lib/constants';
import { useTheme } from '../../theme';
import { ROW_HEIGHT } from '../RoomItem';
import { goRoom } from '../../lib/methods/helpers/goRoom';
-import Navigation from '../../lib/navigation/appNavigation';
import { useOrientation } from '../../dimensions';
import { IApplicationState, ISubscription, SubscriptionType } from '../../definitions';
@@ -98,12 +97,7 @@ const NotifierComponent = React.memo(({ notification, isMasterDetail }: INotifie
prid
};
- if (isMasterDetail) {
- Navigation.navigate('DrawerNavigator');
- } else {
- Navigation.navigate('RoomsListView');
- }
- goRoom({ item, isMasterDetail, jumpToMessageId: _id });
+ goRoom({ item, isMasterDetail, jumpToMessageId: _id, popToRoot: true });
hideNotification();
};
@@ -124,6 +118,7 @@ const NotifierComponent = React.memo(({ notification, isMasterDetail }: INotifie
onPress={onPress}
hitSlop={BUTTON_HIT_SLOP}
background={Touchable.SelectableBackgroundBorderless()}
+ testID={`in-app-notification-${text}`}
>
<>
diff --git a/app/containers/InAppNotification/index.tsx b/app/containers/InAppNotification/index.tsx
index 34354e632..d6581f27f 100644
--- a/app/containers/InAppNotification/index.tsx
+++ b/app/containers/InAppNotification/index.tsx
@@ -1,56 +1,50 @@
import React, { memo, useEffect } from 'react';
import { Easing, Notifier, NotifierRoot } from 'react-native-notifier';
-import { connect } from 'react-redux';
-import { dequal } from 'dequal';
import NotifierComponent, { INotifierComponent } from './NotifierComponent';
import EventEmitter from '../../lib/methods/helpers/events';
import Navigation from '../../lib/navigation/appNavigation';
import { getActiveRoute } from '../../lib/methods/helpers/navigation';
-import { IApplicationState } from '../../definitions';
-import { IRoom } from '../../reducers/room';
+import { useAppSelector } from '../../lib/hooks';
export const INAPP_NOTIFICATION_EMITTER = 'NotificationInApp';
-const InAppNotification = memo(
- ({ rooms, appState }: { rooms: IRoom['rooms']; appState: string }) => {
- const show = (notification: INotifierComponent['notification']) => {
- if (appState !== 'foreground') {
+const InAppNotification = memo(() => {
+ const { appState, subscribedRoom } = useAppSelector(state => ({
+ subscribedRoom: state.room.subscribedRoom,
+ appState: state.app.ready && state.app.foreground ? 'foreground' : 'background'
+ }));
+
+ const show = (notification: INotifierComponent['notification']) => {
+ if (appState !== 'foreground') {
+ return;
+ }
+
+ const { payload } = notification;
+ const state = Navigation.navigationRef.current?.getRootState();
+ const route = getActiveRoute(state);
+ if (payload.rid) {
+ if (payload.rid === subscribedRoom || route?.name === 'JitsiMeetView') {
return;
}
-
- const { payload } = notification;
- const state = Navigation.navigationRef.current?.getRootState();
- const route = getActiveRoute(state);
- if (payload.rid) {
- if (rooms.includes(payload.rid) || route?.name === 'JitsiMeetView') {
- return;
+ Notifier.showNotification({
+ showEasing: Easing.inOut(Easing.quad),
+ Component: NotifierComponent,
+ componentProps: {
+ notification
}
- Notifier.showNotification({
- showEasing: Easing.inOut(Easing.quad),
- Component: NotifierComponent,
- componentProps: {
- notification
- }
- });
- }
+ });
+ }
+ };
+
+ useEffect(() => {
+ const listener = EventEmitter.addEventListener(INAPP_NOTIFICATION_EMITTER, show);
+ return () => {
+ EventEmitter.removeListener(INAPP_NOTIFICATION_EMITTER, listener);
};
+ }, [subscribedRoom, appState]);
- useEffect(() => {
- const listener = EventEmitter.addEventListener(INAPP_NOTIFICATION_EMITTER, show);
- return () => {
- EventEmitter.removeListener(INAPP_NOTIFICATION_EMITTER, listener);
- };
- }, [rooms]);
-
- return ;
- },
- (prevProps, nextProps) => dequal(prevProps.rooms, nextProps.rooms)
-);
-
-const mapStateToProps = (state: IApplicationState) => ({
- rooms: state.room.rooms,
- appState: state.app.ready && state.app.foreground ? 'foreground' : 'background'
+ return ;
});
-export default connect(mapStateToProps)(InAppNotification);
+export default InAppNotification;
diff --git a/app/containers/MessageActions/Header.tsx b/app/containers/MessageActions/Header.tsx
index 26d35d4cc..f9c809e5e 100644
--- a/app/containers/MessageActions/Header.tsx
+++ b/app/containers/MessageActions/Header.tsx
@@ -14,12 +14,12 @@ import { IEmoji, TAnyMessageModel } from '../../definitions';
import Touch from '../Touch';
export interface IHeader {
- handleReaction: (emoji: IEmoji, message: TAnyMessageModel) => void;
+ handleReaction: (emoji: IEmoji | null, message: TAnyMessageModel) => void;
message: TAnyMessageModel;
isMasterDetail: boolean;
}
-type TOnReaction = ({ emoji }: { emoji: IEmoji }) => void;
+type TOnReaction = ({ emoji }: { emoji?: IEmoji }) => void;
interface THeaderItem {
item: IEmoji;
@@ -94,8 +94,10 @@ const Header = React.memo(({ handleReaction, message, isMasterDetail }: IHeader)
const quantity = Math.trunc(size / (ITEM_SIZE + ITEM_MARGIN * 2) - 1);
const onReaction: TOnReaction = ({ emoji }) => {
- handleReaction(emoji, message);
- addFrequentlyUsed(emoji);
+ handleReaction(emoji || null, message);
+ if (emoji) {
+ addFrequentlyUsed(emoji);
+ }
};
const renderItem = ({ item }: { item: IEmoji }) => ;
diff --git a/app/containers/MessageActions/index.tsx b/app/containers/MessageActions/index.tsx
index e19598341..38d77c14e 100644
--- a/app/containers/MessageActions/index.tsx
+++ b/app/containers/MessageActions/index.tsx
@@ -40,6 +40,7 @@ export interface IMessageActionsProps {
editMessagePermission?: string[];
deleteMessagePermission?: string[];
forceDeleteMessagePermission?: string[];
+ deleteOwnMessagePermission?: string[];
pinMessagePermission?: string[];
createDirectMessagePermission?: string[];
}
@@ -71,6 +72,7 @@ const MessageActions = React.memo(
editMessagePermission,
deleteMessagePermission,
forceDeleteMessagePermission,
+ deleteOwnMessagePermission,
pinMessagePermission,
createDirectMessagePermission
},
@@ -80,19 +82,27 @@ const MessageActions = React.memo(
hasEditPermission: false,
hasDeletePermission: false,
hasForceDeletePermission: false,
- hasPinPermission: false
+ hasPinPermission: false,
+ hasDeleteOwnPermission: false
};
const { showActionSheet, hideActionSheet } = useActionSheet();
const getPermissions = async () => {
try {
- const permission = [editMessagePermission, deleteMessagePermission, forceDeleteMessagePermission, pinMessagePermission];
+ const permission = [
+ editMessagePermission,
+ deleteMessagePermission,
+ forceDeleteMessagePermission,
+ pinMessagePermission,
+ deleteOwnMessagePermission
+ ];
const result = await hasPermission(permission, room.rid);
permissions = {
hasEditPermission: result[0],
hasDeletePermission: result[1],
hasForceDeletePermission: result[2],
- hasPinPermission: result[3]
+ hasPinPermission: result[3],
+ hasDeleteOwnPermission: result[4]
};
} catch {
// Do nothing
@@ -134,7 +144,7 @@ const MessageActions = React.memo(
if (tmid === message.id) {
return false;
}
- const deleteOwn = isOwn(message);
+ const deleteOwn = isOwn(message) && permissions.hasDeleteOwnPermission;
if (!(permissions.hasDeletePermission || (Message_AllowDeleting && deleteOwn) || permissions.hasForceDeletePermission)) {
return false;
}
@@ -275,10 +285,10 @@ const MessageActions = React.memo(
}
};
- const handleReaction: IHeader['handleReaction'] = (shortname, message) => {
+ const handleReaction: IHeader['handleReaction'] = (emoji, message) => {
logEvent(events.ROOM_MSG_ACTION_REACTION);
- if (shortname) {
- onReactionPress(shortname, message.id);
+ if (emoji) {
+ onReactionPress(emoji, message.id);
} else {
setTimeout(() => reactionInit(message), ACTION_SHEET_ANIMATION_DURATION);
}
@@ -343,9 +353,10 @@ const MessageActions = React.memo(
const getOptions = (message: TAnyMessageModel) => {
const options: TActionSheetOptionsItem[] = [];
+ const videoConfBlock = message.t === 'videoconf';
// Quote
- if (!isReadOnly) {
+ if (!isReadOnly && !videoConfBlock) {
options.push({
title: I18n.t('Quote'),
icon: 'quote',
@@ -363,7 +374,7 @@ const MessageActions = React.memo(
}
// Reply in DM
- if (room.t !== 'd' && room.t !== 'l' && createDirectMessagePermission) {
+ if (room.t !== 'd' && room.t !== 'l' && createDirectMessagePermission && !videoConfBlock) {
options.push({
title: I18n.t('Reply_in_direct_message'),
icon: 'arrow-back',
@@ -386,11 +397,13 @@ const MessageActions = React.memo(
});
// Copy
- options.push({
- title: I18n.t('Copy'),
- icon: 'copy',
- onPress: () => handleCopy(message)
- });
+ if (!videoConfBlock) {
+ options.push({
+ title: I18n.t('Copy'),
+ icon: 'copy',
+ onPress: () => handleCopy(message)
+ });
+ }
// Share
options.push({
@@ -400,7 +413,7 @@ const MessageActions = React.memo(
});
// Edit
- if (allowEdit(message)) {
+ if (allowEdit(message) && !videoConfBlock) {
options.push({
title: I18n.t('Edit'),
icon: 'edit',
@@ -409,7 +422,7 @@ const MessageActions = React.memo(
}
// Pin
- if (Message_AllowPinning && permissions?.hasPinPermission) {
+ if (Message_AllowPinning && permissions?.hasPinPermission && !videoConfBlock) {
options.push({
title: I18n.t(message.pinned ? 'Unpin' : 'Pin'),
icon: 'pin',
@@ -418,7 +431,7 @@ const MessageActions = React.memo(
}
// Star
- if (Message_AllowStarring) {
+ if (Message_AllowStarring && !videoConfBlock) {
options.push({
title: I18n.t(message.starred ? 'Unstar' : 'Star'),
icon: message.starred ? 'star-filled' : 'star',
@@ -505,6 +518,7 @@ const mapStateToProps = (state: IApplicationState) => ({
isMasterDetail: state.app.isMasterDetail,
editMessagePermission: state.permissions['edit-message'],
deleteMessagePermission: state.permissions['delete-message'],
+ deleteOwnMessagePermission: state.permissions['delete-own-message'],
forceDeleteMessagePermission: state.permissions['force-delete-message'],
pinMessagePermission: state.permissions['pin-message'],
createDirectMessagePermission: state.permissions['create-d']
diff --git a/app/containers/MessageBox/index.tsx b/app/containers/MessageBox/index.tsx
index 306c95825..53926e78d 100644
--- a/app/containers/MessageBox/index.tsx
+++ b/app/containers/MessageBox/index.tsx
@@ -237,7 +237,7 @@ class MessageBox extends Component {
async componentDidMount() {
const db = database.active;
- const { rid, tmid, navigation, sharing, usedCannedResponse, isMasterDetail } = this.props;
+ const { rid, tmid, navigation, sharing, usedCannedResponse } = this.props;
let msg;
try {
const threadsCollection = db.get('threads');
@@ -272,7 +272,7 @@ class MessageBox extends Component {
EventEmiter.addEventListener(KEY_COMMAND, this.handleCommands);
}
- if (isMasterDetail && usedCannedResponse) {
+ if (usedCannedResponse) {
this.onChangeText(usedCannedResponse);
}
@@ -302,7 +302,7 @@ class MessageBox extends Component {
if (usedCannedResponse !== nextProps.usedCannedResponse) {
this.onChangeText(nextProps.usedCannedResponse ?? '');
}
- if (sharing) {
+ if (sharing && !replying) {
this.setInput(nextProps.message.msg ?? '');
return;
}
@@ -857,14 +857,21 @@ class MessageBox extends Component {
};
openShareView = (attachments: any) => {
- const { message, replyCancel, replyWithMention } = this.props;
+ const { message, replyCancel, replyWithMention, replying } = this.props;
// Start a thread with an attachment
let value: TThreadModel | IMessage = this.thread;
if (replyWithMention) {
value = message;
replyCancel();
}
- Navigation.navigate('ShareView', { room: this.room, thread: value, attachments });
+ Navigation.navigate('ShareView', {
+ room: this.room,
+ thread: value,
+ attachments,
+ replying,
+ replyingMessage: message,
+ closeReply: replyCancel
+ });
};
createDiscussion = () => {
@@ -1042,16 +1049,7 @@ class MessageBox extends Component {
// Legacy reply or quote (quote is a reply without mention)
} else {
- const { user, roomType } = this.props;
- const permalink = await this.getPermalink(replyingMessage);
- let msg = `[ ](${permalink}) `;
-
- // if original message wasn't sent by current user and neither from a direct room
- if (user.username !== replyingMessage?.u?.username && roomType !== 'd' && replyWithMention) {
- msg += `@${replyingMessage?.u?.username} `;
- }
-
- msg = `${msg} ${message}`;
+ const msg = await this.formatReplyMessage(replyingMessage, message);
onSubmit(msg);
}
replyCancel();
@@ -1063,6 +1061,20 @@ class MessageBox extends Component {
}
};
+ formatReplyMessage = async (replyingMessage: IMessage, message = '') => {
+ const { user, roomType, replyWithMention, serverVersion } = this.props;
+ const permalink = await this.getPermalink(replyingMessage);
+ let msg = `[ ](${permalink}) `;
+
+ // if original message wasn't sent by current user and neither from a direct room
+ if (user.username !== replyingMessage?.u?.username && roomType !== 'd' && replyWithMention) {
+ msg += `@${replyingMessage?.u?.username} `;
+ }
+
+ const connectionString = compareServerVersion(serverVersion, 'lowerThan', '5.0.0') ? ' ' : '\n';
+ return `${msg}${connectionString}${message}`;
+ };
+
updateMentions = (keyword: any, type: string) => {
if (type === MENTIONS_TRACKING_TYPE_USERS) {
this.getUsers(keyword);
diff --git a/app/containers/RoomItem/index.tsx b/app/containers/RoomItem/index.tsx
index 5dd7d5469..405d2d5e0 100644
--- a/app/containers/RoomItem/index.tsx
+++ b/app/containers/RoomItem/index.tsx
@@ -2,13 +2,13 @@ import React, { useEffect, useReducer, useRef } from 'react';
import { Subscription } from 'rxjs';
import I18n from '../../i18n';
-import { useAppSelector } from '../../lib/hooks';
import { getUserPresence } from '../../lib/methods';
import { isGroupChat } from '../../lib/methods/helpers';
import { formatDate } from '../../lib/methods/helpers/room';
import { IRoomItemContainerProps } from './interfaces';
import RoomItem from './RoomItem';
import { ROW_HEIGHT, ROW_HEIGHT_CONDENSED } from './styles';
+import { useUserStatus } from './useUserStatus';
export { ROW_HEIGHT, ROW_HEIGHT_CONDENSED };
@@ -42,11 +42,11 @@ const RoomItemContainer = React.memo(
const isRead = getIsRead(item);
const date = item.roomUpdatedAt && formatDate(item.roomUpdatedAt);
const alert = item.alert || item.tunread?.length;
- const connected = useAppSelector(state => state.meteor.connected);
- const userStatus = useAppSelector(state => state.activeUsers[id || '']?.status);
const [_, forceUpdate] = useReducer(x => x + 1, 1);
const roomSubscription = useRef(null);
+ const { connected, status } = useUserStatus(item.t, item?.visitor?.status, id);
+
useEffect(() => {
const init = () => {
if (item?.observe) {
@@ -85,8 +85,6 @@ const RoomItemContainer = React.memo(
accessibilityLabel = `, ${I18n.t('last_message')} ${date}`;
}
- const status = item.t === 'l' ? item.visitor?.status || item.v?.status : userStatus;
-
return (
{
+ const connected = useAppSelector(state => state.meteor.connected);
+ const userStatus = useAppSelector(state => state.activeUsers[id || '']?.status);
+ let status = 'loading';
+ if (connected) {
+ if (type === 'd') {
+ status = userStatus || 'loading';
+ } else if (type === 'l' && liveChatStatus) {
+ status = liveChatStatus;
+ }
+ }
+ return {
+ connected,
+ status: status as TUserStatus
+ };
+};
diff --git a/app/containers/UIKit/DatePicker.tsx b/app/containers/UIKit/DatePicker.tsx
index 2466393bc..eff7d6f51 100644
--- a/app/containers/UIKit/DatePicker.tsx
+++ b/app/containers/UIKit/DatePicker.tsx
@@ -19,8 +19,8 @@ const styles = StyleSheet.create({
input: {
height: 48,
paddingLeft: 16,
- borderWidth: 2,
- borderRadius: 2,
+ borderWidth: 1,
+ borderRadius: 4,
alignItems: 'center',
flexDirection: 'row'
},
diff --git a/app/containers/UIKit/Select.tsx b/app/containers/UIKit/Select.tsx
index 111d65bf3..b68fbc815 100644
--- a/app/containers/UIKit/Select.tsx
+++ b/app/containers/UIKit/Select.tsx
@@ -19,8 +19,8 @@ const styles = StyleSheet.create({
viewContainer: {
marginBottom: 16,
paddingHorizontal: 16,
- borderWidth: 2,
- borderRadius: 2,
+ borderWidth: 1,
+ borderRadius: 4,
justifyContent: 'center'
},
pickerText: {
diff --git a/app/containers/UIKit/VideoConferenceBlock/components/CallAgainActionSheet.tsx b/app/containers/UIKit/VideoConferenceBlock/components/CallAgainActionSheet.tsx
new file mode 100644
index 000000000..781c5b284
--- /dev/null
+++ b/app/containers/UIKit/VideoConferenceBlock/components/CallAgainActionSheet.tsx
@@ -0,0 +1,80 @@
+import React, { useEffect, useState } from 'react';
+import { Text, View } from 'react-native';
+import Touchable from 'react-native-platform-touchable';
+
+import i18n from '../../../../i18n';
+import { getSubscriptionByRoomId } from '../../../../lib/database/services/Subscription';
+import { useAppSelector } from '../../../../lib/hooks';
+import { getRoomAvatar, getUidDirectMessage } from '../../../../lib/methods/helpers';
+import { videoConfStartAndJoin } from '../../../../lib/methods/videoConf';
+import { useTheme } from '../../../../theme';
+import { useActionSheet } from '../../../ActionSheet';
+import AvatarContainer from '../../../Avatar';
+import Button from '../../../Button';
+import { CustomIcon } from '../../../CustomIcon';
+import { BUTTON_HIT_SLOP } from '../../../message/utils';
+import StatusContainer from '../../../Status';
+import useStyle from './styles';
+
+export default function CallAgainActionSheet({ rid }: { rid: string }): React.ReactElement {
+ const style = useStyle();
+ const { colors } = useTheme();
+ const [user, setUser] = useState({ username: '', avatar: '', uid: '', rid: '' });
+ const [phone, setPhone] = useState(true);
+ const [camera, setCamera] = useState(false);
+ const username = useAppSelector(state => state.login.user.username);
+
+ const { hideActionSheet } = useActionSheet();
+
+ useEffect(() => {
+ (async () => {
+ const room = await getSubscriptionByRoomId(rid);
+ const uid = (await getUidDirectMessage(room)) as string;
+ const avt = getRoomAvatar(room);
+ setUser({ uid, username: room?.name || '', avatar: avt, rid: room?.id || '' });
+ })();
+ }, [rid]);
+
+ const handleColor = (enabled: boolean) => (enabled ? colors.conferenceCallEnabledIcon : colors.conferenceCallDisabledIcon);
+
+ return (
+
+
+ {i18n.t('Start_a_call')}
+
+ setCamera(!camera)}
+ style={[style.iconCallContainer, camera && style.enabledBackground, { marginRight: 6 }]}
+ hitSlop={BUTTON_HIT_SLOP}
+ >
+
+
+ setPhone(!phone)}
+ style={[style.iconCallContainer, phone && style.enabledBackground]}
+ hitSlop={BUTTON_HIT_SLOP}
+ >
+
+
+
+
+
+
+
+ {user.username}
+
+
+
+
+
+ );
+}
diff --git a/app/containers/UIKit/VideoConferenceBlock/components/CallParticipants.tsx b/app/containers/UIKit/VideoConferenceBlock/components/CallParticipants.tsx
new file mode 100644
index 000000000..05226e5a6
--- /dev/null
+++ b/app/containers/UIKit/VideoConferenceBlock/components/CallParticipants.tsx
@@ -0,0 +1,27 @@
+import React from 'react';
+import { Text, View } from 'react-native';
+
+import i18n from '../../../../i18n';
+import useStyle from './styles';
+import AvatarContainer from '../../../Avatar';
+
+const MAX_USERS = 3;
+
+export type TCallUsers = { _id: string; username: string; name: string; avatarETag: string }[];
+
+export const CallParticipants = ({ users }: { users: TCallUsers }): React.ReactElement => {
+ const style = useStyle();
+ return (
+ <>
+ {users.map(({ username }, index) =>
+ index < MAX_USERS ? : null
+ )}
+ {users.length > MAX_USERS ? (
+
+ {users.length > 9 ? '+9' : `+${users.length}`}
+
+ ) : null}
+ {i18n.t('Joined')}
+ >
+ );
+};
diff --git a/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceBaseContainer.tsx b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceBaseContainer.tsx
new file mode 100644
index 000000000..69a92c6c8
--- /dev/null
+++ b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceBaseContainer.tsx
@@ -0,0 +1,55 @@
+import React from 'react';
+import { View, Text } from 'react-native';
+
+import i18n from '../../../../i18n';
+import { useTheme } from '../../../../theme';
+import { CustomIcon, TIconsName } from '../../../CustomIcon';
+import useStyle from './styles';
+
+type VideoConfMessageIconProps = {
+ variant: 'ended' | 'incoming' | 'outgoing';
+ children: React.ReactElement | React.ReactElement[];
+};
+
+export const VideoConferenceBaseContainer = ({ variant, children }: VideoConfMessageIconProps): React.ReactElement => {
+ const { colors } = useTheme();
+ const style = useStyle();
+
+ const iconStyle: { [key: string]: { icon: TIconsName; color: string; backgroundColor: string; label: string } } = {
+ ended: {
+ icon: 'phone-end',
+ color: colors.conferenceCallEndedPhoneIcon,
+ backgroundColor: colors.conferenceCallEndedPhoneBackground,
+ label: i18n.t('Call_ended')
+ },
+ incoming: {
+ icon: 'phone-in',
+ color: colors.conferenceCallIncomingPhoneIcon,
+ backgroundColor: colors.conferenceCallIncomingPhoneBackground,
+ label: i18n.t('Calling')
+ },
+ outgoing: {
+ icon: 'phone',
+ color: colors.conferenceCallOngoingPhoneIcon,
+ backgroundColor: colors.conferenceCallOngoingPhoneBackground,
+ label: i18n.t('Call_ongoing')
+ }
+ };
+
+ return (
+
+
+
+
+
+ {iconStyle[variant].label}
+
+ {children}
+
+ );
+};
diff --git a/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceDirect.tsx b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceDirect.tsx
new file mode 100644
index 000000000..2526a190f
--- /dev/null
+++ b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceDirect.tsx
@@ -0,0 +1,24 @@
+import React from 'react';
+import { Text } from 'react-native';
+import Touchable from 'react-native-platform-touchable';
+
+import i18n from '../../../../i18n';
+import { useVideoConf } from '../../../../lib/hooks/useVideoConf';
+import useStyle from './styles';
+import { VideoConferenceBaseContainer } from './VideoConferenceBaseContainer';
+
+const VideoConferenceDirect = React.memo(({ blockId }: { blockId: string }) => {
+ const style = useStyle();
+ const { joinCall } = useVideoConf();
+
+ return (
+
+ joinCall(blockId)}>
+ {i18n.t('Join')}
+
+ {i18n.t('Waiting_for_answer')}
+
+ );
+});
+
+export default VideoConferenceDirect;
diff --git a/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceEnded.tsx b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceEnded.tsx
new file mode 100644
index 000000000..8c8171b3a
--- /dev/null
+++ b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceEnded.tsx
@@ -0,0 +1,64 @@
+import React from 'react';
+import { Text } from 'react-native';
+import Touchable from 'react-native-platform-touchable';
+
+import { IUser } from '../../../../definitions';
+import { VideoConferenceType } from '../../../../definitions/IVideoConference';
+import i18n from '../../../../i18n';
+import { useAppSelector } from '../../../../lib/hooks';
+import { useSnaps } from '../../../../lib/hooks/useSnaps';
+import { useActionSheet } from '../../../ActionSheet';
+import CallAgainActionSheet from './CallAgainActionSheet';
+import { CallParticipants, TCallUsers } from './CallParticipants';
+import useStyle from './styles';
+import { VideoConferenceBaseContainer } from './VideoConferenceBaseContainer';
+
+export default function VideoConferenceEnded({
+ users,
+ type,
+ createdBy,
+ rid
+}: {
+ users: TCallUsers;
+ type: VideoConferenceType;
+ createdBy: Pick;
+ rid: string;
+}): React.ReactElement {
+ const style = useStyle();
+ const username = useAppSelector(state => state.login.user.username);
+ const { showActionSheet } = useActionSheet();
+ const snaps = useSnaps([1250]);
+
+ const onlyAuthorOnCall = users.length === 1 && users.some(user => user.username === createdBy.username);
+
+ return (
+
+ {type === 'direct' ? (
+ <>
+
+ showActionSheet({
+ children: ,
+ snaps
+ })
+ }
+ >
+
+ {createdBy.username === username ? i18n.t('Call_back') : i18n.t('Call_again')}
+
+
+ {i18n.t('Call_was_not_answered')}
+ >
+ ) : (
+ <>
+ {users.length && !onlyAuthorOnCall ? (
+
+ ) : (
+ {i18n.t('Call_was_not_answered')}
+ )}
+ >
+ )}
+
+ );
+}
diff --git a/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceOutgoing.tsx b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceOutgoing.tsx
new file mode 100644
index 000000000..164e9b3ab
--- /dev/null
+++ b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceOutgoing.tsx
@@ -0,0 +1,23 @@
+import React from 'react';
+import { Text } from 'react-native';
+import Touchable from 'react-native-platform-touchable';
+
+import i18n from '../../../../i18n';
+import { useVideoConf } from '../../../../lib/hooks/useVideoConf';
+import { CallParticipants, TCallUsers } from './CallParticipants';
+import useStyle from './styles';
+import { VideoConferenceBaseContainer } from './VideoConferenceBaseContainer';
+
+export default function VideoConferenceOutgoing({ users, blockId }: { users: TCallUsers; blockId: string }): React.ReactElement {
+ const style = useStyle();
+ const { joinCall } = useVideoConf();
+
+ return (
+
+ joinCall(blockId)}>
+ {i18n.t('Join')}
+
+
+
+ );
+}
diff --git a/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceSkeletonLoading.tsx b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceSkeletonLoading.tsx
new file mode 100644
index 000000000..9466f27ee
--- /dev/null
+++ b/app/containers/UIKit/VideoConferenceBlock/components/VideoConferenceSkeletonLoading.tsx
@@ -0,0 +1,28 @@
+import React from 'react';
+import SkeletonPlaceholder from 'react-native-skeleton-placeholder';
+
+import { useTheme } from '../../../../theme';
+
+export default function VideoConferenceSkeletonLoading(): React.ReactElement {
+ const { colors } = useTheme();
+
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/app/containers/UIKit/VideoConferenceBlock/components/styles.ts b/app/containers/UIKit/VideoConferenceBlock/components/styles.ts
new file mode 100644
index 000000000..d8258e24d
--- /dev/null
+++ b/app/containers/UIKit/VideoConferenceBlock/components/styles.ts
@@ -0,0 +1,126 @@
+import { StyleSheet } from 'react-native';
+
+import { useTheme } from '../../../../theme';
+import sharedStyles from '../../../../views/Styles';
+
+export default function useStyle() {
+ const { colors } = useTheme();
+ return StyleSheet.create({
+ container: { height: 108, flex: 1, borderWidth: 1, borderRadius: 4, marginTop: 8, borderColor: colors.conferenceCallBorder },
+ callInfoContainer: { flex: 1, alignItems: 'center', paddingLeft: 16, flexDirection: 'row' },
+ infoContainerText: {
+ fontSize: 12,
+ marginLeft: 8,
+ ...sharedStyles.textBold,
+ color: colors.auxiliaryTintColor
+ },
+ iconContainer: {
+ width: 28,
+ height: 28,
+ alignItems: 'center',
+ justifyContent: 'center',
+ borderRadius: 4
+ },
+ callToActionContainer: {
+ height: 48,
+ backgroundColor: colors.conferenceCallBackground,
+ flexDirection: 'row',
+ alignItems: 'center',
+ paddingLeft: 16
+ },
+ callToActionButtonText: {
+ fontSize: 12,
+ ...sharedStyles.textSemibold,
+ color: colors.buttonText
+ },
+ callToActionCallBackText: {
+ fontSize: 12,
+ ...sharedStyles.textSemibold,
+ color: colors.conferenceCallCallBackText
+ },
+ callToActionButton: {
+ backgroundColor: colors.tintColor,
+ minWidth: 50,
+ alignItems: 'center',
+ justifyContent: 'center',
+ height: 32,
+ borderRadius: 4,
+ marginRight: 8,
+ paddingHorizontal: 8
+ },
+ joined: {
+ fontSize: 12,
+ ...sharedStyles.textRegular,
+ color: colors.passcodeSecondary,
+ marginLeft: 8
+ },
+ plusUsers: {
+ width: 28,
+ height: 28,
+ backgroundColor: colors.conferenceCallPlusUsersButton,
+ borderRadius: 4,
+ alignItems: 'center',
+ justifyContent: 'center'
+ },
+ plusUsersText: {
+ fontSize: 14,
+ ...sharedStyles.textSemibold,
+ color: colors.conferenceCallPlusUsersText,
+ alignSelf: 'center'
+ },
+ callBack: {
+ fontSize: 12,
+ ...sharedStyles.textRegular,
+ color: colors.passcodeSecondary
+ },
+ callToActionCallBack: {
+ backgroundColor: colors.conferenceCallPlusUsersButton,
+ minWidth: 50,
+ alignItems: 'center',
+ justifyContent: 'center',
+ height: 32,
+ borderRadius: 4,
+ marginRight: 8,
+ paddingHorizontal: 8
+ },
+ notAnswered: {
+ fontSize: 12,
+ ...sharedStyles.textRegular,
+ color: colors.passcodeSecondary
+ },
+ actionSheetContainer: {
+ paddingHorizontal: 24,
+ flex: 1
+ },
+ actionSheetHeaderTitle: {
+ fontSize: 14,
+ ...sharedStyles.textBold,
+ color: colors.passcodePrimary
+ },
+ actionSheetUsername: {
+ fontSize: 16,
+ ...sharedStyles.textBold,
+ color: colors.passcodePrimary
+ },
+ enabledBackground: {
+ backgroundColor: colors.conferenceCallEnabledIconBackground
+ },
+ iconCallContainer: {
+ padding: 6,
+ borderRadius: 4
+ },
+ actionSheetHeader: { flexDirection: 'row', alignItems: 'center' },
+ actionSheetHeaderButtons: { flex: 1, alignItems: 'center', flexDirection: 'row', justifyContent: 'flex-end' },
+ actionSheetUsernameContainer: { flexDirection: 'row', paddingTop: 8, alignItems: 'center' },
+ actionSheetPhotoContainer: {
+ height: 220,
+ width: 148,
+ backgroundColor: colors.conferenceCallPhotoBackground,
+ borderRadius: 8,
+ margin: 24,
+ alignSelf: 'center',
+ justifyContent: 'center',
+ alignItems: 'center'
+ }
+ });
+}
diff --git a/app/containers/UIKit/VideoConferenceBlock/index.tsx b/app/containers/UIKit/VideoConferenceBlock/index.tsx
new file mode 100644
index 000000000..b94f0814d
--- /dev/null
+++ b/app/containers/UIKit/VideoConferenceBlock/index.tsx
@@ -0,0 +1,23 @@
+import React from 'react';
+
+import { useEndpointData } from '../../../lib/hooks/useEndpointData';
+import VideoConferenceDirect from './components/VideoConferenceDirect';
+import VideoConferenceEnded from './components/VideoConferenceEnded';
+import VideoConferenceOutgoing from './components/VideoConferenceOutgoing';
+import VideoConferenceSkeletonLoading from './components/VideoConferenceSkeletonLoading';
+
+export default function VideoConferenceBlock({ callId, blockId }: { callId: string; blockId: string }): React.ReactElement {
+ const { result } = useEndpointData('video-conference.info', { callId });
+
+ if (result?.success) {
+ const { users, type, status, createdBy, rid } = result;
+
+ if ('endedAt' in result) return ;
+
+ if (type === 'direct' && status === 0) return ;
+
+ return ;
+ }
+
+ return ;
+}
diff --git a/app/containers/UIKit/index.tsx b/app/containers/UIKit/index.tsx
index 92e51ce30..6dbd87f28 100644
--- a/app/containers/UIKit/index.tsx
+++ b/app/containers/UIKit/index.tsx
@@ -29,6 +29,7 @@ import { DatePicker } from './DatePicker';
import { Overflow } from './Overflow';
import { ThemeContext } from '../../theme';
import { IActions, IButton, IElement, IInputIndex, IParser, ISection } from './interfaces';
+import VideoConferenceBlock from './VideoConferenceBlock';
const styles = StyleSheet.create({
input: {
@@ -149,6 +150,10 @@ class MessageParser extends UiKitParserMessage {
const [{ loading, value }, action] = useBlockContext(element, context);
return ;
}
+
+ video_conf(element: IElement & { callId: string }) {
+ return ;
+ }
}
// plain_text and mrkdwn functions are created in MessageParser and the ModalParser's constructor use the same functions
diff --git a/app/containers/UIKit/utils.ts b/app/containers/UIKit/utils.ts
index 86839d860..f127f8068 100644
--- a/app/containers/UIKit/utils.ts
+++ b/app/containers/UIKit/utils.ts
@@ -1,11 +1,9 @@
/* eslint-disable no-shadow */
-import React, { useContext, useState } from 'react';
import { BlockContext } from '@rocket.chat/ui-kit';
+import React, { useContext, useState } from 'react';
+import { useVideoConf } from '../../lib/hooks/useVideoConf';
import { IText } from './interfaces';
-import { videoConfJoin } from '../../lib/methods/videoConf';
-import { TActionSheetOptionsItem, useActionSheet } from '../ActionSheet';
-import i18n from '../../i18n';
export const textParser = ([{ text }]: IText[]) => text;
@@ -42,7 +40,7 @@ export const useBlockContext = ({ blockId, actionId, appId, initialValue }: IUse
const { action, appId: appIdFromContext, viewId, state, language, errors, values = {} } = useContext(KitContext);
const { value = initialValue } = values[actionId] || {};
const [loading, setLoading] = useState(false);
- const { showActionSheet } = useActionSheet();
+ const { joinCall } = useVideoConf();
const error = errors && actionId && errors[actionId];
@@ -60,20 +58,7 @@ export const useBlockContext = ({ blockId, actionId, appId, initialValue }: IUse
try {
if (appId === 'videoconf-core' && blockId) {
setLoading(false);
- const options: TActionSheetOptionsItem[] = [
- {
- title: i18n.t('Video_call'),
- icon: 'camera',
- onPress: () => videoConfJoin(blockId, true)
- },
- {
- title: i18n.t('Voice_call'),
- icon: 'microphone',
- onPress: () => videoConfJoin(blockId, false)
- }
- ];
- showActionSheet({ options });
- return;
+ return joinCall(blockId);
}
await action({
blockId,
diff --git a/app/containers/UserGeneratedContentRules.tsx b/app/containers/UserGeneratedContentRules.tsx
new file mode 100644
index 000000000..620efd82c
--- /dev/null
+++ b/app/containers/UserGeneratedContentRules.tsx
@@ -0,0 +1,62 @@
+import React from 'react';
+import { View, StyleSheet, Text, ViewStyle } from 'react-native';
+
+import sharedStyles from '../views/Styles';
+import { useTheme } from '../theme';
+import openLink from '../lib/methods/helpers/openLink';
+import { useAppSelector } from '../lib/hooks';
+import I18n from '../i18n';
+
+const styles = StyleSheet.create({
+ bottomContainer: {
+ flexDirection: 'column',
+ alignItems: 'center',
+ marginBottom: 32,
+ marginHorizontal: 30
+ },
+ bottomContainerText: {
+ ...sharedStyles.textRegular,
+ fontSize: 13
+ },
+ bottomContainerTextBold: {
+ ...sharedStyles.textSemibold,
+ fontSize: 13
+ }
+});
+
+const UGCRules = ({ styleContainer }: { styleContainer?: ViewStyle }) => {
+ const { colors, theme } = useTheme();
+ const { server } = useAppSelector(state => ({
+ server: state.server.server
+ }));
+
+ const openContract = (route: string) => {
+ if (!server) {
+ return;
+ }
+ openLink(`${server}/${route}`, theme);
+ };
+ return (
+
+
+ {`${I18n.t('Onboarding_agree_terms')}\n`}
+ openContract('terms-of-service')}
+ >
+ {I18n.t('Terms_of_Service')}
+ {' '}
+ {I18n.t('and')}
+ openContract('privacy-policy')}
+ >
+ {' '}
+ {I18n.t('Privacy_Policy')}
+
+
+
+ );
+};
+
+export default UGCRules;
diff --git a/app/containers/markdown/Hashtag.tsx b/app/containers/markdown/Hashtag.tsx
index fd90c74b4..5cd50030b 100644
--- a/app/containers/markdown/Hashtag.tsx
+++ b/app/containers/markdown/Hashtag.tsx
@@ -1,14 +1,11 @@
import React from 'react';
import { StyleProp, Text, TextStyle } from 'react-native';
-import { useNavigation } from '@react-navigation/native';
-import { StackNavigationProp } from '@react-navigation/stack';
import { themes } from '../../lib/constants';
import { useTheme } from '../../theme';
import { IUserChannel } from './interfaces';
import styles from './styles';
import { getSubscriptionByRoomId } from '../../lib/database/services/Subscription';
-import { ChatsStackParamList } from '../../stacks/types';
import { useAppSelector } from '../../lib/hooks';
import { goRoom } from '../../lib/methods/helpers/goRoom';
@@ -22,7 +19,6 @@ interface IHashtag {
const Hashtag = React.memo(({ hashtag, channels, navToRoomInfo, style = [] }: IHashtag) => {
const { theme } = useTheme();
const isMasterDetail = useAppSelector(state => state.app.isMasterDetail);
- const navigation = useNavigation>();
const handlePress = async () => {
const index = channels?.findIndex(channel => channel.name === hashtag);
@@ -33,7 +29,7 @@ const Hashtag = React.memo(({ hashtag, channels, navToRoomInfo, style = [] }: IH
};
const room = navParam.rid && (await getSubscriptionByRoomId(navParam.rid));
if (room) {
- goRoom({ item: room, isMasterDetail, navigationMethod: isMasterDetail ? navigation.replace : navigation.push });
+ goRoom({ item: room, isMasterDetail });
} else {
navToRoomInfo(navParam);
}
diff --git a/app/containers/markdown/index.tsx b/app/containers/markdown/index.tsx
index 27dc0ff37..ca8ce9271 100644
--- a/app/containers/markdown/index.tsx
+++ b/app/containers/markdown/index.tsx
@@ -45,6 +45,7 @@ interface IMarkdownProps {
testID?: string;
style?: StyleProp[];
onLinkPress?: TOnLinkPress;
+ isTranslated?: boolean;
}
type TLiteral = {
@@ -93,9 +94,7 @@ class Markdown extends PureComponent {
constructor(props: IMarkdownProps) {
super(props);
- if (!this.isNewMarkdown) {
- this.renderer = this.createRenderer();
- }
+ this.renderer = this.createRenderer();
}
createRenderer = () =>
@@ -310,13 +309,24 @@ class Markdown extends PureComponent {
};
render() {
- const { msg, md, mentions, channels, navToRoomInfo, useRealName, username = '', getCustomEmoji, onLinkPress } = this.props;
+ const {
+ msg,
+ md,
+ mentions,
+ channels,
+ navToRoomInfo,
+ useRealName,
+ username = '',
+ getCustomEmoji,
+ onLinkPress,
+ isTranslated
+ } = this.props;
if (!msg) {
return null;
}
- if (this.isNewMarkdown) {
+ if (this.isNewMarkdown && !isTranslated) {
return (
{
+const Inline = ({ value, forceTrim }: IParagraphProps): React.ReactElement | null => {
const { useRealName, username, navToRoomInfo, mentions, channels } = useContext(MarkdownContext);
return (
- {value.map(block => {
+ {value.map((block, index) => {
+ // We are forcing trim when is a `[ ](https://https://open.rocket.chat/) plain_text`
+ // to clean the empty spaces
+ if (forceTrim) {
+ if (index === 0 && block.type === 'LINK') {
+ block.value.label.value =
+ // Need to update the @rocket.chat/message-parser to understand that the label can be a Markup | Markup[]
+ // https://github.com/RocketChat/fuselage/blob/461ecf661d9ff4a46390957c915e4352fa942a7c/packages/message-parser/src/definitions.ts#L141
+ // @ts-ignore
+ block.value?.label?.value?.toString().trimLeft() || block?.value?.label?.[0]?.value?.toString().trimLeft();
+ }
+ if (index === 1 && block.type !== 'LINK') {
+ block.value = block.value?.toString().trimLeft();
+ }
+ }
+
switch (block.type) {
case 'IMAGE':
return ;
diff --git a/app/containers/markdown/new/NewMarkdown.stories.tsx b/app/containers/markdown/new/NewMarkdown.stories.tsx
index f7ac63f72..9bc46e2ac 100644
--- a/app/containers/markdown/new/NewMarkdown.stories.tsx
+++ b/app/containers/markdown/new/NewMarkdown.stories.tsx
@@ -381,27 +381,6 @@ export const BlockQuote = () => (
);
-const rocketChatLink = [
- {
- type: 'PARAGRAPH',
- value: [
- {
- type: 'LINK',
- value: {
- src: {
- type: 'PLAIN_TEXT',
- value: 'https://rocket.chat'
- },
- label: {
- type: 'PLAIN_TEXT',
- value: 'https://rocket.chat'
- }
- }
- }
- ]
- }
-];
-
const markdownLink = [
{
type: 'PARAGRAPH',
@@ -487,7 +466,6 @@ const markdownLinkWithEmphasis = [
export const Links = () => (
-
@@ -806,3 +784,128 @@ export const InlineKatex = () => (
);
+
+const messageQuote = {
+ /**
+ # Hello head 1
+ [ ](https://google.com)
+ */
+ headAndLink: [
+ { type: 'HEADING', level: 1, value: [{ type: 'PLAIN_TEXT', value: 'Hello head 1' }] },
+ { type: 'LINE_BREAK' },
+ {
+ type: 'PARAGRAPH',
+ value: [
+ {
+ type: 'LINK',
+ value: { src: { type: 'PLAIN_TEXT', value: 'https://google.com' }, label: { type: 'PLAIN_TEXT', value: ' ' } }
+ }
+ ]
+ }
+ ],
+ /**
+ # Head 1 as the first line then line break and after paragraph
+ bla bla bla bla bla bla
+ bla bla bla bla bla bla
+ [ ](https://google.com)
+ */
+ headTextAndLink: [
+ {
+ type: 'HEADING',
+ level: 1,
+ value: [{ type: 'PLAIN_TEXT', value: 'Head 1 as the first line then line break and after paragraph' }]
+ },
+ { type: 'LINE_BREAK' },
+ { type: 'PARAGRAPH', value: [{ type: 'PLAIN_TEXT', value: 'bla bla bla bla bla bla ' }] },
+ { type: 'PARAGRAPH', value: [{ type: 'PLAIN_TEXT', value: 'bla bla bla bla bla bla ' }] },
+ {
+ type: 'PARAGRAPH',
+ value: [
+ {
+ type: 'LINK',
+ value: { src: { type: 'PLAIN_TEXT', value: 'https://google.com' }, label: { type: 'PLAIN_TEXT', value: ' ' } }
+ }
+ ]
+ }
+ ],
+ /**
+ [ ](permalink from message)\n# Head 1 after a forced line break
+ asdas asd asd asd
+ */
+ headTextAndQuote: [
+ {
+ type: 'PARAGRAPH',
+ value: [
+ {
+ type: 'LINK',
+ value: {
+ src: { type: 'PLAIN_TEXT', value: 'https://open.rocket.chat/direct/subaru123?msg=QB42gWcaO6BgqtLTo' },
+ label: { type: 'PLAIN_TEXT', value: ' ' }
+ }
+ },
+ { type: 'PLAIN_TEXT', value: ' ' }
+ ]
+ },
+ { type: 'HEADING', level: 1, value: [{ type: 'PLAIN_TEXT', value: 'Head 1 after a forced line break' }] },
+ { type: 'LINE_BREAK' },
+ { type: 'PARAGRAPH', value: [{ type: 'PLAIN_TEXT', value: 'Description' }] }
+ ],
+ /**
+ [ ](https://google.com) *There is a link before this bold separated by single space*
+ */
+ linkAndBoldText: [
+ {
+ type: 'PARAGRAPH',
+ value: [
+ {
+ type: 'LINK',
+ value: { src: { type: 'PLAIN_TEXT', value: 'https://google.com' }, label: { type: 'PLAIN_TEXT', value: ' ' } }
+ },
+ { type: 'PLAIN_TEXT', value: ' ' },
+ { type: 'BOLD', value: [{ type: 'PLAIN_TEXT', value: 'There is a link before this bold separated by single space' }] }
+ ]
+ }
+ ],
+ simpleQuote: [
+ {
+ type: 'PARAGRAPH',
+ value: [
+ {
+ type: 'LINK',
+ value: {
+ src: {
+ type: 'PLAIN_TEXT',
+ value: 'https://open.rocket.chat/group/quoteeee9798789?msg=ZZp6t2dCRX4TqExht'
+ },
+ // format of label for servers greater or equal than 6.0
+ label: [
+ {
+ type: 'PLAIN_TEXT',
+ value: ' '
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ type: 'PARAGRAPH',
+ value: [
+ {
+ type: 'PLAIN_TEXT',
+ value: 'Quoting a message wrote before'
+ }
+ ]
+ }
+ ]
+};
+
+export const MessageQuote = () => (
+
+
+
+
+
+
+
+);
diff --git a/app/containers/markdown/new/OrderedList.tsx b/app/containers/markdown/new/OrderedList.tsx
index 02965c214..3371128de 100644
--- a/app/containers/markdown/new/OrderedList.tsx
+++ b/app/containers/markdown/new/OrderedList.tsx
@@ -17,7 +17,9 @@ const OrderedList = ({ value }: IOrderedListProps): React.ReactElement => {
{value.map(item => (
{item.number}.
-
+
+
+
))}
diff --git a/app/containers/markdown/new/Paragraph.tsx b/app/containers/markdown/new/Paragraph.tsx
index c58d4be5d..2c8735138 100644
--- a/app/containers/markdown/new/Paragraph.tsx
+++ b/app/containers/markdown/new/Paragraph.tsx
@@ -12,10 +12,28 @@ interface IParagraphProps {
}
const Paragraph = ({ value }: IParagraphProps) => {
+ let forceTrim = false;
const { theme } = useTheme();
+ if (
+ value?.[0]?.type === 'LINK' &&
+ // Need to update the @rocket.chat/message-parser to understand that the label can be a Markup | Markup[]
+ // https://github.com/RocketChat/fuselage/blob/461ecf661d9ff4a46390957c915e4352fa942a7c/packages/message-parser/src/definitions.ts#L141
+ // @ts-ignore
+ (value?.[0]?.value?.label?.value?.toString().trim() === '' || value?.[0]?.value?.label?.[0]?.value?.toString().trim() === '')
+ ) {
+ // We are returning null when we receive a message like this: `[ ](https://open.rocket.chat/)\nplain_text`
+ // to avoid render a line empty above the the message
+ if (value.length === 1) {
+ return null;
+ }
+ if (value.length === 2 && value?.[1]?.type === 'PLAIN_TEXT' && value?.[1]?.value?.toString().trim() === '') {
+ return null;
+ }
+ forceTrim = true;
+ }
return (
-
+
);
};
diff --git a/app/containers/markdown/new/UnorderedList.tsx b/app/containers/markdown/new/UnorderedList.tsx
index 8df46edf7..9e383f47e 100644
--- a/app/containers/markdown/new/UnorderedList.tsx
+++ b/app/containers/markdown/new/UnorderedList.tsx
@@ -18,7 +18,9 @@ const UnorderedList = ({ value }: IUnorderedListProps) => {
{value.map(item => (
-
-
+
+
+
))}
diff --git a/app/containers/message/Audio.tsx b/app/containers/message/Audio.tsx
index 51d4b53c6..21737ca2f 100644
--- a/app/containers/message/Audio.tsx
+++ b/app/containers/message/Audio.tsx
@@ -20,6 +20,8 @@ import { TGetCustomEmoji } from '../../definitions/IEmoji';
import { IAttachment } from '../../definitions';
import { TSupportedThemes } from '../../theme';
import { downloadAudioFile } from '../../lib/methods/audioFile';
+import EventEmitter from '../../lib/methods/helpers/events';
+import { PAUSE_AUDIO } from './constants';
interface IButton {
loading: boolean;
@@ -128,6 +130,11 @@ class MessageAudio extends React.Component {
+ EventEmitter.removeListener(PAUSE_AUDIO, this.pauseSound);
+ this.togglePlayPause();
+ };
+
async componentDidMount() {
const { file, messageId } = this.props;
const { baseUrl, user } = this.context;
@@ -183,6 +190,7 @@ class MessageAudio extends React.Component {
if (blocks && blocks.length > 0) {
const appId = blocks[0]?.appId || '';
- return React.createElement(
- messageBlockWithContext({
- action: async ({ actionId, value, blockId }: { actionId: string; value: string; blockId: string }) => {
- if (blockAction) {
- await blockAction({
- actionId,
- appId,
- value,
- blockId,
- rid,
- mid
- });
- }
- },
- appId,
- rid
- }),
- { blocks }
+ // eslint-disable-next-line react-hooks/rules-of-hooks
+ const comp = useRef(
+ React.createElement(
+ messageBlockWithContext({
+ action: async ({ actionId, value, blockId }: { actionId: string; value: string; blockId: string }) => {
+ if (blockAction) {
+ await blockAction({
+ actionId,
+ appId,
+ value,
+ blockId,
+ rid,
+ mid
+ });
+ }
+ },
+ appId,
+ rid
+ }),
+ { blocks }
+ )
);
+ return comp.current;
}
return null;
});
diff --git a/app/containers/message/Components/RightIcons/ReadReceipt.tsx b/app/containers/message/Components/RightIcons/ReadReceipt.tsx
index e7b8f87b5..6e9b5e96f 100644
--- a/app/containers/message/Components/RightIcons/ReadReceipt.tsx
+++ b/app/containers/message/Components/RightIcons/ReadReceipt.tsx
@@ -1,14 +1,20 @@
import React from 'react';
-import { themes } from '../../../../lib/constants';
import { CustomIcon } from '../../../CustomIcon';
import styles from '../../styles';
import { useTheme } from '../../../../theme';
const ReadReceipt = React.memo(({ isReadReceiptEnabled, unread }: { isReadReceiptEnabled?: boolean; unread?: boolean }) => {
- const { theme } = useTheme();
- if (isReadReceiptEnabled && !unread && unread !== null) {
- return ;
+ const { colors } = useTheme();
+ if (isReadReceiptEnabled) {
+ return (
+
+ );
}
return null;
});
diff --git a/app/containers/message/Content.tsx b/app/containers/message/Content.tsx
index cdfaa62c2..5e03d1eed 100644
--- a/app/containers/message/Content.tsx
+++ b/app/containers/message/Content.tsx
@@ -64,6 +64,7 @@ const Content = React.memo(
useRealName={props.useRealName}
theme={theme}
onLinkPress={onLinkPress}
+ isTranslated={props.isTranslated}
/>
);
}
diff --git a/app/containers/message/constants.ts b/app/containers/message/constants.ts
index 3ec77b167..b9a935881 100644
--- a/app/containers/message/constants.ts
+++ b/app/containers/message/constants.ts
@@ -1,2 +1,3 @@
export const DISCUSSION = 'discussion';
export const THREAD = 'thread';
+export const PAUSE_AUDIO = 'pause_audio';
diff --git a/app/containers/message/index.tsx b/app/containers/message/index.tsx
index 21d74de45..8595d5d0a 100644
--- a/app/containers/message/index.tsx
+++ b/app/containers/message/index.tsx
@@ -233,7 +233,9 @@ class MessageContainer extends React.Component
);
diff --git a/app/containers/message/interfaces.ts b/app/containers/message/interfaces.ts
index 9d0badb75..60edfb4df 100644
--- a/app/containers/message/interfaces.ts
+++ b/app/containers/message/interfaces.ts
@@ -63,6 +63,7 @@ export interface IMessageContent {
comment?: string;
hasError: boolean;
isHeader: boolean;
+ isTranslated: boolean;
}
export interface IMessageEmoji {
diff --git a/app/containers/message/utils.ts b/app/containers/message/utils.ts
index ae3717eae..fb734f96a 100644
--- a/app/containers/message/utils.ts
+++ b/app/containers/message/utils.ts
@@ -65,6 +65,7 @@ const messagesWithAuthorName: MessageTypesValues[] = [
'room_changed_avatar',
'room_e2e_disabled',
'room_e2e_enabled',
+ 'room-allowed-reacting',
'room-disallowed-reacting',
'room-set-read-only',
'room-removed-read-only',
diff --git a/app/definitions/IMessage.ts b/app/definitions/IMessage.ts
index 1e2449932..88dd7a88d 100644
--- a/app/definitions/IMessage.ts
+++ b/app/definitions/IMessage.ts
@@ -8,7 +8,15 @@ import { TThreadMessageModel } from './IThreadMessage';
import { TThreadModel } from './IThread';
import { IUrl, IUrlFromServer } from './IUrl';
-export type MessageType = 'jitsi_call_started' | 'discussion-created' | 'e2e' | 'load_more' | 'rm' | 'uj' | MessageTypeLoad | MessageTypesValues;
+export type MessageType =
+ | 'jitsi_call_started'
+ | 'discussion-created'
+ | 'e2e'
+ | 'load_more'
+ | 'rm'
+ | 'uj'
+ | MessageTypeLoad
+ | MessageTypesValues;
export interface IUserMessage {
_id: string;
@@ -222,6 +230,7 @@ export type MessageTypesValues =
| 'room-allowed-reacting'
| 'room-disallowed-reacting'
| 'command'
+ | 'videoconf'
| LivechatMessageTypes
| TeamMessageTypes
| VoipMessageTypesValues
diff --git a/app/definitions/ISubscription.ts b/app/definitions/ISubscription.ts
index ee84c17be..904e13d02 100644
--- a/app/definitions/ISubscription.ts
+++ b/app/definitions/ISubscription.ts
@@ -91,6 +91,7 @@ export interface ISubscription {
livechatData?: any;
tags?: string[];
E2EKey?: string;
+ E2ESuggestedKey?: string;
encrypted?: boolean;
e2eKeyId?: string;
avatarETag?: string;
@@ -145,6 +146,7 @@ export interface IServerSubscription extends IRocketChatRecord {
onHold?: boolean;
encrypted?: boolean;
E2EKey?: string;
+ E2ESuggestedKey?: string;
unreadAlert?: 'default' | 'all' | 'mentions' | 'nothing';
fname?: unknown;
diff --git a/app/definitions/IUpload.ts b/app/definitions/IUpload.ts
index 059555130..a2935575b 100644
--- a/app/definitions/IUpload.ts
+++ b/app/definitions/IUpload.ts
@@ -5,6 +5,7 @@ export interface IUpload {
rid?: string;
path: string;
name?: string;
+ tmid?: string;
description?: string;
size: number;
type?: string;
@@ -12,6 +13,7 @@ export interface IUpload {
progress?: number;
error?: boolean;
subscription?: { id: string };
+ msg?: string;
}
export type TUploadModel = IUpload & Model;
diff --git a/app/definitions/IVideoConference.ts b/app/definitions/IVideoConference.ts
new file mode 100644
index 000000000..af689be47
--- /dev/null
+++ b/app/definitions/IVideoConference.ts
@@ -0,0 +1,95 @@
+import type { AtLeast } from './utils';
+import type { IRocketChatRecord } from './IRocketChatRecord';
+import type { IRoom } from './IRoom';
+import type { IUser } from './IUser';
+import type { IMessage } from './IMessage';
+
+export enum VideoConferenceStatus {
+ CALLING = 0,
+ STARTED = 1,
+ EXPIRED = 2,
+ ENDED = 3,
+ DECLINED = 4
+}
+
+export type DirectCallInstructions = {
+ type: 'direct';
+ callee: IUser['_id'];
+ callId: string;
+};
+
+export type ConferenceInstructions = {
+ type: 'videoconference';
+ callId: string;
+ rid: IRoom['_id'];
+};
+
+export type LivechatInstructions = {
+ type: 'livechat';
+ callId: string;
+};
+
+export type VideoConferenceType = DirectCallInstructions['type'] | ConferenceInstructions['type'] | LivechatInstructions['type'];
+
+export interface IVideoConferenceUser extends Pick, '_id' | 'username' | 'name' | 'avatarETag'> {
+ ts: Date;
+}
+
+export interface IVideoConference extends IRocketChatRecord {
+ type: VideoConferenceType;
+ rid: string;
+ users: IVideoConferenceUser[];
+ status: VideoConferenceStatus;
+ messages: {
+ started?: IMessage['_id'];
+ ended?: IMessage['_id'];
+ };
+ url?: string;
+
+ createdBy: Pick;
+ createdAt: Date;
+
+ endedBy?: Pick;
+ endedAt?: Date;
+
+ providerName: string;
+ providerData?: Record;
+
+ ringing?: boolean;
+}
+
+export interface IDirectVideoConference extends IVideoConference {
+ type: 'direct';
+}
+
+export interface IGroupVideoConference extends IVideoConference {
+ type: 'videoconference';
+ anonymousUsers: number;
+ title: string;
+}
+
+export interface ILivechatVideoConference extends IVideoConference {
+ type: 'livechat';
+}
+
+export type VideoConference = IDirectVideoConference | IGroupVideoConference | ILivechatVideoConference;
+
+export type VideoConferenceInstructions = DirectCallInstructions | ConferenceInstructions | LivechatInstructions;
+
+export const isDirectVideoConference = (call: VideoConference | undefined | null): call is IDirectVideoConference =>
+ call?.type === 'direct';
+
+export const isGroupVideoConference = (call: VideoConference | undefined | null): call is IGroupVideoConference =>
+ call?.type === 'videoconference';
+
+export const isLivechatVideoConference = (call: VideoConference | undefined | null): call is ILivechatVideoConference =>
+ call?.type === 'livechat';
+
+type GroupVideoConferenceCreateData = Omit & { createdBy: IUser['_id'] };
+type DirectVideoConferenceCreateData = Omit & { createdBy: IUser['_id'] };
+type LivechatVideoConferenceCreateData = Omit & { createdBy: IUser['_id'] };
+
+export type VideoConferenceCreateData = AtLeast<
+ DirectVideoConferenceCreateData | GroupVideoConferenceCreateData | LivechatVideoConferenceCreateData,
+ 'createdBy' | 'type' | 'rid' | 'providerName' | 'providerData'
+>;
diff --git a/app/definitions/index.ts b/app/definitions/index.ts
index cbe244639..a5bc02b8f 100644
--- a/app/definitions/index.ts
+++ b/app/definitions/index.ts
@@ -29,6 +29,7 @@ export * from './ISearch';
export * from './TUserStatus';
export * from './IProfile';
export * from './IReaction';
+export * from './ERoomType';
export interface IBaseScreen, S extends string> {
navigation: StackNavigationProp;
diff --git a/app/definitions/rest/v1/e2e.ts b/app/definitions/rest/v1/e2e.ts
index f23c0fac9..6c4ef7c8f 100644
--- a/app/definitions/rest/v1/e2e.ts
+++ b/app/definitions/rest/v1/e2e.ts
@@ -12,6 +12,12 @@ export type E2eEndpoints = {
'e2e.updateGroupKey': {
POST: (params: { uid: string; rid: string; key: string }) => {};
};
+ 'e2e.acceptSuggestedGroupKey': {
+ POST: (params: { rid: string }) => {};
+ };
+ 'e2e.rejectSuggestedGroupKey': {
+ POST: (params: { rid: string }) => {};
+ };
'e2e.setRoomKeyID': {
POST: (params: { rid: string; keyID: string }) => {};
};
diff --git a/app/definitions/rest/v1/videoConference.ts b/app/definitions/rest/v1/videoConference.ts
index e919c9bda..ba681df28 100644
--- a/app/definitions/rest/v1/videoConference.ts
+++ b/app/definitions/rest/v1/videoConference.ts
@@ -1,3 +1,5 @@
+import { VideoConference } from '../../IVideoConference';
+
export type VideoConferenceEndpoints = {
'video-conference/jitsi.update-timeout': {
POST: (params: { roomId: string }) => void;
@@ -8,4 +10,18 @@ export type VideoConferenceEndpoints = {
'video-conference.start': {
POST: (params: { roomId: string }) => { url: string };
};
+
+ 'video-conference.cancel': {
+ POST: (params: { callId: string }) => void;
+ };
+
+ 'video-conference.info': {
+ GET: (params: { callId: string }) => VideoConference & {
+ capabilities: {
+ mic?: boolean;
+ cam?: boolean;
+ title?: boolean;
+ };
+ };
+ };
};
diff --git a/app/definitions/utils.ts b/app/definitions/utils.ts
new file mode 100644
index 000000000..2f4eb3981
--- /dev/null
+++ b/app/definitions/utils.ts
@@ -0,0 +1,25 @@
+export type Optional = Omit & Partial;
+
+export type ExtractKeys = T[K] extends U ? K : never;
+
+export type ValueOf = T[keyof T];
+
+export type UnionToIntersection = (T extends any ? (x: T) => void : never) extends (x: infer U) => void ? U : never;
+
+export type Awaited = T extends PromiseLike ? Awaited : T;
+
+// `T extends any` is a trick to apply a operator to each member of a union
+export type KeyOfEach = T extends any ? keyof T : never;
+
+// Taken from https://effectivetypescript.com/2020/04/09/jsonify/
+export type Jsonify = T extends Date
+ ? string
+ : T extends object
+ ? {
+ [k in keyof T]: Jsonify;
+ }
+ : T;
+
+export type AtLeast = Partial & Pick;
+
+export type RequiredField = T & Required>;
diff --git a/app/ee/omnichannel/views/QueueListView.tsx b/app/ee/omnichannel/views/QueueListView.tsx
index 20025ff15..8ebb3cb39 100644
--- a/app/ee/omnichannel/views/QueueListView.tsx
+++ b/app/ee/omnichannel/views/QueueListView.tsx
@@ -73,19 +73,14 @@ const QueueListView = React.memo(() => {
const onPressItem = (item = {} as IOmnichannelRoom) => {
logEvent(events.QL_GO_ROOM);
- if (isMasterDetail) {
- navigation.navigate('DrawerNavigator');
- } else {
- navigation.navigate('RoomsListView');
- }
-
goRoom({
item: {
...item,
// we're calling v as visitor on our mergeSubscriptionsRooms
visitor: item.v
},
- isMasterDetail
+ isMasterDetail,
+ popToRoot: true
});
};
diff --git a/app/i18n/index.ts b/app/i18n/index.ts
index 3aa346e86..1c41842c6 100644
--- a/app/i18n/index.ts
+++ b/app/i18n/index.ts
@@ -25,14 +25,9 @@ export const LANGUAGES: ILanguage[] = [
file: () => require('./locales/en.json')
},
{
- label: '简体中文',
- value: 'zh-CN',
- file: () => require('./locales/zh-CN.json')
- },
- {
- label: '繁體中文',
- value: 'zh-TW',
- file: () => require('./locales/zh-TW.json')
+ label: 'العربية',
+ value: 'ar',
+ file: () => require('./locales/ar.json')
},
{
label: 'Deutsch',
@@ -44,11 +39,31 @@ export const LANGUAGES: ILanguage[] = [
value: 'es-ES',
file: () => require('./locales/es-ES.json')
},
+ {
+ label: 'Finnish',
+ value: 'fi',
+ file: () => require('./locales/fi.json')
+ },
{
label: 'Français',
value: 'fr',
file: () => require('./locales/fr.json')
},
+ {
+ label: 'Italiano',
+ value: 'it',
+ file: () => require('./locales/it.json')
+ },
+ {
+ label: '日本語',
+ value: 'ja',
+ file: () => require('./locales/ja.json')
+ },
+ {
+ label: 'Nederlands',
+ value: 'nl',
+ file: () => require('./locales/nl.json')
+ },
{
label: 'Português (BR)',
value: 'pt-BR',
@@ -65,24 +80,14 @@ export const LANGUAGES: ILanguage[] = [
file: () => require('./locales/ru.json')
},
{
- label: 'Nederlands',
- value: 'nl',
- file: () => require('./locales/nl.json')
+ label: 'Slovenian (Slovenia)',
+ value: 'sl-SI',
+ file: () => require('./locales/sl-SI.json')
},
{
- label: 'Italiano',
- value: 'it',
- file: () => require('./locales/it.json')
- },
- {
- label: '日本語',
- value: 'ja',
- file: () => require('./locales/ja.json')
- },
- {
- label: 'العربية',
- value: 'ar',
- file: () => require('./locales/ar.json')
+ label: 'Swedish',
+ value: 'sv',
+ file: () => require('./locales/sv.json')
},
{
label: 'Türkçe',
@@ -90,9 +95,14 @@ export const LANGUAGES: ILanguage[] = [
file: () => require('./locales/tr.json')
},
{
- label: 'Slovenian (Slovenia)',
- value: 'sl-SI',
- file: () => require('./locales/sl-SI.json')
+ label: '简体中文',
+ value: 'zh-CN',
+ file: () => require('./locales/zh-CN.json')
+ },
+ {
+ label: '繁體中文',
+ value: 'zh-TW',
+ file: () => require('./locales/zh-TW.json')
}
];
diff --git a/app/i18n/locales/de.json b/app/i18n/locales/de.json
index db4045668..3d24589ad 100644
--- a/app/i18n/locales/de.json
+++ b/app/i18n/locales/de.json
@@ -256,6 +256,11 @@
"Forward_to_user": "Weiterleiten an Benutzer",
"Full_table": "Klicken, um die ganze Tabelle anzuzeigen",
"Generate_New_Link": "Neuen Link erstellen",
+ "Get_link": "Link erhalten",
+ "User_joined_the_channel": "ist dem Kanal beigetreten",
+ "User_joined_the_conversation": "hat sich dem Gespräch angeschlossen",
+ "User_joined_the_team": "ist dem Team beigetreten",
+ "User_left_this_channel": "hat den Kanal verlassen",
"Has_left_the_team": "Hat das Team verlassen",
"Hide_System_Messages": "Systemnachrichten ausblenden",
"Hide_type_messages": "\"{{type}}\"-Nachrichten ausblenden",
@@ -321,6 +326,7 @@
"Message_accessibility": "Nachricht von {{user}} um {{time}}: {{message}}",
"Message_actions": "Nachrichtenaktionen",
"Message_pinned": "Eine Nachricht wurde angeheftet",
+ "Message_removed": "Nachricht entfernt",
"Message_starred": "Nachricht favorisiert",
"Message_unstarred": "Nachricht nicht mehr favorisiert",
"message": "Nachricht",
@@ -348,6 +354,7 @@
"No_mentioned_messages": "Keine Nachrichten mit Erwähnungen",
"No_pinned_messages": "Keine angehefteten Nachrichten",
"No_results_found": "Keine Ergebnisse gefunden",
+ "No_members_found": "Keine Mitglieder gefunden",
"No_starred_messages": "Keine markierten Nachrichten",
"No_thread_messages": "Keine Threadnachrichten",
"No_label_provided": "Kein(e) {{label}} gesetzt.",
@@ -443,11 +450,21 @@
"Roles": "Rollen",
"Room_actions": "Room-Aktionen",
"Room_changed_announcement": "Room-Ansage geändert in: {{announcement}} von {{userBy}}",
+ "room_avatar_changed": "hat den Raum-Avatar geändert",
"Room_changed_description": "Room-beschreibung geändert in: {{description}} von {{userBy}}",
+ "changed_room_description": "hat die Raumbeschreibung geändert zu: {{description}}",
+ "changed_room_announcement": "hat die Ankündigung des Raumes geändert zu: {{announcement}}",
+ "room_changed_type": "hat den Raum geändert zu {{type}}",
+ "room_changed_topic_to": "hat das Thema des Raumes geändert zu: {{topic}}",
"Room_Files": "Room-Dateien",
"Room_Info_Edit": "Room-Info bearbeiten",
"Room_Info": "Room-Info",
"Room_Members": "Room-Mitglieder",
+ "Room_name_changed_to": "hat den Namen des Raumes geändert zu: {{name}}",
+ "room_disallowed_reactions": "hat Reaktionen untersagt",
+ "room_allowed_reactions": "hat Reaktionen erlaubt",
+ "room_removed_read_only_permission": "hat die Nur-Lese-Berechtigung entfernt",
+ "room_set_read_only_permission": "hat den Raum auf \"Nur Lesen\" gesetzt",
"SAVE": "SPEICHERN",
"Save_Changes": "Änderungen speichern",
"Save": "speichern",
@@ -463,6 +480,7 @@
"Search_Messages": "Nachrichten suchen",
"Search": "Suche",
"Search_by": "Suche nach",
+ "Search_emoji": "Emoji suchen",
"Search_global_users": "Nach globalen Benutzern suchen",
"Search_global_users_description": "Wenn aktiviert, Können Sie nach Benutzern von anderen Unternehmen oder Servern suchen.",
"Seconds": "{{second}} Sekunden",
@@ -547,13 +565,21 @@
"Unsupported_system_message": "Nicht unterstützte Systemmeldung",
"Updating": "Aktualisierung …",
"Uploading": "Hochladen",
+ "FileUpload_Error": "Fehler bei Datei-Upload",
+ "Upload_in_progress": "Upload in Bearbeitung",
"Upload_file_question_mark": "Datei hochladen?",
"User": "Benutzer",
"Users": "Benutzer",
+ "User_added_to": "hat {{userAdded}} hinzugefügt",
"User_Info": "Benutzerinfo",
"User_has_been_key": "Benutzer wurde {{key}}",
"User_is_no_longer_role_by_": "{{user}} ist nicht länger {{role}} von {{userBy}}",
+ "User_has_been_muted": "hat {{userMuted}} stumm gestellt",
+ "User_has_been_removed": "hat {{userRemoved}} entfernt",
"User_sent_an_attachment": "{{user}}: eine Datei gesendet",
+ "User_has_been_unmuted": "hat {{userUnmuted}} nicht mehr auf stumm gestellt",
+ "Defined_user_as_role": "hat {{user}} als {{role}} gesetzt",
+ "Removed_user_as_role": "hat {{user}} als {{role}} entfernt",
"Username_is_empty": "Der Benutzername ist leer",
"Username": "Benutzername",
"Username_or_email": "Benutzername oder E-Mail-Adresse",
@@ -695,6 +721,8 @@
"Message_Ignored": "Nachricht ignoriert. Antippen um sie zu zeigen.",
"Enter_workspace_URL": "Arbeitsbereich-URL",
"Workspace_URL_Example": "z.B. https://rocketchat.deine-firma.de",
+ "Enabled_E2E_Encryption_for_this_room": "hat E2E-Verschlüsselung für diesen Raum aktiviert",
+ "Disabled_E2E_Encryption_for_this_room": "hat E2E-Verschlüsselung für diesen Raum deaktiviert",
"Teams": "Teams",
"No_team_channels_found": "Keine Kanäle gefunden",
"Team_not_found": "Team nicht gefunden",
@@ -778,7 +806,11 @@
"Unsupported_format": "Nicht unterstütztes Format",
"Downloaded_file": "Heruntergeladene Datei",
"Error_Download_file": "Fehler beim Herunterladen der Datei",
+ "added__roomName__to_this_team": "hat #{{roomName}} diesem Team hinzugefügt",
+ "Added__username__to_this_team": "hat @{{user_added}} zu einem Team hinzugefügt",
"Converting_team_to_channel": "Team in Channel umwandeln",
+ "Converted__roomName__to_a_team": "hat #{{roomName}} in ein Team umgewandelt",
+ "Converted__roomName__to_a_channel": "hat #{{roomName}} in einen Kanal umgewandelt",
"Deleted__roomName__": "#{{roomName}} gelöscht",
"Message_HideType_added_user_to_team": "Nachrichten \"Benutzer zu Team hinzugefügt\" ausblenden",
"Message_HideType_removed_user_from_team": "Nachrichten \"Benutzer aus Team entfernt\" ausblenden",
@@ -789,7 +821,10 @@
"Message_HideType_user_converted_to_team": "Nachrichten \"Benutzer hat Channel in Team konvertiert\" ausblenden",
"Message_HideType_user_deleted_room_from_team": "Nachrichten \"Benutzer hat Room aus Team gelöscht\" ausblenden",
"Message_HideType_user_removed_room_from_team": "Nachrichten \"Benutzer hat Room aus Team entfernt\" ausblenden",
+ "Removed__roomName__from_the_team": "hat #{{roomName}} aus diesem Team entfernt",
+ "Removed__username__from_the_team": "hat @{{userRemoved}} aus diesem Team entfernt",
"User_joined_team": "ist dem Team beigetreten",
+ "User_left_team": "hat das Team verlassen",
"Place_chat_on_hold": "Chat in die Warteschleife stellen",
"Would_like_to_place_on_hold": "Möchten Sie diesen Chat in die Warteschleife legen?",
"Open_Livechats": "Offene Livechats",
@@ -808,5 +843,20 @@
"totp-invalid": "Code oder Passwort ist falsch",
"Close_Chat": "Chat schließen",
"Select_tags": "Tags auswählen",
- "Broadcast_hint": "Nur autorisierte Benutzer können neue Nachrichten schreiben, die anderen Benutzer können jedoch antworten"
+ "Skip": "Überspringen",
+ "N_Selected_members": "{{n}} ausgewählt",
+ "Broadcast": "Broadcast",
+ "Broadcast_hint": "Nur autorisierte Benutzer können neue Nachrichten schreiben, die anderen Benutzer können jedoch antworten",
+ "Team_hint_private": "Nur eingeladene Benutzer können beitreten",
+ "Team_hint_public": "Wenn deaktiviert, kann jeder dem Team beitreten",
+ "Team_hint_not_read_only": "Jeder Benutzer in diesem Team kann Nachrichten schreiben",
+ "Team_hint_encrypted": "Ende-zu-Ende-verschlüsseltes Team. In verschlüsselten Team ist keine Suche möglich und Benachrichtigungen zeigen möglicherweise nicht den Nachrichteninhalt an.",
+ "Team_hint_encrypted_not_available": "Nur für private Teams verfügbar",
+ "Channel_hint_private": "Nur eingeladene Nutzer können auf diesen Kanal zugreifen",
+ "Channel_hint_public": "Jeder kann auf diesen Kanal zugreifen",
+ "Channel_hint_encrypted": "Ende-zu-Ende verschlüsselter Kanal. Die Suche funktioniert nicht mit verschlüsselten Channels. In Benachrichtigungen wird der Inhalt der Nachricht möglicherweise nicht angezeigt.",
+ "Channel_hint_not_read_only": "Alle Nutzer im Kanal können neue Nachrichten schreiben",
+ "Channel_hint_encrypted_not_available": "Nicht verfügbar in öffentlichen Kanälen",
+ "Read_only_hint": "Nur autorisierte Benutzer können neue Nachrichten schreiben",
+ "Discussion": "Diskussion"
}
\ No newline at end of file
diff --git a/app/i18n/locales/en.json b/app/i18n/locales/en.json
index e2f1fca0a..3fe3ea01b 100644
--- a/app/i18n/locales/en.json
+++ b/app/i18n/locales/en.json
@@ -565,6 +565,8 @@
"Unsupported_system_message": "Unsupported system message",
"Updating": "Updating...",
"Uploading": "Uploading",
+ "FileUpload_Error": "File Upload Error",
+ "Upload_in_progress": "Upload in progress",
"Upload_file_question_mark": "Upload file?",
"User": "User",
"Users": "Users",
@@ -862,6 +864,16 @@
"Select_Members": "Select Members",
"Also_send_thread_message_to_channel_behavior": "Also send thread message to channel",
"Accounts_Default_User_Preferences_alsoSendThreadToChannel_Description": "Allow users to select the Also send to channel behavior",
+ "Waiting_for_answer": "Waiting for answer",
+ "Call_ended": "Call ended",
+ "Call_was_not_answered": "Call was not answered",
+ "Call_back": "Call Back",
+ "Call_again": "Call Again",
+ "Call_ongoing": "Call Ongoing",
+ "Joined": "Joined",
+ "Calling": "Calling...",
+ "Start_a_call": "Start a call",
+ "Call": "Call",
"Reply_in_direct_message": "Reply in Direct Message",
"room_archived": "archived room",
"room_unarchived": "unarchived room"
diff --git a/app/i18n/locales/es-ES.json b/app/i18n/locales/es-ES.json
index caff90735..5f5507e32 100644
--- a/app/i18n/locales/es-ES.json
+++ b/app/i18n/locales/es-ES.json
@@ -183,6 +183,7 @@
"Forgot_password": "¿Ha olvidado su contraseña?",
"Forgot_Password": "Olvidé la contraseña",
"Full_table": "Click para ver la tabla completa",
+ "Get_link": "Obtener enlace",
"In_App_And_Desktop": "En la aplicación y en el escritorio",
"In_App_and_Desktop_Alert_info": "Muestra un banner en la parte superior de la pantalla cuando la aplicación esté abierta y muestra una notificación en el escritorio",
"Invisible": "Invisible",
@@ -214,6 +215,7 @@
"Message_accessibility": "Mensaje de {{user}} a las {{time}}: {{message}}",
"Message_actions": "Acciones de mensaje",
"Message_pinned": "Mensaje fijado",
+ "Message_removed": "Mensaje eliminado",
"message": "mensaje",
"messages": "mensajes",
"Messages": "Mensajes",
@@ -423,6 +425,5 @@
"Server_selection_numbers": "Seleccionar servidor 1...9",
"Add_server": "Añadir servidor",
"New_line": "Nueva línea",
- "Broadcast_hint": "Sólo los usuarios autorizados pueden escribir nuevos mensajes, el resto podrán responder sobre los mismos.",
- "Get_link": "Obtener enlace"
+ "Broadcast_hint": "Sólo los usuarios autorizados pueden escribir nuevos mensajes, el resto podrán responder sobre los mismos."
}
\ No newline at end of file
diff --git a/app/i18n/locales/fi.json b/app/i18n/locales/fi.json
index 6f31cf5a2..f5cc00392 100644
--- a/app/i18n/locales/fi.json
+++ b/app/i18n/locales/fi.json
@@ -1 +1,880 @@
-{ }
\ No newline at end of file
+{
+ "__count__empty_rooms_will_be_removed_automatically": "{{count}} tyhjää huonetta poistetaan.",
+ "__count__empty_room_will_be_removed_automatically": "{{count}} tyhjä huone poistetaan.",
+ "1_person_reacted": "1 henkilö reagoi",
+ "1_user": "1 käyttäjä",
+ "error-action-not-allowed": "{{action}} ei ole sallittu",
+ "error-application-not-found": "Sovellusta ei löydy",
+ "error-archived-duplicate-name": "Nimellä {{room_name}} on arkistoitu kanava",
+ "error-avatar-invalid-url": "Virheellinen avatarin URL-osoite: {{url}}",
+ "error-avatar-url-handling": "Virhe käsiteltäessä avatarin asetusta URL-osoitteesta ({{url}}) käyttäjälle {{username}}",
+ "error-cant-invite-for-direct-room": "Et voi kutsua käyttäjää suoriin huoneisiin",
+ "error-could-not-change-email": "Ei voitu vaihtaa sähköpostia",
+ "error-could-not-change-name": "Ei voitu vaihtaa nimeä",
+ "error-could-not-change-username": "Ei voitu vaihtaa käyttäjätunnusta",
+ "error-could-not-change-status": "Ei voitu vaihtaa tilaa",
+ "error-delete-protected-role": "Ei voi poistaa suojattua roolia",
+ "error-department-not-found": "Osastoa ei löydy",
+ "error-direct-message-file-upload-not-allowed": "Tiedostojen jakaminen ei ole sallittua suorissa viesteissä",
+ "error-duplicate-channel-name": "Kanava nimeltä {{room_name}} on jo olemassa",
+ "error-email-domain-blacklisted": "Sähköpostin toimialue on estettyjen luettelossa",
+ "error-email-send-failed": "Virhe yritettäessä lähettää sähköpostia: {{message}}",
+ "error-save-image": "Virhe tallennettaessa kuvaa",
+ "error-save-video": "Virhe tallennettaessa videota",
+ "error-field-unavailable": "{{field}} on jo käytössä :(",
+ "error-file-too-large": "Tiedosto on liian suuri",
+ "error-not-permission-to-upload-file": "Sinulla ei ole oikeutta ladata tiedostoja",
+ "error-importer-not-defined": "Tuontia ei ole määritetty oikein, siitä puuttuu Import-luokka.",
+ "error-input-is-not-a-valid-field": "{{input}} ei ole kelvollinen {{field}}",
+ "error-invalid-actionlink": "Virheellinen toimintalinkki",
+ "error-invalid-arguments": "Virheelliset argumentit",
+ "error-invalid-asset": "Virheellinen resurssi",
+ "error-invalid-channel": "Virheellinen kanava.",
+ "error-invalid-channel-start-with-chars": "Virheellinen kanava. Aloita @- tai #-merkillä",
+ "error-invalid-custom-field": "Virheellinen mukautettu kenttä",
+ "error-invalid-custom-field-name": "Virheellinen mukautetun kentän nimi. Käytä vain kirjaimia, numeroita, yhdysviivoja ja alaviivoja.",
+ "error-invalid-date": "Virheellinen päivämäärä.",
+ "error-invalid-description": "Virheellinen kuvaus",
+ "error-invalid-domain": "Virheellinen toimialue",
+ "error-invalid-email": "Virheellinen sähköposti {{email}}",
+ "error-invalid-email-address": "Virheellinen sähköpostiosoite",
+ "error-invalid-file-height": "Virheellinen tiedoston korkeus",
+ "error-invalid-file-type": "Virheellinen tiedostotyyppi",
+ "error-invalid-file-width": "Virheellinen tiedoston leveys",
+ "error-invalid-from-address": "Virheellinen lähettäjän osoite.",
+ "error-invalid-integration": "Virheellinen integraatio",
+ "error-invalid-message": "Virheellinen viesti",
+ "error-invalid-method": "Virheellinen tapa",
+ "error-invalid-name": "Virheellinen nimi",
+ "error-invalid-password": "Virheellinen salasana",
+ "error-invalid-redirectUri": "Virheellinen redirectUri",
+ "error-invalid-role": "Virheellinen rooli",
+ "error-invalid-room": "Virheellinen huone",
+ "error-invalid-room-name": "{{room_name}} ei ole kelvollinen huoneen nimi",
+ "error-invalid-room-type": "{{type}} ei ole kelvollinen huoneen tyyppi.",
+ "error-invalid-settings": "Asetukset ovat virheelliset",
+ "error-invalid-subscription": "Virheellinen tilaus",
+ "error-invalid-token": "Virheellinen tunnus",
+ "error-invalid-triggerWords": "Virheelliset triggerWords-sanat",
+ "error-invalid-urls": "Virheelliset URL-osoitteet",
+ "error-invalid-user": "Virheellinen käyttäjä",
+ "error-invalid-username": "Virheellinen käyttäjätunnus",
+ "error-invalid-webhook-response": "Webhook-URL ilmoitti muun tilan kuin 200",
+ "error-message-deleting-blocked": "Viestin poistaminen on estetty",
+ "error-message-editing-blocked": "Viestin muokkaus on estetty",
+ "error-message-size-exceeded": "Viestin koko on yli Message_MaxAllowedSize",
+ "error-missing-unsubscribe-link": "Sinun on annettava [unsubscribe] -linkki.",
+ "error-no-owner-channel": "Et omista kanavaa",
+ "error-no-tokens-for-this-user": "Käyttäjällä ei ole tunnuksia",
+ "error-not-allowed": "Ei sallittu",
+ "error-not-authorized": "Ei valtuutettu",
+ "error-push-disabled": "Push-ilmoitukset ovat poissa käytöstä",
+ "error-remove-last-owner": "Tämä on viimeinen omistaja. Aseta uusi omistaja ennen kuin poistat tämän.",
+ "error-role-in-use": "Roolia ei voi poistaa, koska se on käytössä",
+ "error-role-name-required": "Roolin nimi on pakollinen",
+ "error-password-same-as-current": "Annettu salasana sama kuin nykyinen salasana",
+ "error-the-field-is-required": "Kenttä {{field}} on pakollinen.",
+ "error-too-many-requests": "Virhe, liikaa pyyntöjä. Hidasta vähän. Odota {{seconds}} sekuntia ennen uutta yritystä.",
+ "error-user-is-not-activated": "Käyttäjää ei ole aktivoitu",
+ "error-user-has-no-roles": "Käyttäjällä ei ole rooleja",
+ "error-user-limit-exceeded": "Käyttäjien määrä, jonka yrität kutsua kanavalle #channel_name, ylittää järjestelmänvalvojan asettaman rajan",
+ "error-user-not-in-room": "Käyttäjä ei ole tässä huoneessa",
+ "error-user-registration-custom-field": "error-user-registration-custom-field",
+ "error-user-registration-disabled": "Käyttäjän rekisteröinti on poissa käytöstä",
+ "error-user-registration-secret": "Käyttäjän rekisteröinti on sallittu ainoastaan salaisen URL-osoitteen kautta",
+ "error-you-are-last-owner": "Olet viimeinen omistaja. Aseta uusi omistaja ennen huoneesta lähtöä.",
+ "error-status-not-allowed": "Näkymätön tila on poistettu käytöstä",
+ "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Uusi omistaja liitetään automaattisesti {{count}} huoneeseen.",
+ "A_new_owner_will_be_assigned_automatically_to__count__room": "Uusi omistaja liitetään automaattisesti {{count}} huoneeseen.",
+ "Actions": "Toimet",
+ "Activity": "Toiminta",
+ "Add_Reaction": "Lisää reaktio",
+ "Add_Server": "Lisää palvelin",
+ "Add_users": "Lisää käyttäjiä",
+ "Admin_Panel": "Hallintapaneeli",
+ "Agent": "Agentti",
+ "Alert": "Hälytys",
+ "alert": "hälytys",
+ "alerts": "hälytystä",
+ "All_users_in_the_channel_can_write_new_messages": "Kaikki kanavan käyttäjät voivat kirjoittaa uusia viestejä",
+ "All_users_in_the_team_can_write_new_messages": "Kaikki tiimin käyttäjät voivat kirjoittaa uusia viestejä",
+ "A_meaningful_name_for_the_discussion_room": "Mielekäs nimi keskusteluhuoneelle",
+ "All": "Kaikki",
+ "All_Messages": "Kaikki viestit",
+ "Allow_Reactions": "Salli reaktiot",
+ "Alphabetical": "Aakkosjärjestys",
+ "and_more": "ja muuta",
+ "and": "ja",
+ "announcement": "ilmoitus",
+ "Announcement": "Ilmoitus",
+ "Apply_Your_Certificate": "Käytä varmennetta",
+ "ARCHIVE": "ARKISTO",
+ "archive": "arkisto",
+ "are_typing": "kirjoittavat",
+ "Are_you_sure_question_mark": "Oletko varma?",
+ "Are_you_sure_you_want_to_delete_your_account": "Haluatko varmasti poistaa tilisi?",
+ "Deleting_a_user_will_delete_all_messages": "Käyttäjän poistaminen poistaa myös kaikki kyseisen käyttäjän viestit, huoneet ja tiimit. Tätä ei voi kumota.",
+ "Are_you_sure_you_want_to_leave_the_room": "Haluatko varmasti poistua huoneesta {{room}}?",
+ "Audio": "Ääni",
+ "Authenticating": "Todennetaan",
+ "Automatic": "Automaattinen",
+ "Auto_Translate": "Automaattikäännös",
+ "Avatar_changed_successfully": "Avatar on vaihdettu!",
+ "Avatar_Url": "Avatarin URL-osoite",
+ "Away": "Poissa",
+ "Back": "Takaisin",
+ "Black": "Musta",
+ "Block_user": "Estä käyttäjä",
+ "Browser": "Selain",
+ "Busy": "Varattu",
+ "By_proceeding_you_are_agreeing": "Jatkamalla hyväksyt",
+ "Cancel_editing": "Peruuta muokkaus",
+ "Cancel_recording": "Peruuta tallennus",
+ "Cancel": "Peruuta",
+ "changing_avatar": "vaihtaa avataria",
+ "creating_channel": "luo kanavaa",
+ "creating_invite": "luo kutsua",
+ "Channel_Name": "Kanavan nimi",
+ "Channels": "Kanavat",
+ "Chats": "Keskustelut",
+ "Chat_started": "Keskustelu aloitettu",
+ "Call_already_ended": "Puhelu on jo päättynyt!",
+ "Clear_cookies_alert": "Haluatko tyhjentää kaikki evästeet?",
+ "Clear_cookies_desc": "Tämä toiminto tyhjentää kaikki kirjautumisevästeet, joten voit kirjautua muille tileille.",
+ "Clear_cookies_yes": "Kyllä, tyhjennä evästeet",
+ "Clear_cookies_no": "Ei, säilytä evästeet",
+ "Click_to_join": "Liity napsauttamalla!",
+ "Close": "Sulje",
+ "Close_emoji_selector": "Sulje emojien valitsin",
+ "Closing_chat": "Suljetaan keskustelua",
+ "Change_language_loading": "Vaihdetaan kieltä.",
+ "Chat_closed_by_agent": "Agentti sulki keskustelun",
+ "Choose": "Valitse",
+ "Choose_from_library": "Valitse kirjastosta",
+ "Choose_file": "Valitse tiedosto",
+ "Choose_where_you_want_links_be_opened": "Valitse, missä linkit avataan",
+ "Code": "Koodi",
+ "Code_or_password_invalid": "Koodi tai salasana virheellinen",
+ "Conversation_closed": "Keskustelu suljettu",
+ "Collaborative": "Yhteistyö",
+ "Confirm": "Vahvista",
+ "Connect": "Yhdistä",
+ "Connected": "Yhdistetty",
+ "connecting_server": "yhdistää palvelimeen",
+ "Connecting": "Yhdistetään...",
+ "Contact_us": "Ota yhteyttä",
+ "Contact_your_server_admin": "Ota yhteys palvelimen järjestelmänvalvojaan.",
+ "Continue_with": "Jatka:",
+ "Copied_to_clipboard": "Kopioitu leikepöydälle!",
+ "Copy": "Kopioi",
+ "Conversation": "Keskustelu",
+ "Certificate_password": "Varmenteen salasana",
+ "Clear_cache": "Tyhjennä paikallisen palvelimen välimuisti",
+ "Clear_cache_loading": "Tyhjennetään välimuistia.",
+ "Whats_the_password_for_your_certificate": "Mikä on varmenteesi salasana?",
+ "Create_account": "Luo tili",
+ "Create_Channel": "Luo kanava",
+ "Create_Direct_Messages": "Luo suoria viestejä",
+ "Create_Discussion": "Luo keskustelu",
+ "Created_snippet": "loi katkelman",
+ "Create_a_new_workspace": "Luo uusi työtila",
+ "Create": "Luo",
+ "Custom_Status": "Mukautettu tila",
+ "Dark": "Tumma",
+ "Dark_level": "Tumman taso",
+ "Default": "Oletus",
+ "Default_browser": "Oletusselain",
+ "Delete_Room_Warning": "Huomeen poistaminen poistaa kaikki huoneessa olevat viestit. Tätä ei voi kumota.",
+ "Department": "Osasto",
+ "delete": "poista",
+ "Delete": "Poista",
+ "DELETE": "POISTA",
+ "Delete_Account": "Poista tili",
+ "Delete_Account_confirm": "Kyllä, poista",
+ "move": "siirrä",
+ "deleting_room": "poistaa huonetta",
+ "description": "kuvaus",
+ "Description": "Kuvaus",
+ "Desktop_Options": "Työpöytäasetukset",
+ "Desktop_Notifications": "Työpöytäilmoitukset",
+ "Desktop_Alert_info": "Nämä ilmoitukset näkyvät työpöydällä",
+ "Directory": "Hakemisto",
+ "Direct_Messages": "Suorat viestit",
+ "Disable_notifications": "Poista käytöstä ilmoitukset",
+ "Discussions": "Keskustelut",
+ "Discussion_Desc": "Pysy selvillä tapahtumista! Luomalla keskustelun luot valitsemasi kanavan alikanavan, ja keskustelut liitetään yhteen.",
+ "Discussion_name": "Keskustelun nimi",
+ "Done": "Valmis",
+ "Dont_Have_An_Account": "Eikö sinulla ole tiliä?",
+ "Do_you_have_an_account": "Onko sinulla tili?",
+ "Do_you_have_a_certificate": "Onko sinulla varmenne?",
+ "Do_you_really_want_to_key_this_room_question_mark": "Haluatko varmasti {{key}} tämän huoneen?",
+ "E2E_Encryption": "Täysi salaus",
+ "E2E_How_It_Works_info1": "Nyt voit luoda salattuja yksityisiä ryhmiä ja suoria viestejä. Voit myös muuttaa nykyisiä yksityisiä ryhmiä tai suoria viestejä salatuksi.",
+ "E2E_How_It_Works_info2": "Tämä on *täysi salaus*, joten viestiesi salaamiseen ja salauksen purkuun käytettävää avainta ei tallenneta palvelimeen. Siksi *sinun on tallennettava tämä salasana turvalliseen paikkaan*, johon pääset myöhemmin tarvittaessa.",
+ "E2E_How_It_Works_info3": "Jos jatkat, täyden salauksen salasana luodaan automaattisesti.",
+ "E2E_How_It_Works_info4": "Voit myös määrittää uuden salasanan salausavaimellesi milloin tahansa missä tahansa selaimessa, jossa olet antanut nykyisen täyden salauksen salasanan.",
+ "edit": "muokkaa",
+ "edited": "muokkasi",
+ "Edit": "Muokkaa",
+ "Edit_Status": "Muokkaa tilaa",
+ "Edit_Invite": "Muokkaa kutsua",
+ "End_to_end_encrypted_room": "Täysin salattu huone",
+ "end_to_end_encryption": "täysi salaus",
+ "Email_Notification_Mode_All": "Jokainen maininta/SV",
+ "Email_Notification_Mode_Disabled": "Ei käytössä",
+ "Email_or_password_field_is_empty": "Sähköposti- tai salasanakenttä on tyhjä",
+ "Email": "Sähköposti",
+ "email": "sähköposti",
+ "Empty_title": "Tyhjä otsikko",
+ "Enable_Auto_Translate": "Ota käyttöön automaattikäännös",
+ "Enable_notifications": "Ota käyttöön ilmoitukset",
+ "Encrypted": "Salattu",
+ "Encrypted_message": "Salattu viesti",
+ "Enter_Your_E2E_Password": "Anna täyden salauksen salasanasi",
+ "Enter_Your_Encryption_Password_desc1": "Näin pääset käyttämään salattuja yksityisiä ryhmiäsi ja suoria viestejäsi.",
+ "Enter_Your_Encryption_Password_desc2": "Sinun on annettava viestien salauksen / salauksen purkamisen salasana kaikkialla, missä käytät keskustelua.",
+ "Encryption_error_title": "Salauksen salasanasi näyttää väärältä",
+ "Encryption_error_desc": "Tuotavan salausavaimesi salausta ei voitu purkaa.",
+ "Everyone_can_access_this_channel": "Kaikilla on pääsy tälle kanavalle",
+ "Everyone_can_access_this_team": "Kaikilla on pääsy tähän tiimiin",
+ "Error_uploading": "Virhe ladattaessa",
+ "Expiration_Days": "Vanheneminen (päivää)",
+ "Favorites": "Suosikit",
+ "Files": "Tiedostot",
+ "File_description": "Tiedoston kuvaus",
+ "File_name": "Tiedostonimi",
+ "Finish_recording": "Lopeta tallennus",
+ "Following_thread": "Seurataan ketjua",
+ "For_your_security_you_must_enter_your_current_password_to_continue": "Jatka antamalla nykyinen salasanasi turvallisuussyistä",
+ "Forgot_password_If_this_email_is_registered": "Jos tämä sähköpostiosoite on rekisteröity, lähetämme salasanan nollausohjeet. Jos et saa sähköpostia pian, palaa ja yritä uudelleen.",
+ "Forgot_password": "Unohditko salasanasi?",
+ "Forgot_Password": "Unohtunut salasana",
+ "Forward": "Välitä",
+ "Forward_Chat": "Välitä keskustelu",
+ "Forward_to_department": "Välitä osastolle",
+ "Forward_to_user": "Välitä käyttäjälle",
+ "Full_table": "Näytä koko taulukko napsauttamalla",
+ "Generate_New_Link": "Luo uusi linkki",
+ "Get_link": "Hanki linkki",
+ "User_joined_the_channel": "liittyi kanavalle",
+ "User_joined_the_conversation": "liittyi keskusteluun",
+ "User_joined_the_team": "liittyi tähän tiimiin",
+ "User_left_this_channel": "poistui kanavalta",
+ "Has_left_the_team": "on poistunut tiimistä",
+ "Hide_System_Messages": "Piilota järjestelmäilmoitukset",
+ "Hide_type_messages": "Piilota \"{{type}}\"-viestit",
+ "How_It_Works": "Toimintatapa",
+ "Message_HideType_uj": "Käyttäjän liittyminen",
+ "Message_HideType_ul": "Käyttäjän poistuminen",
+ "Message_HideType_ru": "Käyttäjä poistettu",
+ "Message_HideType_au": "Käyttäjä lisätty",
+ "Message_HideType_mute_unmute": "Käyttäjä mykistetty / mykistys poistettu",
+ "Message_HideType_r": "Huoneen nimi vaihdettu",
+ "Message_HideType_ut": "Käyttäjä liittyi keskusteluun",
+ "Message_HideType_wm": "Tervetuloa",
+ "Message_HideType_rm": "Viesti poistettu",
+ "Message_HideType_subscription_role_added": "Annettiin rooli",
+ "Message_HideType_subscription_role_removed": "Rooli ei enää määritetty",
+ "Message_HideType_room_archived": "Huone arkistoitu",
+ "Message_HideType_room_unarchived": "Huone palautettu arkistosta",
+ "I_Saved_My_E2E_Password": "Tallensin täyden salauksen salasanani",
+ "IP": "IP",
+ "In_app": "Sovelluksessa",
+ "In_App_And_Desktop": "Sovelluksessa ja työpöydällä",
+ "In_App_and_Desktop_Alert_info": "Näyttää bannerin näytön yläreunassa, kun sovellus on avoinna, ja näyttää ilmoituksen työpöydällä",
+ "Invisible": "Näkymätön",
+ "Invite": "Kutsu",
+ "is_a_valid_RocketChat_instance": "on kelvollinen Rocket.Chat-esiintymä",
+ "is_not_a_valid_RocketChat_instance": "ei ole kelvollinen Rocket.Chat-esiintymä",
+ "is_typing": "kirjoittaa",
+ "Invalid_or_expired_invite_token": "Virheellinen tai vanhentunut kutsutunnus",
+ "Invalid_server_version": "Palvelin, johon yrität muodostaa yhteyttä, käyttää versiota, jota sovellus ei enää tue: {{currentVersion}}.\n\nEdellytämme versiota {{minVersion}}",
+ "Invite_Link": "Kutsulinkki",
+ "Invite_users": "Kutsu käyttäjiä",
+ "Join": "Liity",
+ "Join_Code": "Liittymiskoodi",
+ "Insert_Join_Code": "Lisää liittymiskoodi",
+ "Join_our_open_workspace": "Liity avoimeen työtilaamme",
+ "Join_your_workspace": "Liity työtilaasi",
+ "Just_invited_people_can_access_this_channel": "Vain kutsutut ihmiset voivat käyttää tätä kanavaa",
+ "Just_invited_people_can_access_this_team": "Vain kutsutut ihmiset voivat käyttää tätä tiimiä",
+ "Language": "Kieli",
+ "last_message": "viimeinen viesti",
+ "Leave_channel": "Poistu kanavalta",
+ "leaving_room": "poistuu huoneesta",
+ "Leave": "Poistu",
+ "leave": "poistu",
+ "Legal": "Oikeudellinen",
+ "Light": "Vaalea",
+ "License": "Käyttöoikeus",
+ "Livechat": "Livechat",
+ "Livechat_edit": "Livechat-muokkaus",
+ "Livechat_transfer_return_to_the_queue": "palautti keskustelun jonoon",
+ "Login": "Kirjaudu",
+ "Login_error": "Tunnistetietojasi ei hyväksytty! Yritä uudelleen.",
+ "Login_with": "Kirjaudu:",
+ "Logging_out": "Kirjaudutaan ulos.",
+ "Logout": "Kirjaudu ulos",
+ "Max_number_of_uses": "Käyttökertojen enimmäismäärä",
+ "Max_number_of_users_allowed_is_number": "Suurin sallittu käyttäjämäärä on {{maxUsers}}",
+ "members": "jäsentä",
+ "Members": "Jäsenet",
+ "Mentioned_Messages": "Mainitut viestit",
+ "mentioned": "mainitsi",
+ "Mentions": "Maininnat",
+ "Message_accessibility": "Viesti käyttäjältä {{user}} klo {{time}}: {{message}}",
+ "Message_actions": "Viestitoimet",
+ "Message_pinned": "Viesti kiinnitetty",
+ "Message_removed": "viesti poistettu",
+ "Message_starred": "Viesti merkitty tähdellä",
+ "Message_unstarred": "Viestin tähtimerkintä poistettu",
+ "message": "viesti",
+ "messages": "viestiä",
+ "Message": "Viesti",
+ "Messages": "Viestit",
+ "Message_Reported": "Viestistä ilmoitettu",
+ "Microphone_Permission_Message": "Rocket.Chat tarvitsee mikrofonin käyttöoikeuden, jotta voit lähettää ääniviestejä.",
+ "Microphone_Permission": "Mikrofonin oikeus",
+ "Mute": "Mykistä",
+ "muted": "mykistetty",
+ "My_servers": "Omat palvelimet",
+ "N_people_reacted": "{{n}} henkilöä reagoi",
+ "N_users": "{{n}} käyttäjää",
+ "N_channels": "{{n}} kanavaa",
+ "Name": "Nimi",
+ "Never": "Ei koskaan",
+ "New_chat_transfer": "Uuden keskustelun siirto: {{agent}} palautti keskustelun jonoon",
+ "New_Message": "Uusi viesti",
+ "New_Password": "Uusi salasana",
+ "New_Server": "Uusi palvelin",
+ "Next": "Seuraava",
+ "No_files": "Ei tiedostoja",
+ "No_limit": "Ei rajoitusta",
+ "No_mentioned_messages": "Ei mainittuja viestejä",
+ "No_pinned_messages": "Ei kiinnitettyjä viestejä",
+ "No_results_found": "Tuloksia ei löydy",
+ "No_members_found": "Jäseniä ei löydy",
+ "No_starred_messages": "Ei tähdellä merkittyjä viestejä",
+ "No_thread_messages": "Ei ketjuviestejä",
+ "No_label_provided": "Ei merkintää {{label}} provided.",
+ "No_Message": "Ei viestiä",
+ "No_messages_yet": "Ei vielä viestejä",
+ "No_Reactions": "Ei reaktioita",
+ "No_Read_Receipts": "Ei lukukuittauksia",
+ "Not_logged": "Ei kirjautunut",
+ "Not_RC_Server": "Tämä ei ole Rocket.Chat-palvelin.\n{{contact}}",
+ "Nothing": "Ei mitään",
+ "Nothing_to_save": "Ei tallennettavaa!",
+ "Notify_active_in_this_room": "Ilmoita tämän huoneen aktiivisille käyttäjille",
+ "Notify_all_in_this_room": "Ilmoita kaikille tässä huoneessa",
+ "Notifications": "Ilmoitukset",
+ "Notification_Duration": "Ilmoituksen kesto",
+ "Notification_Preferences": "Ilmoitusasetukset",
+ "No_available_agents_to_transfer": "Ei vapaita agentteja siirrettäviksi",
+ "Offline": "Offline",
+ "Oops": "Oho!",
+ "Omnichannel": "Omnichannel",
+ "Omnichannel_enable_alert": "Et ole saavutettavissa Omnichannelissa. Haluatko olla saavutettavissa?",
+ "Onboarding_description": "Työtila on tiimisi tai organisaatiosi tila yhteistyölle. Pyydä työtilan järjestelmänvalvojalta osoite, jotta voit liittyä työtilaan tai luoda sellaisen tiimillesi.",
+ "Onboarding_join_workspace": "Liity työtilaan",
+ "Onboarding_subtitle": "Enemmän kuin ryhmäyhteistyötä",
+ "Onboarding_title": "Tervetuloa Rocket.Chatiin",
+ "Onboarding_join_open_description": "Liity avoimeen työtilaamme keskustelemaan Rocket.Chat-tiimin ja -yhteisön kanssa.",
+ "Onboarding_agree_terms": "Jatkamalla hyväksyt Rocket.Chatin",
+ "Onboarding_less_options": "Vähemmän vaihtoehtoja",
+ "Onboarding_more_options": "Enemmän vaihtoehtoja",
+ "Online": "Online",
+ "Only_authorized_users_can_write_new_messages": "Vain valtuutetut käyttäjät voivat kirjoittaa uusia viestejä",
+ "Open_emoji_selector": "Avaa emojien valitsin",
+ "Open_Source_Communication": "Avoimen lähdekoodin viestintä",
+ "Open_your_authentication_app_and_enter_the_code": "Avaa todennussovellus ja anna koodi.",
+ "OR": "TAI",
+ "OS": "Käyttöjärjestelmä",
+ "Overwrites_the_server_configuration_and_use_room_config": "Korvaa palvelimen määritykset ja käyttää huoneen määrityksiä",
+ "Password": "Salasana",
+ "Parent_channel_or_group": "Pääkanava tai -ryhmä",
+ "Permalink_copied_to_clipboard": "Pysyvä linkki kopioitu leikepöydälle!",
+ "Phone": "Puhelin",
+ "Pin": "Kiinnitä",
+ "Pinned_Messages": "Kiinnitetyt viestit",
+ "pinned": "kiinnitetty",
+ "Pinned": "Kiinnitetty",
+ "Please_add_a_comment": "Lisää kommentti",
+ "Please_enter_your_password": "Anna salasana",
+ "Please_wait": "Odota.",
+ "Preferences": "Asetukset",
+ "Preferences_saved": "Asetukset tallennettu!",
+ "Privacy_Policy": "Tietosuojakäytäntö",
+ "Private": "Yksityinen",
+ "Processing": "Käsitellään...",
+ "Profile_saved_successfully": "Profiili on tallennettu!",
+ "Profile": "Profiili",
+ "Public_Channel": "Julkinen kanava",
+ "Public": "Julkinen",
+ "Push_Notifications": "Push-ilmoitukset",
+ "Push_Notifications_Alert_Info": "Saat näitä ilmoituksia, kun sovellus ei ole auki",
+ "Quote": "Lainaus",
+ "Reactions_are_disabled": "Reaktiot eivät ole käytössä",
+ "Reactions_are_enabled": "Reaktiot ovat käytössä",
+ "Reactions": "Reaktiot",
+ "Read_External_Permission_Message": "Rocket.Chat tarvitsee pääsyn laitteesi valokuviin, mediaan ja tiedostoihin",
+ "Read_External_Permission": "Median lukuoikeus",
+ "Read_Only": "Vain luku",
+ "Read_Receipt": "Lukukuittaus",
+ "Receive_Group_Mentions": "Vastaanota ryhmämainintoja",
+ "Receive_Group_Mentions_Info": "Vastaanota @all- ja @here-maininnat",
+ "Register": "Rekisteröi",
+ "Repeat_Password": "Toista salasana",
+ "Replied_on": "Vastasi:",
+ "replies": "vastausta",
+ "reply": "vastaus",
+ "Reply": "Vastaa",
+ "Report": "Ilmoita",
+ "Receive_Notification": "Vastaanota ilmoitus",
+ "Receive_notifications_from": "Vastaanota ilmoitukset käyttäjältä {{name}}",
+ "Resend": "Lähetä uudelleen",
+ "Reset_password": "Nollaa salasana",
+ "resetting_password": "nollaa salasanaa",
+ "RESET": "NOLLAA",
+ "Return_to_waiting_line": "Palaa jonoon",
+ "Review_app_title": "Pidätkö tästä sovelluksesta?",
+ "Review_app_desc": "Anna meille 5 tähteä: {{store}}",
+ "Review_app_yes": "Selvä!",
+ "Review_app_no": "Ei",
+ "Review_app_later": "Ehkä myöhemmin",
+ "Review_app_unable_store": "Ei voida avata: {{store}}",
+ "Review_this_app": "Arvioi tämä sovellus",
+ "Remove": "Poista",
+ "remove": "poista",
+ "Roles": "Roolit",
+ "Room_actions": "Huoneen toimet",
+ "Room_changed_announcement": "Huoneen ilmoitukseksi vaihdettu: {{announcement}} käyttäjä: {{userBy}}",
+ "room_avatar_changed": "vaihtoi huoneen avatarin",
+ "Room_changed_description": "Huoneen kuvaukseksi vaihdettu: {{description}} käyttäjä: {{userBy}}",
+ "changed_room_description": "vaihtoi huoneen kuvaukseksi: {{description}}",
+ "changed_room_announcement": "vaihtoi huoneen ilmoitukseksi: {{announcement}}",
+ "room_changed_type": "vaihtoi huoneen tyypiksi {{type}}",
+ "room_changed_topic_to": "vaihtoi huoneen aiheeksi: {{topic}}",
+ "Room_Files": "Huoneen tiedostot",
+ "Room_Info_Edit": "Huoneen tietojen muokkaus",
+ "Room_Info": "Huoneen tiedot",
+ "Room_Members": "Huoneen jäsenet",
+ "Room_name_changed_to": "vaihtoi huoneen nimeksi: {{name}}",
+ "room_disallowed_reactions": "kielsi reaktiot",
+ "room_allowed_reactions": "salli reaktiot",
+ "room_removed_read_only_permission": "poisti vain luku -oikeuden",
+ "room_set_read_only_permission": "asetti huoneen vain luku -tilaan",
+ "SAVE": "TALLENNA",
+ "Save_Changes": "Tallenna muutokset",
+ "Save": "Tallenna",
+ "Saved": "Tallennettu",
+ "saving_preferences": "tallentaa asetuksia",
+ "saving_profile": "tallentaa profiilia",
+ "saving_settings": "tallentaa asetuksia",
+ "saved_to_gallery": "Tallennettu galleriaan",
+ "Save_Your_E2E_Password": "Tallenna täyen salauksen salasanasi",
+ "Save_Your_Encryption_Password": "Tallenna salauksen salasanasi",
+ "Save_Your_Encryption_Password_warning": "Tätä salasanaa ei tallenneta mihinkään, joten tallenna se huolellisesti muualle.",
+ "Save_Your_Encryption_Password_info": "Huomioi, että jos kadotat salasanasi, sitä ei voi palauttaa etkä pääse enää viesteihisi.",
+ "Search_Messages": "Hae viestejä",
+ "Search": "Haku",
+ "Search_by": "Hakuperuste",
+ "Search_emoji": "Hae emojia",
+ "Search_global_users": "Hae käyttäjiä kaikkialta",
+ "Search_global_users_description": "Jos otat tämän käyttöön, voit etsiä käyttäjiä muista yrityksistä tai palvelimista.",
+ "Seconds": "{{second}} sekuntia",
+ "Security_and_privacy": "Turvallisuus ja yksityisyys",
+ "Select_Avatar": "Valitse avatar",
+ "Select_Server": "Valitse palvelin",
+ "Select_Users": "Valitse käyttäjät",
+ "Select_a_Channel": "Valitse kanava",
+ "Select_a_Department": "Valitse osasto",
+ "Select_an_option": "Valitse vaihtoehto",
+ "Select_a_User": "Valitse käyttäjä",
+ "Send": "Lähetä",
+ "Send_audio_message": "Lähetä ääniviesti",
+ "Send_crash_report": "Lähetä kaatumisraportti",
+ "Send_message": "Lähetä viesti",
+ "Send_me_the_code_again": "Lähetä koodi uudelleen",
+ "Send_to": "Lähetä kohteeseen...",
+ "Sending_to": "Lähetetään kohteeseen",
+ "Sent_an_attachment": "Lähetettiin liite",
+ "Server": "Palvelin",
+ "Servers": "Palvelimet",
+ "Server_version": "Palvelimen versio: {{version}}",
+ "Set_username_subtitle": "Käyttäjätunnuksen avulla muut voivat mainita sinut viesteissä",
+ "Set_custom_status": "Aseta mukautettu tila",
+ "Set_status": "Aseta tila",
+ "Status_saved_successfully": "Tila on tallennettu!",
+ "Settings": "Asetukset",
+ "Settings_succesfully_changed": "Asetukset on muutettu!",
+ "Share": "Jaa",
+ "Share_Link": "Jaa linkki",
+ "Share_this_app": "Jaa tämä sovellus",
+ "Show_more": "Näytä lisää...",
+ "Sign_in_your_server": "Kirjaudu palvelimeesi",
+ "Sign_Up": "Rekisteröidy",
+ "Some_field_is_invalid_or_empty": "Jokin kenttä on virheellinen tai tyhjä",
+ "Sound": "Ääni",
+ "Star_room": "Tähdellinen huone",
+ "Star": "Tähti",
+ "Starred_Messages": "Tähdellä merkityt viestit",
+ "starred": "tähdellä merkittyä",
+ "Starred": "Tähdellä merkityt",
+ "Start_of_conversation": "Keskustelun alku",
+ "Start_a_Discussion": "Aloita keskustelu",
+ "Started_discussion": "Aloitettiin keskustelu:",
+ "Started_call": "Puhelun aloitti {{userBy}}",
+ "Submit": "Lähetä",
+ "Table": "Taulukko",
+ "Tags": "Tunnisteet",
+ "Take_a_photo": "Ota valokuva",
+ "Take_a_video": "Kuvaa video",
+ "Take_it": "Ota!",
+ "tap_to_change_status": "vaihda tilaa napauttamalla",
+ "Tap_to_view_servers_list": "Näytä palvelinluettelo napauttamalla",
+ "Terms_of_Service": "Käyttöehdot",
+ "Theme": "Teema",
+ "The_user_wont_be_able_to_type_in_roomName": "Käyttäjä ei voi kirjoittaa huoneessa {{roomName}}",
+ "The_user_will_be_able_to_type_in_roomName": "Käyttäjä voi kirjoittaa huoneessa {{roomName}}",
+ "There_was_an_error_while_action": "Virhe toiminnon {{action}} aikana!",
+ "This_room_is_blocked": "Huone on estetty",
+ "This_room_is_read_only": "Huone on vain luku -tilassa",
+ "Thread": "Ketju",
+ "Threads": "Ketjut",
+ "Timezone": "Aikavyöhyke",
+ "To": "Osoitteeseen",
+ "topic": "aihe",
+ "Topic": "Aihe",
+ "Translate": "Käännä",
+ "Try_again": "Yritä uudelleen",
+ "Two_Factor_Authentication": "Kaksivaiheinen tunnistautuminen",
+ "Type_the_channel_name_here": "Kirjoita kanavan nimi tähän",
+ "unarchive": "palauta arkistosta",
+ "UNARCHIVE": "PALAUTA ARKISTOSTA",
+ "Unblock_user": "Poista käyttäjän esto",
+ "Unfollowed_thread": "Lopetettiin ketjun seuraaminen",
+ "Unmute": "Mykistys poistettu",
+ "unmuted": "poisti mykistyksen",
+ "Unpin": "Poista kiinnitys",
+ "unread_messages": "lukematonta",
+ "Unread": "Lukemattomat",
+ "Unread_on_top": "Lukemattomat ylinnä",
+ "Unstar": "Poista tähti",
+ "Unsupported_system_message": "Ei tuettu järjestelmäilmoitus",
+ "Updating": "Päivitetään...",
+ "Uploading": "Ladataan",
+ "FileUpload_Error": "Tiedoston latausvirhe",
+ "Upload_in_progress": "Lataus käynnissä",
+ "Upload_file_question_mark": "Ladataanko tiedosto?",
+ "User": "Käyttäjä",
+ "Users": "Käyttäjät",
+ "User_added_to": "lisäsi käyttäjän {{userAdded}}",
+ "User_Info": "Käyttäjän tiedot",
+ "User_has_been_key": "Käyttäjä on {{key}}",
+ "User_is_no_longer_role_by_": "{{user}} ei ole enää {{role}}, muutti {{userBy}}",
+ "User_has_been_muted": "mykisti käyttäjän {{userMuted}}",
+ "User_has_been_removed": "poisti käyttäjän {{userRemoved}}",
+ "User_sent_an_attachment": "{{user}} lähetti liitteen",
+ "User_has_been_unmuted": "poisti käyttäjän {{userUnmuted}} mykistyksen",
+ "Defined_user_as_role": "määritti käyttäjän {{user}} rooliin {{role}}",
+ "Removed_user_as_role": "poisti käyttäjän {{user}} roolista {{role}}",
+ "Username_is_empty": "Käyttäjätunnus on tyhjä",
+ "Username": "Käyttäjätunnus",
+ "Username_or_email": "Sähköpostiosoite tai käyttäjätunnus",
+ "Uses_server_configuration": "Käyttää palvelimen määrityksiä",
+ "Validating": "Vahvistetaan",
+ "Registration_Succeeded": "Rekisteröinti onnistui!",
+ "Verify": "Varmista",
+ "Verify_email_title": "Rekisteröinti onnistui!",
+ "Verify_email_desc": "Lähetimme rekisteröitymisvahvistuksen sähköpostiisi. Jos et saa sähköpostia pian, yritä uudelleen.",
+ "Verify_your_email_for_the_code_we_sent": "Vahvista sähköpostiosoitteesi lähettämällämme koodilla",
+ "Video_call": "Videopuhelu",
+ "View_Original": "Näytä alkuperäinen",
+ "Voice_call": "Äänipuhelu",
+ "Waiting_for_network": "Odotetaan verkkoa...",
+ "Websocket_disabled": "Websocket ei ole käytössä tässä palvelimessa.\n{{contact}}",
+ "Welcome": "Tervetuloa",
+ "What_are_you_doing_right_now": "Mitä teet juuri nyt?",
+ "Whats_your_2fa": "Mikä on 2FA-koodisi?",
+ "Without_Servers": "Ilman palvelimia",
+ "Workspaces": "Työtilat",
+ "Would_you_like_to_return_the_inquiry": "Haluatko palauttaa kyselyn?",
+ "Write_External_Permission_Message": "Rocket.Chat tarvitsee gallerian käyttöoikeuden, jotta voit tallentaa kuvia.",
+ "Write_External_Permission": "Gallerian käyttöoikeus",
+ "Yes": "Kyllä",
+ "Yes_action_it": "Kyllä, {{action}} se!",
+ "Yesterday": "Eilen",
+ "You_are_in_preview_mode": "Olet esikatselutilassa",
+ "You_are_offline": "Olet offline-tilassa",
+ "You_can_search_using_RegExp_eg": "Voit käyttää säännöllisiä lausekkeita, esim. `/^teksti$/i`",
+ "You_colon": "Sinä:",
+ "you_were_mentioned": "sinut mainittiin",
+ "You_were_removed_from_channel": "Sinut on poistettu kanavalta {{channel}}",
+ "you": "sinä",
+ "You": "Sinä",
+ "Logged_out_by_server": "Palvelin on kirjannut sinut ulos. Kirjaudu uudelleen.",
+ "Token_expired": "Istuntosi on vanhentunut. Kirjaudu uudelleen.",
+ "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Tarvitset pääsyn vähintään Rocket.Chat-palvelimeen jakamista varten.",
+ "You_need_to_verifiy_your_email_address_to_get_notications": "Vahvista sähköpostiosoitteesi, jotta saat ilmoituksia",
+ "Your_certificate": "Varmenteesi",
+ "Your_invite_link_will_expire_after__usesLeft__uses": "Kutsulinkkisi vanhenee {{usesLeft}} käyttökerran jälkeen.",
+ "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Kutsulinkkisi vanhenee {{date}} tai {{usesLeft}} käyttökerran jälkeen.",
+ "Your_invite_link_will_expire_on__date__": "Kutsulinkkisi vanhenee {{date}}.",
+ "Your_invite_link_will_never_expire": "Kutsulinkkisi ei vanhene.",
+ "Your_workspace": "Työtilasi",
+ "Your_password_is": "Salasanasi on",
+ "Version_no": "Versio: {{version}}",
+ "You_will_not_be_able_to_recover_this_message": "Tätä viestiä ei voi palauttaa!",
+ "You_will_unset_a_certificate_for_this_server": "Poistat tämän palvelimen varmenteen asetuksen",
+ "Change_Language": "Vaihda kieltä",
+ "Crash_report_disclaimer": "Keskustelujesi sisältöä ei seurata. Kaatumisraportti ja analytiikkatapahtumat sisältävät vain olennaiset tiedot, jotta pystymme tunnistamaan ja korjaamaan ongelmat.",
+ "Type_message": "Kirjoita viesti",
+ "Room_search": "Huonehaku",
+ "Room_selection": "Huoneen valinta 1...9",
+ "Next_room": "Seuraava huone",
+ "Previous_room": "Edellinen huone",
+ "New_room": "Uusi huone",
+ "Upload_room": "Lataa huoneeseen",
+ "Search_messages": "Hae viestejä",
+ "Scroll_messages": "Vieritä viestejä",
+ "Reply_latest": "Vastaa uusimpaan",
+ "Reply_in_Thread": "Vastaa viestiketjussa",
+ "Server_selection": "Palvelimen valinta",
+ "Server_selection_numbers": "Palvelimen valinta 1...9",
+ "Add_server": "Lisää palvelin",
+ "New_line": "Uusi rivi",
+ "You_will_be_logged_out_of_this_application": "Sinut kirjataan ulos tästä sovelluksesta.",
+ "Clear": "Tyhjennä",
+ "This_will_clear_all_your_offline_data": "Tämä poistaa kaikki offline-tietosi.",
+ "This_will_remove_all_data_from_this_server": "Tämä poistaa kaikki tiedot tästä palvelimesta.",
+ "Mark_unread": "Merkitse lukemattomaksi",
+ "Wait_activation_warning": "Ennen kuin voit kirjautua, järjestelmänvalvojan on aktivoitava tilisi manuaalisesti.",
+ "Screen_lock": "Näytön lukitus",
+ "Local_authentication_biometry_title": "Todenna",
+ "Local_authentication_biometry_fallback": "Käytä salasanaa",
+ "Local_authentication_unlock_option": "Avaa lukitus salasanalla",
+ "Local_authentication_change_passcode": "Vaihda salasana",
+ "Local_authentication_info": "Huomautus: jos unohdat salasanan, sinun on poistettava sovellus ja asennettava se uudelleen.",
+ "Local_authentication_facial_recognition": "kasvojentunnistus",
+ "Local_authentication_fingerprint": "sormenjälki",
+ "Local_authentication_unlock_with_label": "Avaa lukitus: {{label}}",
+ "Local_authentication_auto_lock_60": "1 minuutin kuluttua",
+ "Local_authentication_auto_lock_300": "5 minuutin kuluttua",
+ "Local_authentication_auto_lock_900": "15 minuutin kuluttua",
+ "Local_authentication_auto_lock_1800": "30 minuutin kuluttua",
+ "Local_authentication_auto_lock_3600": "1 tunnin kuluttua",
+ "Passcode_enter_title": "Anna salasanasi",
+ "Passcode_choose_title": "Valitse uusi salasana",
+ "Passcode_choose_confirm_title": "Vahvista uusi salasana",
+ "Passcode_choose_error": "Salasanat eivät täsmää. Yritä uudelleen.",
+ "Passcode_choose_force_set": "Järjestelmänvalvoja edellyttää salasanaa",
+ "Passcode_app_locked_title": "Sovellus lukittu",
+ "Passcode_app_locked_subtitle": "Yritä uudelleen {{timeLeft}} sekunnin kuluttua",
+ "After_seconds_set_by_admin": "{{seconds}} sekunnin kuluttua (järjestelmänvalvojan asettama)",
+ "Dont_activate": "Älä aktivoi nyt",
+ "Queued_chats": "Jonossa olevat keskustelut",
+ "Logout_from_other_logged_in_locations": "Kirjaa ulos muista sijainneista",
+ "You_will_be_logged_out_from_other_locations": "Sinut kirjataan ulos muista sijainneista.",
+ "Logged_out_of_other_clients_successfully": "Kirjattu ulos muissa asiakkaissa",
+ "Logout_failed": "Uloskirjaus epäonnistui!",
+ "Log_analytics_events": "Kirjaa analytiikkatapahtumat",
+ "E2E_encryption_change_password_title": "Vaihda salauksen salasana",
+ "E2E_encryption_change_password_description": "Nyt voit luoda salattuja yksityisiä ryhmiä ja suoria viestejä. Voit myös muuttaa nykyisiä yksityisiä ryhmiä tai suoria viestejä salatuksi. \nTämä on täysi salaus, joten viestiesi salaamiseen ja salaukseen purkuun käytettävää avainta ei tallenneta palvelimeen. Siksi sinun on tallennettava salasanasi turvalliseen paikkaan. Sinun on annettava se muissa laitteissa, joissa haluat käyttää täyttä salausta.",
+ "E2E_encryption_change_password_error": "Virhe vaihdettaessa täyden salauksen avaimen salasanaa!",
+ "E2E_encryption_change_password_success": "Täyden salauksen avaimen salasana on vaihdettu!",
+ "E2E_encryption_change_password_message": "Varmista, että olet tallentanut sen huolellisesti muualle.",
+ "E2E_encryption_change_password_confirmation": "Kyllä, vaihda se",
+ "E2E_encryption_reset_title": "Nollaa täyden salauksen avain",
+ "E2E_encryption_reset_description": "Tämä asetus poistaa nykyisen täyden salauksen avaimesi ja kirjaa sinut ulos. \nKun kirjaudut uudelleen sisään, Rocket.Chat luo sinulle uuden avaimen ja palauttaa pääsysi kaikkiin salattuihin huoneisiin, joissa on aktiivisia jäseniä. \nTäyden salauksen luonteen vuoksi Rocket.Chat ei pysty palauttamaan pääsyä salattuihin huoneisiin, joissa ei ole aktiivisia jäseniä.",
+ "E2E_encryption_reset_button": "Nollaa täyden salauksen avain",
+ "E2E_encryption_reset_error": "Virhe nollattaessa täyden salauksen avainta!",
+ "E2E_encryption_reset_message": "Sinut kirjataan ulos.",
+ "E2E_encryption_reset_confirmation": "Kyllä, nollaa se",
+ "Following": "Seurataan",
+ "Threads_displaying_all": "Näytetään kaikki",
+ "Threads_displaying_following": "Näytetään seuratut",
+ "Threads_displaying_unread": "Näytetään lukemattomat",
+ "No_threads": "Ei ketjuja",
+ "No_threads_following": "Et seuraa ketjuja",
+ "No_threads_unread": "Ei lukemattomia ketjuja",
+ "Messagebox_Send_to_channel": "Lähetä kanavalle",
+ "Leader": "Johtaja",
+ "Moderator": "Moderaattori",
+ "Owner": "Omistaja",
+ "Remove_from_room": "Poista huoneesta",
+ "Ignore": "Ohita",
+ "Unignore": "Kumoa ohitus",
+ "User_has_been_ignored": "Käyttäjä on ohitettu",
+ "User_has_been_unignored": "Käyttäjää ei enää ohiteta",
+ "User_has_been_removed_from_s": "Käyttäjä on poistettu kohteesta {{s}}",
+ "User__username__is_now_a_leader_of__room_name_": "Käyttäjä {{username}} on nyt huoneen {{room_name}} johtaja",
+ "User__username__is_now_a_moderator_of__room_name_": "Käyttäjä {{username}} on nyt huoneen {{room_name}} moderaattori",
+ "User__username__is_now_a_owner_of__room_name_": "Käyttäjä {{username}} on nyt huoneen {{room_name}} omistaja",
+ "User__username__removed_from__room_name__leaders": "Käyttäjä {{username}} poistettiin huoneen {{room_name}} johtajista",
+ "User__username__removed_from__room_name__moderators": "Käyttäjä {{username}} poistettiin huoneen {{room_name}} moderaattoreista",
+ "User__username__removed_from__room_name__owners": "Käyttäjä {{username}} poistettiin huoneen {{room_name}} omistajista",
+ "The_user_will_be_removed_from_s": "Käyttäjä poistetaan kohteesta {{s}}",
+ "Yes_remove_user": "Kyllä, poista käyttäjä!",
+ "Direct_message": "Suora viesti",
+ "Message_Ignored": "Viesti ohitettu. Näytä se napauttamalla.",
+ "Enter_workspace_URL": "Anna työtilan URL-osoite",
+ "Workspace_URL_Example": "Esim. yrityksesi.rocket.chat",
+ "Enabled_E2E_Encryption_for_this_room": "otti täyden salauksen käyttöön tässä huoneessa",
+ "Disabled_E2E_Encryption_for_this_room": "poisti täyden salauksen käytöstä tässä huoneessa",
+ "Teams": "Tiimit",
+ "No_team_channels_found": "Kanavia ei löydy",
+ "Team_not_found": "Tiimiä ei löydy",
+ "Create_Team": "Luo tiimi",
+ "Team_Name": "Tiimin nimi",
+ "creating_team": "luo tiimiä",
+ "team-name-already-exists": "Tiimi tällä nimellä on jo olemassa",
+ "Add_Channel_to_Team": "Lisää kanava tiimille",
+ "Left_The_Team_Successfully": "Poistuttiin tiimistä",
+ "Create_New": "Luo uusi",
+ "Add_Existing": "Lisää olemassa oleva",
+ "Add_Existing_Channel": "Lisää olemassa oleva kanava",
+ "Remove_from_Team": "Poista tiimistä",
+ "Auto-join": "Automaattinen liittyminen",
+ "Remove_Team_Room_Warning": "Haluatko poistaa tämän kanavan tiimiltä? Kanava siirretään takaisin työtilaan",
+ "Confirmation": "Vahvistus",
+ "invalid-room": "Virheellinen huone",
+ "You_are_leaving_the_team": "Poistut tiimistä {{team}}",
+ "Leave_Team": "Poistu tiimistä",
+ "Select_Team": "Valitse tiimi",
+ "Select_Team_Channels": "Valitse tiimin kanavat, joilta haluat poistua.",
+ "Cannot_leave": "Ei voi poistua",
+ "Cannot_remove": "Ei voi poistaa",
+ "Cannot_delete": "Ei voi poistaa",
+ "Last_owner_team_room": "Olet tämän kanavan viimeinen omistaja. Kun lähdet tiimistä, kanava säilyy tiimin sisällä, mutta hallinnoit sitä ulkopuolelta.",
+ "last-owner-can-not-be-removed": "Viimeistä omistajaa ei voi poistaa",
+ "Remove_User_Teams": "Valitse kanavat, joilta haluat poistaa käyttäjän.",
+ "Deleting_account": "Poistetaan tiliä",
+ "Delete_my_account": "Poista tilini",
+ "Delete_Team": "Poista tiimi",
+ "Select_channels_to_delete": "Tätä ei voi kumota. Kun poistat tiimin, kaikki keskustelusisältö ja määritykset poistetaan. \n\nValitse poistettavat kanavat. Säilyttämäsi kanavat ovat käytettävissä työtilassasi. Huomioi, että julkiset kanavat ovat edelleen julkisia ja näkyvissä kaikille.",
+ "You_are_deleting_the_team": "Olet poistamassa tämän tiimin.",
+ "Removing_user_from_this_team": "Poistat käyttäjää {{user}} tästä tiimistä",
+ "Remove_User_Team_Channels": "Valitse kanavat, joilta haluat poistaa käyttäjän.",
+ "Remove_Member": "Poista jäsen",
+ "leaving_team": "poistuu tiimistä",
+ "removing_team": "poistaa tiimistä",
+ "moving_channel_to_team": "siirtää kanavaa tiimille",
+ "deleting_team": "poistaa tiimiä",
+ "member-does-not-exist": "Jäsentä ei ole",
+ "Convert": "Muunna",
+ "Convert_to_Team": "Muunna tiimiksi",
+ "Convert_to_Team_Warning": "Muunnat tätä kanavaa tiimiksi. Kaikki jäsenet säilytetään.",
+ "Move_to_Team": "Siirrä tiimiin",
+ "Move_Channel_Paragraph": "Kanavan siirtäminen tiimiin tarkoittaa, että tämä kanava lisätään tiimin kontekstiin. Kaikki kanavan jäsenet, jotka eivät ole vastaavan tiimin jäseniä, pääsevät silti edelleen tälle kanavalle, mutta heitä ei lisätä tiimin jäseniksi. \n\nKanavan omistajat hoitavat edelleen kaiken kanavan hallinnan.\n\nTiimin jäsenillä ja jopa tiimin omistajilla, jotka eivät ole tämän kanavan jäseniä, ei ole pääsyä kanavan sisältöön. \n\nHuomioi, että tiimin omistaja voi poistaa jäseniä kanavalta.",
+ "Move_to_Team_Warning": "Nyt kun olet lukenut edellä olevat tätä toimintaa koskevat ohjeet, haluatko silti siirtää tämän kanavan valitulle tiimille?",
+ "Load_More": "Lataa lisää",
+ "Load_Newer": "Lataa uudemmat",
+ "Load_Older": "Lataa vanhemmat",
+ "room-name-already-exists": "Huoneen nimi on jo olemassa",
+ "error-team-creation": "Tiimin luontivirhe",
+ "unauthorized": "Valtuuttamaton",
+ "Left_The_Room_Successfully": "Poistuttiin huoneesta",
+ "Deleted_The_Team_Successfully": "Tiimi on poistettu",
+ "Deleted_The_Room_Successfully": "Huone on poistettu",
+ "Convert_to_Channel": "Muunna kanavaksi",
+ "Converting_Team_To_Channel": "Muunnetaan tiimiä kanavaksi",
+ "Select_Team_Channels_To_Delete": "Valitse poistettavat tiimin kanavat. Valitsematta jättämäsi kanavat siirretään työtilaan. \n\nHuomioi, että julkiset kanavat ovat julkisia ja näkyvät kaikille.",
+ "You_are_converting_the_team": "Muunnat tätä tiimiä kanavaksi",
+ "Display": "Näytä",
+ "Avatars": "Avatarit",
+ "Sort_by": "Lajitteluperuste",
+ "Group_by": "Ryhmittelyperuste",
+ "Types": "Tyypit",
+ "Expanded": "Laajennettu",
+ "Condensed": "Tiivistetty",
+ "creating_discussion": "luo keskustelua",
+ "Canned_Responses": "Valmiit vastaukset",
+ "No_match_found": "Vastineita ei löydy.",
+ "No_discussions": "Ei keskusteluja",
+ "Check_canned_responses": "Valmiiden vastausten tarkistus.",
+ "Searching": "Haetaan",
+ "Use": "Käytä",
+ "Shortcut": "Pikavalinta",
+ "Content": "Sisältö",
+ "Sharing": "Jaetaan",
+ "No_canned_responses": "Ei valmiita vastauksia",
+ "Send_email_confirmation": "Lähetä vahvistussähköposti",
+ "sending_email_confirmation": "lähettää sähköpostivahvistusta",
+ "Enable_Message_Parser": "Ota käyttöön viestin jäsentäjä",
+ "Unsupported_format": "Muotoa ei tueta",
+ "Downloaded_file": "Ladattu tiedosto",
+ "Error_Download_file": "Virhe ladattaessa tiedostoa",
+ "added__roomName__to_this_team": "lisäsi huoneen #{{roomName}} tähän tiimiin",
+ "Added__username__to_this_team": "lisäsi käyttäjän @{{user_added}} tähän tiimiin",
+ "Converting_team_to_channel": "Muunnetaan tiimiä kanavaksi",
+ "Converted__roomName__to_a_team": "muunsi huoneen #{{roomName}} tiimiksi",
+ "Converted__roomName__to_a_channel": "muunsi huoneen #{{roomName}} kanavaksi",
+ "Deleted__roomName__": "poisti huoneen #{{roomName}}",
+ "Message_HideType_added_user_to_team": "Piilota Käyttäjä lisätty tiimiin -ilmoitukset",
+ "Message_HideType_removed_user_from_team": "Piilota Käyttäjä poistettu tiimistä -ilmoitukset",
+ "Message_HideType_ujt": "Piilota Käyttäjä liittyi tiimiin -ilmoitukset",
+ "Message_HideType_ult": "Piilota Käyttäjä poistui tiimistä -ilmoitukset",
+ "Message_HideType_user_added_room_to_team": "Piilota Käyttäjä lisäsi huoneen tiimille -ilmoitukset",
+ "Message_HideType_user_converted_to_channel": "Piilota Käyttäjä muunsi tiimin kanavaksi -ilmoitukset",
+ "Message_HideType_user_converted_to_team": "Piilota Käyttäjä muunsi kanavan tiimiksi -ilmoitukset",
+ "Message_HideType_user_deleted_room_from_team": "Piilota Käyttäjä poisti huoneen tiimiltä -ilmoitukset",
+ "Message_HideType_user_removed_room_from_team": "Piilota Käyttäjä poisti huoneen tiimiltä -ilmoitukset",
+ "Removed__roomName__from_the_team": "poisti huoneen #{{roomName}} tästä tiimistä",
+ "Removed__username__from_the_team": "poisti käyttäjän @{{userRemoved}} tästä tiimistä",
+ "User_joined_team": "liittyi tähän tiimiin",
+ "User_left_team": "poistui tästä tiimistä",
+ "Place_chat_on_hold": "Aseta keskustelu pitoon",
+ "Would_like_to_place_on_hold": "Haluatko asettaa tämän keskustelun pitoon?",
+ "Open_Livechats": "Meneillään olevat Omnichannel-keskustelut",
+ "On_hold_Livechats": "Pidossa olevat Omnichannel-keskustelut",
+ "Chat_is_on_hold": "Tämä keskustelu on pidossa käyttämättömyyden vuoksi",
+ "Resume": "Jatka",
+ "Omnichannel_placed_chat_on_hold": "Keskustelu pidossa: {{comment}}",
+ "Omnichannel_on_hold_chat_resumed": "Pidossa olevaa keskustelua jatkettiin: {{comment}}",
+ "Omnichannel_queue": "Omnichannel-jono",
+ "Empty": "Tyhjä",
+ "Mark_as_unread": "Merkitse lukemattomaksi",
+ "Mark_as_unread_Info": "Näytä huone lukemattomana, kun siinä on lukemattomia viestejä",
+ "Show_badge_for_mentions": "Näytä mainintojen merkki",
+ "Show_badge_for_mentions_Info": "Näytä vain suorien mainintojen merkki",
+ "error-init-video-conf": "Virhe aloitettaessa videopuhelua",
+ "totp-invalid": "Koodi tai salasana virheellinen",
+ "Close_Chat": "Sulje keskustelu",
+ "Select_tags": "Valitse tunnisteet",
+ "Skip": "Ohita",
+ "N_Selected_members": "{{n}} valittu",
+ "Broadcast": "Lähetys",
+ "Broadcast_hint": "Vain valtuutetut käyttäjät voivat kirjoittaa uusia viestejä, mutta muut käyttäjät voivat vastata",
+ "Team_hint_private": "Vain kutsutut henkilöt voivat liittyä",
+ "Team_hint_public": "Kun tämä ei ole käytössä, kuka tahansa voi liittyä tiimiin",
+ "Team_hint_not_read_only": "Kaikki tämän tiimin käyttäjät voivat kirjoittaa viestejä",
+ "Team_hint_encrypted": "Täysin salattu tiimi. Haku ei toimi salatuissa tiimeissä eikä viestien sisältö välttämättä näy ilmoituksissa.",
+ "Team_hint_encrypted_not_available": "Käytettävissä vain yksityisessä tiimissä",
+ "Channel_hint_private": "Vain kutsutuilla käyttäjillä on pääsy tälle kanavalle",
+ "Channel_hint_public": "Kaikilla on pääsy tälle kanavalle",
+ "Channel_hint_encrypted": "Täysin salattu kanava. Haku ei toimi salatuilla kanavilla eikä viestien sisältö välttämättä näy ilmoituksissa.",
+ "Channel_hint_not_read_only": "Kaikki kanavan käyttäjät voivat kirjoittaa uusia viestejä",
+ "Channel_hint_encrypted_not_available": "Ei käytettävissä julkisilla kanavilla",
+ "Read_only_hint": "Vain valtuutetut käyttäjät voivat kirjoittaa uusia viestejä",
+ "Discussion": "Keskustelu",
+ "Channel": "Kanava",
+ "Team": "Tiimi",
+ "Select_Members": "Valitse jäsenet",
+ "Also_send_thread_message_to_channel_behavior": "Lähetä ketjun viesti myös kanavalle",
+ "Accounts_Default_User_Preferences_alsoSendThreadToChannel_Description": "Salli käyttäjien valita Lähetä myös kanavalle -toiminta",
+ "Waiting_for_answer": "Odotetaan vastausta",
+ "Call_ended": "Puhelu päättyi",
+ "Call_was_not_answered": "Puheluun ei vastattu",
+ "Call_back": "Soita takaisin",
+ "Call_again": "Soita uudelleen",
+ "Call_ongoing": "Puhelu käynnissä",
+ "Joined": "Liitytty",
+ "Calling": "Soitetaan...",
+ "Start_a_call": "Aloita puhelu",
+ "Call": "Soita",
+ "Reply_in_direct_message": "Vastaa suoralla viestillä",
+ "room_archived": "arkistoi huoneen",
+ "room_unarchived": "palautti huoneen arkistosta"
+}
\ No newline at end of file
diff --git a/app/i18n/locales/fr.json b/app/i18n/locales/fr.json
index f2799c75a..b9660b9d7 100644
--- a/app/i18n/locales/fr.json
+++ b/app/i18n/locales/fr.json
@@ -313,6 +313,7 @@
"Message_accessibility": "Message de {{user}} à {{time}} : {{message}}",
"Message_actions": "Actions de message",
"Message_pinned": "Message épinglé",
+ "Message_removed": "Message supprimé",
"Message_starred": "Message suivi",
"Message_unstarred": "Message non suivi",
"message": "message",
@@ -779,6 +780,7 @@
"Message_HideType_user_deleted_room_from_team": "Masquer les messages \"L'utilisateur a supprimé le salon de l'équipe\"",
"Message_HideType_user_removed_room_from_team": "Masquer les messages \"L'utilisateur a enlevé le salon de l'équipe\"",
"User_joined_team": "a rejoint cette équipe",
+ "User_left_team": "a quitté cette équipe",
"Place_chat_on_hold": "Mettre le chat en attente",
"Would_like_to_place_on_hold": "Souhaitez-vous mettre ce chat en attente ?",
"Open_Livechats": "Chats omnicanaux en cours",
diff --git a/app/i18n/locales/it.json b/app/i18n/locales/it.json
index 150325f5f..23758d12e 100644
--- a/app/i18n/locales/it.json
+++ b/app/i18n/locales/it.json
@@ -191,6 +191,7 @@
"DELETE": "ELIMINA",
"Delete_Account": "Elimina account",
"Delete_Account_confirm": "Sì, Elimina",
+ "move": "spostare",
"deleting_room": "cancellazione stanza",
"description": "descrizione",
"Description": "Descrizione",
@@ -320,6 +321,7 @@
"Message_accessibility": "Messaggio da {{user}} alle {{time}}: {{message}}",
"Message_actions": "Azioni messaggio",
"Message_pinned": "Messaggio appuntato",
+ "Message_removed": "Messaggio rimosso",
"Message_starred": "Messaggio importante",
"Message_unstarred": "Messaggio non importante",
"message": "messaggio",
@@ -687,5 +689,6 @@
"Enter_workspace_URL": "Inserisci la url del workspace",
"Workspace_URL_Example": "Es. tua-azienda.rocket.chat",
"invalid-room": "Canale non valido",
+ "Open_Livechats": "Chat in corso",
"Broadcast_hint": "Solo gli utenti autorizzati possono scrivere messaggi, ma gli altri utenti saranno in grado di rispondere"
}
\ No newline at end of file
diff --git a/app/i18n/locales/nl.json b/app/i18n/locales/nl.json
index 2423e6863..7d4b0d081 100644
--- a/app/i18n/locales/nl.json
+++ b/app/i18n/locales/nl.json
@@ -313,6 +313,7 @@
"Message_accessibility": "Bericht van {{user}} om {{time}}: {{message}}",
"Message_actions": "Berichtacties",
"Message_pinned": "Bericht vastgezet",
+ "Message_removed": "Bericht verwijderd",
"Message_starred": "Bericht met ster",
"Message_unstarred": "Bericht zonder ster",
"message": "bericht",
@@ -779,6 +780,7 @@
"Message_HideType_user_deleted_room_from_team": "Verberg \"Gebruiker heeft kamer uit team verwijderd\" berichten",
"Message_HideType_user_removed_room_from_team": "Verberg \"Gebruiker heeft kamer uit team verwijderd\" berichten",
"User_joined_team": "is lid geworden van dit team",
+ "User_left_team": "heeft dit team verlaten",
"Place_chat_on_hold": "Chat in de wacht zetten",
"Would_like_to_place_on_hold": "Wil je deze chat in de wacht zetten?",
"Open_Livechats": "Omnichannels-chats bezig",
diff --git a/app/i18n/locales/pt-BR.json b/app/i18n/locales/pt-BR.json
index 22ddea71e..1b7d5b5d1 100644
--- a/app/i18n/locales/pt-BR.json
+++ b/app/i18n/locales/pt-BR.json
@@ -12,6 +12,7 @@
"error-could-not-change-email": "Não foi possível mudar e-mail",
"error-could-not-change-name": "Não foi possível mudar o nome",
"error-could-not-change-username": "Não foi possível alterar o nome de usuário",
+ "error-could-not-change-status": "Não foi possível alterar o status",
"error-delete-protected-role": "Não é possível remover um papel protegido",
"error-department-not-found": "Departamento não encontrado",
"error-direct-message-file-upload-not-allowed": "Compartilhamento de arquivos não está permitido em mensagens diretas",
@@ -19,6 +20,7 @@
"error-email-domain-blacklisted": "O domínio de e-mail está na lista negra",
"error-email-send-failed": "Erro ao tentar enviar e-mail: {{message}}",
"error-save-image": "Erro ao salvar imagem",
+ "error-save-video": "Erro ao salvar vídeo",
"error-field-unavailable": "{{field}} já está sendo usado :(",
"error-file-too-large": "Arquivo é muito grande",
"error-not-permission-to-upload-file": "Você não tem permissão para enviar arquivos",
@@ -88,6 +90,7 @@
"Add_Reaction": "Reagir",
"Add_Server": "Adicionar servidor",
"Add_users": "Adicionar usuário",
+ "Admin_Panel": "Painel de admin",
"Agent": "Agente",
"Alert": "Alerta",
"alert": "alerta",
@@ -96,6 +99,7 @@
"All_users_in_the_team_can_write_new_messages": "Todos usuários no canal podem enviar mensagens novas",
"A_meaningful_name_for_the_discussion_room": "Um nome significativo para o canal de discussão",
"All": "Todos",
+ "All_Messages": "Todas as mensagens",
"Allow_Reactions": "Permitir reagir",
"Alphabetical": "Alfabético",
"and_more": "e mais",
@@ -163,7 +167,10 @@
"Copied_to_clipboard": "Copiado para a área de transferência!",
"Copy": "Copiar",
"Conversation": "Conversação",
+ "Certificate_password": "Senha do certificado",
+ "Clear_cache": "Limpar cache da workspace",
"Clear_cache_loading": "Limpando cache.",
+ "Whats_the_password_for_your_certificate": "Qual é a senha para o seu certificado?",
"Create_account": "Criar conta",
"Create_Channel": "Criar Canal",
"Create_Direct_Messages": "Criar Mensagens Diretas",
@@ -171,6 +178,7 @@
"Created_snippet": "criou um snippet",
"Create_a_new_workspace": "Criar nova área de trabalho",
"Create": "Criar",
+ "Custom_Status": "Status personalizado",
"Dark": "Escuro",
"Dark_level": "Nível escuro",
"Default": "Padrão",
@@ -248,9 +256,14 @@
"Full_table": "Clique para ver a tabela completa",
"Generate_New_Link": "Gerar novo convite",
"Get_link": "Obter link",
+ "User_joined_the_channel": "entrou no canal",
+ "User_joined_the_conversation": "entrou na conversa",
+ "User_joined_the_team": "entrou na equipe",
+ "User_left_this_channel": "saiu da conversa",
"Has_left_the_team": "saiu da equipe",
"Hide_System_Messages": "Esconder mensagens do sistema",
"Hide_type_messages": "Esconder mensagens de \"{{type}}\"",
+ "How_It_Works": "Como funciona",
"Message_HideType_uj": "Utilizador Entrou",
"Message_HideType_ul": "Utilizador Saiu",
"Message_HideType_ru": "Utilizador Removido",
@@ -264,11 +277,15 @@
"Message_HideType_subscription_role_removed": "Papel removido",
"Message_HideType_room_archived": "Sala arquivada",
"Message_HideType_room_unarchived": "Sala desarquivada",
+ "I_Saved_My_E2E_Password": "Salvei minha senha ponta-a-ponta",
"IP": "IP",
"In_app": "No app",
+ "In_App_And_Desktop": "In-app e área de trabalho",
"In_App_and_Desktop_Alert_info": "Exibe um banner na parte superior da tela quando o aplicativo é aberto e exibe uma notificação na área de trabalho",
"Invisible": "Invisível",
"Invite": "Convidar",
+ "is_a_valid_RocketChat_instance": "é uma instância Rocket.Chat",
+ "is_not_a_valid_RocketChat_instance": "não é uma instância Rocket.Chat",
"is_typing": "está digitando",
"Invalid_or_expired_invite_token": "Token de convite inválido ou vencido",
"Invalid_server_version": "O servidor que você está conectando não é suportado mais por esta versão do aplicativo: {{currentVersion}}.\n\nEsta versão do aplicativo requer a versão {{minVersion}} do servidor para funcionar corretamente.",
@@ -289,7 +306,9 @@
"leave": "sair",
"Legal": "Legal",
"Light": "Claro",
+ "License": "Licença",
"Livechat": "Livechat",
+ "Livechat_edit": "Editar livechat",
"Livechat_transfer_return_to_the_queue": "retornou conversa para a fila",
"Login": "Entrar",
"Login_error": "Suas credenciais foram rejeitadas. Tente novamente por favor!",
@@ -298,6 +317,7 @@
"Logout": "Sair",
"Max_number_of_uses": "Número máximo de usos",
"Max_number_of_users_allowed_is_number": "Número máximo de usuários é {{maxUsers}}",
+ "members": "membros",
"Members": "Membros",
"Mentioned_Messages": "Mensagens mencionadas",
"mentioned": "mencionado",
@@ -305,14 +325,19 @@
"Message_accessibility": "Mensagem de {{user}} às {{time}}: {{message}}",
"Message_actions": "Ações",
"Message_pinned": "Fixou uma mensagem",
+ "Message_removed": "mensagem removida",
+ "Message_starred": "Mensagem adicionada aos favoritos",
+ "Message_unstarred": "Mensagem removida dos favoritos",
"message": "mensagem",
"messages": "mensagens",
"Message": "Mensagem",
"Messages": "Mensagens",
+ "Message_Reported": "Mensagem reportada",
"Microphone_Permission_Message": "Rocket.Chat precisa de acesso ao seu microfone para enviar mensagens de áudio.",
"Microphone_Permission": "Acesso ao Microfone",
"Mute": "Mudo",
"muted": "mudo",
+ "My_servers": "Minhas workspaces",
"N_people_reacted": "{{n}} pessoas reagiram",
"N_users": "{{n}} usuários",
"N_channels": "{{n}} canais",
@@ -321,18 +346,22 @@
"New_chat_transfer": "Nova transferência de conversa: {{agent}} retornou conversa para a fila",
"New_Message": "Nova Mensagem",
"New_Password": "Nova Senha",
+ "New_Server": "Nova workspace",
"Next": "Próximo",
"No_files": "Não há arquivos",
"No_limit": "Sem limite",
"No_mentioned_messages": "Não há menções",
"No_pinned_messages": "Não há mensagens fixadas",
"No_results_found": "Nenhum resultado encontrado",
+ "No_members_found": "Nenhum usuário encontrado",
"No_starred_messages": "Não há mensagens favoritas",
"No_thread_messages": "Não há tópicos",
"No_label_provided": "Sem {{label}}.",
"No_Message": "Não há mensagens",
"No_messages_yet": "Não há mensagens ainda",
"No_Reactions": "Sem reações",
+ "No_Read_Receipts": "Não lida",
+ "Not_logged": "Desconectado",
"Not_RC_Server": "Este não é um servidor Rocket.Chat.\n{{contact}}",
"Nothing": "Nada",
"Nothing_to_save": "Nada para salvar!",
@@ -420,11 +449,21 @@
"Roles": "Papéis",
"Room_actions": "Ações",
"Room_changed_announcement": "O anúncio da sala foi alterado para: {{announcement}} por {{userBy}}",
+ "room_avatar_changed": "alterou avatar da sala",
"Room_changed_description": "A descrição da sala foi alterada para: {{description}} por {{userBy}}",
+ "changed_room_description": "alterou a descrição da sala para: {{description}}",
+ "changed_room_announcement": "alterou o anúncio da sala para: {{announcement}}",
+ "room_changed_type": "mudou sala para {{type}}",
+ "room_changed_topic_to": "mudou tópico da sala para: {{topic}}",
"Room_Files": "Arquivos",
"Room_Info_Edit": "Editar",
"Room_Info": "Informações da Sala",
"Room_Members": "Membros",
+ "Room_name_changed_to": "alterou o nome da sala para: {{name}}",
+ "room_disallowed_reactions": "removeu a permissão de reagir",
+ "room_allowed_reactions": "adicionou permissão de reagir",
+ "room_removed_read_only_permission": "removeu permissão de escrita da sala",
+ "room_set_read_only_permission": "adicionou permissão de escrita à sala",
"SAVE": "SALVAR",
"Save_Changes": "Salvar Alterações",
"Save": "Salvar",
@@ -440,8 +479,10 @@
"Search_Messages": "Buscar Mensagens",
"Search": "Buscar",
"Search_by": "Buscar por",
+ "Search_emoji": "Buscar emoji",
"Search_global_users": "Busca por usuários globais",
"Search_global_users_description": "Caso ativado, busca por usuários de outras empresas ou servidores.",
+ "Seconds": "{{second}} segundos",
"Security_and_privacy": "Segurança e privacidade",
"Select_Avatar": "Selecionar Avatar",
"Select_Server": "Selecionar Servidor",
@@ -456,13 +497,20 @@
"Send_message": "Enviar mensagem",
"Send_me_the_code_again": "Envie-me o código novamente",
"Send_to": "Enviar para...",
+ "Sending_to": "Envio para",
"Sent_an_attachment": "Enviou um anexo",
"Server": "Servidor",
+ "Servers": "Workspaces",
+ "Server_version": "Versão da workspace: {{version}}",
"Set_username_subtitle": "O usuário é utilizado para permitir que você seja mencionado em mensagens",
+ "Set_custom_status": "Definir status personalizado",
+ "Set_status": "Definir status",
+ "Status_saved_successfully": "Status salvo com sucesso!",
"Settings": "Configurações",
"Settings_succesfully_changed": "Configurações salvas com sucesso!",
"Share": "Compartilhar",
"Share_Link": "Share Link",
+ "Share_this_app": "Compartilhar esse app",
"Show_more": "Mostrar mais..",
"Sign_in_your_server": "Entrar no seu servidor",
"Sign_Up": "Registrar",
@@ -479,9 +527,12 @@
"Started_call": "Chamada iniciada por {{userBy}}",
"Submit": "Enviar",
"Table": "Tabela",
+ "Tags": "Tags",
"Take_a_photo": "Tirar uma foto",
"Take_a_video": "Gravar um vídeo",
"Take_it": "Pegue!",
+ "tap_to_change_status": "toque para mudar de status",
+ "Tap_to_view_servers_list": "Toque para visualizar as workspaces",
"Terms_of_Service": " Termos de Serviço ",
"Theme": "Tema",
"The_user_wont_be_able_to_type_in_roomName": "O usuário não poderá digitar em {{roomName}}",
@@ -513,17 +564,27 @@
"Unsupported_system_message": "Mensagem de sistema não suportada",
"Updating": "Atualizando...",
"Uploading": "Subindo arquivo",
+ "FileUpload_Error": "Erro de upload de arquivo",
+ "Upload_in_progress": "Carregamento em andamento",
"Upload_file_question_mark": "Enviar arquivo?",
"User": "Usuário",
"Users": "Usuários",
+ "User_added_to": "adicionou o usuário {{userAdded}}",
"User_Info": "Informações do usuário",
"User_has_been_key": "Usuário foi {{key}}",
"User_is_no_longer_role_by_": "{{user}} não pertence mais à {{role}} por {{userBy}}",
+ "User_has_been_muted": "silenciou o usuário {{userMuted}}",
+ "User_has_been_removed": "removeu {{userRemoved}}",
"User_sent_an_attachment": "{{user}} enviou um anexo",
+ "User_has_been_unmuted": "permitiu que {{userUnmuted}} fale na sala",
+ "Defined_user_as_role": "definiu {{user}} como {{role}}",
+ "Removed_user_as_role": "removeu {{user}} como {{role}}",
"Username_is_empty": "Usuário está vazio",
"Username": "Usuário",
"Username_or_email": "Usuário ou email",
"Uses_server_configuration": "Usar configuração do servidor",
+ "Validating": "Validando...",
+ "Registration_Succeeded": "Registrado com sucesso!",
"Verify": "Verificar",
"Verify_email_title": "Registrado com sucesso!",
"Verify_email_desc": "Nós lhe enviamos um e-mail para confirmar o seu registro. Se você não receber um e-mail em breve, por favor retorne e tente novamente.",
@@ -552,7 +613,9 @@
"You_were_removed_from_channel": "Você foi removido de {{channel}}",
"you": "você",
"You": "Você",
+ "Logged_out_by_server": "Você foi desconectado pela workspace. Por favor entre novamente.",
"Token_expired": "Sua sessão expirou. Por favor entre novamente.",
+ "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Você precisa acessar pelo menos uma workspace Rocket.Chat para compartilhar.",
"You_need_to_verifiy_your_email_address_to_get_notications": "Você precisa confirmar seu endereço de e-mail para obter notificações",
"Your_certificate": "Seu certificado",
"Your_invite_link_will_expire_after__usesLeft__uses": "Seu link de convite irá vencer depois de {{usesLeft}} usos.",
@@ -560,6 +623,8 @@
"Your_invite_link_will_expire_on__date__": "Seu link de convite irá vencer em {{date}}.",
"Your_invite_link_will_never_expire": "Seu link de convite nunca irá vencer.",
"Your_workspace": "Sua workspace",
+ "Your_password_is": "Sua senha é",
+ "Version_no": "Versão: {{version}}",
"You_will_not_be_able_to_recover_this_message": "Você não será capaz de recuperar essa mensagem!",
"You_will_unset_a_certificate_for_this_server": "Você cancelará a configuração de um certificado para este servidor",
"Change_Language": "Alterar idioma",
@@ -655,9 +720,15 @@
"Message_Ignored": "Mensagem ignorada. Toque para mostrar.",
"Enter_workspace_URL": "Digite a URL da sua workspace",
"Workspace_URL_Example": "Ex. sua-empresa.rocket.chat",
+ "Enabled_E2E_Encryption_for_this_room": "habilitou criptografia para essa sala",
+ "Disabled_E2E_Encryption_for_this_room": "desabilitou criptografia para essa sala",
"Teams": "Times",
"No_team_channels_found": "Nenhum canal encontrado",
"Team_not_found": "Time não encontrado",
+ "Create_Team": "Criar time",
+ "Team_Name": "Nome do time",
+ "creating_team": "criando time",
+ "team-name-already-exists": "Um time com esse nome já existe",
"Add_Channel_to_Team": "Adicionar Canal ao Time",
"Left_The_Team_Successfully": "Saiu do time com sucesso",
"Create_New": "Criar",
@@ -734,7 +805,11 @@
"Unsupported_format": "Formato não suportado",
"Downloaded_file": "Arquivo baixado",
"Error_Download_file": "Erro ao baixar o arquivo",
+ "added__roomName__to_this_team": "adicionou #{{roomName}} a esta equipe",
+ "Added__username__to_this_team": "adicionou @{{user_added}} a esta equipe",
"Converting_team_to_channel": "Convertendo equipe em canal",
+ "Converted__roomName__to_a_team": "converteu #{{roomName}} em equipe",
+ "Converted__roomName__to_a_channel": "converteu #{{roomName}} em canal",
"Deleted__roomName__": "#{{roomName}} apagada",
"Message_HideType_added_user_to_team": "Ocultar mensagens de \"Usuário adicionado à equipe\"",
"Message_HideType_removed_user_from_team": "Ocultar mensagens de \"Usuário removido da equipe\"",
@@ -745,7 +820,10 @@
"Message_HideType_user_converted_to_team": "Ocultar mensagens de \"Usuário converteu canal em equipe\"",
"Message_HideType_user_deleted_room_from_team": "Ocultar mensagens de \"Usuário apagou sala da equipe\"",
"Message_HideType_user_removed_room_from_team": "Ocultar mensagens de \"Usuário removeu sala da equipe\"",
+ "Removed__roomName__from_the_team": "removeu #{{roomName}} desta equipe",
+ "Removed__username__from_the_team": "removeu @{{userRemoved}} desta equipe",
"User_joined_team": "entrou nesta equipe",
+ "User_left_team": "saiu desta equipe",
"Place_chat_on_hold": "Colocar conversa em espera",
"Would_like_to_place_on_hold": "Gostaria de colocar essa conversa Em Espera?",
"Open_Livechats": "Bate-papos em Andamento",
@@ -760,6 +838,7 @@
"Mark_as_unread_Info": "Mostrar sala como não lida quando houver mensagens não lidas",
"Show_badge_for_mentions": "Mostrar contador para menções",
"Show_badge_for_mentions_Info": "Mostrar contador somente para menções diretas",
+ "error-init-video-conf": "Erro ao iniciar chamada de video",
"totp-invalid": "Código ou senha inválida",
"Close_Chat": "Fechar Conversa",
"Select_tags": "Selecionar tag(s)",
@@ -772,18 +851,28 @@
"Team_hint_not_read_only": "Todos os usuários nesta equipe podem escrever mensagens",
"Team_hint_encrypted": "Equipe criptografada de ponta a ponta. A pesquisa não funcionará com equipes criptografadas e as notificações poderão não exibir o conteúdo das mensagens.",
"Team_hint_encrypted_not_available": "Disponível apenas para equipes privadas",
- "Channel_hint_private":"Apenas usuários convidados podem acessar este canal",
- "Channel_hint_public":"Todos podem acessar este canal",
+ "Channel_hint_private": "Apenas usuários convidados podem acessar este canal",
+ "Channel_hint_public": "Todos podem acessar este canal",
"Channel_hint_encrypted": "Canal criptografado de ponta a ponta. A pesquisa não funcionará com canais criptografados e as notificações podem não mostrar o conteúdo das mensagens.",
"Channel_hint_not_read_only": "Todos usuários no canal podem enviar mensagens novas",
"Channel_hint_encrypted_not_available": "Indisponível para canais públicos",
- "Read_only_hint":"Somente usuários autorizados podem escrever novas mensagens",
+ "Read_only_hint": "Somente usuários autorizados podem escrever novas mensagens",
"Discussion": "Discussão",
"Channel": "Canal",
"Team": "Time",
"Select_Members": "Selecionar Membros",
"Also_send_thread_message_to_channel_behavior": "Também enviar mensagem do tópico para o canal",
"Accounts_Default_User_Preferences_alsoSendThreadToChannel_Description": "Permitir que os usuários selecionem o comportamento Também enviar para o canal",
+ "Waiting_for_answer": "Esperando por resposta",
+ "Call_ended": "Chamada finalizada",
+ "Call_was_not_answered": "A chamada não foi atendida",
+ "Call_back": "Ligue de volta",
+ "Call_again": "Ligue novamente",
+ "Call_ongoing": "Chamada em andamento",
+ "Joined": "Ingressou",
+ "Calling": "Chamando...",
+ "Start_a_call": "Inicie uma chamada",
+ "Call": "Ligar",
"Reply_in_direct_message": "Responder por mensagem direta",
"room_archived": "{{username}} arquivou a sala",
"room_unarchived": "{{username}} desarquivou a sala"
diff --git a/app/i18n/locales/pt-PT.json b/app/i18n/locales/pt-PT.json
index 704dc7081..a4466d49f 100644
--- a/app/i18n/locales/pt-PT.json
+++ b/app/i18n/locales/pt-PT.json
@@ -307,6 +307,7 @@
"Message_accessibility": "Mensagem de {{user}} às {{time}}: {{message}}",
"Message_actions": "Acções de mensagem",
"Message_pinned": "Mensagem afixada",
+ "Message_removed": "Mensagem removida",
"Message_starred": "Mensagem estrelada",
"Message_unstarred": "Mensagem não estrelada",
"message": "mensagem",
@@ -492,5 +493,6 @@
"you": "você",
"You": "Você",
"You_will_not_be_able_to_recover_this_message": "Você será incapaz de recuperar esta mensagem!",
+ "Open_Livechats": "Chats em andamento",
"Broadcast_hint": "Apenas utilizadores autorizados podem escrever novas mensagens, mas os outros utilizadores poderão responder"
}
\ No newline at end of file
diff --git a/app/i18n/locales/ru.json b/app/i18n/locales/ru.json
index f76fd99d3..cd0c9e1dd 100644
--- a/app/i18n/locales/ru.json
+++ b/app/i18n/locales/ru.json
@@ -256,6 +256,7 @@
"Forward_to_user": "Перенаправить пользователю",
"Full_table": "Нажмите, чтобы увидеть полную таблицу",
"Generate_New_Link": "Сгенерировать Новую Ссылку",
+ "Get_link": "Получить ссылку",
"Has_left_the_team": "покинул Команду",
"Hide_System_Messages": "Скрыть Системные Сообщения",
"Hide_type_messages": "Скрыть \"{{type}}\" сообщения",
@@ -321,6 +322,7 @@
"Message_accessibility": "Сообщение от {{user}} в {{time}}: {{message}}",
"Message_actions": "Действия с сообщением",
"Message_pinned": "Сообщение прикреплено",
+ "Message_removed": "Сообщение удалено",
"Message_starred": "Сообщение отмечено звездой",
"Message_unstarred": "Отметка сообщения звездой удалена",
"message": "сообщение",
@@ -348,6 +350,7 @@
"No_mentioned_messages": "Нет упоминаний",
"No_pinned_messages": "Нет прикрепленных сообщений",
"No_results_found": "Ничего не найдено",
+ "No_members_found": "Участники не найдены",
"No_starred_messages": "Нет отмеченных сообщений",
"No_thread_messages": "Нет сообщений в теме",
"No_label_provided": "{{label}} не указан.",
@@ -463,6 +466,7 @@
"Search_Messages": "Поиск сообщений",
"Search": "Поиск",
"Search_by": "Поиск по",
+ "Search_emoji": "Поиск эмодзи",
"Search_global_users": "Глобальный поиск пользователей",
"Search_global_users_description": "При активации станет возможен поиск пользователей на других серверах.",
"Seconds": "{{second}} секунд",
@@ -790,6 +794,7 @@
"Message_HideType_user_deleted_room_from_team": "Скрыть сообщения \"Пользователь удалил чат из Команды\"",
"Message_HideType_user_removed_room_from_team": "Скрыть сообщения \"Пользователь удалил чат из Команды\"",
"User_joined_team": "присоединился к Команде",
+ "User_left_team": "покинул Команду",
"Place_chat_on_hold": "Поставить чат на удержание",
"Would_like_to_place_on_hold": "Вы хотите поставить этот чат на удержание?",
"Open_Livechats": "Omnichannel чаты в работе",
@@ -808,5 +813,36 @@
"totp-invalid": "Код или пароль не верны",
"Close_Chat": "Закрыть чат",
"Select_tags": "Выберите теги",
- "Broadcast_hint": "Только авторизованные пользователи могут писать новые сообщения, но другие пользователи смогут ответить"
+ "Skip": "Пропустить",
+ "N_Selected_members": "{{n}} выбрано",
+ "Broadcast": "Широковещательный",
+ "Broadcast_hint": "Только авторизованные пользователи могут писать новые сообщения, но другие пользователи смогут ответить",
+ "Team_hint_private": "Только приглашенные люди могут присоединиться",
+ "Team_hint_public": "Когда отключено, кто угодно может присоединиться к команде",
+ "Team_hint_not_read_only": "Все пользователи в этой команде могут писать сообщения",
+ "Team_hint_encrypted": "Команда со сквозным шифрованием. Поиск не будет работать в зашифрованных командах, а уведомления могут не отображать содержание сообщений.",
+ "Team_hint_encrypted_not_available": "Доступно только для приватной команды",
+ "Channel_hint_private": "Только приглашенные пользователи могут получить доступ к этому каналу",
+ "Channel_hint_public": "У всех есть доступ к этому каналу",
+ "Channel_hint_encrypted": "Канал со сквозным шифрованием. Поиск не будет работать в зашифрованных каналах, а уведомления могут не отображать содержание сообщений.",
+ "Channel_hint_not_read_only": "Все пользователи канала могут писать новые сообщения",
+ "Channel_hint_encrypted_not_available": "Недоступно для публичных каналов",
+ "Read_only_hint": "Только авторизованные пользователи могут писать новые сообщения",
+ "Discussion": "Обсуждение",
+ "Channel": "Канал",
+ "Team": "Команда",
+ "Select_Members": "Выбрать участников",
+ "Also_send_thread_message_to_channel_behavior": "Также отправить в чат",
+ "Accounts_Default_User_Preferences_alsoSendThreadToChannel_Description": "Разрешить пользователям выбирать поведение \"Также отправить в чат\"",
+ "Waiting_for_answer": "Ожидание ответа",
+ "Call_ended": "Звонок завершен",
+ "Call_was_not_answered": "Звонок не был отвечен",
+ "Call_back": "Обратный звонок",
+ "Call_again": "Позвонить снова",
+ "Call_ongoing": "Идет вызов",
+ "Joined": "участвовал",
+ "Calling": "Идет вызов",
+ "Start_a_call": "Начать звонок",
+ "Call": "Звонок",
+ "Reply_in_direct_message": "Ответить в личном сообщении"
}
\ No newline at end of file
diff --git a/app/i18n/locales/sl-SI.json b/app/i18n/locales/sl-SI.json
index 09fb9aafc..97c950e33 100644
--- a/app/i18n/locales/sl-SI.json
+++ b/app/i18n/locales/sl-SI.json
@@ -1,845 +1,813 @@
{
- "__count__empty_rooms_will_be_removed_automatically": "{{count}} praznih sob bo izbrisanih.",
- "__count__empty_room_will_be_removed_automatically": "{{count}} prazna soba bo izbrisana.",
- "1_person_reacted": "1 oseba se je odzvala",
- "1_user": "1 uporabnik",
- "error-action-not-allowed": "{{action}} ni dovoljena",
- "error-application-not-found": "Aplikacija ni bila najdena",
- "error-archived-duplicate-name": "Obstaja arhiviran kanal z imenom {{room_name}}",
- "error-avatar-invalid-url": "Neveljaven URL avatarja: {{url}}",
- "error-avatar-url-handling": "Napaka pri spreminjanju nastavitev avatarja z URL {{url}} uporabnika: {{username}}",
- "error-cant-invite-for-direct-room": "Uporabnika ni mogoče povabiti v neposredne sobe",
- "error-could-not-change-email": "E-poštnega naslova ni mogoče spremeniti",
- "error-could-not-change-name": "Imena ni mogoče spremeniti",
- "error-could-not-change-username": "Uporabniškega imena ni mogoče spremeniti",
- "error-could-not-change-status": "Ni mogoče spremeniti statusa",
- "error-delete-protected-role": "Zaščitne vloge ni mogoče izbrisati",
- "error-department-not-found": "Oddelka ni mogoče najti",
- "error-direct-message-file-upload-not-allowed": "Deljenje datotek v neposrednih sporočilih ni dovoljeno",
- "error-duplicate-channel-name": "Kanal z imenom {{room_name}} obstaja",
- "error-email-domain-blacklisted": "Domena elektronske pošte je na črni listi",
- "error-email-send-failed": "Napak pri pošiljanju elektronske pošte: {{message}}",
- "error-save-image": "Napaka pri shranjevanju slike",
- "error-save-video": "Napaka pri shranjevanju videa",
- "error-field-unavailable": "{{field}} je že v uporabi :(",
- "error-file-too-large": "Datoteka je prevelika",
- "error-not-permission-to-upload-file": "Nimate pooblastil za nalaganje datotek",
- "error-importer-not-defined": "Uvoznik ni bil pravilno opredeljen, manjka uvozni razred.",
- "error-input-is-not-a-valid-field": "{{input}} ni veljaven {{field}}",
- "error-invalid-actionlink": "Neveljavna povezava dejanja",
- "error-invalid-arguments": "Neveljavni argumenti",
- "error-invalid-asset": "Neveljavno sredstvo",
- "error-invalid-channel": "Neveljaven kanal.",
- "error-invalid-channel-start-with-chars": "Neveljaven kanal. Začnite z @ ali #",
- "error-invalid-custom-field": "Neveljavno polje po meri",
- "error-invalid-custom-field-name": "Neveljavno ime polja po meri. Uporabljajte samo črke, številke, vezaje in podčrtaje.",
- "error-invalid-date": "Neveljaven datum.",
- "error-invalid-description": "Neveljaven opis",
- "error-invalid-domain": "Neveljavna domena",
- "error-invalid-email": "Neveljaven e-poštni naslov {{email}}",
- "error-invalid-email-address": "Neveljaven e-poštni naslov",
- "error-invalid-file-height": "Neveljavna višina datoteke",
- "error-invalid-file-type": "Neveljavna vrsta datoteke",
- "error-invalid-file-width": "Neveljavna širina datoteke",
- "error-invalid-from-address": "Informirali ste neveljaven naslov OD.",
- "error-invalid-integration": "Neveljavna integracija",
- "error-invalid-message": "Neveljavno sporočilo",
- "error-invalid-method": "Neveljavna metoda",
- "error-invalid-name": "Neveljavno ime",
- "error-invalid-password": "Neveljavno geslo",
- "error-invalid-redirectUri": "Neveljaven URI preusmeritve",
- "error-invalid-role": "Neveljavna vloga",
- "error-invalid-room": "Neveljavna soba",
- "error-invalid-room-name": "{{room_name}} ni veljavno ime sobe",
- "error-invalid-room-type": "{{type}} ni veljaven tip sobe",
- "error-invalid-settings": "Neveljavne nastavitve",
- "error-invalid-subscription": "Neveljavna naročnina",
- "error-invalid-token": "Neveljaven žeton",
- "error-invalid-triggerWords": "Neveljavne sprožilne besede",
- "error-invalid-urls": "Neveljavni URL-ji",
- "error-invalid-user": "Neveljaven uporabnik",
- "error-invalid-username": "Neveljavno uporabniško ime",
- "error-invalid-webhook-response": "Webhook URL se je odzval s stanjem, ki ni 200",
- "error-message-deleting-blocked": "Brisanje sporočil je blokirano",
- "error-message-editing-blocked": "Urejanje sporočil je blokirano",
- "error-message-size-exceeded": "Velikost sporočila presega dovoljeno velikost sporočil",
- "error-missing-unsubscribe-link": "Vnesti morate povezavo [za odjavo]",
- "error-no-owner-channel": "Niste lastnik kanala",
- "error-no-tokens-for-this-user": "Za tega uporabnika ni žetonov.",
- "error-not-allowed": "Ni dovoljeno",
- "error-not-authorized": "Brez pooblastila",
- "error-push-disabled": "Potiskanje je onemogočeno",
- "error-remove-last-owner": "To je zadnji lastnik. Preden ga odstranite, nastavite novega lastnika.",
- "error-role-in-use": "Vloge ni mogoče izbrisati, ker je v uporabi",
- "error-role-name-required": "Potrebno je ime vloge",
- "error-password-same-as-current": "Vnesite geslo, ki je enako trenutnemu geslu",
- "error-the-field-is-required": "Polje {{field}} je zahtevano.",
- "error-too-many-requests": "Napaka, preveč zahtev. Prosimo, upočasnite se. Preden poskusite znova, počakajte {{seconds}} sekund. ",
- "error-user-is-not-activated": "Uporabnik ni aktiviran",
- "error-user-has-no-roles": "Uporabnik nima vlog",
- "error-user-limit-exceeded": "Število uporabnikov, ki jih poskušate povabiti v #ime_kanala presega omejitev, ki jo je določil skrbnik",
- "error-user-not-in-room": "Uporabnika ni v tej sobi",
- "error-user-registration-custom-field": "error-user-registration-custom-field",
- "error-user-registration-disabled": "Registracija uporabnika je onemogočena",
- "error-user-registration-secret": "Registracija uporabnika je dovoljena samo preko Secret URL",
- "error-you-are-last-owner": "Vi ste zadnji lastnik. Prosimo, določite novega lastnika, preden zapustite sobo. ",
- "error-status-not-allowed": "Stanje neviden je onemogočeno",
- "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Novi lastnik bo samodejno dodeljen {{count}} sobam.",
- "A_new_owner_will_be_assigned_automatically_to__count__room": "Novi lastnik bo samodejno dodeljen {{count}} sobi.",
- "Actions": "Dejanja",
- "Activity": "Aktivnost",
- "Add_Reaction": "Dodaj reakcijo",
- "Add_Server": "Dodaj server",
- "Add_users": "Dodaj uporabnike",
- "Admin_Panel": "Administracijska plošča",
- "Agent": "Agent",
- "Alert": "Opozorilo",
- "alert": "Opozorilo",
- "alerts": "opozorila",
- "All_users_in_the_channel_can_write_new_messages": "Vsi uporabniki v kanalu lahko napišejo nova sporočila",
- "All_users_in_the_team_can_write_new_messages": "Vsi uporabniki v kanalu lahko napišejo nova sporočila",
- "A_meaningful_name_for_the_discussion_room": "Pomenljivo ime za pogovorno sobo",
- "All": "Vsi",
- "All_Messages": "Vsa sporočila",
- "Allow_Reactions": "Dovolite reakcijo",
- "Alphabetical": "Po abecednem vrstnem redu",
- "and_more": "in več",
- "and": "in",
- "announcement": "obvestilo",
- "Announcement": "Obvestilo",
- "Apply_Your_Certificate": "Uporabite svoje potrdilo",
- "ARCHIVE": "ARHIV",
- "archive": "arhiv",
- "are_typing": "pišejo",
- "Are_you_sure_question_mark": "Ste prepričani?",
- "Are_you_sure_you_want_to_delete_your_account": "Ste prepričani, da želite izbrisati svoj račun?",
- "Deleting_a_user_will_delete_all_messages": "Če izbrišete uporabnika, boste izbrisali tudi vsa sporočila, sobe in ekipe tega uporabnika. Tega ni mogoče razveljaviti.",
- "Are_you_sure_you_want_to_leave_the_room": "Ste prepričani da želite zapustiti sobo {{room}}?",
- "Audio": "Zvok",
- "Authenticating": "Preverjanje pristnosti",
- "Automatic": "Avtomatično",
- "Auto_Translate": "Samodejno prevedi",
- "Avatar_changed_successfully": "Avatar uspešno spremenjen",
- "Avatar_Url": "Avatar URL",
- "Away": "Odsoten",
- "Back": "Nazaj",
- "Black": "Črn",
- "Block_user": "Blokiraj uporabnika",
- "Browser": "Brskalnik",
- "Broadcast_channel_Description": "Samo pooblaščeni uporabniki lahko napišejo nova sporočila, drugi uporabniki pa bodo lahko odgovorili",
- "Broadcast_Channel": "Oddajni kanal",
- "Busy": "Zaseden",
- "By_proceeding_you_are_agreeing": "Z nadaljevanjem se strinjate z našimi",
- "Cancel_editing": "Prekliči urejanje",
- "Cancel_recording": "Prekliči snemanje",
- "Cancel": "Prekliči",
- "changing_avatar": "spreminjanje avatarja",
- "creating_channel": "kreiranje kanala",
- "creating_invite": "kreiranje povabila",
- "Channel_Name": "Ime kanala",
- "Channels": "Kanali",
- "Chats": "Klepeti",
- "Chat_started": "Klepet se je začel",
- "Call_already_ended": "Klic je že končan!",
- "Clear_cookies_alert": "Ali želite izbrisati vse piškotke?",
- "Clear_cookies_desc": "To dejanje bo izbrisalo vse prijavne piškotke, kar vam bo omogočilo prijavo v druge račune.",
- "Clear_cookies_yes": "Da, izbriši piškotke",
- "Clear_cookies_no": "Ne, obdrži piškotke",
- "Click_to_join": "Pridruži se!",
- "Close": "Zapri",
- "Close_emoji_selector": "Zapri izbirnik čustvenih simbolov",
- "Closing_chat": "Zapiranje klepeta",
- "Change_language_loading": "Spreminjanje jezika.",
- "Chat_closed_by_agent": "Klepet je zaprl agent",
- "Choose": "Izberite",
- "Choose_from_library": "Izberite iz knjižnice",
- "Choose_file": "Izberite datoteko",
- "Choose_where_you_want_links_be_opened": "Izberite, kje želite odpreti povezave",
- "Code": "Koda",
- "Code_or_password_invalid": "Koda ali geslo ni veljavno",
- "Conversation_closed": "Pogovor je zaprt",
- "Collaborative": "Sodelovanje",
- "Confirm": "Potrdite",
- "Connect": "Povežite",
- "Connected": "Povezan",
- "connecting_server": "povezujem se na strežnik",
- "Connecting": "Povezovanje ...",
- "Contact_us": "Kontaktiraj nas",
- "Contact_your_server_admin": "Se obrnite na skrbnika strežnika.",
- "Continue_with": "Nadaljujte z",
- "Copied_to_clipboard": "Kopirano v odložišče!",
- "Copy": "Kopiraj",
- "Conversation": "Pogovor",
- "Certificate_password": "Geslo potrdila",
- "Clear_cache": "Počistite predpomnilnik lokalnega strežnika",
- "Clear_cache_loading": "Čiščenje predpomnilnika.",
- "Whats_the_password_for_your_certificate": "Kakšno je geslo za vaše potrdilo?",
- "Create_account": "Ustvari račun",
- "Create_Channel": "Ustvari kanal",
- "Create_Direct_Messages": "Ustvari neposredna sporočila",
- "Create_Discussion": "Ustvari razpravo",
- "Created_snippet": "ustvaril delček",
- "Create_a_new_workspace": "Ustvari nov delovni prostor",
- "Create": "Ustvari",
- "Custom_Status": "Status po meri",
- "Dark": "Temno",
- "Dark_level": "Temna raven",
- "Default": "Privzeto",
- "Default_browser": "Privzeti brskalnik",
- "Delete_Room_Warning": "Z izbrisom sobe boste izbrisali vsa sporočila znotraj sobe. Dejanja ne morete razveljaviti.",
- "Department": "Oddelek",
- "delete": "izbrisati",
- "Delete": "Izbriši",
- "DELETE": "Izbrisati",
- "Delete_Account": "Izbriši račun",
- "Delete_Account_confirm": "Da, izbriši",
- "move": "premaknite se",
- "deleting_room": "brisanje sobe",
- "description": "opis",
- "Description": "Opis",
- "Desktop_Options": "Možnosti namizja",
- "Desktop_Notifications": "Namizna obvestila",
- "Desktop_Alert_info": "Ta obvestila so dostavljena na namizju",
- "Directory": "Imenik",
- "Direct_Messages": "Neposredna sporočila",
- "Disable_notifications": "Onemogoči obvestila",
- "Discussions": "Razprave",
- "Discussion_Desc": "Pomagajte ohranjati pregled nad tem, kaj se dogaja! Z ustvarjanjem razprave se ustvari podkanal tistega, ki ste ga izbrali, in oba sta povezana.",
- "Discussion_name": "Ime razprave",
- "Done": "Končano",
- "Dont_Have_An_Account": "Ali nimate računa?",
- "Do_you_have_an_account": "Imate račun?",
- "Do_you_have_a_certificate": "Imate potrdilo?",
- "Do_you_really_want_to_key_this_room_question_mark": "Ali res želite {{key}} to sobo?",
- "E2E_Encryption": "E2E šifriranje",
- "E2E_How_It_Works_info1": "Zdaj lahko ustvarite šifrirane zasebne skupine in neposredna sporočila. Prav tako lahko spremenite obstoječe zasebne skupine ali DM -je za šifriranje.",
- "E2E_How_It_Works_info2": "To je *šifriranje na obeh straneh* in ključ za kodiranje/dekodiranje sporočil ne bo shranjen na strežniku. Zaradi tega *morate to geslo varno shraniti*, da do njega lahko dostopate kasneje, če boste morda potrebovali.",
- "E2E_How_It_Works_info3": "Če nadaljujete, bo to samodejno ustvarilo geslo E2E.",
- "E2E_How_It_Works_info4": "Novo geslo za šifrirni ključ lahko nastavite tudi kadar koli iz katerega koli brskalnika, ki ste ga vnesli obstoječe geslo E2E.",
- "edit": "Uredi",
- "edited": "urejeno",
- "Edit": "Uredi",
- "Edit_Status": "Uredi stanje",
- "Edit_Invite": "Uredi povabilo",
- "End_to_end_encrypted_room": "Obojestransko (E2E) šifrirane sobe",
- "end_to_end_encryption": "obojestransko(E2E) šifriranje",
- "Email_Notification_Mode_All": "Vsaka omemba/neposredno sporočilo",
- "Email_Notification_Mode_Disabled": "Onemogočeno",
- "Email_or_password_field_is_empty": "Polje e -pošte ali gesla je prazno",
- "Email": "E-poštni naslov",
- "email": "E-naslov",
- "Empty_title": "Prazen naslov",
- "Enable_Auto_Translate": "Omogoči samodejni prenos",
- "Enable_notifications": "Omogoči obvestila",
- "Encrypted": "Šifrirano",
- "Encrypted_message": "Šifrirano sporočilo",
- "Enter_Your_E2E_Password": "Vnesite svoje geslo E2E",
- "Enter_Your_Encryption_Password_desc1": "To vam bo omogočilo dostop do šifriranih zasebnih skupin in neposrednih sporočil.",
- "Enter_Your_Encryption_Password_desc2": "Za kodiranje/dekodiranje sporočil morate vnesti geslo na vsakem mestu, ki ga uporabljate.",
- "Encryption_error_title": "Vaše šifrirno geslo se zdi napačno",
- "Encryption_error_desc": "Ni bilo mogoče dekodirati vašega šifrirnega ključa, ki bi ga bilo mogoče uvoziti.",
- "Everyone_can_access_this_channel": "Vsakdo lahko dostopa do tega kanala",
- "Everyone_can_access_this_team": "Vsak lahko dostopa do te ekipe",
- "Error_uploading": "Napaka prenašanja",
- "Expiration_Days": "Iztek (dnevi)",
- "Favorites": "Priljubljeno",
- "Files": "Datoteke",
- "File_description": "Opis datoteke",
- "File_name": "Ime datoteke",
- "Finish_recording": "Zaključek snemanja",
- "Following_thread": "Naslednja nit",
- "For_your_security_you_must_enter_your_current_password_to_continue": "Zaradi svoje varnosti morate za nadaljevanje vnesti trenutno geslo",
- "Forgot_password_If_this_email_is_registered": "Če je ta elektronski naslov registriran, bomo poslali navodila, kako ponastaviti geslo. Če v kratkem ne prejmete e -pošte, se vrnite in poskusite znova.",
- "Forgot_password": "Pozabljeno geslo",
- "Forgot_Password": "Ste pozabili geslo",
- "Forward": "Posreduj",
- "Forward_Chat": "Napredni klepet",
- "Forward_to_department": "Posreduj na oddelek",
- "Forward_to_user": "Posreduj uporabniku",
- "Full_table": "Kliknite za ogled celotne tabele",
- "Generate_New_Link": "Ustvari novo povezavo",
- "Has_joined_the_channel": "se je pridružil kanalu",
- "Has_joined_the_team": "se je pridružil ekipi",
- "Has_joined_the_conversation": "se je pridružil pogovoru",
- "Has_left_the_channel": "je zapustil kanal",
- "Has_left_the_team": "je zapustil ekipo",
- "Hide_System_Messages": "Skrij sistemska sporočila",
- "Hide_type_messages": "Skrij sporočila \"{{type}}\"",
- "How_It_Works": "Kako deluje",
- "Message_HideType_uj": "Skrij sporočila \"pridružen uporabnik\"",
- "Message_HideType_ul": "Skrij sporočila \"uporabnik je odšel\"",
- "Message_HideType_ru": "Skrij sporočila \"uporabnik odstranjen\"",
- "Message_HideType_au": "Skrij sporočila \"uporabnik dodan\"",
- "Message_HideType_mute_unmute": "Skrij sporočila \"uporabnik utišan/zvok omogočen\"",
- "Message_HideType_r": "Ime sobe se je spremenilo",
- "Message_HideType_ut": "Uporabnik se je pridružil pogovoru",
- "Message_HideType_wm": "Dobrodošli",
- "Message_HideType_rm": "Sporočilo odstranjeno",
- "Message_HideType_subscription_role_added": "Je bila določena vloga",
- "Message_HideType_subscription_role_removed": "Vloga ni več opredeljena",
- "Message_HideType_room_archived": "Soba arhivirana",
- "Message_HideType_room_unarchived": "Soba ni arhivirana",
- "I_Saved_My_E2E_Password": "Shranil sem geslo E2E",
- "IP": "IP",
- "In_app": "V aplikaciji",
- "In_App_And_Desktop": "V aplikaciji in namizju",
- "In_App_and_Desktop_Alert_info": "Ko je aplikacija odprta, prikaže pasico na vrhu zaslona in prikaže obvestilo na namizju",
- "Invisible": "Neviden",
- "Invite": "Povabilo",
- "is_a_valid_RocketChat_instance": "je veljaven primer Rocket.Chat",
- "is_not_a_valid_RocketChat_instance": "ni veljaven primer Rocket.Chat",
- "is_typing": "piše",
- "Invalid_or_expired_invite_token": "Neveljaven ali iztekel žeton povabila",
- "Invalid_server_version": "Strežnik, ki ga poskušate povezati, uporablja različico, ki je aplikacija ne podpira več: {{currentVersion}}.\n\nZahtevamo različico {{minVersion}}",
- "Invite_Link": "Povezava povabila",
- "Invite_users": "Povabite uporabnike",
- "Join": "Pridružite se",
- "Join_Code": "Pridružite se kodi",
- "Insert_Join_Code": "Vstavite kodo za pridružitev",
- "Join_our_open_workspace": "Pridružite se našemu odprtemu delovnemu prostoru",
- "Join_your_workspace": "Pridružite se svojemu delovnemu prostoru",
- "Just_invited_people_can_access_this_channel": "Do tega kanala lahko dostopajo samo povabljeni",
- "Just_invited_people_can_access_this_team": "Samo povabljeni ljudje lahko dostopajo do te ekipe",
- "Language": "Jezik",
- "last_message": "Zadnje sporočilo",
- "Leave_channel": "Zapusti kanal",
- "leaving_room": "zapuščanje sobe",
- "Leave": "Zapusti sobo",
- "leave": "zapusti",
- "Legal": "Pravno",
- "Light": "Svetloba",
- "License": "Dovoljenje",
- "Livechat": "LiveChat",
- "Livechat_edit": "LiveChat urejanje",
- "Livechat_transfer_return_to_the_queue": "Vrnil klepet v čakalno vrsto",
- "Login": "Prijava",
- "Login_error": "Vaše poverilnice so bile zavrnjene! Prosim poskusite ponovno.",
- "Login_with": "Prijava z",
- "Logging_out": "Odjava.",
- "Logout": "Odjava",
- "Max_number_of_uses": "Največje število uporab",
- "Max_number_of_users_allowed_is_number": "Največ dovoljenega števila uporabnikov je {{maxUsers}}",
- "members": "člani",
- "Members": "Člani",
- "Mentioned_Messages": "Omenjena sporočila",
- "mentioned": "omenjeno",
- "Mentions": "Omembe",
- "Message_accessibility": "Sporočilo iz {{user}} na {{Time}}: {{message}}",
- "Message_actions": "Sporočila",
- "Message_pinned": "Sporočilo pripeto",
- "Message_removed": "Sporočilo odstranjeno",
- "Message_starred": "Sporočilo v zvezdi",
- "Message_unstarred": "Sporočilo neokuženo",
- "message": "sporočilo",
- "messages": "Sporočila",
- "Message": "Sporočilo",
- "Messages": "Sporočila",
- "Message_Reported": "Sporočilo prijavljeno",
- "Microphone_Permission_Message": "Rocket.Chat potrebuje dostop do vašega mikrofona, da lahko pošljete zvočno sporočilo.",
- "Microphone_Permission": "Dovoljenje mikrofona",
- "Mute": "Nemo",
- "muted": "utišan",
- "My_servers": "Moji strežniki",
- "N_people_reacted": "{{n}} ljudi je reagiralo",
- "N_users": "{{n}} uporabniki",
- "N_channels": "{{n}} kanali",
- "Name": "Ime",
- "Never": "Nikoli",
- "New_chat_transfer": "Nov prenos klepeta: {{agent}} je klepet vrnil v čakalno vrsto",
- "New_Message": "Novo sporočilo",
- "New_Password": "Novo geslo",
- "New_Server": "Nov strežnik",
- "Next": "Naslednji",
- "No_files": "Brez datotek",
- "No_limit": "Ni omejitev",
- "No_mentioned_messages": "Ni omenjenih sporočil",
- "No_pinned_messages": "Ni pripetih sporočil",
- "No_results_found": "Brez zadetkov",
- "No_starred_messages": "Ni sporočil z zvezdico",
- "No_thread_messages": "Brez sporočil niha",
- "No_label_provided": "Ni na voljo {{label}}.",
- "No_Message": "Brez sporočila",
- "No_messages_yet": "Nimate še nobenih sporočil",
- "No_Reactions": "Brez reakcij",
- "No_Read_Receipts": "Brez prejemnikov branja",
- "Not_logged": "Ni prijavljen",
- "Not_RC_Server": "To ni Rocket.Chat Server.\n{{contact}}",
- "Nothing": "Nič",
- "Nothing_to_save": "Nič za shraniti!",
- "Notify_active_in_this_room": "Obvesti aktivne uporabnike v tej sobi",
- "Notify_all_in_this_room": "Obvesti vse v tej sobi",
- "Notifications": "Obvestila",
- "Notification_Duration": "Trajanje obvestila",
- "Notification_Preferences": "Nastavitve obvestila",
- "No_available_agents_to_transfer": "Agenti za prenos niso na voljo ",
- "Offline": "Nedosegljiv",
- "Oops": "Ups!",
- "Omnichannel": "Omnichannel",
- "Omnichannel_enable_alert": "Niste na voljo na Omnichannelu. Bi radi bili na voljo?",
- "Onboarding_description": "Delovni prostor je prostor vaše ekipe ali organizacije za sodelovanje. Prosite skrbnika delovnega prostora za naslov, da se pridružite, ali da ustvari enega za svojo ekipo.",
- "Onboarding_join_workspace": "Pridružite se delovnemu prostoru",
- "Onboarding_subtitle": "Izven ekipnega sodelovanja",
- "Onboarding_title": "Dobrodošli v Rocket.Chat",
- "Onboarding_join_open_description": "Pridružite se našemu odprtemu delovnemu prostoru, da klepetate z ekipo in skupnostjo Rocket.Chat.",
- "Onboarding_agree_terms": "Z nadaljevanjem se strinjate z Rocket.Chat",
- "Onboarding_less_options": "Manj možnosti",
- "Onboarding_more_options": "Več možnosti",
- "Online": "Dosegljiv",
- "Only_authorized_users_can_write_new_messages": "Samo pooblaščen uporabnik lahko napiše nova sporočila",
- "Open_emoji_selector": "Odprite selektor emojija",
- "Open_Source_Communication": "Odprtokodna komunikacija",
- "Open_your_authentication_app_and_enter_the_code": "Odprite aplikacijo za preverjanje pristnosti in vnesite kodo. Uporabite lahko tudi eno od vaših nadomestnih kod.",
- "OR": "Ali",
- "OS": "OS",
- "Overwrites_the_server_configuration_and_use_room_config": "Prepiše konfiguracijo strežnika in uporabi konfiguracijo sobe",
- "Password": "Geslo",
- "Parent_channel_or_group": "Matični kanal ali skupina",
- "Permalink_copied_to_clipboard": "Permalink, kopirano v odložišče!",
- "Phone": "Telefon",
- "Pin": "Zatič",
- "Pinned_Messages": "Pripeta sporočila",
- "pinned": "pripet",
- "Pinned": "Pripet",
- "Please_add_a_comment": "Prosimo, dodajte komentar",
- "Please_enter_your_password": "Prosimo, vnesite geslo",
- "Please_wait": "Prosimo, počakajte",
- "Preferences": "Nastavitve",
- "Preferences_saved": "Shranjene nastavitve",
- "Privacy_Policy": "Varovanje zasebnosti",
- "Private_Channel": "Zasebni kanal",
- "Private": "Zasebno",
- "Processing": "Procesiranje...",
- "Profile_saved_successfully": "Profil uspešno shranjen",
- "Profile": "Profil",
- "Public_Channel": "Javni kanal",
- "Public": "Javno",
- "Push_Notifications": "Potisna obvestila",
- "Push_Notifications_Alert_Info": "Ta obvestila so vam dostavljena, ko aplikacija ni odprta",
- "Quote": "Citat",
- "Reactions_are_disabled": "Reakcije so onemogočene",
- "Reactions_are_enabled": "Reakcije so omogočene",
- "Reactions": "Odzivi",
- "Read_External_Permission_Message": "Rocket.Chat potrebuje dostop do fotografij, medijev in datotek v vaši napravi",
- "Read_External_Permission": "Dovoljenje za branje medija",
- "Read_Only_Channel": "Kanal samo za branje",
- "Read_Only": "Le branje",
- "Read_Receipt": "Preberite potrdilo",
- "Receive_Group_Mentions": "Prejemajte omembe skupine",
- "Receive_Group_Mentions_Info": "Prejemate @all in @Here omembe",
- "Register": "Registriraj novi račun",
- "Repeat_Password": "Ponovite geslo",
- "Replied_on": "Odgovoril na:",
- "replies": "odgovori",
- "reply": "odgovor",
- "Reply": "Odgovori",
- "Report": "Poročilo",
- "Receive_Notification": "Prejemanje obvestila",
- "Receive_notifications_from": "Prejemajte obvestila od {{name}}",
- "Resend": "Ponovno poslati",
- "Reset_password": "Ponastavitev gesla",
- "resetting_password": "Ponastavitev gesla",
- "RESET": "PONASTAVITI",
- "Return_to_waiting_line": "Vrniti v čakalno vrstico",
- "Review_app_title": "Ste zadovoljni z aplikacijo?",
- "Review_app_desc": "Dajte nam 5 zvezdic na {{store}}",
- "Review_app_yes": "Zagotovo!",
- "Review_app_no": "Ne",
- "Review_app_later": "Mogoče kasneje",
- "Review_app_unable_store": "Ne morem odpreti {{store}}",
- "Review_this_app": "Preglejte to aplikacijo",
- "Remove": "Odstrani",
- "remove": "Odstrani",
- "Roles": "Vloge",
- "Room_actions": "Sobna dejanja",
- "Room_changed_announcement": "Objava sobe se je spremenila v: {{announcement}} avtor {{userBy}}",
- "Room_changed_avatar": "Soba Avatar je spremenil {{userBy}}",
- "Room_changed_description": "Opis sobe spremeni v: {{description}} avtor {{userBy}}",
- "Room_changed_privacy": "Vrsta sobe se je spremenila v: {{type}} avtor {{userBy}}",
- "Room_changed_topic": "Tema sobe se je spremenila v: {{topic}} avtor {{userBy}}",
- "Room_Files": "Sobne datoteke",
- "Room_Info_Edit": "Uredi informacije o sobi",
- "Room_Info": "Informacije o sobi",
- "Room_Members": "Člani sobe",
- "Room_name_changed": "Ime sobe je spremenjeno v: {{name}}. Spremenil: {{userBy}}",
- "Room_disallowed_reacting": "{{userBy}} je prepovedala reakcijo v sobi",
- "Room_allowed_reacting": "{{userBy}} je dovolil reakcijo v sobi",
- "Room_set_read_only": "{{UserBy}} je sobo označil \"samo za branje\"",
- "Room_removed_read_only": "{{userBy}} je odstranil oznako \"samo za branje\" s sobe",
- "SAVE": "Shrani",
- "Save_Changes": "Shrani spremembe",
- "Save": "Shrani",
- "Saved": "Shranjeno",
- "saving_preferences": "shranjevanje nastavitev",
- "saving_profile": "shranjevanje profila",
- "saving_settings": "shranjevanje nastavitev",
- "saved_to_gallery": "Shranjeno v galerijo",
- "Save_Your_E2E_Password": "Shranite geslo E2E",
- "Save_Your_Encryption_Password": "Shranite svoje šifrirno geslo",
- "Save_Your_Encryption_Password_warning": "To geslo ni nikjer shranjeno, zato ga previdno shranite nekje pri sebi",
- "Save_Your_Encryption_Password_info": "Če izgubite svoje E2E geslo, ni načina, da bi ga obnovili in izgubili boste dostop do svojih sporočil.",
- "Search_Messages": "Iskanje sporočil",
- "Search": "Iskanje",
- "Search_by": "Iskanje",
- "Search_global_users": "Poiščite globalne uporabnike",
- "Search_global_users_description": "Če si vklopite, lahko poiščete katerega koli uporabnika od drugih podjetij ali strežnikov.",
- "Seconds": "{{second}} sekunde",
- "Security_and_privacy": "Varnost in zasebnost",
- "Select_Avatar": "Izberite Avatar",
- "Select_Server": "Izberite strežnik",
- "Select_Users": "Izberite uporabnike",
- "Select_a_Channel": "Izberite kanal",
- "Select_a_Department": "Izberite oddelek",
- "Select_an_option": "Izberite možnost",
- "Select_a_User": "Izberite uporabnika",
- "Send": "Pošlji",
- "Send_audio_message": "Pošljite zvočno sporočilo",
- "Send_crash_report": "Pošlji poročilo o sesutju",
- "Send_message": "Pošlji sporočilo",
- "Send_me_the_code_again": "Pošljite mi kodo še enkrat",
- "Send_to": "Pošlji...",
- "Sending_to": "Pošiljanje na",
- "Sent_an_attachment": "Pošlji priponko",
- "Server": "Strežnik",
- "Servers": "Strežniki",
- "Server_version": "Različica strežnika: {{version}}",
- "Set_username_subtitle": "Uporabniško ime se uporablja za to, da vas drugim omenijo v sporočilih",
- "Set_custom_status": "Nastavite stanje po meri",
- "Set_status": "Nastavite status",
- "Status_saved_successfully": "Status je uspešno shranjen!",
- "Settings": "Nastavitve",
- "Settings_succesfully_changed": "Nastavitve so se uspešno spremenile!",
- "Share": "Deliti",
- "Share_Link": "Deliti povezavo",
- "Share_this_app": "Delite to aplikacijo",
- "Show_more": "Prikaži več…",
- "Sign_in_your_server": "Prijavite se v svoj strežnik",
- "Sign_Up": "Prijavite se",
- "Some_field_is_invalid_or_empty": "Neko polje je neveljavno ali prazno",
- "Sound": "Zvok",
- "Star_room": "Zvezdna soba",
- "Star": "zvezda",
- "Starred_Messages": "Sporočila z zvezdico",
- "starred": "Igral",
- "Starred": "Igral",
- "Start_of_conversation": "Začetek pogovora",
- "Start_a_Discussion": "Začnite razpravo",
- "Started_discussion": "Začel razpravo:",
- "Started_call": "Klic, ki ga je začel {{userBy}}",
- "Submit": "Pošlji",
- "Table": "Miza",
- "Tags": "Oznake",
- "Take_a_photo": "Fotografirati",
- "Take_a_video": "Posnemite video",
- "Take_it": "Vzemi!",
- "tap_to_change_status": "Tapnite, da spremenite stanje",
- "Tap_to_view_servers_list": "Dotaknite se seznama strežnikov",
- "Terms_of_Service": "Pogoji storitve",
- "Theme": "Tema",
- "The_user_wont_be_able_to_type_in_roomName": "Uporabnik ne bo mogel vtipkavati v {{roomName}}",
- "The_user_will_be_able_to_type_in_roomName": "Uporabnik bo lahko vtipkal {{roomName}}",
- "There_was_an_error_while_action": "Med {{action}} je prišlo do napake!",
- "This_room_is_blocked": "Ta soba je blokirana",
- "This_room_is_read_only": "Ta soba se samo bere",
- "Thread": "Nit",
- "Threads": "Niti",
- "Timezone": "Časovni pas",
- "To": "Do",
- "topic": "tema",
- "Topic": "Tema",
- "Translate": "Prevesti",
- "Try_again": "Poskusi ponovno",
- "Two_Factor_Authentication": "Dvofaktorska overjanje",
- "Type_the_channel_name_here": "Tukaj vnesite ime kanala",
- "unarchive": "Odpakirati",
- "UNARCHIVE": "ODPAKIRATI",
- "Unblock_user": "Odblokirati uporabnika",
- "Unfollowed_thread": "Nit, ki ji nihče ne sledi",
- "Unmute": "Preklicati utišanje",
- "unmuted": "preklicati utišanje",
- "Unpin": "Odpeti",
- "unread_messages": "neprebrano",
- "Unread": "Neprebrano",
- "Unread_on_top": "Neprebrano na vrhu",
- "Unstar": "Preklicati zvezdico",
- "Unsupported_system_message": "Nepodprto sistemsko sporočilo",
- "Updating": "Posodobitev ...",
- "Uploading": "Nalaganje",
- "Upload_file_question_mark": "Naloži datoteko?",
- "User": "Uporabnik",
- "Users": "Uporabniki",
- "User_added_by": "Uporabnika {{userAdded}} je dodal {{userBy}}",
- "User_Info": "Uporabniške informacije",
- "User_has_been_key": "Uporabnik je bil {{key}}",
- "User_is_no_longer_role_by_": "{{user}} ni več {{role}} z {{userBy}}",
- "User_muted_by": "Uporabnika {{userMuted}} je utišal uporabnik {{userBy}}.",
- "User_removed_by": "Uporabnika {{userRemoved}} je odstranil {{userBy}}",
- "User_sent_an_attachment": "{{user}} je poslal prilogo",
- "User_unmuted_by": "Uporabniku {{userUnmuted}} je vključil zvok uporabnika {{userBy}}",
- "User_was_set_role_by_": "{{user}} je nastavil {{role}} uporabnik {{userBy}}",
- "Username_is_empty": "Uporabniško ime je prazno",
- "Username": "Uporabniško ime",
- "Username_or_email": "Uporabnisko ime ali e-posta",
- "Uses_server_configuration": "Uporablja konfiguracijo strežnika",
- "Validating": "Preverjanje",
- "Registration_Succeeded": "Registracija je bila uspešna",
- "Verify": "Preveri",
- "Verify_email_title": "Registracija je uspela!",
- "Verify_email_desc": "Poslali smo vam e -poštno sporočilo za potrditev vaše registracije. Če v kratkem ne prejmete e -pošte, se vrnite in poskusite znova.",
- "Verify_your_email_for_the_code_we_sent": "Preverite svoj e -poštni naslov za kodo, ki smo jo poslali",
- "Video_call": "Video klic",
- "View_Original": "Pogled original",
- "Voice_call": "Glasovni klic",
- "Waiting_for_network": "Čakanje na omrežje ...",
- "Websocket_disabled": "WebSocket je onemogočen za ta strežnik.\n{{contact}}",
- "Welcome": "Dobrodošli",
- "What_are_you_doing_right_now": "Kaj počneš v tem trenutku?",
- "Whats_your_2fa": "Kakšna je tvoja koda 2FA?",
- "Without_Servers": "Brez strežnikov",
- "Workspaces": "Delovni prostori",
- "Would_you_like_to_return_the_inquiry": "Želite zavrniti povpraševanje?",
- "Write_External_Permission_Message": "Rocket.Chat potrebuje dostop do vaše galerije, da lahko shranite slike.",
- "Write_External_Permission": "Dovoljenje za galerijo",
- "Yes": "Ja",
- "Yes_action_it": "Da, {{action}} izvedi!",
- "Yesterday": "Včeraj",
- "You_are_in_preview_mode": "Ste v načinu predogleda",
- "You_are_offline": "Ste brez povezave",
- "You_can_search_using_RegExp_eg": "Lahko iščete s pomočjo RegExp. npr. `/^text$/i`",
- "You_colon": "Vi:",
- "you_were_mentioned": "Bili ste omenjeni",
- "You_were_removed_from_channel": "Odstranjeni ste bili iz {{channel}}",
- "you": "ti",
- "You": "Ti",
- "Logged_out_by_server": "Strežnik vas je odjavil. Prosimo, prijavite se še enkrat.",
- "Token_expired": "Vaša seja je potekla. Prosimo, prijavite se še enkrat.",
- "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Če želite nekaj deliti, morate dostopati do vsaj enega strežnika Rocket.Chat.",
- "You_need_to_verifiy_your_email_address_to_get_notications": "Če želite prejemati obvestila, potrdite svoj e-poštni naslov",
- "Your_certificate": "Vaše potrdilo",
- "Your_invite_link_will_expire_after__usesLeft__uses": "Vaša povezava za povabilo bo potekla po {{usesLeft}}.",
- "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Vaša povezava za povabilo bo potekala na {{date}} ali po {{usesLeft}}.",
- "Your_invite_link_will_expire_on__date__": "Vaša povezava za povabilo bo potekala na {{date}}.",
- "Your_invite_link_will_never_expire": "Vaša povezava za povabilo ne bo nikoli potekala.",
- "Your_workspace": "Vaš delovni prostor",
- "Your_password_is": "Vaše geslo je",
- "Version_no": "Različica: {{version}}",
- "You_will_not_be_able_to_recover_this_message": "Tega sporočila ne boste mogli obnoviti!",
- "You_will_unset_a_certificate_for_this_server": "Preklicali boste potrdilo za ta strežnik",
- "Change_Language": "Spremeni jezik",
- "Crash_report_disclaimer": "Nikoli ne spremljamo vsebine vaših klepetov. Poročilo o sesutju in dogodki analitike vsebujejo samo ustrezne informacije za nas, da bi prepoznali in odpravljali težave.",
- "Type_message": "Tip sporočila",
- "Room_search": "Iskanje sob",
- "Room_selection": "Izbira sobe 1 ... 9",
- "Next_room": "Naslednja soba",
- "Previous_room": "Prejšnja soba",
- "New_room": "Nova soba",
- "Upload_room": "Naložite v sobo",
- "Search_messages": "Iskalna sporočila",
- "Scroll_messages": "Pomakninje po sporočilih",
- "Reply_latest": "Odgovor na najnovejše",
- "Reply_in_Thread": "Odgovor v nit",
- "Server_selection": "Izbira strežnika",
- "Server_selection_numbers": "Izbira strežnika 1 ... 9",
- "Add_server": "Dodaj strežnik",
- "New_line": "Nova vrstica",
- "You_will_be_logged_out_of_this_application": "Odjavljeni boste iz te aplikacije.",
- "Clear": "Počisti",
- "This_will_clear_all_your_offline_data": "To bo zbrisalo vse vaše podatke brez povezave.",
- "This_will_remove_all_data_from_this_server": "To bo odstranilo vse podatke s tega strežnika.",
- "Mark_unread": "Označite neprebrano",
- "Wait_activation_warning": "Preden se lahko prijavite, mora skrbnik ročno aktivirati vaš račun.",
- "Screen_lock": "Zaklep zaslona",
- "Local_authentication_biometry_title": "Overiti",
- "Local_authentication_biometry_fallback": "Uporabite geslo",
- "Local_authentication_unlock_option": "Odklenite z geslom",
- "Local_authentication_change_passcode": "Spremenite geslo",
- "Local_authentication_info": "Opomba: Če pozabite geslo, boste morali aplikacijo izbrisati in znova namestiti.",
- "Local_authentication_facial_recognition": "Prepoznavanje obraza",
- "Local_authentication_fingerprint": "prstni odtis",
- "Local_authentication_unlock_with_label": "Odklenite z {{label}}",
- "Local_authentication_auto_lock_60": "Po 1 minuti",
- "Local_authentication_auto_lock_300": "Po 5 minutah",
- "Local_authentication_auto_lock_900": "Po 15 minutah",
- "Local_authentication_auto_lock_1800": "Po 30 minutah",
- "Local_authentication_auto_lock_3600": "Po 1 uri",
- "Passcode_enter_title": "Vnesite svojo geslo",
- "Passcode_choose_title": "Izberite svojo novo geslo",
- "Passcode_choose_confirm_title": "Potrdite svojo novo geslo",
- "Passcode_choose_error": "Gesla se ne ujemajo. Poskusi ponovno.",
- "Passcode_choose_force_set": "Skrbnik zahteva geslo",
- "Passcode_app_locked_title": "Aplikacija zaklenjena",
- "Passcode_app_locked_subtitle": "Poskusite znova v {{timeLeft}} sekunde",
- "After_seconds_set_by_admin": "Po {{seconds}} sekundah (nastavil admin)",
- "Dont_activate": "Ne aktivirajte zdaj",
- "Queued_chats": "V čakalni vrsti",
- "Logout_from_other_logged_in_locations": "Odjava z drugih prijavljenih lokacij",
- "You_will_be_logged_out_from_other_locations": "Odjavljeni boste z drugih lokacij.",
- "Logged_out_of_other_clients_successfully": "Uspešno odjavljeni iz drugih naprav",
- "Logout_failed": "Odjava ni uspela!",
- "Log_analytics_events": "Dogodki analitike dnevnika",
- "E2E_encryption_change_password_title": "Spremenite geslo za šifriranje",
- "E2E_encryption_change_password_description": "Zdaj lahko ustvarite šifrirane zasebne skupine in neposredna sporočila. Prav tako lahko spremenite obstoječe zasebne skupine ali DM -je za šifriranje.\nTo je *šifriranje na obeh straneh*, tako da ključ za kodiranje/dekodiranje sporočil ne bo shranjen na strežniku. Zaradi tega morate geslo shraniti nekje na varnem. Morali ga boste vnesti na druge naprave, na katere želite uporabiti šifriranje E2E.",
- "E2E_encryption_change_password_error": "Napaka med spreminjanjem gesla za ključe E2E!",
- "E2E_encryption_change_password_success": "Ključno geslo E2E se je uspešno spremenilo!",
- "E2E_encryption_change_password_message": "Prepričajte se, da ste ga previdno shranili nekje drugje.",
- "E2E_encryption_change_password_confirmation": "Da, spremenite",
- "E2E_encryption_reset_title": "Ponastavitev tipke E2E",
- "E2E_encryption_reset_description": "Ta možnost bo odstranila trenutno tipko E2E in vas odjavila.\nKo se ponovno prijavite, vam bo Rocket.Chat ustvaril nov ključ in obnovil vaš dostop do katere koli šifrirane sobe, ki ima enega ali več članov v spletu.\nZaradi narave šifriranja E2E Rocket.Chat ne bo mogel obnoviti dostopa do nobene šifrirane sobe, ki nima člana na spletu.",
- "E2E_encryption_reset_button": "Ponastavitev tipke E2E",
- "E2E_encryption_reset_error": "Napaka med ponastavitvijo tipke E2E!",
- "E2E_encryption_reset_message": "Odjavljeni boste.",
- "E2E_encryption_reset_confirmation": "Da, ponastavite",
- "Following": "Sledenje",
- "Threads_displaying_all": "Prikazovanje vseh",
- "Threads_displaying_following": "Prikazovanje sledenja",
- "Threads_displaying_unread": "Prikaz neprebranega",
- "No_threads": "Ni niti",
- "No_threads_following": "Ne spremljate nobenih niti",
- "No_threads_unread": "Ni neprebranih niti",
- "Messagebox_Send_to_channel": "Pošlji na kanal",
- "Leader": "Vodja",
- "Moderator": "Moderator",
- "Owner": "Lastnik",
- "Remove_from_room": "Odstrani iz sobe",
- "Ignore": "Prezri",
- "Unignore": "Unignore",
- "User_has_been_ignored": "Uporabnik je bil prezrt",
- "User_has_been_unignored": "Uporabnik ni več zanemarjen",
- "User_has_been_removed_from_s": "Uporabnik je bil odstranjen iz {{s}}",
- "User__username__is_now_a_leader_of__room_name_": "Uporabnik {{username}} je zdaj vodja sobe {{room_name}}",
- "User__username__is_now_a_moderator_of__room_name_": "Uporabnik {{username}} je zdaj moderator sobe {{room_name}}",
- "User__username__is_now_a_owner_of__room_name_": "Uporabnik {{username}} je zdaj lastnik sobe {{room_name}}",
- "User__username__removed_from__room_name__leaders": "Uporabnik {{username}} ni več vodja sobe {{room_name}} ",
- "User__username__removed_from__room_name__moderators": "Uporabnik {{username}} ni več moderator sobe {{room_name}}",
- "User__username__removed_from__room_name__owners": "Uporabnik {{username}} ni več lastnik sobe {{room_name}}",
- "The_user_will_be_removed_from_s": "Uporabnik bo odstranjen iz {{s}}",
- "Yes_remove_user": "Ja, odstrani uporabnika!",
- "Direct_message": "Neposredno sporočilo",
- "Message_Ignored": "To sporočilo je bilo prezrto. Tapnite, da ga prikažete",
- "Enter_workspace_URL": "Vnesite URL delovnega prostora",
- "Workspace_URL_Example": "Npr. your-company.rocket.chat",
- "This_room_encryption_has_been_enabled_by__username_": "Šifriranje te sobe je omogočilo {{username}}",
- "This_room_encryption_has_been_disabled_by__username_": "Šifriranje te sobe je onemogočeno z {{username}}",
- "Teams": "Ekipe",
- "No_team_channels_found": "Kanalov ni mogoče najti",
- "Team_not_found": "Ekipa ni bila najdena",
- "Create_Team": "Ustvari ekipo",
- "Team_Name": "Ime ekipe",
- "Private_Team": "Zasebna ekipa",
- "Read_Only_Team": "Preberite samo ekipo",
- "Broadcast_Team": "Oddajna ekipa",
- "creating_team": "ustvarjanje ekipe",
- "team-name-already-exists": "Ekipa s tem imenom že obstaja",
- "Add_Channel_to_Team": "Dodajte kanal v ekipo",
- "Left_The_Team_Successfully": "Uspešno zapustil ekipo",
- "Create_New": "Ustvari novo",
- "Add_Existing": "Dodaj obstoječe",
- "Add_Existing_Channel": "Dodaj obstoječi kanal",
- "Remove_from_Team": "Odstranite iz ekipe",
- "Auto-join": "Samodejna pridružitev",
- "Remove_Team_Room_Warning": "Bi radi odstranili ta kanal iz ekipe? Kanal se bo premaknil nazaj v delovni prostor",
- "Confirmation": "Potrditev",
- "invalid-room": "Neveljavna soba",
- "You_are_leaving_the_team": "Zapuščate ekipo '{{team}}'",
- "Leave_Team": "Zapusti ekipo",
- "Select_Team": "Izberite ekipo",
- "Select_Team_Channels": "Izberite kanale ekipe, ki jih želite zapustiti.",
- "Cannot_leave": "Ne more oditi",
- "Cannot_remove": "Ne more odstraniti",
- "Cannot_delete": "Ne more izbrisati",
- "Last_owner_team_room": "Ste zadnji lastnik tega kanala. Ko zapustite ekipo, bo kanal zadržan v ekipi, vendar ga boste upravljali od zunaj.",
- "last-owner-can-not-be-removed": "Zadnjega lastnika ni mogoče odstraniti",
- "Remove_User_Teams": "Izberite kanale, ki jih želite odstraniti.",
- "Deleting_account": "Brisanje računa",
- "Delete_my_account": "Izbriši moj račun",
- "Delete_Team": "Izbriši ekipo",
- "Select_channels_to_delete": "Tega ni mogoče razveljaviti. Ko izbrišete ekipo, se izbrišejo vsa vsebina in konfiguracija klepeta.\n\nIzberite kanale, ki jih želite izbrisati. Tisti, katere se odločite obdržati, bodo na voljo v vašem delovnem prostoru. Pazite, da bodo javni kanali še vedno javni in vidni vsem.",
- "You_are_deleting_the_team": "Izbrišete to ekipo.",
- "Removing_user_from_this_team": "Odstranite {{user}} iz te ekipe",
- "Remove_User_Team_Channels": "Izberite kanale, iz katerih želite odstraniti uporabnika.",
- "Remove_Member": "Odstranite člana",
- "leaving_team": "zapuščanje ekipe",
- "removing_team": "Odstranjevanje iz ekipe",
- "moving_channel_to_team": "Premik kanala v ekipo",
- "deleting_team": "brisanje ekipe",
- "member-does-not-exist": "Član ne obstaja",
- "Convert": "Pretvorba",
- "Convert_to_Team": "Pretvoriti v ekipo",
- "Convert_to_Team_Warning": "Ta kanal pretvorite v ekipo. Vsi člani bodo zadržani.",
- "Move_to_Team": "Premaknite se v ekipo",
- "Move_Channel_Paragraph": "Premik kanala znotraj ekipe pomeni, da bo ta kanal dodan v kontekstu ekipe, vendar bodo vsi člani kanala, ki niso člani ustrezne ekipe, še vedno imeli dostop do tega kanala, vendar ne bodo dodani kot člani ekipe.\n\nZ vsemi kanali bodo še vedno upravljali lastniki teh kanalov.\n\nČlani ekipe in celo lastniki ekipe, če ni član tega kanala, ne morejo imeti dostopa do vsebine kanala.\n\nPazite, da bo lastnik ekipe lahko odstranil člane s kanala.",
- "Move_to_Team_Warning": "Ali po branju prejšnjih navodil še vedno želite premakniti ta kanal v izbrano ekipo?",
- "Load_More": "Naloži več",
- "Load_Newer": "Naloži novejše",
- "Load_Older": "Naložiti starejše",
- "room-name-already-exists": "Ime sobe že obstaja",
- "error-team-creation": "Napaka pri ustvarjanje ekipe",
- "unauthorized": "Nepooblaščen",
- "Left_The_Room_Successfully": "Uspešno zapustil sobo",
- "Deleted_The_Team_Successfully": "Ekipa je uspešno izbrisala",
- "Deleted_The_Room_Successfully": "Soba uspešno izbrisana",
- "Convert_to_Channel": "Pretvoriti v kanal",
- "Converting_Team_To_Channel": "Preoblikovanje ekipe v kanal",
- "Select_Team_Channels_To_Delete": "Izberite kanale ekipe, ki jih želite izbrisati, tisti, ki jih ne izberete, bodo premaknjeni v delovni prostor.\n\nPazite, da bodo javni kanali res javni in vidni vsem.",
- "You_are_converting_the_team": "To ekipo pretvorite v kanal",
- "Display": "Prikaz",
- "Avatars": "Avatari",
- "Sort_by": "Razvrsti po",
- "Group_by": "Skupina po",
- "Types": "Vrste",
- "Expanded": "Razširjen",
- "Condensed": "Kondenzirano",
- "creating_discussion": "ustvarjanje razprave",
- "Canned_Responses": "Predpripravljeni odzivi",
- "No_match_found": "Ni mogoče najti.",
- "No_discussions": "Brez razprav",
- "Check_canned_responses": "Preverite predpripravljene odzive.",
- "Searching": "Iskanje",
- "Use": "Uporaba",
- "Shortcut": "Bližnjica",
- "Content": "Vsebina",
- "Sharing": "Delitev",
- "No_canned_responses": "Brez predpripravljenih odzivov",
- "Send_email_confirmation": "Pošljite potrditev e -pošte",
- "sending_email_confirmation": "pošiljanje potrditve e -pošte",
- "Enable_Message_Parser": "Omogoči razčlenjevalnik sporočil",
- "Unsupported_format": "Nepodprta oblika",
- "Downloaded_file": "Prenesena datoteka",
- "Error_Download_file": "Napaka med prenosom datoteke",
- "added__roomName__to_team": "v to ekipo dodano #{{roomName}}",
- "Added__username__to_team": "v to ekipo dodan @{{user_added}}",
- "Converted__roomName__to_team": "pretvorjeno #{{roomName}} v ekipo",
- "Converted__roomName__to_channel": "pretvorjeno #{{roomName}} v kanal",
- "Converting_team_to_channel": "Preoblikovanje ekipe v kanal",
- "Deleted__roomName__": "izbrisano #{{roomName}}",
- "Message_HideType_added_user_to_team": "Skrij sporočila \"Uporabnik dodan v ekipo\"",
- "Message_HideType_removed_user_from_team": "Skrij sporočila \"Uporabnik odstranjen iz ekipe\"",
- "Message_HideType_ujt": "Skrij sporočila \"Uporabnik se se je pridružil ekipi\"",
- "Message_HideType_ult": "Skrij sporočila \"Uporabnik je zapustil ekipo\"",
- "Message_HideType_user_added_room_to_team": "Skrij sporočila \"Uporabnik dodal sobo v ekipo\"",
- "Message_HideType_user_converted_to_channel": "Skrij sporočila \"Uporabnik pretvoril ekipo v kanal\"",
- "Message_HideType_user_converted_to_team": "Skrij sporočila \"Uporabnik pretvoril kanal v ekipo\"",
- "Message_HideType_user_deleted_room_from_team": "Skrij sporočila \"Uporabnik izbrisal sobo iz ekipe\"",
- "Message_HideType_user_removed_room_from_team": "Skrij sporočila \"Uporabnika odstranil sobo iz ekipe\"",
- "Removed__roomName__from_this_team": "odstranjena #{{roomName}} iz te ekipe",
- "Removed__username__from_team": "odstranjen @{{user_removed}} iz te ekipe",
- "User_joined_team": "pridružil tej ekipi",
- "User_left_team": "zapustil to ekipo",
- "Place_chat_on_hold": "Postavite klepet na \"pridržan\"",
- "Would_like_to_place_on_hold": "Bi radi ta klepet postavili na \"pridržan\"?",
- "Open_Livechats": "Odpri klepete v živo",
- "On_hold_Livechats": "Odrpt klepet na čakanju",
- "Chat_is_on_hold": "Ta klepet zaradi neaktivnosti ni na voljo",
- "Resume": "Nadaljuj",
- "Omnichannel_placed_chat_on_hold": "Klepet na zadržku: {{comment}}",
- "Omnichannel_on_hold_chat_resumed": "Na zadrževanju klepeta se je nadaljeval: {{comment}}",
- "Omnichannel_queue": "Čakalna vrsta omnichannel",
- "Empty": "Prazno",
- "Mark_as_unread": "Označi kot neprebrano",
- "Mark_as_unread_Info": "Prikazovalna soba kot neprebrana, kadar obstajajo neprebrana sporočila",
- "Show_badge_for_mentions": "Pokažite značko za omembe",
- "Show_badge_for_mentions_Info": "Prikaz značke samo za neposredne omembe",
- "error-init-video-conf": "Napaka Zagon video klica",
- "totp-invalid": "Koda ali geslo neveljavno",
- "Close_Chat": "Zaprite klepet",
- "Select_tags": "Izberite oznake"
+ "__count__empty_rooms_will_be_removed_automatically": "{{count}} praznih sob bo izbrisanih.",
+ "__count__empty_room_will_be_removed_automatically": "{{count}} prazna soba bo izbrisana.",
+ "1_person_reacted": "1 oseba se je odzvala",
+ "1_user": "1 uporabnik",
+ "error-action-not-allowed": "{{action}} ni dovoljena",
+ "error-application-not-found": "Aplikacija ni bila najdena",
+ "error-archived-duplicate-name": "Obstaja arhiviran kanal z imenom {{room_name}}",
+ "error-avatar-invalid-url": "Neveljaven URL avatarja: {{url}}",
+ "error-avatar-url-handling": "Napaka pri spreminjanju nastavitev avatarja z URL {{url}} uporabnika: {{username}}",
+ "error-cant-invite-for-direct-room": "Uporabnika ni mogoče povabiti v neposredne sobe",
+ "error-could-not-change-email": "E-poštnega naslova ni mogoče spremeniti",
+ "error-could-not-change-name": "Imena ni mogoče spremeniti",
+ "error-could-not-change-username": "Uporabniškega imena ni mogoče spremeniti",
+ "error-could-not-change-status": "Ni mogoče spremeniti statusa",
+ "error-delete-protected-role": "Zaščitne vloge ni mogoče izbrisati",
+ "error-department-not-found": "Oddelka ni mogoče najti",
+ "error-direct-message-file-upload-not-allowed": "Deljenje datotek v neposrednih sporočilih ni dovoljeno",
+ "error-duplicate-channel-name": "Kanal z imenom {{room_name}} obstaja",
+ "error-email-domain-blacklisted": "Domena elektronske pošte je na črni listi",
+ "error-email-send-failed": "Napak pri pošiljanju elektronske pošte: {{message}}",
+ "error-save-image": "Napaka pri shranjevanju slike",
+ "error-save-video": "Napaka pri shranjevanju videa",
+ "error-field-unavailable": "{{field}} je že v uporabi :(",
+ "error-file-too-large": "Datoteka je prevelika",
+ "error-not-permission-to-upload-file": "Nimate pooblastil za nalaganje datotek",
+ "error-importer-not-defined": "Uvoznik ni bil pravilno opredeljen, manjka uvozni razred.",
+ "error-input-is-not-a-valid-field": "{{input}} ni veljaven {{field}}",
+ "error-invalid-actionlink": "Neveljavna povezava dejanja",
+ "error-invalid-arguments": "Neveljavni argumenti",
+ "error-invalid-asset": "Neveljavno sredstvo",
+ "error-invalid-channel": "Neveljaven kanal.",
+ "error-invalid-channel-start-with-chars": "Neveljaven kanal. Začnite z @ ali #",
+ "error-invalid-custom-field": "Neveljavno polje po meri",
+ "error-invalid-custom-field-name": "Neveljavno ime polja po meri. Uporabljajte samo črke, številke, vezaje in podčrtaje.",
+ "error-invalid-date": "Neveljaven datum.",
+ "error-invalid-description": "Neveljaven opis",
+ "error-invalid-domain": "Neveljavna domena",
+ "error-invalid-email": "Neveljaven e-poštni naslov {{email}}",
+ "error-invalid-email-address": "Neveljaven e-poštni naslov",
+ "error-invalid-file-height": "Neveljavna višina datoteke",
+ "error-invalid-file-type": "Neveljavna vrsta datoteke",
+ "error-invalid-file-width": "Neveljavna širina datoteke",
+ "error-invalid-from-address": "Informirali ste neveljaven naslov OD.",
+ "error-invalid-integration": "Neveljavna integracija",
+ "error-invalid-message": "Neveljavno sporočilo",
+ "error-invalid-method": "Neveljavna metoda",
+ "error-invalid-name": "Neveljavno ime",
+ "error-invalid-password": "Neveljavno geslo",
+ "error-invalid-redirectUri": "Neveljaven URI preusmeritve",
+ "error-invalid-role": "Neveljavna vloga",
+ "error-invalid-room": "Neveljavna soba",
+ "error-invalid-room-name": "{{room_name}} ni veljavno ime sobe",
+ "error-invalid-room-type": "{{type}} ni veljaven tip sobe",
+ "error-invalid-settings": "Neveljavne nastavitve",
+ "error-invalid-subscription": "Neveljavna naročnina",
+ "error-invalid-token": "Neveljaven žeton",
+ "error-invalid-triggerWords": "Neveljavne sprožilne besede",
+ "error-invalid-urls": "Neveljavni URL-ji",
+ "error-invalid-user": "Neveljaven uporabnik",
+ "error-invalid-username": "Neveljavno uporabniško ime",
+ "error-invalid-webhook-response": "Webhook URL se je odzval s stanjem, ki ni 200",
+ "error-message-deleting-blocked": "Brisanje sporočil je blokirano",
+ "error-message-editing-blocked": "Urejanje sporočil je blokirano",
+ "error-message-size-exceeded": "Velikost sporočila presega dovoljeno velikost sporočil",
+ "error-missing-unsubscribe-link": "Vnesti morate povezavo [za odjavo]",
+ "error-no-owner-channel": "Niste lastnik kanala",
+ "error-no-tokens-for-this-user": "Za tega uporabnika ni žetonov.",
+ "error-not-allowed": "Ni dovoljeno",
+ "error-not-authorized": "Brez pooblastila",
+ "error-push-disabled": "Potiskanje je onemogočeno",
+ "error-remove-last-owner": "To je zadnji lastnik. Preden ga odstranite, nastavite novega lastnika.",
+ "error-role-in-use": "Vloge ni mogoče izbrisati, ker je v uporabi",
+ "error-role-name-required": "Potrebno je ime vloge",
+ "error-password-same-as-current": "Vnesite geslo, ki je enako trenutnemu geslu",
+ "error-the-field-is-required": "Polje {{field}} je zahtevano.",
+ "error-too-many-requests": "Napaka, preveč zahtev. Prosimo, upočasnite se. Preden poskusite znova, počakajte {{seconds}} sekund. ",
+ "error-user-is-not-activated": "Uporabnik ni aktiviran",
+ "error-user-has-no-roles": "Uporabnik nima vlog",
+ "error-user-limit-exceeded": "Število uporabnikov, ki jih poskušate povabiti v #ime_kanala presega omejitev, ki jo je določil skrbnik",
+ "error-user-not-in-room": "Uporabnika ni v tej sobi",
+ "error-user-registration-custom-field": "error-user-registration-custom-field",
+ "error-user-registration-disabled": "Registracija uporabnika je onemogočena",
+ "error-user-registration-secret": "Registracija uporabnika je dovoljena samo preko Secret URL",
+ "error-you-are-last-owner": "Vi ste zadnji lastnik. Prosimo, določite novega lastnika, preden zapustite sobo. ",
+ "error-status-not-allowed": "Stanje neviden je onemogočeno",
+ "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Novi lastnik bo samodejno dodeljen {{count}} sobam.",
+ "A_new_owner_will_be_assigned_automatically_to__count__room": "Novi lastnik bo samodejno dodeljen {{count}} sobi.",
+ "Actions": "Dejanja",
+ "Activity": "Aktivnost",
+ "Add_Reaction": "Dodaj reakcijo",
+ "Add_Server": "Dodaj server",
+ "Add_users": "Dodaj uporabnike",
+ "Admin_Panel": "Administracijska plošča",
+ "Agent": "Agent",
+ "Alert": "Opozorilo",
+ "alert": "Opozorilo",
+ "alerts": "opozorila",
+ "All_users_in_the_channel_can_write_new_messages": "Vsi uporabniki v kanalu lahko napišejo nova sporočila",
+ "All_users_in_the_team_can_write_new_messages": "Vsi uporabniki v kanalu lahko napišejo nova sporočila",
+ "A_meaningful_name_for_the_discussion_room": "Pomenljivo ime za pogovorno sobo",
+ "All": "Vsi",
+ "All_Messages": "Vsa sporočila",
+ "Allow_Reactions": "Dovolite reakcijo",
+ "Alphabetical": "Po abecednem vrstnem redu",
+ "and_more": "in več",
+ "and": "in",
+ "announcement": "obvestilo",
+ "Announcement": "Obvestilo",
+ "Apply_Your_Certificate": "Uporabite svoje potrdilo",
+ "ARCHIVE": "ARHIV",
+ "archive": "arhiv",
+ "are_typing": "pišejo",
+ "Are_you_sure_question_mark": "Ste prepričani?",
+ "Are_you_sure_you_want_to_delete_your_account": "Ste prepričani, da želite izbrisati svoj račun?",
+ "Deleting_a_user_will_delete_all_messages": "Če izbrišete uporabnika, boste izbrisali tudi vsa sporočila, sobe in ekipe tega uporabnika. Tega ni mogoče razveljaviti.",
+ "Are_you_sure_you_want_to_leave_the_room": "Ste prepričani da želite zapustiti sobo {{room}}?",
+ "Audio": "Zvok",
+ "Authenticating": "Preverjanje pristnosti",
+ "Automatic": "Avtomatično",
+ "Auto_Translate": "Samodejno prevedi",
+ "Avatar_changed_successfully": "Avatar uspešno spremenjen",
+ "Avatar_Url": "Avatar URL",
+ "Away": "Odsoten",
+ "Back": "Nazaj",
+ "Black": "Črn",
+ "Block_user": "Blokiraj uporabnika",
+ "Browser": "Brskalnik",
+ "Busy": "Zaseden",
+ "By_proceeding_you_are_agreeing": "Z nadaljevanjem se strinjate z našimi",
+ "Cancel_editing": "Prekliči urejanje",
+ "Cancel_recording": "Prekliči snemanje",
+ "Cancel": "Prekliči",
+ "changing_avatar": "spreminjanje avatarja",
+ "creating_channel": "kreiranje kanala",
+ "creating_invite": "kreiranje povabila",
+ "Channel_Name": "Ime kanala",
+ "Channels": "Kanali",
+ "Chats": "Klepeti",
+ "Chat_started": "Klepet se je začel",
+ "Call_already_ended": "Klic je že končan!",
+ "Clear_cookies_alert": "Ali želite izbrisati vse piškotke?",
+ "Clear_cookies_desc": "To dejanje bo izbrisalo vse prijavne piškotke, kar vam bo omogočilo prijavo v druge račune.",
+ "Clear_cookies_yes": "Da, izbriši piškotke",
+ "Clear_cookies_no": "Ne, obdrži piškotke",
+ "Click_to_join": "Pridruži se!",
+ "Close": "Zapri",
+ "Close_emoji_selector": "Zapri izbirnik čustvenih simbolov",
+ "Closing_chat": "Zapiranje klepeta",
+ "Change_language_loading": "Spreminjanje jezika.",
+ "Chat_closed_by_agent": "Klepet je zaprl agent",
+ "Choose": "Izberite",
+ "Choose_from_library": "Izberite iz knjižnice",
+ "Choose_file": "Izberite datoteko",
+ "Choose_where_you_want_links_be_opened": "Izberite, kje želite odpreti povezave",
+ "Code": "Koda",
+ "Code_or_password_invalid": "Koda ali geslo ni veljavno",
+ "Conversation_closed": "Pogovor je zaprt",
+ "Collaborative": "Sodelovanje",
+ "Confirm": "Potrdite",
+ "Connect": "Povežite",
+ "Connected": "Povezan",
+ "connecting_server": "povezujem se na strežnik",
+ "Connecting": "Povezovanje ...",
+ "Contact_us": "Kontaktiraj nas",
+ "Contact_your_server_admin": "Se obrnite na skrbnika strežnika.",
+ "Continue_with": "Nadaljujte z",
+ "Copied_to_clipboard": "Kopirano v odložišče!",
+ "Copy": "Kopiraj",
+ "Conversation": "Pogovor",
+ "Certificate_password": "Geslo potrdila",
+ "Clear_cache": "Počistite predpomnilnik lokalnega strežnika",
+ "Clear_cache_loading": "Čiščenje predpomnilnika.",
+ "Whats_the_password_for_your_certificate": "Kakšno je geslo za vaše potrdilo?",
+ "Create_account": "Ustvari račun",
+ "Create_Channel": "Ustvari kanal",
+ "Create_Direct_Messages": "Ustvari neposredna sporočila",
+ "Create_Discussion": "Ustvari razpravo",
+ "Created_snippet": "ustvaril delček",
+ "Create_a_new_workspace": "Ustvari nov delovni prostor",
+ "Create": "Ustvari",
+ "Custom_Status": "Status po meri",
+ "Dark": "Temno",
+ "Dark_level": "Temna raven",
+ "Default": "Privzeto",
+ "Default_browser": "Privzeti brskalnik",
+ "Delete_Room_Warning": "Z izbrisom sobe boste izbrisali vsa sporočila znotraj sobe. Dejanja ne morete razveljaviti.",
+ "Department": "Oddelek",
+ "delete": "izbrisati",
+ "Delete": "Izbriši",
+ "DELETE": "Izbrisati",
+ "Delete_Account": "Izbriši račun",
+ "Delete_Account_confirm": "Da, izbriši",
+ "move": "premaknite se",
+ "deleting_room": "brisanje sobe",
+ "description": "opis",
+ "Description": "Opis",
+ "Desktop_Options": "Možnosti namizja",
+ "Desktop_Notifications": "Namizna obvestila",
+ "Desktop_Alert_info": "Ta obvestila so dostavljena na namizju",
+ "Directory": "Imenik",
+ "Direct_Messages": "Neposredna sporočila",
+ "Disable_notifications": "Onemogoči obvestila",
+ "Discussions": "Razprave",
+ "Discussion_Desc": "Pomagajte ohranjati pregled nad tem, kaj se dogaja! Z ustvarjanjem razprave se ustvari podkanal tistega, ki ste ga izbrali, in oba sta povezana.",
+ "Discussion_name": "Ime razprave",
+ "Done": "Končano",
+ "Dont_Have_An_Account": "Ali nimate računa?",
+ "Do_you_have_an_account": "Imate račun?",
+ "Do_you_have_a_certificate": "Imate potrdilo?",
+ "Do_you_really_want_to_key_this_room_question_mark": "Ali res želite {{key}} to sobo?",
+ "E2E_Encryption": "E2E šifriranje",
+ "E2E_How_It_Works_info1": "Zdaj lahko ustvarite šifrirane zasebne skupine in neposredna sporočila. Prav tako lahko spremenite obstoječe zasebne skupine ali DM -je za šifriranje.",
+ "E2E_How_It_Works_info2": "To je *šifriranje na obeh straneh* in ključ za kodiranje/dekodiranje sporočil ne bo shranjen na strežniku. Zaradi tega *morate to geslo varno shraniti*, da do njega lahko dostopate kasneje, če boste morda potrebovali.",
+ "E2E_How_It_Works_info3": "Če nadaljujete, bo to samodejno ustvarilo geslo E2E.",
+ "E2E_How_It_Works_info4": "Novo geslo za šifrirni ključ lahko nastavite tudi kadar koli iz katerega koli brskalnika, ki ste ga vnesli obstoječe geslo E2E.",
+ "edit": "Uredi",
+ "edited": "urejeno",
+ "Edit": "Uredi",
+ "Edit_Status": "Uredi stanje",
+ "Edit_Invite": "Uredi povabilo",
+ "End_to_end_encrypted_room": "Obojestransko (E2E) šifrirane sobe",
+ "end_to_end_encryption": "obojestransko(E2E) šifriranje",
+ "Email_Notification_Mode_All": "Vsaka omemba/neposredno sporočilo",
+ "Email_Notification_Mode_Disabled": "Onemogočeno",
+ "Email_or_password_field_is_empty": "Polje e -pošte ali gesla je prazno",
+ "Email": "E-poštni naslov",
+ "email": "E-naslov",
+ "Empty_title": "Prazen naslov",
+ "Enable_Auto_Translate": "Omogoči samodejni prenos",
+ "Enable_notifications": "Omogoči obvestila",
+ "Encrypted": "Šifrirano",
+ "Encrypted_message": "Šifrirano sporočilo",
+ "Enter_Your_E2E_Password": "Vnesite svoje geslo E2E",
+ "Enter_Your_Encryption_Password_desc1": "To vam bo omogočilo dostop do šifriranih zasebnih skupin in neposrednih sporočil.",
+ "Enter_Your_Encryption_Password_desc2": "Za kodiranje/dekodiranje sporočil morate vnesti geslo na vsakem mestu, ki ga uporabljate.",
+ "Encryption_error_title": "Vaše šifrirno geslo se zdi napačno",
+ "Encryption_error_desc": "Ni bilo mogoče dekodirati vašega šifrirnega ključa, ki bi ga bilo mogoče uvoziti.",
+ "Everyone_can_access_this_channel": "Vsakdo lahko dostopa do tega kanala",
+ "Everyone_can_access_this_team": "Vsak lahko dostopa do te ekipe",
+ "Error_uploading": "Napaka prenašanja",
+ "Expiration_Days": "Iztek (dnevi)",
+ "Favorites": "Priljubljeno",
+ "Files": "Datoteke",
+ "File_description": "Opis datoteke",
+ "File_name": "Ime datoteke",
+ "Finish_recording": "Zaključek snemanja",
+ "Following_thread": "Naslednja nit",
+ "For_your_security_you_must_enter_your_current_password_to_continue": "Zaradi svoje varnosti morate za nadaljevanje vnesti trenutno geslo",
+ "Forgot_password_If_this_email_is_registered": "Če je ta elektronski naslov registriran, bomo poslali navodila, kako ponastaviti geslo. Če v kratkem ne prejmete e -pošte, se vrnite in poskusite znova.",
+ "Forgot_password": "Pozabljeno geslo",
+ "Forgot_Password": "Ste pozabili geslo",
+ "Forward": "Posreduj",
+ "Forward_Chat": "Napredni klepet",
+ "Forward_to_department": "Posreduj na oddelek",
+ "Forward_to_user": "Posreduj uporabniku",
+ "Full_table": "Kliknite za ogled celotne tabele",
+ "Generate_New_Link": "Ustvari novo povezavo",
+ "Has_left_the_team": "je zapustil ekipo",
+ "Hide_System_Messages": "Skrij sistemska sporočila",
+ "Hide_type_messages": "Skrij sporočila \"{{type}}\"",
+ "How_It_Works": "Kako deluje",
+ "Message_HideType_uj": "Skrij sporočila \"pridružen uporabnik\"",
+ "Message_HideType_ul": "Skrij sporočila \"uporabnik je odšel\"",
+ "Message_HideType_ru": "Skrij sporočila \"uporabnik odstranjen\"",
+ "Message_HideType_au": "Skrij sporočila \"uporabnik dodan\"",
+ "Message_HideType_mute_unmute": "Skrij sporočila \"uporabnik utišan/zvok omogočen\"",
+ "Message_HideType_r": "Ime sobe se je spremenilo",
+ "Message_HideType_ut": "Uporabnik se je pridružil pogovoru",
+ "Message_HideType_wm": "Dobrodošli",
+ "Message_HideType_rm": "Sporočilo odstranjeno",
+ "Message_HideType_subscription_role_added": "Je bila določena vloga",
+ "Message_HideType_subscription_role_removed": "Vloga ni več opredeljena",
+ "Message_HideType_room_archived": "Soba arhivirana",
+ "Message_HideType_room_unarchived": "Soba ni arhivirana",
+ "I_Saved_My_E2E_Password": "Shranil sem geslo E2E",
+ "IP": "IP",
+ "In_app": "V aplikaciji",
+ "In_App_And_Desktop": "V aplikaciji in namizju",
+ "In_App_and_Desktop_Alert_info": "Ko je aplikacija odprta, prikaže pasico na vrhu zaslona in prikaže obvestilo na namizju",
+ "Invisible": "Neviden",
+ "Invite": "Povabilo",
+ "is_a_valid_RocketChat_instance": "je veljaven primer Rocket.Chat",
+ "is_not_a_valid_RocketChat_instance": "ni veljaven primer Rocket.Chat",
+ "is_typing": "piše",
+ "Invalid_or_expired_invite_token": "Neveljaven ali iztekel žeton povabila",
+ "Invalid_server_version": "Strežnik, ki ga poskušate povezati, uporablja različico, ki je aplikacija ne podpira več: {{currentVersion}}.\n\nZahtevamo različico {{minVersion}}",
+ "Invite_Link": "Povezava povabila",
+ "Invite_users": "Povabite uporabnike",
+ "Join": "Pridružite se",
+ "Join_Code": "Pridružite se kodi",
+ "Insert_Join_Code": "Vstavite kodo za pridružitev",
+ "Join_our_open_workspace": "Pridružite se našemu odprtemu delovnemu prostoru",
+ "Join_your_workspace": "Pridružite se svojemu delovnemu prostoru",
+ "Just_invited_people_can_access_this_channel": "Do tega kanala lahko dostopajo samo povabljeni",
+ "Just_invited_people_can_access_this_team": "Samo povabljeni ljudje lahko dostopajo do te ekipe",
+ "Language": "Jezik",
+ "last_message": "Zadnje sporočilo",
+ "Leave_channel": "Zapusti kanal",
+ "leaving_room": "zapuščanje sobe",
+ "Leave": "Zapusti sobo",
+ "leave": "zapusti",
+ "Legal": "Pravno",
+ "Light": "Svetloba",
+ "License": "Dovoljenje",
+ "Livechat": "LiveChat",
+ "Livechat_edit": "LiveChat urejanje",
+ "Livechat_transfer_return_to_the_queue": "Vrnil klepet v čakalno vrsto",
+ "Login": "Prijava",
+ "Login_error": "Vaše poverilnice so bile zavrnjene! Prosim poskusite ponovno.",
+ "Login_with": "Prijava z",
+ "Logging_out": "Odjava.",
+ "Logout": "Odjava",
+ "Max_number_of_uses": "Največje število uporab",
+ "Max_number_of_users_allowed_is_number": "Največ dovoljenega števila uporabnikov je {{maxUsers}}",
+ "members": "člani",
+ "Members": "Člani",
+ "Mentioned_Messages": "Omenjena sporočila",
+ "mentioned": "omenjeno",
+ "Mentions": "Omembe",
+ "Message_accessibility": "Sporočilo iz {{user}} na {{Time}}: {{message}}",
+ "Message_actions": "Sporočila",
+ "Message_pinned": "Sporočilo pripeto",
+ "Message_removed": "Sporočilo odstranjeno",
+ "Message_starred": "Sporočilo v zvezdi",
+ "Message_unstarred": "Sporočilo neokuženo",
+ "message": "sporočilo",
+ "messages": "Sporočila",
+ "Message": "Sporočilo",
+ "Messages": "Sporočila",
+ "Message_Reported": "Sporočilo prijavljeno",
+ "Microphone_Permission_Message": "Rocket.Chat potrebuje dostop do vašega mikrofona, da lahko pošljete zvočno sporočilo.",
+ "Microphone_Permission": "Dovoljenje mikrofona",
+ "Mute": "Nemo",
+ "muted": "utišan",
+ "My_servers": "Moji strežniki",
+ "N_people_reacted": "{{n}} ljudi je reagiralo",
+ "N_users": "{{n}} uporabniki",
+ "N_channels": "{{n}} kanali",
+ "Name": "Ime",
+ "Never": "Nikoli",
+ "New_chat_transfer": "Nov prenos klepeta: {{agent}} je klepet vrnil v čakalno vrsto",
+ "New_Message": "Novo sporočilo",
+ "New_Password": "Novo geslo",
+ "New_Server": "Nov strežnik",
+ "Next": "Naslednji",
+ "No_files": "Brez datotek",
+ "No_limit": "Ni omejitev",
+ "No_mentioned_messages": "Ni omenjenih sporočil",
+ "No_pinned_messages": "Ni pripetih sporočil",
+ "No_results_found": "Brez zadetkov",
+ "No_starred_messages": "Ni sporočil z zvezdico",
+ "No_thread_messages": "Brez sporočil niha",
+ "No_label_provided": "Ni na voljo {{label}}.",
+ "No_Message": "Brez sporočila",
+ "No_messages_yet": "Nimate še nobenih sporočil",
+ "No_Reactions": "Brez reakcij",
+ "No_Read_Receipts": "Brez prejemnikov branja",
+ "Not_logged": "Ni prijavljen",
+ "Not_RC_Server": "To ni Rocket.Chat Server.\n{{contact}}",
+ "Nothing": "Nič",
+ "Nothing_to_save": "Nič za shraniti!",
+ "Notify_active_in_this_room": "Obvesti aktivne uporabnike v tej sobi",
+ "Notify_all_in_this_room": "Obvesti vse v tej sobi",
+ "Notifications": "Obvestila",
+ "Notification_Duration": "Trajanje obvestila",
+ "Notification_Preferences": "Nastavitve obvestila",
+ "No_available_agents_to_transfer": "Agenti za prenos niso na voljo ",
+ "Offline": "Nedosegljiv",
+ "Oops": "Ups!",
+ "Omnichannel": "Omnichannel",
+ "Omnichannel_enable_alert": "Niste na voljo na Omnichannelu. Bi radi bili na voljo?",
+ "Onboarding_description": "Delovni prostor je prostor vaše ekipe ali organizacije za sodelovanje. Prosite skrbnika delovnega prostora za naslov, da se pridružite, ali da ustvari enega za svojo ekipo.",
+ "Onboarding_join_workspace": "Pridružite se delovnemu prostoru",
+ "Onboarding_subtitle": "Izven ekipnega sodelovanja",
+ "Onboarding_title": "Dobrodošli v Rocket.Chat",
+ "Onboarding_join_open_description": "Pridružite se našemu odprtemu delovnemu prostoru, da klepetate z ekipo in skupnostjo Rocket.Chat.",
+ "Onboarding_agree_terms": "Z nadaljevanjem se strinjate z Rocket.Chat",
+ "Onboarding_less_options": "Manj možnosti",
+ "Onboarding_more_options": "Več možnosti",
+ "Online": "Dosegljiv",
+ "Only_authorized_users_can_write_new_messages": "Samo pooblaščen uporabnik lahko napiše nova sporočila",
+ "Open_emoji_selector": "Odprite selektor emojija",
+ "Open_Source_Communication": "Odprtokodna komunikacija",
+ "Open_your_authentication_app_and_enter_the_code": "Odprite aplikacijo za preverjanje pristnosti in vnesite kodo. Uporabite lahko tudi eno od vaših nadomestnih kod.",
+ "OR": "Ali",
+ "OS": "OS",
+ "Overwrites_the_server_configuration_and_use_room_config": "Prepiše konfiguracijo strežnika in uporabi konfiguracijo sobe",
+ "Password": "Geslo",
+ "Parent_channel_or_group": "Matični kanal ali skupina",
+ "Permalink_copied_to_clipboard": "Permalink, kopirano v odložišče!",
+ "Phone": "Telefon",
+ "Pin": "Zatič",
+ "Pinned_Messages": "Pripeta sporočila",
+ "pinned": "pripet",
+ "Pinned": "Pripet",
+ "Please_add_a_comment": "Prosimo, dodajte komentar",
+ "Please_enter_your_password": "Prosimo, vnesite geslo",
+ "Please_wait": "Prosimo, počakajte",
+ "Preferences": "Nastavitve",
+ "Preferences_saved": "Shranjene nastavitve",
+ "Privacy_Policy": "Varovanje zasebnosti",
+ "Private": "Zasebno",
+ "Processing": "Procesiranje...",
+ "Profile_saved_successfully": "Profil uspešno shranjen",
+ "Profile": "Profil",
+ "Public_Channel": "Javni kanal",
+ "Public": "Javno",
+ "Push_Notifications": "Potisna obvestila",
+ "Push_Notifications_Alert_Info": "Ta obvestila so vam dostavljena, ko aplikacija ni odprta",
+ "Quote": "Citat",
+ "Reactions_are_disabled": "Reakcije so onemogočene",
+ "Reactions_are_enabled": "Reakcije so omogočene",
+ "Reactions": "Odzivi",
+ "Read_External_Permission_Message": "Rocket.Chat potrebuje dostop do fotografij, medijev in datotek v vaši napravi",
+ "Read_External_Permission": "Dovoljenje za branje medija",
+ "Read_Only": "Le branje",
+ "Read_Receipt": "Preberite potrdilo",
+ "Receive_Group_Mentions": "Prejemajte omembe skupine",
+ "Receive_Group_Mentions_Info": "Prejemate @all in @Here omembe",
+ "Register": "Registriraj novi račun",
+ "Repeat_Password": "Ponovite geslo",
+ "Replied_on": "Odgovoril na:",
+ "replies": "odgovori",
+ "reply": "odgovor",
+ "Reply": "Odgovori",
+ "Report": "Poročilo",
+ "Receive_Notification": "Prejemanje obvestila",
+ "Receive_notifications_from": "Prejemajte obvestila od {{name}}",
+ "Resend": "Ponovno poslati",
+ "Reset_password": "Ponastavitev gesla",
+ "resetting_password": "Ponastavitev gesla",
+ "RESET": "PONASTAVITI",
+ "Return_to_waiting_line": "Vrniti v čakalno vrstico",
+ "Review_app_title": "Ste zadovoljni z aplikacijo?",
+ "Review_app_desc": "Dajte nam 5 zvezdic na {{store}}",
+ "Review_app_yes": "Zagotovo!",
+ "Review_app_no": "Ne",
+ "Review_app_later": "Mogoče kasneje",
+ "Review_app_unable_store": "Ne morem odpreti {{store}}",
+ "Review_this_app": "Preglejte to aplikacijo",
+ "Remove": "Odstrani",
+ "remove": "Odstrani",
+ "Roles": "Vloge",
+ "Room_actions": "Sobna dejanja",
+ "Room_changed_announcement": "Objava sobe se je spremenila v: {{announcement}} avtor {{userBy}}",
+ "Room_changed_description": "Opis sobe spremeni v: {{description}} avtor {{userBy}}",
+ "Room_Files": "Sobne datoteke",
+ "Room_Info_Edit": "Uredi informacije o sobi",
+ "Room_Info": "Informacije o sobi",
+ "Room_Members": "Člani sobe",
+ "SAVE": "Shrani",
+ "Save_Changes": "Shrani spremembe",
+ "Save": "Shrani",
+ "Saved": "Shranjeno",
+ "saving_preferences": "shranjevanje nastavitev",
+ "saving_profile": "shranjevanje profila",
+ "saving_settings": "shranjevanje nastavitev",
+ "saved_to_gallery": "Shranjeno v galerijo",
+ "Save_Your_E2E_Password": "Shranite geslo E2E",
+ "Save_Your_Encryption_Password": "Shranite svoje šifrirno geslo",
+ "Save_Your_Encryption_Password_warning": "To geslo ni nikjer shranjeno, zato ga previdno shranite nekje pri sebi",
+ "Save_Your_Encryption_Password_info": "Če izgubite svoje E2E geslo, ni načina, da bi ga obnovili in izgubili boste dostop do svojih sporočil.",
+ "Search_Messages": "Iskanje sporočil",
+ "Search": "Iskanje",
+ "Search_by": "Iskanje",
+ "Search_global_users": "Poiščite globalne uporabnike",
+ "Search_global_users_description": "Če si vklopite, lahko poiščete katerega koli uporabnika od drugih podjetij ali strežnikov.",
+ "Seconds": "{{second}} sekunde",
+ "Security_and_privacy": "Varnost in zasebnost",
+ "Select_Avatar": "Izberite Avatar",
+ "Select_Server": "Izberite strežnik",
+ "Select_Users": "Izberite uporabnike",
+ "Select_a_Channel": "Izberite kanal",
+ "Select_a_Department": "Izberite oddelek",
+ "Select_an_option": "Izberite možnost",
+ "Select_a_User": "Izberite uporabnika",
+ "Send": "Pošlji",
+ "Send_audio_message": "Pošljite zvočno sporočilo",
+ "Send_crash_report": "Pošlji poročilo o sesutju",
+ "Send_message": "Pošlji sporočilo",
+ "Send_me_the_code_again": "Pošljite mi kodo še enkrat",
+ "Send_to": "Pošlji...",
+ "Sending_to": "Pošiljanje na",
+ "Sent_an_attachment": "Pošlji priponko",
+ "Server": "Strežnik",
+ "Servers": "Strežniki",
+ "Server_version": "Različica strežnika: {{version}}",
+ "Set_username_subtitle": "Uporabniško ime se uporablja za to, da vas drugim omenijo v sporočilih",
+ "Set_custom_status": "Nastavite stanje po meri",
+ "Set_status": "Nastavite status",
+ "Status_saved_successfully": "Status je uspešno shranjen!",
+ "Settings": "Nastavitve",
+ "Settings_succesfully_changed": "Nastavitve so se uspešno spremenile!",
+ "Share": "Deliti",
+ "Share_Link": "Deliti povezavo",
+ "Share_this_app": "Delite to aplikacijo",
+ "Show_more": "Prikaži več…",
+ "Sign_in_your_server": "Prijavite se v svoj strežnik",
+ "Sign_Up": "Prijavite se",
+ "Some_field_is_invalid_or_empty": "Neko polje je neveljavno ali prazno",
+ "Sound": "Zvok",
+ "Star_room": "Zvezdna soba",
+ "Star": "zvezda",
+ "Starred_Messages": "Sporočila z zvezdico",
+ "starred": "Igral",
+ "Starred": "Igral",
+ "Start_of_conversation": "Začetek pogovora",
+ "Start_a_Discussion": "Začnite razpravo",
+ "Started_discussion": "Začel razpravo:",
+ "Started_call": "Klic, ki ga je začel {{userBy}}",
+ "Submit": "Pošlji",
+ "Table": "Miza",
+ "Tags": "Oznake",
+ "Take_a_photo": "Fotografirati",
+ "Take_a_video": "Posnemite video",
+ "Take_it": "Vzemi!",
+ "tap_to_change_status": "Tapnite, da spremenite stanje",
+ "Tap_to_view_servers_list": "Dotaknite se seznama strežnikov",
+ "Terms_of_Service": "Pogoji storitve",
+ "Theme": "Tema",
+ "The_user_wont_be_able_to_type_in_roomName": "Uporabnik ne bo mogel vtipkavati v {{roomName}}",
+ "The_user_will_be_able_to_type_in_roomName": "Uporabnik bo lahko vtipkal {{roomName}}",
+ "There_was_an_error_while_action": "Med {{action}} je prišlo do napake!",
+ "This_room_is_blocked": "Ta soba je blokirana",
+ "This_room_is_read_only": "Ta soba se samo bere",
+ "Thread": "Nit",
+ "Threads": "Niti",
+ "Timezone": "Časovni pas",
+ "To": "Do",
+ "topic": "tema",
+ "Topic": "Tema",
+ "Translate": "Prevesti",
+ "Try_again": "Poskusi ponovno",
+ "Two_Factor_Authentication": "Dvofaktorska overjanje",
+ "Type_the_channel_name_here": "Tukaj vnesite ime kanala",
+ "unarchive": "Odpakirati",
+ "UNARCHIVE": "ODPAKIRATI",
+ "Unblock_user": "Odblokirati uporabnika",
+ "Unfollowed_thread": "Nit, ki ji nihče ne sledi",
+ "Unmute": "Preklicati utišanje",
+ "unmuted": "preklicati utišanje",
+ "Unpin": "Odpeti",
+ "unread_messages": "neprebrano",
+ "Unread": "Neprebrano",
+ "Unread_on_top": "Neprebrano na vrhu",
+ "Unstar": "Preklicati zvezdico",
+ "Unsupported_system_message": "Nepodprto sistemsko sporočilo",
+ "Updating": "Posodobitev ...",
+ "Uploading": "Nalaganje",
+ "Upload_file_question_mark": "Naloži datoteko?",
+ "User": "Uporabnik",
+ "Users": "Uporabniki",
+ "User_Info": "Uporabniške informacije",
+ "User_has_been_key": "Uporabnik je bil {{key}}",
+ "User_is_no_longer_role_by_": "{{user}} ni več {{role}} z {{userBy}}",
+ "User_sent_an_attachment": "{{user}} je poslal prilogo",
+ "Username_is_empty": "Uporabniško ime je prazno",
+ "Username": "Uporabniško ime",
+ "Username_or_email": "Uporabnisko ime ali e-posta",
+ "Uses_server_configuration": "Uporablja konfiguracijo strežnika",
+ "Validating": "Preverjanje",
+ "Registration_Succeeded": "Registracija je bila uspešna",
+ "Verify": "Preveri",
+ "Verify_email_title": "Registracija je uspela!",
+ "Verify_email_desc": "Poslali smo vam e -poštno sporočilo za potrditev vaše registracije. Če v kratkem ne prejmete e -pošte, se vrnite in poskusite znova.",
+ "Verify_your_email_for_the_code_we_sent": "Preverite svoj e -poštni naslov za kodo, ki smo jo poslali",
+ "Video_call": "Video klic",
+ "View_Original": "Pogled original",
+ "Voice_call": "Glasovni klic",
+ "Waiting_for_network": "Čakanje na omrežje ...",
+ "Websocket_disabled": "WebSocket je onemogočen za ta strežnik.\n{{contact}}",
+ "Welcome": "Dobrodošli",
+ "What_are_you_doing_right_now": "Kaj počneš v tem trenutku?",
+ "Whats_your_2fa": "Kakšna je tvoja koda 2FA?",
+ "Without_Servers": "Brez strežnikov",
+ "Workspaces": "Delovni prostori",
+ "Would_you_like_to_return_the_inquiry": "Želite zavrniti povpraševanje?",
+ "Write_External_Permission_Message": "Rocket.Chat potrebuje dostop do vaše galerije, da lahko shranite slike.",
+ "Write_External_Permission": "Dovoljenje za galerijo",
+ "Yes": "Ja",
+ "Yes_action_it": "Da, {{action}} izvedi!",
+ "Yesterday": "Včeraj",
+ "You_are_in_preview_mode": "Ste v načinu predogleda",
+ "You_are_offline": "Ste brez povezave",
+ "You_can_search_using_RegExp_eg": "Lahko iščete s pomočjo RegExp. npr. `/^text$/i`",
+ "You_colon": "Vi:",
+ "you_were_mentioned": "Bili ste omenjeni",
+ "You_were_removed_from_channel": "Odstranjeni ste bili iz {{channel}}",
+ "you": "ti",
+ "You": "Ti",
+ "Logged_out_by_server": "Strežnik vas je odjavil. Prosimo, prijavite se še enkrat.",
+ "Token_expired": "Vaša seja je potekla. Prosimo, prijavite se še enkrat.",
+ "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Če želite nekaj deliti, morate dostopati do vsaj enega strežnika Rocket.Chat.",
+ "You_need_to_verifiy_your_email_address_to_get_notications": "Če želite prejemati obvestila, potrdite svoj e-poštni naslov",
+ "Your_certificate": "Vaše potrdilo",
+ "Your_invite_link_will_expire_after__usesLeft__uses": "Vaša povezava za povabilo bo potekla po {{usesLeft}}.",
+ "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Vaša povezava za povabilo bo potekala na {{date}} ali po {{usesLeft}}.",
+ "Your_invite_link_will_expire_on__date__": "Vaša povezava za povabilo bo potekala na {{date}}.",
+ "Your_invite_link_will_never_expire": "Vaša povezava za povabilo ne bo nikoli potekala.",
+ "Your_workspace": "Vaš delovni prostor",
+ "Your_password_is": "Vaše geslo je",
+ "Version_no": "Različica: {{version}}",
+ "You_will_not_be_able_to_recover_this_message": "Tega sporočila ne boste mogli obnoviti!",
+ "You_will_unset_a_certificate_for_this_server": "Preklicali boste potrdilo za ta strežnik",
+ "Change_Language": "Spremeni jezik",
+ "Crash_report_disclaimer": "Nikoli ne spremljamo vsebine vaših klepetov. Poročilo o sesutju in dogodki analitike vsebujejo samo ustrezne informacije za nas, da bi prepoznali in odpravljali težave.",
+ "Type_message": "Tip sporočila",
+ "Room_search": "Iskanje sob",
+ "Room_selection": "Izbira sobe 1 ... 9",
+ "Next_room": "Naslednja soba",
+ "Previous_room": "Prejšnja soba",
+ "New_room": "Nova soba",
+ "Upload_room": "Naložite v sobo",
+ "Search_messages": "Iskalna sporočila",
+ "Scroll_messages": "Pomakninje po sporočilih",
+ "Reply_latest": "Odgovor na najnovejše",
+ "Reply_in_Thread": "Odgovor v nit",
+ "Server_selection": "Izbira strežnika",
+ "Server_selection_numbers": "Izbira strežnika 1 ... 9",
+ "Add_server": "Dodaj strežnik",
+ "New_line": "Nova vrstica",
+ "You_will_be_logged_out_of_this_application": "Odjavljeni boste iz te aplikacije.",
+ "Clear": "Počisti",
+ "This_will_clear_all_your_offline_data": "To bo zbrisalo vse vaše podatke brez povezave.",
+ "This_will_remove_all_data_from_this_server": "To bo odstranilo vse podatke s tega strežnika.",
+ "Mark_unread": "Označite neprebrano",
+ "Wait_activation_warning": "Preden se lahko prijavite, mora skrbnik ročno aktivirati vaš račun.",
+ "Screen_lock": "Zaklep zaslona",
+ "Local_authentication_biometry_title": "Overiti",
+ "Local_authentication_biometry_fallback": "Uporabite geslo",
+ "Local_authentication_unlock_option": "Odklenite z geslom",
+ "Local_authentication_change_passcode": "Spremenite geslo",
+ "Local_authentication_info": "Opomba: Če pozabite geslo, boste morali aplikacijo izbrisati in znova namestiti.",
+ "Local_authentication_facial_recognition": "Prepoznavanje obraza",
+ "Local_authentication_fingerprint": "prstni odtis",
+ "Local_authentication_unlock_with_label": "Odklenite z {{label}}",
+ "Local_authentication_auto_lock_60": "Po 1 minuti",
+ "Local_authentication_auto_lock_300": "Po 5 minutah",
+ "Local_authentication_auto_lock_900": "Po 15 minutah",
+ "Local_authentication_auto_lock_1800": "Po 30 minutah",
+ "Local_authentication_auto_lock_3600": "Po 1 uri",
+ "Passcode_enter_title": "Vnesite svojo geslo",
+ "Passcode_choose_title": "Izberite svojo novo geslo",
+ "Passcode_choose_confirm_title": "Potrdite svojo novo geslo",
+ "Passcode_choose_error": "Gesla se ne ujemajo. Poskusi ponovno.",
+ "Passcode_choose_force_set": "Skrbnik zahteva geslo",
+ "Passcode_app_locked_title": "Aplikacija zaklenjena",
+ "Passcode_app_locked_subtitle": "Poskusite znova v {{timeLeft}} sekunde",
+ "After_seconds_set_by_admin": "Po {{seconds}} sekundah (nastavil admin)",
+ "Dont_activate": "Ne aktivirajte zdaj",
+ "Queued_chats": "V čakalni vrsti",
+ "Logout_from_other_logged_in_locations": "Odjava z drugih prijavljenih lokacij",
+ "You_will_be_logged_out_from_other_locations": "Odjavljeni boste z drugih lokacij.",
+ "Logged_out_of_other_clients_successfully": "Uspešno odjavljeni iz drugih naprav",
+ "Logout_failed": "Odjava ni uspela!",
+ "Log_analytics_events": "Dogodki analitike dnevnika",
+ "E2E_encryption_change_password_title": "Spremenite geslo za šifriranje",
+ "E2E_encryption_change_password_description": "Zdaj lahko ustvarite šifrirane zasebne skupine in neposredna sporočila. Prav tako lahko spremenite obstoječe zasebne skupine ali DM -je za šifriranje.\nTo je *šifriranje na obeh straneh*, tako da ključ za kodiranje/dekodiranje sporočil ne bo shranjen na strežniku. Zaradi tega morate geslo shraniti nekje na varnem. Morali ga boste vnesti na druge naprave, na katere želite uporabiti šifriranje E2E.",
+ "E2E_encryption_change_password_error": "Napaka med spreminjanjem gesla za ključe E2E!",
+ "E2E_encryption_change_password_success": "Ključno geslo E2E se je uspešno spremenilo!",
+ "E2E_encryption_change_password_message": "Prepričajte se, da ste ga previdno shranili nekje drugje.",
+ "E2E_encryption_change_password_confirmation": "Da, spremenite",
+ "E2E_encryption_reset_title": "Ponastavitev tipke E2E",
+ "E2E_encryption_reset_description": "Ta možnost bo odstranila trenutno tipko E2E in vas odjavila.\nKo se ponovno prijavite, vam bo Rocket.Chat ustvaril nov ključ in obnovil vaš dostop do katere koli šifrirane sobe, ki ima enega ali več članov v spletu.\nZaradi narave šifriranja E2E Rocket.Chat ne bo mogel obnoviti dostopa do nobene šifrirane sobe, ki nima člana na spletu.",
+ "E2E_encryption_reset_button": "Ponastavitev tipke E2E",
+ "E2E_encryption_reset_error": "Napaka med ponastavitvijo tipke E2E!",
+ "E2E_encryption_reset_message": "Odjavljeni boste.",
+ "E2E_encryption_reset_confirmation": "Da, ponastavite",
+ "Following": "Sledenje",
+ "Threads_displaying_all": "Prikazovanje vseh",
+ "Threads_displaying_following": "Prikazovanje sledenja",
+ "Threads_displaying_unread": "Prikaz neprebranega",
+ "No_threads": "Ni niti",
+ "No_threads_following": "Ne spremljate nobenih niti",
+ "No_threads_unread": "Ni neprebranih niti",
+ "Messagebox_Send_to_channel": "Pošlji na kanal",
+ "Leader": "Vodja",
+ "Moderator": "Moderator",
+ "Owner": "Lastnik",
+ "Remove_from_room": "Odstrani iz sobe",
+ "Ignore": "Prezri",
+ "Unignore": "Unignore",
+ "User_has_been_ignored": "Uporabnik je bil prezrt",
+ "User_has_been_unignored": "Uporabnik ni več zanemarjen",
+ "User_has_been_removed_from_s": "Uporabnik je bil odstranjen iz {{s}}",
+ "User__username__is_now_a_leader_of__room_name_": "Uporabnik {{username}} je zdaj vodja sobe {{room_name}}",
+ "User__username__is_now_a_moderator_of__room_name_": "Uporabnik {{username}} je zdaj moderator sobe {{room_name}}",
+ "User__username__is_now_a_owner_of__room_name_": "Uporabnik {{username}} je zdaj lastnik sobe {{room_name}}",
+ "User__username__removed_from__room_name__leaders": "Uporabnik {{username}} ni več vodja sobe {{room_name}} ",
+ "User__username__removed_from__room_name__moderators": "Uporabnik {{username}} ni več moderator sobe {{room_name}}",
+ "User__username__removed_from__room_name__owners": "Uporabnik {{username}} ni več lastnik sobe {{room_name}}",
+ "The_user_will_be_removed_from_s": "Uporabnik bo odstranjen iz {{s}}",
+ "Yes_remove_user": "Ja, odstrani uporabnika!",
+ "Direct_message": "Neposredno sporočilo",
+ "Message_Ignored": "To sporočilo je bilo prezrto. Tapnite, da ga prikažete",
+ "Enter_workspace_URL": "Vnesite URL delovnega prostora",
+ "Workspace_URL_Example": "Npr. your-company.rocket.chat",
+ "Teams": "Ekipe",
+ "No_team_channels_found": "Kanalov ni mogoče najti",
+ "Team_not_found": "Ekipa ni bila najdena",
+ "Create_Team": "Ustvari ekipo",
+ "Team_Name": "Ime ekipe",
+ "creating_team": "ustvarjanje ekipe",
+ "team-name-already-exists": "Ekipa s tem imenom že obstaja",
+ "Add_Channel_to_Team": "Dodajte kanal v ekipo",
+ "Left_The_Team_Successfully": "Uspešno zapustil ekipo",
+ "Create_New": "Ustvari novo",
+ "Add_Existing": "Dodaj obstoječe",
+ "Add_Existing_Channel": "Dodaj obstoječi kanal",
+ "Remove_from_Team": "Odstranite iz ekipe",
+ "Auto-join": "Samodejna pridružitev",
+ "Remove_Team_Room_Warning": "Bi radi odstranili ta kanal iz ekipe? Kanal se bo premaknil nazaj v delovni prostor",
+ "Confirmation": "Potrditev",
+ "invalid-room": "Neveljavna soba",
+ "You_are_leaving_the_team": "Zapuščate ekipo '{{team}}'",
+ "Leave_Team": "Zapusti ekipo",
+ "Select_Team": "Izberite ekipo",
+ "Select_Team_Channels": "Izberite kanale ekipe, ki jih želite zapustiti.",
+ "Cannot_leave": "Ne more oditi",
+ "Cannot_remove": "Ne more odstraniti",
+ "Cannot_delete": "Ne more izbrisati",
+ "Last_owner_team_room": "Ste zadnji lastnik tega kanala. Ko zapustite ekipo, bo kanal zadržan v ekipi, vendar ga boste upravljali od zunaj.",
+ "last-owner-can-not-be-removed": "Zadnjega lastnika ni mogoče odstraniti",
+ "Remove_User_Teams": "Izberite kanale, ki jih želite odstraniti.",
+ "Deleting_account": "Brisanje računa",
+ "Delete_my_account": "Izbriši moj račun",
+ "Delete_Team": "Izbriši ekipo",
+ "Select_channels_to_delete": "Tega ni mogoče razveljaviti. Ko izbrišete ekipo, se izbrišejo vsa vsebina in konfiguracija klepeta.\n\nIzberite kanale, ki jih želite izbrisati. Tisti, katere se odločite obdržati, bodo na voljo v vašem delovnem prostoru. Pazite, da bodo javni kanali še vedno javni in vidni vsem.",
+ "You_are_deleting_the_team": "Izbrišete to ekipo.",
+ "Removing_user_from_this_team": "Odstranite {{user}} iz te ekipe",
+ "Remove_User_Team_Channels": "Izberite kanale, iz katerih želite odstraniti uporabnika.",
+ "Remove_Member": "Odstranite člana",
+ "leaving_team": "zapuščanje ekipe",
+ "removing_team": "Odstranjevanje iz ekipe",
+ "moving_channel_to_team": "Premik kanala v ekipo",
+ "deleting_team": "brisanje ekipe",
+ "member-does-not-exist": "Član ne obstaja",
+ "Convert": "Pretvorba",
+ "Convert_to_Team": "Pretvoriti v ekipo",
+ "Convert_to_Team_Warning": "Ta kanal pretvorite v ekipo. Vsi člani bodo zadržani.",
+ "Move_to_Team": "Premaknite se v ekipo",
+ "Move_Channel_Paragraph": "Premik kanala znotraj ekipe pomeni, da bo ta kanal dodan v kontekstu ekipe, vendar bodo vsi člani kanala, ki niso člani ustrezne ekipe, še vedno imeli dostop do tega kanala, vendar ne bodo dodani kot člani ekipe.\n\nZ vsemi kanali bodo še vedno upravljali lastniki teh kanalov.\n\nČlani ekipe in celo lastniki ekipe, če ni član tega kanala, ne morejo imeti dostopa do vsebine kanala.\n\nPazite, da bo lastnik ekipe lahko odstranil člane s kanala.",
+ "Move_to_Team_Warning": "Ali po branju prejšnjih navodil še vedno želite premakniti ta kanal v izbrano ekipo?",
+ "Load_More": "Naloži več",
+ "Load_Newer": "Naloži novejše",
+ "Load_Older": "Naložiti starejše",
+ "room-name-already-exists": "Ime sobe že obstaja",
+ "error-team-creation": "Napaka pri ustvarjanje ekipe",
+ "unauthorized": "Nepooblaščen",
+ "Left_The_Room_Successfully": "Uspešno zapustil sobo",
+ "Deleted_The_Team_Successfully": "Ekipa je uspešno izbrisala",
+ "Deleted_The_Room_Successfully": "Soba uspešno izbrisana",
+ "Convert_to_Channel": "Pretvoriti v kanal",
+ "Converting_Team_To_Channel": "Preoblikovanje ekipe v kanal",
+ "Select_Team_Channels_To_Delete": "Izberite kanale ekipe, ki jih želite izbrisati, tisti, ki jih ne izberete, bodo premaknjeni v delovni prostor.\n\nPazite, da bodo javni kanali res javni in vidni vsem.",
+ "You_are_converting_the_team": "To ekipo pretvorite v kanal",
+ "Display": "Prikaz",
+ "Avatars": "Avatari",
+ "Sort_by": "Razvrsti po",
+ "Group_by": "Skupina po",
+ "Types": "Vrste",
+ "Expanded": "Razširjen",
+ "Condensed": "Kondenzirano",
+ "creating_discussion": "ustvarjanje razprave",
+ "Canned_Responses": "Predpripravljeni odzivi",
+ "No_match_found": "Ni mogoče najti.",
+ "No_discussions": "Brez razprav",
+ "Check_canned_responses": "Preverite predpripravljene odzive.",
+ "Searching": "Iskanje",
+ "Use": "Uporaba",
+ "Shortcut": "Bližnjica",
+ "Content": "Vsebina",
+ "Sharing": "Delitev",
+ "No_canned_responses": "Brez predpripravljenih odzivov",
+ "Send_email_confirmation": "Pošljite potrditev e -pošte",
+ "sending_email_confirmation": "pošiljanje potrditve e -pošte",
+ "Enable_Message_Parser": "Omogoči razčlenjevalnik sporočil",
+ "Unsupported_format": "Nepodprta oblika",
+ "Downloaded_file": "Prenesena datoteka",
+ "Error_Download_file": "Napaka med prenosom datoteke",
+ "Converting_team_to_channel": "Preoblikovanje ekipe v kanal",
+ "Deleted__roomName__": "izbrisano #{{roomName}}",
+ "Message_HideType_added_user_to_team": "Skrij sporočila \"Uporabnik dodan v ekipo\"",
+ "Message_HideType_removed_user_from_team": "Skrij sporočila \"Uporabnik odstranjen iz ekipe\"",
+ "Message_HideType_ujt": "Skrij sporočila \"Uporabnik se se je pridružil ekipi\"",
+ "Message_HideType_ult": "Skrij sporočila \"Uporabnik je zapustil ekipo\"",
+ "Message_HideType_user_added_room_to_team": "Skrij sporočila \"Uporabnik dodal sobo v ekipo\"",
+ "Message_HideType_user_converted_to_channel": "Skrij sporočila \"Uporabnik pretvoril ekipo v kanal\"",
+ "Message_HideType_user_converted_to_team": "Skrij sporočila \"Uporabnik pretvoril kanal v ekipo\"",
+ "Message_HideType_user_deleted_room_from_team": "Skrij sporočila \"Uporabnik izbrisal sobo iz ekipe\"",
+ "Message_HideType_user_removed_room_from_team": "Skrij sporočila \"Uporabnika odstranil sobo iz ekipe\"",
+ "User_joined_team": "pridružil tej ekipi",
+ "User_left_team": "zapustil to ekipo",
+ "Place_chat_on_hold": "Postavite klepet na \"pridržan\"",
+ "Would_like_to_place_on_hold": "Bi radi ta klepet postavili na \"pridržan\"?",
+ "Open_Livechats": "Odpri klepete v živo",
+ "On_hold_Livechats": "Odrpt klepet na čakanju",
+ "Chat_is_on_hold": "Ta klepet zaradi neaktivnosti ni na voljo",
+ "Resume": "Nadaljuj",
+ "Omnichannel_placed_chat_on_hold": "Klepet na zadržku: {{comment}}",
+ "Omnichannel_on_hold_chat_resumed": "Na zadrževanju klepeta se je nadaljeval: {{comment}}",
+ "Omnichannel_queue": "Čakalna vrsta omnichannel",
+ "Empty": "Prazno",
+ "Mark_as_unread": "Označi kot neprebrano",
+ "Mark_as_unread_Info": "Prikazovalna soba kot neprebrana, kadar obstajajo neprebrana sporočila",
+ "Show_badge_for_mentions": "Pokažite značko za omembe",
+ "Show_badge_for_mentions_Info": "Prikaz značke samo za neposredne omembe",
+ "error-init-video-conf": "Napaka Zagon video klica",
+ "totp-invalid": "Koda ali geslo neveljavno",
+ "Close_Chat": "Zaprite klepet",
+ "Select_tags": "Izberite oznake"
}
\ No newline at end of file
diff --git a/app/i18n/locales/sv.json b/app/i18n/locales/sv.json
index 6f31cf5a2..090ab78df 100644
--- a/app/i18n/locales/sv.json
+++ b/app/i18n/locales/sv.json
@@ -1 +1,878 @@
-{ }
\ No newline at end of file
+{
+ "__count__empty_rooms_will_be_removed_automatically": "{{count}} tomma rum tas bort.",
+ "__count__empty_room_will_be_removed_automatically": "{{count}} tomt rum tas bort.",
+ "1_person_reacted": "1 person reagerade",
+ "1_user": "1 användare",
+ "error-action-not-allowed": "{{action}} tillåts inte",
+ "error-application-not-found": "Appen hittades inte",
+ "error-archived-duplicate-name": "Det finns en arkiverad kanal med namnet {{room_name}}",
+ "error-avatar-invalid-url": "Ogiltig avatar-URL: {{url}}",
+ "error-avatar-url-handling": "Fel vid hantering av avatarinställningar via en URL ({{url}}) för {{username}}",
+ "error-cant-invite-for-direct-room": "Det går inte att bjuda in användare till direkta rum",
+ "error-could-not-change-email": "Det gick inte att ändra e-postadressen",
+ "error-could-not-change-name": "Det gick inte att ändra namnet",
+ "error-could-not-change-username": "Det gick inte att ändra användarnamnet",
+ "error-could-not-change-status": "Det gick inte att ändra status",
+ "error-delete-protected-role": "Det går inte att radera en skyddad roll",
+ "error-department-not-found": "Avdelningen hittades inte",
+ "error-direct-message-file-upload-not-allowed": "Fildelning tillåts inte i direktmeddelanden",
+ "error-duplicate-channel-name": "Det finns redan en kanal med namnet {{room_name}} ",
+ "error-email-domain-blacklisted": "E-postdomänen är svartlistad",
+ "error-email-send-failed": "Fel vid försök att skicka e-postmeddelandet: {{message}}",
+ "error-save-image": "Fel när bilden skulle sparas",
+ "error-save-video": "Fel när videon skulle sparas",
+ "error-field-unavailable": "{{field}} används redan :(",
+ "error-file-too-large": "Filen är för stor",
+ "error-not-permission-to-upload-file": "Du har inte behörighet att ladda upp filer",
+ "error-importer-not-defined": "Importören har inte definierats rätt eller saknar importklass.",
+ "error-input-is-not-a-valid-field": "{{input}} är inte ett giltigt {{field}}",
+ "error-invalid-actionlink": "Ogiltig åtgärdslänk",
+ "error-invalid-arguments": "Ogiltiga argument",
+ "error-invalid-asset": "Ogiltig resurs",
+ "error-invalid-channel": "Ogiltig kanal.",
+ "error-invalid-channel-start-with-chars": "Ogiltig kanal. Börja med @ eller #",
+ "error-invalid-custom-field": "Ogiltigt anpassat fält",
+ "error-invalid-custom-field-name": "Ogiltigt anpassat fältnamn. Använd endast bokstäver, siffror, bindestreck och understreck.",
+ "error-invalid-date": "Ett ogiltigt datum har angetts.",
+ "error-invalid-description": "Ogiltig beskrivning",
+ "error-invalid-domain": "Ogiltig domän",
+ "error-invalid-email": "Ogiltig e-post {{email}}",
+ "error-invalid-email-address": "Ogiltig e-postadress",
+ "error-invalid-file-height": "Ogiltig filhöjd",
+ "error-invalid-file-type": "Ogiltig filtyp",
+ "error-invalid-file-width": "Ogiltig filbredd",
+ "error-invalid-from-address": "Du angav en ogiltig avsändaradress",
+ "error-invalid-integration": "Ogiltig integrering",
+ "error-invalid-message": "Ogiltigt meddelande",
+ "error-invalid-method": "Ogiltigt metod",
+ "error-invalid-name": "Ogiltigt namn",
+ "error-invalid-password": "Ogiltigt lösenord",
+ "error-invalid-redirectUri": "Ogiltig redirectUri",
+ "error-invalid-role": "Ogiltig roll",
+ "error-invalid-room": "Ogiltigt rum",
+ "error-invalid-room-name": "{{room_name}} är inte ett giltigt rumsnamn",
+ "error-invalid-room-type": "{{type}} är inte en giltig typ av rum.",
+ "error-invalid-settings": "Ogiltiga inställningar har angetts",
+ "error-invalid-subscription": "Ogiltig prenumeration",
+ "error-invalid-token": "Ogiltig token",
+ "error-invalid-triggerWords": "Ogiltiga triggerWords",
+ "error-invalid-urls": "Ogiltiga URL:er",
+ "error-invalid-user": "Ogiltig användare",
+ "error-invalid-username": "Ogiltigt användarnamn",
+ "error-invalid-webhook-response": "Webhook-URL:en returnerade en annan status än 200",
+ "error-message-deleting-blocked": "Borttagande av meddelanden har blockerats",
+ "error-message-editing-blocked": "Redigering av meddelanden har blockerats",
+ "error-message-size-exceeded": "Meddelandets storlek överstiger Message_MaxAllowedSize",
+ "error-missing-unsubscribe-link": "Du måste ange länken [unsubscribe].",
+ "error-no-owner-channel": "Du äger inte kanalen",
+ "error-no-tokens-for-this-user": "Det finns inga token för användaren",
+ "error-not-allowed": "Tillåts inte",
+ "error-not-authorized": "Inte behörig",
+ "error-push-disabled": "Pushmeddelanden är inaktiverade",
+ "error-remove-last-owner": "Det här är den sista ägaren. Ange en ny ägare innan du tar bort den här.",
+ "error-role-in-use": "Det går inte att ta bort rollen eftersom den används",
+ "error-role-name-required": "Rollnamnet måste anges",
+ "error-password-same-as-current": "Lösenordet du angett är detsamma som det nuvarande lösenordet",
+ "error-the-field-is-required": "Fältet {{field}} är obligatoriskt.",
+ "error-too-many-requests": "Fel. För många begäranden. Sakta ned. Du måste vänta {{seconds}} sekunder innan du försöker igen.",
+ "error-user-is-not-activated": "Användaren är inte aktiverad",
+ "error-user-has-no-roles": "Användaren har inga roller",
+ "error-user-limit-exceeded": "Antalet användare som du försöker bjuda in till #channel_name överskrider gränsen som administratören har angett",
+ "error-user-not-in-room": "Användaren är inte i det här rummet",
+ "error-user-registration-custom-field": "error-user-registration-custom-field",
+ "error-user-registration-disabled": "Användarregistrering är inaktiverad",
+ "error-user-registration-secret": "Registrering av användare tillåts bara via en säker URL",
+ "error-you-are-last-owner": "Du är den senaste ägaren. Ange en ny ägare innan du lämnar rummet.",
+ "error-status-not-allowed": "Dold status är inaktiverat",
+ "A_new_owner_will_be_assigned_automatically_to__count__rooms": "En ny ägare utses automatiskt för {{count}} rum.",
+ "A_new_owner_will_be_assigned_automatically_to__count__room": "En ny ägare utses automatiskt för {{count}} rum.",
+ "Actions": "Åtgärder",
+ "Activity": "Aktivitet",
+ "Add_Reaction": "Lägg till reaktion",
+ "Add_Server": "Lägg till server",
+ "Add_users": "Lägg till användare",
+ "Admin_Panel": "Administratörspanel",
+ "Agent": "Agent",
+ "Alert": "Varning",
+ "alert": "varning",
+ "alerts": "varningar",
+ "All_users_in_the_channel_can_write_new_messages": "Alla användare i kanalen kan skriva nya meddelanden",
+ "All_users_in_the_team_can_write_new_messages": "Alla användare i teamet kan skriva nya meddelanden",
+ "A_meaningful_name_for_the_discussion_room": "Ett beskrivande namn på diskussionsrummet",
+ "All": "Alla",
+ "All_Messages": "Alla meddelanden",
+ "Allow_Reactions": "Tillåt reaktioner",
+ "Alphabetical": "Alfabetisk ordning",
+ "and_more": "med mera",
+ "and": "och",
+ "announcement": "meddelande",
+ "Announcement": "Meddelande",
+ "Apply_Your_Certificate": "Tillämpa certifikatet",
+ "ARCHIVE": "ARKIV",
+ "archive": "arkiv",
+ "are_typing": "skriver",
+ "Are_you_sure_question_mark": "Är du säker?",
+ "Are_you_sure_you_want_to_delete_your_account": "Vill du ta bort kontot?",
+ "Deleting_a_user_will_delete_all_messages": "När du tar bort en användare tas alla meddelanden, rum och team för användaren också bort. Åtgärden kan inte ångras.",
+ "Are_you_sure_you_want_to_leave_the_room": "Vill du lämna rummet {{room}}?",
+ "Audio": "Ljud",
+ "Authenticating": "Autentiserar",
+ "Automatic": "Automatiskt",
+ "Auto_Translate": "Automatisk översättning",
+ "Avatar_changed_successfully": "Avataren har ändrats",
+ "Avatar_Url": "URL till avatar",
+ "Away": "Borta",
+ "Back": "Tillbaka",
+ "Black": "Svart",
+ "Block_user": "Blockera användare",
+ "Browser": "Webbläsare",
+ "Busy": "Upptagen",
+ "By_proceeding_you_are_agreeing": "Genom att fortsätta anses du ha godkänt vår",
+ "Cancel_editing": "Avbryt redigering",
+ "Cancel_recording": "Avbryt inspelning",
+ "Cancel": "Avbryt",
+ "changing_avatar": "byter avatar",
+ "creating_channel": "skapar kanal",
+ "creating_invite": "skapar inbjudan",
+ "Channel_Name": "Kanalnamn",
+ "Channels": "Kanaler",
+ "Chats": "Chattar",
+ "Chat_started": "Chatten har startats",
+ "Call_already_ended": "Samtalet är redan avslutat.",
+ "Clear_cookies_alert": "Vill du rensa alla cookies?",
+ "Clear_cookies_desc": "Med den här åtgärden tas alla inloggningscookies bort så att du kan logga in på andra konton.",
+ "Clear_cookies_yes": "Ja, rensa cookies",
+ "Clear_cookies_no": "Nej, behåll cookies",
+ "Click_to_join": "Klicka för att ansluta.",
+ "Close": "Stäng",
+ "Close_emoji_selector": "Stäng emojiväljaren",
+ "Closing_chat": "Stänger chatten",
+ "Change_language_loading": "Ändrar språk.",
+ "Chat_closed_by_agent": "Chatten stängdes av agenten",
+ "Choose": "Välj",
+ "Choose_from_library": "Välj från biblioteket",
+ "Choose_file": "Välj fil",
+ "Choose_where_you_want_links_be_opened": "Välj var du vill att länkar ska öppnas",
+ "Code": "Kod",
+ "Code_or_password_invalid": "Koden eller lösenordet är ogiltigt",
+ "Conversation_closed": "Konversationen har stängts",
+ "Collaborative": "Samarbete",
+ "Confirm": "Bekräfta",
+ "Connect": "Anslut",
+ "Connected": "Ansluten",
+ "connecting_server": "ansluter till servern",
+ "Connecting": "Ansluter...",
+ "Contact_us": "Kontakta oss",
+ "Contact_your_server_admin": "Kontakta serveradministratören.",
+ "Continue_with": "Fortsätt med",
+ "Copied_to_clipboard": "Kopierades till urklipp.",
+ "Copy": "Kopiera",
+ "Conversation": "Konversation",
+ "Certificate_password": "Lösenord för certifikat",
+ "Clear_cache": "Rensa den lokala servercachen",
+ "Clear_cache_loading": "Rensar cachen.",
+ "Whats_the_password_for_your_certificate": "Ange lösenordet för certifikatet.",
+ "Create_account": "Skapa ett konto",
+ "Create_Channel": "Skapa kanal",
+ "Create_Direct_Messages": "Skapa direktmeddelande",
+ "Create_Discussion": "Skapa diskussion",
+ "Created_snippet": "skapade ett utdrag",
+ "Create_a_new_workspace": "Skapa en ny arbetsyta",
+ "Create": "Skapa",
+ "Custom_Status": "Anpassad status",
+ "Dark": "Mörk",
+ "Dark_level": "Mörk nivå",
+ "Default": "Standard",
+ "Default_browser": "Standardwebbläsare",
+ "Delete_Room_Warning": "Om du tar bort ett rum tas alla meddelanden bort som publicerats i rummet. Åtgärden kan inte ångras.",
+ "Department": "Avdelning",
+ "delete": "ta bort",
+ "Delete": "Ta bort",
+ "DELETE": "TA BORT",
+ "Delete_Account": "Ta bort konto",
+ "Delete_Account_confirm": "Ja, ta bort",
+ "move": "flytta",
+ "deleting_room": "tar bort rum",
+ "description": "beskrivning",
+ "Description": "Beskrivning",
+ "Desktop_Options": "Skrivbordsalternativ",
+ "Desktop_Notifications": "Skrivbordsaviseringar",
+ "Desktop_Alert_info": "De här aviseringarna levereras via skrivbordet",
+ "Directory": "Katalog",
+ "Direct_Messages": "Direktmeddelanden",
+ "Disable_notifications": "Inaktivera aviseringar",
+ "Discussions": "Diskussioner",
+ "Discussion_Desc": "Bidra till att skapa en översikt över det som händer. När du skapar en diskussion skapas en underkanal till den du valt och båda kanalerna är kopplade.",
+ "Discussion_name": "Diskussionsnamn",
+ "Done": "Klart",
+ "Dont_Have_An_Account": "Har du inget konto?",
+ "Do_you_have_an_account": "Har du ett konto?",
+ "Do_you_have_a_certificate": "Har du ett certifikat?",
+ "Do_you_really_want_to_key_this_room_question_mark": "Vill du verkligen {{key}} rummet?",
+ "E2E_Encryption": "E2E-kryptering",
+ "E2E_How_It_Works_info1": "Nu kan du skapa krypterade privata grupper och direktmeddelanden. Du kan också kryptera befintliga privata grupper och direktmeddelanden.",
+ "E2E_How_It_Works_info2": "Det här görs med *end-to-end-kryptering*, så nyckeln för att koda/avkoda meddelanden sparas inte på servern. Därför *måste du lagra lösenordet på en säker plats* där du kan åtkomma det senare om du behöver.",
+ "E2E_How_It_Works_info3": "Om du fortsätter genereras ett E2E-lösenord automatiskt",
+ "E2E_How_It_Works_info4": "Du kan när som helst ställa in ett nytt lösenord för krypteringsnyckeln i en webbläsare där du har angett det befintliga E2E-lösenordet.",
+ "edit": "redigera",
+ "edited": "redigerade",
+ "Edit": "Redigera",
+ "Edit_Status": "Redigera status",
+ "Edit_Invite": "Redigera inbjudan",
+ "End_to_end_encrypted_room": "End-to-end-krypterat rum",
+ "end_to_end_encryption": "End-to-end-kryptering",
+ "Email_Notification_Mode_All": "Varje omnämnande/direktmeddelande",
+ "Email_Notification_Mode_Disabled": "Inaktiverat",
+ "Email_or_password_field_is_empty": "Fältet för e-post eller lösenord är tomt",
+ "Email": "E-post",
+ "email": "e-post",
+ "Empty_title": "Tom rubrik",
+ "Enable_Auto_Translate": "Aktivera automatisk översättning",
+ "Enable_notifications": "Aktivera aviseringar",
+ "Encrypted": "Krypterat",
+ "Encrypted_message": "Krypterat meddelande",
+ "Enter_Your_E2E_Password": "Ange ditt E2E-lösenord",
+ "Enter_Your_Encryption_Password_desc1": "Det här gör att du kan komma åt dina krypterade privata grupper och direktmeddelanden.",
+ "Enter_Your_Encryption_Password_desc2": "Du måste ange lösenordet för att koda/avkoda meddelanden på varje plats där du använder chatten.",
+ "Encryption_error_title": "Ditt krypteringslösenord verkar vara felaktigt",
+ "Encryption_error_desc": "Det gick inte att avkoda krypteringsnyckeln som skulle importeras.",
+ "Everyone_can_access_this_channel": "Kanalen är öppen för alla",
+ "Everyone_can_access_this_team": "Teamet är öppet för alla",
+ "Error_uploading": "Fel vid uppladdning",
+ "Expiration_Days": "Förfallotid (dagar)",
+ "Favorites": "Favoriter",
+ "Files": "Filer",
+ "File_description": "Filbeskrivning",
+ "File_name": "Filnamn",
+ "Finish_recording": "Avsluta inspelningen",
+ "Following_thread": "Följer tråd",
+ "For_your_security_you_must_enter_your_current_password_to_continue": "För din egen säkerhet måste du ange ditt nuvarande lösenord för att fortsätta",
+ "Forgot_password_If_this_email_is_registered": "Om e-postadressen är registrerad skickar vi anvisningar för hur du återställer lösenordet. Om du inte får ett e-postmeddelande inom kort får du komma tillbaka och försöka igen.",
+ "Forgot_password": "Glömt lösenordet?",
+ "Forgot_Password": "Glömt lösenordet",
+ "Forward": "Vidarebefordra",
+ "Forward_Chat": "Vidarebefordra chatt",
+ "Forward_to_department": "Vidarebefordra till avdelning",
+ "Forward_to_user": "Vidarebefordra till användare",
+ "Full_table": "Klicka för att visa hela tabellen",
+ "Generate_New_Link": "Generera ny länk",
+ "Get_link": "Hämta länk",
+ "User_joined_the_channel": "anslöt till kanalen",
+ "User_joined_the_conversation": "anslöt till samtalet",
+ "User_joined_the_team": "gick med i teamet",
+ "User_left_this_channel": "lämnade kanalen",
+ "Has_left_the_team": "har lämnat kanalen",
+ "Hide_System_Messages": "Dölj systemmeddelanden",
+ "Hide_type_messages": "Dölj meddelanden av typen {{type}}",
+ "How_It_Works": "Så fungerar det",
+ "Message_HideType_uj": "Användare ansluter",
+ "Message_HideType_ul": "Användare lämnar",
+ "Message_HideType_ru": "Användare borttagen",
+ "Message_HideType_au": "Användare tillagd",
+ "Message_HideType_mute_unmute": "Användaren har tystats/ljudet har slagits på för användaren",
+ "Message_HideType_r": "Rummets namn har ändrats",
+ "Message_HideType_ut": "Användare har anslutit till samtalet",
+ "Message_HideType_wm": "Välkommen",
+ "Message_HideType_rm": "Meddelande borttaget",
+ "Message_HideType_subscription_role_added": "Fick rollen",
+ "Message_HideType_subscription_role_removed": "Rollen är inte definierad längre",
+ "Message_HideType_room_archived": "Rum arkiverat",
+ "Message_HideType_room_unarchived": "Rummet har avarkiverats",
+ "I_Saved_My_E2E_Password": "Jag har sparat mitt E2E-lösenord",
+ "IP": "IP",
+ "In_app": "I appen",
+ "In_App_And_Desktop": "I appen och på skrivbordet",
+ "In_App_and_Desktop_Alert_info": "En banderoll visas högst upp på skärmen och en avisering visas på skrivbordet när appen är öppen",
+ "Invisible": "Dold",
+ "Invite": "Bjud in",
+ "is_a_valid_RocketChat_instance": "är en giltig Rocket.Chat-instans",
+ "is_not_a_valid_RocketChat_instance": "är inte en giltig Rocket.Chat-instans",
+ "is_typing": "skriver",
+ "Invalid_or_expired_invite_token": "Ogiltig eller utgången inbjudningstoken",
+ "Invalid_server_version": "Den server du försöker ansluta till använder en version som appen inte har stöd för längre: {{currentVersion}}.\n\nDu måste ha version {{minVersion}}",
+ "Invite_Link": "Inbjudningslänk",
+ "Invite_users": "Bjud in användare",
+ "Join": "Gå med",
+ "Join_Code": "Anslutningskod",
+ "Insert_Join_Code": "Ange anslutningskoden",
+ "Join_our_open_workspace": "Anslut till vår öppna arbetsyta",
+ "Join_your_workspace": "Anslut till vår arbetsyta",
+ "Just_invited_people_can_access_this_channel": "Endast inbjudna har åtkomst till den här kanalen",
+ "Just_invited_people_can_access_this_team": "Endast inbjudna har åtkomst till det här teamet",
+ "Language": "Språk",
+ "last_message": "senaste meddelandet",
+ "Leave_channel": "Lämna kanal",
+ "leaving_room": "lämnar rummet",
+ "Leave": "Lämna",
+ "leave": "lämna",
+ "Legal": "Juridisk information",
+ "Light": "Ljus",
+ "License": "Licens",
+ "Livechat": "Livechatt",
+ "Livechat_edit": "Livechattredigering",
+ "Livechat_transfer_return_to_the_queue": "återförde chatten till kön",
+ "Login": "Logga in",
+ "Login_error": "Dina inloggningsuppgifter avvisades. Försök igen.",
+ "Login_with": "Logga in med",
+ "Logging_out": "Loggar ut.",
+ "Logout": "Logga ut",
+ "Max_number_of_uses": "Högsta antal användningar",
+ "Max_number_of_users_allowed_is_number": "Det högsta tillåtna antalet användare är {{maxUsers}}",
+ "members": "medlemmar",
+ "Members": "Medlemmar",
+ "Mentioned_Messages": "Omnämnda meddelanden",
+ "mentioned": "omnämnda",
+ "Mentions": "Omnämnanden",
+ "Message_accessibility": "Meddelande från {{user}} kl. {{time}}: {{message}}",
+ "Message_actions": "Åtgärder för meddelanden",
+ "Message_pinned": "Meddelandet har fästs",
+ "Message_removed": "meddelande borttaget",
+ "Message_starred": "Meddelandet har stjärnmarkerats",
+ "Message_unstarred": "Stjärnmarkering borttagen för meddelande",
+ "message": "meddelande",
+ "messages": "meddelanden",
+ "Message": "Meddelande",
+ "Messages": "Meddelanden",
+ "Message_Reported": "Meddelandet har anmälts",
+ "Microphone_Permission_Message": "Om du ska kunna skicka ljudmeddelanden behöver Rocket.Chat åtkomst till din mikrofon.",
+ "Microphone_Permission": "Mikrofonbehörighet",
+ "Mute": "Tysta",
+ "muted": "tystade",
+ "My_servers": "Mina servrar",
+ "N_people_reacted": "{{n}} personer reagerade",
+ "N_users": "{{n}} användare",
+ "N_channels": "{{n}} kanaler",
+ "Name": "Namn",
+ "Never": "Aldrig",
+ "New_chat_transfer": "Ny chattöverföring: {{agent}} återförde chatten till kön",
+ "New_Message": "Nytt meddelande",
+ "New_Password": "Nytt lösenord",
+ "New_Server": "Ny server",
+ "Next": "Nästa",
+ "No_files": "Inga filer",
+ "No_limit": "Ingen gräns",
+ "No_mentioned_messages": "Inga nämnda meddelanden",
+ "No_pinned_messages": "Inga fästa meddelanden",
+ "No_results_found": "Inga resultat hittades",
+ "No_members_found": "Inga medlemmar hittades",
+ "No_starred_messages": "Inga stjärnmarkerade meddelanden",
+ "No_thread_messages": "Inga trådmeddelanden",
+ "No_label_provided": "Ingen {{label}} har angetts.",
+ "No_Message": "Inga meddelanden",
+ "No_messages_yet": "Inga meddelanden ännu",
+ "No_Reactions": "Inga reaktioner",
+ "No_Read_Receipts": "Inga läskvitton",
+ "Not_logged": "Inte loggat",
+ "Not_RC_Server": "Det här är inte en Rocket.Chat-server.\n{{contact}}",
+ "Nothing": "Ingenting",
+ "Nothing_to_save": "Ingenting att spara.",
+ "Notify_active_in_this_room": "Meddela aktiva användare i rummet",
+ "Notify_all_in_this_room": "Meddela alla i rummet",
+ "Notifications": "Meddelanden",
+ "Notification_Duration": "Tidslängd för meddelande",
+ "Notification_Preferences": "Inställningar för meddelanden",
+ "No_available_agents_to_transfer": "Inga agenter att överföra till",
+ "Offline": "Offline",
+ "Oops": "Ojdå!",
+ "Omnichannel": "Omnichannel",
+ "Omnichannel_enable_alert": "Du är inte tillgänglig i Omnichannel. Vill du vara tillgänglig?",
+ "Onboarding_description": "En arbetsyta är en plats där ditt team eller din organisation kan samarbeta. Be arbetsyteadministratören om en adress att ansluta till eller skapa en åt teamet.",
+ "Onboarding_join_workspace": "Anslut till en arbetsyta",
+ "Onboarding_subtitle": "Mer än teamsamarbete",
+ "Onboarding_title": "Välkommen till Rocket.Chat",
+ "Onboarding_join_open_description": "Anslut till vår öppna arbetsyta där du kan chatta med Rocket.Chats team och community.",
+ "Onboarding_agree_terms": "Genom att fortsätta anses du ha godkänt Rocket.Chat",
+ "Onboarding_less_options": "Färre alternativ",
+ "Onboarding_more_options": "Fler alternativ",
+ "Online": "Online",
+ "Only_authorized_users_can_write_new_messages": "Endast behöriga användare kan skriva nya meddelanden",
+ "Open_emoji_selector": "Öppna emojiväljaren",
+ "Open_Source_Communication": "Kommunikation via öppen källkod",
+ "Open_your_authentication_app_and_enter_the_code": "Öppna autentiseringsappen och ange koden.",
+ "OR": "ELLER",
+ "OS": "Operativsystem",
+ "Overwrites_the_server_configuration_and_use_room_config": "Skriver över serverkonfigurationen och använder rumskonfigurationen",
+ "Password": "Lösenord",
+ "Parent_channel_or_group": "Överordnad kanal eller grupp",
+ "Permalink_copied_to_clipboard": "Permalänken har kopierats till urklipp.",
+ "Phone": "Telefonnummer",
+ "Pin": "Fäst",
+ "Pinned_Messages": "Fästa meddelanden",
+ "pinned": "fäst",
+ "Pinned": "Fästa",
+ "Please_add_a_comment": "Lägg till en kommentar",
+ "Please_enter_your_password": "Ange lösenordet",
+ "Please_wait": "Vänta.",
+ "Preferences": "Inställningar",
+ "Preferences_saved": "Inställningarna har sparats.",
+ "Privacy_Policy": "Integritetspolicy",
+ "Private": "Privat",
+ "Processing": "Bearbetar...",
+ "Profile_saved_successfully": "Profilen har sparats.",
+ "Profile": "Profil",
+ "Public_Channel": "Offentlig kanal",
+ "Public": "Offentlig",
+ "Push_Notifications": "Pushmeddelanden",
+ "Push_Notifications_Alert_Info": "De här meddelandena levereras till dig när appen är stängd",
+ "Quote": "Citat",
+ "Reactions_are_disabled": "Reaktioner är inaktiverade",
+ "Reactions_are_enabled": "Reaktioner är aktiverade",
+ "Reactions": "Reaktioner",
+ "Read_External_Permission_Message": "Rocket.Chat behöver åtkomst till foton, media och filer på enheten",
+ "Read_External_Permission": "Behörighet att läsa media",
+ "Read_Only": "Skrivskyddat",
+ "Read_Receipt": "Läskvitto",
+ "Receive_Group_Mentions": "Ta emot gruppomnämnanden",
+ "Receive_Group_Mentions_Info": "Ta emot omnämnanden av typen @all och @here",
+ "Register": "Registrera",
+ "Repeat_Password": "Upprepa lösenordet",
+ "Replied_on": "Svarade:",
+ "replies": "svar",
+ "reply": "svar",
+ "Reply": "Svara",
+ "Report": "Anmäl",
+ "Receive_Notification": "Ta emot meddelanden",
+ "Receive_notifications_from": "Ta emot meddelanden från {{name}}",
+ "Resend": "Skicka igen",
+ "Reset_password": "Återställ lösenordet",
+ "resetting_password": "återställer lösenordet",
+ "RESET": "ÅTERSTÄLL",
+ "Return_to_waiting_line": "Återgå till kön",
+ "Review_app_title": "Tycker du om appen?",
+ "Review_app_desc": "Ge oss fem stjärnor på {{store}}",
+ "Review_app_yes": "Visst!",
+ "Review_app_no": "Nej",
+ "Review_app_later": "Kanske senare",
+ "Review_app_unable_store": "Det går inte att öppna {{store}}",
+ "Review_this_app": "Betygsätt appen",
+ "Remove": "Ta bort",
+ "remove": "ta bort",
+ "Roles": "Roller",
+ "Room_actions": "Rumsåtgärder",
+ "Room_changed_announcement": "Rummets presentation har ändrats till: {{announcement}} av {{userBy}}",
+ "room_avatar_changed": "ändrade rummets avatar",
+ "Room_changed_description": "Rummets beskrivning har ändrats till: {{description}} av {{userBy}}",
+ "changed_room_description": "ändrade rummets beskrivning till: {{description}}",
+ "changed_room_announcement": "ändrade rummets presentation till: {{announcement}}",
+ "room_changed_type": "ändrade rummet till {{type}}",
+ "room_changed_topic_to": "ändrade rummets ämne till: {{topic}}",
+ "Room_Files": "Filer för rum",
+ "Room_Info_Edit": "Redigera information om rum",
+ "Room_Info": "Information om rum",
+ "Room_Members": "Rummets medlemmar",
+ "Room_name_changed_to": "ändrade rummets namn till: {{name}}",
+ "room_disallowed_reactions": "otillåtna reaktioner",
+ "room_allowed_reactions": "tillåtna reaktioner",
+ "room_removed_read_only_permission": "tog bort behörighet för skrivskyddad åtkomst",
+ "room_set_read_only_permission": "skrivskydda rummet",
+ "SAVE": "SPARA",
+ "Save_Changes": "Spara ändringar",
+ "Save": "Spara",
+ "Saved": "Sparade",
+ "saving_preferences": "sparar inställningarna",
+ "saving_profile": "sparar profilen",
+ "saving_settings": "sparar inställningarna",
+ "saved_to_gallery": "Sparat i galleriet",
+ "Save_Your_E2E_Password": "Spara ditt E2E-lösenord",
+ "Save_Your_Encryption_Password": "Spara ditt krypteringslösenord",
+ "Save_Your_Encryption_Password_warning": "Lösenordet lagras inte, så se till att spara det någon annanstans.",
+ "Save_Your_Encryption_Password_info": "Obs! Om du förlorar lösenordet går det inte att återställa det och du förlorar åtkomsten till alla dina meddelanden.",
+ "Search_Messages": "Sök bland meddelanden",
+ "Search": "Sök",
+ "Search_by": "Sök efter",
+ "Search_emoji": "Sök efter emoji",
+ "Search_global_users": "Sök efter globala användare",
+ "Search_global_users_description": "Om du aktiverar alternativet kan du söka efter användare från andra företag eller servrar.",
+ "Seconds": "{{second}} sekunder",
+ "Security_and_privacy": "Säkerhet och integritet",
+ "Select_Avatar": "Välj en avatar",
+ "Select_Server": "Välj server",
+ "Select_Users": "Välj användare",
+ "Select_a_Channel": "Välj en kanal",
+ "Select_a_Department": "Välj en avdelning",
+ "Select_an_option": "Välj ett alternativ",
+ "Select_a_User": "Välj en användare",
+ "Send": "Skicka",
+ "Send_audio_message": "Skicka ljudmeddelande",
+ "Send_crash_report": "Skicka kraschrapport",
+ "Send_message": "Skicka meddelande",
+ "Send_me_the_code_again": "Skicka mig koden igen",
+ "Send_to": "Skicka till...",
+ "Sending_to": "Skickar till",
+ "Sent_an_attachment": "Skickade en bilaga",
+ "Server": "Server",
+ "Servers": "Servrar",
+ "Server_version": "Serverversion: {{version}}",
+ "Set_username_subtitle": "Användarnamnet används till att låta andra nämna dig i meddelanden",
+ "Set_custom_status": "Ange anpassad status",
+ "Set_status": "Ange status",
+ "Status_saved_successfully": "Statusen har sparats.",
+ "Settings": "Inställningar",
+ "Settings_succesfully_changed": "Inställningarna har ändrats.",
+ "Share": "Dela",
+ "Share_Link": "Dela länk",
+ "Share_this_app": "Dela den här appen",
+ "Show_more": "Visa mer.",
+ "Sign_in_your_server": "Logga in på din server",
+ "Sign_Up": "Registrera dig",
+ "Some_field_is_invalid_or_empty": "Vissa fält är ogiltiga eller tomma",
+ "Sound": "Ljud",
+ "Star_room": "Stjärnmarkera rum",
+ "Star": "Stjärna",
+ "Starred_Messages": "Stjärnmarkerade meddelanden",
+ "starred": "stjärnmarkerat",
+ "Starred": "Stjärnmarkerat",
+ "Start_of_conversation": "Början på konversation",
+ "Start_a_Discussion": "Starta en diskussion",
+ "Started_discussion": "Startade en diskussion:",
+ "Started_call": "Samtalet startades av {{userBy}}",
+ "Submit": "Skicka",
+ "Table": "Tabell",
+ "Tags": "Taggar",
+ "Take_a_photo": "Ta ett foto",
+ "Take_a_video": "Spela in en video",
+ "Take_it": "Spela in!",
+ "tap_to_change_status": "tryck för att ändra status",
+ "Tap_to_view_servers_list": "Tryck för att visa serverlistan",
+ "Terms_of_Service": "Användarvillkor",
+ "Theme": "Tema",
+ "The_user_wont_be_able_to_type_in_roomName": "Användaren kan inte ange {{roomName}}",
+ "The_user_will_be_able_to_type_in_roomName": "Användaren kan ange {{roomName}}",
+ "There_was_an_error_while_action": "Ett fel inträffade vid {{action}}.",
+ "This_room_is_blocked": "Rummet är blockerat",
+ "This_room_is_read_only": "Rummet är skrivskyddat",
+ "Thread": "Tråd",
+ "Threads": "Trådar",
+ "Timezone": "Tidszon",
+ "To": "Till",
+ "topic": "ämne",
+ "Topic": "Ämne",
+ "Translate": "Översätt",
+ "Try_again": "Försök igen",
+ "Two_Factor_Authentication": "Tvåfaktorsautentisering",
+ "Type_the_channel_name_here": "Ange kanalens namn här",
+ "unarchive": "avarkivera",
+ "UNARCHIVE": "AVARKIVERA",
+ "Unblock_user": "Avblockera användare",
+ "Unfollowed_thread": "Sluta följa tråd",
+ "Unmute": "Slå på ljudet",
+ "unmuted": "slog på ljudet",
+ "Unpin": "Lossa",
+ "unread_messages": "oläst",
+ "Unread": "Oläst",
+ "Unread_on_top": "Olästa överst",
+ "Unstar": "Ta bort stjärnmarkering",
+ "Unsupported_system_message": "Systemmeddelande som inte stöds",
+ "Updating": "Uppdaterar...",
+ "Uploading": "Laddar upp",
+ "Upload_file_question_mark": "Ladda upp fil?",
+ "User": "Användare",
+ "Users": "Användare",
+ "User_added_to": "lade till {{userAdded}}",
+ "User_Info": "Användarinfo",
+ "User_has_been_key": "Användaren har {{key}}",
+ "User_is_no_longer_role_by_": "{{user}} har inte längre rollen {{role}} per {{userBy}}",
+ "User_has_been_muted": "tystade {{userMuted}}",
+ "User_has_been_removed": "tog bort {{userRemoved}}",
+ "User_sent_an_attachment": "{{user}} skickade en bilaga",
+ "User_has_been_unmuted": "slog på ljudet för {{userUnmuted}}",
+ "Defined_user_as_role": "angav {{user}} som {{role}}",
+ "Removed_user_as_role": "tog bort {{user}} som {{role}}",
+ "Username_is_empty": "Användarnamnet har inte angetts",
+ "Username": "Användarnamn",
+ "Username_or_email": "Användarnamn eller e-postadress",
+ "Uses_server_configuration": "Använder serverkonfiguration",
+ "Validating": "Validerar",
+ "Registration_Succeeded": "Registreringen är klar.",
+ "Verify": "Verifiera",
+ "Verify_email_title": "Registreringen är klar.",
+ "Verify_email_desc": "Vi har skickat ett e-postmeddelande för att bekräfta din registrering. Om du inte får e-postmeddelandet försöker du igen.",
+ "Verify_your_email_for_the_code_we_sent": "Titta efter koden i din e-post",
+ "Video_call": "Videosamtal",
+ "View_Original": "Visa original",
+ "Voice_call": "Röstsamtal",
+ "Waiting_for_network": "Väntar på nätverket...",
+ "Websocket_disabled": "Websocket är inaktiverad för servern.\n{{contact}}",
+ "Welcome": "Välkommen",
+ "What_are_you_doing_right_now": "Vad gör du just nu?",
+ "Whats_your_2fa": "Vilken är din kod för tvåfaktorsautentisering?",
+ "Without_Servers": "Utan servrar",
+ "Workspaces": "Arbetsytor",
+ "Would_you_like_to_return_the_inquiry": "Vill du skicka tillbaka förfrågan?",
+ "Write_External_Permission_Message": "Rocket.Chat behöver åtkomst till ditt galleri så att du kan spara bilder.",
+ "Write_External_Permission": "Galleribehörighet",
+ "Yes": "Ja",
+ "Yes_action_it": "Ja, {{action}}!",
+ "Yesterday": "Igår",
+ "You_are_in_preview_mode": "Du är i förhandsgranskningsläge",
+ "You_are_offline": "Du är offline",
+ "You_can_search_using_RegExp_eg": "Du kan använda reguljära uttryck, till exempel /^text$/i",
+ "You_colon": "Du:",
+ "you_were_mentioned": "du nämndes",
+ "You_were_removed_from_channel": "Du togs bort från {{channel}}",
+ "you": "du",
+ "You": "Du",
+ "Logged_out_by_server": "Du har loggats ut av servern. Logga in på nytt.",
+ "Token_expired": "Din session har upphört. Logga in igen.",
+ "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Du behöver åtkomst till åtminstone en Rocket.Chat-server för att kunna dela.",
+ "You_need_to_verifiy_your_email_address_to_get_notications": "Du måste bekräfta din e-postadress för att få meddelanden",
+ "Your_certificate": "Ditt certifikat",
+ "Your_invite_link_will_expire_after__usesLeft__uses": "Inbjudningslänken upphör att gälla efter {{usesLeft}} användningar.",
+ "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Inbjudningslänken upphör att gälla den {{date}} eller efter {{usesLeft}} användningar.",
+ "Your_invite_link_will_expire_on__date__": "Inbjudningslänken upphör att gälla den {{date}}.",
+ "Your_invite_link_will_never_expire": "Inbjudningslänken upphör aldrig att gälla.",
+ "Your_workspace": "Din arbetsyta",
+ "Your_password_is": "Ditt lösenord är",
+ "Version_no": "Version: {{version}}",
+ "You_will_not_be_able_to_recover_this_message": "Du kan inte återställa meddelandet senare.",
+ "You_will_unset_a_certificate_for_this_server": "Du tar bort ett certifikat för servern",
+ "Change_Language": "Ändra språk",
+ "Crash_report_disclaimer": "Vi spårar aldrig innehållet i chattar. Kraschrapporten och analyshändelserna innehåller bara information som vi behöver för att kunna identifiera och åtgärda fel.",
+ "Type_message": "Skriv meddelande",
+ "Room_search": "Sök efter rum",
+ "Room_selection": "Val av rum: 1 till 9",
+ "Next_room": "Nästa rum",
+ "Previous_room": "Föregående rum",
+ "New_room": "Nytt rum",
+ "Upload_room": "Ladda upp till rum",
+ "Search_messages": "Sök efter meddelanden",
+ "Scroll_messages": "Bläddra bland meddelanden",
+ "Reply_latest": "Svara på senaste",
+ "Reply_in_Thread": "Svara i tråden",
+ "Server_selection": "Val av server",
+ "Server_selection_numbers": "Val av server: 1 till 9",
+ "Add_server": "Lägg till server",
+ "New_line": "Ny rad",
+ "You_will_be_logged_out_of_this_application": "Du loggas ut från programmet",
+ "Clear": "Rensa",
+ "This_will_clear_all_your_offline_data": "Med den här åtgärden rensas alla dina offlinedata.",
+ "This_will_remove_all_data_from_this_server": "Med den här åtgärden tas alla data bort från servern.",
+ "Mark_unread": "Markera som oläst",
+ "Wait_activation_warning": "Innan du kan logga in måste ditt konto aktiveras manuellt av en administratör.",
+ "Screen_lock": "Skärmlås",
+ "Local_authentication_biometry_title": "Autentisering",
+ "Local_authentication_biometry_fallback": "Använd lösenkod",
+ "Local_authentication_unlock_option": "Lås upp med lösenkod",
+ "Local_authentication_change_passcode": "Ändra lösenkod",
+ "Local_authentication_info": "Obs! Om du glömmer bort lösenkoden måste du ta bort och sedan installera appen på nytt.",
+ "Local_authentication_facial_recognition": "ansiktsigenkänning",
+ "Local_authentication_fingerprint": "fingeravtryck",
+ "Local_authentication_unlock_with_label": "Lås upp med {{label}}",
+ "Local_authentication_auto_lock_60": "Efter 1 minut",
+ "Local_authentication_auto_lock_300": "Efter 5 minuter",
+ "Local_authentication_auto_lock_900": "Efter 15 minuter",
+ "Local_authentication_auto_lock_1800": "Efter 30 minuter",
+ "Local_authentication_auto_lock_3600": "Efter 1 timme",
+ "Passcode_enter_title": "Ange din lösenkod",
+ "Passcode_choose_title": "Välj en ny lösenkod",
+ "Passcode_choose_confirm_title": "Bekräfta den nya lösenkoden",
+ "Passcode_choose_error": "Lösenkoderna matchar inte. Försök igen.",
+ "Passcode_choose_force_set": "En lösenkod krävs av administratören",
+ "Passcode_app_locked_title": "Appen har låsts",
+ "Passcode_app_locked_subtitle": "Försök igen om {{timeLeft}} sekunder",
+ "After_seconds_set_by_admin": "Efter {{seconds}} sekunder (anges av administratören)",
+ "Dont_activate": "Aktivera inte nu",
+ "Queued_chats": "Köplacerade chattar",
+ "Logout_from_other_logged_in_locations": "Logga ut från andra platser där du är inloggad",
+ "You_will_be_logged_out_from_other_locations": "Du loggas ut från andra platser.",
+ "Logged_out_of_other_clients_successfully": "Du har loggats ut från andra klienter",
+ "Logout_failed": "Det gick inte att logga ut.",
+ "Log_analytics_events": "Logga analyshändelser",
+ "E2E_encryption_change_password_title": "Ändra krypteringslösenord",
+ "E2E_encryption_change_password_description": "Nu kan du skapa krypterade privata grupper och direktmeddelanden. Du kan också kryptera befintliga privata grupper och direktmeddelande. \nHär används end-to-end-kryptering, så nyckeln för att koda/avkoda dina meddelanden sparas inte på servern. Därför måste du spara ditt lösenord på en säker plats. Du behöver ange den på andra enheter som du vill använda end-to-end-kryptering på.",
+ "E2E_encryption_change_password_error": "Ett fel inträffade när lösenordet för E2E-nyckeln skulle ändras.",
+ "E2E_encryption_change_password_success": "Lösenordet för E2E-nyckeln har ändrats.",
+ "E2E_encryption_change_password_message": "Se till att spara det på en säker plats.",
+ "E2E_encryption_change_password_confirmation": "Ja, ändra",
+ "E2E_encryption_reset_title": "Återställ E2E-nyckel",
+ "E2E_encryption_reset_description": "Med det här alternativet tas din aktuella E2E-nyckel bort och du loggas ut. \nNär du loggar in igen genererar Rocket.Chat en ny nyckel åt dig och återställer din åtkomst till krypterade rum för vilka en eller flera aktiva medlemmar är online. \nPå grund av hur E2E-krypteringen fungerar kan Rocket.Chat inte återställa åtkomsten till krypterade rum som inte har medlemmar online.",
+ "E2E_encryption_reset_button": "Återställ E2E-nyckel",
+ "E2E_encryption_reset_error": "Fel vid återställning av E2E-nyckel.",
+ "E2E_encryption_reset_message": "Du loggas ut.",
+ "E2E_encryption_reset_confirmation": "Ja, återställ",
+ "Following": "Följer",
+ "Threads_displaying_all": "Visar alla",
+ "Threads_displaying_following": "Visar de du följer",
+ "Threads_displaying_unread": "Visar olästa",
+ "No_threads": "Det finns inga trådar",
+ "No_threads_following": "Du följer inte några trådar",
+ "No_threads_unread": "Det finns inga olästa trådar",
+ "Messagebox_Send_to_channel": "Skicka till kanal",
+ "Leader": "Ledare",
+ "Moderator": "Moderator",
+ "Owner": "Ägare",
+ "Remove_from_room": "Ta bort från rummet",
+ "Ignore": "Ignorera",
+ "Unignore": "Sluta ignorera",
+ "User_has_been_ignored": "Användaren ignoreras",
+ "User_has_been_unignored": "Användaren ignoreras inte längre",
+ "User_has_been_removed_from_s": "Användaren har tagits bort från {{s}}",
+ "User__username__is_now_a_leader_of__room_name_": "Användaren {{username}} är nu ledare för {{room_name}}",
+ "User__username__is_now_a_moderator_of__room_name_": "Användaren {{username}} är nu moderator för{{room_name}}",
+ "User__username__is_now_a_owner_of__room_name_": "Användaren {{username}} är nu ägare av {{room_name}}",
+ "User__username__removed_from__room_name__leaders": "Användaren {{username}} har tagits bort som en av ledarna för {{room_name}}",
+ "User__username__removed_from__room_name__moderators": "Användaren {{username}} har tagits bort som en av moderatorerna för {{room_name}}",
+ "User__username__removed_from__room_name__owners": "Användaren {{username}} har tagits bort som en av ägarna av {{room_name}}",
+ "The_user_will_be_removed_from_s": "Användaren tas bort från {{s}}",
+ "Yes_remove_user": "Ja. Ta bort användaren.",
+ "Direct_message": "Direktmeddelande",
+ "Message_Ignored": "Meddelandet har ignorerats. Tryck på det om du vill visa det.",
+ "Enter_workspace_URL": "Ange arbetsytans URL",
+ "Workspace_URL_Example": "Till exempel ditt-foretag.rocket.chat",
+ "Enabled_E2E_Encryption_for_this_room": "aktivera E2E-kryptering för det här rummet",
+ "Disabled_E2E_Encryption_for_this_room": "inaktivera E2E-kryptering för det här rummet",
+ "Teams": "Team",
+ "No_team_channels_found": "Inga kanaler hittades",
+ "Team_not_found": "Teamet hittades inte",
+ "Create_Team": "Skapa team",
+ "Team_Name": "Teamnamn",
+ "creating_team": "skapar team",
+ "team-name-already-exists": "Det finns redan ett team med det namnet",
+ "Add_Channel_to_Team": "Lägg till kanal för team",
+ "Left_The_Team_Successfully": "Lämnade teamet",
+ "Create_New": "Skapa ny",
+ "Add_Existing": "Lägg till befintlig",
+ "Add_Existing_Channel": "Lägg till befintlig kanal",
+ "Remove_from_Team": "Ta bort från team",
+ "Auto-join": "Anslut automatiskt",
+ "Remove_Team_Room_Warning": "Vill du ta bort kanalen från teamet? Kanalen flyttas tillbaka till arbetsytan",
+ "Confirmation": "Bekräftelse",
+ "invalid-room": "Ogiltigt rum",
+ "You_are_leaving_the_team": "Du lämnar teamet {{team}}",
+ "Leave_Team": "Lämna team",
+ "Select_Team": "Välj team",
+ "Select_Team_Channels": "Välj de teamkanaler du vill lämna.",
+ "Cannot_leave": "Kan inte lämna",
+ "Cannot_remove": "Kan inte ta bort",
+ "Cannot_delete": "Kan inte ta bort",
+ "Last_owner_team_room": "Du är den sista ägaren av kanalen. När du har lämnat teamet behålls kanalen i teamet, men du får hantera den utifrån.",
+ "last-owner-can-not-be-removed": "Den sista ägaren kan inte tas bort",
+ "Remove_User_Teams": "Välj de kanaler du vill ta bort användaren från.",
+ "Deleting_account": "Tar bort kontot",
+ "Delete_my_account": "Ta bort mitt konto",
+ "Delete_Team": "Ta bort team",
+ "Select_channels_to_delete": "Åtgärden kan inte ångras. När du tar bort ett team tas allt chattinnehåll och alla inställningar bort. \n\nVälj de kanaler du vill ta bort. De du bestämmer dig för att behålla är tillgängliga i arbetsytan. Tänk på att offentliga kanaler fortfarande är offentliga och synliga för alla.",
+ "You_are_deleting_the_team": "Du håller på att ta bort det här teamet.",
+ "Removing_user_from_this_team": "Du tar bort {{user}} från det här teamet",
+ "Remove_User_Team_Channels": "Välj de kanaler du vill ta bort användaren från.",
+ "Remove_Member": "Ta bort medlem",
+ "leaving_team": "lämnar team",
+ "removing_team": "tar bort från team",
+ "moving_channel_to_team": "flyttar kanal till team",
+ "deleting_team": "tar bort team",
+ "member-does-not-exist": "Medlemmen finns inte",
+ "Convert": "Konvertera",
+ "Convert_to_Team": "Konvertera till team",
+ "Convert_to_Team_Warning": "Du konverterar kanalen till ett team. Alla medlemmar behålls.",
+ "Move_to_Team": "Flytta till team",
+ "Move_Channel_Paragraph": "Om du flyttar in en kanal i ett team läggs kanalen till i teamets kontext. Alla kanalmedlemmar som inte är medlemmar i respektive team har dock fortfarande åtkomst till kanalen, men läggs inte till som teammedlemmar. \n\nAll kanalhantering görs fortfarande av kanalens ägare.\n\nTeammedlemmar och teamägare som inte är medlemmar i kanalen får inte ha åtkomst till kanalens innehåll. \n\nObs! Teamets ägare kan ta bort medlemmar från kanalen.",
+ "Move_to_Team_Warning": "Vill du fortfarande flytta kanalen till det valda teamet nu när du har läst informationen om den här funktionen?",
+ "Load_More": "Läs in fler",
+ "Load_Newer": "Läs in nyare",
+ "Load_Older": "Läs in äldre",
+ "room-name-already-exists": "Rummets namn används redan",
+ "error-team-creation": "Ett fel inträffade när teamet skulle skapas",
+ "unauthorized": "Obehörig",
+ "Left_The_Room_Successfully": "Lämnade rummet",
+ "Deleted_The_Team_Successfully": "Teamet har tagits bort",
+ "Deleted_The_Room_Successfully": "Rummet har tagits bort",
+ "Convert_to_Channel": "Konvertera till kanal",
+ "Converting_Team_To_Channel": "Konverterar team till kanal",
+ "Select_Team_Channels_To_Delete": "Välj den teamkanal du vill ta bort. De du inte väljer flyttas till arbetsytan. \n\nTänk på att offentliga kanaler är öppna och synliga för alla.",
+ "You_are_converting_the_team": "Du konverterar det här teamet till en kanal",
+ "Display": "Visa",
+ "Avatars": "Avatarer",
+ "Sort_by": "Sortera per",
+ "Group_by": "Gruppera per",
+ "Types": "Typer",
+ "Expanded": "Expanderade",
+ "Condensed": "Komprimerade",
+ "creating_discussion": "skapar diskussion",
+ "Canned_Responses": "Standardsvar",
+ "No_match_found": "Inga resultat hittades.",
+ "No_discussions": "Inga diskussioner",
+ "Check_canned_responses": "Kontrollera standardsvar.",
+ "Searching": "Söker",
+ "Use": "Använd",
+ "Shortcut": "Genväg",
+ "Content": "Innehåll",
+ "Sharing": "Delar",
+ "No_canned_responses": "Inga standardsvar",
+ "Send_email_confirmation": "Skicka e-postbekräftelse",
+ "sending_email_confirmation": "skickar e-postbekräftelse",
+ "Enable_Message_Parser": "Aktivera meddelandetolken",
+ "Unsupported_format": "Format som inte stöds",
+ "Downloaded_file": "Nedladdad fil",
+ "Error_Download_file": "Fel vid nedladdning av fil",
+ "added__roomName__to_this_team": "lade till #{{roomName}} till teamet",
+ "Added__username__to_this_team": "lade till @{{user_added}} i teamet",
+ "Converting_team_to_channel": "Konverterar team till kanal",
+ "Converted__roomName__to_a_team": "konverterade #{{roomName}} till ett team",
+ "Converted__roomName__to_a_channel": "konverterade #{{roomName}} till kanal",
+ "Deleted__roomName__": "tog bort #{{roomName}}",
+ "Message_HideType_added_user_to_team": "Dölj meddelandet \"Användare lades till i teamet\"",
+ "Message_HideType_removed_user_from_team": "Dölj meddelandet \"Användare togs bort från teamet\"",
+ "Message_HideType_ujt": "Dölj meddelandet \"Användare anslöt till teamet\"",
+ "Message_HideType_ult": "Dölj meddelandet \"Användare lämnade teamet\"",
+ "Message_HideType_user_added_room_to_team": "Dölj meddelandet \"Användaren lade till rummet till teamet\"",
+ "Message_HideType_user_converted_to_channel": "Dölj meddelandet \"Användaren konverterade teamet till en kanal\"",
+ "Message_HideType_user_converted_to_team": "Dölj meddelandet \"Användaren konverterade kanalen till ett team\"",
+ "Message_HideType_user_deleted_room_from_team": "Dölj meddelandet \"Användaren tog bort rummet från teamet\"",
+ "Message_HideType_user_removed_room_from_team": "Dölj meddelandet \"Användaren tog bort rummet från teamet\"",
+ "Removed__roomName__from_the_team": "tog bort #{{roomName}} från teamet",
+ "Removed__username__from_the_team": "tog bort @{{userRemoved}} från teamet",
+ "User_joined_team": "anslöt till teamet",
+ "User_left_team": "lämnade teamet",
+ "Place_chat_on_hold": "Parkera chatten",
+ "Would_like_to_place_on_hold": "Vill du parkera chatten?",
+ "Open_Livechats": "Pågående Omnichannel-chattar",
+ "On_hold_Livechats": "Parkerade Omnichannel-chattar",
+ "Chat_is_on_hold": "Den här chatten är parkerad på grund av inaktivitet",
+ "Resume": "Återuppta",
+ "Omnichannel_placed_chat_on_hold": "Parkerad chatt: {{comment}}",
+ "Omnichannel_on_hold_chat_resumed": "Återupptog parkerad chatt: {{comment}}",
+ "Omnichannel_queue": "Omnichannel-kö",
+ "Empty": "Tom",
+ "Mark_as_unread": "Markera som oläst",
+ "Mark_as_unread_Info": "Visa rummet som oläst när det finns olästa meddelanden",
+ "Show_badge_for_mentions": "Visa märke för omnämnanden",
+ "Show_badge_for_mentions_Info": "Visa endast märke för direkta omnämnanden",
+ "error-init-video-conf": "Ett fel inträffade när videosamtalet skulle startas",
+ "totp-invalid": "Koden eller lösenordet är ogiltigt",
+ "Close_Chat": "Stäng chatt",
+ "Select_tags": "Välj taggar",
+ "Skip": "Hoppa över",
+ "N_Selected_members": "{{n}} har valts",
+ "Broadcast": "Sändning",
+ "Broadcast_hint": "Det är bara behöriga användare som kan skriva nya meddelanden, men alla andra användare kan svara",
+ "Team_hint_private": "Endast inbjudna personer kan ansluta",
+ "Team_hint_public": "När alternativet är inaktiverat kan vem som helst ansluta till teamet",
+ "Team_hint_not_read_only": "Alla användare i teamet kan skriva meddelanden",
+ "Team_hint_encrypted": "End-to-end-krypterat team. Sökfunktionen fungerar inte med krypterade team och innehållet i meddelanden kanske inte visas.",
+ "Team_hint_encrypted_not_available": "Endast tillgängligt för privata team",
+ "Channel_hint_private": "Endast inbjudna användare kan öppna kanalen",
+ "Channel_hint_public": "Alla kan öppna kanalen",
+ "Channel_hint_encrypted": "End-to-end-krypterad kanal. Sökfunktionen fungerar inte med krypterade kanaler och innehållet i meddelanden kanske inte visas.",
+ "Channel_hint_not_read_only": "Alla användare i kanalen kan skriva meddelanden",
+ "Channel_hint_encrypted_not_available": "Inte tillgängligt för offentliga kanaler",
+ "Read_only_hint": "Endast behöriga användare kan skriva nya meddelanden",
+ "Discussion": "Diskussion",
+ "Channel": "Kanal",
+ "Team": "Team",
+ "Select_Members": "Välj medlemmar",
+ "Also_send_thread_message_to_channel_behavior": "Skicka även trådmeddelande till kanalen",
+ "Accounts_Default_User_Preferences_alsoSendThreadToChannel_Description": "Tillåt användare att välja alternativet Skicka även till kanal",
+ "Waiting_for_answer": "Väntar på svar",
+ "Call_ended": "Samtal avslutat",
+ "Call_was_not_answered": "Samtalet besvarades inte",
+ "Call_back": "Ring upp",
+ "Call_again": "Ring igen",
+ "Call_ongoing": "Samtal pågår",
+ "Joined": "Anslöt",
+ "Calling": "Ringer upp...",
+ "Start_a_call": "Starta ett samtal",
+ "Call": "Ring",
+ "Reply_in_direct_message": "Svara med direktmeddelande",
+ "room_archived": "arkiverade rum",
+ "room_unarchived": "avarkiverade rum"
+}
\ No newline at end of file
diff --git a/app/i18n/locales/tr.json b/app/i18n/locales/tr.json
index feab78458..2cca72e0c 100644
--- a/app/i18n/locales/tr.json
+++ b/app/i18n/locales/tr.json
@@ -302,6 +302,7 @@
"Message_accessibility": "{{user}} tarafından {{time}} itibarıyla ileti: {{message}}",
"Message_actions": "İleti işlemleri",
"Message_pinned": "İleti sabitlendi",
+ "Message_removed": "İleti kaldırıldı",
"Message_starred": "İletia yıldız eklendi",
"Message_unstarred": "İletiın yıldızı kaldırıldı",
"message": "ileti",
@@ -668,5 +669,6 @@
"Enter_workspace_URL": "Çalışma alanı URL'nizi girin",
"Workspace_URL_Example": "Örn. sirketiniz.rocket.chat",
"invalid-room": "Geçersiz oda",
+ "Open_Livechats": "Devam Eden Sohbetler",
"Broadcast_hint": "Yalnızca yetkili kullanıcılar yeni ileti yazabilir, ancak diğer kullanıcılar yanıt verebilir"
}
\ No newline at end of file
diff --git a/app/i18n/locales/zh-TW.json b/app/i18n/locales/zh-TW.json
index cb56e1b88..ba850b671 100644
--- a/app/i18n/locales/zh-TW.json
+++ b/app/i18n/locales/zh-TW.json
@@ -177,6 +177,8 @@
"delete": "刪除",
"Delete": "刪除",
"DELETE": "刪除",
+ "Delete_Account": "刪除帳號",
+ "Delete_Account_confirm": "是的,請刪除",
"deleting_room": "正在刪除聊天室",
"description": "描述",
"Description": "描述",
@@ -222,6 +224,7 @@
"Encryption_error_title": "您的加密密碼似乎有誤",
"Encryption_error_desc": "無法使用匯入的加密金鑰來解密",
"Everyone_can_access_this_channel": "所有人皆可存取此頻道",
+ "Everyone_can_access_this_team": "所有人皆可存取此團隊",
"Error_uploading": "錯誤上傳",
"Expiration_Days": "到期 (日)",
"Favorites": "我的最愛",
@@ -301,6 +304,7 @@
"Message_accessibility": "{{time}}來自{{user}}的訊息: {{message}}",
"Message_actions": "訊息操作",
"Message_pinned": "訊息被釘選",
+ "Message_removed": "訊息被刪除",
"Message_starred": "訊息被標註",
"Message_unstarred": "訊息被取消標註",
"message": "訊息",
@@ -650,5 +654,6 @@
"Messagebox_Send_to_channel": "發送至頻道",
"Confirmation": "確認",
"invalid-room": "無效的房間",
+ "Open_Livechats": "打開即時聊天",
"Broadcast_hint": "只有經過授權的使用者才能發送新訊息,但其他使用者可以回覆"
}
\ No newline at end of file
diff --git a/app/i18n/moment.ts b/app/i18n/moment.ts
index 3379429c7..88254b755 100644
--- a/app/i18n/moment.ts
+++ b/app/i18n/moment.ts
@@ -1,15 +1,20 @@
const localeKeys: { [key: string]: string } = {
en: 'en',
- ru: 'ru',
- 'pt-BR': 'pt-br',
- 'zh-CN': 'zh-cn',
- fr: 'fr',
+ ar: 'ar',
de: 'de',
- 'pt-PT': 'pt',
+ 'es-ES': 'es',
+ fi: 'fi',
+ fr: 'fr',
it: 'it',
ja: 'ja',
nl: 'nl',
- 'es-ES': 'es',
+ 'pt-BR': 'pt-br',
+ 'pt-PT': 'pt',
+ ru: 'ru',
+ 'sl-SI': 'sl',
+ sv: 'sv',
+ tr: 'tr',
+ 'zh-CN': 'zh-cn',
'zh-TW': 'zh-tw'
};
diff --git a/app/lib/constants/colors.ts b/app/lib/constants/colors.ts
index c27a990ce..5e4ed5509 100644
--- a/app/lib/constants/colors.ts
+++ b/app/lib/constants/colors.ts
@@ -70,6 +70,22 @@ export const colors = {
collapsibleQuoteBorder: '#CBCED1',
collapsibleChevron: '#6C727A',
cancelButton: '#E4E7EA',
+ conferenceCallBorder: '#F2F3F5',
+ conferenceCallBackground: '#F7F8FA',
+ conferenceCallOngoingPhoneBackground: '#C0F6E4',
+ conferenceCallIncomingPhoneBackground: '#D1EBFE',
+ conferenceCallEndedPhoneBackground: '#E4E7EA',
+ conferenceCallOngoingPhoneIcon: '#158D65',
+ conferenceCallIncomingPhoneIcon: '#095AD2',
+ conferenceCallEndedPhoneIcon: '#6C727A',
+ conferenceCallPlusUsersButton: '#E4E7EA',
+ conferenceCallPlusUsersText: '#6C727A',
+ conferenceCallCallBackButton: '#EEEFF1',
+ conferenceCallCallBackText: '#1F2329',
+ conferenceCallDisabledIcon: '#6C727A',
+ conferenceCallEnabledIcon: '#FFFFFF',
+ conferenceCallEnabledIconBackground: '#156FF5',
+ conferenceCallPhotoBackground: '#E4E7EA',
textInputSecondaryBackground: '#E4E7EA',
...mentions
},
@@ -123,6 +139,22 @@ export const colors = {
collapsibleQuoteBorder: '#CBCED1',
collapsibleChevron: '#6C727A',
cancelButton: '#E4E7EA',
+ conferenceCallBorder: '#1F2329',
+ conferenceCallBackground: '#1F2329',
+ conferenceCallOngoingPhoneBackground: '#106D4F',
+ conferenceCallIncomingPhoneBackground: '#D1EBFE',
+ conferenceCallEndedPhoneBackground: '#6C727A',
+ conferenceCallOngoingPhoneIcon: '#F7F8FA',
+ conferenceCallIncomingPhoneIcon: '#095AD2',
+ conferenceCallEndedPhoneIcon: '#F7F8FA',
+ conferenceCallPlusUsersButton: '#2F343D',
+ conferenceCallPlusUsersText: '#9EA2A8',
+ conferenceCallCallBackButton: '#E4E7EA',
+ conferenceCallCallBackText: '#FFFFFF',
+ conferenceCallDisabledIcon: '#6C727A',
+ conferenceCallEnabledIcon: '#FFFFFF',
+ conferenceCallEnabledIconBackground: '#156FF5',
+ conferenceCallPhotoBackground: '#E4E7EA',
textInputSecondaryBackground: '#030b1b', // backgroundColor
...mentions
},
@@ -176,6 +208,22 @@ export const colors = {
collapsibleQuoteBorder: '#CBCED1',
collapsibleChevron: '#6C727A',
cancelButton: '#E4E7EA',
+ conferenceCallBorder: '#1F2329',
+ conferenceCallBackground: '#1F2329',
+ conferenceCallOngoingPhoneBackground: '#106D4F',
+ conferenceCallIncomingPhoneBackground: '#D1EBFE',
+ conferenceCallEndedPhoneBackground: '#6C727A',
+ conferenceCallOngoingPhoneIcon: '#F7F8FA',
+ conferenceCallIncomingPhoneIcon: '#095AD2',
+ conferenceCallEndedPhoneIcon: '#F7F8FA',
+ conferenceCallPlusUsersButton: '#2F343D',
+ conferenceCallPlusUsersText: '#9EA2A8',
+ conferenceCallCallBackButton: '#E4E7EA',
+ conferenceCallCallBackText: '#FFFFFF',
+ conferenceCallDisabledIcon: '#6C727A',
+ conferenceCallEnabledIcon: '#FFFFFF',
+ conferenceCallEnabledIconBackground: '#156FF5',
+ conferenceCallPhotoBackground: '#E4E7EA',
textInputSecondaryBackground: '#000000', // backgroundColor
...mentions
}
diff --git a/app/lib/database/model/Subscription.js b/app/lib/database/model/Subscription.js
index 26fb764d7..bbc732119 100644
--- a/app/lib/database/model/Subscription.js
+++ b/app/lib/database/model/Subscription.js
@@ -123,6 +123,8 @@ export default class Subscription extends Model {
@field('e2e_key') E2EKey;
+ @field('e2e_suggested_key') E2ESuggestedKey;
+
@field('encrypted') encrypted;
@field('e2e_key_id') e2eKeyId;
diff --git a/app/lib/database/model/Upload.js b/app/lib/database/model/Upload.js
index d03a87729..a96e2c995 100644
--- a/app/lib/database/model/Upload.js
+++ b/app/lib/database/model/Upload.js
@@ -16,6 +16,8 @@ export default class Upload extends Model {
@field('name') name;
+ @field('tmid') tmid;
+
@field('description') description;
@field('size') size;
diff --git a/app/lib/database/model/migrations.js b/app/lib/database/model/migrations.js
index aacbd5903..678fb0e42 100644
--- a/app/lib/database/model/migrations.js
+++ b/app/lib/database/model/migrations.js
@@ -239,6 +239,24 @@ export default schemaMigrations({
columns: [{ name: 'hide_mention_status', type: 'boolean', isOptional: true }]
})
]
+ },
+ {
+ toVersion: 19,
+ steps: [
+ addColumns({
+ table: 'uploads',
+ columns: [{ name: 'tmid', type: 'string', isOptional: true }]
+ })
+ ]
+ },
+ {
+ toVersion: 20,
+ steps: [
+ addColumns({
+ table: 'subscriptions',
+ columns: [{ name: 'e2e_suggested_key', type: 'string', isOptional: true }]
+ })
+ ]
}
]
});
diff --git a/app/lib/database/schema/app.js b/app/lib/database/schema/app.js
index 6380084af..754c19afa 100644
--- a/app/lib/database/schema/app.js
+++ b/app/lib/database/schema/app.js
@@ -1,7 +1,7 @@
import { appSchema, tableSchema } from '@nozbe/watermelondb';
export default appSchema({
- version: 18,
+ version: 20,
tables: [
tableSchema({
name: 'subscriptions',
@@ -55,6 +55,7 @@ export default appSchema({
{ name: 'livechat_data', type: 'string', isOptional: true },
{ name: 'tags', type: 'string', isOptional: true },
{ name: 'e2e_key', type: 'string', isOptional: true },
+ { name: 'e2e_suggested_key', type: 'string', isOptional: true },
{ name: 'encrypted', type: 'boolean', isOptional: true },
{ name: 'e2e_key_id', type: 'string', isOptional: true },
{ name: 'avatar_etag', type: 'string', isOptional: true },
@@ -222,6 +223,7 @@ export default appSchema({
{ name: 'path', type: 'string', isOptional: true },
{ name: 'rid', type: 'string', isIndexed: true },
{ name: 'name', type: 'string', isOptional: true },
+ { name: 'tmid', type: 'string', isOptional: true },
{ name: 'description', type: 'string', isOptional: true },
{ name: 'size', type: 'number' },
{ name: 'type', type: 'string', isOptional: true },
diff --git a/app/lib/encryption/encryption.ts b/app/lib/encryption/encryption.ts
index 18e026e32..d24df42cd 100644
--- a/app/lib/encryption/encryption.ts
+++ b/app/lib/encryption/encryption.ts
@@ -34,6 +34,7 @@ class Encryption {
handshake: Function;
decrypt: Function;
encrypt: Function;
+ importRoomKey: Function;
};
};
@@ -97,6 +98,10 @@ class Encryption {
});
};
+ stopRoom = (rid: string) => {
+ delete this.roomInstances[rid];
+ };
+
// When a new participant join and request a new room encryption key
provideRoomKeyToUser = async (keyId: string, rid: string) => {
// If the client is not ready
@@ -220,6 +225,19 @@ class Encryption {
return roomE2E;
};
+ evaluateSuggestedKey = async (rid: string, E2ESuggestedKey: string) => {
+ try {
+ if (this.privateKey) {
+ const roomE2E = await this.getRoomInstance(rid);
+ await roomE2E.importRoomKey(E2ESuggestedKey, this.privateKey);
+ delete this.roomInstances[rid];
+ await Services.e2eAcceptSuggestedGroupKey(rid);
+ }
+ } catch (e) {
+ await Services.e2eRejectSuggestedGroupKey(rid);
+ }
+ };
+
// Logic to decrypt all pending messages/threads/threadMessages
// after initialize the encryption client
decryptPendingMessages = async (roomId?: string) => {
diff --git a/app/lib/encryption/room.ts b/app/lib/encryption/room.ts
index da1fe8b4c..acaf71194 100644
--- a/app/lib/encryption/room.ts
+++ b/app/lib/encryption/room.ts
@@ -74,7 +74,10 @@ export default class EncryptionRoom {
if (E2EKey && Encryption.privateKey) {
// We're establishing a new room encryption client
this.establishing = true;
- await this.importRoomKey(E2EKey, Encryption.privateKey);
+ const { keyID, roomKey, sessionKeyExportedString } = await this.importRoomKey(E2EKey, Encryption.privateKey);
+ this.keyID = keyID;
+ this.roomKey = roomKey;
+ this.sessionKeyExportedString = sessionKeyExportedString;
this.readyPromise.resolve();
return;
}
@@ -96,20 +99,33 @@ export default class EncryptionRoom {
};
// Import roomKey as an AES Decrypt key
- importRoomKey = async (E2EKey: string, privateKey: string) => {
- const roomE2EKey = E2EKey.slice(12);
+ importRoomKey = async (
+ E2EKey: string,
+ privateKey: string
+ ): Promise<{ sessionKeyExportedString: string | ByteBuffer; roomKey: ArrayBuffer; keyID: string }> => {
+ try {
+ const roomE2EKey = E2EKey.slice(12);
- const decryptedKey = await SimpleCrypto.RSA.decrypt(roomE2EKey, privateKey);
- this.sessionKeyExportedString = toString(decryptedKey);
+ const decryptedKey = await SimpleCrypto.RSA.decrypt(roomE2EKey, privateKey);
+ const sessionKeyExportedString = toString(decryptedKey);
- this.keyID = Base64.encode(this.sessionKeyExportedString as string).slice(0, 12);
+ const keyID = Base64.encode(sessionKeyExportedString as string).slice(0, 12);
- // Extract K from Web Crypto Secret Key
- // K is a base64URL encoded array of bytes
- // Web Crypto API uses this as a private key to decrypt/encrypt things
- // Reference: https://www.javadoc.io/doc/com.nimbusds/nimbus-jose-jwt/5.1/com/nimbusds/jose/jwk/OctetSequenceKey.html
- const { k } = EJSON.parse(this.sessionKeyExportedString as string);
- this.roomKey = b64ToBuffer(k);
+ // Extract K from Web Crypto Secret Key
+ // K is a base64URL encoded array of bytes
+ // Web Crypto API uses this as a private key to decrypt/encrypt things
+ // Reference: https://www.javadoc.io/doc/com.nimbusds/nimbus-jose-jwt/5.1/com/nimbusds/jose/jwk/OctetSequenceKey.html
+ const { k } = EJSON.parse(sessionKeyExportedString as string);
+ const roomKey = b64ToBuffer(k);
+
+ return {
+ sessionKeyExportedString,
+ roomKey,
+ keyID
+ };
+ } catch (e: any) {
+ throw new Error(e);
+ }
};
// Create a key to a room
diff --git a/app/lib/hooks/useSnaps.ts b/app/lib/hooks/useSnaps.ts
new file mode 100644
index 000000000..2386d11eb
--- /dev/null
+++ b/app/lib/hooks/useSnaps.ts
@@ -0,0 +1,14 @@
+import { useDimensions } from '@react-native-community/hooks';
+import { useSafeAreaInsets } from 'react-native-safe-area-context';
+
+// Not sure if it's worth adding this here in the context of the actionSheet
+/**
+ * Return the snaps based on the size you pass (aka: Size of action sheet)
+ * @param {Number[]} snaps Sizes you want to pass, pass only one if you want the action sheet to start at a specific size
+ */
+export const useSnaps = (snaps: number[]): string[] => {
+ const insets = useSafeAreaInsets();
+ const { screen } = useDimensions();
+ const percentage = insets.bottom + insets.top > 75 ? 110 : 100;
+ return snaps.map(snap => `${((percentage * snap) / (screen.height * screen.scale)).toFixed(2)}%`);
+};
diff --git a/app/lib/hooks/useVideoConf.ts b/app/lib/hooks/useVideoConf.ts
new file mode 100644
index 000000000..02aba7c7c
--- /dev/null
+++ b/app/lib/hooks/useVideoConf.ts
@@ -0,0 +1,27 @@
+import { useCallback } from 'react';
+
+import { TActionSheetOptionsItem, useActionSheet } from '../../containers/ActionSheet';
+import i18n from '../../i18n';
+import { videoConfJoin } from '../methods/videoConf';
+
+export const useVideoConf = (): { joinCall: (blockId: string) => void } => {
+ const { showActionSheet } = useActionSheet();
+
+ const joinCall = useCallback(blockId => {
+ const options: TActionSheetOptionsItem[] = [
+ {
+ title: i18n.t('Video_call'),
+ icon: 'camera',
+ onPress: () => videoConfJoin(blockId, true)
+ },
+ {
+ title: i18n.t('Voice_call'),
+ icon: 'microphone',
+ onPress: () => videoConfJoin(blockId, false)
+ }
+ ];
+ showActionSheet({ options });
+ }, []);
+
+ return { joinCall };
+};
diff --git a/app/lib/methods/audioFile.ts b/app/lib/methods/audioFile.ts
index 31cd09f9e..2c0f7ab5d 100644
--- a/app/lib/methods/audioFile.ts
+++ b/app/lib/methods/audioFile.ts
@@ -4,12 +4,17 @@ import { sanitizeLikeString } from '../database/utils';
import { store } from '../store/auxStore';
import log from './helpers/log';
+const DEFAULT_EXTENSION = 'mp3';
+
const sanitizeString = (value: string) => sanitizeLikeString(value.substring(value.lastIndexOf('/') + 1));
-const parseFilename = (value: string) => {
- const extension = value.substring(value.lastIndexOf('.') + 1);
- const filename = sanitizeString(value.substring(value.lastIndexOf('/') + 1).split('.')[0]);
- return `${filename}.${extension}`;
+const getExtension = (value: string) => {
+ let extension = DEFAULT_EXTENSION;
+ const filename = value.split('/').pop();
+ if (filename?.includes('.')) {
+ extension = value.substring(value.lastIndexOf('.') + 1);
+ }
+ return extension;
};
const ensureDirAsync = async (dir: string, intermediates = true): Promise => {
@@ -27,7 +32,7 @@ export const downloadAudioFile = async (url: string, fileUrl: string, messageId:
const serverUrl = store.getState().server.server;
const serverUrlParsed = sanitizeString(serverUrl);
const folderPath = `${FileSystem.documentDirectory}audios/${serverUrlParsed}`;
- const filename = `${messageId}_${parseFilename(fileUrl)}`;
+ const filename = `${messageId}.${getExtension(fileUrl)}`;
const filePath = `${folderPath}/${filename}`;
await ensureDirAsync(folderPath);
const file = await FileSystem.getInfoAsync(filePath);
diff --git a/app/views/RoomView/services/getMoreMessages.ts b/app/lib/methods/getMoreMessages.ts
similarity index 70%
rename from app/views/RoomView/services/getMoreMessages.ts
rename to app/lib/methods/getMoreMessages.ts
index 6e4d007a4..c82fd74a9 100644
--- a/app/views/RoomView/services/getMoreMessages.ts
+++ b/app/lib/methods/getMoreMessages.ts
@@ -1,16 +1,14 @@
-import { SubscriptionType, TAnyMessageModel } from '../../../definitions';
-import { loadNextMessages, loadMessagesForRoom } from '../../../lib/methods';
-import { MessageTypeLoad } from '../../../lib/constants';
+import { SubscriptionType, TAnyMessageModel } from '../../definitions';
+import { loadNextMessages, loadMessagesForRoom } from '.';
+import { MessageTypeLoad } from '../constants';
const getMoreMessages = ({
rid,
t,
- tmid,
loaderItem
}: {
rid: string;
t: SubscriptionType;
- tmid?: string;
loaderItem: TAnyMessageModel;
}): Promise => {
if ([MessageTypeLoad.MORE, MessageTypeLoad.PREVIOUS_CHUNK].includes(loaderItem.t as MessageTypeLoad)) {
@@ -25,7 +23,6 @@ const getMoreMessages = ({
if (loaderItem.t === MessageTypeLoad.NEXT_CHUNK) {
return loadNextMessages({
rid,
- tmid,
ts: loaderItem.ts as Date,
loaderItem
});
diff --git a/app/lib/methods/getPermissions.ts b/app/lib/methods/getPermissions.ts
index 33fdc203b..a73146923 100644
--- a/app/lib/methods/getPermissions.ts
+++ b/app/lib/methods/getPermissions.ts
@@ -57,7 +57,8 @@ export const SUPPORTED_PERMISSIONS = [
'edit-omnichannel-contact',
'edit-livechat-room-customfields',
'view-canned-responses',
- 'mobile-upload-file'
+ 'mobile-upload-file',
+ 'delete-own-message'
] as const;
export async function setPermissions(): Promise {
diff --git a/app/lib/methods/helpers/goRoom.ts b/app/lib/methods/helpers/goRoom.ts
index a57d2e19f..0e0be7ce6 100644
--- a/app/lib/methods/helpers/goRoom.ts
+++ b/app/lib/methods/helpers/goRoom.ts
@@ -1,4 +1,5 @@
-import { ChatsStackParamList } from '../../../stacks/types';
+import { CommonActions } from '@react-navigation/native';
+
import Navigation from '../../navigation/appNavigation';
import { IOmnichannelRoom, SubscriptionType, IVisitor, TSubscriptionModel, ISubscription } from '../../../definitions';
import { getRoomTitle, getUidDirectMessage } from './helpers';
@@ -19,19 +20,14 @@ export type TGoRoomItem = IGoRoomItem | TSubscriptionModel | ISubscription | IOm
const navigate = ({
item,
isMasterDetail,
+ popToRoot,
...props
}: {
item: TGoRoomItem;
isMasterDetail: boolean;
- navigationMethod?: () => ChatsStackParamList;
+ popToRoot: boolean;
}) => {
- let navigationMethod = props.navigationMethod ?? Navigation.navigate;
-
- if (isMasterDetail) {
- navigationMethod = Navigation.replace;
- }
-
- navigationMethod('RoomView', {
+ const routeParams = {
rid: item.rid,
name: getRoomTitle(item),
t: item.t,
@@ -40,6 +36,44 @@ const navigate = ({
visitor: item.visitor,
roomUserId: getUidDirectMessage(item),
...props
+ };
+
+ if (isMasterDetail) {
+ if (popToRoot) {
+ Navigation.navigate('DrawerNavigator');
+ }
+ return Navigation.dispatch((state: any) => {
+ const routesRoomView = state.routes.filter((r: any) => r.name !== 'RoomView');
+ return CommonActions.reset({
+ ...state,
+ routes: [
+ ...routesRoomView,
+ {
+ name: 'RoomView',
+ params: routeParams
+ }
+ ],
+ index: routesRoomView.length
+ });
+ });
+ }
+
+ if (popToRoot) {
+ Navigation.navigate('RoomsListView');
+ }
+ return Navigation.dispatch((state: any) => {
+ const routesRoomsListView = state.routes.filter((r: any) => r.name === 'RoomsListView');
+ return CommonActions.reset({
+ ...state,
+ routes: [
+ ...routesRoomsListView,
+ {
+ name: 'RoomView',
+ params: routeParams
+ }
+ ],
+ index: routesRoomsListView.length
+ });
});
};
@@ -51,13 +85,14 @@ interface IOmnichannelRoomVisitor extends IOmnichannelRoom {
export const goRoom = async ({
item,
isMasterDetail = false,
+ popToRoot = false,
...props
}: {
item: TGoRoomItem;
isMasterDetail: boolean;
- navigationMethod?: any;
jumpToMessageId?: string;
usedCannedResponse?: string;
+ popToRoot?: boolean;
}): Promise => {
if (!('id' in item) && item.t === SubscriptionType.DIRECT && item?.search) {
// if user is using the search we need first to join/create room
@@ -72,6 +107,7 @@ export const goRoom = async ({
t: SubscriptionType.DIRECT
},
isMasterDetail,
+ popToRoot,
...props
});
}
@@ -80,5 +116,5 @@ export const goRoom = async ({
}
}
- return navigate({ item, isMasterDetail, ...props });
+ return navigate({ item, isMasterDetail, popToRoot, ...props });
};
diff --git a/app/lib/methods/helpers/navigation/index.ts b/app/lib/methods/helpers/navigation/index.ts
index 3a46d839e..98b934842 100644
--- a/app/lib/methods/helpers/navigation/index.ts
+++ b/app/lib/methods/helpers/navigation/index.ts
@@ -10,6 +10,7 @@ export * from './animations';
export const defaultHeader = {
headerBackTitleVisible: false,
+ headerBackTestID: 'header-back',
cardOverlayEnabled: true,
cardStyle: { backgroundColor: 'transparent' }
};
diff --git a/app/lib/methods/helpers/sslPinning.ts b/app/lib/methods/helpers/sslPinning.ts
index 24b58726b..e82e659ac 100644
--- a/app/lib/methods/helpers/sslPinning.ts
+++ b/app/lib/methods/helpers/sslPinning.ts
@@ -33,6 +33,9 @@ const RCSSLPinning = Platform.select({
type: ['com.rsa.pkcs-12']
});
const { uri, name } = res;
+ if (!name) {
+ return reject();
+ }
Alert.prompt(
I18n.t('Certificate_password'),
I18n.t('Whats_the_password_for_your_certificate'),
diff --git a/app/lib/methods/index.ts b/app/lib/methods/index.ts
index e8b0229b1..602d78f16 100644
--- a/app/lib/methods/index.ts
+++ b/app/lib/methods/index.ts
@@ -16,6 +16,7 @@ export * from './getSingleMessage';
export * from './getSlashCommands';
export * from './getThreadName';
export * from './getUsersPresence';
+export * from './getMoreMessages';
export * from './loadMessagesForRoom';
export * from './loadMissedMessages';
export * from './loadNextMessages';
diff --git a/app/lib/methods/loadNextMessages.ts b/app/lib/methods/loadNextMessages.ts
index 5a650c732..c221e9577 100644
--- a/app/lib/methods/loadNextMessages.ts
+++ b/app/lib/methods/loadNextMessages.ts
@@ -15,7 +15,6 @@ const COUNT = 50;
interface ILoadNextMessages {
rid: string;
ts: Date;
- tmid?: string;
loaderItem: TMessageModel;
}
@@ -32,7 +31,6 @@ export function loadNextMessages(args: ILoadNextMessages): Promise {
const loadMoreItem = {
_id: generateLoadMoreId(lastMessage._id),
rid: lastMessage.rid,
- tmid: args.tmid,
ts: moment(lastMessage.ts).add(1, 'millisecond'),
t: MessageTypeLoad.NEXT_CHUNK
};
diff --git a/app/lib/methods/loadSurroundingMessages.ts b/app/lib/methods/loadSurroundingMessages.ts
index a1017b219..a3c31be89 100644
--- a/app/lib/methods/loadSurroundingMessages.ts
+++ b/app/lib/methods/loadSurroundingMessages.ts
@@ -19,9 +19,6 @@ export function loadSurroundingMessages({ messageId, rid }: { messageId: string;
let messages: IMessage[] = EJSON.fromJSONValue(data?.messages);
messages = orderBy(messages, 'ts');
- const message = messages.find(m => m._id === messageId);
- const tmid = message?.tmid;
-
if (messages?.length) {
if (data?.moreBefore) {
const firstMessage = messages[0];
@@ -30,7 +27,6 @@ export function loadSurroundingMessages({ messageId, rid }: { messageId: string;
const loadMoreItem = {
_id: generateLoadMoreId(firstMessage._id),
rid: firstMessage.rid,
- tmid,
ts: moment(firstMessage.ts).subtract(1, 'millisecond').toDate(),
t: MessageTypeLoad.PREVIOUS_CHUNK,
msg: firstMessage.msg
@@ -46,7 +42,6 @@ export function loadSurroundingMessages({ messageId, rid }: { messageId: string;
const loadMoreItem = {
_id: generateLoadMoreId(lastMessage._id),
rid: lastMessage.rid,
- tmid,
ts: moment(lastMessage.ts).add(1, 'millisecond').toDate(),
t: MessageTypeLoad.NEXT_CHUNK,
msg: lastMessage.msg
diff --git a/app/lib/methods/search.ts b/app/lib/methods/search.ts
index ac4e265e2..ee8fdca96 100644
--- a/app/lib/methods/search.ts
+++ b/app/lib/methods/search.ts
@@ -38,7 +38,8 @@ export const localSearchSubscription = async ({ text = '', filterUsers = true, f
t: item.t,
encrypted: item.encrypted,
lastMessage: item.lastMessage,
- status: item.status
+ status: item.status,
+ teamMain: item.teamMain
})) as ISearchLocal[];
return search;
diff --git a/app/lib/methods/sendFileMessage.ts b/app/lib/methods/sendFileMessage.ts
index c8facc473..8886f6064 100644
--- a/app/lib/methods/sendFileMessage.ts
+++ b/app/lib/methods/sendFileMessage.ts
@@ -1,27 +1,35 @@
import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord';
import { settings as RocketChatSettings } from '@rocket.chat/sdk';
-import { FetchBlobResponse, StatefulPromise } from 'rn-fetch-blob';
import isEmpty from 'lodash/isEmpty';
+import { FetchBlobResponse, StatefulPromise } from 'rn-fetch-blob';
+import { Alert } from 'react-native';
-import FileUpload from './helpers/fileUpload';
-import database from '../database';
-import log from './helpers/log';
import { IUpload, IUser, TUploadModel } from '../../definitions';
+import i18n from '../../i18n';
+import database from '../database';
+import FileUpload from './helpers/fileUpload';
import { IFileUpload } from './helpers/fileUpload/interfaces';
+import log from './helpers/log';
const uploadQueue: { [index: string]: StatefulPromise } = {};
-export function isUploadActive(path: string): boolean {
- return !!uploadQueue[path];
+const getUploadPath = (path: string, rid: string) => `${path}-${rid}`;
+
+export function isUploadActive(path: string, rid: string): boolean {
+ return !!uploadQueue[getUploadPath(path, rid)];
}
-export async function cancelUpload(item: TUploadModel): Promise {
- if (!isEmpty(uploadQueue[item.path])) {
+export async function cancelUpload(item: TUploadModel, rid: string): Promise {
+ const uploadPath = getUploadPath(item.path, rid);
+ if (!isEmpty(uploadQueue[uploadPath])) {
try {
- await uploadQueue[item.path].cancel();
+ await uploadQueue[uploadPath].cancel();
} catch {
// Do nothing
}
+ delete uploadQueue[uploadPath];
+ }
+ if (item.id) {
try {
const db = database.active;
await db.write(async () => {
@@ -30,7 +38,6 @@ export async function cancelUpload(item: TUploadModel): Promise {
} catch (e) {
log(e);
}
- delete uploadQueue[item.path];
}
}
@@ -39,7 +46,8 @@ export function sendFileMessage(
fileInfo: IUpload,
tmid: string | undefined,
server: string,
- user: Partial>
+ user: Partial>,
+ isForceTryAgain?: boolean
): Promise {
return new Promise(async (resolve, reject) => {
try {
@@ -51,15 +59,22 @@ export function sendFileMessage(
const db = database.active;
const uploadsCollection = db.get('uploads');
+ const uploadPath = getUploadPath(fileInfo.path, rid);
let uploadRecord: TUploadModel;
try {
- uploadRecord = await uploadsCollection.find(fileInfo.path);
+ uploadRecord = await uploadsCollection.find(uploadPath);
+ if (uploadRecord.id && !isForceTryAgain) {
+ return Alert.alert(i18n.t('FileUpload_Error'), i18n.t('Upload_in_progress'));
+ }
} catch (error) {
try {
await db.write(async () => {
uploadRecord = await uploadsCollection.create(u => {
- u._raw = sanitizedRaw({ id: fileInfo.path }, uploadsCollection.schema);
+ u._raw = sanitizedRaw({ id: uploadPath }, uploadsCollection.schema);
Object.assign(u, fileInfo);
+ if (tmid) {
+ u.tmid = tmid;
+ }
if (u.subscription) {
u.subscription.id = rid;
}
@@ -85,6 +100,13 @@ export function sendFileMessage(
});
}
+ if (fileInfo.msg) {
+ formData.push({
+ name: 'msg',
+ data: fileInfo.msg
+ });
+ }
+
if (tmid) {
formData.push({
name: 'tmid',
@@ -99,9 +121,9 @@ export function sendFileMessage(
'X-User-Id': id
};
- uploadQueue[fileInfo.path] = FileUpload.fetch('POST', uploadUrl, headers, formData);
+ uploadQueue[uploadPath] = FileUpload.fetch('POST', uploadUrl, headers, formData);
- uploadQueue[fileInfo.path].uploadProgress(async (loaded: number, total: number) => {
+ uploadQueue[uploadPath].uploadProgress(async (loaded: number, total: number) => {
try {
await db.write(async () => {
await uploadRecord.update(u => {
@@ -113,7 +135,7 @@ export function sendFileMessage(
}
});
- uploadQueue[fileInfo.path].then(async response => {
+ uploadQueue[uploadPath].then(async response => {
if (response.respInfo.status >= 200 && response.respInfo.status < 400) {
// If response is all good...
try {
@@ -142,7 +164,7 @@ export function sendFileMessage(
}
});
- uploadQueue[fileInfo.path].catch(async error => {
+ uploadQueue[uploadPath].catch(async error => {
try {
await db.write(async () => {
await uploadRecord.update(u => {
diff --git a/app/lib/methods/subscriptions/room.ts b/app/lib/methods/subscriptions/room.ts
index 11d333be3..56d87d284 100644
--- a/app/lib/methods/subscriptions/room.ts
+++ b/app/lib/methods/subscriptions/room.ts
@@ -125,8 +125,8 @@ export default class RoomSubscription {
if (ev === 'typing') {
const { user } = reduxStore.getState().login;
const { UI_Use_Real_Name } = reduxStore.getState().settings;
- const { rooms } = reduxStore.getState().room;
- if (rooms[0] !== _rid) {
+ const { subscribedRoom } = reduxStore.getState().room;
+ if (subscribedRoom !== _rid) {
return;
}
const [name, typing] = ddpMessage.fields.args;
diff --git a/app/lib/methods/subscriptions/rooms.ts b/app/lib/methods/subscriptions/rooms.ts
index 37505ed63..443b681f4 100644
--- a/app/lib/methods/subscriptions/rooms.ts
+++ b/app/lib/methods/subscriptions/rooms.ts
@@ -102,6 +102,7 @@ const createOrUpdateSubscription = async (subscription: ISubscription, room: ISe
encrypted: s.encrypted,
e2eKeyId: s.e2eKeyId,
E2EKey: s.E2EKey,
+ E2ESuggestedKey: s.E2ESuggestedKey,
avatarETag: s.avatarETag,
onHold: s.onHold,
hideMentionStatus: s.hideMentionStatus
@@ -165,6 +166,8 @@ const createOrUpdateSubscription = async (subscription: ISubscription, room: ISe
tmp = (await Encryption.decryptSubscription(tmp)) as ISubscription;
// Decrypt all pending messages of this room in parallel
Encryption.decryptPendingMessages(tmp.rid);
+ } else if (sub && subscription.E2ESuggestedKey) {
+ await Encryption.evaluateSuggestedKey(sub.rid, subscription.E2ESuggestedKey);
}
const batch: Model[] = [];
@@ -197,8 +200,8 @@ const createOrUpdateSubscription = async (subscription: ISubscription, room: ISe
}
}
- const { rooms } = store.getState().room;
- if (tmp.lastMessage && !rooms.includes(tmp.rid)) {
+ const { subscribedRoom } = store.getState().room;
+ if (tmp.lastMessage && subscribedRoom !== tmp.rid) {
const lastMessage = buildMessage(tmp.lastMessage);
const messagesCollection = db.get('messages');
let messageRecord = {} as TMessageModel | null;
@@ -320,6 +323,8 @@ export default function subscribeRooms() {
await db.batch(sub.prepareDestroyPermanently(), ...messagesToDelete, ...threadsToDelete, ...threadMessagesToDelete);
});
+ Encryption.stopRoom(data.rid);
+
const roomState = store.getState().room;
// Delete and remove events come from this stream
// Here we identify which one was triggered
diff --git a/app/lib/methods/videoConf.ts b/app/lib/methods/videoConf.ts
index f10b2ad14..255d18688 100644
--- a/app/lib/methods/videoConf.ts
+++ b/app/lib/methods/videoConf.ts
@@ -1,14 +1,36 @@
-import navigation from '../navigation/appNavigation';
-import openLink from './helpers/openLink';
-import { Services } from '../services';
-import log from './helpers/log';
-import { showErrorAlert } from './helpers';
+import { PermissionsAndroid, Permission } from 'react-native';
+import DeviceInfo from 'react-native-device-info';
+
import i18n from '../../i18n';
+import navigation from '../navigation/appNavigation';
+import { Services } from '../services';
+import { isAndroid, showErrorAlert } from './helpers';
+import log from './helpers/log';
+import openLink from './helpers/openLink';
+
+const handleBltPermission = async (): Promise => {
+ const systemVersion = await DeviceInfo.getApiLevel();
+ if (systemVersion <= 28) {
+ return [PermissionsAndroid.PERMISSIONS.BLUETOOTH_CONNECT, PermissionsAndroid.PERMISSIONS.BLUETOOTH_SCAN];
+ }
+ if (systemVersion === 29) {
+ return [PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION];
+ }
+ return [PermissionsAndroid.PERMISSIONS.ACCESS_COARSE_LOCATION];
+};
export const videoConfJoin = async (callId: string, cam: boolean) => {
try {
const result = await Services.videoConferenceJoin(callId, cam);
if (result.success) {
+ if (isAndroid) {
+ const bltPermission = await handleBltPermission();
+ await PermissionsAndroid.requestMultiple([
+ PermissionsAndroid.PERMISSIONS.CAMERA,
+ PermissionsAndroid.PERMISSIONS.RECORD_AUDIO,
+ ...bltPermission
+ ]);
+ }
const { url, providerName } = result;
if (providerName === 'jitsi') {
navigation.navigate('JitsiMeetView', { url, onlyAudio: !cam, videoConf: true });
diff --git a/app/lib/navigation/appNavigation.ts b/app/lib/navigation/appNavigation.ts
index 7d2f73756..404e185a9 100644
--- a/app/lib/navigation/appNavigation.ts
+++ b/app/lib/navigation/appNavigation.ts
@@ -21,11 +21,16 @@ function popToTop() {
navigationRef.current?.dispatch(StackActions.popToTop());
}
+function dispatch(params: any) {
+ navigationRef.current?.dispatch(params);
+}
+
export default {
navigationRef,
routeNameRef,
navigate,
back,
replace,
- popToTop
+ popToTop,
+ dispatch
};
diff --git a/app/lib/notifications/index.ts b/app/lib/notifications/index.ts
index 3d4888987..167add557 100644
--- a/app/lib/notifications/index.ts
+++ b/app/lib/notifications/index.ts
@@ -3,7 +3,7 @@ import EJSON from 'ejson';
import { store } from '../store/auxStore';
import { deepLinkingOpen } from '../../actions/deepLinking';
import { isFDroidBuild } from '../constants';
-import { deviceToken, pushNotificationConfigure, setNotificationsBadgeCount } from './push';
+import { deviceToken, pushNotificationConfigure, setNotificationsBadgeCount, removeAllNotifications } from './push';
import { INotification, SubscriptionType } from '../../definitions';
interface IEjson {
@@ -49,6 +49,10 @@ export const onNotification = (push: INotification): void => {
export const getDeviceToken = (): string => deviceToken;
export const setBadgeCount = (count?: number): void => setNotificationsBadgeCount(count);
+export const removeNotificationsAndBadge = () => {
+ removeAllNotifications();
+ setBadgeCount();
+};
export const initializePushNotifications = (): Promise | undefined => {
if (!isFDroidBuild) {
setBadgeCount();
diff --git a/app/lib/notifications/push.ts b/app/lib/notifications/push.ts
index 4da3c1a62..4515da941 100644
--- a/app/lib/notifications/push.ts
+++ b/app/lib/notifications/push.ts
@@ -21,6 +21,10 @@ export const setNotificationsBadgeCount = (count = 0): void => {
}
};
+export const removeAllNotifications = (): void => {
+ Notifications.removeAllDeliveredNotifications();
+};
+
export const pushNotificationConfigure = (onNotification: (notification: INotification) => void): Promise => {
if (isIOS) {
// init
diff --git a/app/lib/services/restApi.ts b/app/lib/services/restApi.ts
index 5fa3b1555..75f256fbb 100644
--- a/app/lib/services/restApi.ts
+++ b/app/lib/services/restApi.ts
@@ -74,6 +74,14 @@ export const e2eRequestRoomKey = (rid: string, e2eKeyId: string): Promise<{ mess
// RC 0.70.0
sdk.methodCallWrapper('stream-notify-room-users', `${rid}/e2ekeyRequest`, rid, e2eKeyId);
+export const e2eAcceptSuggestedGroupKey = (rid: string): Promise<{ success: boolean }> =>
+ // RC 5.5
+ sdk.post('e2e.acceptSuggestedGroupKey', { rid });
+
+export const e2eRejectSuggestedGroupKey = (rid: string): Promise<{ success: boolean }> =>
+ // RC 5.5
+ sdk.post('e2e.rejectSuggestedGroupKey', { rid });
+
export const updateJitsiTimeout = (roomId: string) =>
// RC 0.74.0
sdk.post('video-conference/jitsi.update-timeout', { roomId });
diff --git a/app/lib/store/appStateMiddleware.ts b/app/lib/store/appStateMiddleware.ts
index 7025a8191..61da57a6c 100644
--- a/app/lib/store/appStateMiddleware.ts
+++ b/app/lib/store/appStateMiddleware.ts
@@ -1,6 +1,7 @@
// https://github.com/bamlab/redux-enhancer-react-native-appstate
import { AppState } from 'react-native';
+import { removeNotificationsAndBadge } from '../notifications';
import { APP_STATE } from '../../actions/actionsTypes';
export default () =>
@@ -16,6 +17,7 @@ export default () =>
let type;
if (nextAppState === 'active') {
type = APP_STATE.FOREGROUND;
+ removeNotificationsAndBadge();
} else if (nextAppState === 'background') {
type = APP_STATE.BACKGROUND;
}
diff --git a/app/reducers/room.test.ts b/app/reducers/room.test.ts
index 0d383091a..8d9620e25 100644
--- a/app/reducers/room.test.ts
+++ b/app/reducers/room.test.ts
@@ -1,4 +1,13 @@
-import { deleteRoom, forwardRoom, leaveRoom, removedRoom, subscribeRoom, unsubscribeRoom } from '../actions/room';
+import {
+ deleteRoom,
+ forwardRoom,
+ leaveRoom,
+ removedRoom,
+ roomHistoryFinished,
+ roomHistoryRequest,
+ subscribeRoom,
+ unsubscribeRoom
+} from '../actions/room';
import { ERoomType } from '../definitions/ERoomType';
import { mockedStore } from './mockedStore';
import { initialState } from './room';
@@ -12,13 +21,13 @@ describe('test room reducer', () => {
it('should return modified store after subscribeRoom', () => {
mockedStore.dispatch(subscribeRoom('GENERAL'));
const state = mockedStore.getState().room;
- expect(state.rooms).toEqual(['GENERAL']);
+ expect(state.subscribedRoom).toEqual('GENERAL');
});
it('should return empty store after remove unsubscribeRoom', () => {
mockedStore.dispatch(unsubscribeRoom('GENERAL'));
const state = mockedStore.getState().room;
- expect(state.rooms).toEqual([]);
+ expect(state.subscribedRoom).toEqual('');
});
it('should return initial state after leaveRoom', () => {
@@ -48,4 +57,16 @@ describe('test room reducer', () => {
const { isDeleting } = mockedStore.getState().room;
expect(isDeleting).toEqual(false);
});
+
+ it('should return historyLoaders with one item after call historyRequest', () => {
+ mockedStore.dispatch(roomHistoryRequest({ rid: 'GENERAL', t: 'c', loaderId: 'loader' }));
+ const { historyLoaders } = mockedStore.getState().room;
+ expect(historyLoaders).toEqual(['loader']);
+ });
+
+ it('should return historyLoaders with empty array after call historyFinished', () => {
+ mockedStore.dispatch(roomHistoryFinished({ loaderId: 'loader' }));
+ const { historyLoaders } = mockedStore.getState().room;
+ expect(historyLoaders).toEqual([]);
+ });
});
diff --git a/app/reducers/room.ts b/app/reducers/room.ts
index e5b9815b4..c988d8683 100644
--- a/app/reducers/room.ts
+++ b/app/reducers/room.ts
@@ -6,13 +6,15 @@ export type IRoomRecord = string[];
export interface IRoom {
rid: string;
isDeleting: boolean;
- rooms: IRoomRecord;
+ subscribedRoom: string;
+ historyLoaders: string[];
}
export const initialState: IRoom = {
rid: '',
isDeleting: false,
- rooms: []
+ subscribedRoom: '',
+ historyLoaders: []
};
export default function (state = initialState, action: TActionsRoom): IRoom {
@@ -20,12 +22,12 @@ export default function (state = initialState, action: TActionsRoom): IRoom {
case ROOM.SUBSCRIBE:
return {
...state,
- rooms: [action.rid, ...state.rooms]
+ subscribedRoom: action.rid
};
case ROOM.UNSUBSCRIBE:
return {
...state,
- rooms: state.rooms.filter(rid => rid !== action.rid)
+ subscribedRoom: state.subscribedRoom === action.rid ? '' : state.subscribedRoom
};
case ROOM.LEAVE:
return {
@@ -56,6 +58,16 @@ export default function (state = initialState, action: TActionsRoom): IRoom {
...state,
isDeleting: false
};
+ case ROOM.HISTORY_REQUEST:
+ return {
+ ...state,
+ historyLoaders: [...state.historyLoaders, action.loaderId]
+ };
+ case ROOM.HISTORY_FINISHED:
+ return {
+ ...state,
+ historyLoaders: state.historyLoaders.filter(loaderId => loaderId !== action.loaderId)
+ };
default:
return state;
}
diff --git a/app/sagas/createChannel.js b/app/sagas/createChannel.js
index a7b138862..ed81d82ac 100644
--- a/app/sagas/createChannel.js
+++ b/app/sagas/createChannel.js
@@ -4,7 +4,6 @@ import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord';
import { CREATE_CHANNEL, LOGIN } from '../actions/actionsTypes';
import { createChannelFailure, createChannelSuccess } from '../actions/createChannel';
import { showErrorAlert } from '../lib/methods/helpers/info';
-import Navigation from '../lib/navigation/appNavigation';
import database from '../lib/database';
import I18n from '../i18n';
import { events, logEvent } from '../lib/methods/helpers/log';
@@ -78,10 +77,7 @@ const handleRequest = function* handleRequest({ data }) {
const handleSuccess = function* handleSuccess({ data }) {
const isMasterDetail = yield select(state => state.app.isMasterDetail);
- if (isMasterDetail) {
- Navigation.navigate('DrawerNavigator');
- }
- goRoom({ item: data, isMasterDetail });
+ goRoom({ item: data, isMasterDetail, popToRoot: true });
};
const handleFailure = function handleFailure({ err, isTeam }) {
diff --git a/app/sagas/deepLinking.js b/app/sagas/deepLinking.js
index 47093d164..474e4a7f2 100644
--- a/app/sagas/deepLinking.js
+++ b/app/sagas/deepLinking.js
@@ -1,7 +1,6 @@
import { all, delay, put, select, take, takeLatest } from 'redux-saga/effects';
import UserPreferences from '../lib/methods/userPreferences';
-import Navigation from '../lib/navigation/appNavigation';
import * as types from '../actions/actionsTypes';
import { selectServerRequest, serverInitAdd } from '../actions/server';
import { inviteLinksRequest, inviteLinksSetToken } from '../actions/inviteLinks';
@@ -36,14 +35,6 @@ const handleInviteLink = function* handleInviteLink({ params, requireLogin = fal
}
};
-const popToRoot = function popToRoot({ isMasterDetail }) {
- if (isMasterDetail) {
- Navigation.navigate('DrawerNavigator');
- } else {
- Navigation.navigate('RoomsListView');
- }
-};
-
const navigate = function* navigate({ params }) {
yield put(appStart({ root: RootEnum.ROOT_INSIDE }));
if (params.path || params.rid) {
@@ -65,27 +56,9 @@ const navigate = function* navigate({ params }) {
};
const isMasterDetail = yield select(state => state.app.isMasterDetail);
- const focusedRooms = yield select(state => state.room.rooms);
const jumpToMessageId = params.messageId;
- if (focusedRooms.includes(room.rid)) {
- // if there's one room on the list or last room is the one
- if (focusedRooms.length === 1 || focusedRooms[0] === room.rid) {
- if (jumpToThreadId) {
- // With this conditional when there is a jumpToThreadId we can avoid the thread open again
- // above other thread and the room could call again the thread
- popToRoot({ isMasterDetail });
- }
- yield goRoom({ item, isMasterDetail, jumpToMessageId, jumpToThreadId });
- } else {
- popToRoot({ isMasterDetail });
- yield goRoom({ item, isMasterDetail, jumpToMessageId, jumpToThreadId });
- }
- } else {
- popToRoot({ isMasterDetail });
- yield goRoom({ item, isMasterDetail, jumpToMessageId, jumpToThreadId });
- }
-
+ yield goRoom({ item, isMasterDetail, jumpToMessageId, jumpToThreadId, popToRoot: true });
if (params.isCall) {
callJitsi(item);
}
diff --git a/app/sagas/encryption.js b/app/sagas/encryption.js
index fb94930f0..9f1482f16 100644
--- a/app/sagas/encryption.js
+++ b/app/sagas/encryption.js
@@ -51,13 +51,6 @@ const handleEncryptionInit = function* handleEncryptionInit() {
return;
}
- // If the user has a private key stored, but never entered the password
- const storedRandomPassword = UserPreferences.getString(`${server}-${E2E_RANDOM_PASSWORD_KEY}`);
-
- if (storedRandomPassword) {
- yield put(encryptionSet(true, E2E_BANNER_TYPE.SAVE_PASSWORD));
- }
-
// Fetch stored public e2e key for this server
let storedPublicKey = UserPreferences.getString(`${server}-${E2E_PUBLIC_KEY}`);
@@ -66,14 +59,21 @@ const handleEncryptionInit = function* handleEncryptionInit() {
storedPublicKey = EJSON.parse(storedPublicKey);
}
- if (storedPublicKey && storedPrivateKey && !storedRandomPassword) {
+ if (storedPublicKey && storedPrivateKey) {
// Persist these keys
yield Encryption.persistKeys(server, storedPublicKey, storedPrivateKey);
- yield put(encryptionSet(true));
} else {
// Create new keys since the user doesn't have any
yield Encryption.createKeys(user.id, server);
+ }
+
+ // If the user has a private key stored, but never entered the password
+ const storedRandomPassword = UserPreferences.getString(`${server}-${E2E_RANDOM_PASSWORD_KEY}`);
+
+ if (storedRandomPassword) {
yield put(encryptionSet(true, E2E_BANNER_TYPE.SAVE_PASSWORD));
+ } else {
+ yield put(encryptionSet(true));
}
// Decrypt all pending messages/subscriptions
diff --git a/app/sagas/messages.js b/app/sagas/messages.js
index 6940f2409..ddae85213 100644
--- a/app/sagas/messages.js
+++ b/app/sagas/messages.js
@@ -1,7 +1,6 @@
import { select, takeLatest } from 'redux-saga/effects';
import { Q } from '@nozbe/watermelondb';
-import Navigation from '../lib/navigation/appNavigation';
import { MESSAGES } from '../actions/actionsTypes';
import database from '../lib/database';
import log from '../lib/methods/helpers/log';
@@ -16,18 +15,13 @@ const handleReplyBroadcast = function* handleReplyBroadcast({ message }) {
const subscriptions = yield subsCollection.query(Q.where('name', username)).fetch();
const isMasterDetail = yield select(state => state.app.isMasterDetail);
- if (isMasterDetail) {
- Navigation.navigate('DrawerNavigator');
- } else {
- Navigation.navigate('RoomsListView');
- }
if (subscriptions.length) {
- goRoom({ item: subscriptions[0], isMasterDetail, message });
+ goRoom({ item: subscriptions[0], isMasterDetail, popToRoot: true, message });
} else {
const result = yield Services.createDirectMessage(username);
if (result?.success) {
- goRoom({ item: result?.room, isMasterDetail, message });
+ goRoom({ item: result?.room, isMasterDetail, popToRoot: true, message });
}
}
} catch (e) {
diff --git a/app/sagas/room.js b/app/sagas/room.js
index 6f358ead8..89c0e7677 100644
--- a/app/sagas/room.js
+++ b/app/sagas/room.js
@@ -1,5 +1,5 @@
import { Alert } from 'react-native';
-import { delay, put, race, select, take, takeLatest } from 'redux-saga/effects';
+import { delay, put, race, select, take, takeLatest, actionChannel } from 'redux-saga/effects';
import EventEmitter from '../lib/methods/helpers/events';
import Navigation from '../lib/navigation/appNavigation';
@@ -10,6 +10,26 @@ import I18n from '../i18n';
import { showErrorAlert } from '../lib/methods/helpers/info';
import { LISTENER } from '../containers/Toast';
import { Services } from '../lib/services';
+import getMoreMessages from '../lib/methods/getMoreMessages';
+import { getMessageById } from '../lib/database/services/Message';
+
+function* watchHistoryRequests() {
+ const requestChan = yield actionChannel(types.ROOM.HISTORY_REQUEST);
+ while (true) {
+ const { rid, t, tmid, loaderId } = yield take(requestChan);
+
+ const loaderItem = yield getMessageById(loaderId);
+ if (loaderItem) {
+ try {
+ yield getMoreMessages({ rid, t, tmid, loaderItem });
+ } catch (e) {
+ log(e);
+ } finally {
+ yield put({ type: types.ROOM.HISTORY_FINISHED, loaderId });
+ }
+ }
+ }
+}
const watchUserTyping = function* watchUserTyping({ rid, status }) {
const auth = yield select(state => state.login.isAuthenticated);
@@ -132,5 +152,6 @@ const root = function* root() {
yield takeLatest(types.ROOM.LEAVE, handleLeaveRoom);
yield takeLatest(types.ROOM.DELETE, handleDeleteRoom);
yield takeLatest(types.ROOM.FORWARD, handleForwardRoom);
+ yield watchHistoryRequests();
};
export default root;
diff --git a/app/sagas/rooms.js b/app/sagas/rooms.js
index 156c5607e..66e601e48 100644
--- a/app/sagas/rooms.js
+++ b/app/sagas/rooms.js
@@ -58,15 +58,15 @@ const handleRoomsRequest = function* handleRoomsRequest({ params }) {
const subsToCreate = subscriptions.filter(i1 => !existingSubs.find(i2 => i1._id === i2._id));
const subsToDelete = existingSubs.filter(i1 => !subscriptions.find(i2 => i1._id === i2._id));
- const openedRooms = yield select(state => state.room.rooms);
+ const subscribedRoom = yield select(state => state.room.subscribedRoom);
const lastMessages = subscriptions
/** Checks for opened rooms and filter them out.
* It prevents this process to try persisting the same last message on the room messages fetch.
* This race condition is easy to reproduce on push notification tap.
*/
- .filter(sub => !openedRooms.includes(sub.rid))
+ .filter(sub => subscribedRoom !== sub.rid)
.map(sub => sub.lastMessage && buildMessage(sub.lastMessage))
- .filter(lm => lm);
+ .filter(lm => lm && lm._id && lm.rid);
const lastMessagesIds = lastMessages.map(lm => lm._id).filter(lm => lm);
const existingMessages = yield messagesCollection.query(Q.where('id', Q.oneOf(lastMessagesIds))).fetch();
const messagesToUpdate = existingMessages.filter(i1 => lastMessages.find(i2 => i1.id === i2._id));
diff --git a/app/sagas/state.js b/app/sagas/state.js
index b29b2645a..1e6bcddab 100644
--- a/app/sagas/state.js
+++ b/app/sagas/state.js
@@ -5,7 +5,6 @@ import { localAuthenticate, saveLastLocalAuthenticationSession } from '../lib/me
import { APP_STATE } from '../actions/actionsTypes';
import { RootEnum } from '../definitions';
import { Services } from '../lib/services';
-import { setBadgeCount } from '../lib/notifications';
const appHasComeBackToForeground = function* appHasComeBackToForeground() {
const appRoot = yield select(state => state.app.root);
@@ -20,7 +19,6 @@ const appHasComeBackToForeground = function* appHasComeBackToForeground() {
try {
yield localAuthenticate(server.server);
Services.checkAndReopen();
- setBadgeCount();
return yield Services.setUserPresenceOnline();
} catch (e) {
log(e);
diff --git a/app/stacks/InsideStack.tsx b/app/stacks/InsideStack.tsx
index 25b642624..199bb9cdf 100644
--- a/app/stacks/InsideStack.tsx
+++ b/app/stacks/InsideStack.tsx
@@ -80,6 +80,7 @@ import {
ProfileStackParamList,
SettingsStackParamList
} from './types';
+import { isIOS } from '../lib/methods/helpers';
// ChatsStackNavigator
const ChatsStack = createStackNavigator();
@@ -135,7 +136,11 @@ const ChatsStackNavigator = () => {
-
+
);
};
diff --git a/app/stacks/MasterDetailStack/index.tsx b/app/stacks/MasterDetailStack/index.tsx
index d89d09851..3bcc742fa 100644
--- a/app/stacks/MasterDetailStack/index.tsx
+++ b/app/stacks/MasterDetailStack/index.tsx
@@ -73,6 +73,7 @@ import {
MasterDetailInsideStackParamList,
ModalStackParamList
} from './types';
+import { isIOS } from '../../lib/methods/helpers';
// ChatsStackNavigator
const ChatsStack = createStackNavigator();
@@ -222,7 +223,11 @@ const InsideStackNavigator = React.memo(() => {
-
+
);
diff --git a/app/stacks/types.ts b/app/stacks/types.ts
index cb00e8f1e..d7848058d 100644
--- a/app/stacks/types.ts
+++ b/app/stacks/types.ts
@@ -94,6 +94,7 @@ export type ChatsStackParamList = {
showButton?: boolean;
title?: string;
buttonText?: string;
+ showSkipText?: boolean;
nextAction?(): void;
};
InviteUsersView: {
@@ -272,6 +273,9 @@ export type InsideStackParamList = {
text: string;
room: TSubscriptionModel;
thread: TThreadModel;
+ replying?: boolean;
+ replyingMessage?: IMessage;
+ closeReply?: Function;
};
ModalBlockView: {
data: any; // TODO: Change;
diff --git a/app/views/AddExistingChannelView.tsx b/app/views/AddExistingChannelView.tsx
index ea4f5be67..88aa83f15 100644
--- a/app/views/AddExistingChannelView.tsx
+++ b/app/views/AddExistingChannelView.tsx
@@ -17,7 +17,6 @@ import { TSupportedThemes, withTheme } from '../theme';
import SafeAreaView from '../containers/SafeAreaView';
import { sendLoadingEvent } from '../containers/Loading';
import { animateNextTransition } from '../lib/methods/helpers/layoutAnimation';
-import { goRoom } from '../lib/methods/helpers/goRoom';
import { showErrorAlert } from '../lib/methods/helpers/info';
import { ChatsStackParamList } from '../stacks/types';
import { TSubscriptionModel, SubscriptionType, IApplicationState } from '../definitions';
@@ -126,7 +125,7 @@ class AddExistingChannelView extends React.Component {
const { selected } = this.state;
- const { isMasterDetail } = this.props;
+ const { navigation } = this.props;
sendLoadingEvent({ visible: true });
try {
@@ -134,9 +133,8 @@ class AddExistingChannelView extends React.Component state.app);
- const { rooms } = useAppSelector(state => state.room);
useEffect(() => {
navigation.setOptions({
@@ -107,31 +104,9 @@ const CannedResponseDetail = ({ navigation, route }: ICannedResponseDetailProps)
const navigateToRoom = (item: ICannedResponse) => {
const { room } = route.params;
- const { name } = room;
- const params = {
- rid: room.rid,
- name: getRoomTitle({
- t: room.t,
- fname: name
- }),
- t: room.t,
- roomUserId: getUidDirectMessage(room),
- usedCannedResponse: item.text
- };
if (room.rid) {
- // if it's on master detail layout, we close the modal and replace RoomView
- if (isMasterDetail) {
- Navigation.navigate('DrawerNavigator');
- goRoom({ item: params, isMasterDetail });
- } else {
- let navigate = navigation.push;
- // if this is a room focused
- if (rooms.includes(room.rid)) {
- ({ navigate } = navigation);
- }
- navigate('RoomView', params);
- }
+ goRoom({ item: room, isMasterDetail, popToRoot: true, usedCannedResponse: item.text });
}
};
diff --git a/app/views/CannedResponsesListView/index.tsx b/app/views/CannedResponsesListView/index.tsx
index d525a6fa3..100e64569 100644
--- a/app/views/CannedResponsesListView/index.tsx
+++ b/app/views/CannedResponsesListView/index.tsx
@@ -12,7 +12,6 @@ import ActivityIndicator from '../../containers/ActivityIndicator';
import SearchHeader from '../../containers/SearchHeader';
import BackgroundContainer from '../../containers/BackgroundContainer';
import { useTheme } from '../../theme';
-import Navigation from '../../lib/navigation/appNavigation';
import { goRoom } from '../../lib/methods/helpers/goRoom';
import * as HeaderButton from '../../containers/HeaderButton';
import * as List from '../../containers/List';
@@ -24,7 +23,7 @@ import DropdownItemHeader from './Dropdown/DropdownItemHeader';
import styles from './styles';
import { ICannedResponse } from '../../definitions/ICannedResponse';
import { ChatsStackParamList } from '../../stacks/types';
-import { getRoomTitle, getUidDirectMessage, useDebounce } from '../../lib/methods/helpers';
+import { useDebounce } from '../../lib/methods/helpers';
import { Services } from '../../lib/services';
import { ILivechatDepartment } from '../../definitions/ILivechatDepartment';
import { useAppSelector } from '../../lib/hooks';
@@ -73,7 +72,6 @@ const CannedResponsesListView = ({ navigation, route }: ICannedResponsesListView
const { theme } = useTheme();
const isMasterDetail = useAppSelector(state => state.app.isMasterDetail);
- const rooms = useAppSelector(state => state.room.rooms);
const getRoomFromDb = async () => {
const { rid } = route.params;
@@ -107,34 +105,8 @@ const CannedResponsesListView = ({ navigation, route }: ICannedResponsesListView
};
const navigateToRoom = (item: ICannedResponse) => {
- if (!room) {
- return;
- }
- const { name } = room;
- const params = {
- rid: room.rid,
- name: getRoomTitle({
- t: room.t,
- fname: name
- }),
- t: room.t,
- roomUserId: getUidDirectMessage(room),
- usedCannedResponse: item.text
- };
-
- if (room.rid) {
- // if it's on master detail layout, we close the modal and replace RoomView
- if (isMasterDetail) {
- Navigation.navigate('DrawerNavigator');
- goRoom({ item: params, isMasterDetail });
- } else {
- let navigate = navigation.push;
- // if this is a room focused
- if (rooms.includes(room.rid)) {
- ({ navigate } = navigation);
- }
- navigate('RoomView', params);
- }
+ if (room?.rid) {
+ goRoom({ item: room, isMasterDetail, popToRoot: true, usedCannedResponse: item.text });
}
};
@@ -268,7 +240,12 @@ const CannedResponsesListView = ({ navigation, route }: ICannedResponsesListView
headerTitleContainerStyle: { maxWidth: undefined },
headerRightContainerStyle: { flexGrow: 1 },
headerLeft: () => (
- navigation.pop()} tintColor={themes[theme].headerTintColor} />
+ navigation.pop()}
+ tintColor={themes[theme].headerTintColor}
+ testID='header-back'
+ />
),
headerRight: () => (
diff --git a/app/views/CloseLivechatView.tsx b/app/views/CloseLivechatView.tsx
index feb011f2e..564f7d3ad 100644
--- a/app/views/CloseLivechatView.tsx
+++ b/app/views/CloseLivechatView.tsx
@@ -102,7 +102,7 @@ const CloseLivechatView = ({ navigation, route }: IBaseScreen
>
) : null}
diff --git a/app/views/CreateDiscussionView/index.tsx b/app/views/CreateDiscussionView/index.tsx
index 6d781d291..9ce8e1fbe 100644
--- a/app/views/CreateDiscussionView/index.tsx
+++ b/app/views/CreateDiscussionView/index.tsx
@@ -12,7 +12,6 @@ import StatusBar from '../../containers/StatusBar';
import { withTheme } from '../../theme';
import { getUserSelector } from '../../selectors/login';
import { FormTextInput } from '../../containers/TextInput';
-import Navigation from '../../lib/navigation/appNavigation';
import { createDiscussionRequest, ICreateDiscussionRequestData } from '../../actions/createDiscussion';
import SafeAreaView from '../../containers/SafeAreaView';
import { goRoom } from '../../lib/methods/helpers/goRoom';
@@ -60,18 +59,13 @@ class CreateChannelView extends React.Component {
- const { navigation, isMasterDetail } = this.props;
- if (isMasterDetail) {
- navigation.navigate('DrawerNavigator');
- } else {
- navigation.navigate('RoomsListView');
- }
- goRoom({ item, isMasterDetail });
+ const { isMasterDetail } = this.props;
+ goRoom({ item, isMasterDetail, popToRoot: true });
};
onPressItem = async (item: IServerRoom) => {
diff --git a/app/views/DiscussionsView/index.tsx b/app/views/DiscussionsView/index.tsx
index 5785d3e82..dee6e3534 100644
--- a/app/views/DiscussionsView/index.tsx
+++ b/app/views/DiscussionsView/index.tsx
@@ -121,7 +121,12 @@ const DiscussionsView = ({ navigation, route }: IDiscussionsViewProps): React.Re
headerTitle: I18n.t('Discussions'),
headerRightContainerStyle: { flexGrow: 1 },
headerLeft: () => (
- navigation.pop()} tintColor={colors.headerTintColor} />
+ navigation.pop()}
+ tintColor={colors.headerTintColor}
+ testID='header-back'
+ />
),
headerRight: () => (
diff --git a/app/views/E2EEnterYourPasswordView.tsx b/app/views/E2EEnterYourPasswordView.tsx
index 3b00c50a3..18245da63 100644
--- a/app/views/E2EEnterYourPasswordView.tsx
+++ b/app/views/E2EEnterYourPasswordView.tsx
@@ -17,12 +17,9 @@ import { useTheme } from '../theme';
import sharedStyles from './Styles';
const styles = StyleSheet.create({
- container: {
- padding: 28
- },
info: {
- fontSize: 14,
- marginVertical: 8,
+ fontSize: 16,
+ marginVertical: 4,
...sharedStyles.textRegular
}
});
@@ -53,10 +50,7 @@ const E2EEnterYourPasswordView = (): React.ReactElement => {
>
-
+
{
style={[styles.copyButton, { backgroundColor: colors.auxiliaryBackground }]}
title={I18n.t('Copy')}
type='secondary'
- fontSize={12}
+ fontSize={14}
/>
{I18n.t('Save_Your_Encryption_Password_info')}
diff --git a/app/views/JitsiMeetView.android.tsx b/app/views/JitsiMeetView.android.tsx
new file mode 100644
index 000000000..ce54691c1
--- /dev/null
+++ b/app/views/JitsiMeetView.android.tsx
@@ -0,0 +1,105 @@
+import React from 'react';
+import { BackHandler, NativeEventSubscription } from 'react-native';
+import BackgroundTimer from 'react-native-background-timer';
+import { isAppInstalled, openAppWithUri } from 'react-native-send-intent';
+import WebView from 'react-native-webview';
+import { WebViewMessage, WebViewNavigation } from 'react-native-webview/lib/WebViewTypes';
+import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake';
+
+import { IBaseScreen } from '../definitions';
+import { events, logEvent } from '../lib/methods/helpers/log';
+import { Services } from '../lib/services';
+import { ChatsStackParamList } from '../stacks/types';
+import { withTheme } from '../theme';
+
+const JITSI_INTENT = 'org.jitsi.meet';
+
+type TJitsiMeetViewProps = IBaseScreen;
+
+class JitsiMeetView extends React.Component {
+ private rid: string;
+ private url: string;
+ private videoConf: boolean;
+ private jitsiTimeout: number | null;
+ private backHandler!: NativeEventSubscription;
+
+ constructor(props: TJitsiMeetViewProps) {
+ super(props);
+ this.rid = props.route.params?.rid;
+ this.url = props.route.params?.url;
+ this.videoConf = !!props.route.params?.videoConf;
+ this.jitsiTimeout = null;
+ }
+
+ componentDidMount() {
+ const { route, navigation } = this.props;
+ isAppInstalled(JITSI_INTENT)
+ .then(function (isInstalled) {
+ if (isInstalled) {
+ const callUrl = route.params.url.replace(/^https?:\/\//, '').split('#')[0];
+ openAppWithUri(`intent://${callUrl}#Intent;scheme=${JITSI_INTENT};package=${JITSI_INTENT};end`)
+ .then(() => navigation.pop())
+ .catch(() => {});
+ }
+ })
+ .catch(() => {});
+ this.onConferenceJoined();
+ this.backHandler = BackHandler.addEventListener('hardwareBackPress', () => true);
+ activateKeepAwake();
+ }
+
+ componentWillUnmount() {
+ logEvent(this.videoConf ? events.LIVECHAT_VIDEOCONF_TERMINATE : events.JM_CONFERENCE_TERMINATE);
+ if (this.jitsiTimeout && !this.videoConf) {
+ BackgroundTimer.clearInterval(this.jitsiTimeout);
+ this.jitsiTimeout = null;
+ BackgroundTimer.stopBackgroundTimer();
+ }
+ this.backHandler.remove();
+ deactivateKeepAwake();
+ }
+
+ // Jitsi Update Timeout needs to be called every 10 seconds to make sure
+ // call is not ended and is available to web users.
+ onConferenceJoined = () => {
+ logEvent(this.videoConf ? events.LIVECHAT_VIDEOCONF_JOIN : events.JM_CONFERENCE_JOIN);
+ if (this.rid && !this.videoConf) {
+ Services.updateJitsiTimeout(this.rid).catch((e: unknown) => console.log(e));
+ if (this.jitsiTimeout) {
+ BackgroundTimer.clearInterval(this.jitsiTimeout);
+ BackgroundTimer.stopBackgroundTimer();
+ this.jitsiTimeout = null;
+ }
+ this.jitsiTimeout = BackgroundTimer.setInterval(() => {
+ Services.updateJitsiTimeout(this.rid).catch((e: unknown) => console.log(e));
+ }, 10000);
+ }
+ };
+
+ onNavigationStateChange = (webViewState: WebViewNavigation | WebViewMessage) => {
+ const { navigation, route } = this.props;
+ const jitsiRoomId = route.params.url
+ ?.split(/^https?:\/\//)[1]
+ ?.split('#')[0]
+ ?.split('/')[1];
+ if ((jitsiRoomId && !webViewState.url.includes(jitsiRoomId)) || webViewState.url.includes('close')) {
+ navigation.pop();
+ }
+ };
+
+ render() {
+ return (
+ this.onNavigationStateChange(nativeEvent)}
+ onNavigationStateChange={this.onNavigationStateChange}
+ style={{ flex: 1 }}
+ javaScriptEnabled
+ domStorageEnabled
+ mediaPlaybackRequiresUserAction={false}
+ />
+ );
+ }
+}
+
+export default withTheme(JitsiMeetView);
diff --git a/app/views/JitsiMeetView.d.ts b/app/views/JitsiMeetView.d.ts
new file mode 100644
index 000000000..c1ad42e90
--- /dev/null
+++ b/app/views/JitsiMeetView.d.ts
@@ -0,0 +1,5 @@
+import React from 'react';
+
+declare const JitsiMeetView: React.SFC<>;
+
+export default JitsiMeetView;
diff --git a/app/views/JitsiMeetView.ios.tsx b/app/views/JitsiMeetView.ios.tsx
new file mode 100644
index 000000000..effbe2331
--- /dev/null
+++ b/app/views/JitsiMeetView.ios.tsx
@@ -0,0 +1,71 @@
+// @ts-ignore
+// eslint-disable-next-line import/no-unresolved
+import JitsiMeet from '@socialcode-rob1/react-native-jitsimeet-custom';
+import React, { useEffect } from 'react';
+import { RouteProp, useNavigation, useRoute } from '@react-navigation/native';
+
+import RCActivityIndicator from '../containers/ActivityIndicator';
+import { useAppSelector } from '../lib/hooks';
+import { events, logEvent } from '../lib/methods/helpers/log';
+import { getUserSelector } from '../selectors/login';
+import { ChatsStackParamList } from '../stacks/types';
+
+const formatUrl = (url: string, baseUrl: string, uriSize: number, avatarAuthURLFragment: string) =>
+ `${baseUrl}/avatar/${url}?format=png&width=${uriSize}&height=${uriSize}${avatarAuthURLFragment}`;
+
+const JitsiMeetView = (): React.ReactElement => {
+ const { goBack } = useNavigation();
+ const {
+ params: { url, onlyAudio, videoConf }
+ } = useRoute>();
+ const user = useAppSelector(state => getUserSelector(state));
+ const baseUrl = useAppSelector(state => state.server.server);
+
+ useEffect(() => {
+ initJitsi();
+ }, []);
+
+ const initJitsi = async () => {
+ const audioOnly = onlyAudio ?? false;
+ const { name, id: userId, token, username } = user;
+ const avatarAuthURLFragment = `&rc_token=${token}&rc_uid=${userId}`;
+ const avatar = formatUrl(username, baseUrl, 100, avatarAuthURLFragment);
+
+ const userInfo = {
+ displayName: name as string,
+ avatar
+ };
+ const regex = /(?:\/.*\/)(.*)/;
+ const urlWithoutServer = regex.exec(url)![1];
+ const serverUrl = url.replace(`/${urlWithoutServer}`, '');
+ const room = (url.includes('jwt=') ? urlWithoutServer.split('jwt=')[0] : urlWithoutServer.split('#')[0]).replace('?', '');
+ const jwtToken = url.includes('jwt=') ? url.substring(url.indexOf('jwt=') + 4, url.lastIndexOf('#config')) : undefined;
+ const conferenceOptions = {
+ room,
+ serverUrl,
+ userInfo: {
+ displayName: userInfo.displayName,
+ avatar: userInfo.avatar
+ },
+ subject: room,
+ audioOnly,
+ audioMuted: false,
+ videoMuted: audioOnly,
+ token: jwtToken,
+ featureFlags: {
+ 'calendar.enabled': false
+ },
+ configOverrides: {
+ 'breakoutRooms.hideAddRoomButton': false
+ }
+ };
+ logEvent(videoConf ? events.LIVECHAT_VIDEOCONF_JOIN : events.JM_CONFERENCE_JOIN);
+ await JitsiMeet.launchJitsiMeetView(conferenceOptions);
+ logEvent(videoConf ? events.LIVECHAT_VIDEOCONF_TERMINATE : events.JM_CONFERENCE_TERMINATE);
+ goBack();
+ };
+
+ return ;
+};
+
+export default JitsiMeetView;
diff --git a/app/views/JitsiMeetView.tsx b/app/views/JitsiMeetView.tsx
deleted file mode 100644
index 4603ff77f..000000000
--- a/app/views/JitsiMeetView.tsx
+++ /dev/null
@@ -1,145 +0,0 @@
-import React from 'react';
-import { BackHandler, StyleSheet } from 'react-native';
-import JitsiMeet, { JitsiMeetView as RNJitsiMeetView } from 'react-native-jitsi-meet';
-import BackgroundTimer from 'react-native-background-timer';
-import { connect } from 'react-redux';
-
-import { getUserSelector } from '../selectors/login';
-import ActivityIndicator from '../containers/ActivityIndicator';
-import { events, logEvent } from '../lib/methods/helpers/log';
-import { isAndroid, isIOS } from '../lib/methods/helpers';
-import { withTheme } from '../theme';
-import { ChatsStackParamList } from '../stacks/types';
-import { IApplicationState, IUser, IBaseScreen } from '../definitions';
-import { Services } from '../lib/services';
-
-const formatUrl = (url: string, baseUrl: string, uriSize: number, avatarAuthURLFragment: string) =>
- `${baseUrl}/avatar/${url}?format=png&width=${uriSize}&height=${uriSize}${avatarAuthURLFragment}`;
-
-interface IJitsiMeetViewState {
- userInfo: {
- displayName: string;
- avatar: string;
- };
- loading: boolean;
-}
-
-interface IJitsiMeetViewProps extends IBaseScreen {
- baseUrl: string;
- user: IUser;
-}
-
-class JitsiMeetView extends React.Component {
- private rid: string;
- private url: string;
- private videoConf: boolean;
- private jitsiTimeout: number | null;
-
- constructor(props: IJitsiMeetViewProps) {
- super(props);
- this.rid = props.route.params?.rid;
- this.url = props.route.params?.url;
- this.videoConf = !!props.route.params?.videoConf;
- this.jitsiTimeout = null;
-
- const { user, baseUrl } = props;
- const { name, id: userId, token, username } = user;
- const avatarAuthURLFragment = `&rc_token=${token}&rc_uid=${userId}`;
- const avatar = formatUrl(username, baseUrl, 100, avatarAuthURLFragment);
- this.state = {
- userInfo: {
- displayName: name as string,
- avatar
- },
- loading: true
- };
- }
-
- componentDidMount() {
- const { route } = this.props;
- const { userInfo } = this.state;
-
- if (isIOS) {
- setTimeout(() => {
- const onlyAudio = route.params?.onlyAudio ?? false;
- if (onlyAudio) {
- JitsiMeet.audioCall(this.url, userInfo);
- } else {
- JitsiMeet.call(this.url, userInfo);
- }
- }, 1000);
- }
- BackHandler.addEventListener('hardwareBackPress', this.endCall);
- }
-
- componentWillUnmount() {
- logEvent(events.JM_CONFERENCE_TERMINATE);
- if (this.jitsiTimeout && !this.videoConf) {
- BackgroundTimer.clearInterval(this.jitsiTimeout);
- this.jitsiTimeout = null;
- BackgroundTimer.stopBackgroundTimer();
- }
- BackHandler.removeEventListener('hardwareBackPress', this.endCall);
- if (isIOS) {
- JitsiMeet.endCall();
- }
- }
-
- endCall = () => {
- JitsiMeet.endCall();
- return null;
- };
-
- onConferenceWillJoin = () => {
- this.setState({ loading: false });
- };
-
- // Jitsi Update Timeout needs to be called every 10 seconds to make sure
- // call is not ended and is available to web users.
- onConferenceJoined = () => {
- logEvent(this.videoConf ? events.LIVECHAT_VIDEOCONF_JOIN : events.JM_CONFERENCE_JOIN);
- if (this.rid && !this.videoConf) {
- Services.updateJitsiTimeout(this.rid).catch((e: unknown) => console.log(e));
- if (this.jitsiTimeout) {
- BackgroundTimer.clearInterval(this.jitsiTimeout);
- BackgroundTimer.stopBackgroundTimer();
- this.jitsiTimeout = null;
- }
- this.jitsiTimeout = BackgroundTimer.setInterval(() => {
- Services.updateJitsiTimeout(this.rid).catch((e: unknown) => console.log(e));
- }, 10000);
- }
- };
-
- onConferenceTerminated = () => {
- logEvent(this.videoConf ? events.LIVECHAT_VIDEOCONF_TERMINATE : events.JM_CONFERENCE_TERMINATE);
- const { navigation } = this.props;
- navigation.pop();
- };
-
- render() {
- const { userInfo, loading } = this.state;
- const { route } = this.props;
- const onlyAudio = route.params?.onlyAudio ?? false;
- const options = isAndroid ? { url: this.url, userInfo, audioOnly: onlyAudio } : null;
- return (
- <>
-
- {loading ? : null}
- >
- );
- }
-}
-
-const mapStateToProps = (state: IApplicationState) => ({
- user: getUserSelector(state),
- baseUrl: state.server.server
-});
-
-export default connect(mapStateToProps)(withTheme(JitsiMeetView));
diff --git a/app/views/LoginView.tsx b/app/views/LoginView.tsx
index 17e6e0054..b43830f73 100644
--- a/app/views/LoginView.tsx
+++ b/app/views/LoginView.tsx
@@ -15,6 +15,7 @@ import I18n from '../i18n';
import { OutsideParamList } from '../stacks/types';
import { withTheme } from '../theme';
import sharedStyles from './Styles';
+import UGCRules from '../containers/UserGeneratedContentRules';
const styles = StyleSheet.create({
registerDisabled: {
@@ -31,8 +32,7 @@ const styles = StyleSheet.create({
},
bottomContainer: {
flexDirection: 'column',
- alignItems: 'center',
- marginBottom: 32
+ alignItems: 'center'
},
bottomContainerText: {
...sharedStyles.textRegular,
@@ -44,6 +44,9 @@ const styles = StyleSheet.create({
},
loginButton: {
marginTop: 16
+ },
+ ugcContainer: {
+ marginTop: 32
}
});
@@ -224,6 +227,7 @@ class LoginView extends React.Component {
{Accounts_RegistrationForm_LinkReplacementText}
)}
+
>
);
};
diff --git a/app/views/NewMessageView/index.tsx b/app/views/NewMessageView/index.tsx
index 8f05d5809..f393a9f91 100644
--- a/app/views/NewMessageView/index.tsx
+++ b/app/views/NewMessageView/index.tsx
@@ -74,10 +74,7 @@ const NewMessageView = () => {
const goRoom = useCallback(
(item: TGoRoomItem) => {
logEvent(events.NEW_MSG_CHAT_WITH_USER);
-
- if (isMasterDetail) {
- navigation.pop();
- }
+ navigation.pop();
goRoomMethod({ item, isMasterDetail });
},
[isMasterDetail, navigation]
diff --git a/app/views/RegisterView.tsx b/app/views/RegisterView.tsx
index 039cb277a..83789f84d 100644
--- a/app/views/RegisterView.tsx
+++ b/app/views/RegisterView.tsx
@@ -17,9 +17,9 @@ import { OutsideParamList } from '../stacks/types';
import { withTheme } from '../theme';
import { showErrorAlert, isValidEmail } from '../lib/methods/helpers';
import log, { events, logEvent } from '../lib/methods/helpers/log';
-import openLink from '../lib/methods/helpers/openLink';
import sharedStyles from './Styles';
import { Services } from '../lib/services';
+import UGCRules from '../containers/UserGeneratedContentRules';
const styles = StyleSheet.create({
title: {
@@ -50,7 +50,6 @@ const styles = StyleSheet.create({
});
interface IProps extends IBaseScreen {
- server: string;
Site_Name: string;
Gitlab_URL: string;
CAS_enabled: boolean;
@@ -156,14 +155,6 @@ class RegisterView extends React.Component {
this.setState({ saving: false });
};
- openContract = (route: string) => {
- const { server, theme } = this.props;
- if (!server) {
- return;
- }
- openLink(`${server}/${route}`, theme);
- };
-
renderCustomFields = () => {
const { customFields } = this.state;
const { Accounts_CustomFields } = this.props;
@@ -315,25 +306,7 @@ class RegisterView extends React.Component {
style={styles.registerButton}
/>
-
-
- {`${I18n.t('Onboarding_agree_terms')}\n`}
- this.openContract('terms-of-service')}
- >
- {I18n.t('Terms_of_Service')}
- {' '}
- {I18n.t('and')}
- this.openContract('privacy-policy')}
- >
- {' '}
- {I18n.t('Privacy_Policy')}
-
-
-
+
{showLoginButton ? (
@@ -352,7 +325,6 @@ class RegisterView extends React.Component {
}
const mapStateToProps = (state: IApplicationState) => ({
- server: state.server.server,
Site_Name: state.settings.Site_Name as string,
Gitlab_URL: state.settings.API_Gitlab_URL as string,
CAS_enabled: state.settings.CAS_enabled as boolean,
diff --git a/app/views/RoomInfoEditView/styles.ts b/app/views/RoomInfoEditView/styles.ts
index 3af91a742..a35fa1dfc 100644
--- a/app/views/RoomInfoEditView/styles.ts
+++ b/app/views/RoomInfoEditView/styles.ts
@@ -8,7 +8,7 @@ export default StyleSheet.create({
...sharedStyles.textAlignCenter
},
buttonInverted: {
- borderWidth: 2,
+ borderWidth: 1,
borderRadius: 4
},
buttonContainerDisabled: {
@@ -30,7 +30,7 @@ export default StyleSheet.create({
borderRadius: 4
},
buttonDanger: {
- borderWidth: 2,
+ borderWidth: 1,
borderRadius: 4
},
switchContainer: {
diff --git a/app/views/RoomInfoView/index.tsx b/app/views/RoomInfoView/index.tsx
index 9c7c9dde7..2744c0cc6 100644
--- a/app/views/RoomInfoView/index.tsx
+++ b/app/views/RoomInfoView/index.tsx
@@ -87,7 +87,7 @@ interface IRoomInfoViewProps {
StackNavigationProp
>;
route: RouteProp;
- rooms: string[];
+ subscribedRoom: string;
theme: TSupportedThemes;
isMasterDetail: boolean;
jitsiEnabled: boolean;
@@ -353,7 +353,7 @@ class RoomInfoView extends React.Component {
logEvent(events.RI_GO_ROOM_USER);
const { room } = this.state;
- const { rooms, navigation, isMasterDetail } = this.props;
+ const { navigation, isMasterDetail, subscribedRoom } = this.props;
const params = {
rid: room.rid,
name: getRoomTitle(room),
@@ -362,18 +362,14 @@ class RoomInfoView extends React.Component ({
- rooms: state.room.rooms,
+ subscribedRoom: state.room.subscribedRoom,
isMasterDetail: state.app.isMasterDetail,
jitsiEnabled: (state.settings.Jitsi_Enabled as boolean) || false,
editRoomPermission: state.permissions['edit-room'],
diff --git a/app/views/RoomMembersView/components/ActionsSection.tsx b/app/views/RoomMembersView/components/ActionsSection.tsx
index 928318918..7dcf34a0a 100644
--- a/app/views/RoomMembersView/components/ActionsSection.tsx
+++ b/app/views/RoomMembersView/components/ActionsSection.tsx
@@ -75,7 +75,8 @@ export default function ActionsSection({ rid, t, joined }: IActionsSection): Rea
route: 'SelectedUsersView',
params: {
title: i18n.t('Add_users'),
- nextAction: addUser
+ nextAction: addUser,
+ showSkipText: false
}
})
}
diff --git a/app/views/RoomMembersView/helpers.ts b/app/views/RoomMembersView/helpers.ts
index ff622dbf4..d1a7e8945 100644
--- a/app/views/RoomMembersView/helpers.ts
+++ b/app/views/RoomMembersView/helpers.ts
@@ -15,12 +15,7 @@ import { RoomTypes } from '../../lib/methods';
export type TRoomType = SubscriptionType.CHANNEL | SubscriptionType.GROUP | SubscriptionType.OMNICHANNEL;
const handleGoRoom = (item: TGoRoomItem, isMasterDetail: boolean): void => {
- if (isMasterDetail) {
- appNavigation.navigate('DrawerNavigator');
- } else {
- appNavigation.popToTop();
- }
- goRoom({ item, isMasterDetail });
+ goRoom({ item, isMasterDetail, popToRoot: true });
};
export const fetchRole = (role: string, selectedUser: TUserModel, roomRoles: any): boolean => {
diff --git a/app/views/RoomMembersView/index.tsx b/app/views/RoomMembersView/index.tsx
index 99f20d35c..24f652a91 100644
--- a/app/views/RoomMembersView/index.tsx
+++ b/app/views/RoomMembersView/index.tsx
@@ -110,8 +110,8 @@ const RoomMembersView = (): React.ReactElement => {
useEffect(() => {
const subscription = params?.room?.observe && params.room.observe().subscribe(changes => updateState({ room: changes }));
- setHeader(true);
- fetchMembers(true);
+ setHeader(false);
+ fetchMembers(false);
return () => subscription?.unsubscribe();
}, []);
diff --git a/app/views/RoomView/LeftButtons.tsx b/app/views/RoomView/LeftButtons.tsx
index eafef59b1..e05975551 100644
--- a/app/views/RoomView/LeftButtons.tsx
+++ b/app/views/RoomView/LeftButtons.tsx
@@ -72,6 +72,7 @@ const LeftButtons = ({
tintColor={themes[theme].headerTintColor}
labelStyle={{ fontSize, marginLeft }}
style={styles.container}
+ testID='header-back'
/>
);
}
diff --git a/app/views/RoomView/LoadMore/LoadMore.stories.tsx b/app/views/RoomView/LoadMore/LoadMore.stories.tsx
index affbad3ad..c95475823 100644
--- a/app/views/RoomView/LoadMore/LoadMore.stories.tsx
+++ b/app/views/RoomView/LoadMore/LoadMore.stories.tsx
@@ -11,28 +11,28 @@ export default {
title: 'RoomView/LoadMore'
};
-const load = () => new Promise(res => setTimeout(res, 1000));
-
-const LoadMore = ({ ...props }) => ;
+const LoadMore = ({ ...props }) => (
+
+);
export const Basic = () => (
<>
-
-
-
-
+
+
+
+
>
);
const ThemeStory = ({ theme }: { theme: TSupportedThemes }) => (
-
+
-
-
+
+
diff --git a/app/views/RoomView/LoadMore/index.tsx b/app/views/RoomView/LoadMore/index.tsx
index d08d82460..78689923e 100644
--- a/app/views/RoomView/LoadMore/index.tsx
+++ b/app/views/RoomView/LoadMore/index.tsx
@@ -1,12 +1,15 @@
-import React, { useCallback, useEffect, useState } from 'react';
+import React, { useEffect } from 'react';
import { ActivityIndicator, StyleSheet, Text } from 'react-native';
+import { useDispatch } from 'react-redux';
-import { MessageTypeLoad, themes } from '../../../lib/constants';
-import { MessageType } from '../../../definitions';
+import { MessageTypeLoad } from '../../../lib/constants';
+import { MessageType, RoomType } from '../../../definitions';
import { useTheme } from '../../../theme';
import Touch from '../../../containers/Touch';
import sharedStyles from '../../Styles';
import I18n from '../../../i18n';
+import { roomHistoryRequest } from '../../../actions/room';
+import { useAppSelector } from '../../../lib/hooks';
const styles = StyleSheet.create({
button: {
@@ -20,53 +23,50 @@ const styles = StyleSheet.create({
}
});
-const LoadMore = ({
- load,
- type,
- runOnRender
-}: {
- load: Function;
- type: MessageType;
- runOnRender: boolean;
-}): React.ReactElement => {
- const { theme } = useTheme();
- const [loading, setLoading] = useState(false);
+const LoadMore = React.memo(
+ ({
+ rid,
+ t,
+ loaderId,
+ type,
+ runOnRender
+ }: {
+ rid: string;
+ t: RoomType;
+ loaderId: string;
+ type: MessageType;
+ runOnRender: boolean;
+ }): React.ReactElement => {
+ const { colors } = useTheme();
+ const dispatch = useDispatch();
+ const loading = useAppSelector(state => state.room.historyLoaders.some(historyLoader => historyLoader === loaderId));
- const handleLoad = useCallback(async () => {
- try {
- if (loading) {
- return;
+ const handleLoad = () => dispatch(roomHistoryRequest({ rid, t, loaderId }));
+
+ useEffect(() => {
+ if (runOnRender) {
+ handleLoad();
}
- setLoading(true);
- await load();
- } finally {
- setLoading(false);
+ }, []);
+
+ let text = 'Load_More';
+ if (type === MessageTypeLoad.NEXT_CHUNK) {
+ text = 'Load_Newer';
}
- }, [loading]);
-
- useEffect(() => {
- if (runOnRender) {
- handleLoad();
+ if (type === MessageTypeLoad.PREVIOUS_CHUNK) {
+ text = 'Load_Older';
}
- }, []);
- let text = 'Load_More';
- if (type === MessageTypeLoad.NEXT_CHUNK) {
- text = 'Load_Newer';
+ return (
+
+ {loading ? (
+
+ ) : (
+ {I18n.t(text)}
+ )}
+
+ );
}
- if (type === MessageTypeLoad.PREVIOUS_CHUNK) {
- text = 'Load_Older';
- }
-
- return (
-
- {loading ? (
-
- ) : (
- {I18n.t(text)}
- )}
-
- );
-};
+);
export default LoadMore;
diff --git a/app/views/RoomView/UploadProgress.tsx b/app/views/RoomView/UploadProgress.tsx
index a6791c3e2..6c78ef204 100644
--- a/app/views/RoomView/UploadProgress.tsx
+++ b/app/views/RoomView/UploadProgress.tsx
@@ -112,9 +112,10 @@ class UploadProgress extends Component {
this.ranInitialUploadCheck = true;
+ const { rid } = this.props;
const { uploads } = this.state;
uploads.forEach(async u => {
- if (!isUploadActive(u.path)) {
+ if (!isUploadActive(u.path, rid)) {
try {
const db = database.active;
await db.write(async () => {
@@ -141,8 +142,9 @@ class UploadProgress extends Component {
+ const { rid } = this.props;
try {
- await cancelUpload(item);
+ await cancelUpload(item, rid);
} catch (e) {
log(e);
}
@@ -158,7 +160,7 @@ class UploadProgress extends Component {
if (appState === 'foreground' && appState !== prevProps.appState && this.rid) {
// Fire List.query() just to keep observables working
- if (this.list && this.list.current) {
+ if (this.list && this.list.current && !isIOS) {
this.list.current?.query();
}
}
@@ -685,7 +686,11 @@ class RoomView extends React.Component {
await loadThreadMessages({ tmid: this.tmid, rid: this.rid });
} else {
const newLastOpen = new Date();
- await RoomServices.getMessages(room);
+ await RoomServices.getMessages({
+ rid: room.rid,
+ t: room.t as RoomType,
+ ...('lastOpen' in room && room.lastOpen ? { lastOpen: room.lastOpen } : {})
+ });
// if room is joined
if (joined && 'id' in room) {
@@ -833,13 +838,15 @@ class RoomView extends React.Component {
showReactionPicker = () => {
const { showActionSheet } = this.props;
const { selectedMessage } = this.state;
- showActionSheet({
- children: (
-
- ),
- snaps: [400],
- enableContentPanningGesture: false
- });
+ setTimeout(() => {
+ showActionSheet({
+ children: (
+
+ ),
+ snaps: [400],
+ enableContentPanningGesture: false
+ });
+ }, 100);
};
onReactionInit = (message: TAnyMessageModel) => {
@@ -910,15 +917,15 @@ class RoomView extends React.Component {
onDiscussionPress = debounce(
async (item: TAnyMessageModel) => {
- const { navigation } = this.props;
+ const { isMasterDetail } = this.props;
if (!item.drid) return;
const sub = await getRoomInfo(item.drid);
- navigation.push('RoomView', {
- rid: item.drid as string,
- prid: item?.subscription?.id,
- name: item.msg,
- t: (sub?.t as SubscriptionType) || (this.t as SubscriptionType)
- });
+ if (sub) {
+ goRoom({
+ item: sub as TGoRoomItem,
+ isMasterDetail
+ });
+ }
},
1000,
true
@@ -987,6 +994,11 @@ class RoomView extends React.Component {
} else {
this.navToThread(message);
}
+ } else if (!message.tmid && message.rid === this.rid && this.t === 'thread' && !message.replies) {
+ /**
+ * if the user is within a thread and the message that he is trying to jump to, is a message in the main room
+ */
+ return this.navToRoom(message);
} else {
/**
* if it's from server, we don't have it saved locally and so we fetch surroundings
@@ -1198,12 +1210,12 @@ class RoomView extends React.Component {
};
navToRoom = async (message: TAnyMessageModel) => {
- const { navigation, isMasterDetail } = this.props;
+ const { isMasterDetail } = this.props;
const roomInfo = await getRoomInfo(message.rid);
+
return goRoom({
item: roomInfo as TGoRoomItem,
isMasterDetail,
- navigationMethod: navigation.push,
jumpToMessageId: message.id
});
};
@@ -1294,16 +1306,6 @@ class RoomView extends React.Component {
return false;
};
- onLoadMoreMessages = (loaderItem: TAnyMessageModel) => {
- const { room } = this.state;
- return RoomServices.getMoreMessages({
- rid: room.rid,
- tmid: this.tmid,
- t: room.t as any,
- loaderItem
- });
- };
-
goToCannedResponses = () => {
const { room } = this.state;
Navigation.navigate('CannedResponsesListView', { rid: room.rid });
@@ -1330,7 +1332,9 @@ class RoomView extends React.Component {
if (item.t && MESSAGE_TYPE_ANY_LOAD.includes(item.t as MessageTypeLoad)) {
content = (
this.onLoadMoreMessages(item)}
+ rid={room.rid}
+ t={room.t as RoomType}
+ loaderId={item.id}
type={item.t}
runOnRender={item.t === MessageTypeLoad.MORE && !previousItem}
/>
diff --git a/app/views/RoomView/services/getMessages.ts b/app/views/RoomView/services/getMessages.ts
index 8bb298625..b05fadeff 100644
--- a/app/views/RoomView/services/getMessages.ts
+++ b/app/views/RoomView/services/getMessages.ts
@@ -1,23 +1,22 @@
-import { loadMessagesForRoom, loadMissedMessages } from '../../../lib/methods';
+import { loadMessagesForRoom, loadMissedMessages, RoomTypes } from '../../../lib/methods';
-// TODO: clarify latest vs lastOpen
-const getMessages = ({
- rid,
- t,
- latest,
- lastOpen,
- loaderItem
-}: {
+interface IBaseParams {
rid: string;
- t?: string;
- latest?: Date;
- lastOpen?: Date;
- loaderItem?: any; // TODO: type this
-}): Promise => {
- if (lastOpen) {
- return loadMissedMessages({ rid, lastOpen });
+}
+
+interface ILoadMessagesForRoomParams extends IBaseParams {
+ t: RoomTypes;
+}
+
+interface ILoadMissedMessagesParams extends IBaseParams {
+ lastOpen: Date;
+}
+
+const getMessages = (params: ILoadMissedMessagesParams | ILoadMessagesForRoomParams): Promise => {
+ if ('lastOpen' in params) {
+ return loadMissedMessages(params);
}
- return loadMessagesForRoom({ rid, t: t as any, latest, loaderItem });
+ return loadMessagesForRoom(params);
};
export default getMessages;
diff --git a/app/views/RoomView/services/index.ts b/app/views/RoomView/services/index.ts
index 47565eabe..aeb43669f 100644
--- a/app/views/RoomView/services/index.ts
+++ b/app/views/RoomView/services/index.ts
@@ -1,9 +1,7 @@
import getMessages from './getMessages';
-import getMoreMessages from './getMoreMessages';
import getMessageInfo from './getMessageInfo';
export default {
getMessages,
- getMoreMessages,
getMessageInfo
};
diff --git a/app/views/RoomsListView/index.tsx b/app/views/RoomsListView/index.tsx
index 84062f715..ce1ac8004 100644
--- a/app/views/RoomsListView/index.tsx
+++ b/app/views/RoomsListView/index.tsx
@@ -6,8 +6,10 @@ import Orientation from 'react-native-orientation-locker';
import { Q } from '@nozbe/watermelondb';
import { withSafeAreaInsets } from 'react-native-safe-area-context';
import { Subscription } from 'rxjs';
-import { StackNavigationOptions } from '@react-navigation/stack';
+import { StackNavigationOptions, StackNavigationProp } from '@react-navigation/stack';
import { Header } from '@react-navigation/elements';
+import { CompositeNavigationProp, RouteProp } from '@react-navigation/native';
+import { Dispatch } from 'redux';
import database from '../../lib/database';
import RoomItem, { ROW_HEIGHT, ROW_HEIGHT_CONDENSED } from '../../containers/RoomItem';
@@ -20,7 +22,7 @@ import StatusBar from '../../containers/StatusBar';
import ActivityIndicator from '../../containers/ActivityIndicator';
import { serverInitAdd } from '../../actions/server';
import { animateNextTransition } from '../../lib/methods/helpers/layoutAnimation';
-import { withTheme } from '../../theme';
+import { TSupportedThemes, withTheme } from '../../theme';
import EventEmitter from '../../lib/methods/helpers/events';
import { themedHeader } from '../../lib/methods/helpers/navigation';
import {
@@ -39,20 +41,12 @@ import { goRoom } from '../../lib/methods/helpers/goRoom';
import SafeAreaView from '../../containers/SafeAreaView';
import { withDimensions } from '../../dimensions';
import { getInquiryQueueSelector } from '../../ee/omnichannel/selectors/inquiry';
-import {
- IApplicationState,
- IBaseScreen,
- ISubscription,
- IUser,
- RootEnum,
- SubscriptionType,
- TSubscriptionModel
-} from '../../definitions';
+import { IApplicationState, ISubscription, IUser, RootEnum, SubscriptionType, TSubscriptionModel } from '../../definitions';
import styles from './styles';
import ServerDropdown from './ServerDropdown';
import ListHeader, { TEncryptionBanner } from './ListHeader';
import RoomsListHeaderView from './Header';
-import { ChatsStackParamList } from '../../stacks/types';
+import { ChatsStackParamList, DrawerParamList } from '../../stacks/types';
import { RoomTypes, search } from '../../lib/methods';
import {
getRoomAvatar,
@@ -67,7 +61,16 @@ import {
import { E2E_BANNER_TYPE, DisplayMode, SortBy, MAX_SIDEBAR_WIDTH, themes } from '../../lib/constants';
import { Services } from '../../lib/services';
-interface IRoomsListViewProps extends IBaseScreen {
+type TNavigation = CompositeNavigationProp<
+ StackNavigationProp,
+ CompositeNavigationProp, StackNavigationProp>
+>;
+
+interface IRoomsListViewProps {
+ navigation: TNavigation;
+ route: RouteProp;
+ theme: TSupportedThemes;
+ dispatch: Dispatch;
[key: string]: IUser | string | boolean | ISubscription[] | number | object | TEncryptionBanner;
user: IUser;
server: string;
@@ -83,7 +86,7 @@ interface IRoomsListViewProps extends IBaseScreen {
logEvent(events.RL_SEARCH);
- const { dispatch } = this.props;
+ const { dispatch, showServerDropdown } = this.props;
this.internalSetState({ searching: true }, () => {
+ if (showServerDropdown) {
+ dispatch(closeServerDropdown());
+ }
dispatch(openSearchHeader());
this.handleSearch('');
this.setHeader();
@@ -765,9 +771,9 @@ class RoomsListView extends React.Component {
logEvent(events.RL_GO_ROOM);
const { item: currentItem } = this.state;
- const { rooms } = this.props;
- // @ts-ignore
- if (currentItem?.rid === item.rid || rooms?.includes(item.rid)) {
+ const { subscribedRoom } = this.props;
+
+ if (currentItem?.rid === item.rid || subscribedRoom === item.rid) {
return;
}
// Only mark room as focused when in master detail layout
@@ -1040,7 +1046,7 @@ const mapStateToProps = (state: IApplicationState) => ({
showUnread: state.sortPreferences.showUnread,
useRealName: state.settings.UI_Use_Real_Name,
StoreLastMessage: state.settings.Store_Last_Message,
- rooms: state.room.rooms,
+ subscribedRoom: state.room.subscribedRoom,
queueSize: getInquiryQueueSelector(state).length,
inquiryEnabled: state.inquiry.enabled,
encryptionBanner: state.encryption.banner,
diff --git a/app/views/SelectedUsersView/index.tsx b/app/views/SelectedUsersView/index.tsx
index ac4693d99..0d4d696e9 100644
--- a/app/views/SelectedUsersView/index.tsx
+++ b/app/views/SelectedUsersView/index.tsx
@@ -34,7 +34,7 @@ const SelectedUsersView = () => {
const [chats, setChats] = useState([]);
const [search, setSearch] = useState([]);
- const { maxUsers, showButton, title, buttonText, nextAction } = useRoute().params;
+ const { maxUsers, showButton, title, buttonText, showSkipText = true, nextAction } = useRoute().params;
const navigation = useNavigation();
const { colors } = useTheme();
@@ -58,20 +58,25 @@ const SelectedUsersView = () => {
const isGroupChat = () => maxUsers && maxUsers > 2;
+ const handleButtonTitle = (buttonTextHeader: string) => {
+ if (users.length > 0) {
+ return buttonTextHeader;
+ }
+ return showSkipText ? I18n.t('Skip') : '';
+ };
+
useLayoutEffect(() => {
const titleHeader = title ?? I18n.t('Select_Members');
const buttonTextHeader = buttonText ?? I18n.t('Next');
const nextActionHeader = nextAction ?? (() => {});
+ const buttonTitle = handleButtonTitle(buttonTextHeader);
const options = {
title: titleHeader,
headerRight: () =>
- (!maxUsers || showButton || (isGroupChat() && users.length > 1)) && (
+ (!maxUsers || showButton || (isGroupChat() && users.length > 1)) &&
+ !!buttonTitle && (
- 0 ? buttonTextHeader : I18n.t('Skip')}
- onPress={nextActionHeader}
- testID='selected-users-view-submit'
- />
+
)
};
diff --git a/app/views/ShareListView/index.tsx b/app/views/ShareListView/index.tsx
index a0c718c8e..5e0bc61f8 100644
--- a/app/views/ShareListView/index.tsx
+++ b/app/views/ShareListView/index.tsx
@@ -250,7 +250,8 @@ class ShareListView extends React.Component {
prid: item.prid,
uids: item.uids,
usernames: item.usernames,
- topic: item.topic
+ topic: item.topic,
+ teamMain: item.teamMain
}));
};
@@ -380,6 +381,7 @@ class ShareListView extends React.Component {
type={item.prid ? 'discussion' : item.t}
onPress={() => this.shareMessage(item)}
testID={`share-extension-item-${item.name}`}
+ teamMain={item.teamMain}
/>
);
};
diff --git a/app/views/ShareView/index.tsx b/app/views/ShareView/index.tsx
index b9379d35e..8a0dffcb6 100644
--- a/app/views/ShareView/index.tsx
+++ b/app/views/ShareView/index.tsx
@@ -22,7 +22,15 @@ import Thumbs from './Thumbs';
import Preview from './Preview';
import Header from './Header';
import styles from './styles';
-import { IApplicationState, IServer, IShareAttachment, IUser, TSubscriptionModel, TThreadModel } from '../../definitions';
+import {
+ IApplicationState,
+ IMessage,
+ IServer,
+ IShareAttachment,
+ IUser,
+ TSubscriptionModel,
+ TThreadModel
+} from '../../definitions';
import { sendFileMessage, sendMessage } from '../../lib/methods';
import { hasPermission, isAndroid, canUploadFile, isReadOnly, isBlocked } from '../../lib/methods/helpers';
@@ -50,11 +58,14 @@ interface IShareViewProps {
server: string;
FileUpload_MediaTypeWhiteList?: string;
FileUpload_MaxFileSize?: number;
+ replying?: boolean;
+ replyingMessage?: IMessage;
}
interface IMessageBoxShareView {
text: string;
forceUpdate(): void;
+ formatReplyMessage: (replyingMessage: IMessage, message?: any) => Promise;
}
class ShareView extends Component {
@@ -62,6 +73,9 @@ class ShareView extends Component {
private files: any[];
private isShareExtension: boolean;
private serverInfo: IServer;
+ private replying?: boolean;
+ private replyingMessage?: IMessage;
+ private closeReply?: Function;
constructor(props: IShareViewProps) {
super(props);
@@ -69,6 +83,9 @@ class ShareView extends Component {
this.files = props.route.params?.attachments ?? [];
this.isShareExtension = props.route.params?.isShareExtension;
this.serverInfo = props.route.params?.serverInfo ?? {};
+ this.replying = props.route.params?.replying;
+ this.replyingMessage = props.route.params?.replyingMessage;
+ this.closeReply = props.route.params?.closeReply;
this.state = {
selected: {} as IShareAttachment,
@@ -92,6 +109,12 @@ class ShareView extends Component {
componentWillUnmount = () => {
console.countReset(`${this.constructor.name}.render calls`);
+ // close reply from the RoomView
+ setTimeout(() => {
+ if (this.closeReply) {
+ this.closeReply();
+ }
+ }, 300);
};
setHeader = () => {
@@ -214,6 +237,11 @@ class ShareView extends Component {
navigation.pop();
}
+ let msg: string | undefined;
+ if (this.replying && this.replyingMessage) {
+ msg = await this.messagebox.current?.formatReplyMessage(this.replyingMessage);
+ }
+
try {
// Send attachment
if (attachments.length) {
@@ -228,7 +256,8 @@ class ShareView extends Component {
size,
type,
path,
- store: 'Uploads'
+ store: 'Uploads',
+ msg
},
thread?.id,
server,
@@ -313,11 +342,12 @@ class ShareView extends Component {
roomType={room.t}
theme={theme}
onSubmit={this.send}
- message={{ msg: selected?.description ?? '' }}
+ message={this.replyingMessage}
navigation={navigation}
isFocused={navigation.isFocused}
iOSScrollBehavior={NativeModules.KeyboardTrackingViewManager?.KeyboardTrackingScrollBehaviorNone}
isActionsEnabled={false}
+ replying={this.replying}
>
(
- navigation.pop()} tintColor={themes[theme].headerTintColor} />
+ navigation.pop()}
+ tintColor={themes[theme].headerTintColor}
+ testID='header-back'
+ />
),
headerTitle: () => (
@@ -317,7 +322,7 @@ class TeamChannelsView extends React.Component {
logEvent(events.TC_GO_ROOM);
- const { navigation, isMasterDetail } = this.props;
+ const { isMasterDetail } = this.props;
try {
let params = {};
const result = await Services.getRoomInfo(item._id);
@@ -330,10 +335,7 @@ class TeamChannelsView extends React.Component (
- navigation.pop()} tintColor={themes[theme].headerTintColor} />
+ navigation.pop()}
+ tintColor={themes[theme].headerTintColor}
+ testID='header-back'
+ />
),
headerRight: () => (
-
+
)
};
@@ -237,7 +242,7 @@ class ThreadMessagesView extends React.Component ({ messages: [...messages, ...update] }));
return;
}
diff --git a/app/views/UserNotificationPreferencesView/index.tsx b/app/views/UserNotificationPreferencesView/index.tsx
index eca0d91a5..f624f5d92 100644
--- a/app/views/UserNotificationPreferencesView/index.tsx
+++ b/app/views/UserNotificationPreferencesView/index.tsx
@@ -17,7 +17,7 @@ import log from '../../lib/methods/helpers/log';
const UserNotificationPreferencesView = () => {
const [preferences, setPreferences] = useState({} as INotificationPreferences);
- const [loading, setLoading] = useState(false);
+ const [loading, setLoading] = useState(true);
const navigation = useNavigation>();
const userId = useAppSelector(state => getUserSelector(state).id);
@@ -33,10 +33,11 @@ const UserNotificationPreferencesView = () => {
try {
const result = await Services.getUserPreferences(userId);
if (result.success) {
- setLoading(true);
+ setLoading(false);
setPreferences(result.preferences);
}
} catch (error) {
+ setLoading(false);
log(error);
}
}
@@ -63,6 +64,8 @@ const UserNotificationPreferencesView = () => {
{loading ? (
+
+ ) : (
<>
@@ -103,8 +106,6 @@ const UserNotificationPreferencesView = () => {
>
- ) : (
-
)}
diff --git a/e2e/README.md b/e2e/README.md
index 53379ff4c..2ab010cb1 100644
--- a/e2e/README.md
+++ b/e2e/README.md
@@ -13,7 +13,7 @@
Either
-* Install Rocket.Chat meteor app by following this [guide](https://docs.rocket.chat/guides/developer/quick-start).
+* Install Rocket.Chat meteor app by following this [guide](https://developer.rocket.chat/rocket.chat/rocket-chat-environment-setup).
Or
diff --git a/e2e/tests/assorted/09-joinfromdirectory.spec.ts b/e2e/tests/assorted/09-joinfromdirectory.spec.ts
index ab181b9ed..c9e19efb2 100644
--- a/e2e/tests/assorted/09-joinfromdirectory.spec.ts
+++ b/e2e/tests/assorted/09-joinfromdirectory.spec.ts
@@ -1,5 +1,6 @@
import data from '../../data';
import { navigateToLogin, login, tapBack, sleep } from '../../helpers/app';
+import { sendMessage } from '../../helpers/data_setup';
const testuser = data.users.regular;
@@ -26,6 +27,13 @@ describe('Join room from directory', () => {
});
describe('Usage', () => {
+ const threadMessage = `thread-${data.random}`;
+ before(async () => {
+ const result = await sendMessage(data.users.alternate, data.channels.detoxpublic.name, threadMessage);
+ const threadId = result.message._id;
+ await sendMessage(data.users.alternate, result.message.rid, data.random, threadId);
+ });
+
it('should tap directory', async () => {
await element(by.id('rooms-list-view-directory')).tap();
await waitFor(element(by.id('directory-view')))
@@ -37,6 +45,20 @@ describe('Join room from directory', () => {
await navigateToRoom(data.channels.detoxpublic.name);
});
+ it('should navigate to thread messages view and load messages', async () => {
+ await waitFor(element(by.id('room-view-header-threads')))
+ .toBeVisible()
+ .withTimeout(2000);
+ await element(by.id('room-view-header-threads')).tap();
+ await waitFor(element(by.id(`thread-messages-view-${threadMessage}`)))
+ .toBeVisible()
+ .withTimeout(2000);
+ await tapBack();
+ await waitFor(element(by.id('room-view-header-threads')))
+ .toBeVisible()
+ .withTimeout(2000);
+ });
+
it('should search user and navigate', async () => {
await tapBack();
await element(by.id('rooms-list-view-directory')).tap();
diff --git a/e2e/tests/assorted/14-in-app-notification.spec.ts b/e2e/tests/assorted/14-in-app-notification.spec.ts
new file mode 100644
index 000000000..23381e787
--- /dev/null
+++ b/e2e/tests/assorted/14-in-app-notification.spec.ts
@@ -0,0 +1,72 @@
+import { expect } from 'detox';
+
+import data from '../../data';
+import { navigateToLogin, login, sleep, tapBack } from '../../helpers/app';
+import { sendMessage, post } from '../../helpers/data_setup';
+
+describe('InApp Notification', () => {
+ let dmCreatedRid: string;
+
+ before(async () => {
+ await device.launchApp({ permissions: { notifications: 'YES' }, delete: true });
+ await navigateToLogin();
+ await login(data.users.regular.username, data.users.regular.password);
+ const result = await post(`im.create`, { username: data.users.alternate.username });
+ dmCreatedRid = result.data.room.rid;
+ });
+
+ describe('receive in RoomsListView', () => {
+ const text = 'Message in DM';
+ it('should have rooms list screen', async () => {
+ await expect(element(by.id('rooms-list-view'))).toBeVisible();
+ });
+
+ it('should send direct message from user alternate to user regular', async () => {
+ await sleep(1000);
+ await sendMessage(data.users.alternate, dmCreatedRid, text);
+ });
+
+ it('should tap on InApp Notification', async () => {
+ await waitFor(element(by.id(`in-app-notification-${text}`)))
+ .toExist()
+ .withTimeout(2000);
+ await sleep(500);
+ await element(by.id(`in-app-notification-${text}`)).tap();
+ await waitFor(element(by.id('room-view')))
+ .toBeVisible()
+ .withTimeout(5000);
+ await expect(element(by.id(`room-view-title-${data.users.alternate.username}`))).toExist();
+ });
+ });
+
+ describe('receive in another room', () => {
+ const text = 'Another msg';
+ it('should back to RoomsListView and open the channel Detox Public', async () => {
+ await tapBack();
+ await sleep(500);
+ await element(by.id(`rooms-list-view-item-${data.userRegularChannels.detoxpublic.name}`)).tap();
+ await waitFor(element(by.id('room-view')))
+ .toBeVisible()
+ .withTimeout(5000);
+ await expect(element(by.id(`room-view-title-${data.userRegularChannels.detoxpublic.name}`))).toExist();
+ });
+
+ it('should receive and tap InAppNotification in another room', async () => {
+ await sendMessage(data.users.alternate, dmCreatedRid, text);
+ await waitFor(element(by.id(`in-app-notification-${text}`)))
+ .toExist()
+ .withTimeout(2000);
+ await sleep(500);
+ await element(by.id(`in-app-notification-${text}`)).tap();
+ await sleep(500);
+ await expect(element(by.id('room-header'))).toExist();
+ await expect(element(by.id(`room-view-title-${data.users.alternate.username}`))).toExist();
+ });
+
+ it('should back to RoomsListView', async () => {
+ await tapBack();
+ await sleep(500);
+ await expect(element(by.id('rooms-list-view'))).toBeVisible();
+ });
+ });
+});
diff --git a/e2e/tests/room/09-jumptomessage.spec.ts b/e2e/tests/room/09-jumptomessage.spec.ts
index c2aea7ffb..c1ad32a05 100644
--- a/e2e/tests/room/09-jumptomessage.spec.ts
+++ b/e2e/tests/room/09-jumptomessage.spec.ts
@@ -200,7 +200,7 @@ describe('Room', () => {
const expectThreadMessages = async (message: string) => {
await waitFor(element(by.id('room-view-title-thread 1')))
.toExist()
- .withTimeout(5000);
+ .withTimeout(10000);
await waitFor(element(by[textMatcher](message)).atIndex(0))
.toExist()
.withTimeout(10000);
diff --git a/e2e/tests/team/02-team.spec.ts b/e2e/tests/team/02-team.spec.ts
index 382ed1ddf..5e22550a8 100644
--- a/e2e/tests/team/02-team.spec.ts
+++ b/e2e/tests/team/02-team.spec.ts
@@ -199,6 +199,14 @@ describe('Team', () => {
});
it('should add existing channel to team', async () => {
+ await navigateToRoom(team);
+ await waitFor(element(by.id('room-view-header-team-channels')))
+ .toExist()
+ .withTimeout(5000);
+ await element(by.id('room-view-header-team-channels')).tap();
+ await waitFor(element(by.id('team-channels-view')))
+ .toExist()
+ .withTimeout(5000);
await element(by.id('team-channels-view-create')).tap();
await waitFor(element(by.id('add-channel-team-view')))
.toExist()
diff --git a/ios/Gemfile.lock b/ios/Gemfile.lock
index ef4092376..4c487b870 100644
--- a/ios/Gemfile.lock
+++ b/ios/Gemfile.lock
@@ -9,28 +9,28 @@ GEM
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
- addressable (2.8.0)
- public_suffix (>= 2.0.2, < 5.0)
+ addressable (2.8.1)
+ public_suffix (>= 2.0.2, < 6.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
artifactory (3.0.15)
atomos (0.1.3)
aws-eventstream (1.2.0)
- aws-partitions (1.600.0)
- aws-sdk-core (3.131.2)
+ aws-partitions (1.696.0)
+ aws-sdk-core (3.169.0)
aws-eventstream (~> 1, >= 1.0.2)
- aws-partitions (~> 1, >= 1.525.0)
- aws-sigv4 (~> 1.1)
+ aws-partitions (~> 1, >= 1.651.0)
+ aws-sigv4 (~> 1.5)
jmespath (~> 1, >= 1.6.1)
- aws-sdk-kms (1.57.0)
- aws-sdk-core (~> 3, >= 3.127.0)
+ aws-sdk-kms (1.62.0)
+ aws-sdk-core (~> 3, >= 3.165.0)
aws-sigv4 (~> 1.1)
- aws-sdk-s3 (1.114.0)
- aws-sdk-core (~> 3, >= 3.127.0)
+ aws-sdk-s3 (1.118.0)
+ aws-sdk-core (~> 3, >= 3.165.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.4)
- aws-sigv4 (1.5.0)
+ aws-sigv4 (1.5.2)
aws-eventstream (~> 1, >= 1.0.2)
babosa (1.0.4)
claide (1.1.0)
@@ -81,13 +81,13 @@ GEM
rake (>= 12.0.0, < 14.0.0)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
- dotenv (2.7.6)
+ dotenv (2.8.1)
emoji_regex (3.2.3)
escape (0.0.4)
ethon (0.15.0)
ffi (>= 1.15.0)
- excon (0.92.3)
- faraday (1.10.0)
+ excon (0.97.1)
+ faraday (1.10.3)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
@@ -116,7 +116,7 @@ GEM
faraday_middleware (1.2.0)
faraday (~> 1.0)
fastimage (2.2.6)
- fastlane (2.206.2)
+ fastlane (2.211.0)
CFPropertyList (>= 2.3, < 4.0.0)
addressable (>= 2.8, < 3.0.0)
artifactory (~> 3.0)
@@ -164,9 +164,9 @@ GEM
gh_inspector (1.1.3)
git (1.11.0)
rchardet (~> 1.8)
- google-apis-androidpublisher_v3 (0.22.0)
- google-apis-core (>= 0.5, < 2.a)
- google-apis-core (0.6.0)
+ google-apis-androidpublisher_v3 (0.32.0)
+ google-apis-core (>= 0.9.1, < 2.a)
+ google-apis-core (0.9.5)
addressable (~> 2.5, >= 2.5.1)
googleauth (>= 0.16.2, < 2.a)
httpclient (>= 2.8.1, < 3.a)
@@ -175,27 +175,27 @@ GEM
retriable (>= 2.0, < 4.a)
rexml
webrick
- google-apis-iamcredentials_v1 (0.12.0)
- google-apis-core (>= 0.6, < 2.a)
- google-apis-playcustomapp_v1 (0.9.0)
- google-apis-core (>= 0.6, < 2.a)
- google-apis-storage_v1 (0.15.0)
- google-apis-core (>= 0.5, < 2.a)
+ google-apis-iamcredentials_v1 (0.16.0)
+ google-apis-core (>= 0.9.1, < 2.a)
+ google-apis-playcustomapp_v1 (0.12.0)
+ google-apis-core (>= 0.9.1, < 2.a)
+ google-apis-storage_v1 (0.19.0)
+ google-apis-core (>= 0.9.0, < 2.a)
google-cloud-core (1.6.0)
google-cloud-env (~> 1.0)
google-cloud-errors (~> 1.0)
google-cloud-env (1.6.0)
faraday (>= 0.17.3, < 3.0)
- google-cloud-errors (1.2.0)
- google-cloud-storage (1.36.2)
+ google-cloud-errors (1.3.0)
+ google-cloud-storage (1.44.0)
addressable (~> 2.8)
digest-crc (~> 0.4)
google-apis-iamcredentials_v1 (~> 0.1)
- google-apis-storage_v1 (~> 0.1)
+ google-apis-storage_v1 (~> 0.19.0)
google-cloud-core (~> 1.6)
googleauth (>= 0.16.2, < 2.a)
mini_mime (~> 1.0)
- googleauth (1.2.0)
+ googleauth (1.3.0)
faraday (>= 0.17.3, < 3.a)
jwt (>= 1.4, < 3.0)
memoist (~> 0.16)
@@ -208,11 +208,11 @@ GEM
httpclient (2.8.3)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
- jmespath (1.6.1)
- json (2.6.2)
- jwt (2.4.1)
+ jmespath (1.6.2)
+ json (2.6.3)
+ jwt (2.6.0)
memoist (0.16.2)
- mini_magick (4.11.0)
+ mini_magick (4.12.0)
mini_mime (1.1.2)
minitest (5.16.1)
molinillo (0.8.0)
diff --git a/ios/Podfile b/ios/Podfile
index 306f8ced6..659ca2481 100644
--- a/ios/Podfile
+++ b/ios/Podfile
@@ -35,8 +35,6 @@ def all_pods
end
abstract_target 'defaults' do
- # force use our own JitsiMeetSDK
- pod 'JitsiMeetSDK', :git => 'https://github.com/RocketChat/jitsi-meet-ios-sdk-releases.git'
all_pods
@@ -52,6 +50,9 @@ post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
+ config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
+ config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
+ config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
case target.name
when 'RCT-Folly'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
diff --git a/ios/Podfile.lock b/ios/Podfile.lock
index c7fa41434..cf0c0eacf 100644
--- a/ios/Podfile.lock
+++ b/ios/Podfile.lock
@@ -2,6 +2,8 @@ PODS:
- boost (1.76.0)
- BugsnagReactNative (7.10.5):
- React-Core
+ - BVLinearGradient (2.6.2):
+ - React-Core
- DoubleConversion (1.1.6)
- EXAppleAuthentication (4.2.1):
- ExpoModulesCore
@@ -80,54 +82,56 @@ PODS:
- GoogleUtilities/Network (~> 7.7)
- "GoogleUtilities/NSData+zlib (~> 7.7)"
- nanopb (~> 2.30908.0)
- - GoogleDataTransport (9.1.4):
+ - GoogleDataTransport (9.2.0):
- GoogleUtilities/Environment (~> 7.7)
- nanopb (< 2.30910.0, >= 2.30908.0)
- PromisesObjC (< 3.0, >= 1.2)
- - GoogleUtilities/AppDelegateSwizzler (7.7.0):
+ - GoogleUtilities/AppDelegateSwizzler (7.11.0):
- GoogleUtilities/Environment
- GoogleUtilities/Logger
- GoogleUtilities/Network
- - GoogleUtilities/Environment (7.7.0):
+ - GoogleUtilities/Environment (7.11.0):
- PromisesObjC (< 3.0, >= 1.2)
- - GoogleUtilities/Logger (7.7.0):
+ - GoogleUtilities/Logger (7.11.0):
- GoogleUtilities/Environment
- - GoogleUtilities/MethodSwizzler (7.7.0):
+ - GoogleUtilities/MethodSwizzler (7.11.0):
- GoogleUtilities/Logger
- - GoogleUtilities/Network (7.7.0):
+ - GoogleUtilities/Network (7.11.0):
- GoogleUtilities/Logger
- "GoogleUtilities/NSData+zlib"
- GoogleUtilities/Reachability
- - "GoogleUtilities/NSData+zlib (7.7.0)"
- - GoogleUtilities/Reachability (7.7.0):
+ - "GoogleUtilities/NSData+zlib (7.11.0)"
+ - GoogleUtilities/Reachability (7.11.0):
- GoogleUtilities/Logger
- - GoogleUtilities/UserDefaults (7.7.0):
+ - GoogleUtilities/UserDefaults (7.11.0):
- GoogleUtilities/Logger
- hermes-engine (0.11.0)
- iosMath (0.9.4)
- - JitsiMeetSDK (3.6.0)
+ - JitsiMeetSDKLite (7.0.1-lite):
+ - JitsiWebRTC (~> 106.0)
+ - JitsiWebRTC (106.0.0)
- KeyCommands (2.0.3):
- React
- libevent (2.1.12)
- - libwebp (1.2.1):
- - libwebp/demux (= 1.2.1)
- - libwebp/mux (= 1.2.1)
- - libwebp/webp (= 1.2.1)
- - libwebp/demux (1.2.1):
+ - libwebp (1.2.4):
+ - libwebp/demux (= 1.2.4)
+ - libwebp/mux (= 1.2.4)
+ - libwebp/webp (= 1.2.4)
+ - libwebp/demux (1.2.4):
- libwebp/webp
- - libwebp/mux (1.2.1):
+ - libwebp/mux (1.2.4):
- libwebp/demux
- - libwebp/webp (1.2.1)
- - MMKV (1.2.10):
- - MMKVCore (~> 1.2.10)
- - MMKVCore (1.2.13)
+ - libwebp/webp (1.2.4)
+ - MMKV (1.2.13):
+ - MMKVCore (~> 1.2.13)
+ - MMKVCore (1.2.15)
- nanopb (2.30908.0):
- nanopb/decode (= 2.30908.0)
- nanopb/encode (= 2.30908.0)
- nanopb/decode (2.30908.0)
- nanopb/encode (2.30908.0)
- OpenSSL-Universal (1.1.1100)
- - PromisesObjC (2.1.0)
+ - PromisesObjC (2.1.1)
- RCT-Folly (2021.06.28.00-v2):
- boost
- DoubleConversion
@@ -360,17 +364,17 @@ PODS:
- React-Core
- react-native-cookies (6.2.1):
- React-Core
- - react-native-document-picker (8.1.0):
+ - react-native-document-picker (8.1.2):
- React-Core
- - react-native-jitsi-meet (3.6.0):
- - JitsiMeetSDK (= 3.6.0)
- - React
- - react-native-mmkv-storage (0.7.6):
- - MMKV (= 1.2.10)
+ - react-native-jitsimeet-custom (2.5.0):
+ - JitsiMeetSDKLite (= 7.0.1-lite)
+ - React-Core
+ - react-native-mmkv-storage (0.8.0):
+ - MMKV (= 1.2.13)
- React-Core
- react-native-netinfo (6.0.0):
- React-Core
- - react-native-notifications (4.3.2):
+ - react-native-notifications (4.3.3):
- React-Core
- react-native-orientation-locker (1.1.8):
- React
@@ -487,21 +491,21 @@ PODS:
- React
- rn-fetch-blob (0.12.0):
- React-Core
- - RNBootSplash (4.3.2):
+ - RNBootSplash (4.3.3):
- React-Core
- - RNCAsyncStorage (1.17.9):
+ - RNCAsyncStorage (1.17.11):
- React-Core
- RNCClipboard (1.8.5):
- React-Core
- - RNCMaskedView (0.1.11):
- - React
+ - RNCMaskedView (0.2.8):
+ - React-Core
- RNConfigReader (1.0.0):
- React
- RNCPicker (1.8.1):
- React-Core
- RNDateTimePicker (3.5.2):
- React-Core
- - RNDeviceInfo (8.4.8):
+ - RNDeviceInfo (10.3.0):
- React-Core
- RNFastImage (8.5.12):
- React-Core
@@ -571,10 +575,10 @@ PODS:
- React-Core
- RNVectorIcons (9.1.0):
- React-Core
- - SDWebImage (5.12.5):
- - SDWebImage/Core (= 5.12.5)
- - SDWebImage/Core (5.12.5)
- - SDWebImageWebPCoder (0.8.4):
+ - SDWebImage (5.12.6):
+ - SDWebImage/Core (= 5.12.6)
+ - SDWebImage/Core (5.12.6)
+ - SDWebImageWebPCoder (0.8.5):
- libwebp (~> 1.0)
- SDWebImage/Core (~> 5.10)
- simdjson (0.9.6-fix2)
@@ -587,6 +591,7 @@ PODS:
DEPENDENCIES:
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
- "BugsnagReactNative (from `../node_modules/@bugsnag/react-native`)"
+ - BVLinearGradient (from `../node_modules/react-native-linear-gradient`)
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
- EXAppleAuthentication (from `../node_modules/expo-apple-authentication/ios`)
- EXAV (from `../node_modules/expo-av/ios`)
@@ -602,7 +607,6 @@ DEPENDENCIES:
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
- hermes-engine (~> 0.11.0)
- - JitsiMeetSDK (from `https://github.com/RocketChat/jitsi-meet-ios-sdk-releases.git`)
- KeyCommands (from `../node_modules/react-native-keycommands`)
- libevent (~> 2.1.12)
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
@@ -626,7 +630,7 @@ DEPENDENCIES:
- "react-native-cameraroll (from `../node_modules/@react-native-community/cameraroll`)"
- "react-native-cookies (from `../node_modules/@react-native-cookies/cookies`)"
- react-native-document-picker (from `../node_modules/react-native-document-picker`)
- - react-native-jitsi-meet (from `../node_modules/react-native-jitsi-meet`)
+ - "react-native-jitsimeet-custom (from `../node_modules/@socialcode-rob1/react-native-jitsimeet-custom`)"
- react-native-mmkv-storage (from `../node_modules/react-native-mmkv-storage`)
- "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
- react-native-notifications (from `../node_modules/react-native-notifications`)
@@ -655,7 +659,7 @@ DEPENDENCIES:
- RNBootSplash (from `../node_modules/react-native-bootsplash`)
- "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
- "RNCClipboard (from `../node_modules/@react-native-clipboard/clipboard`)"
- - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
+ - "RNCMaskedView (from `../node_modules/@react-native-masked-view/masked-view`)"
- RNConfigReader (from `../node_modules/react-native-config-reader`)
- "RNCPicker (from `../node_modules/@react-native-community/picker`)"
- "RNDateTimePicker (from `../node_modules/@react-native-community/datetimepicker`)"
@@ -692,6 +696,8 @@ SPEC REPOS:
- GoogleUtilities
- hermes-engine
- iosMath
+ - JitsiMeetSDKLite
+ - JitsiWebRTC
- libevent
- libwebp
- MMKV
@@ -708,6 +714,8 @@ EXTERNAL SOURCES:
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
BugsnagReactNative:
:path: "../node_modules/@bugsnag/react-native"
+ BVLinearGradient:
+ :path: "../node_modules/react-native-linear-gradient"
DoubleConversion:
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
EXAppleAuthentication:
@@ -736,8 +744,6 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/React/FBReactNativeSpec"
glog:
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
- JitsiMeetSDK:
- :git: https://github.com/RocketChat/jitsi-meet-ios-sdk-releases.git
KeyCommands:
:path: "../node_modules/react-native-keycommands"
RCT-Folly:
@@ -778,8 +784,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/@react-native-cookies/cookies"
react-native-document-picker:
:path: "../node_modules/react-native-document-picker"
- react-native-jitsi-meet:
- :path: "../node_modules/react-native-jitsi-meet"
+ react-native-jitsimeet-custom:
+ :path: "../node_modules/@socialcode-rob1/react-native-jitsimeet-custom"
react-native-mmkv-storage:
:path: "../node_modules/react-native-mmkv-storage"
react-native-netinfo:
@@ -837,7 +843,7 @@ EXTERNAL SOURCES:
RNCClipboard:
:path: "../node_modules/@react-native-clipboard/clipboard"
RNCMaskedView:
- :path: "../node_modules/@react-native-community/masked-view"
+ :path: "../node_modules/@react-native-masked-view/masked-view"
RNConfigReader:
:path: "../node_modules/react-native-config-reader"
RNCPicker:
@@ -881,14 +887,10 @@ EXTERNAL SOURCES:
Yoga:
:path: "../node_modules/react-native/ReactCommon/yoga"
-CHECKOUT OPTIONS:
- JitsiMeetSDK:
- :commit: 23797290da02324c09998a63781cd1fe0047211d
- :git: https://github.com/RocketChat/jitsi-meet-ios-sdk-releases.git
-
SPEC CHECKSUMS:
boost: a7c83b31436843459a1961bfd74b96033dc77234
BugsnagReactNative: a97b3132c1854fd7bf92350fabd505e3ebdd7829
+ BVLinearGradient: 34a999fda29036898a09c6a6b728b0b4189e1a44
DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
EXAppleAuthentication: 709a807fe7f48ac6986a2ceed206ee6a8baf28df
EXAV: 88f61c5af8415715b7ee51f084c1020235b85c56
@@ -911,19 +913,20 @@ SPEC CHECKSUMS:
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
glog: 476ee3e89abb49e07f822b48323c51c57124b572
GoogleAppMeasurement: 4c19f031220c72464d460c9daa1fb5d1acce958e
- GoogleDataTransport: 5fffe35792f8b96ec8d6775f5eccd83c998d5a3b
- GoogleUtilities: e0913149f6b0625b553d70dae12b49fc62914fd1
+ GoogleDataTransport: 1c8145da7117bd68bbbed00cf304edb6a24de00f
+ GoogleUtilities: c2bdc4cf2ce786c4d2e6b3bcfd599a25ca78f06f
hermes-engine: 84e3af1ea01dd7351ac5d8689cbbea1f9903ffc3
iosMath: f7a6cbadf9d836d2149c2a84c435b1effc244cba
- JitsiMeetSDK: 476329f72a866f714d2802bafe1729de6d644ccf
+ JitsiMeetSDKLite: d59573336ce887ec52327a9927aa8443f560d0b9
+ JitsiWebRTC: f441eb0e2d67f0588bf24e21c5162e97342714fb
KeyCommands: f66c535f698ed14b3d3a4e58859d79a827ea907e
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
- libwebp: 98a37e597e40bfdb4c911fc98f2c53d0b12d05fc
- MMKV: 76033b9ace2006623308910a3afcc0e25eba3140
- MMKVCore: 3388952ded307e41b3ed8a05892736a236ed1b8e
+ libwebp: f62cb61d0a484ba548448a4bd52aabf150ff6eef
+ MMKV: aac95d817a100479445633f2b3ed8961b4ac5043
+ MMKVCore: ddf41b9d9262f058419f9ba7598719af56c02cd3
nanopb: a0ba3315591a9ae0a16a309ee504766e90db0c96
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
- PromisesObjC: 99b6f43f9e1044bd87a95a60beff28c2c44ddb72
+ PromisesObjC: ab77feca74fa2823e7af4249b8326368e61014cb
RCT-Folly: 4d8508a426467c48885f1151029bc15fa5d7b3b8
RCTRequired: 3e917ea5377751094f38145fdece525aa90545a0
RCTTypeSafety: c43c072a4bd60feb49a9570b0517892b4305c45e
@@ -942,11 +945,11 @@ SPEC CHECKSUMS:
react-native-blur: ba2f37268542f8a26d809f48c5162705a3261fc6
react-native-cameraroll: 2957f2bce63ae896a848fbe0d5352c1bd4d20866
react-native-cookies: f54fcded06bb0cda05c11d86788020b43528a26c
- react-native-document-picker: 5663fe4bcdb646200683a41790464d2793307ac8
- react-native-jitsi-meet: 3e3ac5d0445091154119f94342efd55c8b1124ce
- react-native-mmkv-storage: ba38e5e813ea3d5d37af834a9d867b1ce10aa96d
+ react-native-document-picker: f5ec1a712ca2a975c233117f044817bb8393cad4
+ react-native-jitsimeet-custom: a57ca376bfc1c69f639b138f2de2a10e0ed42c04
+ react-native-mmkv-storage: 8ba3c0216a6df283ece11205b442a3e435aec4e5
react-native-netinfo: e849fc21ca2f4128a5726c801a82fc6f4a6db50d
- react-native-notifications: f3215821dfd74234f8f3910e2fe37e19fa8673b0
+ react-native-notifications: 83b4fd4a127a6c918fc846cae90da60f84819e44
react-native-orientation-locker: f0ca1a8e5031dab6b74bfb4ab33a17ed2c2fcb0d
react-native-restart: 733a51ad137f15b0f8dc34c4082e55af7da00979
react-native-safe-area-context: f0906bf8bc9835ac9a9d3f97e8bde2a997d8da79
@@ -969,14 +972,14 @@ SPEC CHECKSUMS:
ReactNativeUiLib: cde7263a7d308b60161cd286f95c9433e79f2f7d
rn-extensions-share: 5fd84a80e6594706f0dfa1884f2d6d591b382cf5
rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba
- RNBootSplash: 5f346163977573d6b2aeba1b25df9d2245c0d73c
- RNCAsyncStorage: b2489b49e38c85e10ed45a888d13a2a4c7b32ea1
+ RNBootSplash: 7e91ea56c7010aae487489789dbe212e8c905a0c
+ RNCAsyncStorage: 8616bd5a58af409453ea4e1b246521bb76578d60
RNCClipboard: cc054ad1e8a33d2a74cd13e565588b4ca928d8fd
- RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489
+ RNCMaskedView: bc0170f389056201c82a55e242e5d90070e18e5a
RNConfigReader: 396da6a6444182a76e8ae0930b9436c7575045cb
RNCPicker: 914b557e20b3b8317b084aca9ff4b4edb95f61e4
RNDateTimePicker: 7658208086d86d09e1627b5c34ba0cf237c60140
- RNDeviceInfo: 0400a6d0c94186d1120c3cbd97b23abc022187a9
+ RNDeviceInfo: 4701f0bf2a06b34654745053db0ce4cb0c53ada7
RNFastImage: d5510534be9cccc80e824bfec6369c116d212871
RNFBAnalytics: 091c8adcbb0da1e1680ce434fc6e8a0a501fe2e6
RNFBApp: b1b5a80a676a07dea17e778bda7c1e8b69b2f5ec
@@ -991,13 +994,13 @@ SPEC CHECKSUMS:
RNScreens: 40a2cb40a02a609938137a1e0acfbf8fc9eebf19
RNSVG: 302bfc9905bd8122f08966dc2ce2d07b7b52b9f8
RNVectorIcons: 7923e585eaeb139b9f4531d25a125a1500162a0b
- SDWebImage: 0905f1b7760fc8ac4198cae0036600d67478751e
- SDWebImageWebPCoder: f93010f3f6c031e2f8fb3081ca4ee6966c539815
+ SDWebImage: a47aea9e3d8816015db4e523daff50cfd294499d
+ SDWebImageWebPCoder: 908b83b6adda48effe7667cd2b7f78c897e5111d
simdjson: 85016870cd17207312b718ef6652eb6a1cd6a2b0
TOCropViewController: edfd4f25713d56905ad1e0b9f5be3fbe0f59c863
WatermelonDB: 577c61fceff16e9f9103b59d14aee4850c0307b6
Yoga: 99652481fcd320aefa4a7ef90095b95acd181952
-PODFILE CHECKSUM: 052cbf741847405abc3b902c9e107c1ebb48b252
+PODFILE CHECKSUM: 670cc455843e2a5aeeaabfba29cc1194a8948056
COCOAPODS: 1.11.3
diff --git a/ios/RocketChatRN.xcodeproj/project.pbxproj b/ios/RocketChatRN.xcodeproj/project.pbxproj
index ec33386cb..095c89a44 100644
--- a/ios/RocketChatRN.xcodeproj/project.pbxproj
+++ b/ios/RocketChatRN.xcodeproj/project.pbxproj
@@ -7,7 +7,6 @@
objects = {
/* Begin PBXBuildFile section */
- 0B27ED342956F07641034CD4 /* libPods-defaults-Rocket.Chat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 95BB2D8B49B090E54CB0E6C4 /* libPods-defaults-Rocket.Chat.a */; };
0C6E2DE448364EA896869ADF /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = B37C79D9BD0742CE936B6982 /* libc++.tbd */; };
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
@@ -80,6 +79,7 @@
1EFEB5982493B6640072EDC0 /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EFEB5972493B6640072EDC0 /* NotificationService.swift */; };
1EFEB59C2493B6640072EDC0 /* NotificationService.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 1EFEB5952493B6640072EDC0 /* NotificationService.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
24A2AEF2383D44B586D31C01 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 06BB44DD4855498082A744AD /* libz.tbd */; };
+ 460E782729C913ACC2B8EA57 /* libPods-defaults-Rocket.Chat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EFDB72665B51D50D102E732D /* libPods-defaults-Rocket.Chat.a */; };
4C4C8603EF082F0A33A95522 /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45D5C142B655F8EFD006792C /* ExpoModulesProvider.swift */; };
7A006F14229C83B600803143 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 7A006F13229C83B600803143 /* GoogleService-Info.plist */; };
7A0D62D2242AB187006D5C06 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7A0D62D1242AB187006D5C06 /* LaunchScreen.storyboard */; };
@@ -140,13 +140,13 @@
7AE10C0628A59530003593CB /* Inter.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7AE10C0528A59530003593CB /* Inter.ttf */; };
7AE10C0728A59530003593CB /* Inter.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7AE10C0528A59530003593CB /* Inter.ttf */; };
7AE10C0828A59530003593CB /* Inter.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7AE10C0528A59530003593CB /* Inter.ttf */; };
+ 7CD6EA74BD37266C0BCAC972 /* libPods-defaults-ShareRocketChatRN.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0A99BB53A40C30B4B264BFA5 /* libPods-defaults-ShareRocketChatRN.a */; };
85160EB6C143E0493FE5F014 /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 194D9A8897F4A486C2C6F89A /* ExpoModulesProvider.swift */; };
- AA7822A0F1B9FC4EAA1B1705 /* libPods-defaults-RocketChatRN.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E15CDD2B6C40595B89CBE323 /* libPods-defaults-RocketChatRN.a */; };
+ A809BED7D6DCDD5DC5D2140F /* libPods-defaults-RocketChatRN.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A6EDFA9E4FA6C0BDF77CD23B /* libPods-defaults-RocketChatRN.a */; };
BC404914E86821389EEB543D /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 391C4F7AA7023CD41EEBD106 /* ExpoModulesProvider.swift */; };
+ CF05A6FEE970FC0F23969445 /* libPods-defaults-NotificationService.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7107AAFABF867C2E02778938 /* libPods-defaults-NotificationService.a */; };
D94D81FB9E10756FAA03F203 /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 016747EF3B9FED8DE2C9DA14 /* ExpoModulesProvider.swift */; };
- DB59BF968DBBB07A9DB32234 /* libPods-defaults-ShareRocketChatRN.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A77129D0A3428801312D16C9 /* libPods-defaults-ShareRocketChatRN.a */; };
DD2BA30A89E64F189C2C24AC /* libWatermelonDB.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BA7E862283664608B3894E34 /* libWatermelonDB.a */; };
- E0C21D47690209D0D6C9293A /* libPods-defaults-NotificationService.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 516DD5885ACB76B0C02D9D71 /* libPods-defaults-NotificationService.a */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -211,6 +211,8 @@
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
016747EF3B9FED8DE2C9DA14 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-defaults-ShareRocketChatRN/ExpoModulesProvider.swift"; sourceTree = ""; };
06BB44DD4855498082A744AD /* libz.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
+ 06C3117EECD04F11CB1C29A9 /* Pods-defaults-Rocket.Chat.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-Rocket.Chat.release.xcconfig"; path = "Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.release.xcconfig"; sourceTree = ""; };
+ 0A99BB53A40C30B4B264BFA5 /* libPods-defaults-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; };
13B07F961A680F5B00A75B9A /* Rocket.Chat Experimental.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Rocket.Chat Experimental.app"; sourceTree = BUILT_PRODUCTS_DIR; };
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = RocketChatRN/AppDelegate.h; sourceTree = ""; };
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RocketChatRN/Images.xcassets; sourceTree = ""; };
@@ -263,12 +265,13 @@
1EFEB5972493B6640072EDC0 /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = ""; };
1EFEB5992493B6640072EDC0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
1EFEB5A12493B67D0072EDC0 /* NotificationService.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = NotificationService.entitlements; sourceTree = ""; };
- 20BE132DC55E2A128E828E6D /* Pods-defaults-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-ShareRocketChatRN.release.xcconfig"; path = "Target Support Files/Pods-defaults-ShareRocketChatRN/Pods-defaults-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; };
391C4F7AA7023CD41EEBD106 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-defaults-Rocket.Chat/ExpoModulesProvider.swift"; sourceTree = ""; };
45D5C142B655F8EFD006792C /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-defaults-RocketChatRN/ExpoModulesProvider.swift"; sourceTree = ""; };
- 4C1CEE8C876A117AB69C9BED /* Pods-defaults-NotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-NotificationService.debug.xcconfig"; path = "Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService.debug.xcconfig"; sourceTree = ""; };
- 516DD5885ACB76B0C02D9D71 /* libPods-defaults-NotificationService.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-NotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 496B9AFC1A3BFACA18566761 /* Pods-defaults-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-RocketChatRN.release.xcconfig"; path = "Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig"; sourceTree = ""; };
+ 4E3D7377D5EE259A4C9889A7 /* Pods-defaults-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-RocketChatRN.debug.xcconfig"; path = "Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig"; sourceTree = ""; };
60B2A6A31FC4588700BD58E5 /* RocketChatRN.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = RocketChatRN.entitlements; path = RocketChatRN/RocketChatRN.entitlements; sourceTree = ""; };
+ 65360F272979AA1500778C04 /* JitsiMeetViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = JitsiMeetViewController.swift; path = "../node_modules/@socialcode-rob1/react-native-jitsimeet-custom/ios/JitsiMeetViewController.swift"; sourceTree = ""; };
+ 7107AAFABF867C2E02778938 /* libPods-defaults-NotificationService.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-NotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; };
7A006F13229C83B600803143 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; };
7A0D62D1242AB187006D5C06 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = ""; };
7A14FCEC257FEB3A005BDCD4 /* Experimental.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Experimental.xcassets; sourceTree = ""; };
@@ -279,17 +282,15 @@
7AAB3E52257E6A6E00707CF6 /* Rocket.Chat.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Rocket.Chat.app; sourceTree = BUILT_PRODUCTS_DIR; };
7ACD4853222860DE00442C55 /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
7AE10C0528A59530003593CB /* Inter.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Inter.ttf; sourceTree = ""; };
- 95BB2D8B49B090E54CB0E6C4 /* libPods-defaults-Rocket.Chat.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-Rocket.Chat.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 95E4F27F34B2F45177152C0C /* Pods-defaults-NotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-NotificationService.release.xcconfig"; path = "Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService.release.xcconfig"; sourceTree = ""; };
- 995DDC82FEFCE80FAC748822 /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-ShareRocketChatRN.debug.xcconfig"; path = "Target Support Files/Pods-defaults-ShareRocketChatRN/Pods-defaults-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; };
- A77129D0A3428801312D16C9 /* libPods-defaults-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ A6EDFA9E4FA6C0BDF77CD23B /* libPods-defaults-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ B2632520781ADB17C1AC1FAC /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-ShareRocketChatRN.debug.xcconfig"; path = "Target Support Files/Pods-defaults-ShareRocketChatRN/Pods-defaults-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; };
B37C79D9BD0742CE936B6982 /* libc++.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
- B3C998695BD48FC0C05EB743 /* Pods-defaults-Rocket.Chat.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-Rocket.Chat.debug.xcconfig"; path = "Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.debug.xcconfig"; sourceTree = ""; };
- B526DEF42C42CFCDC2BA4DE3 /* Pods-defaults-Rocket.Chat.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-Rocket.Chat.release.xcconfig"; path = "Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.release.xcconfig"; sourceTree = ""; };
- B96B87854157F6A51973415A /* Pods-defaults-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-RocketChatRN.release.xcconfig"; path = "Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig"; sourceTree = ""; };
+ B387EBF6D5D60163EA71AE10 /* Pods-defaults-Rocket.Chat.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-Rocket.Chat.debug.xcconfig"; path = "Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.debug.xcconfig"; sourceTree = ""; };
+ B90637B65093B8C2B7C93A26 /* Pods-defaults-NotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-NotificationService.debug.xcconfig"; path = "Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService.debug.xcconfig"; sourceTree = ""; };
BA7E862283664608B3894E34 /* libWatermelonDB.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libWatermelonDB.a; sourceTree = ""; };
- C055F0F63FB8EE3AE75DD19A /* Pods-defaults-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-RocketChatRN.debug.xcconfig"; path = "Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig"; sourceTree = ""; };
- E15CDD2B6C40595B89CBE323 /* libPods-defaults-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ CEDD8A84B710A696B2834686 /* Pods-defaults-NotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-NotificationService.release.xcconfig"; path = "Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService.release.xcconfig"; sourceTree = ""; };
+ D49C1A8553D7BEA6FA98C6B9 /* Pods-defaults-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-defaults-ShareRocketChatRN.release.xcconfig"; path = "Target Support Files/Pods-defaults-ShareRocketChatRN/Pods-defaults-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; };
+ EFDB72665B51D50D102E732D /* libPods-defaults-Rocket.Chat.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-defaults-Rocket.Chat.a"; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -310,7 +311,7 @@
7ACD4897222860DE00442C55 /* JavaScriptCore.framework in Frameworks */,
24A2AEF2383D44B586D31C01 /* libz.tbd in Frameworks */,
DD2BA30A89E64F189C2C24AC /* libWatermelonDB.a in Frameworks */,
- AA7822A0F1B9FC4EAA1B1705 /* libPods-defaults-RocketChatRN.a in Frameworks */,
+ A809BED7D6DCDD5DC5D2140F /* libPods-defaults-RocketChatRN.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -319,7 +320,7 @@
buildActionMask = 2147483647;
files = (
1E25743422CBA2CF005A877F /* JavaScriptCore.framework in Frameworks */,
- DB59BF968DBBB07A9DB32234 /* libPods-defaults-ShareRocketChatRN.a in Frameworks */,
+ 7CD6EA74BD37266C0BCAC972 /* libPods-defaults-ShareRocketChatRN.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -327,7 +328,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- E0C21D47690209D0D6C9293A /* libPods-defaults-NotificationService.a in Frameworks */,
+ CF05A6FEE970FC0F23969445 /* libPods-defaults-NotificationService.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -348,7 +349,7 @@
7AAB3E3D257E6A6E00707CF6 /* JavaScriptCore.framework in Frameworks */,
7AAB3E3E257E6A6E00707CF6 /* libz.tbd in Frameworks */,
7AAB3E3F257E6A6E00707CF6 /* libWatermelonDB.a in Frameworks */,
- 0B27ED342956F07641034CD4 /* libPods-defaults-Rocket.Chat.a in Frameworks */,
+ 460E782729C913ACC2B8EA57 /* libPods-defaults-Rocket.Chat.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -358,6 +359,7 @@
13B07FAE1A68108700A75B9A /* RocketChatRN */ = {
isa = PBXGroup;
children = (
+ 65360F272979AA1500778C04 /* JitsiMeetViewController.swift */,
7A006F13229C83B600803143 /* GoogleService-Info.plist */,
60B2A6A31FC4588700BD58E5 /* RocketChatRN.entitlements */,
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
@@ -499,14 +501,14 @@
7AC2B09613AA7C3FEBAC9F57 /* Pods */ = {
isa = PBXGroup;
children = (
- 4C1CEE8C876A117AB69C9BED /* Pods-defaults-NotificationService.debug.xcconfig */,
- 95E4F27F34B2F45177152C0C /* Pods-defaults-NotificationService.release.xcconfig */,
- B3C998695BD48FC0C05EB743 /* Pods-defaults-Rocket.Chat.debug.xcconfig */,
- B526DEF42C42CFCDC2BA4DE3 /* Pods-defaults-Rocket.Chat.release.xcconfig */,
- C055F0F63FB8EE3AE75DD19A /* Pods-defaults-RocketChatRN.debug.xcconfig */,
- B96B87854157F6A51973415A /* Pods-defaults-RocketChatRN.release.xcconfig */,
- 995DDC82FEFCE80FAC748822 /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */,
- 20BE132DC55E2A128E828E6D /* Pods-defaults-ShareRocketChatRN.release.xcconfig */,
+ B90637B65093B8C2B7C93A26 /* Pods-defaults-NotificationService.debug.xcconfig */,
+ CEDD8A84B710A696B2834686 /* Pods-defaults-NotificationService.release.xcconfig */,
+ B387EBF6D5D60163EA71AE10 /* Pods-defaults-Rocket.Chat.debug.xcconfig */,
+ 06C3117EECD04F11CB1C29A9 /* Pods-defaults-Rocket.Chat.release.xcconfig */,
+ 4E3D7377D5EE259A4C9889A7 /* Pods-defaults-RocketChatRN.debug.xcconfig */,
+ 496B9AFC1A3BFACA18566761 /* Pods-defaults-RocketChatRN.release.xcconfig */,
+ B2632520781ADB17C1AC1FAC /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */,
+ D49C1A8553D7BEA6FA98C6B9 /* Pods-defaults-ShareRocketChatRN.release.xcconfig */,
);
path = Pods;
sourceTree = "";
@@ -597,10 +599,10 @@
7ACD4853222860DE00442C55 /* JavaScriptCore.framework */,
B37C79D9BD0742CE936B6982 /* libc++.tbd */,
06BB44DD4855498082A744AD /* libz.tbd */,
- 516DD5885ACB76B0C02D9D71 /* libPods-defaults-NotificationService.a */,
- 95BB2D8B49B090E54CB0E6C4 /* libPods-defaults-Rocket.Chat.a */,
- E15CDD2B6C40595B89CBE323 /* libPods-defaults-RocketChatRN.a */,
- A77129D0A3428801312D16C9 /* libPods-defaults-ShareRocketChatRN.a */,
+ 7107AAFABF867C2E02778938 /* libPods-defaults-NotificationService.a */,
+ EFDB72665B51D50D102E732D /* libPods-defaults-Rocket.Chat.a */,
+ A6EDFA9E4FA6C0BDF77CD23B /* libPods-defaults-RocketChatRN.a */,
+ 0A99BB53A40C30B4B264BFA5 /* libPods-defaults-ShareRocketChatRN.a */,
);
name = Frameworks;
sourceTree = "";
@@ -620,7 +622,7 @@
isa = PBXNativeTarget;
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RocketChatRN" */;
buildPhases = (
- 5E876E97E065D255440BF14B /* [CP] Check Pods Manifest.lock */,
+ DE29ABAFC51FDE8111D6F9EC /* [CP] Check Pods Manifest.lock */,
7AA5C63E23E30D110005C4A7 /* Start Packager */,
13B07F871A680F5B00A75B9A /* Sources */,
13B07F8C1A680F5B00A75B9A /* Frameworks */,
@@ -629,8 +631,8 @@
1EC6ACF422CB9FC300A41C61 /* Embed App Extensions */,
1E1EA8082326CCE300E22452 /* ShellScript */,
7AAE9EB32891A0D20024F559 /* Upload source maps to Bugsnag */,
- 4D5466345115691D0CEFB787 /* [CP] Embed Pods Frameworks */,
- 0E5594782559C03CA9F86D07 /* [CP] Copy Pods Resources */,
+ 7841CD536EDA07B20BCE10B7 /* [CP] Embed Pods Frameworks */,
+ 8F1EAEDED27E942D30510BAC /* [CP] Copy Pods Resources */,
);
buildRules = (
);
@@ -647,12 +649,12 @@
isa = PBXNativeTarget;
buildConfigurationList = 1EC6ACF322CB9FC300A41C61 /* Build configuration list for PBXNativeTarget "ShareRocketChatRN" */;
buildPhases = (
- 1829F5568F6A73113CC7055E /* [CP] Check Pods Manifest.lock */,
+ FAE0F7AA2756A4362BC5B30B /* [CP] Check Pods Manifest.lock */,
1EC6ACAC22CB9FC300A41C61 /* Sources */,
1EC6ACAD22CB9FC300A41C61 /* Frameworks */,
1EC6ACAE22CB9FC300A41C61 /* Resources */,
1EFE4DC322CBF36300B766B7 /* ShellScript */,
- 5A34EA3A3461E066BA3EB6DC /* [CP] Copy Pods Resources */,
+ 0201B0C2059B91755F2025E4 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
@@ -667,11 +669,11 @@
isa = PBXNativeTarget;
buildConfigurationList = 1EFEB5A02493B6640072EDC0 /* Build configuration list for PBXNativeTarget "NotificationService" */;
buildPhases = (
- 1F7D2DA5D64EE2851767A711 /* [CP] Check Pods Manifest.lock */,
+ 63AF6819B463EFFEB422E5FA /* [CP] Check Pods Manifest.lock */,
1EFEB5912493B6640072EDC0 /* Sources */,
1EFEB5922493B6640072EDC0 /* Frameworks */,
1EFEB5932493B6640072EDC0 /* Resources */,
- F1D29D1347F1DD07D1DD6F3C /* [CP] Copy Pods Resources */,
+ 729BD34038A0BFBCE2E6E9B5 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
@@ -686,7 +688,7 @@
isa = PBXNativeTarget;
buildConfigurationList = 7AAB3E4F257E6A6E00707CF6 /* Build configuration list for PBXNativeTarget "Rocket.Chat" */;
buildPhases = (
- 51CAFCF15E12ADE7B1346351 /* [CP] Check Pods Manifest.lock */,
+ A21BC8746245EB1E7D8722FF /* [CP] Check Pods Manifest.lock */,
7AAB3E13257E6A6E00707CF6 /* Start Packager */,
7AAB3E14257E6A6E00707CF6 /* Sources */,
7AAB3E32257E6A6E00707CF6 /* Frameworks */,
@@ -695,8 +697,8 @@
7AAB3E48257E6A6E00707CF6 /* Embed App Extensions */,
7AAB3E4B257E6A6E00707CF6 /* ShellScript */,
7A10288726B1D15200E47EF8 /* Upload source maps to Bugsnag */,
- 3F0ACE5A0BFF572754F0B113 /* [CP] Embed Pods Frameworks */,
- 2DD06D385EF4607F24CDD7E6 /* [CP] Copy Pods Resources */,
+ C1E9B0B4B7CD33AA69C229F5 /* [CP] Embed Pods Frameworks */,
+ 8DAD9AEDB28EC0ED2C88DCF8 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
@@ -846,267 +848,7 @@
shellPath = /bin/sh;
shellScript = "export EXTRA_PACKAGER_ARGS=\"--sourcemap-output $TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\"\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
};
- 0E5594782559C03CA9F86D07 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-resources.sh",
- "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
- "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
- "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle",
- "${PODS_CONFIGURATION_BUILD_DIR}/iosMath/mathFonts.bundle",
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/mathFonts.bundle",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 1829F5568F6A73113CC7055E /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-defaults-ShareRocketChatRN-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- 1E1EA8082326CCE300E22452 /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "echo \"Target architectures: $ARCHS\"\n\nAPP_PATH=\"${TARGET_BUILD_DIR}/${WRAPPER_NAME}\"\n\nfind \"$APP_PATH\" -name '*.framework' -type d | while read -r FRAMEWORK\ndo\nFRAMEWORK_EXECUTABLE_NAME=$(defaults read \"$FRAMEWORK/Info.plist\" CFBundleExecutable)\nFRAMEWORK_EXECUTABLE_PATH=\"$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME\"\necho \"Executable is $FRAMEWORK_EXECUTABLE_PATH\"\necho $(lipo -info \"$FRAMEWORK_EXECUTABLE_PATH\")\n\nFRAMEWORK_TMP_PATH=\"$FRAMEWORK_EXECUTABLE_PATH-tmp\"\n\n# remove simulator's archs if location is not simulator's directory\ncase \"${TARGET_BUILD_DIR}\" in\n*\"iphonesimulator\")\necho \"No need to remove archs\"\n;;\n*)\nif $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"i386\") ; then\nlipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"i386\" \"$FRAMEWORK_EXECUTABLE_PATH\"\necho \"i386 architecture removed\"\nrm \"$FRAMEWORK_EXECUTABLE_PATH\"\nmv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\nfi\nif $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"x86_64\") ; then\nlipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"x86_64\" \"$FRAMEWORK_EXECUTABLE_PATH\"\necho \"x86_64 architecture removed\"\nrm \"$FRAMEWORK_EXECUTABLE_PATH\"\nmv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\nfi\n;;\nesac\n\necho \"Completed for executable $FRAMEWORK_EXECUTABLE_PATH\"\necho $\n\ndone\n";
- };
- 1EFE4DC322CBF36300B766B7 /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export EXTRA_PACKAGER_ARGS=\"--sourcemap-output $TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\"\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
- };
- 1F7D2DA5D64EE2851767A711 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-defaults-NotificationService-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- 2DD06D385EF4607F24CDD7E6 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-resources.sh",
- "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
- "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
- "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
- "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle",
- "${PODS_CONFIGURATION_BUILD_DIR}/iosMath/mathFonts.bundle",
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/mathFonts.bundle",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 3F0ACE5A0BFF572754F0B113 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-frameworks.sh",
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/JitsiMeetSDK/JitsiMeetSDK.framework/JitsiMeetSDK",
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/JitsiMeetSDK/WebRTC.framework/WebRTC",
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL",
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/hermes.framework/hermes",
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JitsiMeetSDK.framework",
- "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/WebRTC.framework",
- "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
- "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 4D5466345115691D0CEFB787 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-frameworks.sh",
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/JitsiMeetSDK/JitsiMeetSDK.framework/JitsiMeetSDK",
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/JitsiMeetSDK/WebRTC.framework/WebRTC",
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL",
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/hermes.framework/hermes",
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JitsiMeetSDK.framework",
- "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/WebRTC.framework",
- "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
- "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 51CAFCF15E12ADE7B1346351 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-defaults-Rocket.Chat-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- 5A34EA3A3461E066BA3EB6DC /* [CP] Copy Pods Resources */ = {
+ 0201B0C2059B91755F2025E4 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1162,7 +904,41 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-ShareRocketChatRN/Pods-defaults-ShareRocketChatRN-resources.sh\"\n";
showEnvVarsInLog = 0;
};
- 5E876E97E065D255440BF14B /* [CP] Check Pods Manifest.lock */ = {
+ 1E1EA8082326CCE300E22452 /* ShellScript */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ );
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "echo \"Target architectures: $ARCHS\"\n\nAPP_PATH=\"${TARGET_BUILD_DIR}/${WRAPPER_NAME}\"\n\nfind \"$APP_PATH\" -name '*.framework' -type d | while read -r FRAMEWORK\ndo\nFRAMEWORK_EXECUTABLE_NAME=$(defaults read \"$FRAMEWORK/Info.plist\" CFBundleExecutable)\nFRAMEWORK_EXECUTABLE_PATH=\"$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME\"\necho \"Executable is $FRAMEWORK_EXECUTABLE_PATH\"\necho $(lipo -info \"$FRAMEWORK_EXECUTABLE_PATH\")\n\nFRAMEWORK_TMP_PATH=\"$FRAMEWORK_EXECUTABLE_PATH-tmp\"\n\n# remove simulator's archs if location is not simulator's directory\ncase \"${TARGET_BUILD_DIR}\" in\n*\"iphonesimulator\")\necho \"No need to remove archs\"\n;;\n*)\nif $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"i386\") ; then\nlipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"i386\" \"$FRAMEWORK_EXECUTABLE_PATH\"\necho \"i386 architecture removed\"\nrm \"$FRAMEWORK_EXECUTABLE_PATH\"\nmv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\nfi\nif $(lipo \"$FRAMEWORK_EXECUTABLE_PATH\" -verify_arch \"x86_64\") ; then\nlipo -output \"$FRAMEWORK_TMP_PATH\" -remove \"x86_64\" \"$FRAMEWORK_EXECUTABLE_PATH\"\necho \"x86_64 architecture removed\"\nrm \"$FRAMEWORK_EXECUTABLE_PATH\"\nmv \"$FRAMEWORK_TMP_PATH\" \"$FRAMEWORK_EXECUTABLE_PATH\"\nfi\n;;\nesac\n\necho \"Completed for executable $FRAMEWORK_EXECUTABLE_PATH\"\necho $\n\ndone\n";
+ };
+ 1EFE4DC322CBF36300B766B7 /* ShellScript */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ );
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "export EXTRA_PACKAGER_ARGS=\"--sourcemap-output $TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\"\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
+ };
+ 63AF6819B463EFFEB422E5FA /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1177,13 +953,93 @@
outputFileListPaths = (
);
outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-defaults-RocketChatRN-checkManifestLockResult.txt",
+ "$(DERIVED_FILE_DIR)/Pods-defaults-NotificationService-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
+ 729BD34038A0BFBCE2E6E9B5 /* [CP] Copy Pods Resources */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService-resources.sh",
+ "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
+ "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle",
+ "${PODS_CONFIGURATION_BUILD_DIR}/iosMath/mathFonts.bundle",
+ );
+ name = "[CP] Copy Pods Resources";
+ outputPaths = (
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/mathFonts.bundle",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService-resources.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ 7841CD536EDA07B20BCE10B7 /* [CP] Embed Pods Frameworks */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-frameworks.sh",
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/JitsiMeetSDKLite/JitsiMeetSDK.framework/JitsiMeetSDK",
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/JitsiWebRTC/WebRTC.framework/WebRTC",
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL",
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/hermes.framework/hermes",
+ );
+ name = "[CP] Embed Pods Frameworks";
+ outputPaths = (
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JitsiMeetSDK.framework",
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/WebRTC.framework",
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-frameworks.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
7A10288726B1D15200E47EF8 /* Upload source maps to Bugsnag */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
@@ -1287,13 +1143,13 @@
shellPath = /bin/sh;
shellScript = "SOURCE_MAP=\"$TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\" ../node_modules/@bugsnag/react-native/bugsnag-react-native-xcode.sh\n";
};
- F1D29D1347F1DD07D1DD6F3C /* [CP] Copy Pods Resources */ = {
+ 8DAD9AEDB28EC0ED2C88DCF8 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService-resources.sh",
+ "${PODS_ROOT}/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-resources.sh",
"${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
@@ -1340,7 +1196,153 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-NotificationService/Pods-defaults-NotificationService-resources.sh\"\n";
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-resources.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ 8F1EAEDED27E942D30510BAC /* [CP] Copy Pods Resources */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-resources.sh",
+ "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker/QBImagePicker.bundle",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
+ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
+ "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle",
+ "${PODS_CONFIGURATION_BUILD_DIR}/iosMath/mathFonts.bundle",
+ );
+ name = "[CP] Copy Pods Resources";
+ outputPaths = (
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/QBImagePicker.bundle",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/mathFonts.bundle",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-resources.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ A21BC8746245EB1E7D8722FF /* [CP] Check Pods Manifest.lock */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-defaults-Rocket.Chat-checkManifestLockResult.txt",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
+ };
+ C1E9B0B4B7CD33AA69C229F5 /* [CP] Embed Pods Frameworks */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-frameworks.sh",
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/JitsiMeetSDKLite/JitsiMeetSDK.framework/JitsiMeetSDK",
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/JitsiWebRTC/WebRTC.framework/WebRTC",
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL",
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/hermes.framework/hermes",
+ );
+ name = "[CP] Embed Pods Frameworks";
+ outputPaths = (
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JitsiMeetSDK.framework",
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/WebRTC.framework",
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-frameworks.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ DE29ABAFC51FDE8111D6F9EC /* [CP] Check Pods Manifest.lock */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-defaults-RocketChatRN-checkManifestLockResult.txt",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
+ };
+ FAE0F7AA2756A4362BC5B30B /* [CP] Check Pods Manifest.lock */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-defaults-ShareRocketChatRN-checkManifestLockResult.txt",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
@@ -1500,7 +1502,7 @@
/* Begin XCBuildConfiguration section */
13B07F941A680F5B00A75B9A /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = C055F0F63FB8EE3AE75DD19A /* Pods-defaults-RocketChatRN.debug.xcconfig */;
+ baseConfigurationReference = 4E3D7377D5EE259A4C9889A7 /* Pods-defaults-RocketChatRN.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
APPLICATION_EXTENSION_API_ONLY = NO;
@@ -1557,7 +1559,7 @@
};
13B07F951A680F5B00A75B9A /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = B96B87854157F6A51973415A /* Pods-defaults-RocketChatRN.release.xcconfig */;
+ baseConfigurationReference = 496B9AFC1A3BFACA18566761 /* Pods-defaults-RocketChatRN.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
APPLICATION_EXTENSION_API_ONLY = NO;
@@ -1613,8 +1615,9 @@
};
1EC6ACBC22CB9FC300A41C61 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 995DDC82FEFCE80FAC748822 /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */;
+ baseConfigurationReference = B2632520781ADB17C1AC1FAC /* Pods-defaults-ShareRocketChatRN.debug.xcconfig */;
buildSettings = {
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(EMBEDDED_CONTENT_CONTAINS_SWIFT)";
APPLICATION_EXTENSION_API_ONLY = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
@@ -1654,7 +1657,7 @@
"$(inherited)",
"$(SRCROOT)/../node_modules/rn-extensions-share/ios/**",
"$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**",
- "$PODS_CONFIGURATION_BUILD_DIR/Firebase",
+ $PODS_CONFIGURATION_BUILD_DIR/Firebase,
);
INFOPLIST_FILE = ShareRocketChatRN/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
@@ -1681,8 +1684,9 @@
};
1EC6ACBD22CB9FC300A41C61 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 20BE132DC55E2A128E828E6D /* Pods-defaults-ShareRocketChatRN.release.xcconfig */;
+ baseConfigurationReference = D49C1A8553D7BEA6FA98C6B9 /* Pods-defaults-ShareRocketChatRN.release.xcconfig */;
buildSettings = {
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(EMBEDDED_CONTENT_CONTAINS_SWIFT)";
APPLICATION_EXTENSION_API_ONLY = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
@@ -1722,7 +1726,7 @@
"$(inherited)",
"$(SRCROOT)/../node_modules/rn-extensions-share/ios/**",
"$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**",
- "$PODS_CONFIGURATION_BUILD_DIR/Firebase",
+ $PODS_CONFIGURATION_BUILD_DIR/Firebase,
);
INFOPLIST_FILE = ShareRocketChatRN/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
@@ -1739,7 +1743,7 @@
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
PRODUCT_BUNDLE_IDENTIFIER = chat.rocket.reactnative.ShareExtension;
PRODUCT_NAME = "$(TARGET_NAME)";
- PROVISIONING_PROFILE_SPECIFIER = "match AppStore chat.rocket.reactnative.ShareExtension";
+ PROVISIONING_PROFILE_SPECIFIER = "chat.rocket.reactnative.ShareExtension AppStore";
SKIP_INSTALL = YES;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
@@ -1748,8 +1752,9 @@
};
1EFEB59D2493B6640072EDC0 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 4C1CEE8C876A117AB69C9BED /* Pods-defaults-NotificationService.debug.xcconfig */;
+ baseConfigurationReference = B90637B65093B8C2B7C93A26 /* Pods-defaults-NotificationService.debug.xcconfig */;
buildSettings = {
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(EMBEDDED_CONTENT_CONTAINS_SWIFT)";
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
@@ -1767,7 +1772,7 @@
INFOPLIST_FILE = NotificationService/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
- MARKETING_VERSION = 4.33.0;
+ MARKETING_VERSION = 4.36.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
@@ -1785,8 +1790,9 @@
};
1EFEB59E2493B6640072EDC0 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 95E4F27F34B2F45177152C0C /* Pods-defaults-NotificationService.release.xcconfig */;
+ baseConfigurationReference = CEDD8A84B710A696B2834686 /* Pods-defaults-NotificationService.release.xcconfig */;
buildSettings = {
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(EMBEDDED_CONTENT_CONTAINS_SWIFT)";
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
@@ -1806,12 +1812,12 @@
INFOPLIST_FILE = NotificationService/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
- MARKETING_VERSION = 4.33.0;
+ MARKETING_VERSION = 4.36.0;
MTL_FAST_MATH = YES;
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
PRODUCT_BUNDLE_IDENTIFIER = chat.rocket.reactnative.NotificationService;
PRODUCT_NAME = "$(TARGET_NAME)";
- PROVISIONING_PROFILE_SPECIFIER = "match AppStore chat.rocket.reactnative.NotificationService";
+ PROVISIONING_PROFILE_SPECIFIER = "chat.rocket.reactnative.NotificationService AppStore";
SKIP_INSTALL = YES;
SWIFT_OBJC_BRIDGING_HEADER = "NotificationService/NotificationService-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-O";
@@ -1822,7 +1828,7 @@
};
7AAB3E50257E6A6E00707CF6 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = B3C998695BD48FC0C05EB743 /* Pods-defaults-Rocket.Chat.debug.xcconfig */;
+ baseConfigurationReference = B387EBF6D5D60163EA71AE10 /* Pods-defaults-Rocket.Chat.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
APPLICATION_EXTENSION_API_ONLY = NO;
@@ -1876,7 +1882,7 @@
};
7AAB3E51257E6A6E00707CF6 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = B526DEF42C42CFCDC2BA4DE3 /* Pods-defaults-Rocket.Chat.release.xcconfig */;
+ baseConfigurationReference = 06C3117EECD04F11CB1C29A9 /* Pods-defaults-Rocket.Chat.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
APPLICATION_EXTENSION_API_ONLY = NO;
diff --git a/ios/RocketChatRN/AppDelegate.mm b/ios/RocketChatRN/AppDelegate.mm
index 76f069866..4418704fe 100644
--- a/ios/RocketChatRN/AppDelegate.mm
+++ b/ios/RocketChatRN/AppDelegate.mm
@@ -55,16 +55,18 @@
}
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
- UIViewController *rootViewController = [self.reactDelegate createRootViewController];
+ UIViewController *rootViewController = [UIViewController new];
+ UINavigationController *navigationController = [[UINavigationController alloc]initWithRootViewController:rootViewController];
+ navigationController.navigationBarHidden = YES;
rootViewController.view = rootView;
- self.window.rootViewController = rootViewController;
+ self.window.rootViewController = navigationController;
[self.window makeKeyAndVisible];
[RNNotifications startMonitorNotifications];
[ReplyNotification configure];
// AppGroup MMKV
NSString *groupDir = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:[[NSBundle mainBundle] objectForInfoDictionaryKey:@"AppGroup"]].path;
- [MMKV initializeMMKV:nil groupDir:groupDir logLevel:MMKVLogNone];
+ [MMKV initializeMMKV:nil groupDir:groupDir logLevel:MMKVLogInfo];
[RNBootSplash initWithStoryboard:@"LaunchScreen" rootView:rootView];
diff --git a/ios/RocketChatRN/Info.plist b/ios/RocketChatRN/Info.plist
index 53af2cee5..82d5169ea 100644
--- a/ios/RocketChatRN/Info.plist
+++ b/ios/RocketChatRN/Info.plist
@@ -26,7 +26,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 4.33.0
+ 4.36.0
CFBundleSignature
????
CFBundleURLTypes
diff --git a/ios/ShareRocketChatRN/Info.plist b/ios/ShareRocketChatRN/Info.plist
index 27a4c4b3a..1619677fd 100644
--- a/ios/ShareRocketChatRN/Info.plist
+++ b/ios/ShareRocketChatRN/Info.plist
@@ -26,7 +26,7 @@
CFBundlePackageType
XPC!
CFBundleShortVersionString
- 4.33.0
+ 4.36.0
CFBundleVersion
1
KeychainGroup
diff --git a/ios/ShareRocketChatRN/ShareRocketChatRN.m b/ios/ShareRocketChatRN/ShareRocketChatRN.m
index 8202d0de0..f4a53b1b6 100644
--- a/ios/ShareRocketChatRN/ShareRocketChatRN.m
+++ b/ios/ShareRocketChatRN/ShareRocketChatRN.m
@@ -44,7 +44,7 @@ RCT_EXPORT_MODULE();
// AppGroup MMKV
NSString *groupDir = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:[[NSBundle mainBundle] objectForInfoDictionaryKey:@"AppGroup"]].path;
- [MMKV initializeMMKV:nil groupDir:groupDir logLevel:MMKVLogNone];
+ [MMKV initializeMMKV:nil groupDir:groupDir logLevel:MMKVLogInfo];
return rootView;
}
diff --git a/ios/custom.ttf b/ios/custom.ttf
index 67c42d9e3..ae3cd7da2 100644
Binary files a/ios/custom.ttf and b/ios/custom.ttf differ
diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile
index f3bcd449b..2a313d2cb 100644
--- a/ios/fastlane/Fastfile
+++ b/ios/fastlane/Fastfile
@@ -28,8 +28,8 @@ platform :ios do
desc "Submit a new Beta Build to Apple TestFlight"
lane :beta do |options|
api_key = app_store_connect_api_key(
- key_id: "F296L2294Y",
- issuer_id: "69a6de8e-75cf-47e3-e053-5b8c7c11a4d1",
+ key_id: ENV["APP_STORE_CONNECT_API_KEY_ID"],
+ issuer_id: ENV["APP_STORE_CONNECT_API_KEY_ISSUER_ID"],
key_filepath: 'fastlane/app_store_connect_api_key.p8',
in_house: false
)
@@ -49,8 +49,8 @@ platform :ios do
desc "Build Experimental app"
lane :build_experimental do
api_key = app_store_connect_api_key(
- key_id: "F296L2294Y",
- issuer_id: "69a6de8e-75cf-47e3-e053-5b8c7c11a4d1",
+ key_id: ENV["APP_STORE_CONNECT_API_KEY_ID"],
+ issuer_id: ENV["APP_STORE_CONNECT_API_KEY_ISSUER_ID"],
key_filepath: 'fastlane/app_store_connect_api_key.p8',
in_house: false
)
diff --git a/package.json b/package.json
index 8c1a7ed62..aae9bf09a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "rocket-chat-reactnative",
- "version": "4.33.0",
+ "version": "4.36.0",
"private": true,
"scripts": {
"start": "react-native start",
@@ -31,16 +31,15 @@
"@bugsnag/react-native": "^7.10.5",
"@codler/react-native-keyboard-aware-scroll-view": "^2.0.1",
"@gorhom/bottom-sheet": "^4.3.1",
- "@hookform/resolvers": "^2.9.7",
+ "@hookform/resolvers": "^2.9.10",
"@nozbe/watermelondb": "0.23.0",
- "@react-native-async-storage/async-storage": "^1.17.9",
+ "@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-clipboard/clipboard": "^1.8.5",
"@react-native-community/art": "^1.2.0",
"@react-native-community/blur": "^4.1.0",
"@react-native-community/cameraroll": "4.1.2",
"@react-native-community/datetimepicker": "3.5.2",
"@react-native-community/hooks": "2.6.0",
- "@react-native-community/masked-view": "0.1.11",
"@react-native-community/netinfo": "6.0.0",
"@react-native-community/picker": "^1.8.1",
"@react-native-community/slider": "4.2.2",
@@ -48,19 +47,21 @@
"@react-native-firebase/analytics": "^14.11.0",
"@react-native-firebase/app": "^14.11.0",
"@react-native-firebase/crashlytics": "^14.11.0",
+ "@react-native-masked-view/masked-view": "^0.2.8",
"@react-navigation/drawer": "6.4.1",
- "@react-navigation/elements": "^1.3.3",
+ "@react-navigation/elements": "^1.3.6",
"@react-navigation/native": "6.0.10",
"@react-navigation/stack": "6.2.1",
"@rocket.chat/message-parser": "^0.31.14",
"@rocket.chat/sdk": "RocketChat/Rocket.Chat.js.SDK#mobile",
- "@rocket.chat/ui-kit": "^0.31.13",
+ "@rocket.chat/ui-kit": "^0.31.19",
+ "@socialcode-rob1/react-native-jitsimeet-custom": "socialcode-rob1/react-native-jitsimeet-custom.git",
"bytebuffer": "^5.0.1",
"color2k": "1.2.4",
"commonmark": "git+https://github.com/RocketChat/commonmark.js.git",
"commonmark-react-renderer": "git+https://github.com/RocketChat/commonmark-react-renderer.git",
- "dequal": "^2.0.2",
- "ejson": "2.2.1",
+ "dequal": "^2.0.3",
+ "ejson": "^2.2.3",
"expo": "^46.0.9",
"expo-apple-authentication": "4.2.1",
"expo-av": "11.2.3",
@@ -76,19 +77,19 @@
"js-sha256": "^0.9.0",
"lint-staged": "^11.1.0",
"lodash": "4.17.21",
- "moment": "2.29.3",
+ "moment": "2.29.4",
"pretty-bytes": "5.6.0",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-hook-form": "^7.34.2",
- "react-native": "RocketChat/react-native#0.68.2",
+ "react-native": "RocketChat/react-native#281140d2e39d66a8e486db397ce0bf5bd0e334fc",
"react-native-animatable": "^1.3.3",
"react-native-background-timer": "2.4.1",
- "react-native-bootsplash": "^4.3.2",
+ "react-native-bootsplash": "^4.3.3",
"react-native-config-reader": "^4.1.1",
"react-native-console-time-polyfill": "1.2.3",
- "react-native-device-info": "8.4.8",
- "react-native-document-picker": "8.1.0",
+ "react-native-device-info": "^10.3.0",
+ "react-native-document-picker": "^8.1.2",
"react-native-easy-grid": "^0.2.2",
"react-native-easy-toast": "^1.2.0",
"react-native-fast-image": "RocketChat/react-native-fast-image.git#bump-version",
@@ -96,15 +97,15 @@
"react-native-gesture-handler": "2.4.2",
"react-native-image-crop-picker": "RocketChat/react-native-image-crop-picker",
"react-native-image-progress": "^1.1.1",
- "react-native-jitsi-meet": "RocketChat/react-native-jitsi-meet",
"react-native-keycommands": "2.0.3",
+ "react-native-linear-gradient": "^2.6.2",
"react-native-localize": "2.1.1",
"react-native-math-view": "^3.9.5",
"react-native-mime-types": "2.3.0",
- "react-native-mmkv-storage": "^0.7.6",
+ "react-native-mmkv-storage": "^0.8.0",
"react-native-modal": "13.0.1",
"react-native-navigation-bar-color": "2.0.1",
- "react-native-notifications": "^4.3.2",
+ "react-native-notifications": "^4.3.3",
"react-native-notifier": "1.6.1",
"react-native-orientation-locker": "1.1.8",
"react-native-picker-select": "^8.0.4",
@@ -117,24 +118,26 @@
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "3.13.1",
"react-native-scrollable-tab-view": "ptomasroos/react-native-scrollable-tab-view",
+ "react-native-send-intent": "^1.3.0",
"react-native-simple-crypto": "RocketChat/react-native-simple-crypto#0.5.1",
+ "react-native-skeleton-placeholder": "^5.2.3",
"react-native-slowlog": "^1.0.2",
"react-native-svg": "^12.3.0",
"react-native-ui-lib": "RocketChat/react-native-ui-lib",
"react-native-vector-icons": "9.1.0",
"react-native-webview": "10.3.2",
- "react-redux": "8.0.1",
- "reactotron-react-native": "5.0.2",
+ "react-redux": "^8.0.5",
+ "reactotron-react-native": "^5.0.3",
"redux": "4.2.0",
"redux-immutable-state-invariant": "2.1.0",
"redux-saga": "1.1.3",
"remove-markdown": "^0.3.0",
"reselect": "4.0.0",
"rn-extensions-share": "RocketChat/rn-extensions-share",
- "rn-fetch-blob": "0.12.0",
+ "rn-fetch-blob": "^0.12.0",
"rn-root-view": "RocketChat/rn-root-view",
- "semver": "7.3.5",
- "ua-parser-js": "^1.0.2",
+ "semver": "^7.3.8",
+ "ua-parser-js": "^1.0.32",
"uri-js": "^4.4.1",
"url-parse": "1.5.10",
"use-debounce": "^8.0.4",
@@ -161,11 +164,11 @@
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^9.0.0",
- "@types/bytebuffer": "^5.0.43",
+ "@types/bytebuffer": "^5.0.44",
"@types/ejson": "^2.1.3",
- "@types/i18n-js": "^3.8.2",
+ "@types/i18n-js": "^3.8.3",
"@types/jest": "^26.0.24",
- "@types/lodash": "^4.14.171",
+ "@types/lodash": "^4.14.188",
"@types/mocha": "^9.1.1",
"@types/react": "^17.0.14",
"@types/react-native": "0.68.1",
@@ -173,9 +176,9 @@
"@types/react-native-config-reader": "^4.1.0",
"@types/react-native-platform-touchable": "^1.1.2",
"@types/react-native-scrollable-tab-view": "^0.10.2",
- "@types/react-native-vector-icons": "^6.4.10",
+ "@types/react-native-vector-icons": "^6.4.12",
"@types/react-test-renderer": "^17.0.1",
- "@types/semver": "^7.3.9",
+ "@types/semver": "^7.3.13",
"@types/ua-parser-js": "^0.7.36",
"@types/url-parse": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^4.28.3",
diff --git a/patches/@react-navigation+elements+1.3.3.patch b/patches/@react-navigation+elements+1.3.3.patch
deleted file mode 100644
index 9fff8f30c..000000000
--- a/patches/@react-navigation+elements+1.3.3.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/node_modules/@react-navigation/elements/src/Header/HeaderBackButton.tsx b/node_modules/@react-navigation/elements/src/Header/HeaderBackButton.tsx
-index 39a39b2..7a60a15 100644
---- a/node_modules/@react-navigation/elements/src/Header/HeaderBackButton.tsx
-+++ b/node_modules/@react-navigation/elements/src/Header/HeaderBackButton.tsx
-@@ -30,7 +30,7 @@ export default function HeaderBackButton({
- titleLayout,
- truncatedLabel = 'Back',
- accessibilityLabel = label && label !== 'Back' ? `${label}, back` : 'Go back',
-- testID,
-+ testID = 'header-back',
- style,
- }: HeaderBackButtonProps) {
- const { colors } = useTheme();
diff --git a/patches/@socialcode-rob1+react-native-jitsimeet-custom+2.5.0.patch b/patches/@socialcode-rob1+react-native-jitsimeet-custom+2.5.0.patch
new file mode 100644
index 000000000..52777ec0c
--- /dev/null
+++ b/patches/@socialcode-rob1+react-native-jitsimeet-custom+2.5.0.patch
@@ -0,0 +1,11 @@
+diff --git a/node_modules/@socialcode-rob1/react-native-jitsimeet-custom/react-native-jitsimeet-custom.podspec b/node_modules/@socialcode-rob1/react-native-jitsimeet-custom/react-native-jitsimeet-custom.podspec
+index 80a584b..5b2f71c 100644
+--- a/node_modules/@socialcode-rob1/react-native-jitsimeet-custom/react-native-jitsimeet-custom.podspec
++++ b/node_modules/@socialcode-rob1/react-native-jitsimeet-custom/react-native-jitsimeet-custom.podspec
+@@ -16,5 +16,5 @@ Pod::Spec.new do |s|
+ s.source_files = "ios/**/*.{h,m,mm,swift}"
+
+ s.dependency "React-Core"
+- s.dependency 'JitsiMeetSDK', '6.2.2'
++ s.dependency 'JitsiMeetSDKLite', '7.0.1-lite'
+ end
diff --git a/patches/react-native-device-info+8.4.8.patch b/patches/react-native-device-info+10.3.0.patch
similarity index 100%
rename from patches/react-native-device-info+8.4.8.patch
rename to patches/react-native-device-info+10.3.0.patch
diff --git a/patches/react-native-mmkv-storage+0.7.6.patch b/patches/react-native-mmkv-storage+0.7.6.patch
deleted file mode 100644
index 36c43cf7d..000000000
--- a/patches/react-native-mmkv-storage+0.7.6.patch
+++ /dev/null
@@ -1,114 +0,0 @@
-diff --git a/node_modules/react-native-mmkv-storage/ios/MMKVNative.h b/node_modules/react-native-mmkv-storage/ios/MMKVNative.h
-index 60a2a03..ca6fdfd 100644
---- a/node_modules/react-native-mmkv-storage/ios/MMKVNative.h
-+++ b/node_modules/react-native-mmkv-storage/ios/MMKVNative.h
-@@ -1,6 +1,6 @@
-
--#if __has_include("RCTBridgeModule.h")
--#import "RCTBridgeModule.h"
-+#if __has_include()
-+#import
- #else
- #import
- #import
-diff --git a/node_modules/react-native-mmkv-storage/ios/MMKVStorage.h b/node_modules/react-native-mmkv-storage/ios/MMKVStorage.h
-index b5f5823..62e2afa 100644
---- a/node_modules/react-native-mmkv-storage/ios/MMKVStorage.h
-+++ b/node_modules/react-native-mmkv-storage/ios/MMKVStorage.h
-@@ -1,6 +1,6 @@
-
--#if __has_include("RCTBridgeModule.h")
--#import "RCTBridgeModule.h"
-+#if __has_include()
-+#import
- #else
- #import
- #import
-diff --git a/node_modules/react-native-mmkv-storage/ios/SecureStorage.h b/node_modules/react-native-mmkv-storage/ios/SecureStorage.h
-index b804a64..291cc7e 100644
---- a/node_modules/react-native-mmkv-storage/ios/SecureStorage.h
-+++ b/node_modules/react-native-mmkv-storage/ios/SecureStorage.h
-@@ -1,6 +1,6 @@
-
--#if __has_include("RCTBridgeModule.h")
--#import "RCTBridgeModule.h"
-+#if __has_include()
-+#import
- #else
- #import
- #endif
-diff --git a/node_modules/react-native-mmkv-storage/ios/SecureStorage.m b/node_modules/react-native-mmkv-storage/ios/SecureStorage.m
-index 1c4e1c2..fd6ef68 100644
---- a/node_modules/react-native-mmkv-storage/ios/SecureStorage.m
-+++ b/node_modules/react-native-mmkv-storage/ios/SecureStorage.m
-@@ -1,5 +1,5 @@
--#if __has_include("RCTBridgeModule.h")
--#import "RCTBridgeModule.h"
-+#if __has_include()
-+#import
- #else
- #import
- #endif
-@@ -45,14 +45,14 @@ - (NSString *) getSecureKey:(NSString *)key
- @try {
- [self handleAppUninstallation];
- NSString *value = [self searchKeychainCopyMatching:key];
-- dispatch_sync(dispatch_get_main_queue(), ^{
-- int readAttempts = 0;
-- // See: https://github.com/ammarahm-ed/react-native-mmkv-storage/issues/195
-- while (![[UIApplication sharedApplication] isProtectedDataAvailable] && readAttempts++ < 100) {
-- // sleep 25ms before another attempt
-- usleep(25000);
-- }
-- });
-+// dispatch_sync(dispatch_get_main_queue(), ^{
-+// int readAttempts = 0;
-+// // See: https://github.com/ammarahm-ed/react-native-mmkv-storage/issues/195
-+// while (![[UIApplication sharedApplication] isProtectedDataAvailable] && readAttempts++ < 100) {
-+// // sleep 25ms before another attempt
-+// usleep(25000);
-+// }
-+// });
- if (value == nil) {
- NSString* errorMessage = @"key does not present";
-
-@@ -105,6 +105,9 @@ - (void) removeSecureKey:(NSString *)key
-
- - (NSMutableDictionary *)newSearchDictionary:(NSString *)identifier {
- NSMutableDictionary *searchDictionary = [[NSMutableDictionary alloc] init];
-+ // this value is shared by main app and extensions, so, is the best to be used here
-+ serviceName = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"AppGroup"];
-+
- if(serviceName == nil){
- serviceName = [[NSBundle mainBundle] bundleIdentifier];
- }
-@@ -116,6 +119,9 @@ - (NSMutableDictionary *)newSearchDictionary:(NSString *)identifier {
- [searchDictionary setObject:encodedIdentifier forKey:(id)kSecAttrAccount];
- [searchDictionary setObject:serviceName forKey:(id)kSecAttrService];
-
-+ NSString *keychainGroup = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"KeychainGroup"];
-+ [searchDictionary setObject:keychainGroup forKey:(id)kSecAttrAccessGroup];
-+
- return searchDictionary;
- }
-
-@@ -217,11 +223,14 @@ - (void)clearSecureKeyStore
-
- - (void)handleAppUninstallation
- {
-- // if (![[NSUserDefaults standardUserDefaults] boolForKey:@"RnSksIsAppInstalled"]) {
-- // [self clearSecureKeyStore];
-- //[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"IsAppInstalled"];
-- [[NSUserDefaults standardUserDefaults] synchronize];
-- // }
-+ // use app group user defaults to prevent clear when it's share extension
-+ NSString *suiteName = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"AppGroup"];
-+ NSUserDefaults *userDefaults = [[NSUserDefaults alloc] initWithSuiteName:suiteName];
-+ if (![userDefaults boolForKey:@"RnSksIsAppInstalled"]) {
-+ [self clearSecureKeyStore];
-+ [userDefaults setBool:YES forKey:@"RnSksIsAppInstalled"];
-+ [userDefaults synchronize];
-+ }
- }
-
- - (void) setServiceName:(NSString *)_serviceName
diff --git a/patches/react-native-mmkv-storage+0.8.0.patch b/patches/react-native-mmkv-storage+0.8.0.patch
new file mode 100644
index 000000000..c757b6c7a
--- /dev/null
+++ b/patches/react-native-mmkv-storage+0.8.0.patch
@@ -0,0 +1,37 @@
+diff --git a/node_modules/react-native-mmkv-storage/ios/SecureStorage.m b/node_modules/react-native-mmkv-storage/ios/SecureStorage.m
+index dbea26b..2483375 100644
+--- a/node_modules/react-native-mmkv-storage/ios/SecureStorage.m
++++ b/node_modules/react-native-mmkv-storage/ios/SecureStorage.m
+@@ -40,14 +40,14 @@ - (NSString *) getSecureKey:(NSString *)key
+ @try {
+ [self handleAppUninstallation];
+ NSString *value = [self searchKeychainCopyMatching:key];
+- dispatch_sync(dispatch_get_main_queue(), ^{
+- int readAttempts = 0;
+- // See: https://github.com/ammarahm-ed/react-native-mmkv-storage/issues/195
+- while (![[UIApplication sharedApplication] isProtectedDataAvailable] && readAttempts++ < 100) {
+- // sleep 25ms before another attempt
+- usleep(25000);
+- }
+- });
++// dispatch_sync(dispatch_get_main_queue(), ^{
++// int readAttempts = 0;
++// // See: https://github.com/ammarahm-ed/react-native-mmkv-storage/issues/195
++// while (![[UIApplication sharedApplication] isProtectedDataAvailable] && readAttempts++ < 100) {
++// // sleep 25ms before another attempt
++// usleep(25000);
++// }
++// });
+ if (value == nil) {
+ NSString* errorMessage = @"key does not present";
+
+@@ -100,6 +100,9 @@ - (void) removeSecureKey:(NSString *)key
+
+ - (NSMutableDictionary *)newSearchDictionary:(NSString *)identifier {
+ NSMutableDictionary *searchDictionary = [[NSMutableDictionary alloc] init];
++ // this value is shared by main app and extensions, so, is the best to be used here
++ serviceName = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"AppGroup"];
++
+ if(serviceName == nil){
+ serviceName = [[NSBundle mainBundle] bundleIdentifier];
+ }
diff --git a/patches/react-native-notifications+4.3.2.patch b/patches/react-native-notifications+4.3.3.patch
similarity index 89%
rename from patches/react-native-notifications+4.3.2.patch
rename to patches/react-native-notifications+4.3.3.patch
index 591f491fc..5637dea82 100644
--- a/patches/react-native-notifications+4.3.2.patch
+++ b/patches/react-native-notifications+4.3.3.patch
@@ -27,68 +27,69 @@ index 90969b2..4c00e69 100644
if (notification != null) {
notification.onOpened();
diff --git a/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/RNNotificationsPackage.java b/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/RNNotificationsPackage.java
-index c090247..494aae8 100644
+index a249c6a..5b1e9c7 100644
--- a/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/RNNotificationsPackage.java
+++ b/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/RNNotificationsPackage.java
-@@ -20,6 +20,7 @@ import com.wix.reactnativenotifications.core.notification.PushNotification;
- import com.wix.reactnativenotifications.core.notification.PushNotificationProps;
+@@ -19,6 +19,7 @@ import com.wix.reactnativenotifications.core.notification.IPushNotification;
+ import com.wix.reactnativenotifications.core.notification.PushNotification;
import com.wix.reactnativenotifications.core.notificationdrawer.IPushNotificationsDrawer;
import com.wix.reactnativenotifications.core.notificationdrawer.PushNotificationsDrawer;
+import com.wix.reactnativenotifications.core.ReactAppLifecycleFacade;
import java.util.Arrays;
import java.util.Collections;
-@@ -67,7 +68,12 @@ public class RNNotificationsPackage implements ReactPackage, AppLifecycleFacade.
+@@ -66,7 +67,13 @@ public class RNNotificationsPackage implements ReactPackage, AppLifecycleFacade.
@Override
public void onActivityStarted(Activity activity) {
-- if (InitialNotificationHolder.getInstance().get() != null) {
+- if (InitialNotificationHolder.getInstance().get() == null) {
+ boolean isReactInitialized = false;
+ if (AppLifecycleFacadeHolder.get() instanceof ReactAppLifecycleFacade) {
+ isReactInitialized = AppLifecycleFacadeHolder.get().isReactInitialized();
+ }
+
+ if (InitialNotificationHolder.getInstance().get() == null && !isReactInitialized) {
++
callOnOpenedIfNeed(activity);
}
}
-@@ -96,8 +102,7 @@ public class RNNotificationsPackage implements ReactPackage, AppLifecycleFacade.
+@@ -95,8 +102,7 @@ public class RNNotificationsPackage implements ReactPackage, AppLifecycleFacade.
Intent intent = activity.getIntent();
if (NotificationIntentAdapter.canHandleIntent(intent)) {
Context appContext = mApplication.getApplicationContext();
-- Bundle notificationData = NotificationIntentAdapter.cannotHandleTrampolineActivity(appContext) ?
-- NotificationIntentAdapter.extractPendingNotificationDataFromIntent(intent) : intent.getExtras();
+- Bundle notificationData = NotificationIntentAdapter.canHandleTrampolineActivity(appContext) ?
+- intent.getExtras() : NotificationIntentAdapter.extractPendingNotificationDataFromIntent(intent);
+ Bundle notificationData = NotificationIntentAdapter.extractPendingNotificationDataFromIntent(intent);
final IPushNotification pushNotification = PushNotification.get(appContext, notificationData);
if (pushNotification != null) {
pushNotification.onOpened();
diff --git a/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/NotificationIntentAdapter.java b/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/NotificationIntentAdapter.java
-index 41b4824..4285ac5 100644
+index 70f609a..4484808 100644
--- a/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/NotificationIntentAdapter.java
+++ b/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/NotificationIntentAdapter.java
@@ -14,17 +14,9 @@ public class NotificationIntentAdapter {
@SuppressLint("UnspecifiedImmutableFlag")
public static PendingIntent createPendingNotificationIntent(Context appContext, PushNotificationProps notification) {
-- if (cannotHandleTrampolineActivity(appContext)) {
+- if (canHandleTrampolineActivity(appContext)) {
+- Intent intent = new Intent(appContext, ProxyService.class);
+- intent.putExtra(PUSH_NOTIFICATION_EXTRA_NAME, notification.asBundle());
+- return PendingIntent.getService(appContext, (int) System.currentTimeMillis(), intent, PendingIntent.FLAG_ONE_SHOT);
+- } else {
- Intent mainActivityIntent = appContext.getPackageManager().getLaunchIntentForPackage(appContext.getPackageName());
- mainActivityIntent.putExtra(PUSH_NOTIFICATION_EXTRA_NAME, notification.asBundle());
- TaskStackBuilder taskStackBuilder = TaskStackBuilder.create(appContext);
- taskStackBuilder.addNextIntentWithParentStack(mainActivityIntent);
- return taskStackBuilder.getPendingIntent((int) System.currentTimeMillis(), PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT | PendingIntent.FLAG_IMMUTABLE);
-- } else {
-- Intent intent = new Intent(appContext, ProxyService.class);
-- intent.putExtra(PUSH_NOTIFICATION_EXTRA_NAME, notification.asBundle());
-- return PendingIntent.getService(appContext, (int) System.currentTimeMillis(), intent, PendingIntent.FLAG_ONE_SHOT);
- }
+ Intent intent = appContext.getPackageManager().getLaunchIntentForPackage(appContext.getPackageName());
+ intent.putExtra(PUSH_NOTIFICATION_EXTRA_NAME, notification.asBundle());
+ return PendingIntent.getActivity(appContext, (int) System.currentTimeMillis(), intent, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT | PendingIntent.FLAG_IMMUTABLE);
}
- public static boolean cannotHandleTrampolineActivity(Context appContext) {
+ public static boolean canHandleTrampolineActivity(Context appContext) {
diff --git a/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/PushNotification.java b/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/PushNotification.java
-index 54a5fb8..06bbfb9 100644
+index eade08d..a9f2864 100644
--- a/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/PushNotification.java
+++ b/node_modules/react-native-notifications/lib/android/app/src/main/java/com/wix/reactnativenotifications/core/notification/PushNotification.java
@@ -28,7 +28,7 @@ public class PushNotification implements IPushNotification {
@@ -127,7 +128,7 @@ index 8b2c269..8667351 100644
@interface RCTConvert (UIMutableUserNotificationAction)
+ (UIMutableUserNotificationAction *)UIMutableUserNotificationAction:(id)json;
diff --git a/node_modules/react-native-notifications/lib/ios/RNNotificationCenter.h b/node_modules/react-native-notifications/lib/ios/RNNotificationCenter.h
-index 4bc5292..4839d55 100644
+index 4bc5292..71df0bc 100644
--- a/node_modules/react-native-notifications/lib/ios/RNNotificationCenter.h
+++ b/node_modules/react-native-notifications/lib/ios/RNNotificationCenter.h
@@ -4,7 +4,7 @@ typedef void (^RCTPromiseResolveBlock)(id result);
@@ -135,10 +136,21 @@ index 4bc5292..4839d55 100644
typedef void (^RCTPromiseRejectBlock)(NSString *code, NSString *message, NSError *error);
-@import UserNotifications;
-+#import
++#import
@interface RNNotificationCenter : NSObject
+diff --git a/node_modules/react-native-notifications/lib/ios/RNNotificationCenterListener.h b/node_modules/react-native-notifications/lib/ios/RNNotificationCenterListener.h
+index 77a67dd..eaf0043 100644
+--- a/node_modules/react-native-notifications/lib/ios/RNNotificationCenterListener.h
++++ b/node_modules/react-native-notifications/lib/ios/RNNotificationCenterListener.h
+@@ -1,5 +1,5 @@
+ #import
+-@import UserNotifications;
++#import
+ #import "RNNotificationEventHandler.h"
+
+ @interface RNNotificationCenterListener : NSObject
diff --git a/node_modules/react-native-notifications/lib/ios/RNNotificationEventHandler.h b/node_modules/react-native-notifications/lib/ios/RNNotificationEventHandler.h
index a07c6e9..8e3ca6a 100644
--- a/node_modules/react-native-notifications/lib/ios/RNNotificationEventHandler.h
diff --git a/patches/react-native-webview+10.3.2.patch b/patches/react-native-webview+10.3.2.patch
index df46fcf8b..6c9db9d55 100644
--- a/patches/react-native-webview+10.3.2.patch
+++ b/patches/react-native-webview+10.3.2.patch
@@ -197,16 +197,16 @@ index 02b4238..e0635ed 100644
+
+ // https://github.com/ammarahm-ed/react-native-mmkv-storage/blob/master/src/loader.js#L31
+ NSString *key = [secureStorage getSecureKey:[self stringToHex:@"com.MMKV.default"]];
++ NSURLCredential *credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];
+
+ if (key == NULL) {
-+ return;
++ return completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, credential);
+ }
+
+ NSData *cryptKey = [key dataUsingEncoding:NSUTF8StringEncoding];
+ MMKV *mmkv = [MMKV mmkvWithID:@"default" cryptKey:cryptKey mode:MMKVMultiProcess];
+ clientSSL = [mmkv getObjectOfClass:[NSDictionary class] forKey:host];
+
-+ NSURLCredential *credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];
+
+ if (clientSSL != (id)[NSNull null]) {
+ NSString *path = [clientSSL objectForKey:@"path"];
diff --git a/patches/rn-fetch-blob+0.12.0.patch b/patches/rn-fetch-blob+0.12.0.patch
index 44a57c005..1269040fb 100644
--- a/patches/rn-fetch-blob+0.12.0.patch
+++ b/patches/rn-fetch-blob+0.12.0.patch
@@ -23,7 +23,7 @@ index 602d51d..920d975 100644
public String getName() {
return "RNFetchBlob";
diff --git a/node_modules/rn-fetch-blob/ios/RNFetchBlobRequest.m b/node_modules/rn-fetch-blob/ios/RNFetchBlobRequest.m
-index cdbe6b1..c0ce9bd 100644
+index cdbe6b1..04e5e7b 100644
--- a/node_modules/rn-fetch-blob/ios/RNFetchBlobRequest.m
+++ b/node_modules/rn-fetch-blob/ios/RNFetchBlobRequest.m
@@ -15,6 +15,9 @@
@@ -118,12 +118,12 @@ index cdbe6b1..c0ce9bd 100644
+
+ // https://github.com/ammarahm-ed/react-native-mmkv-storage/blob/master/src/loader.js#L31
+ NSString *key = [secureStorage getSecureKey:[self stringToHex:@"com.MMKV.default"]];
++ NSURLCredential *credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];
+
+ if (key == NULL) {
-+ return;
++ return completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, credential);
+ }
+
-+ NSURLCredential *credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];
+ NSData *cryptKey = [key dataUsingEncoding:NSUTF8StringEncoding];
+ MMKV *mmkv = [MMKV mmkvWithID:@"default" cryptKey:cryptKey mode:MMKVMultiProcess];
+ clientSSL = [mmkv getStringForKey:host];
diff --git a/react-native.config.js b/react-native.config.js
index 9e78b41ad..137b05c26 100644
--- a/react-native.config.js
+++ b/react-native.config.js
@@ -14,6 +14,11 @@ module.exports = {
platforms: {
android: null
}
+ },
+ '@socialcode-rob1/react-native-jitsimeet-custom': {
+ platforms: {
+ android: null
+ }
}
}
};
diff --git a/yarn.lock b/yarn.lock
index 8c1b12e98..da1c2d22c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -66,6 +66,11 @@
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.8.tgz#2483f565faca607b8535590e84e7de323f27764d"
integrity sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==
+"@babel/compat-data@^7.20.5":
+ version "7.20.10"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.10.tgz#9d92fa81b87542fff50e848ed585b4212c1d34ec"
+ integrity sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==
+
"@babel/core@7.12.9":
version "7.12.9"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8"
@@ -153,24 +158,24 @@
source-map "^0.5.0"
"@babel/core@^7.13.16":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.9.tgz#805461f967c77ff46c74ca0460ccf4fe933ddd59"
- integrity sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==
+ version "7.20.12"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.12.tgz#7930db57443c6714ad216953d1356dac0eb8496d"
+ integrity sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.18.9"
- "@babel/helper-compilation-targets" "^7.18.9"
- "@babel/helper-module-transforms" "^7.18.9"
- "@babel/helpers" "^7.18.9"
- "@babel/parser" "^7.18.9"
- "@babel/template" "^7.18.6"
- "@babel/traverse" "^7.18.9"
- "@babel/types" "^7.18.9"
+ "@babel/generator" "^7.20.7"
+ "@babel/helper-compilation-targets" "^7.20.7"
+ "@babel/helper-module-transforms" "^7.20.11"
+ "@babel/helpers" "^7.20.7"
+ "@babel/parser" "^7.20.7"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.12"
+ "@babel/types" "^7.20.7"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
- json5 "^2.2.1"
+ json5 "^2.2.2"
semver "^6.3.0"
"@babel/core@^7.14.0":
@@ -251,12 +256,12 @@
"@jridgewell/gen-mapping" "^0.3.2"
jsesc "^2.5.1"
-"@babel/generator@^7.14.0", "@babel/generator@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.9.tgz#68337e9ea8044d6ddc690fb29acae39359cca0a5"
- integrity sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==
+"@babel/generator@^7.14.0", "@babel/generator@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a"
+ integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==
dependencies:
- "@babel/types" "^7.18.9"
+ "@babel/types" "^7.20.7"
"@jridgewell/gen-mapping" "^0.3.2"
jsesc "^2.5.1"
@@ -296,6 +301,15 @@
"@jridgewell/gen-mapping" "^0.3.2"
jsesc "^2.5.1"
+"@babel/generator@^7.18.9":
+ version "7.18.9"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.9.tgz#68337e9ea8044d6ddc690fb29acae39359cca0a5"
+ integrity sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==
+ dependencies:
+ "@babel/types" "^7.18.9"
+ "@jridgewell/gen-mapping" "^0.3.2"
+ jsesc "^2.5.1"
+
"@babel/generator@^7.9.6":
version "7.9.6"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.6.tgz#5408c82ac5de98cda0d77d8124e99fa1f2170a43"
@@ -405,6 +419,17 @@
browserslist "^4.20.2"
semver "^6.3.0"
+"@babel/helper-compilation-targets@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb"
+ integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==
+ dependencies:
+ "@babel/compat-data" "^7.20.5"
+ "@babel/helper-validator-option" "^7.18.6"
+ browserslist "^4.21.3"
+ lru-cache "^5.1.1"
+ semver "^6.3.0"
+
"@babel/helper-create-class-features-plugin@^7.14.5":
version "7.14.5"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.5.tgz#8842ec495516dd1ed8f6c572be92ba78b1e9beef"
@@ -628,6 +653,14 @@
"@babel/template" "^7.18.6"
"@babel/types" "^7.18.9"
+"@babel/helper-function-name@^7.19.0":
+ version "7.19.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c"
+ integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==
+ dependencies:
+ "@babel/template" "^7.18.10"
+ "@babel/types" "^7.19.0"
+
"@babel/helper-function-name@^7.8.3", "@babel/helper-function-name@^7.9.5":
version "7.9.5"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz#2b53820d35275120e1874a82e5aabe1376920a5c"
@@ -811,6 +844,20 @@
"@babel/traverse" "^7.18.0"
"@babel/types" "^7.18.0"
+"@babel/helper-module-transforms@^7.20.11":
+ version "7.20.11"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz#df4c7af713c557938c50ea3ad0117a7944b2f1b0"
+ integrity sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.18.9"
+ "@babel/helper-module-imports" "^7.18.6"
+ "@babel/helper-simple-access" "^7.20.2"
+ "@babel/helper-split-export-declaration" "^7.18.6"
+ "@babel/helper-validator-identifier" "^7.19.1"
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.10"
+ "@babel/types" "^7.20.7"
+
"@babel/helper-module-transforms@^7.9.0":
version "7.9.0"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5"
@@ -894,6 +941,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz#4b8aea3b069d8cb8a72cdfe28ddf5ceca695ef2f"
integrity sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==
+"@babel/helper-plugin-utils@^7.20.2":
+ version "7.20.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629"
+ integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
+
"@babel/helper-regex@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965"
@@ -1030,6 +1082,13 @@
dependencies:
"@babel/types" "^7.18.6"
+"@babel/helper-simple-access@^7.20.2":
+ version "7.20.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9"
+ integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==
+ dependencies:
+ "@babel/types" "^7.20.2"
+
"@babel/helper-simple-access@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae"
@@ -1052,6 +1111,13 @@
dependencies:
"@babel/types" "^7.18.9"
+"@babel/helper-skip-transparent-expression-wrappers@^7.20.0":
+ version "7.20.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
+ integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==
+ dependencies:
+ "@babel/types" "^7.20.0"
+
"@babel/helper-split-export-declaration@^7.10.4":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1"
@@ -1092,6 +1158,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz#181f22d28ebe1b3857fa575f5c290b1aaf659b56"
integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==
+"@babel/helper-string-parser@^7.19.4":
+ version "7.19.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
+ integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
+
"@babel/helper-validator-identifier@^7.10.4":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
@@ -1112,6 +1183,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076"
integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==
+"@babel/helper-validator-identifier@^7.19.1":
+ version "7.19.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
+ integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
+
"@babel/helper-validator-identifier@^7.9.0", "@babel/helper-validator-identifier@^7.9.5":
version "7.9.5"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80"
@@ -1188,6 +1264,15 @@
"@babel/traverse" "^7.18.2"
"@babel/types" "^7.18.2"
+"@babel/helpers@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce"
+ integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==
+ dependencies:
+ "@babel/template" "^7.20.7"
+ "@babel/traverse" "^7.20.7"
+ "@babel/types" "^7.20.7"
+
"@babel/helpers@^7.9.6":
version "7.9.6"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.6.tgz#092c774743471d0bb6c7de3ad465ab3d3486d580"
@@ -1257,10 +1342,10 @@
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.11.tgz#68bb07ab3d380affa9a3f96728df07969645d2d9"
integrity sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==
-"@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.9.tgz#f2dde0c682ccc264a9a8595efd030a5cc8fd2539"
- integrity sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==
+"@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b"
+ integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==
"@babel/parser@^7.14.5":
version "7.14.5"
@@ -1292,6 +1377,11 @@
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.8.tgz#822146080ac9c62dac0823bb3489622e0bc1cbdf"
integrity sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==
+"@babel/parser@^7.18.9":
+ version "7.18.9"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.9.tgz#f2dde0c682ccc264a9a8595efd030a5cc8fd2539"
+ integrity sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==
+
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.17.12":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12.tgz#1dca338caaefca368639c9ffb095afbd4d420b1e"
@@ -1609,7 +1699,7 @@
"@babel/helper-plugin-utils" "^7.8.3"
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
-"@babel/plugin-proposal-optional-chaining@^7.12.7", "@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.18.9":
+"@babel/plugin-proposal-optional-chaining@^7.12.7", "@babel/plugin-proposal-optional-chaining@^7.18.9":
version "7.18.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993"
integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==
@@ -1618,6 +1708,15 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
+"@babel/plugin-proposal-optional-chaining@^7.13.12":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz#49f2b372519ab31728cc14115bb0998b15bfda55"
+ integrity sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+
"@babel/plugin-proposal-optional-chaining@^7.17.12":
version "7.17.12"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.17.12.tgz#f96949e9bacace3a9066323a5cf90cfb9de67174"
@@ -2286,15 +2385,14 @@
"@babel/helper-simple-access" "^7.8.3"
babel-plugin-dynamic-import-node "^2.3.3"
-"@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz#afd243afba166cca69892e24a8fd8c9f2ca87883"
- integrity sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==
+"@babel/plugin-transform-modules-commonjs@^7.13.8":
+ version "7.20.11"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz#8cb23010869bf7669fd4b3098598b6b2be6dc607"
+ integrity sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==
dependencies:
- "@babel/helper-module-transforms" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-simple-access" "^7.18.6"
- babel-plugin-dynamic-import-node "^2.3.3"
+ "@babel/helper-module-transforms" "^7.20.11"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-simple-access" "^7.20.2"
"@babel/plugin-transform-modules-commonjs@^7.18.2":
version "7.18.2"
@@ -2306,6 +2404,16 @@
"@babel/helper-simple-access" "^7.18.2"
babel-plugin-dynamic-import-node "^2.3.3"
+"@babel/plugin-transform-modules-commonjs@^7.18.6":
+ version "7.18.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz#afd243afba166cca69892e24a8fd8c9f2ca87883"
+ integrity sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-simple-access" "^7.18.6"
+ babel-plugin-dynamic-import-node "^2.3.3"
+
"@babel/plugin-transform-modules-systemjs@^7.18.0":
version "7.18.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.4.tgz#3d6fd9868c735cce8f38d6ae3a407fb7e61e6d46"
@@ -3073,6 +3181,15 @@
"@babel/parser" "^7.18.6"
"@babel/types" "^7.18.6"
+"@babel/template@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
+ integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
+ dependencies:
+ "@babel/code-frame" "^7.18.6"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
+
"@babel/traverse@^7.1.6", "@babel/traverse@^7.12.11", "@babel/traverse@^7.12.9", "@babel/traverse@^7.18.10", "@babel/traverse@^7.18.11":
version "7.18.11"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.11.tgz#3d51f2afbd83ecf9912bcbb5c4d94e3d2ddaa16f"
@@ -3119,19 +3236,19 @@
debug "^4.1.0"
globals "^11.1.0"
-"@babel/traverse@^7.14.0", "@babel/traverse@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.9.tgz#deeff3e8f1bad9786874cb2feda7a2d77a904f98"
- integrity sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==
+"@babel/traverse@^7.14.0", "@babel/traverse@^7.20.10", "@babel/traverse@^7.20.12", "@babel/traverse@^7.20.7":
+ version "7.20.12"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.12.tgz#7f0f787b3a67ca4475adef1f56cb94f6abd4a4b5"
+ integrity sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==
dependencies:
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.18.9"
+ "@babel/generator" "^7.20.7"
"@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.18.9"
+ "@babel/helper-function-name" "^7.19.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.18.9"
- "@babel/types" "^7.18.9"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
debug "^4.1.0"
globals "^11.1.0"
@@ -3183,6 +3300,22 @@
debug "^4.1.0"
globals "^11.1.0"
+"@babel/traverse@^7.18.9":
+ version "7.18.9"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.9.tgz#deeff3e8f1bad9786874cb2feda7a2d77a904f98"
+ integrity sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==
+ dependencies:
+ "@babel/code-frame" "^7.18.6"
+ "@babel/generator" "^7.18.9"
+ "@babel/helper-environment-visitor" "^7.18.9"
+ "@babel/helper-function-name" "^7.18.9"
+ "@babel/helper-hoist-variables" "^7.18.6"
+ "@babel/helper-split-export-declaration" "^7.18.6"
+ "@babel/parser" "^7.18.9"
+ "@babel/types" "^7.18.9"
+ debug "^4.1.0"
+ globals "^11.1.0"
+
"@babel/traverse@^7.7.2":
version "7.14.7"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.7.tgz#64007c9774cfdc3abd23b0780bc18a3ce3631753"
@@ -3280,6 +3413,15 @@
"@babel/helper-validator-identifier" "^7.18.6"
to-fast-properties "^2.0.0"
+"@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f"
+ integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==
+ dependencies:
+ "@babel/helper-string-parser" "^7.19.4"
+ "@babel/helper-validator-identifier" "^7.19.1"
+ to-fast-properties "^2.0.0"
+
"@bcoe/v8-coverage@^0.2.3":
version "0.2.3"
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
@@ -3935,10 +4077,10 @@
dependencies:
"@hapi/hoek" "^9.0.0"
-"@hookform/resolvers@^2.9.7":
- version "2.9.7"
- resolved "https://registry.yarnpkg.com/@hookform/resolvers/-/resolvers-2.9.7.tgz#8b257ae67234ce0270e6b044c1a61fb98ec02b4b"
- integrity sha512-BloehX3MOLwuFEwT4yZnmolPjVmqyn8VsSuodLfazbCIqxBHsQ4qUZsi+bvNNCduRli1AGWFrkDLGD5QoNzsoA==
+"@hookform/resolvers@^2.9.10":
+ version "2.9.10"
+ resolved "https://registry.yarnpkg.com/@hookform/resolvers/-/resolvers-2.9.10.tgz#e7e88942ee34e97b7bc937b0be4694194c9cd420"
+ integrity sha512-JIL1DgJIlH9yuxcNGtyhsWX/PgNltz+5Gr6+8SX9fhXc/hPbEIk6wPI82nhgvp3uUb6ZfAM5mqg/x7KR7NAb+A==
"@humanwhocodes/config-array@^0.5.0":
version "0.5.0"
@@ -4259,22 +4401,22 @@
"@types/yargs" "^17.0.8"
chalk "^4.0.0"
-"@jimp/bmp@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.16.1.tgz#6e2da655b2ba22e721df0795423f34e92ef13768"
- integrity sha512-iwyNYQeBawrdg/f24x3pQ5rEx+/GwjZcCXd3Kgc+ZUd+Ivia7sIqBsOnDaMZdKCBPlfW364ekexnlOqyVa0NWg==
+"@jimp/bmp@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.16.2.tgz#3982879b10626fc8cf1b4ab8627158bad142ec9d"
+ integrity sha512-4g9vW45QfMoGhLVvaFj26h4e7cC+McHUQwyFQmNTLW4FfC1OonN9oUr2m/FEDGkTYKR7aqdXR5XUqqIkHWLaFw==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
bmp-js "^0.1.0"
-"@jimp/core@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/core/-/core-0.16.1.tgz#68c4288f6ef7f31a0f6b859ba3fb28dae930d39d"
- integrity sha512-la7kQia31V6kQ4q1kI/uLimu8FXx7imWVajDGtwUG8fzePLWDFJyZl0fdIXVCL1JW2nBcRHidUot6jvlRDi2+g==
+"@jimp/core@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/core/-/core-0.16.2.tgz#4f8e83a4af76a60610e794362d1deb5afaa03353"
+ integrity sha512-dp7HcyUMzjXphXYodI6PaXue+I9PXAavbb+AN+1XqFbotN22Z12DosNPEyy+UhLY/hZiQQqUkEaJHkvV31rs+w==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
any-base "^1.1.0"
buffer "^5.2.0"
exif-parser "^0.1.12"
@@ -4285,266 +4427,266 @@
pixelmatch "^4.0.2"
tinycolor2 "^1.4.1"
-"@jimp/custom@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/custom/-/custom-0.16.1.tgz#28b659c59e20a1d75a0c46067bd3f4bd302cf9c5"
- integrity sha512-DNUAHNSiUI/j9hmbatD6WN/EBIyeq4AO0frl5ETtt51VN1SvE4t4v83ZA/V6ikxEf3hxLju4tQ5Pc3zmZkN/3A==
+"@jimp/custom@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/custom/-/custom-0.16.2.tgz#e1ba6874551dd4d748825680c3a16bb7cd3595b6"
+ integrity sha512-GtNwOs4hcVS2GIbqRUf42rUuX07oLB92cj7cqxZb0ZGWwcwhnmSW0TFLAkNafXmqn9ug4VTpNvcJSUdiuECVKg==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/core" "^0.16.1"
+ "@jimp/core" "^0.16.2"
-"@jimp/gif@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/gif/-/gif-0.16.1.tgz#d1f7c3a58f4666482750933af8b8f4666414f3ca"
- integrity sha512-r/1+GzIW1D5zrP4tNrfW+3y4vqD935WBXSc8X/wm23QTY9aJO9Lw6PEdzpYCEY+SOklIFKaJYUAq/Nvgm/9ryw==
+"@jimp/gif@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/gif/-/gif-0.16.2.tgz#c049cf0fc781233aca418f130f8664c4cbab64c1"
+ integrity sha512-TMdyT9Q0paIKNtT7c5KzQD29CNCsI/t8ka28jMrBjEK7j5RRTvBfuoOnHv7pDJRCjCIqeUoaUSJ7QcciKic6CA==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
gifwrap "^0.9.2"
omggif "^1.0.9"
-"@jimp/jpeg@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/jpeg/-/jpeg-0.16.1.tgz#3b7bb08a4173f2f6d81f3049b251df3ee2ac8175"
- integrity sha512-8352zrdlCCLFdZ/J+JjBslDvml+fS3Z8gttdml0We759PnnZGqrnPRhkOEOJbNUlE+dD4ckLeIe6NPxlS/7U+w==
+"@jimp/jpeg@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/jpeg/-/jpeg-0.16.2.tgz#1060cff9700d08802a0932a397cfb61a34b1d058"
+ integrity sha512-BW5gZydgq6wdIwHd+3iUNgrTklvoQc/FUKSj9meM6A0FU21lUaansRX5BDdJqHkyXJLnnlDGwDt27J+hQuBAVw==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
- jpeg-js "0.4.2"
+ "@jimp/utils" "^0.16.2"
+ jpeg-js "^0.4.2"
-"@jimp/plugin-blit@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-blit/-/plugin-blit-0.16.1.tgz#09ea919f9d326de3b9c2826fe4155da37dde8edb"
- integrity sha512-fKFNARm32RoLSokJ8WZXHHH2CGzz6ire2n1Jh6u+XQLhk9TweT1DcLHIXwQMh8oR12KgjbgsMGvrMVlVknmOAg==
+"@jimp/plugin-blit@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-blit/-/plugin-blit-0.16.2.tgz#65e683f3f2860a59999b6af068efde3625f86cf7"
+ integrity sha512-Z31rRfV80gC/r+B/bOPSVVpJEWXUV248j7MdnMOFLu4vr8DMqXVo9jYqvwU/s4LSTMAMXqm4Jg6E/jQfadPKAg==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-blur@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-blur/-/plugin-blur-0.16.1.tgz#e614fa002797dcd662e705d4cea376e7db968bf5"
- integrity sha512-1WhuLGGj9MypFKRcPvmW45ht7nXkOKu+lg3n2VBzIB7r4kKNVchuI59bXaCYQumOLEqVK7JdB4glaDAbCQCLyw==
+"@jimp/plugin-blur@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-blur/-/plugin-blur-0.16.2.tgz#05533c19973a16feb037d175bb77e4532f144e45"
+ integrity sha512-ShkJCAzRI+1fAKPuLLgEkixpSpVmKTYaKEFROUcgmrv9AansDXGNCupchqVMTdxf8zPyW8rR1ilvG3OJobufLQ==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-circle@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-circle/-/plugin-circle-0.16.1.tgz#20e3194a67ca29740aba2630fd4d0a89afa27491"
- integrity sha512-JK7yi1CIU7/XL8hdahjcbGA3V7c+F+Iw+mhMQhLEi7Q0tCnZ69YJBTamMiNg3fWPVfMuvWJJKOBRVpwNTuaZRg==
+"@jimp/plugin-circle@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-circle/-/plugin-circle-0.16.2.tgz#f66c7b8562ccced02688612f548b76952b14ab70"
+ integrity sha512-6T4z/48F4Z5+YwAVCLOvXQcyGmo0E3WztxCz6XGQf66r4JJK78+zcCDYZFLMx0BGM0091FogNK4QniP8JaOkrA==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-color@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-color/-/plugin-color-0.16.1.tgz#0f298ba74dee818b663834cd80d53e56f3755233"
- integrity sha512-9yQttBAO5SEFj7S6nJK54f+1BnuBG4c28q+iyzm1JjtnehjqMg6Ljw4gCSDCvoCQ3jBSYHN66pmwTV74SU1B7A==
+"@jimp/plugin-color@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-color/-/plugin-color-0.16.2.tgz#925d3b2fa41807c7119197bdf9c5694d92efe3be"
+ integrity sha512-6oBV0g0J17/7E+aTquvUsgSc85nUbUi+64tIK5eFIDzvjhlqhjGNJYlc46KJMCWIs61qRJayQoZdL/iT/iQuGQ==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
tinycolor2 "^1.4.1"
-"@jimp/plugin-contain@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-contain/-/plugin-contain-0.16.1.tgz#3c5f5c495fd9bb08a970739d83694934f58123f2"
- integrity sha512-44F3dUIjBDHN+Ym/vEfg+jtjMjAqd2uw9nssN67/n4FdpuZUVs7E7wadKY1RRNuJO+WgcD5aDQcsvurXMETQTg==
+"@jimp/plugin-contain@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-contain/-/plugin-contain-0.16.2.tgz#e5cf5ca7cc3eec1306cb1b92dbd2a1fad6146a94"
+ integrity sha512-pLcxO3hVN3LCEhMNvpZ9B7xILHVlS433Vv16zFFJxLRqZdYvPLsc+ZzJhjAiHHuEjVblQrktHE3LGeQwGJPo0w==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-cover@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-cover/-/plugin-cover-0.16.1.tgz#0e8caec16a40abe15b1b32e5383a603a3306dc41"
- integrity sha512-YztWCIldBAVo0zxcQXR+a/uk3/TtYnpKU2CanOPJ7baIuDlWPsG+YE4xTsswZZc12H9Kl7CiziEbDtvF9kwA/Q==
+"@jimp/plugin-cover@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-cover/-/plugin-cover-0.16.2.tgz#c4aadfaad718a14838219889936ad39a18021df4"
+ integrity sha512-gzWM7VvYeI8msyiwbUZxH+sGQEgO6Vd6adGxZ0CeKX00uQOe5lDzxb1Wjx7sHcJGz8a/5fmAuwz7rdDtpDUbkw==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-crop@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-crop/-/plugin-crop-0.16.1.tgz#b362497c873043fe47ba881ab08604bf7226f50f"
- integrity sha512-UQdva9oQzCVadkyo3T5Tv2CUZbf0klm2cD4cWMlASuTOYgaGaFHhT9st+kmfvXjKL8q3STkBu/zUPV6PbuV3ew==
+"@jimp/plugin-crop@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-crop/-/plugin-crop-0.16.2.tgz#2dd716b93a865b839143016acac53681d85362c3"
+ integrity sha512-qCd3hfMEE+Z2EuuyXewgXRTtKJGIerWzc1zLEJztsUkPz5i73IGgkOL+mrNutZwGaXZbm+8SwUaGb46sxAO6Tw==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-displace@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-displace/-/plugin-displace-0.16.1.tgz#4dd9db518c3e78de9d723f86a234bf98922afe8d"
- integrity sha512-iVAWuz2+G6Heu8gVZksUz+4hQYpR4R0R/RtBzpWEl8ItBe7O6QjORAkhxzg+WdYLL2A/Yd4ekTpvK0/qW8hTVw==
+"@jimp/plugin-displace@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-displace/-/plugin-displace-0.16.2.tgz#e4852c48f4b2095a4bcc61c8c1a5faa9618773ef"
+ integrity sha512-6nXdvNNjCdD95v2o3/jPeur903dz08lG4Y8gmr5oL2yVv9LSSbMonoXYrR/ASesdyXqGdXJLU4NL+yZs4zUqbQ==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-dither@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-dither/-/plugin-dither-0.16.1.tgz#b47de2c0bb09608bed228b41c3cd01a85ec2d45b"
- integrity sha512-tADKVd+HDC9EhJRUDwMvzBXPz4GLoU6s5P7xkVq46tskExYSptgj5713J5Thj3NMgH9Rsqu22jNg1H/7tr3V9Q==
+"@jimp/plugin-dither@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-dither/-/plugin-dither-0.16.2.tgz#e5cf77f5b0b8a4247c171b7e234c99031b6a59f3"
+ integrity sha512-DERpIzy21ZanMkVsD0Tdy8HQLbD1E41OuvIzaMRoW4183PA6AgGNlrQoFTyXmzjy6FTy1SxaQgTEdouInAWZ9Q==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-fisheye@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.16.1.tgz#f625047b6cdbe1b83b89e9030fd025ab19cdb1a4"
- integrity sha512-BWHnc5hVobviTyIRHhIy9VxI1ACf4CeSuCfURB6JZm87YuyvgQh5aX5UDKtOz/3haMHXBLP61ZBxlNpMD8CG4A==
+"@jimp/plugin-fisheye@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.16.2.tgz#ec6cab102959fd67a4061e6812db6135731f7731"
+ integrity sha512-Df7PsGIwiIpQu3EygYCnaJyTfOwvwtYV3cmYJS7yFLtdiFUuod+hlSo5GkwEPLAy+QBxhUbDuUqnsWo4NQtbiQ==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-flip@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-flip/-/plugin-flip-0.16.1.tgz#7a99ea22bde802641017ed0f2615870c144329bb"
- integrity sha512-KdxTf0zErfZ8DyHkImDTnQBuHby+a5YFdoKI/G3GpBl3qxLBvC+PWkS2F/iN3H7wszP7/TKxTEvWL927pypT0w==
+"@jimp/plugin-flip@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-flip/-/plugin-flip-0.16.2.tgz#3d6f5eac4a8d7d62251aba55259ecb4f8dfe42cf"
+ integrity sha512-+2uC8ioVQUr06mnjSWraskz2L33nJHze35LkQ8ZNsIpoZLkgvfiWatqAs5bj+1jGI/9kxoCFAaT1Is0f+a4/rw==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-gaussian@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.16.1.tgz#0845e314085ccd52e34fad9a83949bc0d81a68e8"
- integrity sha512-u9n4wjskh3N1mSqketbL6tVcLU2S5TEaFPR40K6TDv4phPLZALi1Of7reUmYpVm8mBDHt1I6kGhuCJiWvzfGyg==
+"@jimp/plugin-gaussian@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.16.2.tgz#6546886e8b0acfebf285c5aabc4fea476dc54159"
+ integrity sha512-2mnuDSg4ZEH8zcJig7DZZf4st/cYmQ5UYJKP76iGhZ+6JDACk6uejwAgT5xHecNhkVAaXMdCybA2eknH/9OE1w==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-invert@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-invert/-/plugin-invert-0.16.1.tgz#7e6f5a15707256f3778d06921675bbcf18545c97"
- integrity sha512-2DKuyVXANH8WDpW9NG+PYFbehzJfweZszFYyxcaewaPLN0GxvxVLOGOPP1NuUTcHkOdMFbE0nHDuB7f+sYF/2w==
+"@jimp/plugin-invert@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-invert/-/plugin-invert-0.16.2.tgz#6ca4f7b204c5d674d093d9aa4c32bf20a924a0ee"
+ integrity sha512-xFvHbVepTY/nus+6yXiYN1iq+UBRkT0MdnObbiQPstUrAsz0Imn6MWISsnAyMvcNxHGrxaxjuU777JT/esM0gg==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-mask@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-mask/-/plugin-mask-0.16.1.tgz#e7f2460e05c3cda7af5e76f33ccb0579f66f90df"
- integrity sha512-snfiqHlVuj4bSFS0v96vo2PpqCDMe4JB+O++sMo5jF5mvGcGL6AIeLo8cYqPNpdO6BZpBJ8MY5El0Veckhr39Q==
+"@jimp/plugin-mask@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-mask/-/plugin-mask-0.16.2.tgz#b352392bc8773f6b21b34901ed17f2bb90a8047e"
+ integrity sha512-AbdO85xxhfgEDdxYKpUotEI9ixiCMaIpfYHD5a5O/VWeimz2kuwhcrzlHGiyq1kKAgRcl0WEneTCZAHVSyvPKA==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-normalize@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-normalize/-/plugin-normalize-0.16.1.tgz#032dfd88eefbc4dedc8b1b2d243832e4f3af30c8"
- integrity sha512-dOQfIOvGLKDKXPU8xXWzaUeB0nvkosHw6Xg1WhS1Z5Q0PazByhaxOQkSKgUryNN/H+X7UdbDvlyh/yHf3ITRaw==
+"@jimp/plugin-normalize@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-normalize/-/plugin-normalize-0.16.2.tgz#e36a8ecaea6acb4711c543212863a570fe19901f"
+ integrity sha512-+ItBWFwmB0Od7OfOtTYT1gm543PpHUgU8/DN55z83l1JqS0OomDJAe7BmCppo2405TN6YtVm/csXo7p4iWd/SQ==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-print@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-print/-/plugin-print-0.16.1.tgz#66b803563f9d109825970714466e6ab9ae639ff6"
- integrity sha512-ceWgYN40jbN4cWRxixym+csyVymvrryuKBQ+zoIvN5iE6OyS+2d7Mn4zlNgumSczb9GGyZZESIgVcBDA1ezq0Q==
+"@jimp/plugin-print@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-print/-/plugin-print-0.16.2.tgz#8873338941498997cb2a0d2820e9d58d7c03ba61"
+ integrity sha512-ifTGEeJ5UZTCiqC70HMeU3iXk/vsOmhWiwVGOXSFXhFeE8ZpDWvlmBsrMYnRrJGuaaogHOIrrQPI+kCdDBSBIQ==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
load-bmfont "^1.4.0"
-"@jimp/plugin-resize@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-resize/-/plugin-resize-0.16.1.tgz#65e39d848ed13ba2d6c6faf81d5d590396571d10"
- integrity sha512-u4JBLdRI7dargC04p2Ha24kofQBk3vhaf0q8FwSYgnCRwxfvh2RxvhJZk9H7Q91JZp6wgjz/SjvEAYjGCEgAwQ==
+"@jimp/plugin-resize@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-resize/-/plugin-resize-0.16.2.tgz#7bcca41d9959667fb1e6e87bd6073ce0dbc43bc4"
+ integrity sha512-gE4N9l6xuwzacFZ2EPCGZCJ/xR+aX2V7GdMndIl/6kYIw5/eib1SFuF9AZLvIPSFuE1FnGo8+vT0pr++SSbhYg==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-rotate@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-rotate/-/plugin-rotate-0.16.1.tgz#53fb5d51a4b3d05af9c91c2a8fffe5d7a1a47c8c"
- integrity sha512-ZUU415gDQ0VjYutmVgAYYxC9Og9ixu2jAGMCU54mSMfuIlmohYfwARQmI7h4QB84M76c9hVLdONWjuo+rip/zg==
+"@jimp/plugin-rotate@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-rotate/-/plugin-rotate-0.16.2.tgz#deba6956eaf1d127e91389c53d5c6f59ef80d17f"
+ integrity sha512-/CTEYkR1HrgmnE0VqPhhbBARbDAfFX590LWGIpxcYIYsUUGQCadl+8Qo4UX13FH0Nt8UHEtPA+O2x08uPYg9UA==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-scale@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-scale/-/plugin-scale-0.16.1.tgz#89f6ba59feed3429847ed226aebda33a240cc647"
- integrity sha512-jM2QlgThIDIc4rcyughD5O7sOYezxdafg/2Xtd1csfK3z6fba3asxDwthqPZAgitrLgiKBDp6XfzC07Y/CefUw==
+"@jimp/plugin-scale@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-scale/-/plugin-scale-0.16.2.tgz#d297e6a83f860b5e29bc5bd30ec1556561cb71ab"
+ integrity sha512-3inuxfrlquyLaqFdiiiQNJUurR0WbvN5wAf1qcYX2LubG1AG8grayYD6H7XVoxfUGTZXh1kpmeirEYlqA2zxcw==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-shadow@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-shadow/-/plugin-shadow-0.16.1.tgz#a7af892a740febf41211e10a5467c3c5c521a04c"
- integrity sha512-MeD2Is17oKzXLnsphAa1sDstTu6nxscugxAEk3ji0GV1FohCvpHBcec0nAq6/czg4WzqfDts+fcPfC79qWmqrA==
+"@jimp/plugin-shadow@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-shadow/-/plugin-shadow-0.16.2.tgz#2365b0d4ade0f9641cf48b887431fe478a7ace45"
+ integrity sha512-Q0aIs2/L6fWMcEh9Ms73u34bT1hyUMw/oxaVoIzOLo6/E8YzCs2Bi63H0/qaPS0MQpEppI++kvosPbblABY79w==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugin-threshold@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugin-threshold/-/plugin-threshold-0.16.1.tgz#34f3078f9965145b7ae26c53a32ad74b1195bbf5"
- integrity sha512-iGW8U/wiCSR0+6syrPioVGoSzQFt4Z91SsCRbgNKTAk7D+XQv6OI78jvvYg4o0c2FOlwGhqz147HZV5utoSLxA==
+"@jimp/plugin-threshold@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugin-threshold/-/plugin-threshold-0.16.2.tgz#3b851659ab1db195b2b4e6c9901f19996a086568"
+ integrity sha512-gyOwmBgjtMPvcuyOhkP6dOGWbQdaTfhcBRN22mYeI/k/Wh/Zh1OI21F6eKLApsVRmg15MoFnkrCz64RROC34sw==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
-"@jimp/plugins@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/plugins/-/plugins-0.16.1.tgz#9f08544c97226d6460a16ced79f57e85bec3257b"
- integrity sha512-c+lCqa25b+4q6mJZSetlxhMoYuiltyS+ValLzdwK/47+aYsq+kcJNl+TuxIEKf59yr9+5rkbpsPkZHLF/V7FFA==
+"@jimp/plugins@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/plugins/-/plugins-0.16.2.tgz#bba2a7247f926fe7e13e35b24ca9552b0aae4312"
+ integrity sha512-zCvYtCgctmC0tkYEu+y+kSwSIZBsNznqJ3/3vkpzxdyjd6wCfNY5Qc/68MPrLc1lmdeGo4cOOTYHG7Vc6myzRw==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/plugin-blit" "^0.16.1"
- "@jimp/plugin-blur" "^0.16.1"
- "@jimp/plugin-circle" "^0.16.1"
- "@jimp/plugin-color" "^0.16.1"
- "@jimp/plugin-contain" "^0.16.1"
- "@jimp/plugin-cover" "^0.16.1"
- "@jimp/plugin-crop" "^0.16.1"
- "@jimp/plugin-displace" "^0.16.1"
- "@jimp/plugin-dither" "^0.16.1"
- "@jimp/plugin-fisheye" "^0.16.1"
- "@jimp/plugin-flip" "^0.16.1"
- "@jimp/plugin-gaussian" "^0.16.1"
- "@jimp/plugin-invert" "^0.16.1"
- "@jimp/plugin-mask" "^0.16.1"
- "@jimp/plugin-normalize" "^0.16.1"
- "@jimp/plugin-print" "^0.16.1"
- "@jimp/plugin-resize" "^0.16.1"
- "@jimp/plugin-rotate" "^0.16.1"
- "@jimp/plugin-scale" "^0.16.1"
- "@jimp/plugin-shadow" "^0.16.1"
- "@jimp/plugin-threshold" "^0.16.1"
+ "@jimp/plugin-blit" "^0.16.2"
+ "@jimp/plugin-blur" "^0.16.2"
+ "@jimp/plugin-circle" "^0.16.2"
+ "@jimp/plugin-color" "^0.16.2"
+ "@jimp/plugin-contain" "^0.16.2"
+ "@jimp/plugin-cover" "^0.16.2"
+ "@jimp/plugin-crop" "^0.16.2"
+ "@jimp/plugin-displace" "^0.16.2"
+ "@jimp/plugin-dither" "^0.16.2"
+ "@jimp/plugin-fisheye" "^0.16.2"
+ "@jimp/plugin-flip" "^0.16.2"
+ "@jimp/plugin-gaussian" "^0.16.2"
+ "@jimp/plugin-invert" "^0.16.2"
+ "@jimp/plugin-mask" "^0.16.2"
+ "@jimp/plugin-normalize" "^0.16.2"
+ "@jimp/plugin-print" "^0.16.2"
+ "@jimp/plugin-resize" "^0.16.2"
+ "@jimp/plugin-rotate" "^0.16.2"
+ "@jimp/plugin-scale" "^0.16.2"
+ "@jimp/plugin-shadow" "^0.16.2"
+ "@jimp/plugin-threshold" "^0.16.2"
timm "^1.6.1"
-"@jimp/png@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/png/-/png-0.16.1.tgz#f24cfc31529900b13a2dd9d4fdb4460c1e4d814e"
- integrity sha512-iyWoCxEBTW0OUWWn6SveD4LePW89kO7ZOy5sCfYeDM/oTPLpR8iMIGvZpZUz1b8kvzFr27vPst4E5rJhGjwsdw==
+"@jimp/png@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/png/-/png-0.16.2.tgz#45af82656aad2fde0489687a538f2af903867a1b"
+ integrity sha512-sFOtOSz/tzDwXEChFQ/Nxe+0+vG3Tj0eUxnZVDUG/StXE9dI8Bqmwj3MIa0EgK5s+QG3YlnDOmlPUa4JqmeYeQ==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/utils" "^0.16.1"
+ "@jimp/utils" "^0.16.2"
pngjs "^3.3.3"
-"@jimp/tiff@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/tiff/-/tiff-0.16.1.tgz#0e8756695687d7574b6bc73efab0acd4260b7a12"
- integrity sha512-3K3+xpJS79RmSkAvFMgqY5dhSB+/sxhwTFA9f4AVHUK0oKW+u6r52Z1L0tMXHnpbAdR9EJ+xaAl2D4x19XShkQ==
+"@jimp/tiff@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/tiff/-/tiff-0.16.2.tgz#613870065fe1387f6a09fe9d8230c00c35b7b640"
+ integrity sha512-ADcdqmtZF+U2YoaaHTzFX8D6NFpmN4WZUT0BPMerEuY7Cq8QoLYU22z2h034FrVW+Rbi1b3y04sB9iDiQAlf2w==
dependencies:
"@babel/runtime" "^7.7.2"
utif "^2.0.1"
-"@jimp/types@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/types/-/types-0.16.1.tgz#0dbab37b3202315c91010f16c31766d35a2322cc"
- integrity sha512-g1w/+NfWqiVW4CaXSJyD28JQqZtm2eyKMWPhBBDCJN9nLCN12/Az0WFF3JUAktzdsEC2KRN2AqB1a2oMZBNgSQ==
+"@jimp/types@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/types/-/types-0.16.2.tgz#e245281495d0c92cd73174f7ac359211882288c7"
+ integrity sha512-0Ue5Sq0XnDF6TirisWv5E+8uOnRcd8vRLuwocJOhF76NIlcQrz+5r2k2XWKcr3d+11n28dHLXW5TKSqrUopxhA==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/bmp" "^0.16.1"
- "@jimp/gif" "^0.16.1"
- "@jimp/jpeg" "^0.16.1"
- "@jimp/png" "^0.16.1"
- "@jimp/tiff" "^0.16.1"
+ "@jimp/bmp" "^0.16.2"
+ "@jimp/gif" "^0.16.2"
+ "@jimp/jpeg" "^0.16.2"
+ "@jimp/png" "^0.16.2"
+ "@jimp/tiff" "^0.16.2"
timm "^1.6.1"
-"@jimp/utils@^0.16.1":
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/@jimp/utils/-/utils-0.16.1.tgz#2f51e6f14ff8307c4aa83d5e1a277da14a9fe3f7"
- integrity sha512-8fULQjB0x4LzUSiSYG6ZtQl355sZjxbv8r9PPAuYHzS9sGiSHJQavNqK/nKnpDsVkU88/vRGcE7t3nMU0dEnVw==
+"@jimp/utils@^0.16.2":
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/@jimp/utils/-/utils-0.16.2.tgz#e78cb82c46f608b72179a31581065bf75b35166c"
+ integrity sha512-XENrPvmigiXZQ8E2nxJqO6UVvWBLzbNwyYi3Y8Q1IECoYhYI3kgOQ0fmy4G269Vz1V0omh1bNmC42r4OfXg1Jg==
dependencies:
"@babel/runtime" "^7.7.2"
regenerator-runtime "^0.13.3"
@@ -4757,10 +4899,10 @@
prop-types "^15.6.1"
react-lifecycles-compat "^3.0.4"
-"@react-native-async-storage/async-storage@^1.17.9":
- version "1.17.9"
- resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.17.9.tgz#2092d675fb9de05a3e71cdf8cefa9c5c4e4a3728"
- integrity sha512-HKhMvjpA5/YzNMkcY3qeWLdTtUrtJe243knHNNYe1c0IplX69hZyiw7DjFwAgxPG9+YvzHDHliqPV+mBNOv+cQ==
+"@react-native-async-storage/async-storage@^1.17.11":
+ version "1.17.11"
+ resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.17.11.tgz#7ec329c1b9f610e344602e806b04d7c928a2341d"
+ integrity sha512-bzs45n5HNcDq6mxXnSsOHysZWn1SbbebNxldBXCQs8dSvF8Aor9KCdpm+TpnnGweK3R6diqsT8lFhX77VX0NFw==
dependencies:
merge-options "^3.0.4"
@@ -4969,11 +5111,6 @@
resolved "https://registry.yarnpkg.com/@react-native-community/hooks/-/hooks-2.6.0.tgz#dd5f19601eb3684c6bcdd3df3d0c04cf44c24cff"
integrity sha512-emBGKvhJ0h++lLJQ5ejsj+od9G67nEaihjvfSx7/JWvNrQGAhP9U0OZqgb9dkKzor9Ufaj9SGt8RNY97cGzttw==
-"@react-native-community/masked-view@0.1.11":
- version "0.1.11"
- resolved "https://registry.yarnpkg.com/@react-native-community/masked-view/-/masked-view-0.1.11.tgz#2f4c6e10bee0786abff4604e39a37ded6f3980ce"
- integrity sha512-rQfMIGSR/1r/SyN87+VD8xHHzDYeHaJq6elOSCAD+0iLagXkSI2pfA0LmSXP21uw5i3em7GkkRjfJ8wpqWXZNw==
-
"@react-native-community/netinfo@6.0.0":
version "6.0.0"
resolved "https://registry.yarnpkg.com/@react-native-community/netinfo/-/netinfo-6.0.0.tgz#2a4d7190b508dd0c2293656c9c1aa068f6f60a71"
@@ -5023,6 +5160,11 @@
"@expo/config-plugins" "^4.1.5"
stacktrace-js "^2.0.0"
+"@react-native-masked-view/masked-view@^0.2.8":
+ version "0.2.8"
+ resolved "https://registry.yarnpkg.com/@react-native-masked-view/masked-view/-/masked-view-0.2.8.tgz#34405a4361882dae7c81b1b771fe9f5fbd545a97"
+ integrity sha512-+1holBPDF1yi/y0uc1WB6lA5tSNHhM7PpTMapT3ypvSnKQ9+C6sy/zfjxNxRA/llBQ1Ci6f94EaK56UCKs5lTA==
+
"@react-native-picker/picker@^1.8.3":
version "1.16.1"
resolved "https://registry.yarnpkg.com/@react-native-picker/picker/-/picker-1.16.1.tgz#cc5d05b0d651445afa519c67824d8af3e43fa10c"
@@ -5033,7 +5175,12 @@
resolved "https://registry.yarnpkg.com/@react-native/assets/-/assets-1.0.0.tgz#c6f9bf63d274bafc8e970628de24986b30a55c8e"
integrity sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==
-"@react-native/normalize-color@*", "@react-native/normalize-color@2.0.0", "@react-native/normalize-color@^2.0.0":
+"@react-native/normalize-color@*":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-2.1.0.tgz#939b87a9849e81687d3640c5efa2a486ac266f91"
+ integrity sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==
+
+"@react-native/normalize-color@2.0.0", "@react-native/normalize-color@^2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-2.0.0.tgz#da955909432474a9a0fe1cbffc66576a0447f567"
integrity sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw==
@@ -5068,6 +5215,11 @@
resolved "https://registry.yarnpkg.com/@react-navigation/elements/-/elements-1.3.3.tgz#9f56b650a9a1a8263a271628be7342c8121d1788"
integrity sha512-Lv2lR7si5gNME8dRsqz57d54m4FJtrwHRjNQLOyQO546ZxO+g864cSvoLC6hQedQU0+IJnPTsZiEI2hHqfpEpw==
+"@react-navigation/elements@^1.3.6":
+ version "1.3.6"
+ resolved "https://registry.yarnpkg.com/@react-navigation/elements/-/elements-1.3.6.tgz#fa700318528db93f05144b1be4b691b9c1dd1abe"
+ integrity sha512-pNJ8R9JMga6SXOw6wGVN0tjmE6vegwPmJBL45SEMX2fqTfAk2ykDnlJHodRpHpAgsv0DaI8qX76z3A+aqKSU0w==
+
"@react-navigation/native@6.0.10":
version "6.0.10"
resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-6.0.10.tgz#c58aa176eb0e63f3641c83a65c509faf253e4385"
@@ -5079,9 +5231,9 @@
nanoid "^3.1.23"
"@react-navigation/routers@^6.1.0":
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/@react-navigation/routers/-/routers-6.1.0.tgz#d5682be88f1eb7809527c48f9cd3dedf4f344e40"
- integrity sha512-8xJL+djIzpFdRW/sGlKojQ06fWgFk1c5jER9501HYJ12LF5DIJFr/tqBI2TJ6bk+y+QFu0nbNyeRC80OjRlmkA==
+ version "6.1.3"
+ resolved "https://registry.yarnpkg.com/@react-navigation/routers/-/routers-6.1.3.tgz#1df51959e9a67c44367462e8b929b7360a5d2555"
+ integrity sha512-idJotMEzHc3haWsCh7EvnnZMKxvaS4YF/x2UyFBkNFiEFUaEo/1ioQU6qqmVLspdEv4bI/dLm97hQo7qD8Yl7Q==
dependencies:
nanoid "^3.1.23"
@@ -5160,10 +5312,10 @@
tiny-events "^1.0.1"
universal-websocket-client "^1.0.2"
-"@rocket.chat/ui-kit@^0.31.13":
- version "0.31.13"
- resolved "https://registry.yarnpkg.com/@rocket.chat/ui-kit/-/ui-kit-0.31.13.tgz#bd1c8a8726a74e13d072bb6f67cb2a6d3ba66e3b"
- integrity sha512-IWNIRca0fP8Ecka3DIvqZKF7PbjcUaS+LkWUbMa+9lkX6MeumZrpFqsf7MKUpT+ihJr0RD4lBybmEgFH2syDbw==
+"@rocket.chat/ui-kit@^0.31.19":
+ version "0.31.19"
+ resolved "https://registry.yarnpkg.com/@rocket.chat/ui-kit/-/ui-kit-0.31.19.tgz#737103123bc7e635382217eef75965b7e0f44703"
+ integrity sha512-8zRKQ5CoC4hIuYHVheO0d7etX9oizmM18fu99r5s/deciL/0MRWocdb4H/QsmbsNrkKCO6Z6wr7f9zzJCNTRHg==
"@segment/loosely-validate-event@^2.0.0":
version "2.0.0"
@@ -5181,9 +5333,9 @@
"@hapi/hoek" "^9.0.0"
"@sideway/formula@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c"
- integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f"
+ integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==
"@sideway/pinpoint@^2.0.0":
version "2.0.0"
@@ -5209,6 +5361,10 @@
dependencies:
"@sinonjs/commons" "^1.7.0"
+"@socialcode-rob1/react-native-jitsimeet-custom@socialcode-rob1/react-native-jitsimeet-custom.git":
+ version "2.5.0"
+ resolved "https://codeload.github.com/socialcode-rob1/react-native-jitsimeet-custom/tar.gz/b1f57cd065028fef2e806824e176d2b54e12cfaf"
+
"@storybook/addon-storyshots@6.3":
version "6.3.13"
resolved "https://registry.yarnpkg.com/@storybook/addon-storyshots/-/addon-storyshots-6.3.13.tgz#282a48880e5074baea7b84f5b091591eb21a9485"
@@ -5913,12 +6069,12 @@
resolved "https://registry.yarnpkg.com/@types/braces/-/braces-3.0.1.tgz#5a284d193cfc61abb2e5a50d36ebbc50d942a32b"
integrity sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ==
-"@types/bytebuffer@^5.0.43":
- version "5.0.43"
- resolved "https://registry.yarnpkg.com/@types/bytebuffer/-/bytebuffer-5.0.43.tgz#b5259fca1412106bcee0cabfbf7c104846d06738"
- integrity sha512-vQnTYvy4LpSojHjKdmg4nXFI1BAiYPvZ/k3ouczZAQnbDprk1xqxJiFmFHyy8y6MuUq3slz5erNMtn6n87uVKw==
+"@types/bytebuffer@^5.0.44":
+ version "5.0.44"
+ resolved "https://registry.yarnpkg.com/@types/bytebuffer/-/bytebuffer-5.0.44.tgz#553015fb34db1fc3eb3f7b232bff91c006c251a1"
+ integrity sha512-k1qonHga/SfQT02NF633i+7tIfKd+cfC/8pjnedcfuXJNMWooss/FkCgRMSnLf2WorLjbuH4bfgAZEbtyHBDoQ==
dependencies:
- "@types/long" "*"
+ "@types/long" "^3.0.0"
"@types/node" "*"
"@types/color-convert@^2.0.0":
@@ -6004,10 +6160,10 @@
resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.0.tgz#551a4589b6ee2cc9c1dff08056128aec29b94880"
integrity sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA==
-"@types/i18n-js@^3.8.2":
- version "3.8.2"
- resolved "https://registry.yarnpkg.com/@types/i18n-js/-/i18n-js-3.8.2.tgz#957a3fa268124d09e3b3b34695f0184118f4bc4f"
- integrity sha512-F+AuFCjllE1A0W/YUxJB13q2t7cWITMqXOTXQ/InfXxxT8nXrrqL7s/8Pv6XThGjFPemukElwk6QlMOKCEg7eQ==
+"@types/i18n-js@^3.8.3":
+ version "3.8.3"
+ resolved "https://registry.yarnpkg.com/@types/i18n-js/-/i18n-js-3.8.3.tgz#9aac0ac81c0b5f16d864b395607442eebb382528"
+ integrity sha512-Y20B7kgoNrchIYCfty20zQYeFFJMHdegwy9VopCEKdByp7Tlv0jtWrfoRb+3r2mIvgrwp/eMwXhhXOBYKEFkTA==
"@types/invariant@^2.2.35":
version "2.2.35"
@@ -6094,20 +6250,20 @@
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
-"@types/lodash@^4.14.171":
- version "4.14.172"
- resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.172.tgz#aad774c28e7bfd7a67de25408e03ee5a8c3d028a"
- integrity sha512-/BHF5HAx3em7/KkzVKm3LrsD6HZAXuXO1AJZQ3cRRBZj4oHZDviWPYu0aEplAqDFNHZPW6d3G7KN+ONcCCC7pw==
-
"@types/lodash@^4.14.175":
version "4.14.182"
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.182.tgz#05301a4d5e62963227eaafe0ce04dd77c54ea5c2"
integrity sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==
-"@types/long@*":
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.1.tgz#459c65fa1867dafe6a8f322c4c51695663cc55e9"
- integrity sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w==
+"@types/lodash@^4.14.188":
+ version "4.14.188"
+ resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.188.tgz#e4990c4c81f7c9b00c5ff8eae389c10f27980da5"
+ integrity sha512-zmEmF5OIM3rb7SbLCFYoQhO4dGt2FRM9AMkxvA3LaADOF1n8in/zGJlWji9fmafLoNyz+FoL6FE0SLtGIArD7w==
+
+"@types/long@^3.0.0":
+ version "3.0.32"
+ resolved "https://registry.yarnpkg.com/@types/long/-/long-3.0.32.tgz#f4e5af31e9e9b196d8e5fca8a5e2e20aa3d60b69"
+ integrity sha512-ZXyOOm83p7X8p3s0IYM3VeueNmHpkk/yMlP8CLeOnEcu6hIwPH7YjZBvhQkR0ZFS2DqZAxKtJ/M5fcuv3OU5BA==
"@types/markdown-to-jsx@^6.11.3":
version "6.11.3"
@@ -6241,10 +6397,10 @@
"@types/react" "*"
"@types/react-native" "*"
-"@types/react-native-vector-icons@^6.4.10":
- version "6.4.10"
- resolved "https://registry.yarnpkg.com/@types/react-native-vector-icons/-/react-native-vector-icons-6.4.10.tgz#9bfd6e64dd37b8119425496b5e53ff91d034efa9"
- integrity sha512-z4sexbuZ7nmYsp7Z9YB5fSQoN3KFn6nZA3QsCkQLOYnVmVlxX4U22v/bM9Xx/6dOA1vClxoRZo2CFDX16uryXQ==
+"@types/react-native-vector-icons@^6.4.12":
+ version "6.4.12"
+ resolved "https://registry.yarnpkg.com/@types/react-native-vector-icons/-/react-native-vector-icons-6.4.12.tgz#4b9c63bf85eb42fca7c5b0a55ec317900e4fb427"
+ integrity sha512-gSXtv3NMOsRwSXJ/gvGebm7CNjHbkeFKCse9h/Pvi+x2yjCLOkJR1FBfec06DhaFJpsK7Y8WRQpwOS0eLqx5Rg==
dependencies:
"@types/react" "*"
"@types/react-native" "*"
@@ -6308,10 +6464,10 @@
resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275"
integrity sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==
-"@types/semver@^7.3.9":
- version "7.3.9"
- resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.9.tgz#152c6c20a7688c30b967ec1841d31ace569863fc"
- integrity sha512-L/TMpyURfBkf+o/526Zb6kd/tchUP3iBDEPjqjb+U2MAJhVRxxrmr2fwpe08E7QsV7YLcpq0tUaQ9O9x97ZIxQ==
+"@types/semver@^7.3.13":
+ version "7.3.13"
+ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91"
+ integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==
"@types/source-list-map@*":
version "0.1.2"
@@ -6757,7 +6913,7 @@ absolute-path@^0.0.0:
resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7"
integrity sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==
-accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.5, accepts@~1.3.8:
+accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.5, accepts@~1.3.7, accepts@~1.3.8:
version "1.3.8"
resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==
@@ -6765,14 +6921,6 @@ accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.5, accepts@~1.3.8:
mime-types "~2.1.34"
negotiator "0.6.3"
-accepts@~1.3.7:
- version "1.3.7"
- resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
- integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
- dependencies:
- mime-types "~2.1.24"
- negotiator "0.6.2"
-
acorn-jsx@^5.3.1:
version "5.3.1"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
@@ -7692,7 +7840,7 @@ balanced-match@^1.0.0:
base-64@0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb"
- integrity sha1-eAqZyE59YAJgNhURxId2E78k9rs=
+ integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==
base64-js@^1.0.2, base64-js@^1.1.2, base64-js@^1.2.3, base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1:
version "1.5.1"
@@ -7736,7 +7884,7 @@ big-integer@1.6.x:
resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686"
integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==
-big-integer@^1.6.44, big-integer@^1.6.9:
+big-integer@^1.6.9:
version "1.6.48"
resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.48.tgz#8fd88bd1632cba4a1c8c3e3d7159f08bb95b4b9e"
integrity sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w==
@@ -7870,19 +8018,19 @@ boxen@^4.2.0:
type-fest "^0.8.1"
widest-line "^3.1.0"
-bplist-creator@0.0.8:
- version "0.0.8"
- resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.8.tgz#56b2a6e79e9aec3fc33bf831d09347d73794e79c"
- integrity sha512-Za9JKzD6fjLC16oX2wsXfc+qBEhJBJB1YPInoAQpMLhDuj5aVOv1baGeIQSq1Fr3OCqzvsoQcSBSwGId/Ja2PA==
+bplist-creator@0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.1.0.tgz#018a2d1b587f769e379ef5519103730f8963ba1e"
+ integrity sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==
dependencies:
- stream-buffers "~2.2.0"
+ stream-buffers "2.2.x"
-bplist-parser@0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e"
- integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==
+bplist-parser@0.3.1:
+ version "0.3.1"
+ resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.3.1.tgz#e1c90b2ca2a9f9474cc72f6862bbf3fee8341fd1"
+ integrity sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==
dependencies:
- big-integer "^1.6.44"
+ big-integer "1.6.x"
bplist-parser@^0.3.1:
version "0.3.2"
@@ -8254,21 +8402,21 @@ call-me-maybe@^1.0.1:
caller-callsite@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
- integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
+ integrity sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==
dependencies:
callsites "^2.0.0"
caller-path@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
- integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
+ integrity sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==
dependencies:
caller-callsite "^2.0.0"
callsites@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
- integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
+ integrity sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==
callsites@^3.0.0:
version "3.1.0"
@@ -8562,11 +8710,16 @@ cli-cursor@^3.1.0:
dependencies:
restore-cursor "^3.1.0"
-cli-spinners@^2.0.0, cli-spinners@^2.5.0:
+cli-spinners@^2.0.0:
version "2.6.1"
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d"
integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==
+cli-spinners@^2.5.0:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.7.0.tgz#f815fd30b5f9eaac02db604c7a231ed7cb2f797a"
+ integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==
+
cli-table3@^0.6.1:
version "0.6.2"
resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.2.tgz#aaf5df9d8b5bf12634dc8b3040806a0c07120d2a"
@@ -9352,9 +9505,9 @@ damerau-levenshtein@^1.0.7:
integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
dayjs@^1.8.15:
- version "1.11.4"
- resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.4.tgz#3b3c10ca378140d8917e06ebc13a4922af4f433e"
- integrity sha512-Zj/lPM5hOvQ1Bf7uAvewDaUcsJoI6JmNqmHhHl3nyumwe0XHwt8sWdOVAPACJzCebL8gQCi+K49w7iKWnGwX9g==
+ version "1.11.7"
+ resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.7.tgz#4b296922642f70999544d1144a2c25730fce63e2"
+ integrity sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==
debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9:
version "2.6.9"
@@ -9560,6 +9713,11 @@ dequal@^2.0.2:
resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.2.tgz#85ca22025e3a87e65ef75a7a437b35284a7e319d"
integrity sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==
+dequal@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
+ integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
+
des.js@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
@@ -9862,10 +10020,10 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-ejson@2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/ejson/-/ejson-2.2.1.tgz#53569bdf3a60013f5dc206e0f9640b64cd674acc"
- integrity sha512-Tah5TfXynM7dCqnI/YyyI93/vN0hwXQrimNNzXIKmhr11vGrVtXhzwZ4Gyx+AHb4FqJa0YQORoaKnJHRB1TnwQ==
+ejson@^2.2.3:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/ejson/-/ejson-2.2.3.tgz#2b18c2d8f5d61a5cfc6e3eab72c3343909e7afd2"
+ integrity sha512-hsFvJp6OpGxFRQfBR3PSxFpaPALdHDY+SB3TRbMpLWNhvu8GzLiZutof5+/DFd2QekZo3KyXau75ngdJqQUSrw==
electron-to-chromium@^1.3.413:
version "1.3.448"
@@ -11163,9 +11321,9 @@ flatted@^3.1.0:
integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==
flow-parser@0.*:
- version "0.183.0"
- resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.183.0.tgz#69bcd35608ef179c619df0036c2b61d0f84665ae"
- integrity sha512-2e/aIZIM7iJpHCBxpqdXetYYoO3YQEJzA7M8v5bhWhXCu+lIfkeSfOWycWW0rhlnJyjMftbmwn6B2eenKeGlag==
+ version "0.197.0"
+ resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.197.0.tgz#9a581ef7c0b1c3377b195cec0bbad794b88be67b"
+ integrity sha512-yhwkJPxH1JBg0aJunk/jVRy5p3UhVZBGkzL1hq/GK+GaBh6bKr2YKkv6gDuiufaw+i3pKWQgOLtD++1cvrgXLA==
flow-parser@^0.121.0:
version "0.121.0"
@@ -11622,7 +11780,7 @@ glob-to-regexp@^0.3.0:
glob@7.0.6:
version "7.0.6"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a"
- integrity sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=
+ integrity sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==
dependencies:
fs.realpath "^1.0.0"
inflight "^1.0.4"
@@ -12308,7 +12466,7 @@ immer@8.0.1:
import-fresh@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
- integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
+ integrity sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==
dependencies:
caller-path "^2.0.0"
resolve-from "^3.0.0"
@@ -12617,7 +12775,7 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2:
is-directory@^0.3.1:
version "0.3.1"
resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
- integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
+ integrity sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==
is-docker@^2.0.0:
version "2.0.0"
@@ -13732,21 +13890,21 @@ jimp-compact@0.16.1:
resolved "https://registry.yarnpkg.com/jimp-compact/-/jimp-compact-0.16.1.tgz#9582aea06548a2c1e04dd148d7c3ab92075aefa3"
integrity sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==
-jimp@^0.16.1:
- version "0.16.1"
- resolved "https://registry.yarnpkg.com/jimp/-/jimp-0.16.1.tgz#192f851a30e5ca11112a3d0aa53137659a78ca7a"
- integrity sha512-+EKVxbR36Td7Hfd23wKGIeEyHbxShZDX6L8uJkgVW3ESA9GiTEPK08tG1XI2r/0w5Ch0HyJF5kPqF9K7EmGjaw==
+jimp@^0.16.2:
+ version "0.16.2"
+ resolved "https://registry.yarnpkg.com/jimp/-/jimp-0.16.2.tgz#c03e296381ae37586e27f209d134d4596d112f7b"
+ integrity sha512-UpItBk81a92f8oEyoGYbO3YK4QcM0hoIyuGHmShoF9Ov63P5Qo7Q/X2xsAgnODmSuDJFOtrPtJd5GSWW4LKdOQ==
dependencies:
"@babel/runtime" "^7.7.2"
- "@jimp/custom" "^0.16.1"
- "@jimp/plugins" "^0.16.1"
- "@jimp/types" "^0.16.1"
+ "@jimp/custom" "^0.16.2"
+ "@jimp/plugins" "^0.16.2"
+ "@jimp/types" "^0.16.2"
regenerator-runtime "^0.13.3"
joi@^17.2.1:
- version "17.6.0"
- resolved "https://registry.yarnpkg.com/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2"
- integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==
+ version "17.7.0"
+ resolved "https://registry.yarnpkg.com/joi/-/joi-17.7.0.tgz#591a33b1fe1aca2bc27f290bcad9b9c1c570a6b3"
+ integrity sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg==
dependencies:
"@hapi/hoek" "^9.0.0"
"@hapi/topo" "^5.0.0"
@@ -13769,7 +13927,7 @@ join-component@^1.1.0:
resolved "https://registry.yarnpkg.com/join-component/-/join-component-1.1.0.tgz#b8417b750661a392bee2c2537c68b2a9d4977cd5"
integrity sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==
-jpeg-js@0.4.2, jpeg-js@0.4.4:
+jpeg-js@0.4.4, jpeg-js@^0.4.2:
version "0.4.4"
resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.4.tgz#a9f1c6f1f9f0fa80cdb3484ed9635054d28936aa"
integrity sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==
@@ -13913,17 +14071,15 @@ json5@^1.0.1:
dependencies:
minimist "^1.2.0"
-json5@^2.1.0, json5@^2.1.3, json5@^2.2.1:
+json5@^2.1.0, json5@^2.1.2, json5@^2.1.3, json5@^2.2.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
-json5@^2.1.2:
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
- integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
- dependencies:
- minimist "^1.2.5"
+json5@^2.2.2:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
+ integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
jsonfile@^2.1.0:
version "2.4.0"
@@ -14123,9 +14279,9 @@ loader-utils@2.0.0, loader-utils@^2.0.0:
json5 "^2.1.2"
loader-utils@^1.2.3:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
- integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.2.tgz#29a957f3a63973883eb684f10ffd3d151fec01a3"
+ integrity sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==
dependencies:
big.js "^5.2.2"
emojis-list "^3.0.0"
@@ -14209,7 +14365,7 @@ lodash.merge@^4.6.2:
lodash.throttle@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
- integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=
+ integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==
lodash.truncate@^4.4.2:
version "4.4.2"
@@ -15012,15 +15168,10 @@ minimatch@3.0.4:
dependencies:
brace-expansion "^1.1.7"
-minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5, "minimist@~ 1.2.0":
- version "1.2.5"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
- integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
-
-minimist@^1.2.6:
- version "1.2.6"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
- integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
+minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6, "minimist@~ 1.2.0":
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18"
+ integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
minipass-collect@^1.0.2:
version "1.0.2"
@@ -15150,10 +15301,10 @@ mocha@9.0.1:
yargs-parser "20.2.4"
yargs-unparser "2.0.0"
-moment@2.29.3, moment@2.x.x, moment@^2.19.3, moment@^2.24.0:
- version "2.29.3"
- resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.3.tgz#edd47411c322413999f7a5940d526de183c031f3"
- integrity sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==
+moment@2.29.4, moment@2.x.x, moment@^2.19.3, moment@^2.24.0:
+ version "2.29.4"
+ resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108"
+ integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==
move-concurrently@^1.0.1:
version "1.0.1"
@@ -15269,11 +15420,6 @@ ncp@~2.0.0:
resolved "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz#195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"
integrity sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=
-negotiator@0.6.2:
- version "0.6.2"
- resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
- integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
-
negotiator@0.6.3:
version "0.6.3"
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
@@ -15319,7 +15465,7 @@ node-dir@^0.1.10, node-dir@^0.1.17:
dependencies:
minimatch "^3.0.2"
-node-fetch@2.6.7, node-fetch@^2.2.0, node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.7:
+node-fetch@2.6.7, node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.7:
version "2.6.7"
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad"
integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==
@@ -15334,6 +15480,13 @@ node-fetch@^1.0.1:
encoding "^0.1.11"
is-stream "^1.0.1"
+node-fetch@^2.2.0:
+ version "2.6.8"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.8.tgz#a68d30b162bc1d8fd71a367e81b997e1f4d4937e"
+ integrity sha512-RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg==
+ dependencies:
+ whatwg-url "^5.0.0"
+
node-forge@^1.2.1, node-forge@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3"
@@ -16288,15 +16441,7 @@ please-upgrade-node@^3.2.0:
dependencies:
semver-compare "^1.0.0"
-plist@^3.0.1:
- version "3.0.5"
- resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.5.tgz#2cbeb52d10e3cdccccf0c11a63a85d830970a987"
- integrity sha512-83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA==
- dependencies:
- base64-js "^1.5.1"
- xmlbuilder "^9.0.7"
-
-plist@^3.0.2:
+plist@^3.0.2, plist@^3.0.5:
version "3.0.6"
resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.6.tgz#7cfb68a856a7834bca6dbfe3218eb9c7740145d3"
integrity sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==
@@ -16610,9 +16755,9 @@ promise@^7.1.1:
asap "~2.0.3"
promise@^8.0.3:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/promise/-/promise-8.1.0.tgz#697c25c3dfe7435dd79fcd58c38a135888eaf05e"
- integrity sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==
+ version "8.3.0"
+ resolved "https://registry.yarnpkg.com/promise/-/promise-8.3.0.tgz#8cb333d1edeb61ef23869fbb8a4ea0279ab60e0a"
+ integrity sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==
dependencies:
asap "~2.0.6"
@@ -16947,9 +17092,9 @@ react-dev-utils@^11.0.3:
text-table "0.2.0"
react-devtools-core@^4.23.0:
- version "4.25.0"
- resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.25.0.tgz#78b11a2c9f81dd9ebff3745ab4ee2147cc96c12a"
- integrity sha512-iewRrnu0ZnmfL+jJayKphXj04CFh6i3ezVnpCtcnZbTPSQgN09XqHAzXbKbqNDl7aTg9QLNkQRP6M3DvdrinWA==
+ version "4.27.1"
+ resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.27.1.tgz#167aa174383c65786cbb7e965a5b39c702f0a2d3"
+ integrity sha512-qXhcxxDWiFmFAOq48jts9YQYe1+wVoUXzJTlY4jbaATzyio6dd6CUGu3dXBhREeVgpZ+y4kg6vFJzIOZh6vY2w==
dependencies:
shell-quote "^1.6.1"
ws "^7"
@@ -17062,13 +17207,13 @@ react-native-background-timer@2.4.1:
resolved "https://registry.yarnpkg.com/react-native-background-timer/-/react-native-background-timer-2.4.1.tgz#a3bc1cafa8c1e3aeefd0611de120298b67978a0f"
integrity sha512-TE4Kiy7jUyv+hugxDxitzu38sW1NqjCk4uE5IgU2WevLv7sZacaBc6PZKOShNRPGirLl1NWkaG3LDEkdb9Um5g==
-react-native-bootsplash@^4.3.2:
- version "4.3.2"
- resolved "https://registry.yarnpkg.com/react-native-bootsplash/-/react-native-bootsplash-4.3.2.tgz#347b024975dc344310ee4d95cb3be56b0b39e381"
- integrity sha512-HzXl6AKk4sRjEtV+1C7q4gSXP5kYMhpzGaB4DllZNObdZ8oVH8Ac7Y9ShKZ8wLQLJaG/TtzyGHKIDaNi0oNGJA==
+react-native-bootsplash@^4.3.3:
+ version "4.3.3"
+ resolved "https://registry.yarnpkg.com/react-native-bootsplash/-/react-native-bootsplash-4.3.3.tgz#a6eab71d9dc9b93b796fc0bca22422548645d69d"
+ integrity sha512-SU//XHpNrJttiLeOnCkr6H7NQfZRX5tMMUazdt9g/o9QLO99OICTjQXGqsmiBC4QLjUSDIE2H5y8kc1KXiuQiQ==
dependencies:
fs-extra "^10.1.0"
- jimp "^0.16.1"
+ jimp "^0.16.2"
picocolors "^1.0.0"
react-native-codegen@^0.0.17:
@@ -17100,15 +17245,15 @@ react-native-console-time-polyfill@1.2.3:
resolved "https://registry.yarnpkg.com/react-native-console-time-polyfill/-/react-native-console-time-polyfill-1.2.3.tgz#1039dab1bb9e2d8040f5e19de68e0da781dc9b60"
integrity sha512-C7CUb1c6GsCssqvjtRuqVqnGwlfEHXxXDvCUuGNbq/gpZZt+9YbZD3ODmXBDxis3tDQA0k1lbT1VMTqWQw9rDg==
-react-native-device-info@8.4.8:
- version "8.4.8"
- resolved "https://registry.yarnpkg.com/react-native-device-info/-/react-native-device-info-8.4.8.tgz#fc92ae423e47db6cfbf30c30012e09cee63727fa"
- integrity sha512-92676ZWHZHsPM/EW1ulgb2MuVfjYfMWRTWMbLcrCsipkcMaZ9Traz5mpsnCS7KZpsOksnvUinzDIjsct2XGc6Q==
+react-native-device-info@^10.3.0:
+ version "10.3.0"
+ resolved "https://registry.yarnpkg.com/react-native-device-info/-/react-native-device-info-10.3.0.tgz#6bab64d84d3415dd00cc446c73ec5e2e61fddbe7"
+ integrity sha512-/ziZN1sA1REbJTv5mQZ4tXggcTvSbct+u5kCaze8BmN//lbxcTvWsU6NQd4IihLt89VkbX+14IGc9sVApSxd/w==
-react-native-document-picker@8.1.0:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/react-native-document-picker/-/react-native-document-picker-8.1.0.tgz#e167a98b6fcdd1aee08597793029101d674eab83"
- integrity sha512-FdaehvEoqkVkMTkIy09wpgHUHh9SskI1k8ug8Dwkwk7MJ+XxzrphAk/mXZtu5RkM1Iwxmd82QfwiQJxrZ2LSVg==
+react-native-document-picker@^8.1.2:
+ version "8.1.2"
+ resolved "https://registry.yarnpkg.com/react-native-document-picker/-/react-native-document-picker-8.1.2.tgz#503cce26086020c833f08a405fe2da28f735ed08"
+ integrity sha512-R126YsjTXBuvigRRExyAQ+yn1UGV4dGcMI9x4UAY8TBTSOt6nOQcWS/AQcbzjk9MnN8ISDGqNq9GmN51Q1aHjA==
dependencies:
invariant "^2.2.4"
@@ -17135,10 +17280,10 @@ react-native-file-viewer@^2.1.4:
resolved "https://registry.yarnpkg.com/react-native-file-viewer/-/react-native-file-viewer-2.1.5.tgz#cd4544f573108e79002b5c7e1ebfce4371885250"
integrity sha512-MGC6sx9jsqHdefhVQ6o0akdsPGpkXgiIbpygb2Sg4g4bh7v6K1cardLV1NwGB9A6u1yICOSDT/MOC//9Ez6EUg==
-react-native-flipper@^0.34.0:
- version "0.34.0"
- resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.34.0.tgz#7df1f38ba5d97a9321125fe0fccbe47d99e6fa1d"
- integrity sha512-48wgm29HJTOlZ0DibBsvXueEOY0EPIVL0wWKbwRfgrk86+luSEuLW3aZC50oJa95zSFb9qYShTV/6dWqh4Jamg==
+react-native-flipper@^0.164.0:
+ version "0.164.0"
+ resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.164.0.tgz#64f6269a86a13a72e30f53ba9f5281d2073a7697"
+ integrity sha512-iJhIe3rqx6okuzBp4AJsTa2b8VRAOGzoLRFx/4HGbaGvu8AurZjz8TTQkhJsRma8dsHN2b6KKZPvGGW3wdWzvA==
react-native-gesture-handler@2.4.2:
version "2.4.2"
@@ -17172,15 +17317,16 @@ react-native-iphone-x-helper@^1.0.3:
resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.1.tgz#645e2ffbbb49e80844bb4cbbe34a126fda1e6772"
integrity sha512-/VbpIEp8tSNNHIvstuA3Swx610whci1Zpc9mqNkqn14DkMbw+ORviln2u0XyHG1kPvvwTNGZY6QpeFwxYaSdbQ==
-react-native-jitsi-meet@RocketChat/react-native-jitsi-meet:
- version "3.6.0"
- resolved "https://codeload.github.com/RocketChat/react-native-jitsi-meet/tar.gz/90bae9b9d779c13829d7dc618e31d11dba60140d"
-
react-native-keycommands@2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/react-native-keycommands/-/react-native-keycommands-2.0.3.tgz#09b799c1f70832e5cd9fbdb712ddaa3ee683f70e"
integrity sha512-s03K8JvCnfLhBg10Y2aRH3Bp9Uw9QOEr0uzuIj9OkgjjTB8/b+T4K5LSCxGuIAD30IxsEZvGZKjP1DzEMxaRhQ==
+react-native-linear-gradient@^2.6.2:
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/react-native-linear-gradient/-/react-native-linear-gradient-2.6.2.tgz#56598a76832724b2afa7889747635b5c80948f38"
+ integrity sha512-Z8Xxvupsex+9BBFoSYS87bilNPWcRfRsGC0cpJk72Nxb5p2nEkGSBv73xZbEHnW2mUFvP+huYxrVvjZkr/gRjQ==
+
react-native-localize@2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/react-native-localize/-/react-native-localize-2.1.1.tgz#da8f8776991d2b748708c408db05152602cefb38"
@@ -17203,10 +17349,10 @@ react-native-mime-types@2.3.0:
dependencies:
mime-db "~1.37.0"
-react-native-mmkv-storage@^0.7.6:
- version "0.7.6"
- resolved "https://registry.yarnpkg.com/react-native-mmkv-storage/-/react-native-mmkv-storage-0.7.6.tgz#c4b2d6d342efda91f69edb6ba4b9c0ff6c34d70c"
- integrity sha512-Uxc8U3vRJMAeLIu9Dr8VpbaaCUlMd4vJfkEme2sXh2GGCYrbXqrE3XPLjtuA/fSd2VBKZNFBkJhyf4RzU9VX3A==
+react-native-mmkv-storage@^0.8.0:
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/react-native-mmkv-storage/-/react-native-mmkv-storage-0.8.0.tgz#2ece5f441a6a818224a85315c68e105e0d6446b5"
+ integrity sha512-L782Le5IuDYlDLGXF/qimbnzvkbYsSmV5PiDleo1DSS8Kr8Q31UK8YWtUICrDGQ9Fm7Xx4PxP9ffe2XzGeWaHQ==
react-native-modal@13.0.1:
version "13.0.1"
@@ -17221,10 +17367,10 @@ react-native-navigation-bar-color@2.0.1:
resolved "https://registry.yarnpkg.com/react-native-navigation-bar-color/-/react-native-navigation-bar-color-2.0.1.tgz#ee2be25cc37105f7da355717b0a9a32c9c059ae6"
integrity sha512-1kE/oxWt+HYjRxdZdvke9tJ365xaee5n3+euOQA1En8zQuSbOxiE4SYEGM7TeaWnmLJ0l37mRnPHaB2H4mGh0A==
-react-native-notifications@^4.3.2:
- version "4.3.2"
- resolved "https://registry.yarnpkg.com/react-native-notifications/-/react-native-notifications-4.3.2.tgz#43b5fa6b2dbd49e38eadca8b8d102394a9ac7929"
- integrity sha512-QGzlO9ON2nyk1G8y1JIwv9kqpu8OQYSmqsmSzl/rXtXwCWx/WDFNb5rkBtAZQKuebtK2/Vczhfk4khraRmJj0Q==
+react-native-notifications@^4.3.3:
+ version "4.3.3"
+ resolved "https://registry.yarnpkg.com/react-native-notifications/-/react-native-notifications-4.3.3.tgz#5be05cb144127f4db518079dd202415af497dfcb"
+ integrity sha512-t7uPgpC93A4L41Jea2zet3BUqgh45gpN/ATS9gxejNH3r6kWgMdGeeZJhuMpl1gSXw1gcvgzdjzIjN7YZSOP0A==
react-native-notifier@1.6.1:
version "1.6.1"
@@ -17325,6 +17471,11 @@ react-native-scrollable-tab-view@ptomasroos/react-native-scrollable-tab-view:
prop-types "^15.6.0"
react-timer-mixin "^0.13.3"
+react-native-send-intent@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/react-native-send-intent/-/react-native-send-intent-1.3.0.tgz#d8c7898827da1b8b10e25a645ce6802d1a0b440c"
+ integrity sha512-ODTX7BHITFxdcAL0K2iHfa3qVYnqG8GPcv1NbLBNC1DyCaOSJiiGtVH6Kc5YBqzQ8+1pV9uN5nfQ5wyFgiq74g==
+
react-native-simple-crypto@RocketChat/react-native-simple-crypto#0.5.1:
version "0.5.1"
resolved "https://codeload.github.com/RocketChat/react-native-simple-crypto/tar.gz/dcf6eef5359c739d521371918e13a73f2ea6cb42"
@@ -17332,6 +17483,11 @@ react-native-simple-crypto@RocketChat/react-native-simple-crypto#0.5.1:
base64-js "^1.3.0"
hex-lite "^1.5.0"
+react-native-skeleton-placeholder@^5.2.3:
+ version "5.2.3"
+ resolved "https://registry.yarnpkg.com/react-native-skeleton-placeholder/-/react-native-skeleton-placeholder-5.2.3.tgz#2dddf1f84d43110b90c22f715b2dbbe2c54732e1"
+ integrity sha512-nikmTfex3oydnZ4prV62KxibMvcu2l2NegsHGtXhsWwFIX5QaKneBohP7etinUq/c2PkSr3ZlfqooDG2yIHRdg==
+
react-native-slider@^0.11.0:
version "0.11.0"
resolved "https://registry.yarnpkg.com/react-native-slider/-/react-native-slider-0.11.0.tgz#b68a0bc43c8422b24cd57947cc5ac2bcdb58fadc"
@@ -17364,7 +17520,7 @@ react-native-text-size@4.0.0-rc.1:
react-native-ui-lib@RocketChat/react-native-ui-lib:
version "4.2.0"
- resolved "https://codeload.github.com/RocketChat/react-native-ui-lib/tar.gz/d20c1bcd09b694fc5133fc2232fd510f5f4ba581"
+ resolved "https://codeload.github.com/RocketChat/react-native-ui-lib/tar.gz/fd5869e493b5b9cf888cec4a252c9ef292364b02"
dependencies:
babel-plugin-transform-inline-environment-variables "^0.0.2"
color "^3.1.0"
@@ -17397,9 +17553,9 @@ react-native-webview@10.3.2:
escape-string-regexp "2.0.0"
invariant "2.2.4"
-react-native@RocketChat/react-native#0.68.2:
+react-native@RocketChat/react-native#281140d2e39d66a8e486db397ce0bf5bd0e334fc:
version "0.68.2"
- resolved "https://codeload.github.com/RocketChat/react-native/tar.gz/fa9253e56a8533688e92de2e977bd120213d96aa"
+ resolved "https://codeload.github.com/RocketChat/react-native/tar.gz/281140d2e39d66a8e486db397ce0bf5bd0e334fc"
dependencies:
"@jest/create-cache-key-function" "^27.0.1"
"@react-native-community/cli" "^7.0.3"
@@ -17451,10 +17607,10 @@ react-popper@^2.2.4:
react-fast-compare "^3.0.1"
warning "^4.0.2"
-react-redux@8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-8.0.1.tgz#2bc029f5ada9b443107914c373a2750f6bc0f40c"
- integrity sha512-LMZMsPY4DYdZfLJgd7i79n5Kps5N9XVLCJJeWAaPYTV+Eah2zTuBjTxKtNEbjiyitbq80/eIkm55CYSLqAub3w==
+react-redux@^8.0.5:
+ version "8.0.5"
+ resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-8.0.5.tgz#e5fb8331993a019b8aaf2e167a93d10af469c7bd"
+ integrity sha512-Q2f6fCKxPFpkXt1qNRZdEDLlScsDWyrgSj0mliK59qU6W5gvBiKkdMEG2lJzhd1rCctf0hb6EtePPLZ2e0m1uw==
dependencies:
"@babel/runtime" "^7.12.1"
"@types/hoist-non-react-statics" "^3.3.1"
@@ -17548,17 +17704,17 @@ reactotron-core-client@2.8.10:
resolved "https://registry.yarnpkg.com/reactotron-core-client/-/reactotron-core-client-2.8.10.tgz#798f2a7aa9fd7e18e7a510531a613e8ae3008eb0"
integrity sha512-SYRO4OCutJzfWMnaULUGVyETZnMDCU5ECNflXyM3Z5Gnfxp/wV6d7jYonhfxHdpU/aGb4Eg15C22myOCXSu6HQ==
-reactotron-react-native@5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/reactotron-react-native/-/reactotron-react-native-5.0.2.tgz#94683b0c148771731c071fa832536ffef4fb3319"
- integrity sha512-rd56SQxRz3QlhFeiGoxUwzzIn7EOkFhe0ukarcm6mrHiY/tQEq6d8XugQbxSezJUh9RNvaNrY5DKh6i/9ijhCw==
+reactotron-react-native@^5.0.3:
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/reactotron-react-native/-/reactotron-react-native-5.0.3.tgz#5ab884f33e6ffa0437b8b0f4d93cabb5acb7da24"
+ integrity sha512-uUQ074uw3I9X/pc7FBgrrwrFzfwXDKlxzuekNjzspZz9Y0qVLX1cAm9GTC0ZPsZRvY5wDPY/Il7XfV1YeVSDxA==
dependencies:
mitt "1.1.3"
query-string "6.10.1"
reactotron-core-client "2.8.10"
rn-host-detect "1.2.0"
optionalDependencies:
- react-native-flipper "^0.34.0"
+ react-native-flipper "^0.164.0"
reactotron-redux-saga@4.2.3:
version "4.2.3"
@@ -17749,7 +17905,12 @@ regenerate@^1.4.2:
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
-regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4:
+regenerator-runtime@^0.13.2:
+ version "0.13.11"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
+ integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
+
+regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4:
version "0.13.5"
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
@@ -17994,7 +18155,7 @@ resolve-cwd@^3.0.0:
resolve-from@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
- integrity sha1-six699nWiBvItuZTM17rywoYh0g=
+ integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==
resolve-from@^4.0.0:
version "4.0.0"
@@ -18133,7 +18294,7 @@ rn-extensions-share@RocketChat/rn-extensions-share:
version "2.4.1"
resolved "https://codeload.github.com/RocketChat/rn-extensions-share/tar.gz/4d7c0e4c2f300e4fb116af7b7cc0dbbc8169150c"
-rn-fetch-blob@0.12.0:
+rn-fetch-blob@^0.12.0:
version "0.12.0"
resolved "https://registry.yarnpkg.com/rn-fetch-blob/-/rn-fetch-blob-0.12.0.tgz#ec610d2f9b3f1065556b58ab9c106eeb256f3cba"
integrity sha512-+QnR7AsJ14zqpVVUbzbtAjq0iI8c9tCg49tIoKO2ezjzRunN7YL6zFSFSWZm6d+mE/l9r+OeDM3jmb2tBb2WbA==
@@ -18313,18 +18474,18 @@ semver@7.3.2:
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
-semver@7.3.5, semver@^7.0.0, semver@^7.2.1, semver@^7.3.2, semver@^7.3.5:
+semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
+ version "6.3.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
+ integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
+
+semver@^7.0.0, semver@^7.2.1, semver@^7.3.2, semver@^7.3.5:
version "7.3.5"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
dependencies:
lru-cache "^6.0.0"
-semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
- version "6.3.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
- integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-
semver@^7.3.4, semver@^7.3.7:
version "7.3.7"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
@@ -18332,6 +18493,13 @@ semver@^7.3.4, semver@^7.3.7:
dependencies:
lru-cache "^6.0.0"
+semver@^7.3.8:
+ version "7.3.8"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798"
+ integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==
+ dependencies:
+ lru-cache "^6.0.0"
+
send@0.18.0, send@^0.18.0:
version "0.18.0"
resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
@@ -18492,9 +18660,9 @@ shell-quote@1.7.2, shell-quote@^1.7.2:
integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
shell-quote@^1.6.1, shell-quote@^1.7.3:
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123"
- integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==
+ version "1.7.4"
+ resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.4.tgz#33fe15dee71ab2a81fcbd3a52106c5cfb9fb75d8"
+ integrity sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==
side-channel@^1.0.4:
version "1.0.4"
@@ -18516,13 +18684,13 @@ signal-exit@^3.0.7:
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
simple-plist@^1.1.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.1.1.tgz#54367ca28bc5996a982c325c1c4a4c1a05f4047c"
- integrity sha512-pKMCVKvZbZTsqYR6RKgLfBHkh2cV89GXcA/0CVPje3sOiNOnXA8+rp/ciAMZ7JRaUdLzlEM6JFfUn+fS6Nt3hg==
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.3.1.tgz#16e1d8f62c6c9b691b8383127663d834112fb017"
+ integrity sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==
dependencies:
- bplist-creator "0.0.8"
- bplist-parser "0.2.0"
- plist "^3.0.1"
+ bplist-creator "0.1.0"
+ bplist-parser "0.3.1"
+ plist "^3.0.5"
simple-swizzle@^0.2.2:
version "0.2.2"
@@ -18859,10 +19027,10 @@ stream-browserify@^2.0.1:
inherits "~2.0.1"
readable-stream "^2.0.2"
-stream-buffers@~2.2.0:
+stream-buffers@2.2.x:
version "2.2.0"
resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4"
- integrity sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ=
+ integrity sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==
stream-each@^1.1.0:
version "1.2.3"
@@ -19891,6 +20059,11 @@ ua-parser-js@^0.7.18, ua-parser-js@^1.0.2:
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.2.tgz#e2976c34dbfb30b15d2c300b2a53eac87c57a775"
integrity sha512-00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg==
+ua-parser-js@^1.0.32:
+ version "1.0.32"
+ resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.32.tgz#786bf17df97de159d5b1c9d5e8e9e89806f8a030"
+ integrity sha512-dXVsz3M4j+5tTiovFVyVqssXBu5HM47//YSOeZ9fQkdDKkfzv2v3PP1jmH6FUyPW+yCSn7aBVK1fGGKNhowdDA==
+
uglify-es@^3.1.9:
version "3.3.9"
resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677"
@@ -19932,9 +20105,9 @@ unbox-primitive@^1.0.2:
which-boxed-primitive "^1.0.2"
underscore@^1.8.3:
- version "1.10.2"
- resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.10.2.tgz#73d6aa3668f3188e4adb0f1943bd12cfd7efaaaf"
- integrity sha512-N4P+Q/BuyuEKFJ43B9gYuOj4TQUHXX+j2FqguVOpjkssLUUrnJofCcBccJSCoeturDoZU6GorDTHSvUDlSQbTg==
+ version "1.13.6"
+ resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.6.tgz#04786a1f589dc6c09f761fc5f45b89e935136441"
+ integrity sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==
unfetch@^4.2.0:
version "4.2.0"
@@ -20806,11 +20979,6 @@ xmlbuilder@^15.1.1:
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5"
integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==
-xmlbuilder@^9.0.7:
- version "9.0.7"
- resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d"
- integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=
-
xmlbuilder@~11.0.0:
version "11.0.1"
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3"