onboarding (#675)

Co-authored-by: Stephan <stephan.hagios@gmail.com>
This commit is contained in:
m2049r 2020-09-13 18:34:22 +02:00 committed by GitHub
parent 82b4d66987
commit 64616e3921
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
21 changed files with 1509 additions and 12 deletions

View File

@ -7,9 +7,8 @@ android {
applicationId "com.m2049r.xmrwallet"
minSdkVersion 21
targetSdkVersion 28
versionCode 303
versionName "1.13.3 'ReStart'"
versionCode 400
versionName "1.14 'On Board'"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
@ -93,6 +92,11 @@ android {
outputFileName = "$rootProject.ext.apkName-" + v + "_" + abiName + ".apk"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
@ -102,6 +106,7 @@ dependencies {
implementation "com.android.support:recyclerview-v7:$rootProject.ext.supportVersion"
implementation "com.android.support:cardview-v7:$rootProject.ext.supportVersion"
implementation "com.android.support:swiperefreshlayout:$rootProject.ext.supportVersion"
implementation "com.android.support.constraint:constraint-layout:$rootProject.ext.constraintVersion"
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
implementation "com.squareup.okhttp3:okhttp:$rootProject.ext.okHttpVersion"
@ -124,5 +129,4 @@ dependencies {
testImplementation "com.squareup.okhttp3:mockwebserver:$rootProject.ext.okHttpVersion"
testImplementation 'org.json:json:20180813'
testImplementation 'net.jodah:concurrentunit:0.4.4'
}

View File

@ -20,24 +20,27 @@
android:supportsRtl="true"
android:theme="@style/MyMaterialTheme"
android:usesCleartextTraffic="true">
<activity android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTask"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".WalletActivity"
android:configChanges="orientation|keyboardHidden"
android:label="@string/wallet_activity_name"
android:launchMode="singleTask"
android:screenOrientation="behind" />
<activity
android:name=".LoginActivity"
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name"
android:launchMode="singleTop"
android:screenOrientation="locked">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
</intent-filter>
@ -62,6 +65,10 @@
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
android:resource="@xml/usb_device_filter" />
</activity>
<activity android:name=".onboarding.OnBoardingActivity"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTask"
android:screenOrientation="portrait"/>
<service
android:name=".service.WalletService"
@ -79,4 +86,4 @@
android:resource="@xml/filepaths" />
</provider>
</application>
</manifest>
</manifest>

View File

@ -0,0 +1,40 @@
/*
* Copyright (c) 2018-2020 EarlOfEgo, m2049r
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.m2049r.xmrwallet;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import com.m2049r.xmrwallet.onboarding.OnBoardingActivity;
import com.m2049r.xmrwallet.onboarding.OnBoardingManager;
import timber.log.Timber;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(@Nullable final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (OnBoardingManager.shouldShowOnBoarding(getApplicationContext()) || BuildConfig.DEBUG) {
startActivity(new Intent(this, OnBoardingActivity.class));
} else {
startActivity(new Intent(this, LoginActivity.class));
}
finish();
}
}

View File

@ -0,0 +1,110 @@
/*
* Copyright (c) 2018-2020 EarlOfEgo, m2049r
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.m2049r.xmrwallet.onboarding;
import android.content.Intent;
import android.os.Bundle;
import android.support.design.widget.TabLayout;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import android.util.TypedValue;
import android.view.View;
import com.m2049r.xmrwallet.LoginActivity;
import com.m2049r.xmrwallet.R;
public class OnBoardingActivity extends AppCompatActivity implements OnBoardingAdapter.Listener {
private ViewPager pager;
private OnBoardingAdapter pagerAdapter;
private int mustAgreePages = 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_on_boarding);
final View nextButton = findViewById(R.id.buttonNext);
pager = findViewById(R.id.pager);
pagerAdapter = new OnBoardingAdapter(getApplicationContext(), this);
pager.setAdapter(pagerAdapter);
int pixels = (int) TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_DIP, 16, getResources().getDisplayMetrics());
pager.setPageMargin(pixels);
pager.addOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
@Override
public void onPageSelected(int i) {
setButtonState();
}
});
final TabLayout tabLayout = (TabLayout) findViewById(R.id.tabLayout);
if (pagerAdapter.getCount() > 1) {
tabLayout.setupWithViewPager(pager, true);
} else {
tabLayout.setVisibility(View.GONE);
}
nextButton.setOnClickListener(v -> {
final int item = pager.getCurrentItem();
if (item + 1 >= pagerAdapter.getCount()) {
finishOnboarding();
} else {
pager.setCurrentItem(item + 1);
}
});
for (int i = 0; i < OnBoardingScreen.values().length; i++) {
if (OnBoardingScreen.values()[i].isMustAgree()) mustAgreePages++;
}
}
private void finishOnboarding() {
OnBoardingManager.setOnBoardingShown(getApplicationContext());
startActivity(new Intent(this, LoginActivity.class));
finish();
}
int agreeCounter = 0;
boolean agreed[] = new boolean[OnBoardingScreen.values().length];
@Override
public void setAgreeClicked(int position, boolean isChecked) {
if (isChecked) {
agreeCounter++;
} else {
agreeCounter--;
}
agreed[position] = isChecked;
setButtonState();
}
@Override
public boolean isAgreeClicked(int position) {
return agreed[position];
}
@Override
public void setButtonState() {
if (pager.getCurrentItem() + 1 == pagerAdapter.getCount()) { // last page
findViewById(R.id.buttonNext).setEnabled(mustAgreePages == agreeCounter);
} else {
findViewById(R.id.buttonNext).setEnabled(true);
}
}
}

View File

@ -0,0 +1,93 @@
/*
* Copyright (c) 2018-2020 EarlOfEgo, m2049r
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.m2049r.xmrwallet.onboarding;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.support.annotation.NonNull;
import android.support.v4.content.ContextCompat;
import android.support.v4.view.PagerAdapter;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CheckBox;
import android.widget.ImageView;
import android.widget.TextView;
import com.m2049r.xmrwallet.R;
import timber.log.Timber;
public class OnBoardingAdapter extends PagerAdapter {
interface Listener {
void setAgreeClicked(int position, boolean isChecked);
boolean isAgreeClicked(int position);
void setButtonState();
}
private final Context context;
private Listener listener;
OnBoardingAdapter(final Context context, final Listener listener) {
this.context = context;
this.listener = listener;
}
@NonNull
@Override
public Object instantiateItem(@NonNull ViewGroup collection, int position) {
LayoutInflater inflater = LayoutInflater.from(context);
final View view = inflater.inflate(R.layout.view_onboarding, collection, false);
final OnBoardingScreen onBoardingScreen = OnBoardingScreen.values()[position];
final Drawable drawable = ContextCompat.getDrawable(context, onBoardingScreen.getDrawable());
((ImageView) view.findViewById(R.id.onboardingImage)).setImageDrawable(drawable);
((TextView) view.findViewById(R.id.onboardingTitle)).setText(onBoardingScreen.getTitle());
((TextView) view.findViewById(R.id.onboardingInformation)).setText(onBoardingScreen.getInformation());
if (onBoardingScreen.isMustAgree()) {
final CheckBox agree = ((CheckBox) view.findViewById(R.id.onboardingAgree));
agree.setVisibility(View.VISIBLE);
agree.setChecked(listener.isAgreeClicked(position));
agree.setOnClickListener(v -> {
listener.setAgreeClicked(position, ((CheckBox) v).isChecked());
});
listener.setButtonState();
}
collection.addView(view);
Timber.d("add " + position);
return view;
}
@Override
public int getCount() {
return OnBoardingScreen.values().length;
}
@Override
public void destroyItem(@NonNull ViewGroup collection, int position, @NonNull Object view) {
Timber.d("destroy " + position);
collection.removeView((View) view);
}
@Override
public boolean isViewFromObject(@NonNull final View view, @NonNull final Object object) {
return view == object;
}
}

View File

@ -0,0 +1,51 @@
/*
* Copyright (c) 2018-2020 EarlOfEgo, m2049r
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.m2049r.xmrwallet.onboarding;
import android.content.Context;
import android.content.SharedPreferences;
import com.m2049r.xmrwallet.util.KeyStoreHelper;
import java.util.Date;
import timber.log.Timber;
public class OnBoardingManager {
private static final String PREFS_ONBOARDING = "PREFS_ONBOARDING";
private static final String ONBOARDING_SHOWN = "ONBOARDING_SHOWN";
public static boolean shouldShowOnBoarding(final Context context) {
return !getSharedPreferences(context).contains(ONBOARDING_SHOWN) && KeyStoreHelper.hasStoredPasswords(context);
}
public static void setOnBoardingShown(final Context context) {
Timber.d("Set onboarding shown.");
SharedPreferences sharedPreferences = getSharedPreferences(context);
sharedPreferences.edit().putLong(ONBOARDING_SHOWN, new Date().getTime()).apply();
}
public static void clearOnBoardingShown(final Context context) {
SharedPreferences sharedPreferences = getSharedPreferences(context);
sharedPreferences.edit().remove(ONBOARDING_SHOWN).apply();
}
private static SharedPreferences getSharedPreferences(final Context context) {
return context.getSharedPreferences(PREFS_ONBOARDING, Context.MODE_PRIVATE);
}
}

View File

@ -0,0 +1,55 @@
/*
* Copyright (c) 2018-2020 EarlOfEgo, m2049r
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.m2049r.xmrwallet.onboarding;
import com.m2049r.xmrwallet.R;
enum OnBoardingScreen {
WELCOME(R.string.onboarding_welcome_title, R.string.onboarding_welcome_information, R.drawable.ic_onboarding_welcome, false),
SEED(R.string.onboarding_seed_title, R.string.onboarding_seed_information, R.drawable.ic_onboarding_seed, true),
FPSEND(R.string.onboarding_fpsend_title, R.string.onboarding_fpsend_information, R.drawable.ic_onboarding_fingerprint, true),
XMRTO(R.string.onboarding_xmrto_title, R.string.onboarding_xmrto_information, R.drawable.ic_onboarding_xmrto, false),
NODES(R.string.onboarding_nodes_title, R.string.onboarding_nodes_information, R.drawable.ic_onboarding_nodes, false);
private final int title;
private final int information;
private final int drawable;
private final boolean mustAgree;
OnBoardingScreen(final int title, final int information, final int drawable, final boolean mustAgree) {
this.title = title;
this.information = information;
this.drawable = drawable;
this.mustAgree = mustAgree;
}
public int getTitle() {
return title;
}
public int getInformation() {
return information;
}
public int getDrawable() {
return drawable;
}
public boolean isMustAgree() {
return mustAgree;
}
}

View File

@ -140,6 +140,11 @@ public class KeyStoreHelper {
}
}
public static boolean hasStoredPasswords(@NonNull Context context) {
SharedPreferences prefs = context.getSharedPreferences(SecurityConstants.WALLET_PASS_PREFS_NAME, Context.MODE_PRIVATE);
return prefs.getAll().size() > 0;
}
public static String loadWalletUserPass(@NonNull Context context, String wallet) throws BrokenPasswordStoreException {
String walletKeyAlias = SecurityConstants.WALLET_PASS_KEY_PREFIX + wallet;
String encoded = context.getSharedPreferences(SecurityConstants.WALLET_PASS_PREFS_NAME, Context.MODE_PRIVATE)

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape
android:innerRadius="0dp"
android:shape="ring"
android:thickness="8dp"
android:useLevel="false">
<solid android:color="@color/gradientOrange" />
</shape>
</item>
</layer-list>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape
android:innerRadius="0dp"
android:shape="ring"
android:thickness="8dp"
android:useLevel="false">
<solid android:color="#CDD1D9" />
</shape>
</item>
</layer-list>

View File

@ -0,0 +1,72 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="774dp"
android:height="768dp"
android:viewportWidth="774"
android:viewportHeight="768">
<path
android:pathData="M595.29,577.34c-9.38,-25.79 -17.49,-52 -27,-77.78 -9.19,-25 -19,-49.82 -27.29,-75.15 -8.62,-26.23 -17.93,-52.24 -27.3,-78.21 -8.09,-22.43 -18.19,-44.59 -33.22,-63.28a223,223 0,0 0,-48.06 -44.33c-34.44,-23.42 -79.24,-35.76 -120.51,-26.7 -20.09,4.41 -39.15,14.47 -53.06,29.76C243.68,258.34 232,279.29 223.34,300 204.59,345 202,394.88 210.08,442.5c4.52,26.73 12,52.85 19.94,78.73 7.86,25.65 16.56,50.84 27.47,75.38 10.75,24.17 23.89,46.71 38,69s27.69,44.76 42,66.86Q343.64,742 350,751.4c2.58,-1.38 5.16,-2.81 7.73,-4.24 -11.52,-17.58 -22.59,-35.45 -33.46,-53.44 -13.27,-22 -27.42,-43.5 -39.94,-65.91 -25.39,-45.44 -41.14,-95.93 -54.26,-146.08 -12.66,-48.42 -18.28,-98.42 -5.85,-147.53a211.52,211.52 0,0 1,25.54 -59.8c11.24,-18.07 24.06,-34 43.55,-43.5 36.69,-17.83 82.18,-10 117,8.56 18.45,9.84 34.55,23.17 48.86,38.34 15.7,16.65 27.24,35.37 36,56.51 9.9,24 18.06,48.89 26.46,73.45 8.49,24.82 16.9,49.59 26.12,74.16 18.45,49.18 33.46,99.53 54.69,147.65 0.76,1.73 1.54,3.45 2.32,5.18 0.46,0 0.92,-0.06 1.38,-0.11a39.11,39.11 0,0 0,9.41 -5.86c0.12,-0.18 0.22,-0.36 0.33,-0.55C608.4,611.5 601.52,594.51 595.29,577.34Z"
android:fillColor="#231f20"/>
<path
android:pathData="M443,535.05c-9.66,-14.47 -21.79,-27.21 -31.84,-41.43 -10.47,-14.83 -20,-30.6 -26.62,-47.55 -7.14,-18.3 -9.86,-37.42 -11,-56.94 -0.78,-13.7 0,-28.5 -3.77,-41.85 -3,-10.56 -10.65,-19.25 -22.53,-17.91 -12.71,1.44 -20.3,14.87 -24.9,25.38 -6.76,15.46 -8.81,31.15 -7.33,47.95 1.65,18.69 6.22,36.94 12.29,54.66 3.42,10 7.2,19.82 11.25,29.55s8.53,19.33 11.74,29.37c3,9.45 4,18.9 4.94,28.71 0.75,7.39 2.78,17.49 -3,23.42 -0.47,0.49 0.17,1.42 0.76,1 9.13,-7 6.65,-22.64 6,-32.59 -1.15,-17.94 -7.66,-34.25 -14.15,-50.79 -6.71,-17.09 -13.51,-34.11 -18.15,-51.91 -4.73,-18.15 -8.42,-38 -5.61,-56.71 1.91,-12.71 7.55,-28.31 16.85,-37.53 4.52,-4.47 10.76,-6.77 16.94,-4.31 5.31,2.11 8,7.5 9.47,12.7 3.6,13 2.5,27.56 3.26,40.88 1,18.45 3.34,36.79 9.59,54.27 6.4,17.89 15.86,34.49 26.79,50 10.74,15.24 22.42,31.16 36.23,43.76C441.68,538.41 444.16,536.76 443,535.05Z"
android:fillColor="#231f20"/>
<path
android:pathData="M424.89,538.23c-10.41,-8.27 -19.14,-16.77 -25.73,-28.46 -3.49,-6.19 -6.3,-12.72 -9.62,-19 -3.5,-6.59 -7.23,-13 -10.51,-19.76 -7.34,-15 -10.51,-31.46 -12.52,-48a224.34,224.34 0,0 1,-1.86 -24.84c-0.09,-8.38 0.27,-16.77 -0.2,-25.15s-1.77,-23.83 -13.14,-24.78 -16.51,14.32 -18.67,22.85c-7.16,28.24 -0.62,60 9.17,86.81 5.92,16.24 14.6,31.24 19.91,47.73 5.49,17.05 9.18,35.23 9.74,53.16a0.63,0.63 0,0 0,1.25 0,173.32 173.32,0 0,0 -18.64,-82.25C341,450.27 332.7,421.11 334.3,391.5a93.28,93.28 0,0 1,3.55 -22.09c1.66,-5.49 4.37,-13.78 10.31,-16.09 13.33,-5.19 11.89,25.67 11.87,31.86 -0.12,29.29 1.57,60.74 14.6,87.53 3.37,6.94 7.26,13.61 10.9,20.41 3.56,6.65 6.55,13.59 10.38,20.1 6.53,11.11 15.39,21.56 26.81,27.82C424.42,542 426.54,539.55 424.89,538.23Z"
android:fillColor="#231f20"/>
<path
android:pathData="M390.13,523.12c-3.83,-9.46 -8.8,-18.37 -13.47,-27.43 -5.16,-10 -9.92,-20.29 -14.33,-30.65a282.84,282.84 0,0 1,-11.21 -32.67c-3,-10.33 -6.19,-20.71 -7.34,-31.45 -1,-9.14 -1.76,-22.56 4.35,-30.32 1.48,-1.88 2.09,-1.78 3.15,0.45a19.77,19.77 0,0 1,1.51 8.47c0,6 -1.57,12.18 -2.9,18a0.74,0.74 0,0 0,1.43 0.39c3.34,-8.48 7,-18 4.06,-27.15 -1.35,-4.25 -4.78,-8 -9,-4.39 -5,4.23 -6.44,12.42 -7.15,18.49 -1.19,10.21 0.09,20.46 2.39,30.41A328.15,328.15 0,0 0,363 478.36c4.44,9.7 9.19,19.2 14.12,28.65 5.09,9.75 10.05,19.7 12.62,30.46 1.1,4.61 2,9.3 1.18,14 -0.23,1.39 -1.74,9.19 -3.69,9 -1.42,-0.14 -2.63,-4.83 -2.95,-5.87a45.38,45.38 0,0 1,-1.63 -9.26c-0.5,-5.42 0.09,-11 -1.19,-16.27a1.51,1.51 0,0 0,-2.9 0c-2,8.35 -1.16,19.22 1.39,27.42 1.27,4.11 4.85,11.69 10.26,7.92 4.29,-3 5.51,-10.34 5.87,-15.12C396.68,540.57 393.35,531.08 390.13,523.12Z"
android:fillColor="#231f20"/>
<path
android:pathData="M428.88,498.85c-8.56,-13.8 -18.39,-26.51 -25.68,-41.12 -7.37,-14.77 -13.18,-30.43 -14.77,-47 -2.64,-27.47 4.25,-59.19 -14.31,-82.6 -7.55,-9.52 -20.55,-12.09 -32,-9.49 -12.73,2.88 -22.95,12.59 -29.13,23.77 -7.28,13.2 -9.05,28 -10,42.77 -0.51,7.77 -3,15.42 -2.07,23.25a163.68,163.68 0,0 0,5.22 25.09c5.29,19 13.2,37.26 19.69,55.87 3.39,9.73 7.1,19.44 9.3,29.52s2.57,20.63 6.19,30.25c0.57,1.52 3,1.4 3,-0.4 -0.06,-16.17 -4,-32.89 -9.13,-48.13 -5.58,-16.43 -11.58,-32.68 -17.58,-49 -2.75,-7.46 -5.21,-15 -7.21,-22.72s-4.44,-16.4 -4.4,-24.49c0,-7.45 2,-15 2.57,-22.5a116.16,116.16 0,0 1,3.37 -22.48c3.62,-13.31 11.17,-26.14 23.67,-32.82 11.24,-6 27.13,-5.32 35.19,5.52 17,22.88 9.89,53.54 12.79,79.92 1.79,16.28 7.17,32.17 14.71,46.68s17.2,29.69 28.93,41.37A1.11,1.11 0,0 0,428.88 498.85Z"
android:fillColor="#231f20"/>
<path
android:pathData="M304.52,455.92c-4,-13.63 -5.61,-27.79 -7.6,-41.8 -0.8,-5.64 -2.6,-10.21 -6.69,-14.22 -4.57,-4.49 -6.78,-8.4 -6.94,-15 -0.29,-11.85 3.53,-24.52 7.28,-35.66 3.65,-10.86 9.25,-20.56 15,-30.39a68.78,68.78 0,0 1,8.7 -12.47c2,-2.1 7.48,-7.17 10.78,-4.37 3.68,3.13 -5.42,14.12 -7.32,16.65 -6.39,8.54 -12.2,17 -16.23,27A122.55,122.55 0,0 0,293 386.24c0,0.53 0.84,0.66 0.93,0.13 4.07,-13.45 6.37,-27.47 11.95,-40.44 4.16,-9.67 10.22,-17.67 16.45,-26 3.4,-4.56 9.9,-12.46 7.86,-18.7 -2.55,-7.86 -13.38,-4.05 -17.67,-0.35 -7.41,6.4 -11.85,16.09 -16.74,24.39 -6.95,11.78 -11.31,24.56 -14.59,37.78 -2.61,10.52 -6.21,24.92 0,34.85 1.42,2.25 3.41,3.91 5.28,5.76a16.59,16.59 0,0 1,4.83 9c1.45,7.07 1.92,14.48 3.11,21.62 1.51,9.06 3.14,18.21 6.15,26.91 2.62,7.56 6.24,14.71 9.52,22a117.44,117.44 0,0 1,8.12 25.46c1.71,8.58 2.48,17.39 5.43,25.66 0.71,2 4.09,1.85 3.91,-0.53a177.16,177.16 0,0 0,-7.48 -40C315.86,480.75 308.39,469.05 304.52,455.92Z"
android:fillColor="#231f20"/>
<path
android:pathData="M456,454.71c-2.94,-8.71 -7.81,-16.54 -12.33,-24.48 -4.68,-8.2 -8.39,-16.39 -9.9,-25.77 -1.29,-8 -2.41,-17.12 -7.44,-23.78 -2.87,-3.81 -7.42,-5.36 -10.45,-0.82 -2.83,4.26 -3.36,10.53 -3.49,15.51 -0.47,19.29 6.36,40.89 16.45,57.24 4.21,6.82 13.87,16.75 10.95,25.59 -1.69,5.15 -6.19,-0.55 -8.11,-2.77a80.81,80.81 0,0 1,-8.95 -13.12,131.57 131.57,0 0,1 -17.28,-57.64c-1.13,-20.62 0.5,-41.91 -7,-61.59 -3.71,-9.76 -9.35,-19.35 -16.93,-26.61A36.54,36.54 0,0 0,368.31 308c-5.38,-1.86 -11.12,-2.31 -16.53,-4 -3.93,-1.26 -7.26,-3 -9.16,-6.76 -1.59,-3.15 -2.35,-6.66 -3.9,-9.83 -3.42,-7 -11.64,-11.75 -18,-5.4a0.72,0.72 0,0 0,0.86 1.12c10.93,-5.53 13.8,7.83 16.67,15.06 2.23,5.59 6.68,8.48 12.23,10.4 9.67,3.35 18.87,3.74 26.66,11.24 7,6.74 12.22,15.79 15.69,24.82 7.26,18.92 5.75,39.41 6.78,59.26 1,18.46 5.72,35.47 13.69,52.11a105.74,105.74 0,0 0,13.74 22.23c3.28,3.95 9.21,10.49 14.75,6.33 4.75,-3.57 4.2,-11.35 2.41,-16.27 -3,-8.21 -9.23,-14.74 -13.18,-22.44 -8.17,-16 -15.13,-35.81 -13.15,-54a27.17,27.17 0,0 1,1.71 -7.76c1.58,-3.64 2.91,-0.19 4.3,2.58 3.89,7.76 3.87,16.75 5.93,25 4.64,18.6 19.34,32.81 23,51.77 1.55,8 2.7,16.6 0.79,24.59 -2.16,9.07 -8.58,14.89 -17.14,18.09 -3.19,1.2 -1.8,6.37 1.42,5.15 14.65,-5.55 22.1,-17.22 21.93,-32.78A78.76,78.76 0,0 0,456 454.71Z"
android:fillColor="#231f20"/>
<path
android:pathData="M358.69,290.32c-8.36,-2.65 -12.15,-13.7 -17.89,-19.65 -7.71,-8 -17.73,-8.7 -26.49,-1.91 -8.54,6.63 -13,16.76 -17.82,26.14 -5.72,11.18 -13.16,21.4 -18.62,32.71 -9.22,19.12 -19.23,42.13 -14.72,63.78 2.29,11 10.44,19 13.74,29.51 1.88,6 2,12.42 2.73,18.59a84.05,84.05 0,0 0,4.5 20.56c4.71,12.41 12.69,23.39 15.92,36.38 2.66,10.69 2.73,24.55 10.42,33.1 1.35,1.5 4.29,-0.07 3.51,-2 -3.69,-9.41 -5.75,-18.7 -7.84,-28.57 -2.25,-10.6 -6.94,-19.81 -11.81,-29.41a87.87,87.87 0,0 1,-7.08 -17.33c-1.68,-6.35 -2.22,-12.89 -2.94,-19.4 -0.59,-5.39 -1.1,-10.8 -3.12,-15.88a91.3,91.3 0,0 0,-6.7 -12.53A46.8,46.8 0,0 1,268 373.54c1.38,-11.38 5.44,-22.43 9.94,-32.91a242.06,242.06 0,0 1,15.73 -29.69c5.56,-9.21 9.72,-19.23 15.45,-28.31 3.57,-5.64 8.83,-12 15.73,-13.39 6.22,-1.23 11.42,3 15.15,7.46 4.43,5.32 10.37,15.89 18.49,15.18A0.8,0.8 0,0 0,358.69 290.32Z"
android:fillColor="#231f20"/>
<path
android:pathData="M297.64,518.14c-1.25,-3.28 -3.41,-6 -5.06,-9.1a82.19,82.19 0,0 1,-5.07 -12c-2.64,-7.65 -4.6,-15.51 -6.9,-23.27 -2.54,-8.58 -5.19,-16.95 -6.54,-25.84 -1.56,-10.19 -2.56,-20.63 -3.59,-30.89 -0.1,-1 -1.58,-1 -1.54,0 0.49,10.22 0,20.4 0.94,30.63 0.9,9.7 3.36,18.77 5.82,28.15 2.17,8.29 4.12,16.63 7,24.71 2.43,6.77 5.46,15.89 11.63,20.1C295.9,521.73 298.34,520 297.64,518.14Z"
android:fillColor="#231f20"/>
<path
android:pathData="M418.65,363.31c-2.4,-17.5 -12.15,-32.56 -22.54,-46.41a94.58,94.58 0,0 0,-12.95 -14.73c-3.82,-3.36 -8.54,-7 -13.94,-6.35a1,1 0,0 0,0 2c5,0.1 9.65,6.09 12.69,9.55a168.24,168.24 0,0 1,10.74 14.05c9.07,12.88 18,26.75 20.09,42.7A3,3 0,1 0,418.65 363.31Z"
android:fillColor="#231f20"/>
<path
android:pathData="M450.43,406.58c-0.43,-2.25 -0.27,-4.52 -0.8,-6.8s-1.16,-4.36 -1.77,-6.52c-1.07,-3.8 -2.19,-7.6 -3.31,-11.39 -2.08,-7.06 -4.25,-14.1 -6.42,-21.14 -4.05,-13.16 -8.5,-26.3 -15.42,-38.28A98.6,98.6 0,0 0,395 291.57c-10.94,-8 -23.55,-15.88 -36.27,-20.61 -0.82,-0.3 -1.32,0.82 -0.8,1.38 8.88,9.65 21.8,15.38 32.32,23a96.77,96.77 0,0 1,28.2 32.11c6.51,11.89 10.57,24.84 14.47,37.76 2.17,7.19 4.37,14.38 6.45,21.6 1,3.53 2,7.06 3.1,10.56 1.22,3.86 3,7 4.67,10.59C448,410 450.8,408.47 450.43,406.58Z"
android:fillColor="#231f20"/>
<path
android:pathData="M472.66,471a90.4,90.4 0,0 0,-7 -25.72c-4.18,-9.37 -11.95,-16.84 -15.55,-26.39 -0.65,-1.75 -3.41,-1.07 -2.84,0.78 2.47,8.06 7.46,14.85 11.17,22.33a88.59,88.59 0,0 1,8.42 27.66c1.31,9.52 2,19.71 -1.38,28.9 -2.76,7.56 -8.83,13.82 -10.8,21.66 -0.72,2.88 3.46,4.86 4.93,2.08C463.42,515 468.18,507.73 471,500 474.27,490.77 473.88,480.54 472.66,471Z"
android:fillColor="#231f20"/>
<path
android:pathData="M485.07,449c-2.52,-9.83 -6.61,-19.17 -10.83,-28.37 -4.51,-9.83 -8.84,-19.39 -11.55,-29.9s-4.46,-21.1 -7.25,-31.51a154.27,154.27 0,0 0,-32.81 -60.72c-0.49,-0.56 -1.26,0.15 -1,0.76 8.67,18.1 19.83,34.7 25.87,54.05 5.75,18.44 7.2,38.1 14.68,56S479.37,444.2 481,463.84s-0.83,42 -9,60.05a56.57,56.57 0,0 1,-18.64 22.38c-8.39,6 -17.37,8.49 -27.52,9.23a2.61,2.61 0,0 0,0 5.22c17,1.95 34.26,-9.83 44.19,-22.72 12.36,-16 16.34,-37.87 17.45,-57.64C488,469.75 487.72,459.37 485.07,449Z"
android:fillColor="#231f20"/>
<path
android:pathData="M287.29,290.18c-14.1,18.4 -27.62,39.15 -33.45,61.82a99.07,99.07 0,0 0,-3.11 30.18,87.8 87.8,0 0,0 1.57,13.13c0.68,3.29 1.62,8.2 5.07,9.69a1.79,1.79 0,0 0,2.65 -1.52c0.06,-3.57 -2,-7.31 -2.67,-10.83A87.06,87.06 0,0 1,256 379.86a95,95 0,0 1,3.84 -30.11c3.06,-10.77 8.13,-20.53 13.55,-30.27 5.29,-9.48 11.27,-18.59 14.54,-29C288.1,290 287.52,289.88 287.29,290.18Z"
android:fillColor="#231f20"/>
<path
android:pathData="M329.32,552.91c-4.84,-5.82 -12.83,-9.57 -19.07,-13.77a149.86,149.86 0,0 1,-20.07 -15.49c-12.5,-11.93 -18.12,-27.46 -22.31,-43.84a137,137 0,0 1,-4.5 -25.25c-0.52,-8 -0.67,-16 -2,-23.87 -1.43,-8.27 -4.83,-15.31 -9.1,-22.45 -5,-8.37 -8.78,-16.57 -9.48,-26.43 -0.73,-10.29 1,-20.58 3.7,-30.48 2.49,-9.23 6.24,-18.44 7,-28 0.08,-1.09 -1.45,-1.14 -1.79,-0.24 -6.25,16.78 -12.8,34.94 -13.56,53a56.49,56.49 0,0 0,4.75 26c3.75,8.22 9.25,15.45 11.58,24.3s2.41,17.75 2.92,26.69a138.19,138.19 0,0 0,4 25.48c4,16.28 9,32.54 20.39,45.3 6.12,6.85 13.5,12.54 21,17.73 4.11,2.84 8.31,5.54 12.5,8.27 3.86,2.52 7.48,5.33 11.82,7C329.45,557.63 330.63,554.48 329.32,552.91Z"
android:fillColor="#231f20"/>
<path
android:pathData="M411.88,559.77c-15.54,11 -36.18,15.5 -54.94,14.09a88,88 0,0 1,-27.51 -6.39c-5,-2.08 -10.48,-4.15 -14.66,-7.63 -3.32,-2.76 -6.1,-7.44 -10.62,-8.18a3,3 0,0 0,-2.9 5c7.2,8.29 16.48,13.45 26.53,17.56a88.14,88.14 0,0 0,29.83 6.51,83.66 83.66,0 0,0 29.76,-4.08 64.81,64.81 0,0 0,13.78 -6.38c4.47,-2.78 7.74,-6 11.42,-9.59C413,560.22 412.42,559.39 411.88,559.77Z"
android:fillColor="#231f20"/>
<path
android:pathData="M496.72,499.41a0.8,0.8 0,0 0,-1.59 0c-3.11,24.18 -18.63,45.85 -38.68,59.11a94.1,94.1 0,0 1,-16.17 8.66c-4.31,1.78 -8.74,3.12 -13,5.12s-8.34,4.25 -12.7,5.94c-3.69,1.43 -7.37,1.24 -11,2.35a2.7,2.7 0,0 0,-1.6 3.92c5.15,7.54 19.79,-1.44 25.45,-4.39 11,-5.72 22.51,-9.51 32.71,-16.79C479.64,549.4 498.82,524.68 496.72,499.41Z"
android:fillColor="#231f20"/>
<path
android:pathData="M401.35,275c-6.83,-4.7 -12.3,-11 -19,-15.85 -6.3,-4.58 -13.68,-7.58 -21.05,-10 -13.5,-4.38 -27,-6.56 -41.14,-4.4 -13.15,2 -26.08,7.63 -35.49,17.19 -5.37,5.45 -10.05,11.92 -14.49,18.13a72,72 0,0 0,-10.86 21.24c-0.6,2 2.43,3.32 3.37,1.43a120.22,120.22 0,0 1,13.09 -20.31c4.25,-5.42 8.43,-11.19 13.28,-16.1 8.9,-9 21.21,-14 33.64,-15.64 13.2,-1.73 25.94,0.71 38.48,4.79 6.92,2.25 13.76,4.86 19.87,8.88 6.39,4.2 12,9.49 19,12.75A1.25,1.25 0,0 0,401.35 275Z"
android:fillColor="#231f20"/>
<path
android:pathData="M755.43,276.23c-33.74,10.51 -64.13,30.28 -98.23,39.52 -1.75,-17.53 2.86,-35.32 -1.9,-52.63a3.7,3.7 0,0 0,-3.52 -2.68c-18.33,1.44 -34.28,12.95 -50.1,21.25 -16.49,8.65 -35.43,12.15 -51.36,21.89 0.13,1.31 0.24,2.62 0.34,3.92q0.29,1.67 0.54,3.33h0c1.78,11.59 2.59,23.36 3.4,35.12h0c0.35,5.06 0.71,10.12 1.14,15.16a4.68,4.68 0,0 0,3.85 -0.2c21.28,-9.95 39.42,-25.08 59,-37.79 1.61,5.35 1.8,11.09 2.22,16.66 0.55,7.19 1.55,14.06 4.43,20.72 1,2.21 4.53,3 6.43,1.69A416,416 0,0 1,668 340.27q5.64,-4.39 11.4,-8.63 6.54,-4.8 13.23,-9.43l0.59,-0.41q6.67,-4.6 13.46,-9.05l0.76,-0.5q6.68,-4.37 13.46,-8.59l1,-0.65q2.07,-1.29 4.16,-2.56l5.33,-3.26 2.37,-1.44q3.6,-2.17 7.22,-4.33h0l1.69,-1q7.78,-5.87 15.64,-11.59A2.39,2.39 0,0 0,755.43 276.23ZM630.6,345.1q-0.14,-0.89 -0.24,-1.77a4.54,4.54 0,0 0,0.58 0.58C630.83,344.31 630.71,344.71 630.6,345.1ZM555.6,310.4a2.47,2.47 0,0 0,-0.36 -0.11l0.46,-0.27C555.7,310.14 555.66,310.27 555.63,310.4ZM564.23,347.26a6.41,6.41 0,0 0,1.31 0.14l0.16,0.22 -2.61,1.51A4,4 0,0 0,564.26 347.26ZM651.13,317.96c0,0.08 0,0.15 0,0.23l-0.07,0ZM636,293.1l0.32,-0.61 0.22,-0.21q-0.27,1.47 -0.57,2.94a4.09,4.09 0,0 0,-0.15 -0.85A4.52,4.52 0,0 0,636 293.1ZM560.67,350.1a4.92,4.92 0,0 0,1 -0.16l-1,0.54C560.72,350.34 560.69,350.22 560.67,350.09ZM631.59,350.23a3.89,3.89 0,0 0,0.53 0.46l-0.37,0.24C631.69,350.69 631.64,350.45 631.59,350.22Z"
android:fillColor="#f0006b"/>
<path
android:pathData="M194,538.15c-0.5,-1.21 -1,-2.44 -1.46,-3.66l-0.36,-0.91c-1.18,-3 -2.31,-6.06 -3.45,-9.07q-0.85,-2.24 -1.72,-4.46c-1.65,-4.19 -3.32,-8.37 -5.05,-12.52q-2.14,-4.3 -4.28,-8.61a4.66,4.66 0,0 0,-0.47 0.3c-29.93,22.34 -64.79,37.16 -93.61,61.1a3.41,3.41 0,0 0,-0.53 4.11c2.13,3.27 4.13,6.67 6.11,10.09A5,5 0,0 0,90 577.6a125.17,125.17 0,0 0,6.75 10.71A164.14,164.14 0,0 0,108 604.15c0,0.07 0,0.12 0,0.19a14.34,14.34 0,0 1,-3.19 6.31c-3.35,4.32 -7.41,8.07 -10.94,12.25 -6.48,7.7 -13.12,15.3 -19.63,23l-1.86,1.6c-7.6,6.7 -14.83,13.8 -22,20.94L46,674.12c-5.86,7.59 -11.7,15.31 -18,22.6 -2.57,3 -5.2,5.88 -7.95,8.68a3.08,3.08 0,0 0,0.46 2.25c1.8,-1.16 3.59,-2.34 5.38,-3.52h0l0.79,-0.52 3.52,-2.36L33.48,699q1.94,-1.32 3.86,-2.65l2.89,-2 1.17,-0.81h0c0.63,-0.43 1.25,-0.88 1.87,-1.32l1.61,-1.12 2,-1.43L50,687.54l2.59,-1.85L61,679.62l1.18,-0.86 9.62,-7q4.5,-3.27 9,-6.51l14.42,-12.11c20,-16.74 40.14,-33.3 61.06,-48.89l1.51,-1.13a4.24,4.24 0,0 0,0 -2.15c-1.73,-6.42 -6.45,-11.27 -11.14,-15.73 -3.83,-3.64 -8.7,-7.39 -11.16,-12.27 16.89,-8.25 34.85,-15 49.77,-26.64 2.76,-2.15 6,-4.73 8.16,-7.77C193.69,538.45 193.86,538.31 194,538.15ZM124.15,600.57 L125.15,601.64 124.74,601.98 123.85,600.49ZM148.27,599.31 L147.83,599.46c-0.72,-1.17 -1.38,-2.39 -2,-3.58A23.38,23.38 0,0 1,148.29 599.31Z"
android:fillColor="#f0006b"/>
<path
android:pathData="M228.62,219.16c-7.78,-6.19 -16.62,-10.91 -25.44,-15.45 -3,-1.53 -6.11,-2.74 -9,-4.44 -1.64,-1 -2.41,-2.34 -3.87,-3.46 1.65,-2.75 2.06,-6.62 3.3,-9.5a85.44,85.44 0,0 1,7.34 -13c5.1,-7.79 10.86,-15.13 15.76,-23 2.17,-3.52 3.93,-7.23 5.92,-10.85 1.26,-2.28 2.93,-4.69 3,-7.4a6.91,6.91 0,0 0,-0.8 -3.38l-7.2,-2.26L213.49,125c-24.37,-7.76 -48.58,-16 -72.4,-25.36 -4.14,-1.62 -8.25,-3.35 -12.36,-5.1h0c-9.74,-4.16 -19.44,-8.46 -29.45,-11.83 -4.06,-1.36 -8.21,-2.67 -12.31,-4.11 0,0.07 0,0.14 0,0.21 6.06,4.7 12,9.52 17.94,14.4l1.81,1.48q9.38,7.77 18.59,15.72l4,3.47c7.45,6.53 14.81,13.2 22.56,19.34 3.36,2.68 6.73,5.35 10.16,7.94 1.4,1.06 2.8,2.13 4.25,3.12 0.48,0.33 2.54,1.39 1.88,1.24a2.87,2.87 0,0 1,2.39 2.71c2.19,1.26 4.37,2.53 6.53,3.83q-11.21,14.42 -22.23,29 -5.88,9.79 -12.36,19.2l-1.4,2c-1.24,1.76 -2.49,3.52 -3.76,5.26 -0.7,0.94 -1.37,1.9 -2.08,2.84a2.62,2.62 0,0 1,-0.52 0.53q13.9,14.28 28.3,28c8.76,8.35 21,15.72 27.34,26.44a13.51,13.51 0,0 0,1 2.28c0.39,-0.49 0.77,-1 1.16,-1.49h0c0.1,-0.13 0.2,-0.27 0.31,-0.4l3.92,-5.11h0l3.81,-5A448.28,448.28 0,0 1,228.62 219.16ZM189.93,195.4a8.69,8.69 0,0 0,-0.82 -0.93C190.07,194.08 190.12,194.67 189.93,195.4ZM181.41,195.34ZM197.2,248.22 L197.72,247.63L196.8,249C196.94,248.75 197.07,248.48 197.2,248.22ZM217.71,224.52a5.45,5.45 0,0 0,0.18 -1,2.65 2.65,0 0,0 0.94,-1.38l0.7,0.48C218.93,223.27 218.32,223.89 217.71,224.52ZM135.59,118.09c1.51,1 3,1.87 4.57,2.78 0.75,0.55 1.48,1.11 2.22,1.66l0,0C140.1,121.07 137.84,119.6 135.59,118.09ZM192.36,254.74a17.81,17.81 0,0 0,2.82 -3.08c-0.75,1.28 -1.47,2.57 -2.12,3.88Z"
android:fillColor="#f0006b"/>
<path
android:pathData="M486.2,151.26l1.2,-2.51c1.4,-2.9 2.8,-5.78 4.23,-8.66 0.45,-0.91 0.89,-1.82 1.34,-2.72q2.41,-4.83 4.89,-9.63 3.45,-6.7 7,-13.37a10.34,10.34 0,0 0,-1.3 -1.67c-7.51,-7.89 -20,-7.87 -30.48,-9.32 6,-14.72 14.94,-28.63 22.68,-42.36 7,-12.42 16.86,-25.44 17.35,-40.25a3.77,3.77 0,0 0,-3 -3.86Q507.78,19 505.44,21l-1.16,1a601.76,601.76 0,0 1,-54 52.55c-6.15,5.93 -12.51,11.64 -19.22,17 -2,2 -4,4 -5.95,6a3.91,3.91 0,0 0,1.1 3.69c5.58,5.72 12.88,8.42 19.29,12.94 2.46,1.73 6.23,4.63 6.41,7.92 0.15,2.67 -2,5.57 -3.13,7.82 -4.23,8.14 -7.69,16.7 -11.68,25 -4.44,9.18 -9.71,18.12 -13.74,27.48a2.7,2.7 0,0 0,-1.87 2c4.39,2.54 8.74,5.18 13.06,7.85h0q5.25,3.26 10.47,6.54l2.5,1.57q5.34,3 10.57,6.23a3.23,3.23 0,0 0,1 -0.34c3.33,-6.95 6.91,-13.81 10.56,-20.63q2.78,-5.17 5.56,-10.31 2.43,-5.55 5,-11.06c0.37,-0.83 0.75,-1.66 1.13,-2.49Q483.7,156.49 486.2,151.26Z"
android:fillColor="#f0006b"/>
</vector>

View File

@ -0,0 +1,279 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="774dp"
android:height="768dp"
android:viewportWidth="774"
android:viewportHeight="768">
<path
android:pathData="M542,284.62c-0.37,-5.69 -0.51,-11.39 -0.56,-17.08l-0.09,-1.2c-0.61,-8.89 -0.17,-17.78 0.16,-26.67 0,-4.66 0,-9.32 0,-14 0,-10.07 1.14,-20.37 1.08,-30.55l0,-0.43c-0.13,-0.45 -0.23,-0.91 -0.34,-1.36l-0.18,-0.82c-0.06,-0.28 -0.11,-0.57 -0.16,-0.85s-0.11,-0.61 -0.15,-0.91l-0.09,-0.62c-0.12,-0.91 -0.21,-1.82 -0.27,-2.74h0c-1.34,0 -2.68,0.05 -4,0.09v0c-17.55,0.46 -35.09,1.86 -52.64,2.38l-2.5,0.06c-2.42,0.06 -4.85,0.11 -7.28,0.12h0c-2.54,2 -5.11,3.89 -7.76,5.72l-0.74,0.63h0c-8.16,6.88 -16,14.13 -23.75,21.5 0,0.72 0,1.44 0,2.16s0,1.15 0,1.73l-0.06,1.3c-0.32,6.84 -1.12,13.66 -1.92,20.48 -1.23,10.65 -1.91,21.32 -2.46,32 -0.57,11.16 -0.89,22.25 -0.65,33.43 0,2 0.11,4.06 0.16,6.13 0.1,0.37 0.21,0.74 0.32,1.11l-0.29,0.1c0,1.18 0.06,2.37 0.07,3.55 13.74,-1.47 27.56,-1.74 41.36,-2.18a98,98 0,0 1,10.27 -0.38c1.63,-0.07 3.25,-0.17 4.88,-0.26h0l2.63,-0.14a5.51,5.51 0,0 1,0.58 0l0.33,0.06 0.26,0.05 0.12,0c0.57,-0.42 1.15,-0.82 1.72,-1.23s1.34,-0.94 2,-1.39 1.53,-1 2.31,-1.56 1.55,-1 2.33,-1.5 1.62,-1 2.43,-1.54c8.41,-5.22 17.13,-9.94 25.73,-14.87h0l1,-0.6c1.14,-0.66 2.29,-1.32 3.42,-2l0.07,-0.07c1,-0.61 2.09,-1.21 3.13,-1.84C542.23,288.58 542.13,286.61 542,284.62ZM480.84,195c10.81,-0.46 21.68,-0.73 32.49,-0.93q6.61,-0.12 13.25,-0.17a104.15,104.15 0,0 0,-8.46 6.14,134.71 134.71,0 0,0 -13.71,12.15c-0.11,-0.18 -0.2,-0.36 -0.31,-0.53a7.48,7.48 0,0 1,-1.88 0.65,2 2,0 0,1 -0.62,0.47 1.73,1.73 0,0 1,-0.32 0.11l-0.16,0a2.07,2.07 0,0 1,-0.57 0l-0.49,0.06a4.89,4.89 0,0 1,-0.75 0.05h-0.11a1.83,1.83 0,0 1,-0.32 -0.07l-0.09,0c-6.2,0.29 -12.41,0.21 -18.61,0.24s-12.36,0.07 -18.5,0.65a76,76 0,0 0,-10.13 1.41c4.34,-3.15 9.14,-5.89 13.09,-9.11C469.88,201.93 474.92,198 480.84,195ZM473.23,311.35c-3.4,0.68 -6.77,1.49 -10.16,2.24 -4.15,0.64 -8.33,1.41 -12.51,1.69q-1,0.06 -1.95,0.06c0.74,-7.16 -0.92,-14.52 -0.75,-21.71q0.36,-15.06 0.75,-30.14c0.21,-8.15 0.78,-16.25 1.57,-24.35 0.24,-2.39 1.28,-8.81 -0.61,-11.81 7.24,-1.08 14.88,0.2 22.13,-0.43 5.56,-0.48 11.11,-1.5 16.6,-2.47 3.93,-0.7 8.23,-0.87 12.27,-1.65a3.64,3.64 0,0 0,-0.17 1c-0.48,16.78 -1.85,33.78 -1.38,50.56 0.19,6.87 0.88,13.71 1,20.57 0.08,3.44 0,6.91 -0.15,10.34 -0.08,1.45 -0.32,3 -0.46,4.55 -0.77,0.1 -1.54,0.18 -2.31,0.27C489.49,308.22 480.5,310 473.23,311.39ZM525.56,293.81c-4.5,2.83 -9,5.59 -13.5,8.5l-2.8,1.85c-0.05,-2 -0.09,-3.95 -0.15,-5.93 -0.29,-11 -0.66,-22.1 -0.45,-33.14 0.18,-9.7 0.62,-19.39 0.07,-29.08a111.48,111.48 0,0 0,-1.5 -13.89c-0.14,-0.76 -0.28,-1.61 -0.45,-2.51l0.8,-0.06a2.5,2.5 0,0 1,-0.26 -1.35,2.36 2.36,0 0,1 0.08,-0.45l0,-0.08a1.8,1.8 0,0 1,0.16 -0.38l0.06,-0.11a2.43,2.43 0,0 1,0.24 -0.32,0.48 0.48,0 0,1 0.09,-0.11 3.09,3.09 0,0 1,0.43 -0.37c1.2,-0.82 2.38,-1.67 3.56,-2.52l1.36,-1c2.23,-1.64 4.43,-3.31 6.68,-4.93a1.8,1.8 0,0 1,0.8 -0.32l1.07,-0.82a101.66,101.66 0,0 1,9.13 -6.19c2,-1.17 4.13,-1.95 5.9,-3.27 0,1.91 0.1,3.8 0.12,5.66 0.08,12.9 -2.53,25.74 -2.9,38.64 -0.39,13.56 -0.82,27.26 0,40.82 0.1,1.73 0.2,3.46 0.29,5.19C531.32,289.46 528.35,292.09 525.56,293.85Z"
android:fillColor="#363436"/>
<path
android:pathData="M483.5,276.88a1.66,1.66 0,0 1,-2.06 -1.57c0,-5.24 0.63,-10.57 0.32,-15.82 -2.16,4.18 -3.78,8.64 -6.5,12.53a1.49,1.49 0,0 1,-2.55 0c-2.25,-3.86 -3.63,-8.87 -6.78,-12.21 -0.18,5.29 -0.64,10.55 -0.75,15.84a1.28,1.28 0,0 1,-0.94 1.23,24.09 24.09,0 0,1 -8.8,-0.26c5.19,10.39 20.83,14.09 30,6.54a17.75,17.75 0,0 0,4.74 -6.38A54.56,54.56 0,0 0,483.5 276.88Z"
android:fillColor="#363436"/>
<path
android:pathData="M480.06,246.6a16.76,16.76 0,0 0,-13.37 1.75c-9.09,4 -14.92,15.25 -12.48,25 0.12,0.48 0.27,0.94 0.42,1.4a44.54,44.54 0,0 0,8 -0.16c0,-5.91 0.48,-11.82 0.52,-17.73a1.44,1.44 0,0 1,2.15 -1.24c4.58,2.95 6.41,8.1 8.78,12.77 2.68,-4.65 4.33,-9.84 7.33,-14.32 0.67,-1 2.53,-1 2.79,0.37 1.21,6.36 0.69,12.73 0.53,19.14 2.2,-0.12 4.4,0 6.61,-0.12C494.25,263 490.59,249.59 480.06,246.6Z"
android:fillColor="#363436"/>
<path
android:pathData="M400.81,529.28c2.63,-0.26 5.27,-0.47 7.91,-0.65 2,-8.28 -0.34,-17 -0.14,-25.37q0.35,-15.08 0.75,-30.15c0.2,-8.14 0.77,-16.25 1.56,-24.35 0.3,-3.05 1.93,-12.65 -2.9,-13.35a1,1 0,0 0,-1.26 0.71c-1.19,4.7 -1.19,9.86 -2.06,14.68A204.6,204.6 0,0 0,402 474.62c-0.58,9 -0.73,18.15 -1.12,27.21a83.77,83.77 0,0 0,0.32 12.27c0.46,4.56 1,9.07 -0.29,13.55A3.89,3.89 0,0 0,400.81 529.28Z"
android:fillColor="#363436"/>
<path
android:pathData="M439.79,527.36a100.62,100.62 0,0 1,10.27 -0.38q3.75,-0.16 7.5,-0.4a3.47,3.47 0,0 1,1.29 0.15c1.79,-1.29 3.59,-2.56 5.43,-3.78a3.82,3.82 0,0 0,-1.6 -1.49c-8.43,-4.45 -19.86,-2.24 -28.73,-0.49 -5,1 -9.92,2.29 -14.92,3.22 -4.65,0.86 -9.71,0.85 -14.24,2.08a2.61,2.61 0,0 0,-1.8 2.81C415.22,528 427.51,527.75 439.79,527.36Z"
android:fillColor="#363436"/>
<path
android:pathData="M467.8,433.37c0.15,-4.3 -6.56,-4.3 -6.68,0 -0.49,16.78 -1.86,33.78 -1.39,50.56 0.19,6.87 0.89,13.71 1,20.57 0.08,3.45 0.05,6.91 -0.15,10.35 -0.15,2.84 -0.92,6.06 -0.36,8.86a1.23,1.23 0,0 0,2 0.54c4.26,-3.65 4.28,-12.26 4.4,-17.38 0.16,-7.28 -0.34,-14.56 -0.55,-21.83 -0.23,-7.88 0.39,-15.78 0.68,-23.66C467.17,452 467.47,442.71 467.8,433.37Z"
android:fillColor="#363436"/>
<path
android:pathData="M466.07,428.12c-4.81,-3.19 -11.23,-2.71 -16.73,-2.38 -5.84,0.34 -11.61,1.52 -17.46,1.77 -9.45,0.4 -19.37,-1.47 -28.55,1.48 -0.15,8.1 -1.12,16.15 -2.05,24.2 -1.24,10.66 -1.92,21.32 -2.47,32 -0.57,11.17 -0.88,22.25 -0.65,33.43 0,2 0.11,4.06 0.17,6.13a22.85,22.85 0,0 0,1.69 4.57c3,-0.3 6,-0.54 9,-0.74a5.27,5.27 0,0 0,-0.12 -1.09c-1.32,-6 -2.69,-11.7 -3.07,-17.93 -0.42,-7 -0.37,-14 -0.3,-21 0.19,-17.17 1.87,-34.24 2.94,-51.36 7.75,-1.63 16.06,-0.07 23.91,-0.75 5.56,-0.48 11.11,-1.5 16.6,-2.47s11.5,-0.9 16.65,-2.83A1.72,1.72 0,0 0,466.07 428.12Z"
android:fillColor="#363436"/>
<path
android:pathData="M462.17,447.54c0,9.46 -0.62,18.91 -0.92,28.37 -0.34,10.64 -0.16,21.3 0,31.94 0.06,5.49 0.15,11 0.22,16.46v0.57q4.26,-2.94 8.67,-5.65c-0.09,-3.79 -0.17,-7.59 -0.27,-11.38 -0.3,-11 -0.66,-22.1 -0.46,-33.14 0.18,-9.7 0.62,-19.39 0.07,-29.08A113.39,113.39 0,0 0,468 431.74c-0.56,-3 -1.21,-7.6 -3.13,-10.46a7.56,7.56 0,0 1,-1.89 0.65,1.91 1.91,0 0,1 -1.67,0.66 10.2,10.2 0,0 1,-1.24 0.11c-0.12,3.38 1.15,7.39 1.48,10.52A131.62,131.62 0,0 1,462.17 447.54Z"
android:fillColor="#363436"/>
<path
android:pathData="M467.62,518.35c-4.75,0.72 -9.53,1.33 -14.3,1.86 -9.31,1 -18.63,1.41 -27.9,2.75 -4.69,0.68 -9.42,1.63 -14.15,1.94 -2.4,0.16 -4.81,-0.07 -7.22,0a18.08,18.08 0,0 0,-5.69 1.08c0,1.17 0.05,2.36 0.07,3.54 13.73,-1.47 27.55,-1.74 41.36,-2.18a100.62,100.62 0,0 1,10.27 -0.38q3.75,-0.16 7.5,-0.4a4,4 0,0 1,1 0.08l0.38,0c4.57,-3.3 9.31,-6.33 14.14,-9.23C471.25,517.56 469.34,518.09 467.62,518.35Z"
android:fillColor="#363436"/>
<path
android:pathData="M469.13,426c2.59,-1.76 5.09,-3.64 7.6,-5.52 -4.77,0.33 -9.55,1.4 -14.35,1.9a2.09,2.09 0,0 1,-1.12 0.21,7.57 7.57,0 0,1 -1.34,0.11l-0.33,-0.07 -0.09,0c-6.19,0.29 -12.4,0.21 -18.6,0.24s-12.36,0.07 -18.51,0.65c-5.53,0.53 -12.54,1.1 -17.22,4.33a2.07,2.07 0,0 0,1 3.82c3,0.07 6,-0.71 8.94,-1.1 3.26,-0.43 6.55,-0.65 9.84,-0.81 6.19,-0.29 12.39,-0.15 18.59,0s12.45,0.2 18.67,-0.15c1.93,-0.11 4,-0.21 6,-0.38A2.44,2.44 0,0 1,469.13 426Z"
android:fillColor="#363436"/>
<path
android:pathData="M498.51,495.71c-4.3,1.3 -8.43,5.32 -12.24,7.72 -4.5,2.83 -9,5.59 -13.5,8.5 -6.17,4 -13.14,8.73 -17.84,14.79 0.88,-0.05 1.76,-0.08 2.63,-0.14a3.56,3.56 0,0 1,1.26 0.14c12.94,-9.36 27.27,-16.56 41,-24.67a11.2,11.2 0,0 0,1.85 -2.2A2.84,2.84 0,0 0,498.51 495.71Z"
android:fillColor="#363436"/>
<path
android:pathData="M497.83,400c-3.59,-1 -6.75,1.14 -9.72,3a97.52,97.52 0,0 0,-9.28 6.66A120.47,120.47 0,0 0,462.18 425a2.85,2.85 0,0 0,-0.73 2.76l0,-0.1a1.55,1.55 0,0 0,1.47 1.93l-0.19,-0.14a2.84,2.84 0,0 0,2.86 0c0.82,-0.52 1.62,-1.06 2.42,-1.62a2.41,2.41 0,0 1,1.1 -1.84c3.95,-2.69 7.71,-5.66 11.59,-8.46a1.83,1.83 0,0 1,0.81 -0.32l1.07,-0.82a100.1,100.1 0,0 1,9.12 -6.19c2.88,-1.7 6.17,-2.56 8,-5.49A3.22,3.22 0,0 0,497.83 400Z"
android:fillColor="#363436"/>
<path
android:pathData="M435.59,399.68c-2.54,2 -5.11,3.89 -7.76,5.71 -8.43,7.06 -16.53,14.53 -24.49,22.13 0,2 -0.07,4 -0.18,6a2.08,2.08 0,0 0,0.87 -0.74c5.1,-7.32 14.5,-11.43 21.32,-17 6.19,-5.06 12.1,-9.63 19.51,-12.69a3.83,3.83 0,0 0,2.22 -3.66Q441.34,399.64 435.59,399.68Z"
android:fillColor="#363436"/>
<path
android:pathData="M495.38,504.65q3.86,-2.22 7.65,-4.51c-0.08,-2 -0.19,-3.95 -0.32,-5.93 -0.37,-5.7 -0.51,-11.39 -0.55,-17.09 0,-0.4 -0.07,-0.8 -0.1,-1.2 -0.61,-8.89 -0.16,-17.78 0.17,-26.67 -0.06,-4.66 0,-9.32 0,-14 0,-10.07 1.15,-20.37 1.09,-30.55 0,-0.14 0,-0.29 0,-0.43a35.79,35.79 0,0 1,-1.2 -7.29l-4,0.08c-0.78,5 -0.33,10.41 -0.3,15.51 0.08,12.9 -2.53,25.74 -2.9,38.64 -0.38,13.56 -0.82,27.27 0,40.82C495.06,496.26 495.32,500.44 495.38,504.65Z"
android:fillColor="#363436"/>
<path
android:pathData="M435.6,399.68c-2.54,2 -5.12,3.88 -7.77,5.71l-0.74,0.63a80.53,80.53 0,0 1,8.72 -1.14c12.7,-0.64 25.51,-0.95 38.23,-1.19 9.66,-0.18 19.32,-0.19 29,-0.28a35.86,35.86 0,0 1,-1 -6.4C479.89,397.38 457.76,399.54 435.6,399.68Z"
android:fillColor="#363436"/>
<path
android:pathData="M452.31,482a26.26,26.26 0,0 0,0.68 -5,16.61 16.61,0 0,0 -0.11,-3.85c-0.75,-7.69 -4.75,-14.85 -12.11,-16.94a16.78,16.78 0,0 0,-13.36 1.75c-6.83,3 -11.81,10.07 -12.85,17.53A11.51,11.51 0,0 0,414 478c-0.38,5 1.21,8.58 3.87,11 6.36,8.2 19.95,10.58 28.21,3.75a16.79,16.79 0,0 0,3.95 -4.87A7.64,7.64 0,0 0,452.31 482ZM441.69,481.4a3.35,3.35 0,0 1,-0.54 -0.08,3.46 3.46,0 0,1 -2.38,-2.37 2.25,2.25 0,0 1,-0.21 -0.41l-0.06,-0.18a1.74,1.74 0,0 1,-0.05 -0.22,2 2,0 0,1 -0.06,-0.6h0a2.09,2.09 0,0 1,0.13 -0.66,16.35 16.35,0 0,1 0.76,-2.27 1.89,1.89 0,0 1,0.33 -0.5,3.29 3.29,0 0,1 0.92,-1 3.39,3.39 0,0 1,2 -0.64h0a3.22,3.22 0,0 1,0.81 0.11,4.51 4.51,0 0,1 1.77,1.05l0,0a1.31,1.31 0,0 1,0.12 0.11h0a2.79,2.79 0,0 1,0.38 0.39h0a3.23,3.23 0,0 1,0.37 0.54c0,0.05 0.05,0.09 0.07,0.13a3.13,3.13 0,0 1,0.24 0.6,1.21 1.21,0 0,1 0.05,0.18c0,0.07 0,0.15 0,0.22l0,0.32a3.26,3.26 0,0 1,-0.12 1.16,2.61 2.61,0 0,1 0,0.4 2.78,2.78 0,0 1,-0.11 0.5,2.32 2.32,0 0,1 -0.13,0.37l0,0.09a3.35,3.35 0,0 1,-0.52 0.82l-0.15,0.18a3.09,3.09 0,0 1,-0.73 0.53,3.42 3.42,0 0,1 -2.44,1.2h0a4.68,4.68 0,0 1,-0.53 0ZM428.43,481.73 L428.32,481.81a3.3,3.3 0,0 1,-0.32 0.18l-0.1,0.05 -0.37,0.14 -0.07,0a3.34,3.34 0,0 1,-0.43 0.1h0a3.91,3.91 0,0 1,-0.48 0.05L426,482.33a3.79,3.79 0,0 1,-2.6 -1.29h0a4.39,4.39 0,0 1,-0.34 -0.5c-0.1,-0.18 -0.22,-0.35 -0.33,-0.53a3.78,3.78 0,0 1,-0.92 -2.42,5.46 5.46,0 0,1 0.7,-2.31c0.07,-0.18 0.15,-0.35 0.23,-0.52l0.16,-0.29 0.12,-0.18a2,2 0,0 1,0.24 -0.33l0.08,-0.09a3.22,3.22 0,0 1,0.32 -0.32h0a2.39,2.39 0,0 1,0.45 -0.31,4.21 4.21,0 0,1 1.8,-0.49 2.78,2.78 0,0 1,0.58 0h0a3.32,3.32 0,0 1,1.42 0.6l0.07,0.05a4.1,4.1 0,0 1,0.53 0.49l0.07,0.08a5.13,5.13 0,0 1,0.44 0.6,3 3,0 0,1 0.72,0.85c0.12,0.29 0.25,0.58 0.37,0.88a5.81,5.81 0,0 1,-0.05 2.59,7.15 7.15,0 0,1 -0.62,1.61 4.92,4.92 0,0 1,-0.28 0.45l-0.1,0.11a3.08,3.08 0,0 1,-0.24 0.27l-0.12,0.1A1.44,1.44 0,0 1,428.43 481.73Z"
android:fillColor="#f0006b"/>
<path
android:pathData="M347.12,437c-0.37,-5.69 -0.5,-11.38 -0.55,-17.08l-0.09,-1.2c-0.62,-8.89 -0.17,-17.78 0.16,-26.67 -0.05,-4.66 0,-9.32 0,-14 0,-10.07 1.15,-20.37 1.09,-30.55l0,-0.43c-0.13,-0.45 -0.23,-0.91 -0.34,-1.36l-0.18,-0.82c-0.06,-0.28 -0.11,-0.56 -0.16,-0.85s-0.11,-0.61 -0.15,-0.91 -0.06,-0.42 -0.09,-0.62c-0.12,-0.91 -0.21,-1.82 -0.28,-2.74h0l-4,0.09v0c-17.55,0.46 -35.09,1.86 -52.63,2.38l-2.51,0.06c-2.43,0.06 -4.85,0.11 -7.28,0.12h0q-3.81,3 -7.76,5.72l-0.74,0.63h0c-8.16,6.88 -16,14.13 -23.75,21.5 0,0.72 0,1.44 0,2.16s0,1.15 -0.05,1.73l-0.06,1.3c-0.32,6.84 -1.13,13.66 -1.92,20.48 -1.23,10.65 -1.91,21.32 -2.46,32 -0.57,11.17 -0.89,22.25 -0.65,33.43 0,2 0.1,4.06 0.16,6.13 0.1,0.37 0.21,0.74 0.32,1.11l-0.29,0.11c0,1.17 0.06,2.36 0.07,3.54 13.74,-1.47 27.55,-1.74 41.36,-2.18a100.72,100.72 0,0 1,10.27 -0.38c1.63,-0.07 3.25,-0.17 4.87,-0.26h0l2.64,-0.14a5.56,5.56 0,0 1,0.58 0l0.32,0.06 0.27,0.05 0.12,0c0.57,-0.42 1.15,-0.82 1.72,-1.23s1.33,-0.94 2,-1.39 1.53,-1 2.31,-1.56l2.32,-1.5c0.81,-0.52 1.62,-1 2.44,-1.54 8.41,-5.22 17.13,-9.94 25.72,-14.87h0l1,-0.62c1.14,-0.65 2.29,-1.31 3.42,-2l0.06,-0.07c1.05,-0.61 2.1,-1.21 3.14,-1.84C347.36,440.91 347.25,438.94 347.12,437ZM286,347.37c10.81,-0.46 21.68,-0.73 32.49,-0.93q6.62,-0.12 13.25,-0.16a101.68,101.68 0,0 0,-8.46 6.13,134.82 134.82,0 0,0 -13.72,12.15c-0.1,-0.18 -0.19,-0.36 -0.3,-0.53a7.42,7.42 0,0 1,-1.89 0.65,1.91 1.91,0 0,1 -0.61,0.47 1.6,1.6 0,0 1,-0.33 0.11l-0.15,0.05a2.62,2.62 0,0 1,-0.57 0l-0.5,0.06a4.68,4.68 0,0 1,-0.74 0.05h-0.11l-0.32,-0.08 -0.09,0c-6.2,0.29 -12.41,0.21 -18.61,0.24s-12.36,0.07 -18.5,0.65a76,76 0,0 0,-10.13 1.41c4.34,-3.15 9.14,-5.89 13.09,-9.11C275,354.26 280.05,350.34 286,347.37ZM278.39,463.72c-3.4,0.68 -6.77,1.49 -10.16,2.24 -4.15,0.64 -8.34,1.41 -12.52,1.69 -0.64,0 -1.29,0.06 -1.94,0.06 0.74,-7.16 -0.92,-14.52 -0.75,-21.71q0.36,-15.06 0.75,-30.14c0.21,-8.14 0.78,-16.25 1.57,-24.35 0.23,-2.39 1.27,-8.81 -0.62,-11.8 7.24,-1.09 14.88,0.19 22.14,-0.44 5.55,-0.48 11.11,-1.5 16.6,-2.47 3.93,-0.7 8.23,-0.86 12.27,-1.65a3.64,3.64 0,0 0,-0.17 1c-0.48,16.78 -1.85,33.78 -1.38,50.56 0.19,6.87 0.88,13.71 1,20.57 0.08,3.44 0,6.91 -0.15,10.34 -0.08,1.46 -0.32,3 -0.46,4.55l-2.31,0.27C294.62,460.55 285.63,462.28 278.36,463.72ZM330.72,446.18c-4.5,2.83 -9.05,5.59 -13.5,8.5l-2.81,1.85c0,-2 -0.08,-3.95 -0.14,-5.93 -0.3,-11 -0.66,-22.1 -0.45,-33.14 0.18,-9.7 0.62,-19.39 0.07,-29.08a113.41,113.41 0,0 0,-1.5 -13.89c-0.14,-0.76 -0.28,-1.61 -0.45,-2.51 0.26,0 0.53,0 0.79,-0.06a2.5,2.5 0,0 1,-0.26 -1.35,3.58 3.58,0 0,1 0.09,-0.45l0,-0.08a1.8,1.8 0,0 1,0.16 -0.38l0.06,-0.11a2.43,2.43 0,0 1,0.24 -0.32,0.48 0.48,0 0,1 0.09,-0.11 2.61,2.61 0,0 1,0.43 -0.37c1.2,-0.82 2.38,-1.67 3.55,-2.52l1.37,-1c2.23,-1.64 4.43,-3.31 6.68,-4.93a1.75,1.75 0,0 1,0.8 -0.32l1.07,-0.82a98.88,98.88 0,0 1,9.13 -6.19c2,-1.17 4.13,-1.95 5.89,-3.27 0.05,1.91 0.11,3.8 0.12,5.66 0.09,12.9 -2.52,25.74 -2.89,38.64 -0.39,13.56 -0.82,27.26 0,40.82 0.1,1.73 0.2,3.46 0.29,5.19C336.45,441.79 333.48,444.42 330.69,446.18Z"
android:fillColor="#363436"/>
<path
android:pathData="M288.63,429.21a1.65,1.65 0,0 1,-2.06 -1.57c0,-5.24 0.63,-10.57 0.31,-15.82 -2.15,4.18 -3.77,8.65 -6.49,12.53a1.49,1.49 0,0 1,-2.55 0c-2.25,-3.86 -3.64,-8.87 -6.78,-12.2 -0.18,5.28 -0.64,10.54 -0.75,15.83a1.28,1.28 0,0 1,-0.94 1.23,24.09 24.09,0 0,1 -8.8,-0.26c5.19,10.39 20.83,14.09 30,6.54a17.75,17.75 0,0 0,4.74 -6.38A56.66,56.66 0,0 0,288.63 429.21Z"
android:fillColor="#363436"/>
<path
android:pathData="M285.19,398.93a16.76,16.76 0,0 0,-13.37 1.75c-9.09,4 -14.92,15.25 -12.48,25 0.12,0.48 0.26,0.94 0.42,1.4a44.54,44.54 0,0 0,8 -0.16c0,-5.91 0.48,-11.81 0.51,-17.73a1.44,1.44 0,0 1,2.15 -1.23c4.59,2.94 6.42,8.09 8.79,12.77 2.68,-4.66 4.32,-9.85 7.33,-14.33 0.67,-1 2.53,-1 2.79,0.37 1.2,6.36 0.69,12.73 0.53,19.14 2.2,-0.12 4.4,0 6.61,-0.12C299.38,415.31 295.72,401.92 285.19,398.93Z"
android:fillColor="#363436"/>
<path
android:pathData="M336.91,251.19c-0.37,-5.69 -0.51,-11.38 -0.55,-17.08 0,-0.4 -0.07,-0.8 -0.09,-1.2 -0.62,-8.89 -0.17,-17.78 0.16,-26.67 -0.05,-4.66 0,-9.32 0,-14 0,-10.07 1.15,-20.37 1.09,-30.55l0,-0.43c-0.13,-0.45 -0.23,-0.9 -0.34,-1.36 -0.06,-0.27 -0.13,-0.55 -0.18,-0.82s-0.11,-0.56 -0.16,-0.84 -0.11,-0.62 -0.16,-0.92 -0.05,-0.41 -0.08,-0.62c-0.12,-0.91 -0.22,-1.82 -0.28,-2.73h0c-1.34,0 -2.68,0 -4,0.08v0c-17.55,0.46 -35.09,1.86 -52.63,2.38l-2.52,0.06c-2.42,0.06 -4.85,0.11 -7.27,0.12h0q-3.81,3 -7.76,5.72l-0.75,0.63h0c-8.17,6.88 -16,14.13 -23.75,21.5 0,0.72 0,1.44 0,2.16s0,1.15 -0.06,1.73c0,0.43 0,0.87 0,1.3 -0.32,6.84 -1.13,13.67 -1.92,20.48 -1.23,10.66 -1.92,21.32 -2.46,32 -0.57,11.17 -0.89,22.25 -0.66,33.43 0,2 0.11,4.06 0.17,6.13 0.1,0.37 0.2,0.74 0.32,1.11l-0.29,0.11c0,1.17 0.05,2.36 0.07,3.54 13.74,-1.47 27.55,-1.74 41.36,-2.18a100.62,100.62 0,0 1,10.27 -0.38c1.63,-0.07 3.25,-0.17 4.87,-0.26h0c0.88,0 1.76,-0.08 2.64,-0.14a3.54,3.54 0,0 1,0.57 0l0.33,0.05 0.27,0.05 0.11,0 1.73,-1.23 2,-1.39c0.77,-0.53 1.54,-1 2.32,-1.55l2.32,-1.51c0.81,-0.52 1.62,-1 2.44,-1.55 8.41,-5.21 17.13,-9.93 25.72,-14.86h0l1.05,-0.62c1.14,-0.66 2.28,-1.31 3.41,-2l0.06,-0.06c1,-0.62 2.1,-1.22 3.14,-1.85C337.15,255.15 337,253.18 336.91,251.19ZM275.76,161.62c10.81,-0.47 21.68,-0.74 32.49,-0.94q6.62,-0.12 13.25,-0.16a101.68,101.68 0,0 0,-8.46 6.13,135 135,0 0,0 -13.72,12.15c-0.1,-0.18 -0.19,-0.36 -0.3,-0.53a7.42,7.42 0,0 1,-1.89 0.65,1.91 1.91,0 0,1 -0.61,0.47 1.6,1.6 0,0 1,-0.33 0.11l-0.15,0.05a2.66,2.66 0,0 1,-0.57 0l-0.5,0.06a4.76,4.76 0,0 1,-0.74 0.05h-0.11l-0.32,-0.08 -0.09,0c-6.2,0.29 -12.41,0.21 -18.61,0.24s-12.36,0.07 -18.51,0.65a75.81,75.81 0,0 0,-10.12 1.41c4.33,-3.15 9.14,-5.88 13.08,-9.11C264.79,168.5 269.84,164.58 275.76,161.62ZM268.15,278c-3.4,0.68 -6.78,1.49 -10.16,2.24 -4.16,0.64 -8.34,1.41 -12.52,1.69 -0.64,0 -1.29,0.06 -1.94,0.06 0.74,-7.16 -0.92,-14.52 -0.75,-21.71q0.36,-15.06 0.75,-30.14c0.2,-8.14 0.77,-16.25 1.57,-24.35 0.23,-2.39 1.27,-8.81 -0.62,-11.8 7.24,-1.09 14.88,0.19 22.13,-0.44 5.56,-0.48 11.12,-1.5 16.6,-2.47 3.94,-0.7 8.24,-0.86 12.28,-1.65a3.64,3.64 0,0 0,-0.17 1c-0.48,16.78 -1.85,33.78 -1.38,50.56 0.19,6.87 0.88,13.71 1,20.57 0.08,3.45 0,6.91 -0.15,10.34 -0.08,1.46 -0.32,3 -0.46,4.55l-2.31,0.28C284.4,274.79 275.42,276.52 268.15,278ZM320.48,260.46c-4.5,2.83 -9.05,5.59 -13.5,8.5 -0.92,0.6 -1.86,1.22 -2.81,1.86q-0.06,-3 -0.14,-5.94c-0.3,-11 -0.66,-22.1 -0.45,-33.14 0.18,-9.7 0.61,-19.39 0.06,-29.08a111.47,111.47 0,0 0,-1.49 -13.89c-0.14,-0.76 -0.28,-1.61 -0.45,-2.51l0.79,-0.05a2.55,2.55 0,0 1,-0.26 -1.36,3.58 3.58,0 0,1 0.09,-0.45 0.31,0.31 0,0 0,0 -0.08,3.17 3.17,0 0,1 0.17,-0.38s0,-0.07 0.06,-0.11a2.35,2.35 0,0 1,0.23 -0.32l0.09,-0.11a2.69,2.69 0,0 1,0.44 -0.37c1.2,-0.82 2.38,-1.67 3.55,-2.52l1.36,-1c2.23,-1.65 4.44,-3.32 6.69,-4.94a1.75,1.75 0,0 1,0.8 -0.32l1.07,-0.82a98.88,98.88 0,0 1,9.13 -6.19c2,-1.16 4.13,-1.95 5.89,-3.27 0,1.91 0.11,3.8 0.12,5.66 0.08,12.9 -2.52,25.74 -2.89,38.64 -0.39,13.56 -0.83,27.27 0,40.82 0.1,1.73 0.21,3.46 0.3,5.19C326.23,256 323.27,258.66 320.48,260.42Z"
android:fillColor="#363436"/>
<path
android:pathData="M278.41,243.45a1.65,1.65 0,0 1,-2.05 -1.57c0,-5.24 0.63,-10.57 0.31,-15.82 -2.15,4.18 -3.77,8.65 -6.49,12.53a1.49,1.49 0,0 1,-2.55 0c-2.25,-3.86 -3.64,-8.87 -6.78,-12.2 -0.18,5.28 -0.64,10.54 -0.75,15.83a1.29,1.29 0,0 1,-0.94 1.23,24.31 24.31,0 0,1 -8.8,-0.25c5.19,10.38 20.83,14.08 30,6.53a17.61,17.61 0,0 0,4.73 -6.38A56.72,56.72 0,0 0,278.41 243.45Z"
android:fillColor="#363436"/>
<path
android:pathData="M275,213.17a16.8,16.8 0,0 0,-13.37 1.75c-9.1,4 -14.93,15.25 -12.49,25 0.12,0.48 0.27,1 0.43,1.4a44.41,44.41 0,0 0,8 -0.16c0,-5.91 0.49,-11.81 0.52,-17.73a1.44,1.44 0,0 1,2.15 -1.23c4.59,2.94 6.42,8.09 8.79,12.77 2.68,-4.66 4.32,-9.85 7.33,-14.33 0.67,-1 2.52,-1 2.79,0.37 1.2,6.36 0.69,12.73 0.52,19.14 2.21,-0.11 4.41,0 6.62,-0.12C289.17,229.55 285.5,216.16 275,213.17Z"
android:fillColor="#363436"/>
<path
android:pathData="M737.67,350.63c-0.37,-5.7 -0.51,-11.39 -0.55,-17.09 0,-0.4 -0.07,-0.8 -0.1,-1.2 -0.61,-8.89 -0.16,-17.78 0.17,-26.67 -0.06,-4.66 0,-9.32 0,-14 0,-10.07 1.15,-20.37 1.09,-30.55 0,-0.14 0,-0.29 0,-0.43 -0.12,-0.45 -0.23,-0.91 -0.33,-1.36 -0.07,-0.27 -0.13,-0.55 -0.19,-0.82l-0.15,-0.84c-0.06,-0.31 -0.11,-0.62 -0.16,-0.92s-0.06,-0.41 -0.08,-0.61c-0.12,-0.91 -0.22,-1.83 -0.28,-2.74h0l-4,0.08v0c-17.56,0.46 -35.09,1.87 -52.64,2.38l-2.51,0.07c-2.42,0 -4.85,0.1 -7.28,0.12h0c-2.53,2 -5.11,3.89 -7.75,5.71l-0.75,0.63h0c-8.17,6.88 -16,14.13 -23.76,21.5 0,0.72 0,1.44 0,2.16s0,1.16 0,1.73 0,0.87 -0.05,1.3c-0.32,6.84 -1.13,13.67 -1.92,20.48 -1.24,10.66 -1.92,21.32 -2.47,32 -0.57,11.17 -0.88,22.25 -0.65,33.43 0,2 0.11,4.06 0.17,6.13 0.09,0.37 0.2,0.74 0.31,1.11l-0.28,0.11c0,1.17 0,2.36 0.07,3.54 13.73,-1.47 27.55,-1.74 41.36,-2.18A100.62,100.62 0,0 1,685 383.4c1.62,-0.07 3.25,-0.17 4.87,-0.26h0c0.88,-0.05 1.76,-0.08 2.63,-0.14a3.62,3.62 0,0 1,0.58 0l0.33,0.05 0.27,0.06 0.11,0 1.72,-1.22 2,-1.4 2.31,-1.55c0.77,-0.51 1.55,-1 2.33,-1.51s1.62,-1 2.44,-1.54c8.4,-5.22 17.13,-9.94 25.72,-14.87h0l1,-0.62c1.14,-0.65 2.28,-1.31 3.41,-2l0.07,-0.06c1,-0.62 2.1,-1.22 3.13,-1.85C737.91,354.58 737.8,352.61 737.67,350.63ZM676.51,261.05c10.82,-0.47 21.69,-0.73 32.49,-0.94q6.63,-0.12 13.25,-0.16a101.68,101.68 0,0 0,-8.46 6.13,135.93 135.93,0 0,0 -13.71,12.15c-0.1,-0.18 -0.19,-0.36 -0.3,-0.53a7.56,7.56 0,0 1,-1.89 0.65,1.78 1.78,0 0,1 -0.61,0.47 1.83,1.83 0,0 1,-0.33 0.11l-0.15,0.05a2.19,2.19 0,0 1,-0.58 0l-0.49,0.06a4.81,4.81 0,0 1,-0.75 0.05h-0.1l-0.33,-0.07 -0.09,0c-6.19,0.29 -12.4,0.21 -18.6,0.24s-12.36,0.07 -18.51,0.65a76,76 0,0 0,-10.13 1.41c4.34,-3.15 9.15,-5.88 13.09,-9.11C665.55,267.93 670.6,264 676.51,261.05ZM668.91,377.39c-3.41,0.68 -6.78,1.49 -10.17,2.24 -4.15,0.64 -8.33,1.41 -12.51,1.69 -0.65,0.05 -1.3,0.06 -1.94,0.06 0.73,-7.16 -0.92,-14.52 -0.75,-21.7q0.35,-15.07 0.75,-30.15c0.2,-8.14 0.77,-16.25 1.57,-24.35 0.23,-2.39 1.27,-8.81 -0.62,-11.8 7.24,-1.09 14.88,0.19 22.13,-0.44 5.56,-0.48 11.11,-1.5 16.6,-2.47 3.94,-0.69 8.24,-0.86 12.28,-1.64a3.56,3.56 0,0 0,-0.17 1c-0.49,16.78 -1.86,33.78 -1.39,50.56 0.19,6.87 0.89,13.71 1,20.57 0.08,3.45 0,6.91 -0.14,10.35 -0.09,1.45 -0.32,3 -0.46,4.54l-2.32,0.28C685.16,374.22 676.18,376 668.91,377.39ZM721.23,359.85c-4.5,2.83 -9,5.59 -13.5,8.5 -0.92,0.6 -1.86,1.22 -2.8,1.86 0,-2 -0.09,-4 -0.14,-5.94 -0.3,-11 -0.66,-22.1 -0.46,-33.14 0.18,-9.7 0.62,-19.39 0.07,-29.08a113.39,113.39 0,0 0,-1.49 -13.89c-0.14,-0.76 -0.29,-1.61 -0.46,-2.51l0.8,0a2.55,2.55 0,0 1,-0.26 -1.36,1.8 1.8,0 0,1 0.09,-0.45 0.24,0.24 0,0 1,0 -0.08,3.08 3.08,0 0,1 0.16,-0.38l0.06,-0.11a2.43,2.43 0,0 1,0.24 -0.32l0.09,-0.11a2.69,2.69 0,0 1,0.44 -0.37q1.8,-1.23 3.55,-2.52l1.37,-1c2.23,-1.65 4.43,-3.31 6.67,-4.93a1.83,1.83 0,0 1,0.81 -0.32l1.07,-0.82a98.88,98.88 0,0 1,9.13 -6.19c2,-1.16 4.12,-1.95 5.89,-3.26 0,1.9 0.11,3.79 0.12,5.65 0.08,12.9 -2.53,25.74 -2.9,38.64 -0.38,13.56 -0.82,27.27 0,40.82l0.3,5.19C727,355.46 724,358.09 721.23,359.85Z"
android:fillColor="#363436"/>
<path
android:pathData="M679.17,342.88a1.66,1.66 0,0 1,-2.06 -1.57c0,-5.24 0.64,-10.57 0.32,-15.82 -2.15,4.19 -3.78,8.65 -6.49,12.53a1.49,1.49 0,0 1,-2.55 0c-2.25,-3.86 -3.64,-8.87 -6.78,-12.2 -0.19,5.28 -0.64,10.54 -0.75,15.83a1.29,1.29 0,0 1,-0.94 1.23,24.36 24.36,0 0,1 -8.81,-0.25c5.2,10.38 20.83,14.08 30,6.53a17.73,17.73 0,0 0,4.73 -6.38A56.66,56.66 0,0 0,679.17 342.88Z"
android:fillColor="#363436"/>
<path
android:pathData="M675.73,312.6a16.78,16.78 0,0 0,-13.36 1.75c-9.1,4 -14.93,15.25 -12.49,25 0.12,0.47 0.27,0.94 0.43,1.39a43.53,43.53 0,0 0,8 -0.16c0,-5.91 0.49,-11.81 0.52,-17.73a1.43,1.43 0,0 1,2.15 -1.23c4.58,2.94 6.41,8.09 8.79,12.77 2.68,-4.65 4.32,-9.85 7.33,-14.32 0.67,-1 2.52,-1 2.78,0.36 1.21,6.36 0.7,12.73 0.53,19.14 2.2,-0.11 4.4,0 6.62,-0.11C689.92,329 686.26,315.59 675.73,312.6Z"
android:fillColor="#363436"/>
<path
android:pathData="M178.18,247.41c-0.37,-5.69 -0.51,-11.39 -0.55,-17.08 0,-0.41 -0.07,-0.81 -0.09,-1.21 -0.62,-8.88 -0.17,-17.78 0.16,-26.67 0,-4.65 0,-9.31 0,-14 0,-10.07 1.15,-20.37 1.09,-30.55l0,-0.44c-0.13,-0.45 -0.23,-0.9 -0.34,-1.35 -0.06,-0.28 -0.13,-0.55 -0.18,-0.83s-0.11,-0.56 -0.16,-0.84 -0.11,-0.61 -0.16,-0.92 0,-0.41 -0.08,-0.61c-0.12,-0.91 -0.22,-1.82 -0.28,-2.74h0l-4,0.08v0c-17.56,0.45 -35.09,1.86 -52.64,2.37l-2.5,0.07c-2.43,0.06 -4.86,0.11 -7.28,0.12h0c-2.54,2 -5.12,3.89 -7.76,5.72l-0.75,0.63h0c-8.17,6.87 -16,14.12 -23.75,21.5 0,0.72 0,1.44 0,2.16s0,1.15 -0.06,1.73c0,0.43 0,0.86 0,1.3 -0.32,6.84 -1.13,13.66 -1.92,20.48 -1.23,10.65 -1.92,21.32 -2.46,32 -0.57,11.16 -0.89,22.25 -0.66,33.43q0.08,3 0.17,6.13c0.1,0.37 0.2,0.74 0.32,1.1l-0.29,0.11c0,1.18 0,2.36 0.07,3.55 13.74,-1.47 27.55,-1.75 41.36,-2.18a97.83,97.83 0,0 1,10.27 -0.38l4.87,-0.26h0l2.64,-0.14a2.69,2.69 0,0 1,0.57 0l0.33,0.05 0.27,0.06 0.11,0 1.73,-1.22 2,-1.4c0.77,-0.52 1.54,-1 2.32,-1.55s1.54,-1 2.32,-1.5 1.62,-1 2.44,-1.55c8.4,-5.22 17.13,-9.94 25.72,-14.87h0l1,-0.61 3.42,-2 0.06,-0.07c1,-0.62 2.1,-1.22 3.14,-1.85Q178.38,250.39 178.18,247.41ZM117,157.83c10.81,-0.46 21.68,-0.73 32.49,-0.93 4.41,-0.09 8.83,-0.13 13.25,-0.17a104,104 0,0 0,-8.46 6.13A136.18,136.18 0,0 0,140.59 175c-0.1,-0.17 -0.19,-0.36 -0.3,-0.52a7.42,7.42 0,0 1,-1.89 0.65,1.76 1.76,0 0,1 -0.61,0.46 1.61,1.61 0,0 1,-0.33 0.12l-0.15,0a2.64,2.64 0,0 1,-0.57 0l-0.5,0a3.82,3.82 0,0 1,-0.74 0.06h-0.11a2.55,2.55 0,0 1,-0.32 -0.07,0.24 0.24,0 0,1 -0.09,0c-6.2,0.29 -12.41,0.22 -18.61,0.25s-12.36,0.06 -18.51,0.65a74.21,74.21 0,0 0,-10.12 1.41c4.33,-3.15 9.14,-5.89 13.08,-9.11C106.06,164.71 111.11,160.79 117,157.83ZM109.39,274.18c-3.4,0.67 -6.78,1.49 -10.16,2.23 -4.16,0.65 -8.34,1.42 -12.52,1.7 -0.65,0 -1.29,0.05 -1.94,0.05 0.74,-7.15 -0.92,-14.52 -0.75,-21.7q0.36,-15.07 0.75,-30.14c0.2,-8.15 0.77,-16.25 1.57,-24.36 0.23,-2.39 1.27,-8.8 -0.62,-11.8 7.24,-1.09 14.88,0.2 22.13,-0.43 5.56,-0.48 11.12,-1.51 16.6,-2.48 3.94,-0.69 8.24,-0.86 12.28,-1.64a3.64,3.64 0,0 0,-0.17 1c-0.48,16.79 -1.85,33.79 -1.38,50.57 0.19,6.86 0.88,13.7 1,20.57 0.08,3.44 0,6.9 -0.15,10.34 -0.08,1.45 -0.32,3 -0.46,4.54l-2.31,0.28C125.67,271 116.69,272.74 109.42,274.18ZM161.72,256.63c-4.5,2.84 -9.05,5.6 -13.5,8.51L145.44,267q-0.06,-3 -0.14,-5.93c-0.3,-11 -0.66,-22.1 -0.45,-33.15 0.18,-9.7 0.61,-19.38 0.06,-29.08A111.51,111.51 0,0 0,143.42 185c-0.14,-0.76 -0.28,-1.61 -0.45,-2.51l0.79,-0.06a2.5,2.5 0,0 1,-0.26 -1.35,3.73 3.73,0 0,1 0.09,-0.46 0.19,0.19 0,0 0,0 -0.08c0,-0.12 0.1,-0.25 0.16,-0.37a0.41,0.41 0,0 1,0.07 -0.11,1.72 1.72,0 0,1 0.23,-0.32l0.1,-0.12a2.67,2.67 0,0 1,0.43 -0.37c1.2,-0.81 2.38,-1.66 3.55,-2.52l1.37,-1c2.22,-1.65 4.43,-3.32 6.68,-4.93a1.65,1.65 0,0 1,0.8 -0.32l1.07,-0.82a98.88,98.88 0,0 1,9.13 -6.19c2,-1.17 4.13,-2 5.89,-3.27 0,1.9 0.11,3.8 0.12,5.66 0.08,12.89 -2.52,25.74 -2.89,38.63 -0.39,13.57 -0.83,27.27 0,40.82 0.1,1.74 0.21,3.47 0.3,5.2C167.5,252.25 164.54,254.87 161.75,256.63Z"
android:fillColor="#363436"/>
<path
android:pathData="M119.68,239.66a1.64,1.64 0,0 1,-2.05 -1.56c0,-5.24 0.63,-10.57 0.31,-15.82 -2.15,4.18 -3.77,8.64 -6.49,12.53a1.5,1.5 0,0 1,-2.55 0c-2.25,-3.87 -3.64,-8.88 -6.78,-12.21 -0.18,5.28 -0.64,10.55 -0.75,15.83a1.3,1.3 0,0 1,-0.94 1.24,24.08 24.08,0 0,1 -8.8,-0.26c5.19,10.38 20.83,14.09 30,6.54a17.56,17.56 0,0 0,4.73 -6.39A59,59 0,0 0,119.68 239.66Z"
android:fillColor="#363436"/>
<path
android:pathData="M116.25,209.39a16.8,16.8 0,0 0,-13.37 1.74c-9.1,4 -14.93,15.26 -12.49,25 0.12,0.48 0.27,0.94 0.43,1.4a44.41,44.41 0,0 0,8 -0.16c0,-5.92 0.49,-11.82 0.52,-17.73a1.44,1.44 0,0 1,2.15 -1.24c4.59,2.94 6.42,8.1 8.79,12.77 2.68,-4.65 4.32,-9.84 7.33,-14.32 0.67,-1 2.52,-1 2.79,0.36 1.2,6.37 0.69,12.73 0.52,19.15 2.21,-0.12 4.41,0 6.62,-0.12C130.44,225.76 126.77,212.37 116.25,209.39Z"
android:fillColor="#363436"/>
<path
android:pathData="M487.75,128.84c-0.37,-5.69 -0.51,-11.39 -0.56,-17.08l-0.09,-1.2c-0.61,-8.89 -0.17,-17.78 0.16,-26.67 -0.05,-4.66 0,-9.32 0,-14 0,-10.07 1.14,-20.37 1.08,-30.55l0,-0.43c-0.13,-0.45 -0.23,-0.91 -0.34,-1.36l-0.18,-0.82c0,-0.28 -0.11,-0.57 -0.16,-0.85s-0.11,-0.61 -0.15,-0.91l-0.09,-0.62c-0.12,-0.91 -0.21,-1.82 -0.27,-2.74h0c-1.34,0 -2.68,0.05 -4,0.09v0c-17.55,0.46 -35.08,1.86 -52.63,2.38l-2.51,0.06c-2.43,0.06 -4.85,0.11 -7.28,0.12h0c-2.54,2 -5.11,3.89 -7.76,5.72l-0.74,0.63h0c-8.16,6.88 -16,14.13 -23.75,21.5 0,0.72 0,1.44 0,2.16s0,1.15 0,1.73 0,0.87 -0.05,1.3c-0.33,6.84 -1.13,13.66 -1.92,20.48 -1.24,10.65 -1.92,21.32 -2.47,32 -0.57,11.16 -0.88,22.25 -0.65,33.43 0,2 0.11,4.06 0.16,6.13 0.1,0.37 0.21,0.74 0.32,1.11l-0.28,0.1c0,1.18 0.05,2.37 0.06,3.55 13.74,-1.47 27.56,-1.74 41.36,-2.18a98.12,98.12 0,0 1,10.28 -0.38c1.62,-0.07 3.24,-0.17 4.87,-0.26h0l2.63,-0.14a5.51,5.51 0,0 1,0.58 0l0.33,0.06 0.27,0.05 0.11,0c0.57,-0.42 1.15,-0.82 1.72,-1.23l2,-1.4 2.31,-1.55 2.33,-1.5c0.81,-0.52 1.62,-1 2.44,-1.55 8.4,-5.22 17.13,-9.93 25.72,-14.86h0l1,-0.61c1.14,-0.66 2.28,-1.31 3.41,-2l0.07,-0.07c1,-0.61 2.1,-1.21 3.13,-1.84C488,132.8 487.88,130.83 487.75,128.84ZM426.59,39.26c10.82,-0.46 21.69,-0.73 32.49,-0.93q6.62,-0.12 13.25,-0.17a104.15,104.15 0,0 0,-8.46 6.14,134.71 134.71,0 0,0 -13.71,12.15c-0.11,-0.18 -0.2,-0.36 -0.31,-0.53a7.48,7.48 0,0 1,-1.88 0.65,2 2,0 0,1 -0.61,0.47 2.13,2.13 0,0 1,-0.33 0.11l-0.16,0a2.07,2.07 0,0 1,-0.57 0l-0.49,0.06a4.81,4.81 0,0 1,-0.75 0.05L445,57.26a1.76,1.76 0,0 1,-0.33 -0.07l-0.09,0c-6.2,0.29 -12.4,0.21 -18.61,0.24s-12.36,0.07 -18.5,0.65a76,76 0,0 0,-10.13 1.41c4.34,-3.15 9.14,-5.89 13.09,-9.11C415.63,46.15 420.67,42.23 426.59,39.26ZM419,155.61c-3.4,0.68 -6.77,1.49 -10.16,2.24 -4.15,0.64 -8.33,1.41 -12.51,1.69q-1,0.06 -1.95,0.06c0.74,-7.16 -0.91,-14.52 -0.75,-21.71q0.36,-15.06 0.75,-30.14c0.21,-8.15 0.78,-16.25 1.57,-24.35 0.24,-2.39 1.28,-8.81 -0.61,-11.81 7.24,-1.08 14.88,0.2 22.13,-0.43 5.56,-0.48 11.11,-1.5 16.6,-2.47 3.93,-0.7 8.24,-0.87 12.27,-1.65a3.64,3.64 0,0 0,-0.17 1c-0.48,16.78 -1.85,33.78 -1.38,50.56 0.19,6.87 0.88,13.71 1,20.57 0.08,3.44 0,6.91 -0.15,10.34 -0.08,1.45 -0.32,3 -0.46,4.55l-2.31,0.27C435.24,152.44 426.26,154.17 419,155.61ZM471.33,138.07c-4.5,2.83 -9.05,5.59 -13.5,8.5l-2.8,1.85c-0.05,-2 -0.09,-3.95 -0.14,-5.93 -0.3,-11 -0.66,-22.1 -0.46,-33.14 0.18,-9.7 0.62,-19.39 0.07,-29.08A111.48,111.48 0,0 0,453 66.38c-0.13,-0.76 -0.28,-1.61 -0.45,-2.51l0.8,-0.06a2.5,2.5 0,0 1,-0.26 -1.35,2.36 2.36,0 0,1 0.08,-0.45l0,-0.08a2.54,2.54 0,0 1,0.16 -0.38l0.06,-0.11a2.43,2.43 0,0 1,0.24 -0.32l0.09,-0.11a2.69,2.69 0,0 1,0.44 -0.37c1.19,-0.82 2.37,-1.67 3.55,-2.52l1.37,-1c2.22,-1.65 4.43,-3.32 6.67,-4.93a1.85,1.85 0,0 1,0.8 -0.32c0.36,-0.27 0.71,-0.55 1.08,-0.82a100.1,100.1 0,0 1,9.12 -6.19c2,-1.17 4.13,-2 5.9,-3.27 0,1.91 0.11,3.8 0.12,5.66 0.08,12.9 -2.53,25.74 -2.9,38.64 -0.38,13.56 -0.82,27.26 0,40.82 0.1,1.73 0.2,3.46 0.29,5.19C477.07,133.68 474.1,136.31 471.31,138.07Z"
android:fillColor="#363436"/>
<path
android:pathData="M429.25,121.1a1.66,1.66 0,0 1,-2.06 -1.57c0,-5.24 0.63,-10.57 0.32,-15.82 -2.15,4.18 -3.78,8.64 -6.5,12.53a1.48,1.48 0,0 1,-2.54 0c-2.26,-3.86 -3.64,-8.87 -6.79,-12.21 -0.18,5.29 -0.64,10.55 -0.75,15.84a1.28,1.28 0,0 1,-0.94 1.23,24.09 24.09,0 0,1 -8.8,-0.26c5.19,10.39 20.83,14.09 30,6.54a17.75,17.75 0,0 0,4.74 -6.38A54.56,54.56 0,0 0,429.25 121.1Z"
android:fillColor="#363436"/>
<path
android:pathData="M425.81,90.82a16.73,16.73 0,0 0,-13.36 1.75c-9.1,4 -14.93,15.25 -12.49,25 0.12,0.48 0.27,0.94 0.43,1.4a44.45,44.45 0,0 0,8 -0.16c0,-5.91 0.49,-11.82 0.52,-17.73a1.44,1.44 0,0 1,2.15 -1.24c4.58,3 6.41,8.1 8.78,12.77 2.69,-4.65 4.33,-9.84 7.33,-14.32 0.68,-1 2.53,-1 2.79,0.37 1.21,6.36 0.69,12.73 0.53,19.14 2.2,-0.12 4.4,0 6.61,-0.12C440,107.2 436.34,93.81 425.81,90.82Z"
android:fillColor="#363436"/>
<path
android:pathData="M668.07,215.78c-0.37,-5.69 -0.51,-11.39 -0.55,-17.09 0,-0.4 -0.07,-0.8 -0.09,-1.2 -0.62,-8.88 -0.17,-17.78 0.16,-26.67 -0.05,-4.66 0,-9.32 0,-14 0,-10.08 1.15,-20.37 1.09,-30.55l0,-0.44c-0.13,-0.45 -0.24,-0.9 -0.34,-1.35 -0.06,-0.28 -0.13,-0.55 -0.18,-0.83s-0.11,-0.56 -0.16,-0.84 -0.11,-0.61 -0.16,-0.92 0,-0.41 -0.08,-0.61c-0.12,-0.91 -0.22,-1.82 -0.28,-2.74h0l-4,0.08v0c-17.55,0.46 -35.09,1.87 -52.64,2.38l-2.5,0.07q-3.64,0.09 -7.29,0.12h0c-2.54,2 -5.12,3.89 -7.76,5.71l-0.75,0.64h0c-8.17,6.87 -16,14.12 -23.75,21.5 0,0.72 0,1.44 0,2.15s0,1.16 -0.06,1.74c0,0.43 0,0.86 -0.05,1.29 -0.32,6.85 -1.13,13.67 -1.92,20.49 -1.23,10.65 -1.92,21.32 -2.46,32 -0.57,11.16 -0.89,22.24 -0.66,33.42 0.05,2 0.11,4.06 0.17,6.13 0.1,0.38 0.2,0.75 0.32,1.11l-0.29,0.11c0,1.18 0,2.36 0.07,3.55 13.74,-1.48 27.55,-1.75 41.36,-2.18a100.62,100.62 0,0 1,10.27 -0.39c1.62,-0.07 3.25,-0.17 4.87,-0.26h0c0.88,0 1.76,-0.08 2.64,-0.14a3.54,3.54 0,0 1,0.57 0l0.33,0.05 0.28,0.06 0.1,0 1.73,-1.22 2,-1.4 2.31,-1.55c0.78,-0.51 1.55,-1 2.33,-1.5s1.62,-1 2.44,-1.55c8.41,-5.22 17.13,-9.94 25.72,-14.87h0l1,-0.61 3.42,-2 0.06,-0.07c1,-0.62 2.1,-1.22 3.14,-1.85Q668.26,218.76 668.07,215.78ZM606.91,126.2c10.82,-0.47 21.69,-0.73 32.5,-0.94 4.41,-0.08 8.83,-0.12 13.24,-0.16a103.21,103.21 0,0 0,-8.45 6.13,136.18 136.18,0 0,0 -13.72,12.15c-0.1,-0.17 -0.19,-0.36 -0.3,-0.52a7.4,7.4 0,0 1,-1.89 0.64,1.67 1.67,0 0,1 -0.61,0.47 1.61,1.61 0,0 1,-0.33 0.12l-0.15,0a2.69,2.69 0,0 1,-0.58 0l-0.49,0.05a3.14,3.14 0,0 1,-0.74 0.05h-0.11a2.55,2.55 0,0 1,-0.32 -0.07l-0.09,0c-6.2,0.29 -12.41,0.22 -18.61,0.24s-12.36,0.07 -18.51,0.66a74.21,74.21 0,0 0,-10.12 1.41c4.33,-3.15 9.14,-5.89 13.08,-9.12C596,133.08 601,129.16 606.91,126.2ZM599.31,242.55c-3.4,0.67 -6.78,1.49 -10.16,2.23 -4.16,0.65 -8.34,1.42 -12.52,1.7 -0.65,0 -1.29,0.05 -1.94,0.05 0.74,-7.15 -0.92,-14.52 -0.75,-21.7q0.36,-15.08 0.75,-30.14c0.2,-8.15 0.77,-16.25 1.57,-24.36 0.23,-2.39 1.27,-8.8 -0.62,-11.8 7.24,-1.09 14.88,0.2 22.13,-0.43 5.56,-0.48 11.12,-1.51 16.6,-2.48 3.94,-0.69 8.24,-0.86 12.28,-1.64a3.56,3.56 0,0 0,-0.17 1c-0.48,16.78 -1.85,33.79 -1.39,50.57 0.2,6.86 0.89,13.7 1,20.57 0.08,3.44 0,6.9 -0.15,10.34 -0.08,1.45 -0.32,3 -0.46,4.54l-2.31,0.28C615.56,239.37 606.58,241.11 599.31,242.55ZM651.64,225c-4.5,2.84 -9,5.6 -13.51,8.51l-2.8,1.85q-0.06,-3 -0.14,-5.93c-0.3,-11.05 -0.66,-22.1 -0.45,-33.15 0.18,-9.7 0.61,-19.38 0.06,-29.08a111.51,111.51 0,0 0,-1.49 -13.88c-0.14,-0.76 -0.28,-1.62 -0.45,-2.51 0.26,0 0.52,0 0.79,-0.06a2.5,2.5 0,0 1,-0.26 -1.35,2.34 2.34,0 0,1 0.09,-0.46s0,-0.05 0,-0.08a2.43,2.43 0,0 1,0.16 -0.37,0.41 0.41,0 0,1 0.07,-0.11 1.78,1.78 0,0 1,0.23 -0.33l0.09,-0.11a2.69,2.69 0,0 1,0.44 -0.37c1.2,-0.81 2.38,-1.66 3.55,-2.52l1.38,-1c2.22,-1.64 4.42,-3.31 6.67,-4.93a1.63,1.63 0,0 1,0.8 -0.31L648,138a103,103 0,0 1,9.13 -6.19c2,-1.16 4.13,-1.95 5.89,-3.26 0,1.9 0.11,3.8 0.12,5.66 0.08,12.89 -2.52,25.74 -2.89,38.63 -0.39,13.56 -0.83,27.27 0,40.82 0.1,1.74 0.21,3.47 0.3,5.2C657.39,220.62 654.43,223.24 651.64,225Z"
android:fillColor="#363436"/>
<path
android:pathData="M609.57,208a1.64,1.64 0,0 1,-2.05 -1.56c0,-5.24 0.63,-10.57 0.31,-15.82 -2.15,4.18 -3.77,8.64 -6.49,12.53a1.5,1.5 0,0 1,-2.55 0c-2.25,-3.87 -3.64,-8.88 -6.78,-12.21 -0.18,5.28 -0.64,10.55 -0.75,15.83a1.3,1.3 0,0 1,-0.94 1.24,24.3 24.3,0 0,1 -8.8,-0.26c5.19,10.38 20.83,14.09 30,6.54a17.56,17.56 0,0 0,4.73 -6.39A59,59 0,0 0,609.57 208Z"
android:fillColor="#363436"/>
<path
android:pathData="M606.14,177.75a16.84,16.84 0,0 0,-13.37 1.75c-9.1,4 -14.93,15.25 -12.49,25 0.12,0.48 0.27,0.94 0.43,1.4a44.41,44.41 0,0 0,8 -0.16c0,-5.92 0.49,-11.82 0.52,-17.74a1.44,1.44 0,0 1,2.15 -1.23c4.59,2.94 6.42,8.09 8.79,12.77 2.68,-4.65 4.32,-9.84 7.33,-14.32 0.67,-1 2.52,-1 2.79,0.36 1.2,6.37 0.69,12.73 0.52,19.15 2.21,-0.12 4.41,0 6.62,-0.12C620.33,194.13 616.66,180.74 606.14,177.75Z"
android:fillColor="#363436"/>
<path
android:pathData="M681.1,568.52c-0.37,-5.7 -0.51,-11.39 -0.55,-17.09 0,-0.4 -0.07,-0.8 -0.09,-1.2 -0.62,-8.89 -0.17,-17.78 0.16,-26.67 0,-4.66 0,-9.32 0,-14 0,-10.07 1.15,-20.36 1.09,-30.54l0,-0.44c-0.13,-0.45 -0.23,-0.9 -0.34,-1.36 -0.06,-0.27 -0.13,-0.54 -0.18,-0.82s-0.11,-0.56 -0.16,-0.84 -0.11,-0.61 -0.16,-0.92 0,-0.41 -0.08,-0.61c-0.12,-0.91 -0.22,-1.83 -0.28,-2.74h0l-4,0.08v0c-17.55,0.46 -35.09,1.87 -52.64,2.38l-2.5,0.07q-3.64,0.09 -7.28,0.12h0c-2.54,2 -5.12,3.89 -7.76,5.71l-0.75,0.64h0c-8.17,6.87 -16,14.12 -23.75,21.5 0,0.72 0,1.43 0,2.15s0,1.16 -0.05,1.73l-0.06,1.3c-0.32,6.85 -1.13,13.67 -1.92,20.49 -1.23,10.65 -1.92,21.32 -2.46,32 -0.57,11.17 -0.89,22.25 -0.65,33.43 0,2 0.1,4.06 0.16,6.13 0.1,0.38 0.21,0.75 0.32,1.11l-0.29,0.11c0,1.18 0.06,2.36 0.07,3.55 13.74,-1.48 27.55,-1.75 41.36,-2.18a100.73,100.73 0,0 1,10.27 -0.39c1.63,-0.07 3.25,-0.17 4.87,-0.26h0c0.88,0 1.76,-0.08 2.64,-0.14a3.54,3.54 0,0 1,0.57 0l0.33,0.05 0.27,0.06 0.11,0 1.73,-1.22 2,-1.4c0.77,-0.52 1.54,-1 2.32,-1.55l2.32,-1.51 2.44,-1.54c8.41,-5.22 17.13,-9.94 25.72,-14.87h0l1,-0.61 3.42,-2 0.06,-0.07c1.05,-0.62 2.1,-1.22 3.14,-1.85Q681.3,571.5 681.1,568.52ZM620,478.94c10.81,-0.47 21.68,-0.73 32.49,-0.94q6.62,-0.12 13.25,-0.16a101.68,101.68 0,0 0,-8.46 6.13,137.29 137.29,0 0,0 -13.72,12.15c-0.1,-0.17 -0.19,-0.36 -0.3,-0.52a7.4,7.4 0,0 1,-1.89 0.64,1.67 1.67,0 0,1 -0.61,0.47 1.61,1.61 0,0 1,-0.33 0.12l-0.15,0a2.14,2.14 0,0 1,-0.57 0l-0.5,0.06a3.14,3.14 0,0 1,-0.74 0.05h-0.11l-0.32,-0.07 -0.09,0c-6.2,0.29 -12.41,0.22 -18.61,0.24s-12.36,0.07 -18.51,0.65a74.28,74.28 0,0 0,-10.12 1.42c4.34,-3.15 9.14,-5.89 13.09,-9.12C609,485.82 614,481.9 620,478.94ZM612.39,595.29c-3.4,0.67 -6.78,1.48 -10.16,2.23 -4.16,0.64 -8.34,1.42 -12.52,1.69 -0.64,0 -1.29,0.06 -1.94,0.06 0.74,-7.15 -0.92,-14.52 -0.75,-21.7q0.36,-15.08 0.75,-30.14c0.2,-8.15 0.77,-16.26 1.57,-24.36 0.23,-2.39 1.27,-8.8 -0.62,-11.8 7.24,-1.09 14.88,0.19 22.14,-0.43 5.55,-0.49 11.11,-1.51 16.59,-2.48 3.94,-0.69 8.24,-0.86 12.28,-1.64a3.56,3.56 0,0 0,-0.17 1c-0.48,16.78 -1.85,33.78 -1.38,50.56 0.19,6.87 0.88,13.71 1,20.58 0.08,3.44 0,6.9 -0.15,10.34 -0.08,1.45 -0.32,3 -0.46,4.54l-2.31,0.28C628.6,592.11 619.61,593.85 612.34,595.29ZM664.72,577.74c-4.5,2.84 -9,5.6 -13.5,8.5l-2.81,1.86c0,-2 -0.08,-4 -0.14,-5.94 -0.3,-11 -0.66,-22.09 -0.45,-33.14 0.18,-9.7 0.61,-19.38 0.06,-29.08a111.67,111.67 0,0 0,-1.49 -13.89c-0.14,-0.75 -0.28,-1.61 -0.45,-2.51l0.79,-0.05a2.52,2.52 0,0 1,-0.26 -1.35,3.4 3.4,0 0,1 0.09,-0.46 0.24,0.24 0,0 0,0 -0.08,2.48 2.48,0 0,1 0.17,-0.37 0.67,0.67 0,0 1,0.06 -0.12,3.19 3.19,0 0,1 0.23,-0.32 1.09,1.09 0,0 0,0.1 -0.11,2.25 2.25,0 0,1 0.43,-0.37q1.8,-1.23 3.55,-2.52l1.37,-1c2.23,-1.65 4.43,-3.32 6.68,-4.94a1.63,1.63 0,0 1,0.8 -0.31l1.07,-0.83a100.91,100.91 0,0 1,9.13 -6.19c2,-1.16 4.13,-1.95 5.89,-3.26 0,1.9 0.11,3.8 0.12,5.66 0.09,12.89 -2.52,25.73 -2.89,38.63 -0.39,13.56 -0.82,27.27 0,40.82 0.11,1.73 0.21,3.47 0.3,5.2C670.42,573.36 667.46,576 664.67,577.74Z"
android:fillColor="#363436"/>
<path
android:pathData="M622.61,560.77a1.65,1.65 0,0 1,-2.06 -1.56c0,-5.24 0.63,-10.57 0.31,-15.83 -2.15,4.19 -3.77,8.65 -6.49,12.54a1.5,1.5 0,0 1,-2.55 0c-2.25,-3.87 -3.64,-8.88 -6.78,-12.21 -0.18,5.28 -0.64,10.55 -0.75,15.83a1.29,1.29 0,0 1,-0.94 1.24,24.31 24.31,0 0,1 -8.8,-0.26c5.19,10.38 20.83,14.08 30,6.53a17.53,17.53 0,0 0,4.73 -6.38A58.78,58.78 0,0 0,622.61 560.77Z"
android:fillColor="#363436"/>
<path
android:pathData="M619.17,530.49a16.84,16.84 0,0 0,-13.37 1.75c-9.09,4 -14.93,15.25 -12.48,25 0.12,0.47 0.26,0.94 0.42,1.39a44.54,44.54 0,0 0,8 -0.15c0,-5.92 0.48,-11.82 0.51,-17.74a1.44,1.44 0,0 1,2.15 -1.23c4.59,2.94 6.42,8.09 8.79,12.77 2.68,-4.65 4.32,-9.84 7.33,-14.32 0.67,-1 2.52,-1 2.79,0.36 1.2,6.37 0.69,12.73 0.52,19.14 2.21,-0.11 4.41,0 6.62,-0.11C633.36,546.87 629.7,533.48 619.17,530.49Z"
android:fillColor="#363436"/>
<path
android:pathData="M173,416.89c-0.37,-5.69 -0.51,-11.38 -0.55,-17.08 0,-0.4 -0.07,-0.8 -0.09,-1.2 -0.62,-8.89 -0.17,-17.78 0.16,-26.67 -0.05,-4.66 0,-9.32 0,-14 0,-10.07 1.15,-20.37 1.09,-30.55l0,-0.43c-0.13,-0.45 -0.24,-0.91 -0.34,-1.36 -0.06,-0.27 -0.13,-0.55 -0.18,-0.82s-0.11,-0.56 -0.16,-0.84 -0.11,-0.62 -0.16,-0.92 0,-0.41 -0.08,-0.62c-0.12,-0.91 -0.22,-1.82 -0.28,-2.73h0c-1.34,0 -2.68,0 -4,0.08v0c-17.56,0.46 -35.09,1.87 -52.64,2.38l-2.5,0.06c-2.43,0.06 -4.86,0.11 -7.29,0.12h0q-3.81,3 -7.76,5.72l-0.75,0.63h0c-8.17,6.88 -16,14.13 -23.75,21.5 0,0.72 0,1.44 0,2.16s0,1.15 -0.06,1.73c0,0.43 0,0.87 0,1.3 -0.32,6.84 -1.13,13.66 -1.92,20.48 -1.23,10.66 -1.92,21.32 -2.46,32 -0.57,11.17 -0.89,22.25 -0.66,33.43 0,2 0.11,4.06 0.17,6.13 0.1,0.37 0.2,0.74 0.32,1.11l-0.29,0.11c0,1.17 0.05,2.36 0.07,3.54 13.74,-1.47 27.55,-1.74 41.36,-2.18a100.62,100.62 0,0 1,10.27 -0.38c1.62,-0.07 3.25,-0.17 4.87,-0.26h0c0.88,-0.05 1.76,-0.08 2.64,-0.14a3.54,3.54 0,0 1,0.57 0l0.33,0 0.26,0.05 0.12,0 1.73,-1.23c0.66,-0.47 1.33,-0.93 2,-1.39s1.54,-1 2.32,-1.55l2.32,-1.51c0.81,-0.52 1.62,-1 2.44,-1.54 8.4,-5.22 17.13,-9.94 25.72,-14.87h0l1,-0.61 3.42,-2 0.06,-0.06c1.05,-0.62 2.1,-1.22 3.14,-1.85C173.19,420.85 173.08,418.88 173,416.89ZM111.84,327.32c10.82,-0.47 21.69,-0.74 32.5,-0.94q6.61,-0.12 13.24,-0.16a103.21,103.21 0,0 0,-8.45 6.13,135 135,0 0,0 -13.72,12.15c-0.1,-0.18 -0.19,-0.36 -0.3,-0.53a7.42,7.42 0,0 1,-1.89 0.65,1.78 1.78,0 0,1 -0.61,0.47 1.6,1.6 0,0 1,-0.33 0.11l-0.15,0.05a2.71,2.71 0,0 1,-0.58 0l-0.49,0.06a4.76,4.76 0,0 1,-0.74 0.05h-0.11l-0.32,-0.08 -0.09,0c-6.2,0.29 -12.41,0.21 -18.61,0.24s-12.36,0.07 -18.51,0.65a75.81,75.81 0,0 0,-10.12 1.41c4.33,-3.15 9.14,-5.88 13.08,-9.11C100.83,334.2 105.88,330.28 111.79,327.32ZM104.24,443.66c-3.4,0.68 -6.78,1.49 -10.16,2.24 -4.16,0.64 -8.34,1.41 -12.52,1.69 -0.65,0 -1.29,0.06 -1.94,0.06 0.74,-7.16 -0.92,-14.52 -0.75,-21.71q0.36,-15.06 0.75,-30.14c0.2,-8.14 0.77,-16.25 1.57,-24.35 0.23,-2.39 1.27,-8.81 -0.62,-11.8 7.24,-1.09 14.88,0.19 22.13,-0.44 5.56,-0.48 11.12,-1.5 16.6,-2.47 3.94,-0.7 8.24,-0.86 12.28,-1.65a3.64,3.64 0,0 0,-0.17 1c-0.48,16.78 -1.85,33.78 -1.39,50.56 0.2,6.87 0.89,13.71 1.05,20.57 0.08,3.45 0,6.91 -0.15,10.35 -0.08,1.45 -0.32,3 -0.46,4.54l-2.31,0.28C120.44,440.49 111.46,442.22 104.19,443.66ZM156.57,426.12c-4.5,2.83 -9.05,5.59 -13.51,8.5l-2.8,1.86q-0.06,-3 -0.14,-5.94c-0.3,-11 -0.66,-22.1 -0.45,-33.14 0.18,-9.7 0.61,-19.39 0.06,-29.08a111.47,111.47 0,0 0,-1.49 -13.89c-0.14,-0.76 -0.28,-1.61 -0.45,-2.51l0.79,-0.05a2.55,2.55 0,0 1,-0.26 -1.36,2.39 2.39,0 0,1 0.09,-0.45s0,-0.06 0,-0.08a3.08,3.08 0,0 1,0.16 -0.38l0.07,-0.11a1.72,1.72 0,0 1,0.23 -0.32l0.09,-0.11a2.69,2.69 0,0 1,0.44 -0.37c1.2,-0.82 2.38,-1.67 3.55,-2.52l1.37,-1c2.22,-1.64 4.43,-3.31 6.68,-4.93a1.75,1.75 0,0 1,0.8 -0.32l1.07,-0.82A98.88,98.88 0,0 1,162 332.9c2,-1.16 4.13,-1.95 5.89,-3.27 0,1.91 0.11,3.8 0.12,5.66 0.08,12.9 -2.52,25.74 -2.89,38.64 -0.39,13.56 -0.83,27.27 0,40.82 0.1,1.73 0.21,3.46 0.3,5.19C162.27,421.73 159.31,424.36 156.52,426.12Z"
android:fillColor="#363436"/>
<path
android:pathData="M114.45,409.15a1.65,1.65 0,0 1,-2 -1.57c0,-5.24 0.63,-10.57 0.31,-15.82 -2.15,4.18 -3.77,8.65 -6.49,12.53a1.49,1.49 0,0 1,-2.55 0c-2.25,-3.86 -3.64,-8.87 -6.78,-12.2 -0.18,5.28 -0.64,10.54 -0.75,15.83a1.29,1.29 0,0 1,-0.94 1.23,24.3 24.3,0 0,1 -8.8,-0.25c5.19,10.38 20.83,14.08 30,6.53a17.61,17.61 0,0 0,4.73 -6.38A56.69,56.69 0,0 0,114.45 409.15Z"
android:fillColor="#363436"/>
<path
android:pathData="M111,378.87a16.8,16.8 0,0 0,-13.37 1.75c-9.1,4 -14.93,15.25 -12.49,25 0.12,0.48 0.27,0.95 0.43,1.4a44.41,44.41 0,0 0,8 -0.16c0,-5.91 0.49,-11.81 0.52,-17.73a1.44,1.44 0,0 1,2.15 -1.23c4.59,2.94 6.42,8.09 8.79,12.77 2.68,-4.66 4.32,-9.85 7.33,-14.33 0.67,-1 2.52,-1 2.79,0.37 1.2,6.36 0.69,12.73 0.52,19.14 2.21,-0.11 4.41,0 6.62,-0.12C125.21,395.25 121.54,381.86 111,378.87Z"
android:fillColor="#363436"/>
<path
android:pathData="M302.85,605.09c-0.32,-1.91 -2.53,-2.23 -4,-1.61 -3.22,1.38 -5.09,3.78 -7.09,6.57 -2.42,3.38 -4.94,6.7 -7.58,9.93a162.44,162.44 0,0 1,-15.49 16.42c-4.5,4.15 -9.37,8 -15,10.52 -6.72,3 -14,3 -21.18,2.76 -15.1,-0.54 -29.8,-2.11 -44.69,1.45a77.38,77.38 0,0 0,-31 15.15c-9.85,8 -18.56,19.82 -21.74,32.25a4.43,4.43 0,0 0,3 5.31l0.26,0.09a3.68,3.68 0,0 0,3.71 -1v0c1.95,-1.85 2.81,-5.1 4,-7.44a73,73 0,0 1,4.53 -7.68,65.53 65.53,0 0,1 11,-12.58c8.47,-7.42 19,-12 30,-14.38 15.37,-3.29 30.59,-0.5 46.09,-0.49 14.7,0 26.45,-5.5 37.27,-15.22A157.44,157.44 0,0 0,292.22 627C297,621.05 304.24,613.27 302.85,605.09Z"
android:fillColor="#f0006b"/>
<path
android:pathData="M325.12,589.47c-7.07,-13.9 -27.1,-10.28 -32.92,2.64 -2.73,6.06 -1.51,14.65 5.43,17.25a1.35,1.35 0,0 0,1.51 -2c-1.78,-2.45 -3.88,-4.44 -4.23,-7.61a11.93,11.93 0,0 1,2.27 -7.79c3.32,-5 10.14,-8.81 16,-6.2a12,12 0,0 1,4.12 19.13c-2.6,3 -6.37,4.44 -10.13,5.27 -3.5,0.78 -8.26,-0.3 -11.3,1.66a2.65,2.65 0,0 0,-0.53 4.12c3.06,2.8 8.29,1.72 12.05,1a27.66,27.66 0,0 0,12.12 -5C326.19,606.86 329,597.12 325.12,589.47Z"
android:fillColor="#f0006b"/>
<path
android:pathData="M306.45,601.88a2.44,2.44 0,0 0,-0.24 -1.47,1.78 1.78,0 0,0 -3.09,-1.5 2.66,2.66 0,0 0,-1.26 0.68,44.22 44.22,0 0,0 -5.32,6.11 2.16,2.16 0,0 0,-0.4 1.43l-0.18,0.23a2.15,2.15 0,0 0,-0.42 1.61,3.32 3.32,0 0,0 -0.13,1.37c0.3,2.33 3.43,3.77 4.8,1.3 -0.45,0.81 0.29,-0.11 0.55,-0.39 0.62,-0.68 1.09,-1.54 1.64,-2.27a31.23,31.23 0,0 1,3.47 -4A2.61,2.61 0,0 0,306.45 601.88Z"
android:fillColor="#f0006b"/>
<path
android:pathData="M347.52,570.45c-6.32,-7.41 -16.16,-10.53 -25.17,-6.57 -5.21,2.29 -9.52,6.24 -14.26,9.32 -4.15,2.7 -8.42,5.25 -12.13,8.56 -0.39,0.35 -0.77,0.71 -1.15,1.08 -5.1,3.69 -8.68,8.66 -8.55,15.63 0.26,14.36 14.69,18.46 26.68,16.57 6.77,-1.07 12.44,-4.25 18.14,-7.95a71.6,71.6 0,0 0,17.85 -16.29C354.06,584.25 352.74,576.58 347.52,570.45ZM342,589.17c-3.35,5.18 -8.94,9.31 -13.95,12.75a66.72,66.72 0,0 1,-13.49 7.57c-5,1.92 -12.51,2.4 -17.74,-0.07a1.29,1.29 0,0 0,0 -1.24c-1.95,-3.88 -4.77,-8.49 -4.46,-13a11.18,11.18 0,0 1,1.06 -4c2.46,-3.52 6.4,-5.94 10.65,-8.58a64.75,64.75 0,0 0,9.78 -7.32c1.28,-1.19 2.48,-2.37 3.68,-3.52l0.75,-0.51c3.45,-2.38 7.08,-4.87 11.45,-3.95 4.12,0.87 7.89,3.93 10.7,6.94C344.55,578.66 345.4,583.92 342,589.17Z"
android:fillColor="#f0006b"/>
<path
android:pathData="M409.34,417.5c-5.08,-2.92 -11.2,-4.36 -16.81,-5.94 -6,-1.69 -12.11,-3.18 -18,-5.35 -5.66,-2.08 -11.2,-4.51 -17,-6.22 -4.28,-1.27 -11.8,-4.07 -15.57,-0.56a3,3 0,0 0,0 4.25c1.68,1.62 4.08,1.81 6.26,2.38a75.94,75.94 0,0 1,8.06 2.65c5.44,2.11 10.79,4.43 16.23,6.56 10.85,4.25 22.36,6.42 33.14,10.9C410.72,428.26 413.89,420.12 409.34,417.5Z"
android:fillColor="#363436"/>
<path
android:pathData="M480,317.74c0.54,-4.13 -5.38,-4.89 -7.27,-2 -3.27,5.07 -3.54,12.28 -3.84,18.12 -0.33,6.73 -0.13,13.47 -0.48,20.2 -0.37,7 -1.42,13.93 -1.78,20.94 -0.41,7.75 -1.5,15.33 -2.2,23 -1.83,5.2 6.9,7.68 8.81,2.2 2.4,-6.93 2.26,-15.18 2.62,-22.45s1.34,-14.69 1.8,-22.05c0.41,-6.48 0.1,-13 0.22,-19.48S479.22,324 480,317.74Z"
android:fillColor="#363436"/>
<path
android:pathData="M632.37,350.82c-6.31,2.88 -11.72,7.34 -17.12,11.64a165.62,165.62 0,0 1,-16.53 11.78c-12.06,7.43 -24.17,14.34 -35.47,22.94 -10.74,8.17 -21,16.91 -31.75,25.11a311.38,311.38 0,0 1,-33.73 22.2c-2.71,1.57 -0.92,6.28 2.19,5.19 12.75,-4.44 24.18,-12.26 35,-20.21S556.22,413 567.06,405c11.2,-8.25 23.15,-15 35,-22.21 12.13,-7.34 22.33,-17.47 34.76,-24.26C642,355.7 637.47,348.5 632.37,350.82Z"
android:fillColor="#363436"/>
<path
android:pathData="M678.93,380a2.3,2.3 0,0 0,-2.56 -1c-3.39,0.77 -4.65,5.39 -5.85,8.23 -1.46,3.45 -2.81,6.94 -4,10.5 -2.72,8.26 -4.83,16.67 -6.76,25.15s-3.7,16.72 -5.52,25.09c-0.87,3.95 -1.76,7.91 -2.72,11.84 -0.85,3.45 -3.17,8.25 -1.89,11.7 1.13,3 4.23,3.69 6.7,1.77 2.77,-2.16 3.18,-7.21 4,-10.47 1,-3.92 1.86,-7.86 2.72,-11.8 1.84,-8.36 3.45,-16.77 5.24,-25.14 1.74,-8.12 3.57,-16.24 5.71,-24.27 1,-3.85 2.09,-7.7 3.31,-11.5C678.3,387 680.6,383 678.93,380Z"
android:fillColor="#363436"/>
<path
android:pathData="M656.92,248.9c-3.68,-5.21 -7.88,-12.15 -13.45,-15.55 -2.63,-1.6 -5.76,1 -5.05,3.89 1.39,5.6 6.45,10.52 9.59,15.21a68.73,68.73 0,0 1,4.85 8.07c1.09,2.26 1.12,4.91 2.85,6.8a4.47,4.47 0,0 0,6.29 0C666.53,262.07 660.07,253.36 656.92,248.9Z"
android:fillColor="#363436"/>
<path
android:pathData="M467.55,199.58c-0.61,-9 -3.48,-17.42 -5.25,-26.19 -1.52,-7.53 -1.76,-16.68 -6.62,-23 -2.1,-2.72 -6.13,-1.18 -5.54,2.34 1.24,7.44 2.44,14.87 3.65,22.32 1.32,8.2 4,16.21 4.45,24.53C458.59,205.54 468,205.56 467.55,199.58Z"
android:fillColor="#363436"/>
<path
android:pathData="M442.85,261.26c-2.5,-2.36 -6.89,-2.54 -10.1,-3.75 -3.68,-1.39 -7.22,-3.1 -10.86,-4.59 -9.45,-3.86 -19.48,-6.14 -29.15,-9.36 -10,-3.34 -19.94,-6.95 -30,-10.13 -9.69,-3.05 -20.44,-7.33 -30.7,-7.54a3.22,3.22 0,0 0,-1.61 6c4.54,2.52 9.84,3.93 14.73,5.6s10.08,3.3 15.09,5c10.23,3.52 20.29,7.5 30.51,11 9.29,3.21 18.95,5.55 28,9.43 3.73,1.6 7.41,3.32 11.21,4.75 3.43,1.29 8.61,3.47 11.94,1.09C444.29,267.05 445.27,263.54 442.85,261.26Z"
android:fillColor="#363436"/>
<path
android:pathData="M236,231.59c-4.9,-3.25 -10.93,-5 -16.35,-7.22 -4.87,-2 -9.73,-3.86 -14.74,-5.44 -4.53,-1.44 -9.09,-2.8 -13.54,-4.47 -3.46,-1.29 -7.47,-2.77 -10.14,-5.42 -5,-5 -12.74,2.74 -7.76,7.76 6.81,6.86 17.81,9.25 26.76,11.92 5,1.48 9.83,3.23 14.72,5 6.07,2.16 12.6,5.13 19.15,4.92A3.8,3.8 0,0 0,236 231.59Z"
android:fillColor="#363436"/>
<path
android:pathData="M233.68,258.09c-4.22,0.3 -7.41,5.45 -9.8,8.52 -3.13,4 -6,8.19 -8.78,12.45 -5.95,9.09 -11.77,18.24 -18.56,26.74 -6.35,8 -12.91,15.76 -19,23.91 -2.28,3 -4.56,6.08 -6.66,9.25s-4.43,6.39 -2.77,10.31c1,2.31 4.08,2.46 6,1.57 2.62,-1.22 4.1,-5.46 5.66,-7.76 2,-3 4.21,-5.92 6.4,-8.82 6.08,-8.08 12.46,-15.93 18.61,-24A255.72,255.72 0,0 0,221.33 285c2.65,-4.46 5.33,-8.92 8.09,-13.31 2,-3.16 6.51,-7.69 6.27,-11.58A2,2 0,0 0,233.68 258.09Z"
android:fillColor="#363436"/>
<path
android:pathData="M526,64.22c-9.36,3.91 -15.86,12.16 -24.58,17.15C498,83.29 494.6,85 491.26,87c-2.87,1.66 -6.76,3.65 -8.46,6.62 -2.15,3.74 2.05,7.43 5.64,5.64 2.81,-1.4 5.45,-3.41 8.24,-4.91 3.22,-1.74 6.53,-3.33 9.74,-5.09 8.35,-4.58 14.85,-11.75 23.12,-16.5C534,70.19 530.94,62.14 526,64.22Z"
android:fillColor="#363436"/>
<path
android:pathData="M539.84,57.2a4.67,4.67 0,0 0,-3.19 -1.32,4.51 4.51,0 0,0 -4.5,4.51 4.54,4.54 0,0 0,1.32 3.19,4.5 4.5,0 0,0 6.37,0 4.6,4.6 0,0 0,1.32 -3.19A4.52,4.52 0,0 0,539.84 57.2Z"
android:fillColor="#363436"/>
<path
android:pathData="M546.79,49.46c-4.94,0 -4.95,7.68 0,7.68S551.74,49.46 546.79,49.46Z"
android:fillColor="#363436"/>
<path
android:pathData="M337.68,47.8c-2.19,4.34 -3.2,9.44 -4.77,14.05 -1.8,5.24 -3.7,10.44 -5.66,15.62 -3.73,9.9 -7.69,19.7 -11.54,29.56a277.15,277.15 0,0 0,-10.08 30.12c-0.54,2.07 -5.28,24.91 0.27,22.87 3.37,-1.24 3.42,-6.83 4.18,-9.83 1.25,-4.93 2.6,-9.87 4.09,-14.74 3,-9.68 6.69,-19.1 10.41,-28.52s7.56,-19 11.17,-28.52c1.87,-5 3.69,-9.94 5.4,-14.95 1.51,-4.39 3.48,-9 3.91,-13.66C345.43,45.89 339.4,44.39 337.68,47.8Z"
android:fillColor="#363436"/>
<path
android:pathData="M346.72,36.84a2.76,2.76 0,0 0,-0.37 -1.23,2.66 2.66,0 0,0 -1.59,-1.24 5.64,5.64 0,0 0,-0.75 -0.32,3.82 3.82,0 0,0 -4.32,5.61A3.83,3.83 0,0 0,344.92 41a4,4 0,0 0,1.8 -4.2Z"
android:fillColor="#363436"/>
<path
android:pathData="M348.45,24a6,6 0,0 0,-1 -0.74,3.54 3.54,0 0,0 -3.61,0 3.57,3.57 0,0 0,0 6.18,3.54 3.54,0 0,0 3.61,0 6.63,6.63 0,0 0,1 -0.74,3.31 3.31,0 0,0 0,-4.7Z"
android:fillColor="#363436"/>
<path
android:pathData="M681,177.16c-1.09,0.93 -3.25,1.41 -4.56,2 -2,0.9 -3.92,1.85 -5.82,2.89 -3,1.67 -6.35,3.57 -8.23,6.59 -1.51,2.43 1.37,4.53 3.56,3.57 2.79,-1.22 5.36,-2.95 8.09,-4.31s6.7,-4 9.71,-4.11C690.75,183.67 686.78,172.28 681,177.16Z"
android:fillColor="#363436"/>
<path
android:pathData="M161.28,104.59c-1.75,8.64 -2.18,17.52 -4.15,26.12 -1.83,8 -4.54,15.43 -3.37,23.7 0.6,4.2 7,3 7.17,-1 0.26,-7.74 3.49,-14.83 5,-22.32 1.67,-8 2.33,-16.15 4,-24.15C171.07,101.33 162.42,98.92 161.28,104.59Z"
android:fillColor="#363436"/>
<path
android:pathData="M165.6,91.58c-4.63,0 -4.64,7.21 0,7.21S170.25,91.58 165.6,91.58Z"
android:fillColor="#363436"/>
<path
android:pathData="M170.39,86.83a2.16,2.16 0,0 0,0.27 -1.1,2.8 2.8,0 0,0 -0.58,-1.62 2.57,2.57 0,0 0,-1.39 -1,3.07 3.07,0 0,0 -2.06,0.27 3.79,3.79 0,0 0,-1 0.7,3.27 3.27,0 0,0 -1.06,1.51 3.39,3.39 0,0 0,0 1.87,4 4,0 0,0 0.33,0.8A2.9,2.9 0,0 0,166 89.38s0,0 0,0c0.19,0.15 0.38,0.31 0.57,0.45a2.57,2.57 0,0 0,3.79 -2.74A2.11,2.11 0,0 0,170.39 86.83Z"
android:fillColor="#363436"/>
<path
android:pathData="M694.37,172.67c-4.45,0 -4.46,6.92 0,6.92S698.83,172.67 694.37,172.67Z"
android:fillColor="#363436"/>
<path
android:pathData="M732.23,492.3a4.08,4.08 0,0 0,-2.35 -1.81,3.92 3.92,0 0,0 -3.82,1c-5.36,5.42 -13.92,7.93 -20.74,11 -4.58,2.06 -9,4.53 -13.43,6.8 -5.3,2.69 -10.89,4.69 -16.22,7.28 -2.32,1.14 -1.16,4.87 1.31,4.81 11.36,-0.31 21.84,-8.22 32,-12.51 4.31,-1.81 8.67,-3.51 12.9,-5.51 3.36,-1.59 7.3,-3.4 9.74,-6.31A4.06,4.06 0,0 0,732.23 492.3Z"
android:fillColor="#363436"/>
<path
android:pathData="M741.86,487.21a4,4 0,0 0,-5.71 0,4.17 4.17,0 0,0 -1.18,2.85 4.11,4.11 0,0 0,1.18 2.86A4.22,4.22 0,0 0,739 494.1a4,4 0,0 0,4 -4A4.1,4.1 0,0 0,741.86 487.21Z"
android:fillColor="#363436"/>
<path
android:pathData="M747.33,482c-3.57,0 -3.57,5.54 0,5.54S750.89,482 747.33,482Z"
android:fillColor="#363436"/>
<path
android:pathData="M444.63,292.12a2.44,2.44 0,0 0,-2.16 -1.24c-3.69,-0.09 -6.78,5 -9.41,7.13 -3.55,2.95 -7.52,5.4 -11.22,8.14 -9.28,6.88 -18.9,13.32 -28,20.38 -9,6.93 -18,13.83 -26.81,21 -8.62,7 -17.45,14.13 -24.49,22.73 -1.63,2 0.52,5.65 3,3.9 19,-13.33 37.36,-27.52 56,-41.26 9.2,-6.77 19,-12.87 27.76,-20.21a108.92,108.92 0,0 0,10.57 -10.26C442.43,299.58 446.36,296.2 444.63,292.12Z"
android:fillColor="#363436"/>
<path
android:pathData="M266.32,356.61c-2.3,-4.67 -6.49,-7.89 -10.34,-11.21 -4.33,-3.73 -8.73,-7.33 -13,-11.16 -9.65,-8.67 -19.31,-17.37 -29.19,-25.77 -9,-7.66 -18.27,-15 -27.22,-22.73 -9.34,-8.06 -17.65,-16.87 -26,-25.94 -2.78,-3 -7.88,0.9 -5.69,4.4 12.64,20.22 33.52,34.67 51.32,50 9.78,8.42 19.29,17.19 28.92,25.8 4.33,3.86 8.54,8.1 13.45,11.24a55.45,55.45 0,0 1,12 9.77C263.49,364.24 268.05,360.12 266.32,356.61Z"
android:fillColor="#363436"/>
<path
android:pathData="M417.29,160.23c-0.59,-2.7 -5.15,-2.86 -5.62,0 -0.59,3.66 -2.93,7.26 -4.81,10.36 -2.62,4.29 -5.44,8.45 -8.16,12.67 -7.2,11.19 -12.58,23.64 -18.95,35.32 -7.25,13.29 -14.5,26.43 -21.14,40.06 -6.79,13.94 -14.73,27.28 -21.52,41.23 -3.45,7.08 -6.39,14.37 -10,21.35 -3.21,6.14 -6.61,12.16 -9,18.67 -1.68,4.54 5.9,7.81 7.89,3.33 2.47,-5.58 5.49,-10.94 8.32,-16.34 3.3,-6.28 6,-12.76 9,-19.17 6.69,-14.3 14.87,-27.82 21.81,-42 6.77,-13.79 14,-27.24 21.21,-40.78 6.57,-12.28 12.1,-25.27 19.18,-37.25 2.86,-4.84 5.91,-9.56 8.45,-14.58C415.92,169.16 418.28,164.77 417.29,160.23Z"
android:fillColor="#363436"/>
<path
android:pathData="M244.38,389.32c2,-0.36 -0.95,-0.51 -1.62,-0.63a27.85,27.85 0,0 0,-3 -0.37c-3.35,-0.23 -6.74,-0.23 -10.1,-0.43 -6.8,-0.4 -13.58,-1 -20.36,-1.71 -7,-0.7 -14,-1.57 -21,-2.31 -3.5,-0.37 -7,-0.74 -10.51,-1.09 -3.28,-0.33 -6.78,-1.08 -9.94,0.06a3.55,3.55 0,0 0,-0.84 6.41c3.21,2 7.42,2 11.1,2.46 3.48,0.48 7,1 10.45,1.48q10.73,1.53 21.52,2.68c7,0.74 14,1.42 21,1.87 3,0.2 6.12,0.07 9.09,0.43 2.29,0.28 4.48,1.36 6.81,0.49A4.85,4.85 0,0 0,244.38 389.32Z"
android:fillColor="#363436"/>
<path
android:pathData="M565.74,213.35c-5.21,1.77 -10.25,4.37 -15.22,6.71s-10.18,5.07 -14.33,8.94c-3.56,3.33 1.28,9.94 5.32,6.9a102.61,102.61 0,0 1,13.9 -8.73c4.64,-2.45 9.7,-4.85 13.23,-8.84C570.47,216.26 568.75,212.32 565.74,213.35Z"
android:fillColor="#363436"/>
<path
android:pathData="M622.32,473c-4.41,-11.33 -12.25,-20.74 -19.3,-30.49 -7.77,-10.76 -15.14,-21.81 -22.2,-33 -14.2,-22.6 -27.12,-45.91 -39.2,-69.7q-4.93,-9.75 -10,-19.4c-3.58,-6.8 -7,-14 -11.53,-20.21 -1.88,-2.61 -7,-1.16 -5.67,2.39 4.64,12.19 11.2,24 16.91,35.68 5.86,12 11.85,24 18.22,35.82a692.58,692.58 0,0 0,41.79 67.84c7.93,11.32 16.84,22 22.79,34.58C616.24,481 624.18,477.76 622.32,473Z"
android:fillColor="#363436"/>
<path
android:pathData="M388,101.41c-5.44,-6.89 -15.41,-10 -23.29,-13a243.76,243.76 0,0 1,-28.07 -13c-9.78,-5.22 -19.38,-10.78 -29.27,-15.81 -3.57,-1.82 -7.22,-3.35 -10.93,-4.85 -3.1,-1.26 -8,-2.53 -10.09,-5.32 -1.46,-1.94 -4.84,-0.92 -4.14,1.75 2,7.51 9.53,10 15.77,13.24 10,5.16 19.69,11.09 29.43,16.75a247.32,247.32 0,0 0,29.21 14.63c8.18,3.4 16.12,6 23.13,11.43a3,3 0,0 0,4.19 2.91,4.12 4.12,0 0,0 2.36,-0.6l0.71,-0.46C389.85,107.21 390,103.93 388,101.41Z"
android:fillColor="#363436"/>
<path
android:pathData="M276.05,41.54c-4.79,0 -4.8,7.44 0,7.44S280.84,41.54 276.05,41.54Z"
android:fillColor="#363436"/>
<path
android:pathData="M266.21,36.32h-0.47c-3.73,-0.12 -3.74,5.91 0,5.8h0.47A2.89,2.89 0,0 0,266.21 36.32Z"
android:fillColor="#363436"/>
<path
android:pathData="M224.23,61.48c-0.25,-0.13 -0.5,-0.26 -0.74,-0.4 -5.07,-2.71 -5.07,7.38 0,4.67l0.74,-0.4A2.26,2.26 0,0 0,224.23 61.48Z"
android:fillColor="#363436"/>
<path
android:pathData="M226.6,73.26a2.58,2.58 0,0 0,-0.41 -0.33,3.17 3.17,0 0,0 -0.39,-0.32 2.41,2.41 0,0 0,-1.29 -0.33,3.12 3.12,0 0,0 -1.55,0.41 3.84,3.84 0,0 0,-1.64 2.13,2.59 2.59,0 0,0 2.18,3.28 2.67,2.67 0,0 0,2.84 -1.77,1.89 1.89,0 0,0 0.78,-1.08A2,2 0,0 0,226.6 73.26Z"
android:fillColor="#363436"/>
<path
android:pathData="M253.57,171.67c-2.8,-7.2 -4.83,-14.66 -7,-22.07s-4.8,-14.94 -6.79,-22.5c-1.93,-7.36 -3.23,-14.87 -4.86,-22.3a101.12,101.12 0,0 0,-2.75 -10.7c-0.9,-2.63 -1.67,-6.36 -4.69,-7.15a2.33,2.33 0,0 0,-2.56 1c-1.61,2.43 0.07,5.91 0.61,8.51 0.72,3.44 1.41,6.88 2,10.34 1.3,7.72 2.34,15.48 4.21,23.09 1.82,7.4 4.18,14.7 6.16,22.06a223.44,223.44 0,0 0,6.89 22.1,4.86 4.86,0 0,0 4.4,3.35 3.63,3.63 0,0 0,3.22 -1.33C253.38,174.93 254.18,173.24 253.57,171.67Z"
android:fillColor="#363436"/>
<path
android:pathData="M573.94,181.89c-5.27,-8 -13.37,-13.17 -20.38,-19.46 -8.24,-7.39 -16,-15.3 -24.06,-22.86 -7.43,-7 -16,-12.54 -24.39,-18.21a88.8,88.8 0,0 0,-10.41 -6.1,52.52 52.52,0 0,1 -5.37,-3c-1.43,-0.93 -2.57,-2.14 -4.23,-2.62a2.36,2.36 0,0 0,-3 2.24c-0.76,6.44 10.93,11.27 15.06,14.39 8.05,6.09 16.62,11.76 23.93,18.75 7.79,7.45 15.21,15.27 23.09,22.62C551,173.91 560,179.27 565.17,187 568.78,192.42 577.57,187.37 573.94,181.89Z"
android:fillColor="#363436"/>
<path
android:pathData="M80.22,234.51c-2.36,-3.9 -9.25,-4.88 -13.32,-5.93 -4.69,-1.21 -9.93,-2.77 -14.81,-2.22 -6.1,0.69 -6.36,10.18 0,9.75 4.76,-0.32 9.32,0.95 13.91,2 4.06,1 10.28,2.88 13.79,-0.31A2.77,2.77 0,0 0,80.22 234.51Z"
android:fillColor="#363436"/>
<path
android:pathData="M40,226.12a3,3 0,1 0,3 3A3,3 0,0 0,40 226.12Z"
android:fillColor="#363436"/>
<path
android:pathData="M32.43,227.55h0C32.43,227.76 32.53,227.88 32.43,227.55Z"
android:fillColor="#363436"/>
<path
android:pathData="M32.41,227.5h0s0,0 0,0.06v-0.2a2.47,2.47 0,0 0,0.08 -0.6,2.57 2.57,0 0,0 0,-0.4 1.84,1.84 0,0 0,-0.07 -0.47l-0.06,-0.2A1.49,1.49 0,0 0,31 224.62c-1.7,-0.09 -2.76,1.59 -3,3.08a2.33,2.33 0,0 0,2.25 3,2.38 2.38,0 0,0 2.26,-3A1.18,1.18 0,0 1,32.41 227.5Z"
android:fillColor="#363436"/>
<path
android:pathData="M23.5,292.1l-0.36,-0.85 -0.52,-0.68a2.59,2.59 0,0 0,-1 -0.67,3.32 3.32,0 0,0 -5,1.85 3.86,3.86 0,0 0,0.35 3,3.75 3.75,0 0,0 2.2,1.72 3.56,3.56 0,0 0,3.94 -1.61,4.51 4.51,0 0,0 0.42,-1A3.43,3.43 0,0 0,23.5 292.1Z"
android:fillColor="#363436"/>
<path
android:pathData="M30.73,298.19a3.45,3.45 0,0 0,-0.39 -1.39,2.52 2.52,0 0,0 -1.3,-1.11 2.69,2.69 0,0 0,-1.77 -0.14,2.88 2.88,0 0,0 -1.88,1.69 4.61,4.61 0,0 0,-0.33 1.44,2.83 2.83,0 0,0 3.25,2.81A2.85,2.85 0,0 0,30.73 298.19Z"
android:fillColor="#363436"/>
<path
android:pathData="M87,337.65c-1.81,-1.19 -3.89,-1.35 -5.82,-2.33a43,43 0,0 1,-6.9 -4.69c-4.08,-3.23 -7.88,-6.9 -12.33,-9.63s-9.26,-5.38 -13.71,-8.38a58.34,58.34 0,0 1,-6.81 -5.2c-1.41,-1.28 -3.09,-3.36 -5.14,-3.28a2.11,2.11 0,0 0,-1.82 1c-2.23,4.52 5.37,9.4 8.28,11.61 5,3.79 10.34,7 15.57,10.41 4.81,3.16 8.89,7.4 13.47,10.88 3.6,2.74 10.62,8.24 15.21,4.84A3.1,3.1 0,0 0,87 337.65Z"
android:fillColor="#363436"/>
<path
android:pathData="M137.36,710.7c-0.08,-0.13 -0.15,-0.26 -0.22,-0.4l0,0.1a3.65,3.65 0,0 0,-1.28 -1.4,3.23 3.23,0 0,0 -3,-0.17 3.36,3.36 0,0 0,-1.61 4.77,6.58 6.58,0 0,0 0.87,1.1 3.31,3.31 0,0 0,5.19 -4Z"
android:fillColor="#f0006b"/>
<path
android:pathData="M133,721.76a3.4,3.4 0,0 0,-1.69 -0.71,3.36 3.36,0 0,0 -2.28,0.43 4.29,4.29 0,0 0,-1.21 1.19,3.61 3.61,0 0,0 0.48,4.43 3.75,3.75 0,0 0,3.49 0.92,3.69 3.69,0 0,0 2.5,-2.5A3.6,3.6 0,0 0,133 721.76Z"
android:fillColor="#f0006b"/>
<path
android:pathData="M338.74,555.74c-2.76,2.06 -6.91,4.1 -8.15,7.51 -1,2.79 2.83,4.63 4.75,2.77 0.92,-0.88 1.93,-2.07 3.15,-3.1S340.86,561 342,560C344.3,558 341.21,553.89 338.74,555.74Z"
android:fillColor="#f0006b"/>
<path
android:pathData="M358.37,562.36a3.56,3.56 0,0 0,-4.19 0.41c-2.48,2.28 -4.86,4.67 -7.18,7.11 -0.57,0.55 -1.12,1.12 -1.64,1.73 -2.84,3.35 1.74,8.14 4.9,4.9l0.16,-0.17c3.47,-1.59 6.37,-5.3 8.51,-8.35l0.56,-0.52A3.08,3.08 0,0 0,358.37 562.36Z"
android:fillColor="#f0006b"/>
</vector>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/dot_dark" android:state_selected="true" />
<item android:drawable="@drawable/dot_light" />
</selector>

View File

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.m2049r.xmrwallet.onboarding.OnBoardingActivity"
tools:layout_editor_absoluteY="25dp">
<Button
android:id="@+id/buttonNext"
style="@style/MoneroButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:clipToPadding="false"
android:elevation="4dp"
android:text="@string/onboarding_button_next"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="@color/white"
android:clipToPadding="false"
android:elevation="2dp"
app:layout_constraintBottom_toTopOf="@+id/tabLayout"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<android.support.design.widget.TabLayout
android:id="@+id/tabLayout"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:clipToPadding="false"
android:elevation="2dp"
app:layout_constraintBottom_toTopOf="@+id/buttonNext"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:tabBackground="@drawable/onboarding_dots"
app:tabGravity="center"
app:tabIndicatorHeight="0dp" />
</android.support.constraint.ConstraintLayout>

View File

@ -0,0 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white">
<ImageView
android:id="@+id/onboardingImage"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="32dp"
android:layout_marginTop="32dp"
android:layout_marginEnd="32dp"
android:layout_marginBottom="32dp"
app:layout_constraintBottom_toTopOf="@+id/onboardingTitle"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/gunther_24dp" />
<TextView
android:id="@+id/onboardingInformation"
style="@style/MoneroText.Info"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="32dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="32dp"
android:layout_marginBottom="8dp"
android:gravity="center"
android:lineSpacingMultiplier="1.2"
app:layout_constraintBottom_toTopOf="@+id/onboardingAgree"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/onboardingTitle"
tools:text="@string/onboarding_fpsend_information" />
<android.support.constraint.Guideline
android:id="@+id/guideline"
android:layout_width="0dp"
android:layout_height="0dp"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.6" />
<TextView
android:id="@+id/onboardingTitle"
style="@style/MoneroText.Balance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@id/guideline"
tools:text="@string/onboarding_fpsend_title" />
<CheckBox
android:id="@+id/onboardingAgree"
style="@style/MoneroLabel.Caps.Black"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginBottom="16dp"
android:text="@string/onboarding_agree"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/onboardingInformation" />
</android.support.constraint.ConstraintLayout>

View File

@ -15,7 +15,7 @@
<color name="moneroWhite">#ffffff</color>
<color name="moneroBlack">#000000</color>
<color name="moneroBlue">#1F4E97</color>
<color name="moneroBlue">#1f4e97</color>
<color name="moneroGray">#FD9B9B9B</color>
<color name="moneroStreetA">#D81F0759</color>

View File

@ -438,4 +438,20 @@
<string name="toast_ledger_start_app">Start Monero App on %1$s</string>
<string name="menu_rescan">Rescan!</string>
<string name="onboarding_agree">I get it!</string>
<string name="onboarding_button_next">Next</string>
<string name="onboarding_welcome_title">Welcome to Monerujo!</string>
<string name="onboarding_welcome_information">This app allows you to create and use Monero wallets. You can store your sweet Monero (XMR) in them.</string>
<string name="onboarding_seed_title">Write down your seed</string>
<string name="onboarding_seed_information">Your seed is secret and we cannot help you recover it. It unlocks your money to whoever has it. If you lose it, you lose your beloved Monero.</string>
<string name="onboarding_xmrto_title">Send Bitcoin</string>
<string name="onboarding_xmrto_information">Monerujo has XMR.to support builtin. You can send BTC by spending XMR. Just paste or scan a BTC address when sending.</string>
<string name="onboarding_nodes_title">Nodes, your way</string>
<string name="onboarding_nodes_information">Nodes connect you to the Monero network. Choose between searching for public nodes or go full cypherpunk using your own.</string>
<string name="onboarding_fpsend_title">Send with fingerprint</string>
<string name="onboarding_fpsend_information">You\'ll be able to authorize sending XMR with just your fingerprint.
If you prefer to secure sending by password, please disable fingerprint access for that wallet.</string>
</resources>

View File

@ -34,4 +34,5 @@ ext {
mockitoVersion = '1.10.19'
timberVersion = '4.7.1'
supportVersion = '28.0.0'
constraintVersion = "2.0.1"
}