Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • DanBaDo/ginkgo
  • flodef/ginkgo
  • zicmama/ginkgo
  • vjrj/ginkgo
  • pokapow/ginkgo
  • weblate/ginkgo
6 results
Show changes
Commits on Source (500)
Showing
with 243 additions and 427 deletions
...@@ -47,4 +47,4 @@ app.*.map.json ...@@ -47,4 +47,4 @@ app.*.map.json
/android/app/profile /android/app/profile
/android/app/release /android/app/release
build.sh build.sh
linux/ lib/env.g.dart
...@@ -215,12 +215,13 @@ DropdownMenuItem<Locale>( ...@@ -215,12 +215,13 @@ DropdownMenuItem<Locale>(
- ast: dixebral - ast: dixebral
- ca: calbasi - ca: calbasi
- da: Gerhard Pischinger
- de: Andreas Wahlen and FW - de: Andreas Wahlen and FW
- eo: flodef - eo: flodef
- eu: Anna Ayala Alcalá - eu: Anna Ayala Alcalá
- fr: flodef, Hugo, Maaltir, poka and vincentux - fr: flodef, Hugo, Maaltir, Michel du 64, italpaola, poka and vincentux
- gl: Vijitâtman - gl: Vijitâtman
- it: Anna Ayala Alcalá - it: Anna Ayala Alcalá, italpaola
- nl: Maria Rosa Costa i Alandi - nl: Maria Rosa Costa i Alandi
- pt: Carlos Neto - pt: Carlos Neto
...@@ -233,6 +234,14 @@ Thanks! ...@@ -233,6 +234,14 @@ Thanks!
- Chipcard https://commons.wikimedia.org/wiki/File:Chipcard.svg under the Creative Commons - Chipcard https://commons.wikimedia.org/wiki/File:Chipcard.svg under the Creative Commons
Attribution-Share Alike 3.0 Unported license. Attribution-Share Alike 3.0 Unported license.
- [POS svg from wikimedia](https://commons.wikimedia.org/wiki/File:Card_Terminal_POS_Flat_Icon_Vector.svg) CC-BY-SA 4.0 - [POS svg from wikimedia](https://commons.wikimedia.org/wiki/File:Card_Terminal_POS_Flat_Icon_Vector.svg) CC-BY-SA 4.0
- Open Sans: Copyright 2020 The Open Sans Project Authors (https://github.com/googlefonts/opensans) under the SIL Open Font License, Version 1.1.
- NotoEmoji: Copyright 2013 Google LLC under the SIL Open Font License, Version 1.1.
- Dejavu are (c) Bitstream DejaVu changes are in public domain.
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
### Pub packages used ### Pub packages used
......
...@@ -36,6 +36,7 @@ analyzer: ...@@ -36,6 +36,7 @@ analyzer:
# Ignore protoc generated files # Ignore protoc generated files
- "dev/conductor/lib/proto/*" - "dev/conductor/lib/proto/*"
- "lib/data/models/*g.dart" - "lib/data/models/*g.dart"
- "lib/generated/**"
linter: linter:
rules: rules:
......
plugins { plugins {
id "com.android.application" id "com.android.application"
id "kotlin-android" id "kotlin-android"
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id "dev.flutter.flutter-gradle-plugin" id "dev.flutter.flutter-gradle-plugin"
} }
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
android { android {
compileSdkVersion 34 namespace = "org.comunes.ginkgo"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
sourceSets { compileOptions {
main.java.srcDirs += 'src/main/kotlin' sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8
} }
defaultConfig { defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "org.comunes.ginkgo" applicationId "org.comunes.ginkgo"
minSdkVersion 23 // You can update the following values to match your application needs.
targetSdkVersion 33 // For more information, see: https://flutter.dev/to/review-gradle-config.
versionCode flutterVersionCode.toInteger() minSdk = 23
versionName flutterVersionName targetSdk = 33
versionCode = flutter.versionCode
versionName = flutter.versionName
} }
buildTypes { buildTypes {
release { release {
// TODO: Add your own signing config for the release build. // TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works. // Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug signingConfig = signingConfigs.debug
} }
} }
} }
flutter { flutter {
source '../..' source = "../.."
} }
...@@ -2,19 +2,29 @@ ...@@ -2,19 +2,29 @@
package="org.comunes.ginkgo"> package="org.comunes.ginkgo">
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
android:maxSdkVersion="34" />.
<uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.NFC" /> <uses-permission android:name="android.permission.NFC" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_INTERNAL_STORAGE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- By awesome notifications -->
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application <application
android:requestLegacyExternalStorage="true"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="Ginkgo"> android:label="Ginkgo"
android:requestLegacyExternalStorage="true">
<activity <activity
android:name=".MainActivity" android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
...@@ -23,6 +33,7 @@ ...@@ -23,6 +33,7 @@
android:launchMode="singleTop" android:launchMode="singleTop"
android:theme="@style/LaunchTheme" android:theme="@style/LaunchTheme"
android:windowSoftInputMode="adjustResize"> android:windowSoftInputMode="adjustResize">
<meta-data android:name="flutter_deeplinking_enabled" android:value="false" />
<!-- Specifies an Android theme to apply to this Activity as soon as <!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues while the Flutter UI initializes. After that, this theme continues
...@@ -41,9 +52,11 @@ ...@@ -41,9 +52,11 @@
</intent-filter> </intent-filter>
<intent-filter> <intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="june" />
<data android:scheme="june" android:host="org.comunes.ginkgo" />
</intent-filter> </intent-filter>
</activity> </activity>
<!-- Don't delete the meta-data below. <!-- Don't delete the meta-data below.
......
...@@ -5,12 +5,12 @@ allprojects { ...@@ -5,12 +5,12 @@ allprojects {
} }
} }
rootProject.buildDir = '../build' rootProject.buildDir = "../build"
subprojects { subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}" project.buildDir = "${rootProject.buildDir}/${project.name}"
} }
subprojects { subprojects {
project.evaluationDependsOn(':app') project.evaluationDependsOn(":app")
} }
tasks.register("clean", Delete) { tasks.register("clean", Delete) {
......
org.gradle.jvmargs=-Xmx1536M org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true android.useAndroidX=true
android.enableJetifier=true android.enableJetifier=true
#Fri Jun 23 08:50:38 CEST 2017
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
...@@ -18,8 +18,8 @@ pluginManagement { ...@@ -18,8 +18,8 @@ pluginManagement {
plugins { plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0" id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "7.2.2" apply false id "com.android.application" version "8.1.0" apply false
id "org.jetbrains.kotlin.android" version "1.8.20" apply false id "org.jetbrains.kotlin.android" version "1.8.22" apply false
} }
include ":app" include ":app"
File added
File added
File added
File added
File added
File added
File added
CURRENCY=g1-test
#SENTRY_DSN=https://306345cb87ee4e1cbbe9023fb4afc5fc@sentry.comunes.org/6
# Card customization
CARD_COLOR_LEFT="0xFFCE002D"
CARD_COLOR_RIGHT="0xFF673F1E"
# Empty for default
CARD_TEXT=Wallet in Ğ1-Test
# Nodes space-separated
# The duniter nodes are only used at boot time, later it tries to calculate periodically the nodes
# that are available with the less latency
DUNITER_NODES=https://g1-test.duniter.org
CESIUM_PLUS_NODES=https://g1.data.le-sou.org https://g1.data.e-is.pro https://g1.data.presles.fr https://g1.data.mithril.re
GVA_NODES=https://g1-test-dev.pini.fr:443/gva
assets/img/undraw_intro_5.png

53.1 KiB | W: 0px | H: 0px

assets/img/undraw_intro_5.png

30.8 KiB | W: 0px | H: 0px

assets/img/undraw_intro_5.png
assets/img/undraw_intro_5.png
assets/img/undraw_intro_5.png
assets/img/undraw_intro_5.png
  • 2-up
  • Swipe
  • Onion skin
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg <svg
data-name="Layer 1" width="731.67"
width="888" height="511.12"
height="741.04834" viewBox="0 0 731.67 511.12"
viewBox="0 0 888 741.04834"
version="1.1" version="1.1"
id="svg1188" id="svg980"
sodipodi:docname="undraw_intro_5.svg" sodipodi:docname="undraw_intro_5.svg"
inkscape:export-filename="/home/vjrj/dev/ginkgo/assets/img/undraw_intro_5.png" inkscape:export-filename="/home/vjrj/proyectos/dev/ginkgo/assets/img/undraw_intro_5.png"
inkscape:export-xdpi="96" inkscape:export-xdpi="96"
inkscape:export-ydpi="96" inkscape:export-ydpi="96"
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)" inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
...@@ -16,9 +15,9 @@ ...@@ -16,9 +15,9 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"> xmlns:svg="http://www.w3.org/2000/svg">
<defs <defs
id="defs1192" /> id="defs984" />
<sodipodi:namedview <sodipodi:namedview
id="namedview1190" id="namedview982"
pagecolor="#ffffff" pagecolor="#ffffff"
bordercolor="#666666" bordercolor="#666666"
borderopacity="1.0" borderopacity="1.0"
...@@ -26,393 +25,180 @@ ...@@ -26,393 +25,180 @@
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true" inkscape:pagecheckerboard="true"
showgrid="false" showgrid="false"
inkscape:zoom="1.1780608" inkscape:zoom="0.5708053"
inkscape:cx="443.94992" inkscape:cx="651.71084"
inkscape:cy="370.52417" inkscape:cy="-169.0594"
inkscape:window-width="3440" inkscape:window-width="3392"
inkscape:window-height="1370" inkscape:window-height="1376"
inkscape:window-x="0" inkscape:window-x="48"
inkscape:window-y="33" inkscape:window-y="27"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="svg1188" /> inkscape:current-layer="svg980" />
<path <path
d="M521.89611,253.85607H517.8642v-110.453a63.92718,63.92718,0,0,0-63.92738-63.92726H219.92738A63.92718,63.92718,0,0,0,156,143.40309V749.35675A63.92719,63.92719,0,0,0,219.92738,813.284H453.93682a63.92719,63.92719,0,0,0,63.92738-63.92726V332.47837h4.03191Z" d="m0,509.7c0,.66.53,1.19,1.19,1.19h729.29c.66,0,1.19-.53,1.19-1.19s-.53-1.19-1.19-1.19H1.19c-.66,0-1.19.53-1.19,1.19Z"
transform="translate(-156 -79.47583)" fill="#3f3d58"
fill="#e6e6e6" id="path911" />
id="path1050" /> <polygon
<path points="440.61 79.12 466.22 87.54 466.22 50.67 442.98 50.67 440.61 79.12"
d="M456.51633,96.10749h-30.546a22.68123,22.68123,0,0,1-20.99971,31.24733H270.90951a22.68123,22.68123,0,0,1-20.99972-31.24733h-28.53a47.74011,47.74011,0,0,0-47.74018,47.74005V748.91223a47.74012,47.74012,0,0,0,47.74018,47.74012H456.51633a47.74012,47.74012,0,0,0,47.74018-47.74012V143.84754A47.74011,47.74011,0,0,0,456.51633,96.10749Z" fill="#f8a8ab"
transform="translate(-156 -79.47583)" id="polygon913" />
fill="#fff"
id="path1052" />
<path
d="M269.67241,219.11054H255.63313a1.86134,1.86134,0,0,0-1.86133,1.86133v6.16225a1.86134,1.86134,0,0,0,1.86133,1.86133h2.32651v9.23317h9.38625v-9.23317h2.32652a1.86133,1.86133,0,0,0,1.86132-1.86133v-6.16225A1.86133,1.86133,0,0,0,269.67241,219.11054Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1054" />
<path
d="M283.73425,275.50749a72.178,72.178,0,0,1-12.55683-42.79357,1.52226,1.52226,0,0,0-1.18821-1.5191v-2.66269H255.16187v2.62568h-.2043a1.52142,1.52142,0,0,0-1.51944,1.52339q.00006.05544.00418.11074,1.75218,24.42494-11.83339,43.8076a4.19288,4.19288,0,0,0-.75883,2.541l1.62129,50.15132a4.34147,4.34147,0,0,0,4.30433,4.19019h33.53723a4.343,4.343,0,0,0,4.30692-4.26409l.62478-48.69283A8.78784,8.78784,0,0,0,283.73425,275.50749Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1056" />
<path
d="M278.42523,292.16618H249.23369a2.997,2.997,0,0,0-2.96218,3.45275l4.41126,28.67321h25.33006l5.3581-28.5766a2.997,2.997,0,0,0-2.9457-3.54936Z"
transform="translate(-156 -79.47583)"
fill="#fff"
id="path1058" />
<path
d="M425.95669,369.34511H411.91741a1.86133,1.86133,0,0,0-1.86133,1.86132v6.16226a1.86134,1.86134,0,0,0,1.86133,1.86133h2.32651v9.23316h9.38625V379.23h2.32652a1.86133,1.86133,0,0,0,1.86132-1.86133v-6.16226A1.86132,1.86132,0,0,0,425.95669,369.34511Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1060" />
<path
d="M440.01853,425.74206a72.178,72.178,0,0,1-12.55683-42.79357,1.52226,1.52226,0,0,0-1.1882-1.5191V378.7667H411.44615v2.62568h-.2043a1.52141,1.52141,0,0,0-1.51944,1.52339q.00007.05542.00418.11074,1.75218,24.42492-11.83339,43.8076a4.19294,4.19294,0,0,0-.75883,2.541l1.62129,50.15132a4.34145,4.34145,0,0,0,4.30433,4.19018h33.53723a4.343,4.343,0,0,0,4.30692-4.26409l.62479-48.69283A8.78789,8.78789,0,0,0,440.01853,425.74206Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1062" />
<path
d="M434.70951,442.40074H405.518a2.997,2.997,0,0,0-2.96218,3.45276l4.41126,28.6732h25.33006l5.35811-28.57659a2.9971,2.9971,0,0,0-2.94571-3.54937Z"
transform="translate(-156 -79.47583)"
fill="#fff"
id="path1064" />
<path
d="M249.935,581.73267h-6.65947a.88292.88292,0,0,0-.88292.88291v2.923a.88292.88292,0,0,0,.88292.88291h1.10357v4.37972h4.45233v-4.37972H249.935a.88291.88291,0,0,0,.88291-.88291v-2.923A.88291.88291,0,0,0,249.935,581.73267Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1066" />
<path
d="M256.60519,608.48432a34.2373,34.2373,0,0,1-5.95627-20.29895.72208.72208,0,0,0-.56363-.72057v-1.263H243.052v1.24548h-.09691a.72168.72168,0,0,0-.72074.72262q0,.02628.002.05252a31.24565,31.24565,0,0,1-5.61312,20.77995,1.98884,1.98884,0,0,0-.35994,1.20529l.769,23.78907a2.05934,2.05934,0,0,0,2.04174,1.98759h15.90824a2.06007,2.06007,0,0,0,2.043-2.02265l.29636-23.09723A4.1684,4.1684,0,0,0,256.60519,608.48432Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1068" />
<rect
x="83.13662"
y="537.75318"
width="15.17906"
height="7.58953"
fill="#fff"
id="rect1070" />
<path
d="M280.935,581.73267h-6.65947a.88292.88292,0,0,0-.88292.88291v2.923a.88292.88292,0,0,0,.88292.88291h1.10357v4.37972h4.45233v-4.37972H280.935a.88291.88291,0,0,0,.88291-.88291v-2.923A.88291.88291,0,0,0,280.935,581.73267Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1072" />
<path
d="M287.60519,608.48432a34.2373,34.2373,0,0,1-5.95627-20.29895.72208.72208,0,0,0-.56363-.72057v-1.263H274.052v1.24548h-.09691a.72168.72168,0,0,0-.72074.72262q0,.02628.002.05252a31.24565,31.24565,0,0,1-5.61312,20.77995,1.98884,1.98884,0,0,0-.35994,1.20529l.769,23.78907a2.05934,2.05934,0,0,0,2.04174,1.98759h15.90824a2.06007,2.06007,0,0,0,2.043-2.02265l.29636-23.09723A4.1684,4.1684,0,0,0,287.60519,608.48432Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1074" />
<rect
x="114.13662"
y="537.75318"
width="15.17906"
height="7.58953"
fill="#fff"
id="rect1076" />
<path
d="M311.935,581.73267h-6.65947a.88292.88292,0,0,0-.88292.88291v2.923a.88292.88292,0,0,0,.88292.88291h1.10357v4.37972h4.45233v-4.37972H311.935a.88291.88291,0,0,0,.88291-.88291v-2.923A.88291.88291,0,0,0,311.935,581.73267Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1078" />
<path
d="M318.60519,608.48432a34.2373,34.2373,0,0,1-5.95627-20.29895.72208.72208,0,0,0-.56363-.72057v-1.263H305.052v1.24548h-.09691a.72168.72168,0,0,0-.72074.72262q0,.02628.002.05252a31.24565,31.24565,0,0,1-5.61312,20.77995,1.98884,1.98884,0,0,0-.35994,1.20529l.769,23.78907a2.05934,2.05934,0,0,0,2.04174,1.98759h15.90824a2.06007,2.06007,0,0,0,2.043-2.02265l.29636-23.09723A4.1684,4.1684,0,0,0,318.60519,608.48432Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1080" />
<rect
x="145.13662"
y="537.75318"
width="15.17906"
height="7.58953"
fill="#fff"
id="rect1082" />
<path
d="M401.56726,523.61282H387.528a1.86132,1.86132,0,0,0-1.86133,1.86132v6.16226a1.86133,1.86133,0,0,0,1.86133,1.86133h2.32651v9.23316h9.38625v-9.23316h2.32651a1.86133,1.86133,0,0,0,1.86132-1.86133v-6.16226A1.86132,1.86132,0,0,0,401.56726,523.61282Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1084" />
<path
d="M415.6291,580.00977a72.178,72.178,0,0,1-12.55683-42.79357,1.52226,1.52226,0,0,0-1.1882-1.5191v-2.66269H387.05672v2.62568h-.2043a1.52141,1.52141,0,0,0-1.51944,1.52339q.00007.05542.00418.11074,1.75218,24.42492-11.83339,43.8076a4.19294,4.19294,0,0,0-.75883,2.541l1.62129,50.15132a4.34145,4.34145,0,0,0,4.30434,4.19018h33.53722a4.343,4.343,0,0,0,4.30693-4.26409l.62478-48.69283A8.78782,8.78782,0,0,0,415.6291,580.00977Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1086" />
<path
d="M410.32009,596.66845H381.12854a2.997,2.997,0,0,0-2.96218,3.45276l4.41127,28.6732h25.33006l5.3581-28.57659a2.9971,2.9971,0,0,0-2.9457-3.54937Z"
transform="translate(-156 -79.47583)"
fill="#fff"
id="path1088" />
<path
d="M409.23171,339.93829H325.544c5.85094-31.63336,4.50485-69.83172,0-110.91142h83.68771C404.84668,270.1067,403.53635,308.305,409.23171,339.93829Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1090" />
<circle
cx="211.892"
cy="201.98189"
r="20.16571"
fill="#fff"
id="circle1092" />
<path
d="M332.602,487.148H248.91429c5.85093-31.63337,4.50485-69.83173,0-110.91143H332.602C328.217,417.31641,326.90664,455.5147,332.602,487.148Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1094" />
<circle
cx="135.26229"
cy="349.1916"
r="20.16571"
fill="#fff"
id="circle1096" />
<path
d="M456.62114,346.99629H372.93343c5.85093-31.63336,4.50485-69.83172,0-110.91142h83.68771C452.2361,277.1647,450.92578,315.363,456.62114,346.99629Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1098" />
<circle
cx="259.28142"
cy="209.03989"
r="20.16571"
fill="#fff"
id="circle1100" />
<path
d="M456.62114,341.95487H372.93343c5.85093-31.63337,4.50485-69.83173,0-110.91143h83.68771C452.2361,272.12327,450.92578,310.32156,456.62114,341.95487Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1102" />
<circle
cx="259.28142"
cy="203.99847"
r="20.16571"
fill="#fff"
id="circle1104" />
<path
d="M456.62114,346.99629H372.93343c5.85093-31.63336,4.50485-69.83172,0-110.91142h83.68771C452.2361,277.1647,450.92578,315.363,456.62114,346.99629Z"
transform="translate(-156 -79.47583)"
fill="#e6e6e6"
id="path1106" />
<circle <circle
cx="259.28142" cx="463.05"
cy="209.03989" cy="35.35"
r="20.16571" r="25.52"
fill="#fff" fill="#f8a8ab"
id="circle1108" /> id="circle915" />
<rect <path
x="45.52486" d="m456.55,37.35l3.52,4.27,6.36-11.14s8.12.42,8.12-5.61,7.45-6.2,7.45-6.2c0,0,10.55-18.42-11.3-13.57,0,0-15.16-10.38-22.69-1.51,0,0-23.11,11.64-16.5,31.9l10.99,20.89,2.49-4.73s-1.51-19.85,11.56-14.32v.02Z"
y="254.41275" fill="#2f2e43"
width="274.25371" id="path917" />
height="30.24857"
fill="#e6e6e6"
id="rect1110" />
<rect <rect
x="45.52486" x="432.93"
y="404.64732" y="461.78"
width="274.25371" width="20.94"
height="30.24857" height="29.71"
fill="#e6e6e6" fill="#f8a8ab"
id="rect1112" /> id="rect919" />
<path
d="m451.55,508.51c-3.58.32-21.5,1.74-22.4-2.37-.82-3.77.39-7.71.56-8.25,1.72-17.14,2.36-17.33,2.75-17.44.61-.18,2.39.67,5.28,2.53l.18.12.04.21c.05.27,1.33,6.56,7.4,5.59,4.16-.66,5.51-1.58,5.94-2.03-.35-.16-.79-.44-1.1-.92-.45-.7-.53-1.6-.23-2.68.78-2.85,3.12-7.06,3.22-7.23l.27-.48,23.8,16.06,14.7,4.2c1.11.32,2,1.11,2.45,2.17h0c.62,1.48.24,3.2-.96,4.28-2.67,2.4-7.97,6.51-13.54,7.02-1.48.14-3.44.19-5.64.19-9.19,0-22.61-.95-22.71-.97h0Z"
fill="#2f2e43"
id="path921" />
<path
d="m480.61,205.64l-54.93-2.81s-8.42,31.92,2.22,65.18l1.28,200.29h31.04l29.26-206.61-8.87-56.05h0Z"
fill="#2f2e43"
id="path923" />
<path
d="m471.35,72.03l-30.15-16s-32.49,47.48-28,73.2c4.5,25.72,12.48,73.6,12.48,73.6l66.51,2.81-11.61-94.29-9.23-39.32s0,0,0,0Z"
fill="#e2e3e4"
id="path925" />
<rect <rect
x="45.52486" x="447.83"
y="554.88188" y="461.78"
width="274.25371" width="20.94"
height="30.24857" height="29.71"
fill="#e6e6e6" fill="#f8a8ab"
id="rect1114" /> id="rect927" />
<path <path
d="M952.85457,757.07471l-68.32479-48.32553c23.04357-22.44766,44.00226-54.41107,64.04589-90.55092l68.32478,48.32553C989.59882,697.53027,966.4714,727.95969,952.85457,757.07471Z" d="m466.45,508.51c-3.58.32-21.5,1.74-22.4-2.37-.82-3.77.39-7.71.56-8.25,1.72-17.14,2.36-17.33,2.75-17.44.61-.18,2.39.67,5.28,2.53l.18.12.04.21c.05.27,1.33,6.56,7.4,5.59,4.16-.66,5.51-1.58,5.94-2.03-.35-.16-.79-.44-1.1-.92-.45-.7-.53-1.6-.23-2.68.78-2.85,3.12-7.06,3.22-7.23l.27-.48,23.8,16.06,14.7,4.2c1.11.32,2,1.11,2.45,2.17h0c.62,1.48.24,3.2-.96,4.28-2.67,2.4-7.97,6.51-13.54,7.02-1.48.14-3.44.19-5.64.19-9.19,0-22.61-.95-22.71-.97h0Z"
transform="translate(-156 -79.47583)" fill="#2f2e43"
id="path929" />
<path
d="m492.19,205.64l-66.51-2.81s-8.42,31.92,2.22,65.18l12.86,200.29h31.04l29.26-206.61-8.87-56.05h0Z"
fill="#2f2e43"
id="path931" />
<path
d="m485.25,336.46c-4.65,0-9.72-1.14-14.73-2.26-3.71-.83-6.98-1.04-9.6-1.2-3.98-.25-7.13-.45-8.88-2.78-1.73-2.3-1.73-6.21,0-13.92,2.3-10.24,7.42-26.6,13.68-40.06,8.09-17.36,15.86-25.35,23.11-23.72,9.71,2.18,13.58,18.39,15.03,27.85,2.02,13.21,1.84,28.91-.44,39.07h0c-3.02,13.45-9.95,17.01-18.18,17.01h.01Zm1.77-81.13c-5.33,0-11.87,7.78-18.57,22.18-6.17,13.25-11.21,29.36-13.48,39.45-1.45,6.48-1.61,10.01-.53,11.46.92,1.22,3.33,1.38,6.66,1.58,2.73.17,6.13.38,10.07,1.27,15.66,3.51,25.45,4.79,29.32-12.48,4.15-18.5.99-60.35-12.32-63.34-.38-.09-.77-.13-1.16-.13h.01Z"
fill="#dfdfe0"
id="path933" />
<polygon
points="548.58 460.81 399.43 461.79 376.26 451.13 389.76 313.42 403.34 314.11 543.07 321.22 548.58 460.81"
fill="#6c63ff" fill="#6c63ff"
id="path1116" /> id="polygon935" />
<polygon
points="399.43 461.79 376.26 451.13 389.76 313.42 403.34 314.11 399.43 461.79"
fill="#272223"
isolation="isolate"
opacity=".2"
id="polygon937" />
<path
d="m487.5,311.06c-2.77,0-5.8-.68-8.78-1.35-2.21-.5-4.16-.62-5.73-.72-2.37-.15-4.25-.27-5.29-1.66-1.03-1.37-1.03-3.7,0-8.3,1.37-6.11,4.42-15.86,8.16-23.88,4.82-10.35,9.46-15.11,13.78-14.14,5.79,1.3,8.1,10.96,8.96,16.61,1.2,7.88,1.1,17.24-.26,23.29h0c-1.8,8.02-5.93,10.14-10.84,10.14h0Zm1.06-48.37c-3.18,0-7.08,4.64-11.07,13.23-3.68,7.9-6.69,17.5-8.03,23.52-.87,3.86-.96,5.97-.31,6.83.55.73,1.98.82,3.97.94,1.63.1,3.65.23,6,.76,9.33,2.09,15.17,2.85,17.48-7.44,2.47-11.03.59-35.98-7.34-37.76-.23-.05-.46-.08-.69-.08h-.01Z"
fill="#dfdfe0"
id="path939" />
<polygon
points="525.25 385.21 436.33 385.79 422.51 379.44 430.56 297.33 438.66 297.74 521.97 301.98 525.25 385.21"
fill="#e2e3e4"
id="polygon941" />
<polygon
points="436.33 385.79 422.51 379.44 430.56 297.33 438.66 297.74 436.33 385.79"
fill="#272223"
isolation="isolate"
opacity=".2"
id="polygon943" />
<path
id="uuid-2ebd868f-c256-4818-ab73-e4d3dd12d9e3-46-44-87-46-99-266-52"
d="m492.7,255.64c1.49,7.32-1.24,14.01-6.08,14.94s-9.97-4.26-11.45-11.58c-.63-2.92-.53-5.94.29-8.82l-5.89-31.11,15.22-2.41,4.19,30.92c1.89,2.36,3.16,5.12,3.72,8.06h0Z"
fill="#f8a8ab" />
<path
d="m433,71.45s22.26-2.82,24.92,3.83,33.92,164.94,33.92,164.94h-20.62l-38.22-168.77s0,0,0,0Z"
fill="#e2e3e4"
id="path946" />
<polygon
points="278.34 105.33 255.98 112.68 255.98 80.5 276.27 80.5 278.34 105.33"
fill="#f8a8ab"
id="polygon948" />
<circle <circle
cx="796.87342" cx="258.75"
cy="605.9822" cy="67.13"
r="20.16571" r="22.28"
fill="#fff" fill="#f8a8ab"
id="circle1118" /> id="circle950" />
<path <path
d="M623.26239,536.554h-7.5a.99435.99435,0,0,0-.99435.99435v3.292a.99434.99434,0,0,0,.99435.99434h1.24285v4.93249h5.01427v-4.93249h1.24285a.99435.99435,0,0,0,.99435-.99434v-3.292A.99436.99436,0,0,0,623.26239,536.554Z" d="m264.87,64.92c-3.73-.11-6.18-3.88-7.63-7.32s-2.94-7.39-6.4-8.81c-2.83-1.16-7.82,6.69-10.05,4.6-2.33-2.18-.06-13.37,2.41-15.38s5.85-2.4,9.03-2.55c7.76-.36,15.57.27,23.18,1.86,4.71.98,9.55,2.46,12.95,5.86,4.3,4.32,5.4,10.83,5.71,16.92.32,6.23-.04,12.75-3.07,18.2-3.03,5.45-9.37,9.47-15.45,8.08-.61-3.3.01-6.69.25-10.05.23-3.35-.01-6.97-2.06-9.64s-6.42-3.73-8.8-1.36"
transform="translate(-156 -79.47583)" fill="#2f2e43"
fill="#e6e6e6" id="path952" />
id="path1120" /> <path
<path d="m292.28,72.64c2.23-1.63,4.9-3,7.64-2.66,2.96.36,5.47,2.8,6.23,5.69s-.09,6.07-1.93,8.43c-1.83,2.36-4.56,3.92-7.44,4.7-1.67.45-3.5.64-5.09-.04-2.34-1.01-3.61-4-2.69-6.38"
d="M630.77443,566.68205a38.55843,38.55843,0,0,1-6.708-22.86093.81323.81323,0,0,0-.63476-.81152v-1.42245h-7.921v1.40268h-.10914a.81275.81275,0,0,0-.8117.81381q0,.02961.00223.05916a35.18922,35.18922,0,0,1-6.32157,23.40264,2.23989,2.23989,0,0,0-.40537,1.35741l.86611,26.79155a2.31928,2.31928,0,0,0,2.29944,2.23846h17.91606a2.32008,2.32008,0,0,0,2.30082-2.27794l.33376-26.0124A4.69456,4.69456,0,0,0,630.77443,566.68205Z" fill="#2f2e43"
transform="translate(-156 -79.47583)" id="path954" />
fill="#6c63ff"
id="path1122" />
<path
d="M621.69892,537.62665a2.14526,2.14526,0,0,1-4.29053,0"
transform="translate(-156 -79.47583)"
opacity="0.2"
style="isolation:isolate"
id="path1124" />
<rect <rect
x="456.16063" x="250.02"
y="492.36817" y="463.43"
width="15.12429" width="20.94"
height="10.08286" height="29.71"
fill="#fff" fill="#f8a8ab"
id="rect1126" /> id="rect956" />
<path <path
d="M860.60239,641.21767H846.56312a1.86134,1.86134,0,0,0-1.86134,1.86133v6.16226a1.86134,1.86134,0,0,0,1.86134,1.86132h2.32651v9.23317h9.38625v-9.23317h2.32651a1.86132,1.86132,0,0,0,1.86132-1.86132V643.079A1.86133,1.86133,0,0,0,860.60239,641.21767Z" d="m229.62,511.12c-2.2,0-4.16-.05-5.64-.19-5.56-.51-10.87-4.62-13.54-7.02-1.2-1.08-1.58-2.8-.96-4.28h0c.45-1.06,1.34-1.86,2.45-2.17l14.7-4.2,23.8-16.06.27.48c.1.18,2.44,4.39,3.22,7.23.3,1.08.22,1.98-.23,2.68-.31.48-.75.76-1.1.92.43.45,1.78,1.37,5.94,2.03,6.07.96,7.35-5.33,7.4-5.59l.04-.21.18-.12c2.89-1.86,4.67-2.71,5.28-2.53.38.11,1.02.31,2.75,17.44.17.54,1.38,4.48.56,8.25-.89,4.1-18.81,2.69-22.4,2.37-.1.01-13.52.97-22.71.97h-.01Z"
transform="translate(-156 -79.47583)" fill="#2f2e43"
fill="#e6e6e6" id="path958" />
id="path1128" /> <rect
<path x="319.09"
d="M874.66423,697.61463a72.178,72.178,0,0,1-12.55683-42.79358,1.52224,1.52224,0,0,0-1.1882-1.51909v-2.6627H846.09185v2.62568h-.2043a1.52142,1.52142,0,0,0-1.51944,1.5234q.00008.05543.00418.11073,1.75218,24.42493-11.83339,43.80761a4.19289,4.19289,0,0,0-.75883,2.54095l1.62129,50.15132a4.34146,4.34146,0,0,0,4.30434,4.19019h33.53722a4.343,4.343,0,0,0,4.30692-4.26409l.62479-48.69283A8.7878,8.7878,0,0,0,874.66423,697.61463Z" y="443.36"
transform="translate(-156 -79.47583)" width="20.94"
height="29.71"
transform="translate(-192.55 243.81) rotate(-31.95)"
fill="#f8a8ab"
id="rect960" />
<path
d="m306.98,507.05c-2.46,0-4.72-.3-6.33-.58-1.58-.28-2.82-1.54-3.08-3.12h0c-.18-1.14.15-2.29.93-3.14l10.25-11.34,11.7-26.22.48.26c.18.1,4.39,2.43,6.56,4.43.83.76,1.24,1.57,1.22,2.4-.01.58-.23,1.04-.45,1.37.6.16,2.23.22,6.11-1.42,5.66-2.39,3.42-8.41,3.32-8.66l-.08-.2.09-.19c1.47-3.11,2.52-4.77,3.14-4.94.39-.11,1.03-.28,11.56,13.35.43.36,3.54,3.07,4.84,6.7,1.41,3.95-14.54,12.24-17.75,13.86-.1.08-16.79,12.21-23.65,15.66-2.72,1.37-5.94,1.79-8.87,1.79h0Z"
fill="#2f2e43"
id="path962" />
<path
d="m286.38,214.98h-58.63l-5.32,54.54,23.28,201.52h29.93l-11.97-116.39,48.55,105.08,26.6-18.62-37.91-98.1s13.54-85.46,2.9-106.75-17.43-21.28-17.43-21.28h0Z"
fill="#2f2e43"
id="path964" />
<polygon
points="315.54 218.3 222.43 218.3 250.36 97.92 290.93 97.92 315.54 218.3"
fill="#6c63ff" fill="#6c63ff"
id="path1130" /> id="polygon966" />
<path
d="M857.67571,643.22557a4.01574,4.01574,0,0,1-8.03148,0"
transform="translate(-156 -79.47583)"
opacity="0.2"
style="isolation:isolate"
id="path1132" />
<path <path
d="M869.35522,714.27331H840.16367a2.997,2.997,0,0,0-2.96218,3.45275l4.41126,28.67321h25.33007l5.3581-28.5766a2.9971,2.9971,0,0,0-2.9457-3.54936Z" id="uuid-f899ad7f-3d0f-4b30-ad3c-9c1473a48add-47-45-88-47-100-267-53"
transform="translate(-156 -79.47583)" d="m199.3,95.55c-1.49-7.32,1.24-14.01,6.08-14.94s9.97,4.26,11.45,11.58c.63,2.92.53,5.94-.29,8.82l5.89,31.11-15.22,2.41-4.19-30.92c-1.89-2.36-3.16-5.12-3.72-8.06h0Z"
fill="#fff" fill="#f8a8ab" />
id="path1134" />
<path <path
d="M820.546,756.99571H736.85827c5.85094-31.63336,4.50486-69.83172,0-110.91142H820.546C816.161,687.16411,814.85062,725.36241,820.546,756.99571Z" d="m289.94,97.92h-35.78l-24.12,48.24-9.1-36.15-19.99,2.12s4.73,70.63,25.4,68.24c20.67-2.39,68.88-66.02,63.58-82.46h.01Z"
transform="translate(-156 -79.47583)"
fill="#6c63ff" fill="#6c63ff"
id="path1136" /> id="path969" />
<circle
cx="623.20627"
cy="619.03931"
r="20.16571"
fill="#fff"
id="circle1138" />
<polygon
points="322.243 328.466 341.03 326.758 352.986 297.724 331.637 285.768 322.243 328.466"
fill="#ffb8b8"
id="polygon1140" />
<path
d="M650.66043,487.64986v0a10.59328,10.59328,0,0,0-9.20188-14.51664l-29.16988-1.73941-4.2949,14.28206,30.02882,8.24691A10.59326,10.59326,0,0,0,650.66043,487.64986Z"
transform="translate(-156 -79.47583)"
fill="#ffb8b8"
id="path1142" />
<path
d="M619.33866,494.16267l-.32093-26.79954-64.79286-10.33856L504.30953,399.777a16.33816,16.33816,0,0,0-21.29428-2.91186l0,0a16.33815,16.33815,0,0,0-2.84636,24.922l41.17966,50.67767Z"
transform="translate(-156 -79.47583)"
fill="#575a89"
id="path1144" />
<path
d="M463.72552,795.64251h17.07932L523.168,604.10914l43.88737,59.16871,25.619,128.09483h16.22535l-3.41586-137.48845-57.2157-146.88208H491.90639c-15.40224,27.87449-27.48462,56.60826-13.66345,86.25052Z"
transform="translate(-156 -79.47583)"
fill="#2f2e41"
id="path1146" />
<path
d="M582.20449,807.27611a4.45733,4.45733,0,0,0,3.4756,5.71828l41.79324,7.41672a6.87646,6.87646,0,0,0,7.8008-4.71314h0a6.83384,6.83384,0,0,0-3.34222-8.12572,63.9022,63.9022,0,0,1-23.04833-20.0382c-4.59335,4.27726-9.7273,3.875-15.179.72281l-5.78247.72281Z"
transform="translate(-156 -79.47583)"
fill="#2f2e41"
id="path1148" />
<path <path
d="M455.81759,807.27611a4.45733,4.45733,0,0,0,3.4756,5.71828l41.79324,7.41672a6.87646,6.87646,0,0,0,7.8008-4.71314h0a6.83384,6.83384,0,0,0-3.34222-8.12572,63.9022,63.9022,0,0,1-23.04833-20.0382c-4.59335,4.27726-9.7273,3.875-15.179.72281l-5.78247.72281Z" d="m323.73,326.73c-2.77,0-5.8-.68-8.78-1.35-2.21-.5-4.16-.62-5.73-.72-2.37-.15-4.25-.27-5.29-1.66-1.03-1.37-1.03-3.7,0-8.3,1.37-6.11,4.42-15.86,8.16-23.88,4.82-10.35,9.46-15.11,13.78-14.14,5.79,1.3,8.1,10.96,8.96,16.61,1.2,7.88,1.1,17.24-.26,23.29h0c-1.8,8.02-5.93,10.14-10.84,10.14h0Zm1.06-48.37c-3.18,0-7.08,4.64-11.07,13.23-3.68,7.9-6.69,17.5-8.03,23.52-.87,3.86-.96,5.97-.31,6.83.55.73,1.98.82,3.97.94,1.63.1,3.65.23,6,.76,9.33,2.09,15.17,2.85,17.48-7.44,2.47-11.03.59-35.98-7.34-37.76-.23-.05-.46-.08-.69-.08h-.01Z"
transform="translate(-156 -79.47583)" fill="#dfdfe0"
fill="#2f2e41" id="path971" />
id="path1150" />
<circle
cx="353.41268"
cy="284.48709"
r="23.91104"
fill="#ffb8b8"
id="circle1152" />
<path
d="M488.06354,513.40689,550.403,511.699l-18.30772-57.61963c11.37738-18.23924-.073-36.46-16.27789-54.67684l-12.80948-8.53965-20.49517-1.70793h0a50.3141,50.3141,0,0,0-13.54915,35.0504C469.36939,452.03191,474.29652,482.324,488.06354,513.40689Z"
transform="translate(-156 -79.47583)"
fill="#575a89"
id="path1154" />
<path
d="M631.29146,552.19152h0a10.59327,10.59327,0,0,0-2.74926-16.96611L602.4085,522.15112l-9.567,11.441,24.36342,19.395A10.59327,10.59327,0,0,0,631.29146,552.19152Z"
transform="translate(-156 -79.47583)"
fill="#ffb8b8"
id="path1156" />
<path
d="M599.933,545.85758l10.24759-24.765-55.50168-34.99377-23.37023-72.268a16.33817,16.33817,0,0,0-18.43188-11.054h0a16.33815,16.33815,0,0,0-12.42089,21.79283l17.92341,62.79126Z"
transform="translate(-156 -79.47583)"
fill="#575a89"
id="path1158" />
<path
d="M470.13027,354.5693c0,9.30389,6.04222,23.7124,13.66345,29.8888,5.12781,4.15568,11.90457,3.98066,14.51741-1.70793,2.68032-5.83557,11.91945-19.55229,28.18086-28.18087,21.67761-11.50252-7.68756-31.18152-28.18086-28.18086C482.9115,328.64329,470.13027,339.00544,470.13027,354.5693Z"
transform="translate(-156 -79.47583)"
fill="#2f2e41"
id="path1160" />
<circle
cx="328.64768"
cy="245.20468"
r="17.07931"
fill="#2f2e41"
id="circle1162" />
<path
d="M504.28889,318.70275a17.06865,17.06865,0,0,0-15.79836-17.01463c.42437-.03158.84854-.06468,1.28094-.06468a17.07931,17.07931,0,0,1,0,34.15862c-.4324,0-.85657-.0331-1.28094-.06468A17.06869,17.06869,0,0,0,504.28889,318.70275Z"
transform="translate(-156 -79.47583)"
fill="#2f2e41"
id="path1164" />
<ellipse
cx="353.83966"
cy="287.90296"
rx="3.84284"
ry="5.12379"
fill="#ffb8b8"
id="ellipse1166" />
<polygon <polygon
points="837.751 684.845 571.879 684.845 515.578 418.694 467.529 418.694 467.529 406.752 525.258 406.752 581.559 672.902 837.751 672.902 837.751 684.845" points="361.49 400.87 272.57 401.45 258.75 395.1 266.8 312.99 274.9 313.4 358.21 317.64 361.49 400.87"
fill="#3f3d56" fill="#e2e3e4"
id="polygon1168" /> id="polygon973" />
<circle
cx="610.84102"
cy="707.87676"
r="25.59138"
fill="#3f3d56"
id="circle1170" />
<circle
cx="801.92331"
cy="707.87676"
r="25.59138"
fill="#3f3d56"
id="circle1172" />
<path
d="M988.90348,758.69673H730.22506L684.58373,533.14489h347.15138a12.2655,12.2655,0,0,1,12.11592,14.16689l-42.8333,201.0251A12.20374,12.20374,0,0,1,988.90348,758.69673Zm-255.86937-3.41219H988.90348a8.80568,8.80568,0,0,0,8.74205-7.47748l42.8333-201.0251a8.85014,8.85014,0,0,0-8.74372-10.22489H688.72567Z"
transform="translate(-156 -79.47583)"
fill="#3f3d56"
id="path1174" />
<polygon
points="624.513 678.499 594.623 455.653 597.989 455.097 627.879 677.943 624.513 678.499"
fill="#3f3d56"
id="polygon1176" />
<polygon <polygon
points="790.712 676.788 787.343 676.242 816.36 455.102 819.729 455.648 790.712 676.788" points="272.57 401.45 258.75 395.1 266.8 312.99 274.9 313.4 272.57 401.45"
fill="#3f3d56" fill="#272223"
id="polygon1178" /> isolation="isolate"
<rect opacity=".2"
x="708.11491" id="polygon975" />
y="455.37515" <path
width="3.41218" id="uuid-aa721d86-32e3-4ace-957f-0814f6d1eb89-48-46-89-48-101-268-54"
height="222.84575" d="m329.89,281.37c1.49,7.32-1.24,14.01-6.08,14.94s-9.97-4.26-11.45-11.58c-.63-2.92-.53-5.94.29-8.82l-5.89-31.11,15.22-2.41,4.19,30.92c1.89,2.36,3.16,5.12,3.72,8.06h0Z"
fill="#3f3d56" fill="#f8a8ab" />
id="rect1180" /> <path
<rect d="m269.54,97.92s20.33-.86,21.39,0c5.55,4.53,38.1,168.04,38.1,168.04h-20.62l-38.87-168.04s0,0,0,0Z"
x="865.45079" fill="#6c63ff"
y="431.52231" id="path978" />
width="3.41219"
height="330.29569"
transform="translate(112.38887 1382.90398) rotate(-89.86127)"
fill="#3f3d56"
id="rect1182" />
<rect
x="718.83766"
y="700.96181"
width="290.1779"
height="3.41226"
transform="translate(-160.7831 -73.5538) rotate(-0.39166)"
fill="#3f3d56"
id="rect1184" />
<ellipse
cx="472.64757"
cy="411.01676"
rx="18.76701"
ry="10.23655"
fill="#3f3d56"
id="ellipse1186" />
</svg> </svg>
...@@ -22,5 +22,6 @@ ...@@ -22,5 +22,6 @@
"intro_1_description": "Con esta cartera, tú podrás guardar, mandar, y recibir moneda Ğ1 (conocía como 'june').", "intro_1_description": "Con esta cartera, tú podrás guardar, mandar, y recibir moneda Ğ1 (conocía como 'june').",
"intro_2_title": "Una moneda dixital libre creada pa la gente y por la xente", "intro_2_title": "Una moneda dixital libre creada pa la gente y por la xente",
"g1_amount_hint": "Cantidad a mandai en {currency}", "g1_amount_hint": "Cantidad a mandai en {currency}",
"intro_2_description": "Ğ1 nun depende de nengun gobierno o corporación y ye eco-responsable( baxu consumu de enerxía), transparente y buena con too." "intro_2_description": "Ğ1 nun depende de nengun gobierno o corporación y ye eco-responsable( baxu consumu de enerxía), transparente y buena con too.",
"search_user_title_in_contacts": "Guetar persones usuaries"
} }