Compare commits

..

No commits in common. "2172b2a7af344b4844103ebe2666cf81be593cda" and "fa202ff162b3bc3bf2cb6d165603e54514837506" have entirely different histories.

16 changed files with 98 additions and 768 deletions

View File

@ -1,6 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>android/.github:renovate-config"
]
}

24
.gitignore vendored
View File

@ -34,27 +34,3 @@ proguard-project.txt
# Android Studio/IDEA
*.iml
.idea
# Secara eksplisit mengabaikan folder yang tidak perlu dilacak
.gradle/
.idea/
build/
gradle/
captures/
local.properties
*.iml
# Secara eksplisit mengabaikan file yang biasanya diabaikan
*.jks
*.cer
# Abaikan SEMUA folder lain di root, kecuali folder 'app'
/*
!/app
# Pastikan file konfigurasi root yang penting tetap terlacak:
!/.gitignore
!/build.gradle
!/settings.gradle
!/gradlew
!/gradlew.bat

View File

@ -5,12 +5,15 @@ This app contains an order flow for cupcakes with options for quantity, flavor,
The order details get displayed on an order summary screen and can be shared to another app to
send the order.
TODO
Pre-requisites
--------------
* Experience with Kotlin syntax.
* How to create and run a project in Android Studio.
* How to create composable functions
* TODO
Getting Started

View File

@ -20,12 +20,12 @@ plugins {
android {
namespace = "com.example.cupcake"
compileSdk = 34
compileSdk = 33
defaultConfig {
applicationId = "com.example.cupcake"
minSdk = 24
targetSdk = 34
targetSdk = 33
versionCode = 1
versionName = "1.0"
@ -56,7 +56,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.3"
kotlinCompilerExtensionVersion = "1.4.7"
}
packaging {
resources {
@ -67,24 +67,24 @@ android {
dependencies {
implementation(platform("androidx.compose:compose-bom:2023.10.01"))
implementation("androidx.activity:activity-compose:1.8.0")
implementation(platform("androidx.compose:compose-bom:2023.05.01"))
implementation("androidx.activity:activity-compose:1.7.2")
implementation("androidx.compose.material3:material3")
implementation("androidx.compose.runtime:runtime")
implementation("androidx.compose.runtime:runtime-livedata")
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-graphics")
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.core:core-ktx:1.10.1")
implementation("androidx.lifecycle:lifecycle-livedata-ktx:${rootProject.extra["lifecycle_version"]}")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:${rootProject.extra["lifecycle_version"]}")
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:${rootProject.extra["lifecycle_version"]}")
implementation("androidx.lifecycle:lifecycle-viewmodel-savedstate:${rootProject.extra["lifecycle_version"]}")
implementation("androidx.navigation:navigation-compose:2.7.4")
implementation("androidx.navigation:navigation-compose:2.5.3")
androidTestImplementation(platform("androidx.compose:compose-bom:2023.10.01"))
androidTestImplementation(platform("androidx.compose:compose-bom:2023.05.01"))
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
androidTestImplementation("androidx.navigation:navigation-testing:2.7.4")
androidTestImplementation("androidx.navigation:navigation-testing:2.5.3")
androidTestImplementation("androidx.test.espresso:espresso-intents:3.5.1")
androidTestImplementation("androidx.test.ext:junit:1.1.5")

View File

@ -76,25 +76,25 @@ class CupcakeOrderScreenTest {
@Test
fun selectOptionScreen_verifyContent() {
// Given list of options
val flavors = listOf("Vanilla", "Chocolate", "Hazelnut", "Cookie", "Mango")
// And subtotal
val subtotal = "$100"
val flavours = listOf("Vanilla", "Chocolate", "Hazelnut", "Cookie", "Mango")
// And sub total
val subTotal = "$100"
// When SelectOptionScreen is loaded
composeTestRule.setContent {
SelectOptionScreen(subtotal = subtotal, options = flavors)
SelectOptionScreen(subtotal = subTotal, options = flavours)
}
// Then all the options are displayed on the screen.
flavors.forEach { flavor ->
composeTestRule.onNodeWithText(flavor).assertIsDisplayed()
flavours.forEach { flavour ->
composeTestRule.onNodeWithText(flavour).assertIsDisplayed()
}
// And then the subtotal is displayed correctly.
composeTestRule.onNodeWithText(
composeTestRule.activity.getString(
R.string.subtotal_price,
subtotal
subTotal
)
).assertIsDisplayed()
@ -148,6 +148,6 @@ class CupcakeOrderScreenTest {
R.string.subtotal_price,
fakeOrderUiState.price
)
).assertIsDisplayed()
)
}
}

View File

@ -21,8 +21,6 @@ import androidx.annotation.StringRes
import androidx.compose.foundation.layout.fillMaxHeight
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.ArrowBack
import androidx.compose.material3.Icon
@ -117,10 +115,7 @@ fun CupcakeApp(
NavHost(
navController = navController,
startDestination = CupcakeScreen.Start.name,
modifier = Modifier
.fillMaxSize()
.verticalScroll(rememberScrollState())
.padding(innerPadding)
modifier = Modifier.padding(innerPadding)
) {
composable(route = CupcakeScreen.Start.name) {
StartOrderScreen(

View File

@ -18,13 +18,13 @@ package com.example.cupcake
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.activity.enableEdgeToEdge
import androidx.core.view.WindowCompat
import com.example.cupcake.ui.theme.CupcakeTheme
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
enableEdgeToEdge()
super.onCreate(savedInstanceState)
WindowCompat.setDecorFitsSystemWindows(window, false)
setContent {
CupcakeTheme {
CupcakeApp()

View File

@ -19,16 +19,16 @@ import com.example.cupcake.R
object DataSource {
val flavors = listOf(
R.string.original_burger,
R.string.black_burger,
R.string.Cheese_burger,
R.string.chicken_burger,
R.string.veggie_burger
R.string.vanilla,
R.string.chocolate,
R.string.red_velvet,
R.string.salted_caramel,
R.string.coffee
)
val quantityOptions = listOf(
Pair(R.string.one_burger, 1),
Pair(R.string.six_burger, 6),
Pair(R.string.twelve_burger, 12)
Pair(R.string.one_cupcake, 1),
Pair(R.string.six_cupcakes, 6),
Pair(R.string.twelve_cupcakes, 12)
)
}

View File

@ -27,10 +27,10 @@ import java.util.Calendar
import java.util.Locale
/** Price for a single cupcake */
private const val PRICE_PER_CUPCAKE = 200000
private const val PRICE_PER_CUPCAKE = 2.00
/** Additional cost for same day pickup of an order */
private const val PRICE_FOR_SAME_DAY_PICKUP = 300000
private const val PRICE_FOR_SAME_DAY_PICKUP = 3.00
/**
* [OrderViewModel] holds information about a cupcake order in terms of quantity, flavor, and

View File

@ -39,7 +39,6 @@ import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.Preview
import com.example.cupcake.R
import com.example.cupcake.ui.components.FormattedPriceLabel
import com.example.cupcake.ui.theme.CupcakeTheme
/**
* Composable that displays the list of items as [RadioButton] options,
@ -55,14 +54,14 @@ fun SelectOptionScreen(
onCancelButtonClicked: () -> Unit = {},
onNextButtonClicked: () -> Unit = {},
modifier: Modifier = Modifier
) {
){
var selectedValue by rememberSaveable { mutableStateOf("") }
Column(
modifier = modifier,
verticalArrangement = Arrangement.SpaceBetween
) {
Column(modifier = Modifier.padding(dimensionResource(R.dimen.padding_medium))) {
Column(modifier = Modifier.padding(dimensionResource(R.dimen.padding_medium))){
options.forEach { item ->
Row(
modifier = Modifier.selectable(
@ -73,7 +72,7 @@ fun SelectOptionScreen(
}
),
verticalAlignment = Alignment.CenterVertically
) {
){
RadioButton(
selected = selectedValue == item,
onClick = {
@ -101,14 +100,12 @@ fun SelectOptionScreen(
Row(
modifier = Modifier
.fillMaxWidth()
.padding(dimensionResource(R.dimen.padding_medium)),
.padding(dimensionResource(R.dimen.padding_medium))
.weight(1f, false),
horizontalArrangement = Arrangement.spacedBy(dimensionResource(R.dimen.padding_medium)),
verticalAlignment = Alignment.Bottom
) {
OutlinedButton(
modifier = Modifier.weight(1f),
onClick = onCancelButtonClicked
) {
){
OutlinedButton(modifier = Modifier.weight(1f), onClick = onCancelButtonClicked) {
Text(stringResource(R.string.cancel))
}
Button(
@ -126,12 +123,10 @@ fun SelectOptionScreen(
@Preview
@Composable
fun SelectOptionPreview() {
CupcakeTheme {
fun SelectOptionPreview(){
SelectOptionScreen(
subtotal = "299.99",
options = listOf("Option 1", "Option 2", "Option 3", "Option 4"),
modifier = Modifier.fillMaxHeight()
)
}
}

View File

@ -19,7 +19,9 @@ import androidx.annotation.StringRes
import androidx.compose.foundation.Image
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxHeight
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
@ -39,7 +41,6 @@ import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.example.cupcake.R
import com.example.cupcake.data.DataSource
import com.example.cupcake.ui.theme.CupcakeTheme
/**
* Composable that allows the user to select the desired cupcake quantity and expects
@ -51,7 +52,7 @@ fun StartOrderScreen(
quantityOptions: List<Pair<Int, Int>>,
onNextButtonClicked: (Int) -> Unit,
modifier: Modifier = Modifier
) {
){
Column(
modifier = modifier,
verticalArrangement = Arrangement.SpaceBetween
@ -63,17 +64,18 @@ fun StartOrderScreen(
) {
Spacer(modifier = Modifier.height(dimensionResource(R.dimen.padding_medium)))
Image(
painter = painterResource(R.drawable.burger),
painter = painterResource(R.drawable.cupcake),
contentDescription = null,
modifier = Modifier.width(300.dp)
)
Spacer(modifier = Modifier.height(dimensionResource(R.dimen.padding_medium)))
Text(
text = stringResource(R.string.order_burger),
text = stringResource(R.string.order_cupcakes),
style = MaterialTheme.typography.headlineSmall
)
Spacer(modifier = Modifier.height(dimensionResource(R.dimen.padding_small)))
}
Row(modifier = Modifier.weight(1f, false)) {
Column(
modifier = Modifier.fillMaxWidth(),
horizontalAlignment = Alignment.CenterHorizontally,
@ -84,12 +86,12 @@ fun StartOrderScreen(
quantityOptions.forEach { item ->
SelectQuantityButton(
labelResourceId = item.first,
onClick = { onNextButtonClicked(item.second) },
modifier = Modifier.fillMaxWidth(),
onClick = { onNextButtonClicked(item.second) }
)
}
}
}
}
}
/**
@ -101,7 +103,7 @@ fun SelectQuantityButton(
@StringRes labelResourceId: Int,
onClick: () -> Unit,
modifier: Modifier = Modifier
) {
){
Button(
onClick = onClick,
modifier = modifier.widthIn(min = 250.dp)
@ -112,14 +114,10 @@ fun SelectQuantityButton(
@Preview
@Composable
fun StartOrderPreview() {
CupcakeTheme {
fun StartOrderPreview(){
StartOrderScreen(
quantityOptions = DataSource.quantityOptions,
onNextButtonClicked = {},
modifier = Modifier
.fillMaxSize()
.padding(dimensionResource(R.dimen.padding_medium))
modifier = Modifier.fillMaxSize().padding(dimensionResource(R.dimen.padding_medium))
)
}
}

View File

@ -38,7 +38,6 @@ import androidx.compose.ui.tooling.preview.Preview
import com.example.cupcake.R
import com.example.cupcake.data.OrderUiState
import com.example.cupcake.ui.components.FormattedPriceLabel
import com.example.cupcake.ui.theme.CupcakeTheme
/**
* This composable expects [orderUiState] that represents the order state, [onCancelButtonClicked]
@ -51,7 +50,7 @@ fun OrderSummaryScreen(
onCancelButtonClicked: () -> Unit,
onSendButtonClicked: (String, String) -> Unit,
modifier: Modifier = Modifier
) {
){
val resources = LocalContext.current.resources
val numberOfCupcakes = resources.getQuantityString(
@ -98,7 +97,9 @@ fun OrderSummaryScreen(
)
}
Row(
modifier = Modifier.padding(dimensionResource(R.dimen.padding_medium))
modifier = Modifier
.weight(1f, false)
.padding(dimensionResource(R.dimen.padding_medium))
) {
Column(
verticalArrangement = Arrangement.spacedBy(dimensionResource(R.dimen.padding_small))
@ -122,13 +123,11 @@ fun OrderSummaryScreen(
@Preview
@Composable
fun OrderSummaryPreview() {
CupcakeTheme {
fun OrderSummaryPreview(){
OrderSummaryScreen(
orderUiState = OrderUiState(0, "Test", "Test", "$300.00"),
onSendButtonClicked = { subject: String, summary: String -> },
onCancelButtonClicked = {},
modifier = Modifier.fillMaxHeight()
)
}
}

View File

@ -1,630 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="256dp"
android:height="256dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:fillColor="#FF000000"
android:pathData="m230.27,91.59c1.71,-7.93 0.97,-15.58 -1.71,-23.51C225.84,60.05 222.29,51.66 213.63,44.33 204.64,36.87 189.1,28.89 175.55,24.33 161.9,19.81 148.12,17.64 132.4,17.27 116.39,16.58 97.07,17.23 81.35,21.51 65.45,25.89 49.22,34.74 38.71,43.27c-10.46,8.3 -16.78,18.39 -19.5,28.35 -2.72,9.91 -1.94,19.82 2.86,30.47 -0.41,3.87 -2.26,5.99 -5.72,6.55 -3.64,0.32 -12.49,-4.47 -14.98,-3.69 -2.4,0.92 -1.2,6.82 0.55,8.81 1.57,1.89 4.61,2.63 9.13,2.4 -3.27,1.75 -4.98,3.46 -5.12,5.12 -0.18,1.66 1.2,3.13 4.15,4.61l-8.9,11.8 0.65,6.36c2.86,-0.32 5.62,-0.46 8.81,-0.04 3.04,0.23 6.27,1.01 9.68,1.98 -2.77,3.69 -4.47,7.29 -4.93,10.79 -0.55,3.5 0.09,6.64 1.94,9.91 -0.74,8.16 0.32,15.26 2.81,21.81 2.44,6.32 3.37,10 12.35,16.73 9.04,6.69 25.17,17.29 41.31,23.1 15.95,5.72 33.61,11.43 54.21,10.56 20.61,-1.29 52.14,-7.33 68.27,-17.06 15.86,-9.87 24.57,-23.01 26.51,-40.66l4.66,-2.54c3,-4.52 4.52,-9.08 5.07,-13.69 0.46,-4.75 -0.37,-9.36 -2.31,-14.2 0.28,-2.58 0.55,-5.67 0.46,-9.27 -0.09,-3.78 -0.37,-7.84 -0.83,-12.72 2.49,0.18 5.39,0.69 8.2,1.89 2.86,1.11 6,5.81 9.04,4.84 3.09,-1.25 8.67,-5.67 8.9,-11.29 0,-5.62 -4.42,-16.5 -8.67,-21.94 -4.34,-5.44 -9.96,-8.99 -17.06,-10.65z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m226.67,95.32c-2.54,10.28 -9.17,18.39 -20.79,24.85 -11.85,6.22 -30.1,10.88 -48.54,12.72C138.71,134.46 115.25,133.17 96.34,130.77 77.54,128.28 57.76,125.38 45.17,118.88 32.36,112.24 23.42,102.19 20.65,91.72 17.89,81.08 21.12,67.2 29.28,56.5 37.53,45.76 54.77,34.33 69.29,28.24 83.77,22.11 100.55,21.24 114.65,20.27 128.44,19.21 138.9,19.9 151.72,22.16c12.68,2.12 26.88,5.02 38.49,11.2 11.57,6.04 23.65,15.12 30.01,25.49 6.08,10.46 8.71,26 6.45,36.47z"
android:strokeWidth="0.05"
android:fillColor="#c6902c"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m230.63,94.08c4.47,1.15 8.3,3.46 11.85,7.42 3.36,3.78 7.84,10.46 8.99,15.63 1.11,5.02 -0.69,12.36 -2.21,14.52 -1.71,1.89 -3.92,-0.97 -7.7,-2.35 -4.06,-1.52 -10.46,-4.24 -15.86,-5.67 -5.53,-1.43 -10.79,-2.35 -16.46,-2.77 4.2,-0.97 8.02,-3.83 11.66,-8.21 3.55,-4.61 6.74,-10.56 9.72,-18.58z"
android:strokeWidth="0.05"
android:fillColor="#00c200"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m195.09,149.44c-3.96,1.24 -7.1,4.33 -9.77,9.77 -2.72,5.44 -4.65,12.54 -5.99,22.17 -0.6,-1.8 -3.73,-4.24 -9.4,-7.33 -5.81,-3.18 -13.97,-6.96 -24.85,-11.52 1.15,-1.84 2.44,-2.9 4.56,-3.18 1.98,-0.32 5.16,1.84 7.24,1.34 2.03,-0.78 3.41,-2.26 4.65,-5.12 1.89,2.08 3.69,3.04 5.76,2.72 1.94,-0.32 4.15,-4.52 6.09,-4.56 1.75,-0.14 3.32,1.01 4.7,3.64 1.02,-4.7 2.95,-7.7 5.81,-8.99 2.82,-1.38 6.54,-0.96 11.2,1.06z"
android:strokeWidth="0.05"
android:fillColor="#f2c802"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m144.06,163.45c4.15,1.71 7.97,3.37 11.48,4.98 3.41,1.38 5.58,2.21 9.54,4.42 4.01,2.21 8.62,5.16 14.2,9.04l-0.74,4.84c-5.44,-4.29 -11.11,-7.88 -17.01,-11.15 -5.99,-3.32 -12.22,-5.95 -18.67,-8.25 0.37,-1.29 0.78,-2.59 1.2,-3.88z"
android:strokeWidth="0.05"
android:fillColor="#f2c802"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m3.18,137.27 l8.25,-8.85c3.32,2.58 6.18,3.96 8.57,4.33 2.17,0.19 3.78,-2.77 5.53,-2.63 1.8,0 2.95,3.55 5.21,3.18 2.07,-0.55 6.09,-5.76 7.61,-5.48 1.43,0.23 1.8,2.81 1.11,7.38 0.88,1.84 1.38,3.18 1.71,4.52 0.18,1.2 0.14,2.17 -0.14,2.9C36.28,140.87 30.79,139.67 24.57,138.84 18.25,138.05 11.34,137.64 3.64,137.78Z"
android:strokeWidth="0.05"
android:fillColor="#f2c802"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="M42.36,144.65C38.99,143.17 34.02,141.88 27.42,140.96 20.74,139.9 12.53,139.21 2.62,138.7l0.83,3c3.5,0.37 7.38,0.83 11.62,1.57 4.2,0.55 8.71,1.43 13.55,2.63 4.75,1.06 9.4,2.44 14.48,4.15 -0.23,-1.81 -0.46,-3.6 -0.74,-5.4z"
android:strokeWidth="0.05"
android:fillColor="#f2c802"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m42.54,122.15c-0.69,3.6 -0.55,7.51 -0.09,11.76 0.51,4.15 1.52,9.31 3.23,13.37 1.66,4.01 1.84,8.02 6.78,10.6 4.84,2.35 14.94,8.21 22.27,4.06 7.19,-4.33 13.88,-13.92 20.56,-29.27 -7.51,-0.41 -15.44,-1.47 -24.29,-3.18 -8.9,-1.8 -18.21,-4.25 -28.44,-7.34z"
android:strokeWidth="0.05"
android:fillColor="#00c200"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m23.69,147.14c3.87,0.37 7.51,1.11 11.11,2.03 3.6,0.83 6.78,2.03 10.1,3.41 0.6,2.9 2.21,5.44 5.02,7.61 2.67,1.98 7.61,4.06 11.43,4.98 3.73,0.92 7.19,1.94 11.25,0.55 3.92,-1.57 8.21,-4.7 12.68,-9.59 3,0.23 6.04,0.28 9.31,-0.04 3.18,-0.32 6.41,-0.97 9.87,-1.94 -1.29,3.32 -0.88,5.53 1.61,6.45 2.44,0.92 6.64,0.65 12.77,-0.83l-1.52,10.65c-6.96,3.73 -14.89,6.04 -24.29,7.1 -9.54,1.06 -20.05,3.78 -31.72,-1.11 -11.66,-5.15 -24.02,-14.74 -37.62,-29.26z"
android:strokeWidth="0.05"
android:fillColor="#ff0000"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m129.21,166.64c2.81,3.5 7.33,6.5 13.74,8.99 6.36,2.49 14.29,4.19 24.16,5.63 -5.85,-2.77 -11.11,-5.26 -15.77,-7.65 -4.75,-2.44 -8.81,-4.47 -12.35,-6.45l-5.48,-8.11c-1.43,2.55 -2.87,5.08 -4.3,7.62z"
android:strokeWidth="0.05"
android:fillColor="#ff0000"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m143.04,154.6c-1.75,-6.59 -3.55,-13.18 -5.35,-19.78 -9.77,0.32 -17.75,0.32 -24.48,0.18 -6.73,-0.23 -11.85,-0.65 -15.54,-1.24 -4.47,7.38 -7.19,12.77 -8.16,16.18 -0.97,3.41 0.18,3.46 2.21,4.06 1.89,0.46 5.44,-0.37 8.85,-1.06 3.27,-0.78 6.59,-1.85 10.46,-3.37 -3.04,2.86 -4.56,5.12 -4.75,6.59 -0.14,1.34 1.24,1.89 3.78,2.17 2.4,0.23 5.99,0.09 10.79,-0.41 -0.69,4.19 -0.74,7.05 0.05,8.76 0.78,1.71 2.4,3.41 4.33,1.2 1.71,-2.44 3.83,-7.38 6.18,-15.3 4.24,5.81 7.33,8.9 9.27,9.27 1.95,0.27 2.73,-2.09 2.36,-7.25z"
android:strokeWidth="0.05"
android:fillColor="#80ff00"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m183.94,176.73c3.14,-0.83 6.46,-2.12 10.46,-3.87 3.92,-1.84 8.21,-4.01 13.05,-6.68 -1.8,-7.01 -3.04,-10.97 -4.24,-12.4 -1.2,-1.38 -1.61,4.66 -2.67,4.24 -1.15,-0.51 -2.44,-2.86 -4.06,-7.05 -3.87,2.54 -6.64,6.04 -8.81,10.33 -2.11,4.39 -3.36,9.37 -3.73,15.46z"
android:strokeWidth="0.05"
android:fillColor="#ff0000"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m227.73,132.52 l-7.19,6.96c0.09,3.97 0.74,7.19 1.43,9.87 0.83,2.67 1.71,4.56 3.13,6.04l3.64,-4.24c-0.32,-6.19 -0.65,-12.41 -1.01,-18.63z"
android:strokeWidth="0.05"
android:fillColor="#ff0000"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m222.06,157.14c-0.65,-2.08 -1.89,-3.04 -3.73,-3.09 -1.98,-0.14 -6.55,1.52 -7.47,3.04 -0.92,1.48 -0.56,3.46 1.61,5.95 2.49,-1.2 4.33,-2.12 6.04,-3.13 1.65,-1 2.66,-1.92 3.55,-2.75z"
android:strokeWidth="0.05"
android:fillColor="#ff0000"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m21.02,149.16c-2.72,3.87 -3.5,7.93 -2.54,12.17 0.97,4.24 4.61,8.58 8.44,13 3.6,4.29 4.52,6.87 13.78,12.72 9.36,5.76 23.46,16.55 41.44,21.67 17.93,4.98 46.19,9.13 65.05,8.16 18.81,-1.25 33.38,-7.79 46.7,-14.84 13.09,-7.24 23.42,-16.04 31.53,-27.48 3.55,-5.9 5.35,-10.37 5.58,-13.23 0.28,-3.13 -0.46,-5.99 -4.52,-4.29 -4.38,1.75 -13.55,10.7 -20.79,14.94 -7.15,4.15 -14.47,7.24 -21.99,9.63l-3.36,8.62 -10.47,-5.9c-4.15,0.97 -9.59,0.18 -16.5,-1.85 -7.01,-2.26 -15.12,-5.76 -24.89,-11.02 -8.57,3.96 -17.61,6.59 -27.29,8.39 -9.91,1.61 -21.16,3.64 -30.89,1.84 -9.91,-2.12 -18.85,-7.56 -27.2,-13.09 -8.27,-5.49 -15.47,-11.86 -22.06,-19.43z"
android:strokeWidth="0.05"
android:fillColor="#804000"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m81.68,188.66c0.74,0.83 26.83,7.15 41.12,7.93 14.15,0.51 37.29,-3.09 42.73,-4.2 4.98,-1.15 -3.73,-2.53 -11.57,-2.53 -7.88,-0.14 -22.68,2.3 -34.8,2.17 -12.25,-0.22 -38.02,-4.17 -37.47,-3.36z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m21.52,170.47c4.75,7.24 11.25,14.01 19.5,20.51 8.11,6.45 17.89,13.46 29.87,18.16 12.08,4.56 26.51,7.7 41.54,9.4 14.84,1.61 32.73,2.81 46.88,0.41 13.88,-2.67 26.28,-9.36 36.46,-15.26 10.19,-5.85 17.89,-12.45 23.97,-19.78 0.6,5.81 -1.66,11.66 -6.27,17.75 -4.89,6.13 -12.63,13.23 -21.99,18.44 -9.4,4.89 -19.78,9.13 -33.79,11.48 -14.29,2.21 -33.42,4.65 -50.43,2.35 -17.01,-2.54 -37.29,-9.68 -50.53,-16.27 -13.32,-6.69 -22.82,-14.52 -28.67,-22.45 -5.93,-8.02 -8.05,-16.05 -6.53,-24.75z"
android:strokeWidth="0.05"
android:fillColor="#c6902c"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m141.01,136.44c1.52,6.59 3.23,11.39 5.12,14.94 1.94,3.32 4.01,4.79 6.04,5.67 1.98,0.65 3.96,0.19 5.44,-0.69 1.34,-0.83 1.89,-2.26 2.17,-4.29 2.26,1.61 4.01,2.35 5.76,2.21 1.61,-0.28 2.07,-2.77 4.06,-3.18 1.89,-0.51 4.61,-0.32 7.79,0.37 0.78,-4.29 2.54,-6.96 5.81,-8.02 3.18,-1.06 10.28,0.09 13.09,1.66 2.58,1.43 1.89,6.09 3.09,7.01 1.15,0.6 2.31,-4.24 4.01,-2.26 1.71,2.03 4.47,12.95 5.62,14.47 0.88,1.34 -0.37,-3.59 -0.18,-5.9 0.14,-2.49 -0.28,-6.5 0.88,-7.75 1.15,-1.15 3.41,0.46 5.35,0.74 1.66,0.14 3.27,0.23 4.84,0.28 -1.66,-3.37 -2.54,-6.18 -2.44,-8.94 0,-2.72 0.92,-4.7 2.77,-7.19 1.75,-2.67 4.29,-5.35 7.79,-8.39l-20.84,-4.01c-4.52,2.54 -10.6,4.66 -18.44,6.91 -7.98,2.12 -20.65,4.66 -28.63,5.85 -7.97,1.1 -14.33,1.15 -19.08,0.5z"
android:strokeWidth="0.05"
android:fillColor="#80ff00"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m24.89,104.17c0.28,2.72 -0.41,4.7 -2.26,5.76 -1.94,0.97 -5.53,0.78 -8.81,0.51 -3.5,-0.46 -9.87,-2.95 -11.11,-2.49 -1.15,0.28 1.94,3.92 4.1,5.07 2.12,1.11 4.7,1.8 8.25,1.89 -2.63,2.9 -3.96,5.44 -3.83,7.61 0.09,2.03 2.12,4.33 4.15,5.12 1.84,0.65 4.61,-0.88 6.87,-0.65 1.89,0.23 2.86,2.67 5.76,1.8 3.04,-1.11 6.91,-3.78 12.17,-8.21 -1.94,-0.74 -4.01,-2.54 -6.59,-5.21 -2.58,-2.86 -5.49,-6.41 -8.71,-11.2z"
android:strokeWidth="0.05"
android:fillColor="#80ff00"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m57.48,128.83c-0.18,-0.37 -2.21,-0.69 -2.35,-0.6 -0.18,0.14 0.37,1.06 0.92,1.34 0.32,0 1.57,-0.6 1.43,-0.74z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m58.22,133.49c-0.18,-0.37 -2.21,-0.69 -2.35,-0.6 -0.14,0.14 0.28,1.06 0.88,1.34 0.28,0 1.66,-0.6 1.48,-0.74z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m58.22,142.62c-0.18,-0.37 -2.21,-0.69 -2.35,-0.6 -0.14,0.14 0.28,1.06 0.88,1.34 0.28,0 1.66,-0.6 1.48,-0.74z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m57.71,138.05c-0.23,-0.37 -2.12,-0.74 -2.3,-0.55 -0.14,0.14 0.28,1.06 0.88,1.34 0.32,0 1.57,-0.55 1.43,-0.78z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m59.51,147.88c-0.18,-0.37 -2.21,-0.69 -2.35,-0.6 -0.14,0.09 0.28,1.15 0.88,1.38 0.28,0 1.66,-0.55 1.48,-0.78z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m60.29,153.04c-0.18,-0.37 -2.21,-0.69 -2.35,-0.6 -0.14,0.14 0.28,1.06 0.88,1.34 0.28,0 1.66,-0.59 1.48,-0.73z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m65.96,154.37c0.14,-0.37 2.12,-0.55 2.4,-0.37 0.18,0.14 -0.69,1.11 -1.01,1.29 -0.51,0 -1.57,-0.78 -1.38,-0.92z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m67.81,148.89c0.14,-0.28 2.12,-0.51 2.4,-0.33 0.18,0.19 -0.69,1.02 -1.01,1.25 -0.51,0 -1.57,-0.78 -1.38,-0.92z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m69.37,143.86c0.14,-0.28 2.12,-0.51 2.4,-0.32 0.18,0.19 -0.69,1.02 -1.01,1.25 -0.51,0 -1.57,-0.78 -1.38,-0.92z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m71.5,139.48c0.05,-0.37 2.07,-0.55 2.35,-0.37 0.14,0.19 -0.6,1.01 -0.97,1.25 -0.51,-0.05 -1.57,-0.69 -1.38,-0.88z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m72.79,134.69c0.14,-0.37 2.12,-0.55 2.4,-0.37 0.18,0.19 -0.69,1.02 -1.01,1.25 -0.51,-0.05 -1.57,-0.69 -1.38,-0.88z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m226.16,116.76c0.23,-0.14 0.74,-2.07 0.83,-2.26 -0.14,-0.32 -1.38,0.28 -1.43,0.74 -0.23,0.28 0.33,1.61 0.6,1.52z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m231.97,119.34c0.23,-0.14 0.74,-2.07 0.83,-2.26 -0.14,-0.32 -1.38,0.28 -1.43,0.74 -0.23,0.28 0.32,1.61 0.6,1.52z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m237.64,122.24c0.23,-0.09 0.74,-2.17 0.83,-2.3 -0.14,-0.32 -1.38,0.28 -1.43,0.74 -0.24,0.37 0.31,1.66 0.59,1.57z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m244.6,124.18c0.23,-0.14 0.74,-2.07 0.83,-2.26 -0.14,-0.32 -1.38,0.28 -1.43,0.74 -0.23,0.28 0.33,1.61 0.6,1.52z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m242.15,115.7c0.23,-0.09 0.74,-2.17 0.83,-2.3 -0.14,-0.32 -1.38,0.28 -1.43,0.74 -0.22,0.37 0.33,1.66 0.6,1.57z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m237.82,110.16c0.32,-0.14 0.78,-2.07 0.88,-2.26 -0.18,-0.32 -1.34,0.28 -1.47,0.74 -0.23,0.28 0.33,1.61 0.6,1.52z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m231.28,105.78c0.32,-0.14 0.78,-2.07 0.88,-2.26 -0.19,-0.32 -1.34,0.28 -1.48,0.74 -0.23,0.28 0.32,1.61 0.6,1.52z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m200.48,129.66c0.09,-0.23 4.38,1.2 6.64,3.78 2.07,2.67 5.76,10.42 6.27,12.03 0.32,1.43 -2.07,-1.2 -3.27,-3.09 -1.29,-2.03 -2.44,-6.41 -3.97,-8.53 -1.69,-2.3 -5.89,-4.05 -5.66,-4.19z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m160.52,137.92c-0.51,-0.28 -0.09,3.5 -1.25,5.3 -1.15,1.75 -5.76,4.7 -5.67,5.12 -0.04,0.23 4.06,-2.72 5.53,-3.13 1.29,-0.6 1.11,0.19 2.44,0.6 1.15,0.51 5.21,2.26 5.26,2.21 -0.09,-0.23 -4.19,-2.12 -5.21,-3.69 -1.1,-1.75 -0.83,-6.31 -1.1,-6.4z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m121.38,138.38c-0.41,1.89 -0.83,3.6 -1.24,5.3 -0.41,1.71 0.97,3.36 -0.55,5.16 -1.61,1.84 -8.94,5.44 -8.81,5.63 0.18,0.14 7.19,-4.29 9.17,-3.83 1.94,0.51 1.98,6.96 2.4,6.87 0.41,-0.18 -1.2,-3.92 1.48,-6.22 2.67,-2.31 5.99,-2.58 5.99,-2.58 -2.77,0.09 -4.75,-0.65 -6.13,-2.4 -1.43,-1.74 -2.26,-4.32 -2.3,-7.91z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m64.07,78.54c-0.74,0.14 -1.89,0.28 -2.72,1.11 -1.06,0.6 -2.81,2.07 -2.95,3.18 -0.09,1.06 1.01,2.86 2.07,3.09 0.83,0.05 2.12,-1.06 3.13,-2.26 0.78,-1.34 2.12,-4.06 2.26,-4.93 0.05,-0.83 -1.15,-0.41 -1.8,-0.18z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m63.57,79.37c-0.55,-0.05 -1.29,0.23 -2.03,0.83 -0.78,0.6 -2.4,1.75 -2.54,2.77 -0.28,0.83 0.83,2.21 1.57,2.35 0.65,-0.09 1.89,-1.15 2.67,-2.12 0.69,-1.15 1.61,-2.95 1.71,-3.64 0,-0.65 -0.88,-0.41 -1.38,-0.18z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m103.12,92.28c0.18,0.65 0.37,1.71 1.29,2.63 0.83,0.88 2.21,2.54 3.46,2.67 1.06,0 2.67,-1.61 2.9,-2.35 0.05,-1.01 -1.38,-2.17 -2.54,-2.9 -1.52,-0.97 -4.1,-1.75 -5.07,-1.84 -0.88,-0.05 -0.41,0.97 -0.05,1.8z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m104,92.69c0,0.55 0.32,1.15 0.97,1.98 0.69,0.69 1.98,2.12 3,2.3 0.83,0.05 2.03,-1.15 2.17,-1.8 -0.09,-0.78 -1.34,-1.84 -2.3,-2.44 -1.15,-0.78 -3.18,-1.43 -3.78,-1.38 -0.6,-0.14 -0.32,0.78 -0.05,1.34z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m137.15,63.93c-0.74,0.05 -1.89,0.28 -2.72,1.06 -1.06,0.78 -2.81,1.98 -2.95,3.23 -0.09,1.06 1.01,2.86 2.07,3.09 0.83,-0.05 2.12,-1.06 3.13,-2.3 0.78,-1.38 2.12,-3.96 2.26,-4.89 0.03,-0.83 -1.18,-0.41 -1.82,-0.18z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m136.63,64.76c-0.55,-0.05 -1.29,0.23 -2.03,0.83 -0.78,0.6 -2.4,1.75 -2.54,2.77 -0.28,0.88 0.83,2.12 1.57,2.3 0.55,-0.05 1.84,-1.15 2.63,-2.07 0.69,-1.11 1.61,-3.04 1.71,-3.69 -0.04,-0.69 -0.78,-0.32 -1.33,-0.14z"
android:strokeWidth="0.05"
android:fillColor="#ffd028"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m123.82,46.92c-0.51,0.69 -0.97,1.43 -1.01,2.72 -0.18,1.2 -0.41,3.41 0.37,4.33 0.74,0.74 2.86,1.06 3.69,0.6 0.65,-0.55 0.6,-2.49 0.41,-3.87 -0.32,-1.61 -1.61,-4.33 -2.07,-4.98 -0.65,-0.65 -1.11,0.41 -1.38,1.2z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m124.14,47.84c-0.28,0.37 -0.83,1.06 -0.78,2.07 -0.18,1.01 -0.14,2.86 0.32,3.73 0.55,0.65 2.07,0.78 2.77,0.41 0.46,-0.51 0.41,-2.21 0.23,-3.37 -0.28,-1.34 -1.2,-3.23 -1.52,-3.73 -0.51,-0.65 -0.78,0.41 -1.01,0.88z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m141.15,37.1c0.41,0.32 0.88,0.74 1.75,1.06 0.78,0.14 2.26,0.65 3,0.28 0.65,-0.41 0.92,-1.94 0.83,-2.44 -0.41,-0.46 -1.52,-0.88 -2.58,-0.74 -1.15,0.05 -3.13,0.37 -3.64,0.78 -0.65,0.28 0.27,0.69 0.64,1.06z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m141.85,37c0.14,0.23 0.69,0.55 1.29,0.78 0.65,0.18 1.98,0.32 2.58,0.23 0.55,-0.23 0.83,-1.61 0.65,-1.84 -0.37,-0.41 -1.48,-0.6 -2.26,-0.55 -0.92,-0.05 -2.31,0.32 -2.72,0.6 -0.42,0.18 0.08,0.51 0.45,0.78z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m133.73,29.67c-0.23,-0.6 -0.65,-1.06 -1.25,-1.57 -0.78,-0.55 -1.98,-1.48 -2.72,-1.34 -0.92,0.09 -1.71,1.29 -1.66,1.98 0.09,0.6 1.06,1.2 2.17,1.61 0.97,0.37 2.95,0.55 3.64,0.55 0.46,-0.32 0.04,-0.74 -0.19,-1.24z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m133.03,29.54c-0.28,-0.51 -0.41,-0.74 -0.92,-1.2 -0.65,-0.46 -1.71,-1.2 -2.31,-1.15 -0.65,0.14 -1.48,0.83 -1.24,1.52 0.14,0.37 1.01,1.06 1.89,1.34 0.83,0.23 2.17,0.37 2.77,0.41 0.32,-0.18 -0.1,-0.55 -0.19,-0.92z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m114.41,31.56c0.09,-0.55 0.46,-1.15 0.41,-1.98 -0.14,-1.01 -0.14,-2.4 -0.69,-2.9 -0.55,-0.51 -2.3,-0.51 -2.58,0 -0.41,0.37 -0.37,1.61 0.14,2.67 0.32,0.88 1.38,2.77 1.94,3.18 0.37,0.32 0.51,-0.6 0.78,-0.97z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="M114.14,30.96C114.23,30.55 114.46,30.04 114.46,29.44 114.41,28.71 114.14,27.28 113.82,26.95c-0.46,-0.46 -1.75,-0.46 -1.94,0 -0.46,0.41 -0.05,1.38 0.18,2.35 0.28,0.74 1.01,1.94 1.48,2.35 0.23,0.23 0.37,-0.41 0.6,-0.69z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m93.9,28.48c-0.09,0.6 -0.14,1.11 0.23,2.03 0.23,0.74 0.83,2.17 1.61,2.54 0.65,0.18 2.17,-0.32 2.44,-0.83 0.05,-0.65 -0.28,-1.71 -0.97,-2.49 -0.69,-0.88 -2.35,-2.26 -2.86,-2.4 -0.6,-0.18 -0.46,0.55 -0.46,1.15z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m94.36,28.98c-0.09,0.32 -0.09,0.83 0.18,1.52 0.14,0.51 0.83,1.89 1.38,2.17 0.46,0.09 1.61,-0.18 1.84,-0.65 0,-0.6 -0.37,-1.43 -0.92,-2.12C96.34,29.21 95.05,28.2 94.73,28.11 94.36,27.88 94.18,28.52 94.36,28.98Z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m86.2,37.37c-0.28,-0.46 -0.78,-1.2 -1.34,-1.52 -0.83,-0.55 -2.12,-1.34 -2.81,-1.11 -0.88,0.18 -1.61,1.29 -1.48,2.07 0,0.55 1.15,1.11 2.21,1.48 0.92,0.28 3.04,0.32 3.69,0.32 0.51,-0.32 0,-0.74 -0.28,-1.24z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m85.51,37.28c-0.23,-0.46 -0.51,-0.78 -1.01,-1.15 -0.69,-0.55 -1.84,-1.06 -2.4,-1.01 -0.69,0.05 -1.24,1.06 -1.11,1.61 0.09,0.46 1.11,0.92 1.98,1.2 0.83,0.18 2.17,0.32 2.77,0.23 0.32,-0.18 -0.05,-0.6 -0.23,-0.88z"
android:strokeWidth="0.05"
android:fillColor="#ffd028"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m161.12,27.32c-0.51,-0.32 -1.06,-0.78 -1.84,-0.83 -0.97,-0.28 -2.44,-0.37 -3,0.09 -0.69,0.28 -0.92,2.07 -0.51,2.54 0.37,0.37 1.43,0.51 2.63,0.41 1.01,-0.23 2.95,-0.88 3.5,-1.2 0.46,-0.41 -0.46,-0.69 -0.78,-1.01z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m160.46,27.51c-0.37,-0.32 -0.83,-0.6 -1.38,-0.65 -0.74,-0.28 -2.07,-0.18 -2.58,0.09 -0.51,0.18 -0.88,1.52 -0.41,1.89 0.32,0.23 1.38,0.46 2.31,0.32 0.78,-0.28 2.26,-0.65 2.67,-0.92 0.28,-0.32 -0.28,-0.51 -0.6,-0.74z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m170.24,34.84c0.19,-0.46 0.69,-1.15 0.78,-1.89 0.14,-0.97 0.14,-2.44 -0.18,-3 -0.51,-0.65 -2.12,-0.78 -2.54,-0.41 -0.51,0.28 -0.69,1.57 -0.37,2.63 0.09,1.06 0.97,2.81 1.38,3.46 0.28,0.46 0.65,-0.46 0.92,-0.78z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m170.06,34.19c0.19,-0.28 0.51,-0.92 0.6,-1.43 0.04,-0.69 0.04,-2.21 -0.19,-2.58 -0.46,-0.6 -1.57,-0.65 -1.89,-0.32 -0.46,0.32 -0.37,1.38 -0.23,2.3 0.09,0.83 0.6,2.12 1.02,2.63 0.19,0.28 0.44,-0.28 0.7,-0.6z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m181.49,34.93c-0.14,0.6 -0.04,1.11 0.28,2.03 0.28,0.78 0.97,2.03 1.71,2.49 0.69,0.28 2.07,-0.51 2.4,-0.92 0.14,-0.65 -0.37,-1.71 -1.01,-2.44 -0.74,-0.78 -2.49,-2.26 -2.95,-2.3 -0.6,-0.18 -0.51,0.55 -0.42,1.15z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m181.99,35.39c-0.09,0.32 -0.09,0.83 0.19,1.52 0.28,0.65 0.83,1.84 1.48,2.17 0.41,0.14 1.66,-0.28 1.8,-0.69 0.04,-0.51 -0.46,-1.57 -0.97,-2.12 -0.6,-0.74 -1.8,-1.61 -2.17,-1.75 -0.4,-0.23 -0.44,0.41 -0.31,0.88z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m195.09,47.33c-0.41,-0.37 -1.06,-0.88 -1.75,-0.97 -0.97,-0.32 -2.4,-0.41 -3.04,-0.09 -0.69,0.37 -1.11,1.89 -0.69,2.44 0.37,0.55 1.43,0.6 2.63,0.65 1.11,-0.09 2.9,-0.78 3.6,-1.01 0.42,-0.28 -0.36,-0.78 -0.73,-1.01z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m194.45,47.42c-0.41,-0.32 -0.69,-0.55 -1.34,-0.69 -0.74,-0.28 -2.07,-0.37 -2.58,-0.09 -0.6,0.23 -0.83,1.43 -0.51,1.84 0.23,0.28 1.34,0.55 2.26,0.46 0.78,-0.14 2.26,-0.51 2.67,-0.74 0.24,-0.28 -0.22,-0.6 -0.49,-0.78z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m167.06,73.84c-0.55,-0.65 -1.43,-1.24 -2.44,-1.61 -1.24,-0.46 -3.32,-1.15 -4.29,-0.65 -0.97,0.46 -1.84,2.58 -1.38,3.5 0.28,0.74 2.08,1.15 3.64,1.24 1.57,-0.05 4.43,-0.46 5.35,-0.88 0.65,-0.51 -0.41,-1.11 -0.87,-1.61z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m166.09,73.93c-0.41,-0.46 -0.97,-1.06 -1.84,-1.24 -0.92,-0.51 -3.04,-0.88 -3.69,-0.55 -0.92,0.37 -1.38,1.84 -1.01,2.63 0.28,0.51 1.94,1.01 3.18,1.01 1.15,-0.05 3.32,-0.32 4.01,-0.65 0.47,-0.37 -0.22,-0.83 -0.64,-1.2z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m195.23,64.66c-0.88,0.14 -1.84,0.28 -2.72,1.11 -1.15,0.6 -2.72,2.07 -2.91,3.18 -0.18,1.06 1.15,2.86 2.08,3.09 0.78,-0.05 2.17,-1.06 3.09,-2.3 0.88,-1.38 2.12,-3.96 2.3,-4.89 0.14,-0.83 -1.24,-0.41 -1.84,-0.18z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m194.77,65.49c-0.65,-0.05 -1.34,0.23 -2.08,0.83 -0.74,0.6 -2.53,1.75 -2.53,2.77 -0.19,0.83 0.83,2.21 1.61,2.35 0.69,-0.09 1.8,-1.15 2.63,-2.12 0.69,-1.15 1.61,-2.95 1.71,-3.64 -0.05,-0.65 -0.78,-0.41 -1.33,-0.18z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m186.83,85.5c0.19,0.6 0.74,1.66 1.66,2.44 0.78,0.69 2.67,2.26 3.73,2.21 0.92,-0.23 2.67,-1.84 2.58,-2.72 -0.19,-1.06 -1.57,-1.84 -2.9,-2.54 -1.43,-0.69 -4.42,-1.38 -5.26,-1.2 -0.88,0 -0.24,1.01 0.17,1.8z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m187.75,85.82c0.19,0.46 0.37,1.2 1.25,1.84 0.74,0.69 2.3,1.8 3.27,1.89 0.74,-0.09 2.03,-1.43 1.94,-2.07 -0.14,-0.78 -1.66,-1.66 -2.63,-2.12 -1.15,-0.6 -3.37,-1.01 -3.96,-0.88 -0.67,0 -0.2,0.74 0.15,1.34z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m185.09,108.55c0.23,-0.78 0.41,-1.75 0.37,-2.9 -0.28,-1.24 -0.56,-3.5 -1.38,-4.1 -0.92,-0.69 -3.23,-0.41 -3.73,0.32 -0.6,0.65 -0.19,2.4 0.51,3.83 0.69,1.29 2.35,3.87 3.23,4.38 0.65,0.41 0.74,-0.92 1.02,-1.52z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m184.58,107.72c0.19,-0.55 0.28,-1.34 0.28,-2.17 -0.14,-1.15 -0.6,-3 -1.2,-3.6 -0.74,-0.65 -2.44,-0.32 -2.81,0.28 -0.41,0.6 0,2.12 0.55,3.32 0.41,1.06 1.8,2.86 2.4,3.27 0.47,0.37 0.56,-0.65 0.79,-1.11z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m152.73,97.12c-0.65,-0.6 -1.29,-1.34 -2.44,-1.66 -1.25,-0.41 -3.32,-1.24 -4.29,-0.69 -1.06,0.51 -1.89,2.49 -1.43,3.46 0.28,0.69 2.08,1.24 3.64,1.29 1.57,-0.14 4.43,-0.28 5.35,-0.78 0.74,-0.51 -0.37,-1.11 -0.82,-1.61z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m151.71,97.16c-0.51,-0.46 -0.88,-1.06 -1.8,-1.24 -0.92,-0.51 -3.04,-0.83 -3.69,-0.6 -0.88,0.37 -1.48,1.84 -1.06,2.63 0.28,0.55 1.94,0.97 3.18,1.06 1.15,0 3.32,-0.37 4.01,-0.6 0.47,-0.32 -0.22,-0.92 -0.64,-1.24z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m94.68,106.02c-0.74,0.05 -1.89,0.28 -2.72,1.06 -1.06,0.78 -2.81,1.98 -2.95,3.23 -0.09,1.06 1.01,2.86 2.07,3.09 0.83,-0.05 2.12,-1.06 3.13,-2.3 0.78,-1.38 2.12,-3.96 2.26,-4.89 0.05,-0.83 -1.15,-0.41 -1.8,-0.18z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m94.18,106.85c-0.55,-0.05 -1.29,0.23 -2.03,0.83 -0.78,0.6 -2.4,1.75 -2.54,2.77 -0.28,0.88 0.83,2.12 1.57,2.3 0.65,-0.05 1.89,-1.15 2.67,-2.07 0.69,-1.11 1.61,-3.04 1.71,-3.69 0,-0.69 -0.88,-0.32 -1.38,-0.14z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m70.48,114.64c-0.51,-0.78 -1.15,-1.48 -2.12,-2.07 -1.2,-0.78 -3.04,-1.66 -4.1,-1.38 -1.01,0.18 -2.26,2.3 -1.98,3.18 0.09,0.83 1.84,1.52 3.32,1.89 1.38,0.28 4.56,0.37 5.44,0.09 0.69,-0.37 -0.14,-1.11 -0.55,-1.71z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m69.51,114.54c-0.41,-0.55 -0.83,-1.2 -1.61,-1.57 -1.01,-0.55 -2.67,-1.43 -3.55,-1.2 -0.92,0.14 -1.71,1.71 -1.48,2.4 0.14,0.55 1.84,1.24 3,1.57 1.15,0.23 3.32,0.32 4.01,0.09 0.55,-0.37 -0.05,-0.74 -0.37,-1.29z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m38.63,102.7c0.69,0.37 1.57,0.65 2.81,0.83 1.2,0 3.46,-0.14 4.29,-0.78 0.69,-0.88 0.83,-3.13 0.23,-3.73 -0.65,-0.51 -2.54,-0.69 -3.87,-0.05 -1.48,0.46 -4.24,1.71 -4.75,2.49 -0.65,0.6 0.55,0.78 1.29,1.24z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m39.55,102.33c0.46,0.18 1.11,0.51 2.12,0.6 1.01,-0.05 2.9,-0.09 3.69,-0.65 0.55,-0.69 0.6,-2.4 0.14,-2.81 -0.6,-0.51 -2.26,-0.32 -3.37,0.05 -1.29,0.28 -3.13,1.38 -3.6,1.89 -0.46,0.41 0.46,0.6 1.01,0.92z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m32.73,83.06c-0.37,-0.83 -0.6,-1.75 -1.38,-2.58 -0.88,-0.92 -2.54,-2.54 -3.55,-2.54 -1.11,-0.05 -2.81,1.48 -2.81,2.44 -0.05,0.83 1.24,1.94 2.63,2.81 1.34,0.83 4.06,1.52 5.12,1.71 0.65,-0.14 0.23,-1.11 0,-1.84z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m31.85,82.69c-0.23,-0.6 -0.46,-1.24 -1.06,-1.94 -0.78,-0.69 -2.21,-2.26 -3.04,-2.21 -0.92,-0.09 -2.21,1.06 -2.12,1.84 0,0.69 1.2,1.66 2.35,2.4 0.97,0.65 3.09,1.06 3.87,1.24 0.46,0 0.23,-0.92 0,-1.34z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m31.57,60.15c-0.41,0.65 -0.65,1.61 -0.51,2.9 0.18,1.11 0.23,3.46 1.2,4.2 0.78,0.55 3.09,0.51 3.73,-0.14 0.37,-0.78 0.32,-2.49 -0.32,-3.87 -0.6,-1.48 -2.35,-4.06 -2.95,-4.52 -0.69,-0.6 -1.01,0.65 -1.15,1.43z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m32.03,61.02c-0.23,0.41 -0.6,1.2 -0.37,2.17 0.05,1.01 0.32,2.86 1.01,3.6 0.69,0.41 2.21,0.55 2.81,-0.09 0.28,-0.51 0.09,-2.4 -0.37,-3.37 -0.55,-1.15 -1.71,-3.04 -2.21,-3.37 -0.65,-0.51 -0.69,0.55 -0.88,1.06z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m49.14,53.69c-0.23,0.74 -0.28,1.71 0.05,2.9 0.37,1.11 0.97,3.23 1.98,3.87 0.92,0.46 3.09,-0.18 3.64,-0.88 0.46,-0.92 -0.37,-2.4 -1.06,-3.69 -0.83,-1.29 -3.18,-3.46 -3.83,-3.83 -0.83,-0.32 -0.74,0.69 -0.78,1.61z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m49.74,54.43c-0.23,0.51 -0.28,1.24 0.05,2.21 0.28,1.01 0.92,2.72 1.75,3.37 0.74,0.37 2.35,-0.09 2.72,-0.69 0.18,-0.69 -0.46,-2.3 -1.06,-3.23 -0.74,-1.11 -2.26,-2.54 -2.81,-2.86 -0.6,-0.32 -0.65,0.55 -0.65,1.2z"
android:strokeWidth="0.05"
android:fillColor="#ffd028"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m80.67,49.96c-0.65,-0.05 -1.2,0.28 -1.84,0.78 -0.78,0.55 -1.94,1.29 -2.03,2.21 -0.09,0.69 0.74,1.94 1.43,2.12 0.69,0 1.34,-0.83 2.12,-1.61 0.55,-1.01 1.43,-2.67 1.57,-3.37 -0.09,-0.55 -0.74,-0.41 -1.24,-0.14z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m80.35,50.56c-0.51,-0.05 -0.92,0.14 -1.43,0.55 -0.6,0.41 -1.66,1.24 -1.75,1.94 -0.23,0.55 0.55,1.43 1.11,1.57 0.6,0 1.15,-0.83 1.84,-1.43 0.51,-0.74 1.01,-2.12 1.15,-2.54 -0.14,-0.55 -0.51,-0.23 -0.92,-0.09z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m69.05,57.43c-0.65,-0.05 -1.2,0.28 -1.84,0.78 -0.78,0.55 -1.94,1.29 -2.03,2.21 -0.09,0.69 0.74,1.94 1.43,2.12 0.69,0.09 1.34,-0.78 2.12,-1.57 0.55,-0.97 1.43,-2.77 1.57,-3.41 -0.09,-0.55 -0.74,-0.41 -1.24,-0.14z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m68.73,58.03c-0.51,-0.05 -0.92,0.14 -1.43,0.55 -0.6,0.41 -1.66,1.24 -1.75,1.94 -0.23,0.51 0.55,1.52 1.11,1.61 0.6,0.05 1.15,-0.92 1.84,-1.48 0.51,-0.74 1.01,-2.12 1.15,-2.54 -0.14,-0.55 -0.51,-0.23 -0.92,-0.09z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m87.72,63.88c-0.18,0.46 -0.32,1.2 -0.05,2.03 0.18,0.88 0.55,2.12 1.29,2.67 0.55,0.23 2.17,0 2.54,-0.51 0.18,-0.6 -0.09,-1.75 -0.65,-2.58 -0.74,-0.92 -1.94,-2.54 -2.54,-2.72 -0.51,-0.28 -0.65,0.51 -0.6,1.11z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m88.14,64.39c-0.05,0.32 -0.41,0.83 -0.05,1.52 0.09,0.69 0.6,1.89 1.15,2.35 0.46,0.18 1.57,0.05 1.89,-0.41 -0.05,-0.55 -0.09,-1.52 -0.65,-2.21 -0.55,-0.78 -1.61,-1.89 -1.94,-2.07 -0.37,-0.32 -0.51,0.37 -0.41,0.83z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m112.62,76c-0.6,-0.05 -1.29,0.28 -1.89,0.78 -0.78,0.55 -1.94,1.29 -2.03,2.21 -0.09,0.69 0.74,1.94 1.43,2.12 0.69,0.09 1.34,-0.78 2.12,-1.57 0.65,-0.97 1.48,-2.77 1.61,-3.41 0.05,-0.55 -0.78,-0.41 -1.24,-0.14z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m112.25,76.6c-0.41,-0.05 -0.88,0.14 -1.38,0.55 -0.55,0.41 -1.8,1.24 -1.8,1.94 -0.23,0.55 0.55,1.43 1.11,1.57 0.6,0 1.15,-0.83 1.84,-1.43 0.51,-0.74 1.01,-2.12 1.15,-2.54 -0.14,-0.55 -0.51,-0.23 -0.92,-0.09z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m111.74,55.72c0,-0.6 -0.09,-1.2 -0.28,-1.98 -0.37,-0.92 -1.11,-2.17 -1.71,-2.49 -0.83,-0.41 -2.17,0.37 -2.4,0.92 -0.28,0.51 0.32,1.61 1.06,2.44 0.65,0.69 2.26,2.12 2.9,2.3 0.46,0.05 0.37,-0.6 0.41,-1.2z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m111.28,55.26c-0.05,-0.37 0.05,-0.92 -0.23,-1.48 -0.37,-0.74 -0.92,-1.94 -1.48,-2.17 -0.55,-0.28 -1.8,0.14 -1.8,0.74 -0.18,0.46 0.32,1.34 0.97,2.07 0.41,0.6 1.8,1.52 2.21,1.71 0.28,0.09 0.32,-0.55 0.32,-0.88z"
android:strokeWidth="0.05"
android:fillColor="#ffd028"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m98.56,47.47c0.14,-0.55 0.55,-1.15 0.55,-1.98 -0.09,-1.01 -0.05,-2.35 -0.55,-2.95 -0.6,-0.55 -2.21,-0.6 -2.54,-0.14 -0.46,0.37 -0.41,1.61 -0.05,2.67 0.23,1.01 1.29,2.77 1.75,3.27 0.32,0.37 0.6,-0.46 0.83,-0.88z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m98.33,46.82c0.09,-0.46 0.28,-0.78 0.37,-1.48 -0.05,-0.74 -0.14,-2.12 -0.46,-2.54 -0.55,-0.55 -1.61,-0.41 -1.94,-0.09 -0.37,0.28 -0.18,1.52 0.05,2.3 0.23,0.74 0.92,2.17 1.34,2.49 0.18,0.14 0.46,-0.28 0.65,-0.69z"
android:strokeWidth="0.05"
android:fillColor="#ffd028"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m66.15,41.89c-0.23,-0.6 -0.32,-1.29 -0.78,-1.89 -0.65,-0.83 -1.52,-1.84 -2.26,-1.98 -0.88,-0.14 -1.98,0.83 -2.07,1.48 -0.09,0.69 0.69,1.34 1.61,2.12 0.83,0.6 2.67,1.34 3.41,1.52 0.51,0.05 0.18,-0.78 0.09,-1.24z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m65.55,41.52c-0.23,-0.41 -0.18,-0.88 -0.55,-1.38 -0.55,-0.65 -1.38,-1.57 -1.94,-1.71 -0.65,-0.23 -1.66,0.55 -1.61,1.11 -0.14,0.41 0.83,1.24 1.48,1.8 0.69,0.51 2.03,1.01 2.58,1.15 0.32,-0.09 0.09,-0.6 0.05,-0.97z"
android:strokeWidth="0.05"
android:fillColor="#ffd028"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:fillColor="#FF000000"
android:pathData="m159.45,45.16c-0.05,0.46 0.09,1.11 0.6,1.94 0.37,0.69 1.29,1.89 2.08,2.17 0.78,-0.05 1.94,-0.65 2.21,-1.24 0.04,-0.69 -0.6,-1.61 -1.38,-2.26 -0.92,-0.83 -2.67,-1.66 -3.27,-1.8 -0.64,-0.09 -0.37,0.55 -0.23,1.2z"
android:strokeWidth="0.05"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
<path
android:pathData="m160,45.58c0.04,0.37 -0.04,0.78 0.46,1.43 0.41,0.55 1.02,1.66 1.8,1.89 0.51,0.14 1.48,-0.6 1.66,-0.97 0.04,-0.69 -0.74,-1.34 -1.29,-1.94 -0.65,-0.6 -2.12,-1.34 -2.44,-1.34 -0.5,-0.14 -0.27,0.46 -0.18,0.92z"
android:strokeWidth="0.05"
android:fillColor="#ffe42e"
android:strokeColor="#000000"
android:fillType="evenOdd"/>
</vector>

View File

@ -14,17 +14,17 @@
limitations under the License.
-->
<resources>
<string name="app_name">BurgerKings</string>
<string name="order_burger">Order Burger</string>
<string name="one_burger">One Burger</string>
<string name="six_burger">Six burger</string>
<string name="twelve_burger">Twelve burger</string>
<string name="app_name">Cupcake</string>
<string name="order_cupcakes">Order Cupcakes</string>
<string name="one_cupcake">One Cupcake</string>
<string name="six_cupcakes">Six Cupcakes</string>
<string name="twelve_cupcakes">Twelve Cupcakes</string>
<string name="choose_flavor">Choose Flavor</string>
<string name="Cheese_burger">Cheese Burger</string>
<string name="chicken_burger">Chicken Burger</string>
<string name="veggie_burger">Veggie Burger</string>
<string name="black_burger">Black Burger</string>
<string name="original_burger">Original Burger</string>
<string name="vanilla">Vanilla</string>
<string name="chocolate">Chocolate</string>
<string name="red_velvet">Red Velvet</string>
<string name="salted_caramel">Salted Caramel</string>
<string name="coffee">Coffee</string>
<string name="special_flavor">Special Flavor</string>
<string name="cancel">Cancel</string>
<string name="next">Next</string>

View File

@ -16,11 +16,11 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
extra.apply {
set("lifecycle_version", "2.6.2")
set("lifecycle_version", "2.6.1")
}
}
plugins {
id("com.android.application") version "8.1.2" apply false
id("com.android.library") version "8.1.2" apply false
id("org.jetbrains.kotlin.android") version "1.9.10" apply false
id("com.android.application") version "8.0.2" apply false
id("com.android.library") version "8.0.2" apply false
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
}

View File

@ -1,6 +1,6 @@
#Sun Mar 19 17:30:22 PDT 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists