add interfaces

parent cb0f7a9e
package com.appsnipp.education;
import android.content.Intent;
import android.os.Build;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.CompoundButton;
import android.widget.Spinner;
import android.widget.Switch;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.ToggleButton;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.logging.Level;
import java.util.logging.Logger;
import android.widget.Toast;
import com.squareup.okhttp.Callback;
import com.squareup.okhttp.OkHttpClient;
import com.squareup.okhttp.Request;
import com.squareup.okhttp.Response;
import java.sql.CallableStatement;
import java.sql.DriverManager;
import java.sql.Types;
import java.sql.Connection;
import java.sql.DriverManager;
public class Loging extends AppCompatActivity {
//
// EditText textInputEditTextUsername,textInputEditTextPassword;
Button buttonLogin;
TextView textViewLoging;
ProgressBar progressBar;
Intent i;
Connection conexion=null;
TextView textUsername,textPassword;
String Confirmusername;
String Confirmpassword;
private OkHttpClient mclient;
private String strURL;
//="http://192.168.8.103:8000/api/login?username=hasith&user_pass=1234";//GET
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//for changing status bar icon colors
if(Build.VERSION.SDK_INT>= Build.VERSION_CODES.M){
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
}
setContentView(R.layout.activity_loging);
textUsername = (TextView) findViewById(R.id.editTextusername);
textPassword = (TextView) findViewById(R.id.editTextPassword);
Button sendButton = (Button) findViewById(R.id.cirLoginButton);
sendButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Confirmusername=textUsername.getText().toString();
Confirmpassword=textPassword.getText().toString();
strURL ="http://192.168.1.6:8000/api/login?username="+Confirmusername+"&user_pass="+Confirmpassword;
mclient=new OkHttpClient();
Request request= new Request.Builder().url(strURL).build();
mclient.newCall(request).enqueue(new Callback() {
@Override
public void onFailure(Request request, IOException e) {
}
@Override
public void onResponse(Response response) throws IOException {
if(response.isSuccessful())
{
String strJson=response.body().string();
System.out.println(strJson);
if(strJson.equals("ok")==true){
//Toast.makeText(Loging.this, "You form is sucessfull", Toast.LENGTH_SHORT).show();
Intent k = new Intent(Loging.this, MainActivity.class);
startActivity(k);
finish();
}
}else{
System.out.println("fail");
}
}
});
}
});
}
//
public void onLoginClick(View View){
startActivity(new Intent(this,SignUp.class));
overridePendingTransition(R.anim.slide_in_right,R.anim.stay);
}
}
package com.appsnipp.education;
import android.app.DatePickerDialog;
import android.content.Intent;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.icu.util.Calendar;
import android.os.Build;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.Layout;
import android.util.Log;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.DatePicker;
import android.widget.TextView;
import android.widget.Toast;
import android.icu.util.Calendar;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.time.Month;
import java.time.Year;
import retrofit2.Call;
import retrofit2.Callback;
import retrofit2.Response;
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;
public class SignUp extends AppCompatActivity {
TextView textName20;
TextView textName21;
TextView textName22;
TextView textName23;
TextView textName24;
TextView textName25;
TextView textName26;
TextView text27;
private DatePickerDialog.OnDateSetListener mDateSetListener;
private static final String TAG = "MainActivity";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_sign_up);
changeStatusBarColor();
textName20 = (TextView) findViewById(R.id.editTextNameSignUp);
textName21 = (TextView) findViewById(R.id.editTextEmailSignUp);
textName22 = (TextView) findViewById(R.id.editTextFirstnameSignUp);
textName23 = (TextView) findViewById(R.id.editTextLastnameSignUp);
textName24 = (TextView) findViewById(R.id.editTextpaswordSignup);
textName25 = (TextView) findViewById(R.id.editTextConfirmpaswordSignUp);
textName26 = (TextView) findViewById(R.id.editTextDateOfBirthdaySignUp);
textName26.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@RequiresApi(api = Build.VERSION_CODES.N)
@Override
public void onFocusChange(View v, boolean hasFocus) {
if(hasFocus) {
Calendar cal = Calendar.getInstance();
int year = cal.get(Calendar.YEAR);
int month = cal.get(Calendar.MONTH);
int day = cal.get(Calendar.DAY_OF_MONTH);
DatePickerDialog dialog=new DatePickerDialog(SignUp.this, android.R.style.Theme_Holo_Light_Dialog_MinWidth,mDateSetListener,year,month,day);
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
dialog.show();
} else {
// Hide your calender here
}
}
});
// textName26.setOnClickListener(new View.OnClickListener() {
// @RequiresApi(api = Build.VERSION_CODES.N)
// @Override
// public void onClick(View view) {
//
//
// }
// });
mDateSetListener = new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePicker datePicker, int year, int month, int day) {
month = month + 1;
Log.d(TAG, "onDateSet: mm/dd/yyy: " + month + "/" + day + "/" + year);
String date = year+"-"+month+"-"+ day;
textName26.setText(date);
}
};
final Button button = findViewById(R.id.cirRegisterButton);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
if (textName20 .getText().toString().isEmpty() || textName21.getText().toString().isEmpty() || textName22.getText().toString().isEmpty()||
textName23.getText().toString().isEmpty() ||
textName24.getText().toString().isEmpty() ||
textName25.getText().toString().isEmpty()){
// textName26.getText().toString().isEmpty()) {
System.out.println("HY1");
Toast.makeText(SignUp.this, "Please enter All the values", Toast.LENGTH_SHORT).show();
return;
}else{
System.out.println("HY2");
postData1(textName20.getText().toString(), textName21.getText().toString(),textName22.getText().toString(),textName23.getText().toString(),textName24.getText().toString(),textName25.getText().toString(),textName26.getText().toString());
String FullName = textName22.getText().toString()+" "+textName23.getText().toString();
FileOutputStream outputStream;
try{
outputStream = openFileOutput("myfile",MODE_PRIVATE);
outputStream.write(FullName.getBytes());
outputStream.close();
}catch (Exception e){
e.printStackTrace();
}
Toast.makeText(SignUp.this, "Your Registration is sucessfull", Toast.LENGTH_SHORT).show();
}
}
});
}
private void postData1(String username,
String email, String first_name,String last_name,String password,String password2,String date_of_birth
){
// builder and passing our base url
Retrofit retrofit1 = new Retrofit.Builder()
.baseUrl("http://192.168.1.6:8000/api/")
.addConverterFactory(GsonConverterFactory.create())
.build();
RetrofitAPI1 retrofitAPI1 = retrofit1.create(RetrofitAPI1.class);
////
DataModal1 modal1 = new DataModal1(username,email,first_name,last_name,password,password2,date_of_birth);
////
Call<DataModal1> call1 = retrofitAPI1.createPost1(modal1);
////
////
////
call1.enqueue(new Callback<DataModal1>() {
@Override
public void onResponse(Call<DataModal1> call1, Response<DataModal1> response) {
// this method is called when we get response from our api.
Toast.makeText(SignUp.this, "Data added to API", Toast.LENGTH_SHORT).show();
DataModal1 responseFromAPI1 = response.body();
}
//
@Override
public void onFailure(Call<DataModal1> call1, Throwable t) {
// setting text to our text view when
// we get error response from API.
Toast.makeText(SignUp.this, "Data can't added to API", Toast.LENGTH_SHORT).show();
}
});
}
private void changeStatusBarColor() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
// window.setStatusBarColor(Color.TRANSPARENT);
window.setStatusBarColor(getResources().getColor(R.color.register_bk_color));
}
}
public void onLoginClick(View view){
startActivity(new Intent(this,Loging.class));
overridePendingTransition(R.anim.slide_in_left,android.R.anim.slide_out_right);
}
}
\ No newline at end of file
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate android:fromXDelta="-100%p" android:toXDelta="0"
android:duration="@android:integer/config_mediumAnimTime"/>
</set>
\ No newline at end of file
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate android:fromXDelta="100%p" android:toXDelta="0"
android:duration="@android:integer/config_mediumAnimTime"/>
</set>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="@android:integer/config_longAnimTime"
android:fromYDelta="0%p"
android:toYDelta="0%p" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:color="@color/bottomNavigationSelectedColor" />
<item android:state_checked="false" android:color="@color/bottomNavigationTintColor"/>
</selector>
\ No newline at end of file
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M19,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM17,13h-4v4h-2v-4L7,13v-2h4L11,7h2v4h4v2z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM17,13h-4v4h-2v-4L7,13v-2h4L11,7h2v4h4v2z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M12,12m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0" />
<path
android:fillColor="#FF000000"
android:pathData="M9,2L7.17,4H4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V6c0,-1.1 -0.9,-2 -2,-2h-3.17L15,2H9zm3,15c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M22,16V4c0,-1.1 -0.9,-2 -2,-2H8c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2zm-11,-4l2.03,2.71L16,11l4,5H8l3,-4zM2,6v14c0,1.1 0.9,2 2,2h14v-2H4V6H2z" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M22.7,19l-9.1,-9.1c0.9,-2.3 0.4,-5 -1.5,-6.9 -2,-2 -5,-2.4 -7.4,-1.3L9,6 6,9 1.6,4.7C0.4,7.1 0.9,10.1 2.9,12.1c1.9,1.9 4.6,2.4 6.9,1.5l9.1,9.1c0.4,0.4 1,0.4 1.4,0l2.3,-2.3c0.5,-0.4 0.5,-1.1 0.1,-1.4z" />
</vector>
\ No newline at end of file
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M2.01,21L23,12 2.01,3 2,10l15,2 -15,2z" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M18,16.08c-0.76,0 -1.44,0.3 -1.96,0.77L8.91,12.7c0.05,-0.23 0.09,-0.46 0.09,-0.7s-0.04,-0.47 -0.09,-0.7l7.05,-4.11c0.54,0.5 1.25,0.81 2.04,0.81 1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3 -3,1.34 -3,3c0,0.24 0.04,0.47 0.09,0.7L8.04,9.81C7.5,9.31 6.79,9 6,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.79,0 1.5,-0.31 2.04,-0.81l7.12,4.16c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.61 1.31,2.92 2.92,2.92 1.61,0 2.92,-1.31 2.92,-2.92s-1.31,-2.92 -2.92,-2.92z" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M4,6H2v14c0,1.1 0.9,2 2,2h14v-2H4V6zm16,-4H8c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4c0,-1.1 -0.9,-2 -2,-2zm-8,12.5v-9l6,4.5 -6,4.5z" />
</vector>
......@@ -2,15 +2,19 @@
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
android:viewportHeight="108"
android:viewportWidth="108">
<path
android:fillType="evenOdd"
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
android:strokeColor="#00000000"
android:strokeWidth="1">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:endX="78.5885"
android:endY="90.9159"
android:startX="48.7653"
android:startY="61.0927"
android:type="linear">
<item
android:color="#44000000"
......@@ -24,7 +28,7 @@
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>
\ No newline at end of file
android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
android:strokeColor="#00000000"
android:strokeWidth="1" />
</vector>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<solid android:color="@android:color/white" />
<stroke android:width="1dip" android:color="#4fa5d5"/>
</shape>
\ No newline at end of file
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="30dp"
android:height="30dp"
android:viewportWidth="30.0"
android:viewportHeight="30.0">
<path
android:pathData="M15,15m-15,0a15,15 0,1 1,30 0a15,15 0,1 1,-30 0"
android:fillColor="#fff"/>
<path
android:pathData="M23,14L10.8,14l5.6,-5.6L15,7 7,15l8,8 1.4,-1.4L10.8,16L23,16Z"
android:fillColor="#707070"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners
android:radius="26dp" />
<solid
android:color="#00ADC1"/>
<padding
android:left="10dp"
android:top="0dp"
android:right="0dp"
android:bottom="0dp" />
<size
android:width="182dp"
android:height="40dp" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<gradient
android:angle="0"
android:centerX="0%"
android:centerColor="#0D93C1"
android:startColor="#0C78D5"
android:endColor="#0EAFAD"
android:type="linear"
/>
<padding
android:left="0dp"
android:top="0dp"
android:right="0dp"
android:bottom="0dp"
/>
<size
android:width="270dp"
android:height="60dp"
/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners
android:radius="26dp"
/>
<gradient
android:angle="0"
android:centerX="0%"
android:centerColor="#0D93C2"
android:startColor="#0C74D9"
android:endColor="#0EB3AA"
android:type="linear"
/>
<padding
android:left="0dp"
android:top="0dp"
android:right="0dp"
android:bottom="0dp"
/>
<size
android:width="182dp"
android:height="40dp"
/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape
android:shape="ring"
android:thicknessRatio="7"
android:useLevel="false">
<solid android:color="#DDD" />
</shape>
</item>
<item android:id="@android:id/progress">
<rotate
android:fromDegrees="270"
android:toDegrees="270">
<shape
android:shape="ring"
android:thicknessRatio="7"
android:useLevel="true">
<gradient
android:endColor="@color/colorPrimary"
android:startColor="@color/colorAccent"
android:type="sweep" />
</shape>
</rotate>
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners
android:radius="10dp"
/>
<gradient
android:angle="0"
android:centerX="0%"
android:centerColor="#8E9293"
android:startColor="#F6F6F6"
android:endColor="#D5DDDD"
android:type="linear"
/>
<padding
android:left="0dp"
android:top="0dp"
android:right="0dp"
android:bottom="0dp"
/>
<size
android:width="182dp"
android:height="40dp"
/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners
android:radius="15dp"
/>
<gradient
android:angle="0"
android:centerX="0%"
android:startColor="#FF416C"
android:endColor="#8A52E9"
android:type="linear"
/>
<size
android:width="334dp"
android:height="100dp"
/>
</shape>
\ No newline at end of file
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="40dp"
android:height="126dp"
android:viewportWidth="40.292"
android:viewportHeight="126.85">
<path
android:pathData="M40.29,-0l-0.09,126.85a14.73,14.73 63.47,0 0,-5.87 -11.41c-15.61,-8.98 -34.88,-31.26 -34.32,-53.3 0.6,-23.46 22.29,-39.97 34.32,-51.53A22.57,22.57 95.8,0 0,40.29 -0Z"
android:fillColor="#11cfc5"/>
<path
android:pathData="M32.36,61.09L24.85,61.09L24.85,53.57A1.35,1.35 0,0 0,23.45 52.48,1.35 1.35,0 0,0 22.05,53.57L22.05,61.09L14.53,61.09A1.35,1.35 0,0 0,13.45 62.48a1.35,1.35 0,0 0,1.09 1.4L22.05,63.88v7.52A1.35,1.35 0,0 0,23.45 72.48a1.35,1.35 0,0 0,1.4 -1.09L24.85,63.88h7.52A1.35,1.35 0,0 0,33.45 62.48,1.35 1.35,0 0,0 32.36,61.09Z"
android:fillColor="#fcfcfc"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="35dp"
android:height="110dp"
android:viewportWidth="35.022"
android:viewportHeight="110.257">
<path
android:pathData="M-0,-0l0.08,110.26a12.8,12.8 93.91,0 1,5.1 -9.92c13.56,-7.81 30.32,-27.17 29.83,-46.33 -0.52,-20.39 -19.37,-34.74 -29.83,-44.79A19.61,19.61 60.14,0 1,-0 -0Z"
android:fillColor="#fcfcfc"/>
<path
android:pathData="M25.47,54.19L13.27,54.19l5.6,-5.6L17.47,47.19 9.47,55.19l8,8 1.4,-1.4L13.27,56.19L25.47,56.19Z"
android:fillColor="#11cfc5"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="#585858"
android:pathData="M11.8,10.9c-2.27,-0.59 -3,-1.2 -3,-2.15 0,-1.09 1.01,-1.85 2.7,-1.85 1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-1.94,0.42 -3.5,1.68 -3.5,3.61 0,2.31 1.91,3.46 4.7,4.13 2.5,0.6 3,1.48 3,2.41 0,0.69 -0.49,1.79 -2.7,1.79 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c1.95,-0.37 3.5,-1.5 3.5,-3.55 0,-2.84 -2.43,-3.81 -4.7,-4.4z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="#585858"
android:pathData="M20,0L4,0v2h16L20,0zM4,24h16v-2L4,22v2zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM12,6.75c1.24,0 2.25,1.01 2.25,2.25s-1.01,2.25 -2.25,2.25S9.75,10.24 9.75,9 10.76,6.75 12,6.75zM17,17L7,17v-1.5c0,-1.67 3.33,-2.5 5,-2.5s5,0.83 5,2.5L17,17z"
tools:ignore="VectorRaster" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="#585858"
android:pathData="M16,11c1.66,0 2.99,-1.34 2.99,-3S17.66,5 16,5c-1.66,0 -3,1.34 -3,3s1.34,3 3,3zM8,11c1.66,0 2.99,-1.34 2.99,-3S9.66,5 8,5C6.34,5 5,6.34 5,8s1.34,3 3,3zM8,13c-2.33,0 -7,1.17 -7,3.5L1,19h14v-2.5c0,-2.33 -4.67,-3.5 -7,-3.5zM16,13c-0.29,0 -0.62,0.02 -0.97,0.05 1.16,0.84 1.97,1.97 1.97,3.45L17,19h6v-2.5c0,-2.33 -4.67,-3.5 -7,-3.5z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="#585858"
android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5h-11c-0.66,0 -1.21,0.42 -1.42,1.01L3,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,13 6.5,13s1.5,0.67 1.5,1.5S7.33,16 6.5,16zM17.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,11l1.5,-4.5h11L19,11L5,11z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="60dp"
android:height="60dp"
android:viewportWidth="60.0"
android:viewportHeight="60.0">
<path
android:pathData="M16,0L44,0A16,16 0,0 1,60 16L60,44A16,16 0,0 1,44 60L16,60A16,16 0,0 1,0 44L0,16A16,16 0,0 1,16 0z">
<aapt:attr name="android:fillColor">
<gradient
android:startY="0.0"
android:startX="30.0"
android:endY="60.0"
android:endX="30.0"
android:type="linear">
<item android:offset="0.0" android:color="#FF86D6A0" />
<item android:offset="1.0" android:color="#FF26E2F1" />
</gradient></aapt:attr></path>
<path
android:pathData="M37.5,16.69L37.5,13.16A2.98,2.98 0,0 0,34.75 10h-22A2.98,2.98 0,0 0,10 13.16L10,27.05a3.02,3.02 0,0 0,2.47 3.13l2.07,6.16a2.65,2.65 0,0 0,3.56 1.81L31,32.44a10.31,10.31 0,0 0,0.69 8.1l0.32,0.58v6.13a0.6,0.6 0,0 0,0.55 0.63h9.9a0.6,0.6 0,0 0,0.55 -0.63L43,26.41a8.92,8.92 0,0 0,-2.11 -5.82ZM37.5,20.47 L39.17,25.44a1.99,1.99 0,0 1,-0.95 2.45l-0.95,0.42a3.56,3.56 0,0 0,0.23 -1.26ZM11.1,27.05L11.1,13.16A1.78,1.78 0,0 1,12.75 11.26h22A1.78,1.78 0,0 1,36.4 13.16L36.4,17.17h0l0,0.01v9.86a2.19,2.19 0,0 1,-0.04 0.33l-5.04,-5.78a2.67,2.67 0,0 0,-4.08 -0.02,3.73 3.73,0 0,0 -0.16,4.68l2.15,2.69L12.75,28.94A1.78,1.78 0,0 1,11.1 27.05ZM18.15,30.21L14.24,31.93l-0.58,-1.73ZM17.69,36.97A1.59,1.59 0,0 1,15.56 35.88l-0.93,-2.77 6.57,-2.9v0h9.05l0.71,0.89ZM41.9,46.62L33.1,46.62L33.1,41.57h8.8ZM41.9,40.31L32.85,40.31l-0.24,-0.44a8.88,8.88 0,0 1,-0.14 -8.09,0.7 0.7,0 0,0 -0.07,-0.74L27.9,25.4a2.33,2.33 0,0 1,0.09 -2.94,1.67 1.67,0 0,1 2.56,0.03l8.76,10.06 0.78,-0.89 -2.04,-2.34 0.56,-0.25A3.32,3.32 0,0 0,40.2 24.99l-1.86,-5.55 1.78,2.05A7.55,7.55 0,0 1,41.9 26.41ZM41.9,40.31"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M16.27,18.84A1.55,1.55 0,0 0,17.7 17.2L17.7,14.17A1.55,1.55 0,0 0,16.27 12.53L13.63,12.53a1.55,1.55 0,0 0,-1.43 1.64v3.03a1.55,1.55 0,0 0,1.43 1.64ZM13.3,17.2v-0.88h1.1L14.4,15.05L13.3,15.05v-0.88a0.36,0.36 0,0 1,0.33 -0.38h2.64a0.36,0.36 0,0 1,0.33 0.38v0.88L15.5,15.05v1.26h1.1v0.88a0.36,0.36 0,0 1,-0.33 0.38L13.63,17.58A0.36,0.36 0,0 1,13.3 17.2ZM13.3,17.2"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M12.75,20.73h2.2v1.26h-2.2ZM12.75,20.73"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M12.75,24.52h2.2v1.26h-2.2ZM12.75,24.52"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M22.65,24.52h2.2v1.26h-2.2ZM22.65,24.52"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M16.05,20.73h2.2v1.26h-2.2ZM16.05,20.73"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M19.35,20.73h2.2v1.26h-2.2ZM19.35,20.73"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M22.65,20.73h2.2v1.26h-2.2ZM22.65,20.73"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M33.1,13.16h1.1v1.89h-1.1ZM33.1,13.16"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M30.9,13.16h1.1v1.89h-1.1ZM30.9,13.16"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M28.7,13.16h1.1v1.89h-1.1ZM28.7,13.16"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M26.5,13.16h1.1v1.89h-1.1ZM26.5,13.16"
android:fillColor="#fdfcfc"/>
<path
android:pathData="M34.2,42.83h1.1v1.26h-1.1ZM34.2,42.83"
android:fillColor="#fdfcfc"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="60dp"
android:height="60dp"
android:viewportWidth="60.0"
android:viewportHeight="60.0">
<path
android:pathData="M16,0L44,0A16,16 0,0 1,60 16L60,44A16,16 0,0 1,44 60L16,60A16,16 0,0 1,0 44L0,16A16,16 0,0 1,16 0z">
<aapt:attr name="android:fillColor">
<gradient
android:startY="0.0"
android:startX="30.0"
android:endY="60.0"
android:endX="30.0"
android:type="linear">
<item android:offset="0.0" android:color="#FF28B4BB" />
<item android:offset="1.0" android:color="#FF80D2A0" />
</gradient></aapt:attr></path>
<path
android:pathData="M15.52,42.16a0.63,0.63 0,0 0,-0.92 0,0.71 0.71,0 0,0 0,0.97 0.63,0.63 0,0 0,0.92 0,0.71 0.71,0 0,0 0,-0.97Z"
android:fillColor="#fcfbfb"/>
<path
android:pathData="M40.48,23.53a0.63,0.63 0,0 0,-0.92 0,0.71 0.71,0 0,0 0,0.97 0.63,0.63 0,0 0,0.92 0,0.71 0.71,0 0,0 0,-0.97Z"
android:fillColor="#fcfbfb"/>
<path
android:pathData="M43.05,11.2A0.63,0.63 0,0 0,42.59 11L26.62,11a0.67,0.67 0,0 0,-0.65 0.69L25.97,13.65L19.82,15.38a0.69,0.69 0,0 0,-0.46 0.84l3.19,12.56L19.79,31.69a1.92,1.92 0,0 0,-1.61 -0.9L11.95,30.79A2.01,2.01 0,0 0,10 32.85L10,44.02a2.01,2.01 0,0 0,1.95 2.06L18.18,46.07a1.97,1.97 0,0 0,1.89 -1.56l0.77,0.71a3.17,3.17 0,0 0,2.15 0.85L42.59,46.07a0.67,0.67 0,0 0,0.65 -0.69L43.24,11.69A0.7,0.7 0,0 0,43.05 11.2ZM18.83,44.02a0.67,0.67 0,0 1,-0.65 0.69L11.95,44.7a0.67,0.67 0,0 1,-0.65 -0.69L11.3,32.85a0.67,0.67 0,0 1,0.65 -0.69L14.41,32.17v7.89a0.65,0.65 0,1 0,1.3 0L15.71,32.17L18.18,32.17a0.67,0.67 0,0 1,0.65 0.69L18.83,44.02ZM20.78,16.53l5.19,-1.47L25.97,17.6l-0.44,0.12a0.65,0.65 0,0 0,-0.39 0.32,0.72 0.72,0 0,0 -0.06,0.52 1.86,1.86 0,0 1,-1.24 2.26,0.65 0.65,0 0,0 -0.4,0.32 0.72,0.72 0,0 0,-0.06 0.52l2.53,9.89h-1.3l-0.67,-2.77a0.7,0.7 0,0 0,-0.11 -0.24ZM25.97,20.74v5.78L24.79,21.9A3.11,3.11 0,0 0,25.97 20.74ZM35.29,44.7L22.99,44.7a1.91,1.91 0,0 1,-1.3 -0.51l-1.57,-1.44L20.13,33.27l2.83,-2.99 0.51,2.12a0.66,0.66 0,0 0,0.63 0.51L36.87,32.92a0.96,0.96 0,0 1,0 1.92h-6.54a0.69,0.69 0,0 0,0 1.37h8.57a0.96,0.96 0,0 1,0 1.92L30.33,38.13a0.69,0.69 0,0 0,0 1.37h7.18a0.96,0.96 0,0 1,0 1.92L30.33,41.41a0.69,0.69 0,0 0,0 1.37L35.29,42.78a0.96,0.96 0,0 1,0 1.92ZM41.94,44.7L37.31,44.7a2.44,2.44 0,0 0,0 -1.92h0.2a2.27,2.27 0,0 0,2.21 -2.33,2.42 2.42,0 0,0 -0.23,-1.04 2.32,2.32 0,0 0,1.62 -2.24,2.4 2.4,0 0,0 -0.44,-1.39L40.67,27.1a0.65,0.65 0,1 0,-1.3 0v7.79a2.1,2.1 0,0 0,-0.47 -0.05h-0.02a2.42,2.42 0,0 0,0.2 -0.96,2.27 2.27,0 0,0 -2.21,-2.33L35.82,31.55a3.29,3.29 0,0 0,1.89 -3.01,3.11 3.11,0 1,0 -6.21,0A3.29,3.29 0,0 0,33.38 31.55L29.83,31.55L29.83,18.52A3.14,3.14 0,0 0,32.16 16.07h4.88A3.14,3.14 0,0 0,39.37 18.52v2.13a0.65,0.65 0,1 0,1.3 0L40.67,17.91a0.67,0.67 0,0 0,-0.65 -0.69,1.8 1.8,0 0,1 -1.75,-1.84 0.67,0.67 0,0 0,-0.65 -0.69L31.58,14.7a0.67,0.67 0,0 0,-0.65 0.69,1.8 1.8,0 0,1 -1.75,1.84 0.67,0.67 0,0 0,-0.65 0.69L28.54,31.55L27.27,31.55L27.27,12.37L41.94,12.37ZM34.6,30.44a1.91,1.91 0,1 1,1.81 -1.91A1.86,1.86 0,0 1,34.6 30.44Z"
android:fillColor="#fcfbfb"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="60dp"
android:height="60dp"
android:viewportWidth="60.0"
android:viewportHeight="60.0">
<path
android:pathData="M16,0L44,0A16,16 0,0 1,60 16L60,44A16,16 0,0 1,44 60L16,60A16,16 0,0 1,0 44L0,16A16,16 0,0 1,16 0z">
<aapt:attr name="android:fillColor">
<gradient
android:startY="0.0"
android:startX="30.0"
android:endY="60.0"
android:endX="30.0"
android:type="linear">
<item android:offset="0.0" android:color="#FF01FEF3" />
<item android:offset="1.0" android:color="#FF01FFAE" />
</gradient></aapt:attr></path>
<path
android:pathData="M18.54,18.7a0.45,0.45 0,0 1,-0.35 -0.19L16.4,16.23a2.29,2.29 0,0 1,0 -2.69,1.31 1.31,0 0,1 2.12,0l1.79,2.28a0.76,0.76 0,0 1,0 0.9l-1.41,1.8A0.45,0.45 0,0 1,18.54 18.7ZM17.46,14.25a0.45,0.45 0,0 0,-0.35 0.19,0.76 0.76,0 0,0 0,0.9l1.44,1.83 0.71,-0.9 -1.44,-1.83A0.45,0.45 0,0 0,17.46 14.25ZM17.46,14.25"
android:fillColor="#fdfbfb"/>
<path
android:pathData="M38,41.61a0.42,0.42 0,0 1,-0.23 -0.07l-2.91,-1.9a0.51,0.51 0,0 1,-0.13 -0.12l-3.82,-4.85a0.75,0.75 0,0 1,-0.14 -0.56,0.63 0.63,0 0,1 0.28,-0.47l0.08,-0.05a6.61,6.61 0,0 0,-0.28 -1.62,1.84 1.84,0 0,0 -1.58,-1.14 7.78,7.78 0,0 0,-1.2 -0.04,0.47 0.47,0 0,1 -0.36,-0.19L16.4,16.23a2.29,2.29 0,0 1,0 -2.69,1.31 1.31,0 0,1 2.12,0L36.85,36.82a0.65,0.65 0,0 1,0.09 0.16l1.5,3.7a0.77,0.77 0,0 1,-0.09 0.74A0.45,0.45 0,0 1,38 41.61ZM35.38,38.55 L36.84,39.5 36.09,37.65 32.02,32.48a10.09,10.09 0,0 1,0.13 1.49,0.76 0.76,0 0,1 -0.09,0.36ZM28.42,29.52a7.3,7.3 0,0 1,0.96 0.05,3.47 3.47,0 0,1 0.41,0.08L17.81,14.44a0.44,0.44 0,0 0,-0.71 0,0.76 0.76,0 0,0 0,0.9L28.27,29.52ZM28.42,29.52"
android:fillColor="#fdfbfb"/>
<path
android:pathData="M33.75,34.41a0.45,0.45 0,0 1,-0.35 -0.19l-1.83,-2.33a0.74,0.74 0,0 1,-0.14 -0.53l0.32,-3.04a1.74,1.74 0,0 0,-0.75 -1.37l-0.02,-0.01 -1.08,-0.53a0.93,0.93 0,0 0,-0.96 0.18l-0.58,0.5a0.42,0.42 0,0 1,-0.64 -0.08l-4.2,-5.34a0.76,0.76 0,0 1,-0.13 -0.61,0.59 0.59,0 0,1 0.35,-0.45l2.71,-0.93a5.08,5.08 0,0 1,5.19 1.09l2.46,2.16a6.29,6.29 0,0 1,1.9 5.02,0.8 0.8,0 0,1 -0.02,0.13l-1.07,4.83a2.28,2.28 0,0 1,-0.92 1.43A0.42,0.42 0,0 1,33.75 34.41ZM32.44,31.22 L33.79,32.93a1.17,1.17 0,0 0,0.15 -0.36l1.05,-4.77a4.85,4.85 0,0 0,-1.47 -3.82L31.07,21.82a4.25,4.25 0,0 0,-4.35 -0.91l-1.88,0.65 3.3,4.19 0.24,-0.21a1.75,1.75 0,0 1,1.86 -0.32l1.09,0.53a3.05,3.05 0,0 1,1.42 2.52,0.8 0.8,0 0,1 0,0.14ZM32.44,31.22"
android:fillColor="#fdfbfb"/>
<path
android:pathData="M18.55,37.13a3.99,3.99 0,0 1,-1.44 -0.28,6.59 6.59,0 0,1 -2.52,-1.84c-0.01,-0.01 -0.02,-0.02 -0.03,-0.03a1.01,1.01 0,0 0,-0.74 -0.36L13.5,34.62a0.58,0.58 0,0 1,-0.5 -0.63L13,24.46a0.58,0.58 0,0 1,0.5 -0.63h0.79a0.84,0.84 0,0 0,0.28 -0.05h0l6.93,-2.4a0.43,0.43 0,0 1,0.49 0.16l4.75,6.03a0.74,0.74 0,0 1,0.14 0.51,0.68 0.68,0 0,1 -0.22,0.47l-1.07,0.92c0.13,0.02 0.29,0.04 0.49,0.05l0.09,0.01c0.27,0.02 0.56,0.02 0.85,0.02l1.04,-0.02a8.46,8.46 0,0 1,1.31 0.05,2.79 2.79,0 0,1 2.39,1.9 8.96,8.96 0,0 1,0.38 2.5,0.68 0.68,0 0,1 -0.25,0.55 4.91,4.91 0,0 1,-0.72 0.44l-0.05,0.02a2.75,2.75 0,0 1,-0.28 0.11l-0.09,0.03a1.8,1.8 0,0 1,-0.28 0.06,0.63 0.63,0 0,1 -0.11,0.01 1.06,1.06 0,0 1,-0.42 -0.05,7.45 7.45,0 0,0 -2.37,-0.28 18.23,18.23 0,0 0,-3.56 0.35,9.96 9.96,0 0,0 -3.02,1.04l-0.14,0.08a4.9,4.9 0,0 1,-1.9 0.77A3.9,3.9 0,0 1,18.55 37.13ZM15.26,34.07h0a5.62,5.62 0,0 0,2.14 1.57,3.06 3.06,0 0,0 1.47,0.2 4.13,4.13 0,0 0,1.57 -0.66l0.14,-0.09a10.74,10.74 0,0 1,3.28 -1.14,19.03 19.03,0 0,1 3.71,-0.37 8.06,8.06 0,0 1,2.63 0.33,0.32 0.32,0 0,0 0.11,0.01 1.41,1.41 0,0 0,0.2 -0.04l0.06,-0.02a2,2 0,0 0,0.2 -0.08c0.13,-0.06 0.25,-0.13 0.34,-0.19a6.59,6.59 0,0 0,-0.28 -1.61,1.84 1.84,0 0,0 -1.58,-1.14 7.96,7.96 0,0 0,-1.2 -0.04l-1.03,0.02c-0.26,0 -0.6,0 -0.93,-0.02l-0.08,-0.01c-0.61,-0.04 -1.89,-0.13 -1.89,-1.26a0.7,0.7 0,0 1,0.22 -0.52l1.24,-1.07 -4.11,-5.22 -6.66,2.3a1.67,1.67 0,0 1,-0.55 0.09L14,25.08v8.26A1.97,1.97 0,0 1,15.26 34.07ZM15.26,34.07"
android:fillColor="#fdfbfb"/>
<path
android:pathData="M40,31.39h-3a0.65,0.65 0,0 1,0 -1.27h3a0.65,0.65 0,0 1,0 1.27ZM40,31.39"
android:fillColor="#fdfbfb"/>
<path
android:pathData="M40,33.93h-3a0.65,0.65 0,0 1,0 -1.27h3a0.65,0.65 0,0 1,0 1.27ZM40,33.93"
android:fillColor="#fdfbfb"/>
<path
android:pathData="M31.03,42.22a0.5,0.5 0,0 1,-0.42 -0.27,1.78 1.78,0 0,1 0.09,-1.62 3.36,3.36 0,0 0,0.3 -1.38,2.13 2.13,0 0,0 -0.8,-1.35 0.75,0.75 0,0 1,-0.09 -0.89,0.43 0.43,0 0,1 0.7,-0.12 3.35,3.35 0,0 1,1.2 2.24,4.06 4.06,0 0,1 -0.23,1.59 2.22,2.22 0,0 1,0.72 -0.15,4.28 4.28,0 0,1 1.73,0.7 0.72,0.72 0,0 1,0.24 0.85,0.46 0.46,0 0,1 -0.67,0.3 5.24,5.24 0,0 0,-1.27 -0.57,1.47 1.47,0 0,0 -0.96,0.42A0.86,0.86 0,0 1,31.03 42.22ZM31.03,42.22"
android:fillColor="#fdfbfb"/>
<path
android:pathData="M26.57,41.56a0.65,0.65 0,0 1,-0.19 -0.03,1 1,0 0,1 -0.56,-0.65 0.78,0.78 0,0 0,-0.09 -0.17c-0.07,-0.06 -0.37,0.08 -0.49,0.14l-0.08,0.04a0.48,0.48 0,0 1,-0.64 -0.38,0.69 0.69,0 0,1 0.3,-0.81l0.07,-0.03a1.23,1.23 0,0 1,1.36 -0.02,1.37 1.37,0 0,1 0.38,0.53 1.46,1.46 0,0 1,0.78 -0.51c0.47,-0.08 0.94,0.2 1.42,0.82a0.76,0.76 0,0 1,-0.01 0.9,0.43 0.43,0 0,1 -0.71,-0.01c-0.23,-0.3 -0.44,-0.47 -0.57,-0.45 -0.08,0.01 -0.18,0.12 -0.28,0.23A1.04,1.04 0,0 1,26.57 41.56ZM26.57,41.56"
android:fillColor="#fdfbfb"/>
<path
android:pathData="M22.5,40.92h-7a0.65,0.65 0,0 1,0 -1.27h7a0.65,0.65 0,0 1,0 1.27ZM22.5,40.92"
android:fillColor="#fdfbfb"/>
<path
android:pathData="M42.5,46L13.5,46A0.58,0.58 0,0 1,13 45.36L13,33.99a0.58,0.58 0,0 1,0.5 -0.63L13.83,33.35a1.6,1.6 0,0 1,0.4 0.05,1.88 1.88,0 0,1 0.73,0.37 2.42,2.42 0,0 1,0.31 0.3h0A5.62,5.62 0,0 0,17.4 35.65a3.06,3.06 0,0 0,1.47 0.2,4.14 4.14,0 0,0 1.57,-0.66l0.14,-0.08a9.25,9.25 0,0 1,2.46 -0.96c0.27,-0.07 0.55,-0.13 0.82,-0.19a18.78,18.78 0,0 1,2.78 -0.35q0.47,-0.02 0.93,-0.03a8.02,8.02 0,0 1,2.63 0.33,0.32 0.32,0 0,0 0.11,0.01 1.4,1.4 0,0 0,0.2 -0.04l0.06,-0.02a2.08,2.08 0,0 0,0.2 -0.08c0.11,-0.05 0.19,-0.1 0.26,-0.14h0l0.01,-0.01 0.05,-0.03v0l0.12,-0.07h0l0.2,0.48 0.2,-0.25 3.76,4.78 1.46,0.95 -0.75,-1.85L33.4,34.23a0.75,0.75 0,0 1,-0.14 -0.55,0.64 0.64,0 0,1 0.27,-0.47 1.03,1.03 0,0 0,0.42 -0.64l1.05,-4.76c0,-0.04 0,-0.09 0,-0.12a6.32,6.32 0,0 0,-0.03 -0.66,0.75 0.75,0 0,1 0.12,-0.5 0.46,0.46 0,0 1,0.38 -0.21L42.5,26.31a0.58,0.58 0,0 1,0.5 0.63L43,45.36A0.58,0.58 0,0 1,42.5 46ZM14,44.73L42,44.73L42,27.58L35.99,27.58c0,0.02 0,0.04 0,0.06a2.44,2.44 0,0 1,0 0.31,0.83 0.83,0 0,1 -0.02,0.13l-1.07,4.83a2.53,2.53 0,0 1,-0.4 0.92l2.35,2.99a0.65,0.65 0,0 1,0.09 0.16l1.5,3.7a0.77,0.77 0,0 1,-0.09 0.74,0.42 0.42,0 0,1 -0.58,0.12l-2.91,-1.9a0.51,0.51 0,0 1,-0.13 -0.12l-3.58,-4.55 -0.01,0a2.72,2.72 0,0 1,-0.28 0.11l-0.09,0.03a1.84,1.84 0,0 1,-0.28 0.06,0.63 0.63,0 0,1 -0.11,0.01 1.06,1.06 0,0 1,-0.42 -0.05,7.38 7.38,0 0,0 -2.37,-0.28q-0.45,0 -0.89,0.02a18.03,18.03 0,0 0,-2.66 0.33c-0.26,0.05 -0.52,0.11 -0.79,0.18a8.4,8.4 0,0 0,-2.24 0.87l-0.14,0.08a4.94,4.94 0,0 1,-1.9 0.77,3.88 3.88,0 0,1 -1.86,-0.25 6.59,6.59 0,0 1,-2.52 -1.84c-0.01,-0.01 -0.02,-0.02 -0.03,-0.03a1.4,1.4 0,0 0,-0.15 -0.14,1 1,0 0,0 -0.39,-0.2L14,34.64ZM14,44.73"
android:fillColor="#fdfbfb"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="60dp"
android:height="60dp"
android:viewportWidth="60.0"
android:viewportHeight="60.0">
<path
android:pathData="M16,0L44,0A16,16 0,0 1,60 16L60,44A16,16 0,0 1,44 60L16,60A16,16 0,0 1,0 44L0,16A16,16 0,0 1,16 0z">
<aapt:attr name="android:fillColor">
<gradient
android:startY="0.0"
android:startX="30.0"
android:endY="60.0"
android:endX="30.0"
android:type="linear">
<item android:offset="0.0" android:color="#FF9A78F0" />
<item android:offset="1.0" android:color="#FF26E2F1" />
</gradient></aapt:attr></path>
<path
android:pathData="M29.08,11.96c-0.36,0 -0.64,0.47 -0.64,1.04s0.29,1.04 0.64,1.04 0.64,-0.47 0.64,-1.04S29.43,11.96 29.08,11.96ZM29.08,11.96"
android:fillColor="#f2efef"/>
<path
android:pathData="M25.17,32.33a1.54,1.54 0,0 0,0 -1.48,0.49 0.49,0 0,0 -0.91,0 1.54,1.54 0,0 0,0 1.48A0.49,0.49 0,0 0,25.17 32.33ZM25.17,32.33"
android:fillColor="#f2efef"/>
<path
android:pathData="M17.42,49.2a0.49,0.49 0,0 0,0.91 0.01L21.46,44.23a4.64,4.64 0,0 0,0.46 -3.24l0.67,-1.05a1.65,1.65 0,0 1,1.34 -0.88L32.5,39.07a4.96,4.96 0,0 0,4.05 -2.66c0.05,-0.07 -0.34,0.66 5.85,-11.3a6.11,6.11 0,0 0,-0.31 -5.88c-1.08,-1.47 -2.7,-1.26 -3.62,0.47l-3.8,6.32a2.42,2.42 0,0 0,-2 -1.55L25.47,24.47a5.7,5.7 0,0 0,-3.23 -1.04c-3.1,0 -5.81,2.32 -7.27,6.67a1.52,1.52 0,0 0,-1.72 0.86L10.19,35.93a1.53,1.53 0,0 0,0 1.47ZM22.25,25.51a4.86,4.86 0,0 1,2.84 0.96,0.44 0.44,0 0,0 0.26,0.09h7.32c0.7,0 1.29,0.92 1.29,2.09s-0.58,2.09 -1.29,2.09L27.4,30.73c-0.36,0 -0.64,0.47 -0.64,1.04s0.29,1.04 0.64,1.04h5.26c1.42,0 2.58,-1.87 2.58,-4.17 0,-0.18 -0.01,-0.37 -0.02,-0.55 3.68,-6.12 4.2,-6.98 4.22,-7.02 0.46,-0.88 1.27,-0.99 1.82,-0.25a3.06,3.06 0,0 1,0.15 2.94l-5.78,11.18A3.84,3.84 0,0 1,32.5 36.98L23.93,36.98a2.75,2.75 0,0 0,-2.24 1.46l-0.55,0.86L16.1,31.13C17.28,27.55 19.49,25.51 22.25,25.51ZM14.17,32.43c0.21,-0.34 0.54,-0.41 0.8,-0.15 0.1,0.1 5.61,9.04 5.64,9.11a1.56,1.56 0,0 1,-0.06 1.35l-2.66,4.25L11.55,36.67ZM14.17,32.43"
android:fillColor="#f2efef"/>
<path
android:pathData="M34.23,11.96h-2.58c-0.36,0 -0.64,0.47 -0.64,1.04s0.29,1.04 0.64,1.04h2.58c0.36,0 0.64,-0.47 0.64,-1.04S34.59,11.96 34.23,11.96ZM34.23,11.96"
android:fillColor="#f2efef"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="23dp"
android:height="13dp"
android:viewportWidth="23.377"
android:viewportHeight="13.921">
<path
android:pathData="M0.775,0.725l9.545,11.728 12.368,-11.728"
android:strokeColor="#fff"
android:fillColor="#00000000"
android:strokeWidth="2"/>
</vector>
<vector android:height="24dp" android:viewportHeight="19.0"
android:viewportWidth="22.348" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#b2b2b2" android:pathData="M9.305,6.634a2.765,2.765 0,0 0,0.826 0.124,2.189 2.189,0 0,0 1.8,-0.787c0.457,-0.678 0.021,-1.484 -0.972,-1.8a2.823,2.823 0,0 0,-1.516 -0.04,1.866 1.866,0 0,0 -1.114,0.7 0.961,0.961 0,0 0,-0.059 1.035A1.72,1.72 0,0 0,9.305 6.634ZM9.074,5.071a1.1,1.1 0,0 1,0.656 -0.414,1.66 1.66,0 0,1 0.405,-0.05 1.632,1.632 0,0 1,0.488 0.074c0.585,0.184 0.841,0.658 0.572,1.057a1.437,1.437 0,0 1,-1.549 0.39,1.013 1.013,0 0,1 -0.607,-0.448A0.566,0.566 0,0 1,9.074 5.071Z"/>
<path android:fillColor="#b2b2b2" android:pathData="M6.176,12.715l1.392,0.438a0.57,0.57 0,0 0,0.17 0.026,0.449 0.449,0 0,0 0.371,-0.162c0.094,-0.14 0,-0.3 -0.2,-0.369l-1.285,-0.4 0.983,-1.037a0.271,0.271 0,0 0,0.028 -0.035,0.612 0.612,0 0,0 0.038,-0.66 1.1,1.1 0,0 0,-0.657 -0.485,1.8 1.8,0 0,0 -0.967,-0.026 1.19,1.19 0,0 0,-0.71 0.448,0.236 0.236,0 0,0 -0.02,0.037l-0.515,1.184 -1.023,-0.322a24.332,24.332 0,0 1,2.151 -6.782c0.074,-0.145 -0.039,-0.3 -0.252,-0.354a0.474,0.474 0,0 0,-0.519 0.172,24.615 24.615,0 0,0 -2.219,7.11c-0.015,0.117 0.079,0.228 0.236,0.277l1.392,0.438 -0.49,1.125h0c-0.093,0.213 0.055,0.434 0.35,0.527a0.914,0.914 0,0 0,0.273 0.041,0.752 0.752,0 0,0 0.541,-0.2ZM6.09,10.667a0.435,0.435 0,0 1,0.241 -0.144,0.638 0.638,0 0,1 0.343,0.009 0.389,0.389 0,0 1,0.233 0.172,0.215 0.215,0 0,1 0,0.219l-1.71,1.8Z"/>
<path android:fillColor="#b2b2b2" android:pathData="M22.246,3.746a0.531,0.531 0,0 0,-0.385 -0.088l-1.581,0.217a0.173,0.173 0,0 1,-0.061 0l-1.544,-0.345a2.39,2.39 0,0 0,-2.622 0.908l-0.171,0.356a3.543,3.543 0,0 0,0.023 -0.446,0.2 0.2,0 0,0 0,-0.036A7.434,7.434 0,0 0,13.931 0.127,0.49 0.49,0 0,0 13.556,0h-0.032A17.207,17.207 0,0 0,7.599 1.7a0.388,0.388 0,0 0,-0.039 0.025,5.113 5.113,0 0,0 -1.728,1.5l-0.067,0.1c-0.093,0.14 0,0.3 0.2,0.368a0.5,0.5 0,0 0,0.539 -0.139l0.065,-0.1A4.3,4.3 0,0 1,7.931 2.24l7.164,2.252a2.773,2.773 0,0 1,-0.475 1.493,18.122 18.122,0 0,1 -2.109,2.441l-4.26,-0.325h-0.006c-0.689,-0.046 -1.3,0.3 -1.37,0.77 0,0.005 0,0.011 0,0.016s0,0.018 0,0.027 0,0.008 0,0.011 0,0.022 0,0.032 0,0 0,0a0.712,0.712 0,0 0,0.286 0.537l0.017,0.013 0.049,0.037 0.039,0.026 0.048,0.029 0.048,0.027 0.047,0.024 0.052,0.024 0.055,0.022 0.048,0.017 0.071,0.023 0.034,0.01 0.09,0.022 0.018,0c0.034,0.007 0.069,0.013 0.1,0.018h0.008c0.038,0.005 0.077,0.009 0.117,0.012l3.57,0.272 -1.323,1.22h0l-0.655,0.6 0,0a0.29,0.29 0,0 0,-0.029 0.032h0l0,0 -0.126,0.155 0,0 -4.227,5.175c-0.107,0.131 -0.043,0.3 0.144,0.373l1.869,0.779a0.555,0.555 0,0 0,0.212 0.041,0.494 0.494,0 0,0 0.324,-0.109l3.41,-3.043c0.137,-0.122 0.1,-0.3 -0.076,-0.39a0.543,0.543 0,0 0,-0.571 0.052l-3.187,2.844 -1.221,-0.509 2.8,-3.429 0.459,-0.562a1.687,1.687 0,0 0,0.754 0.578l3.757,1.584 -1.122,2.744c-0.06,0.147 0.064,0.3 0.278,0.342l2.1,0.42a0.586,0.586 0,0 0,0.115 0.011,0.563 0.563,0 0,0 0.2,-0.035 0.327,0.327 0,0 0,0.195 -0.168l1.645,-4c0.191,-0.446 -0.082,-0.925 -0.665,-1.166l-2.472,-1.02 2.5,-2.3a1.183,1.183 0,0 0,0.421 -0.869,1.393 1.393,0 0,0 -0.867,-1.176 2.978,2.978 0,0 0,-2.553 0,18.957 18.957,0 0,0 1.463,-1.7c-0.089,0.767 0.6,1.505 1.712,1.754a3.555,3.555 0,0 0,0.776 0.085,2.589 2.589,0 0,0 2.372,-1.175l0.352,-0.735h0a1.225,1.225 0,0 0,0.122 -0.48,2.116 2.116,0 0,0 1.415,-1.011l0.476,-0.994A0.216,0.216 0,0 0,22.246 3.746ZM8.646,1.854a17.128,17.128 0,0 1,4.736 -1.27,9.022 9.022,0 0,1 1.08,1.591l0,0.009q0.058,0.11 0.113,0.225l0.013,0.028 0.039,0.085 0.015,0.033 0.047,0.108 0.014,0.034 0.032,0.077 0.021,0.052 0.023,0.06 0.022,0.057 0.022,0.063q0.018,0.052 0.036,0.1l0.015,0.046 0.022,0.071 0.012,0.041q0.037,0.125 0.068,0.252l0.008,0.033q0.009,0.04 0.018,0.08l0.006,0.032q0.02,0.1 0.036,0.2ZM8.431,9.279l-0.344,-0.026h-0.006l-0.044,0L8.031,9.253a0.377,0.377 0,0 1,-0.345 -0.258v0a0.2,0.2 0,0 1,0 -0.022s0,-0.005 0,-0.008a0.21,0.21 0,0 1,0 -0.022s0,-0.006 0,-0.009L7.686,8.919a0.222,0.222 0,0 1,0.005 -0.023l0,-0.012 0.006,-0.016 0.007,-0.014 0.007,-0.013 0.01,-0.014 0.008,-0.011 0.012,-0.014 0.009,-0.01 0.015,-0.014 0.009,-0.008 0.017,-0.014 0.009,-0.007 0.019,-0.013 0.01,-0.006 0.021,-0.012 0.01,-0.005 0.023,-0.011 0.011,0 0.024,-0.009 0.012,0 0.025,-0.008 0.013,0 0.026,-0.006 0.014,0 0.026,0 0.017,0 0.025,0h0.084l0.143,0.011 0.243,0.019ZM16.196,14.112h0c0.267,0.11 0.392,0.329 0.3,0.536l-1.535,3.728 -1.32,-0.264 1.1,-2.681c0.049,-0.119 -0.024,-0.247 -0.178,-0.312l-4.018,-1.694c-0.528,-0.223 -0.705,-0.686 -0.4,-1.057l0.124,-0.151 0.416,-0.383 1.391,0.574ZM15.712,8.712a0.852,0.852 0,0 1,0.537 0.729,0.733 0.733,0 0,1 -0.261,0.538l-2.543,2.345 -0.913,-0.377 -1.366,-0.564 1.34,-1.235 2.026,0.154h0.006q0.062,0 0.124,0a1.635,1.635 0,0 0,0.795 -0.2,0.823 0.823,0 0,0 0.452,-0.579 0.686,0.686 0,0 0,-0.28 -0.627,1.484 1.484,0 0,0 -0.844,-0.308l-0.26,-0.02A1.846,1.846 0,0 1,15.708 8.715ZM14.696,9.151h0.006c0.241,0.016 0.418,0.163 0.395,0.328a0.288,0.288 0,0 1,-0.158 0.2,0.585 0.585,0 0,1 -0.319,0.067l-5.378,-0.41 0.119,-0.595 4.066,0.31h0ZM19.541,6.33l-0.352,0.735a1.743,1.743 0,0 1,-1.6 0.791,2.392 2.392,0 0,1 -0.522,-0.057c-0.881,-0.2 -1.364,-0.846 -1.076,-1.447l0.1,-0.217 0.845,0.189a0.575,0.575 0,0 0,0.057 0.009h0.012l0.056,0h0.007l0.053,0L17.131,6.333l0.054,-0.009 0.009,0a0.537,0.537 0,0 0,0.052 -0.015h0a0.473,0.473 0,0 0,0.049 -0.02l0.009,0a0.412,0.412 0,0 0,0.043 -0.024l0.006,0a0.34,0.34 0,0 0,0.034 -0.026l0.006,0a0.286,0.286 0,0 0,0.03 -0.033l0.006,-0.007a0.243,0.243 0,0 0,0.023 -0.037l0.022,-0.046a0.287,0.287 0,0 1,0.018 -0.032l0,0a0.307,0.307 0,0 1,0.019 -0.026h0a0.577,0.577 0,0 1,0.438 -0.172h0l0.039,0h0.011l0.034,0 0.016,0 0.049,0.009 0.748,0.167c0.046,0.01 0.092,0.019 0.139,0.028l0.023,0 0.139,0.021 0.017,0c0.1,0.012 0.2,0.02 0.294,0.023h0.017l0.122,0A0.858,0.858 0,0 1,19.541 6.33ZM21.078,4.838a1.49,1.49 0,0 1,-1.147 0.709,2.25 2.25,0 0,1 -0.82,-0.028l-0.748,-0.167c-0.033,-0.007 -0.067,-0.014 -0.1,-0.019l-0.012,0 -0.1,-0.013h-0.008a1.852,1.852 0,0 0,-0.782 0.088l-0.039,0.015 -0.008,0a1.36,1.36 0,0 0,-0.328 0.177l0,0q-0.034,0.026 -0.066,0.053l0,0c-0.022,0.019 -0.043,0.039 -0.062,0.06l-0.5,-0.111h0l0.478,-1a1.453,1.453 0,0 1,1.593 -0.552l1.544,0.345a1.357,1.357 0,0 0,0.475 0.019l0.9,-0.123Z"/>
<path android:fillColor="#b2b2b2" android:pathData="M4.459,17.809L0.408,17.809c-0.225,0 -0.408,0.125 -0.408,0.278s0.183,0.278 0.408,0.278h4.051c0.225,0 0.408,-0.125 0.408,-0.278S4.68,17.809 4.459,17.809Z"/>
<path android:fillColor="#b2b2b2" android:pathData="M4.458,16.211L1.612,16.211c-0.225,0 -0.408,0.125 -0.408,0.278s0.183,0.278 0.408,0.278L4.458,16.767c0.225,0 0.408,-0.125 0.408,-0.278S4.684,16.211 4.458,16.211Z"/>
<path android:fillColor="#b2b2b2" android:pathData="M4.459,14.613h-1.2c-0.225,0 -0.408,0.125 -0.408,0.278s0.183,0.278 0.408,0.278h1.2c0.225,0 0.408,-0.125 0.408,-0.278S4.684,14.613 4.459,14.613Z"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="41dp"
android:height="41dp"
android:viewportWidth="41.0"
android:viewportHeight="41.0">
<path
android:pathData="M35.88,0H5.13A5.13,5.13 0,0 0,0 5.13v30.75A5.13,5.13 0,0 0,5.13 41h30.75A5.13,5.13 0,0 0,41 35.88V5.13A5.13,5.13 0,0 0,35.88 0Z"
android:fillColor="#1976d2"/>
<path
android:pathData="M34.59,20.5h-6.41v-5.13c0,-1.41 1.15,-1.28 2.56,-1.28h2.56L33.31,7.69h-5.13a7.69,7.69 0,0 0,-7.69 7.69v5.13L15.38,20.5v6.41h5.13v14.09h7.69L28.19,26.91h3.84Z"
android:fillColor="#fafafa"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="41dp"
android:height="41dp"
android:viewportWidth="41.685"
android:viewportHeight="41.647">
<path
android:pathData="M20.84,0A20.82,20.82 0,1 1,0 20.82,20.89 20.89,0 0,1 20.84,0Z"
android:fillColor="#dd4b39"/>
<path
android:pathData="M31.39,17.31v2.34h2.35v2.34h-2.35v2.34h-2.35v-2.34h-2.35v-2.34h2.35v-2.34Z"
android:fillColor="#fff"/>
<path
android:pathData="M10.29,26.68a8.36,8.36 0,0 1,0.13 -11.71,8.04 8.04,0 0,1 8.73,-1.69L20.32,13.93l1.3,0.91 -2.08,2.08 -0.78,-0.52a4.98,4.98 0,0 0,-6.12 0.78,5.46 5.46,0 0,0 0,7.55 5.04,5.04 0,0 0,7.3 0,4.15 4.15,0 0,0 1.17,-2.08v-0.26L16.42,22.39v-2.6L23.84,19.79l0.13,0.65v1.82a7.26,7.26 0,0 1,-1.95 4.55A8.64,8.64 0,0 1,10.29 26.68Z"
android:fillColor="#fff"/>
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="21dp"
android:viewportWidth="24.431"
android:viewportHeight="21.239">
<path
android:pathData="M19.373,7.016L19.373,0.994L16.51,0.994v3.215l-4.294,-4.21L0,11.975v1.467L2.911,13.442v7.8h7.619v-4.7h3.34v4.7h7.65v-7.8L24.43,13.442L24.43,11.975Z"
android:fillColor="#585858"/>
</vector>
......@@ -2,169 +2,169 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
android:viewportHeight="108"
android:viewportWidth="108">
<path
android:fillColor="#3DDC84"
android:fillColor="#26A69A"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
</vector>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportHeight="108"
android:viewportWidth="108">
<path
android:fillType="evenOdd"
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
android:strokeColor="#00000000"
android:strokeWidth="1">
<aapt:attr name="android:fillColor">
<gradient
android:endX="78.5885"
android:endY="90.9159"
android:startX="48.7653"
android:startY="61.0927"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
android:strokeColor="#00000000"
android:strokeWidth="1" />
</vector>
This diff is collapsed.
<vector android:height="24dp" android:viewportHeight="41.0"
android:viewportWidth="30.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#03a9f4" android:pathData="M22.795,6.81a1.921,1.921 0,0 0,-2.478 -0.757,0.956 0.956,0 0,0 -0.458,0.781l-0.191,1.878c-0.289,2.837 -1.985,4.944 -3.987,4.955h-2.727c-0.313,0 -0.586,0.305 -0.661,0.74L10.247,26.116a1.057,1.057 0,0 0,0.5 1.183,0.489 0.489,0 0,0 0.165,0.029h3.409c0.313,0 0.586,-0.305 0.661,-0.74l1.234,-7.07h2.659c2.041,0.01 3.822,-1.982 4.309,-4.82l0.5,-2.888A6.775,6.775 0,0 0,22.795 6.81Z"/>
<path android:fillColor="#fff" android:pathData="M0.682,39.048c-0.377,0 -0.682,-0.437 -0.682,-0.976a1.379,1.379 0,0 1,0.02 -0.236L0.7,33.95L0.7,33.909l0.682,-3.883c0.076,-0.435 0.348,-0.74 0.661,-0.74L3.78,29.286c0.941,0 1.7,1.092 1.7,2.44a3.455,3.455 0,0 1,-0.051 0.592l-0.17,0.976c-0.19,1.087 -0.872,1.849 -1.654,1.849L1.9,35.143L1.344,38.309C1.268,38.743 1,39.049 0.682,39.048ZM2.238,33.191L3.609,33.191c0.156,0 0.292,-0.154 0.33,-0.371l0.17,-0.976a0.529,0.529 0,0 0,-0.244 -0.592,0.242 0.242,0 0,0 -0.086,-0.015h-1.2Z"/>
<path android:fillColor="#fff" android:pathData="M7.972,39.048h-0.971c-1.044,0 -1.89,-1.211 -1.89,-2.705a3.822,3.822 0,0 1,0.056 -0.657h0l0.09,-0.519c0.2,-1.166 0.934,-1.982 1.773,-1.978h0.971c1.044,0 1.888,1.216 1.887,2.711a3.822,3.822 0,0 1,-0.057 0.653l-0.09,0.519C9.542,38.235 8.809,39.05 7.972,39.048ZM6.491,36.16a0.815,0.815 0,0 0,0.384 0.913,0.38 0.38,0 0,0 0.126,0.022h0.971c0.21,0 0.394,-0.2 0.445,-0.5l0.09,-0.519a0.815,0.815 0,0 0,-0.384 -0.913,0.38 0.38,0 0,0 -0.126,-0.022h-0.971c-0.21,0 -0.394,0.2 -0.445,0.5Z"/>
<path android:fillColor="#fff" android:pathData="M8.864,39.048c-0.377,0 -0.682,-0.437 -0.682,-0.977a1.379,1.379 0,0 1,0.02 -0.236l0.682,-3.9c0.091,-0.523 0.461,-0.842 0.827,-0.712a1.057,1.057 0,0 1,0.5 1.184l-0.682,3.9C9.45,38.743 9.177,39.048 8.864,39.048Z"/>
<path android:fillColor="#fff" android:pathData="M17.045,39.048c-0.377,0 -0.682,-0.437 -0.682,-0.976a1.379,1.379 0,0 1,0.02 -0.236l0.682,-3.885L17.065,33.91l0.682,-3.883c0.076,-0.435 0.348,-0.74 0.661,-0.74h1.734c0.941,0 1.7,1.092 1.7,2.44a3.455,3.455 0,0 1,-0.051 0.592l-0.17,0.976c-0.19,1.087 -0.872,1.849 -1.654,1.849L18.263,35.144l-0.552,3.165C17.631,38.743 17.363,39.049 17.045,39.048ZM18.601,33.191h1.373c0.156,0 0.292,-0.154 0.33,-0.371l0.17,-0.976a0.529,0.529 0,0 0,-0.244 -0.592,0.242 0.242,0 0,0 -0.086,-0.015h-1.2Z"/>
<path android:fillColor="#fff" android:pathData="M24.335,39.048h-0.971c-1.044,0 -1.89,-1.211 -1.89,-2.705a3.824,3.824 0,0 1,0.056 -0.657h0l0.09,-0.519c0.2,-1.166 0.934,-1.982 1.773,-1.978h0.971c1.044,0 1.89,1.211 1.89,2.705a3.823,3.823 0,0 1,-0.056 0.657l-0.09,0.519C25.905,38.236 25.174,39.053 24.335,39.048ZM22.854,36.16a0.815,0.815 0,0 0,0.384 0.913,0.38 0.38,0 0,0 0.126,0.022h0.971c0.21,0 0.394,-0.2 0.445,-0.5l0.09,-0.519a0.815,0.815 0,0 0,-0.384 -0.913,0.38 0.38,0 0,0 -0.126,-0.022h-0.971c-0.21,0 -0.394,0.2 -0.445,0.5Z"/>
<path android:fillColor="#fff" android:pathData="M25.227,39.048c-0.377,0 -0.682,-0.437 -0.682,-0.977a1.379,1.379 0,0 1,0.02 -0.236l0.682,-3.9c0.091,-0.523 0.461,-0.842 0.827,-0.712a1.057,1.057 0,0 1,0.5 1.184h0l-0.682,3.9C25.813,38.743 25.545,39.048 25.227,39.048Z"/>
<path android:fillColor="#fff" android:pathData="M12.954,38.071a0.662,0.662 0,0 1,-0.567 -0.435l-1.364,-2.929a1.257,1.257 0,0 1,0.189 -1.354c0.313,-0.3 0.737,-0.178 0.946,0.27l1.364,2.929a1.258,1.258 0,0 1,-0.188 1.354A0.549,0.549 0,0 1,12.954 38.071Z"/>
<path android:fillColor="#fff" android:pathData="M11.59,41c-0.377,0 -0.682,-0.437 -0.682,-0.977a1.257,1.257 0,0 1,0.158 -0.624l3.409,-5.857a0.554,0.554 0,0 1,0.961 -0.124,1.286 1.286,0 0,1 0.087,1.375h0l-3.409,5.857A0.626,0.626 0,0 1,11.59 41Z"/>
<path android:fillColor="#fff" android:pathData="M27.954,39.047c-0.377,0 -0.682,-0.437 -0.682,-0.976a1.379,1.379 0,0 1,0.02 -0.236l1.364,-7.809c0.091,-0.523 0.461,-0.842 0.827,-0.712a1.057,1.057 0,0 1,0.5 1.184h0l-1.364,7.809C28.541,38.743 28.267,39.048 27.954,39.047Z"/>
<path android:fillColor="#283593" android:pathData="M20.544,1.689a3.134,3.134 0,0 0,-2.6 -1.689h-7.718c-0.33,0 -0.612,0.338 -0.671,0.8l-2.727,21.476a1.007,1.007 0,0 0,0.55 1.134,0.484 0.484,0 0,0 0.121,0.016h4.091c0.313,0 0.586,-0.305 0.661,-0.74l1.235,-7.07h2.194c2.682,-0.015 4.952,-2.838 5.338,-6.638l0.341,-3.337h0A6.537,6.537 0,0 0,20.544 1.689Z"/>
</vector>
This diff is collapsed.
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<size
android:width="11dp"
android:height="787dp"/>
<solid
android:color="#11CFC5"/>
<corners
android:topLeftRadius="17dp"/>
</shape>
<vector android:height="24dp" android:viewportHeight="55.0"
android:viewportWidth="55.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M55,27.5C55,12.34 42.66,0 27.5,0S0,12.34 0,27.5c0,8.01 3.44,15.23 8.93,20.26l-0.03,0.02l0.89,0.75c0.06,0.05 0.12,0.09 0.18,0.14c0.47,0.39 0.96,0.77 1.47,1.13c0.16,0.12 0.32,0.23 0.49,0.35c0.53,0.37 1.08,0.72 1.64,1.05c0.12,0.07 0.25,0.14 0.37,0.21c0.61,0.35 1.24,0.68 1.88,0.98c0.05,0.02 0.09,0.04 0.14,0.06c2.09,0.97 4.32,1.68 6.65,2.11c0.06,0.01 0.12,0.02 0.18,0.03c0.72,0.13 1.46,0.22 2.2,0.29c0.09,0.01 0.18,0.01 0.27,0.02C26,54.96 26.74,55 27.5,55c0.75,0 1.49,-0.04 2.22,-0.1c0.09,-0.01 0.19,-0.01 0.28,-0.02c0.74,-0.07 1.46,-0.16 2.18,-0.29c0.06,-0.01 0.13,-0.02 0.19,-0.03c2.3,-0.41 4.49,-1.11 6.56,-2.06c0.08,-0.04 0.15,-0.07 0.23,-0.1c0.62,-0.29 1.22,-0.6 1.81,-0.94c0.15,-0.08 0.29,-0.17 0.44,-0.25c0.54,-0.32 1.07,-0.65 1.58,-1c0.19,-0.13 0.37,-0.26 0.55,-0.39c0.44,-0.32 0.87,-0.64 1.29,-0.98c0.09,-0.08 0.19,-0.14 0.28,-0.22l0.92,-0.76l-0.03,-0.02C51.52,42.8 55,35.55 55,27.5zM2,27.5C2,13.44 13.44,2 27.5,2S53,13.44 53,27.5c0,7.58 -3.33,14.39 -8.59,19.06c-0.29,-0.2 -0.59,-0.38 -0.89,-0.54l-8.47,-4.23c-0.76,-0.38 -1.23,-1.14 -1.23,-1.99v-2.96c0.2,-0.24 0.4,-0.52 0.62,-0.82c1.1,-1.55 1.98,-3.27 2.62,-5.12c1.27,-0.6 2.09,-1.86 2.09,-3.29v-3.55c0,-0.87 -0.32,-1.71 -0.89,-2.37v-4.67c0.05,-0.52 0.24,-3.45 -1.88,-5.86C34.52,9.06 31.54,8 27.5,8s-7.02,1.07 -8.87,3.17c-2.12,2.42 -1.93,5.34 -1.88,5.86v4.67c-0.57,0.66 -0.89,1.5 -0.89,2.37v3.55c0,1.1 0.49,2.13 1.34,2.82c0.81,3.17 2.48,5.57 3.09,6.39v2.89c0,0.82 -0.44,1.57 -1.16,1.96l-7.91,4.31c-0.25,0.14 -0.5,0.3 -0.75,0.48C5.28,41.79 2,35.02 2,27.5zM42.46,48.13c-0.35,0.25 -0.71,0.5 -1.07,0.74c-0.17,0.11 -0.33,0.22 -0.5,0.32c-0.47,0.29 -0.95,0.57 -1.44,0.83c-0.11,0.06 -0.22,0.11 -0.33,0.17c-1.13,0.58 -2.29,1.07 -3.49,1.48c-0.04,0.01 -0.08,0.03 -0.13,0.04c-0.63,0.21 -1.26,0.39 -1.9,0.55c-0,0 -0,0 -0.01,0c-0.65,0.16 -1.3,0.29 -1.96,0.4c-0.02,0 -0.04,0.01 -0.05,0.01c-0.62,0.1 -1.25,0.17 -1.88,0.23c-0.11,0.01 -0.22,0.02 -0.33,0.03C28.75,52.97 28.13,53 27.5,53c-0.63,0 -1.27,-0.03 -1.89,-0.08c-0.11,-0.01 -0.22,-0.01 -0.33,-0.03c-0.63,-0.06 -1.26,-0.13 -1.89,-0.23c-0.03,-0 -0.06,-0.01 -0.08,-0.01c-1.32,-0.22 -2.62,-0.55 -3.89,-0.97c-0.04,-0.01 -0.08,-0.03 -0.12,-0.04c-0.63,-0.21 -1.25,-0.45 -1.86,-0.71c-0,-0 -0.01,-0 -0.01,-0.01c-0.58,-0.25 -1.14,-0.52 -1.71,-0.82c-0.07,-0.04 -0.15,-0.07 -0.22,-0.11c-0.51,-0.27 -1.01,-0.57 -1.5,-0.88c-0.15,-0.09 -0.29,-0.19 -0.44,-0.28c-0.45,-0.3 -0.9,-0.61 -1.34,-0.93c-0.05,-0.03 -0.09,-0.07 -0.13,-0.1c0.03,-0.02 0.06,-0.04 0.1,-0.05l7.91,-4.31c1.36,-0.74 2.2,-2.16 2.2,-3.71l-0,-3.6l-0.23,-0.28c-0.02,-0.03 -2.18,-2.65 -3,-6.22l-0.09,-0.4l-0.34,-0.22c-0.48,-0.31 -0.77,-0.83 -0.77,-1.39v-3.55c0,-0.47 0.2,-0.9 0.56,-1.22l0.33,-0.3v-5.57l-0.01,-0.13c-0,-0.02 -0.3,-2.43 1.4,-4.36C21.58,10.84 24.06,10 27.5,10c3.43,0 5.9,0.83 7.35,2.47c1.69,1.91 1.41,4.36 1.41,4.38l-0.01,5.7l0.33,0.3c0.36,0.32 0.56,0.76 0.56,1.22v3.55c0,0.71 -0.49,1.36 -1.18,1.58l-0.5,0.15l-0.16,0.5c-0.59,1.83 -1.43,3.53 -2.5,5.03c-0.26,0.37 -0.52,0.7 -0.74,0.95l-0.25,0.28V39.8c0,1.61 0.9,3.06 2.34,3.78l8.47,4.23c0.05,0.03 0.11,0.05 0.16,0.08C42.68,47.98 42.57,48.05 42.46,48.13z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:color="@android:color/holo_blue_dark" />
<item android:color="@android:color/darker_gray" />
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners
android:radius="40dp"
/>
<gradient
android:angle="0"
android:centerX="35%"
android:startColor="@color/whiteTextColor"
android:endColor="@color/whiteTextColor"
android:type="linear"
/>
<size
android:width="100dp"
android:height="20dp"
/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<gradient
android:angle="0"
android:centerX="35%"
android:startColor="#FF3B30"
android:endColor="#FF9301"
android:type="linear"
/>
</shape>
\ No newline at end of file
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#fff"
android:centerColor="#fff"
android:centerY="0.75"
android:endColor="#C15CF4"
android:angle="270"
/>
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#80ffd300"
android:centerColor="#80ffb600"
android:centerY="0.75"
android:endColor="#a0ffcb00"
android:angle="270"
/>
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<corners
android:radius="5dip" />
<gradient
android:startColor="#C15CF4"
android:endColor="#C15CF4"
android:angle="270"
/>
</shape>
</clip>
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners
android:radius="26dp"
/>
<gradient
android:angle="0"
android:centerX="0%"
android:centerColor="#E8526D"
android:startColor="#E8526D"
android:endColor="#C15CF5"
android:type="linear"
/>
<padding
android:left="0dp"
android:top="0dp"
android:right="0dp"
android:bottom="0dp"
/>
<size
android:width="182dp"
android:height="40dp"
/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners
android:bottomLeftRadius="13dp"
android:bottomRightRadius="13dp" />
<gradient
android:angle="0"
android:centerX="0%"
android:centerColor="#56C4AD"
android:startColor="#20B1BD"
android:endColor="#82D3A0"
android:type="linear"
/>
<padding
android:left="0dp"
android:top="0dp"
android:right="0dp"
android:bottom="0dp"
/>
<size
android:width="38dp"
android:height="38dp"
/>
</shape>
\ No newline at end of file
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="135"
android:centerColor="#009688"
android:endColor="#00695C"
android:startColor="#4DB6AC"
android:type="linear" />
</shape>
\ No newline at end of file
<?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=".Changers_in_one">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/finalback">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<include layout="@layout/oil_filter" android:id="@+id/layoutoilfilter" />
<include layout="@layout/engine_oil" android:id="@+id/layoutengineoil" />
<include layout="@layout/washer_plug" android:id="@+id/layoutwasher_plug" />
<include layout="@layout/dust_filter" android:id="@+id/layoutdust_filter" />
<include layout="@layout/wheel_align" android:id="@+id/layoutwheel_align" />
<include layout="@layout/air_clean_filter" android:id="@+id/layoutair_clean_filter" />
<include layout="@layout/fuel_filter" android:id="@+id/layoutfuel_filter" />
<include layout="@layout/spark_plug" android:id="@+id/layoutspark_plug" />
<include layout="@layout/brake_fluid" android:id="@+id/layoutbrake_fluid" />
<include layout="@layout/break_oil" android:id="@+id/layoutbreak_oil" />
<include layout="@layout/transmission_fluid" android:id="@+id/layouttransmission_fluid" />
<include layout="@layout/break_pads" android:id="@+id/layoutbreak_pads" />
<include layout="@layout/clutch" android:id="@+id/layoutclutch" />
<include layout="@layout/coolant" android:id="@+id/layoutcoolant" />
</LinearLayout>
</ScrollView>
</android.support.constraint.ConstraintLayout>
\ No newline at end of file
<?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=".Changers_in_two">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/finalback">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<include layout="@layout/oil_filter" android:id="@+id/layoutoilfilter" />
<include layout="@layout/engine_oil" android:id="@+id/layoutengineoil" />
<include layout="@layout/washer_plug" android:id="@+id/layoutwasher_plug" />
<include layout="@layout/dust_filter" android:id="@+id/layoutdust_filter" />
<include layout="@layout/wheel_align" android:id="@+id/layoutwheel_align" />
<include layout="@layout/air_clean_filter" android:id="@+id/layoutair_clean_filter" />
<include layout="@layout/fuel_filter" android:id="@+id/layoutfuel_filter" />
<include layout="@layout/spark_plug" android:id="@+id/layoutspark_plug" />
<include layout="@layout/brake_fluid" android:id="@+id/layoutbrake_fluid" />
<include layout="@layout/break_oil" android:id="@+id/layoutbreak_oil" />
<include layout="@layout/transmission_fluid" android:id="@+id/layouttransmission_fluid" />
<include layout="@layout/break_pads" android:id="@+id/layoutbreak_pads" />
<include layout="@layout/clutch" android:id="@+id/layoutclutch" />
<include layout="@layout/coolant" android:id="@+id/layoutcoolant" />
</LinearLayout>
</ScrollView>
</android.support.constraint.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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/whiteBodyColor"
android:layout_gravity="center"
android:focusableInTouchMode="true"
android:gravity="center">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_centerInParent="true"
android:layout_marginStart="0dp"
android:layout_marginTop="-19dp"
android:paddingTop="20dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="20dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_gravity="center"
android:layout_height="177dp">
<TextView
style="@style/viewParent.headerText.NoMode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginStart="105dp"
android:layout_marginLeft="132dp"
android:layout_marginTop="75dp"
android:text="LOGIN"
android:textColor="#1C2EC8"
android:textColorHighlight="#F6F4F4"
android:textSize="60sp"
android:textStyle="bold" />
</RelativeLayout>
<ImageView
android:layout_gravity="center"
android:id="@+id/imageView2"
android:layout_width="371dp"
android:layout_height="199dp"
android:src="@drawable/app_login" />
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputEmail"
style="@style/parent"
android:layout_marginTop="@dimen/loginViewsMargin"
android:background="@drawable/back"
android:rotationX="0"
android:rotationY="0">
<EditText
android:id="@+id/editTextusername"
style="@style/modifiedEditTextAddSignUp"
android:hint="Username"
android:inputType="textEmailAddress"
android:maxLines="1" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputPassword"
style="@style/parent"
android:layout_marginTop="@dimen/loginViewsMargin"
android:background="@drawable/back">
<EditText
android:id="@+id/editTextPassword"
style="@style/modifiedEditTextAddSignUp"
android:hint="password"
android:inputType="textPassword"
android:maxLines="1" />
</android.support.design.widget.TextInputLayout>
<TextView
style="@style/viewParent"
android:layout_gravity="end"
android:layout_marginTop="10dp"
android:text="Forgot Password?"
android:textColor="@color/primaryTextColorL"
android:textSize="@dimen/newsMoreTextSize" />
<br.com.simplepass.loading_button_lib.customViews.CircularProgressButton
android:id="@+id/cirLoginButton"
style="@style/loginButton"
android:background="@drawable/centre_button"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/loginViewsMargin"
android:text="Login"
app:initialCornerAngle="27dp"
app:spinning_bar_color="#FFF"
app:spinning_bar_padding="6dp"
app:spinning_bar_width="4dp" />
<TextView
android:id="@+id/SignUpTxt"
style="@style/parent"
android:layout_marginTop="@dimen/loginViewsMargin"
android:text="New user? Register Now"
android:textAlignment="center"
android:textColor="@color/themeColor"
android:textSize="20sp"
android:textStyle="bold|italic" />
<!-- <LinearLayout-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_marginTop="30dp"-->
<!-- android:gravity="center"-->
<!-- android:weightSum="12">-->
<!-- <View-->
<!-- android:layout_width="0dp"-->
<!-- android:layout_height="1dp"-->
<!-- android:layout_weight="3"-->
<!-- android:background="@color/colorPrimaryDark" />-->
<!-- <TextView-->
<!-- style="@style/viewParent.headerText.NoMode"-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_weight="6"-->
<!-- android:text="Use other Methods"-->
<!-- android:textAlignment="center"-->
<!-- android:textColor="#EBD3EF"-->
<!-- android:textSize="12sp" />-->
<!-- <View-->
<!-- android:layout_width="0dp"-->
<!-- android:layout_height="1dp"-->
<!-- android:layout_weight="3"-->
<!-- android:background="@color/colorPrimaryDark" />-->
<!-- </LinearLayout>-->
<!-- <LinearLayout-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_marginTop="20dp"-->
<!-- android:gravity="center">-->
<!-- <ImageView-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:src="@drawable/ic_facebook" />-->
<!-- <ImageView-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_marginLeft="10dp"-->
<!-- android:src="@drawable/ic_google_plus" />-->
<!-- </LinearLayout>-->
</LinearLayout>
</ScrollView>
<View
android:layout_width="11dp"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_marginTop="20dp"
android:background="@drawable/ic_side_bg" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_marginRight="11dp"
android:layout_marginBottom="30dp"
android:onClick="onLoginClick"
android:src="@drawable/ic_add_img" />
</RelativeLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
android:fitsSystemWindows="true"
tools:openDrawer="start">
<LinearLayout
android:orientation="vertical"
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_marginTop="100dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_marginBottom="50dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- Demo the first screen -->
<TextView
android:id="@+id/txt_topic"
android:textSize="30dp"
android:textStyle="bold"
android:text="First screen - Demo -"
android:textAlignment="center"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TextView>
<!-- Button for Vehicle repair methods prediction function -->
<Button
android:id="@+id/btn_repair_methods"
android:text="REPAIR METHODS"
android:textSize="20dp"
android:layout_below="@id/txt_topic"
android:layout_marginTop="50dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</Button>
<!-- Button for Maintenance details prediction function -->
<Button
android:id="@+id/btn_maintenance_details"
android:text="MAINTENANCE DETAILS"
android:textSize="20dp"
android:layout_below="@id/btn_repair_methods"
android:layout_marginTop="50dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</Button>
<!-- Button for Spare parts price prediction function -->
<Button
android:id="@+id/btn_spare_parts_price"
android:text="SPARE PARTS PRICES"
android:textSize="20dp"
android:layout_below="@id/btn_maintenance_details"
android:layout_marginTop="50dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</Button>
<!-- Button for Insurance recommendation prediction function -->
<Button
android:id="@+id/btn_ins"
android:text="INSURANCE RECOMMENDATION"
android:textSize="20dp"
android:layout_below="@id/btn_spare_parts_price"
android:layout_marginTop="50dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</Button>
</RelativeLayout>
</LinearLayout>
</ScrollView>
\ No newline at end of file
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />
</android.support.v4.widget.DrawerLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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/register_bk_color"
android:focusableInTouchMode="true"
android:gravity="center"
android:layout_gravity="center">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="20dp"
android:layout_marginTop="30dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
style="@style/viewParent.headerText"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:text="Registertion Form "
android:textSize="30dp"
android:gravity="center"
android:textColor="@color/whiteTextColor" />
</RelativeLayout>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
app:cardBackgroundColor="@color/whiteTextColor"
app:cardCornerRadius="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:orientation="vertical">
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputName"
style="@style/parent"
android:layout_marginTop="@dimen/loginViewsMargin">
<EditText
android:id="@+id/editTextNameSignUp"
style="@style/modifiedEditTextAddSignUp"
android:hint="Name"
android:inputType="textPersonName"
android:maxLines="1" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputEmail"
style="@style/parent"
android:layout_marginTop="@dimen/loginViewsMargin">
<EditText
android:id="@+id/editTextEmailSignUp"
style="@style/modifiedEditTextAddSignUp"
android:hint="Email"
android:inputType="textEmailAddress"
android:maxLines="1" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputFirsename"
style="@style/parent"
android:layout_marginTop="@dimen/loginViewsMargin">
<EditText
android:id="@+id/editTextFirstnameSignUp"
style="@style/modifiedEditTextAddSignUp"
android:hint="First name"
android:inputType="textEmailAddress"
android:maxLines="1" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputLastname"
style="@style/parent"
android:layout_marginTop="@dimen/loginViewsMargin">
<EditText
android:id="@+id/editTextLastnameSignUp"
style="@style/modifiedEditTextAddSignUp"
android:hint="Last Name"
android:inputType="textEmailAddress"
android:maxLines="1" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputpaswordSignup"
style="@style/parent"
android:layout_marginTop="@dimen/loginViewsMargin">
<EditText
android:id="@+id/editTextpaswordSignup"
style="@style/modifiedEditTextAddSignUp"
android:hint="Pasword"
android:inputType="textPassword"
android:maxLines="1" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputConfirmpasword"
style="@style/parent"
android:layout_marginTop="@dimen/loginViewsMargin">
<EditText
android:id="@+id/editTextConfirmpaswordSignUp"
style="@style/modifiedEditTextAddSignUp"
android:hint="Confirm Pasword"
android:inputType="textPassword"
android:maxLines="1" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputDateOfBirthday"
style="@style/parent"
android:layout_marginTop="@dimen/loginViewsMargin">
<EditText
android:id="@+id/editTextDateOfBirthdaySignUp"
style="@style/modifiedEditTextAddSignUp"
android:hint="Date of Birthday(DD/MM/YY)"
android:maxLines="1" />
</android.support.design.widget.TextInputLayout>
<br.com.simplepass.loading_button_lib.customViews.CircularProgressButton
android:id="@+id/cirRegisterButton"
style="@style/loginButton"
android:background="#00ADC1"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/loginViewsMargin"
android:text="Register"
app:initialCornerAngle="27dp"
app:spinning_bar_color="#FFF"
app:spinning_bar_padding="6dp"
app:spinning_bar_width="4dp" />
<TextView
android:id="@+id/Register_val"
style="@style/parent"
android:layout_marginTop="@dimen/loginViewsMargin"
android:onClick="onLoginClick"
android:text="Already have an account?"
android:textAlignment="center"
android:textColor="@color/themeColor"
android:textSize="17sp"
android:textStyle="bold" />
</LinearLayout>
</android.support.v7.widget.CardView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginBottom="30dp"
android:gravity="center">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_facebook" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:src="@drawable/ic_google_plus" />
</LinearLayout>
</LinearLayout>
</ScrollView>
<View
android:layout_marginTop="20dp"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_width="11dp"
android:layout_height="match_parent"
android:background="@drawable/ic_side_bg"/>
<ImageView
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_back_img"
android:layout_marginRight="11dp"
android:layout_marginBottom="30dp"
android:onClick="onLoginClick"
android:adjustViewBounds="false"/>
</RelativeLayout>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment