@stripe/stripe-react-native 0.33.0 → 0.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/android/build.gradle +8 -3
- package/android/gradle.properties +1 -1
- package/android/src/main/java/com/reactnativestripesdk/GooglePayButtonManager.kt +10 -0
- package/android/src/main/java/com/reactnativestripesdk/GooglePayButtonView.kt +84 -19
- package/android/src/main/java/com/reactnativestripesdk/GooglePayLauncherFragment.kt +1 -1
- package/android/src/main/java/com/reactnativestripesdk/PaymentLauncherFragment.kt +1 -0
- package/android/src/main/java/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.kt +8 -1
- package/android/src/main/java/com/reactnativestripesdk/utils/Mappers.kt +19 -2
- package/android/src/main/res/layout/stripe_react_native_google_pay_button.xml +14 -0
- package/ios/AddressSheet/AddressSheetView.swift +8 -0
- package/ios/CustomerSheet/CustomerSheetUtils.swift +8 -0
- package/ios/Mappers.swift +2 -0
- package/ios/PaymentMethodFactory.swift +9 -0
- package/lib/commonjs/components/AddressSheet.js +1 -1
- package/lib/commonjs/components/AddressSheet.js.map +1 -1
- package/lib/commonjs/components/PlatformPayButton.js +1 -1
- package/lib/commonjs/components/PlatformPayButton.js.map +1 -1
- package/lib/commonjs/types/CustomerSheet.js.map +1 -1
- package/lib/commonjs/types/PaymentIntent.js.map +1 -1
- package/lib/commonjs/types/PlatformPay.js.map +1 -1
- package/lib/commonjs/types/components/GooglePayButtonComponent.js.map +1 -1
- package/lib/module/components/AddressSheet.js +1 -1
- package/lib/module/components/AddressSheet.js.map +1 -1
- package/lib/module/components/PlatformPayButton.js +1 -1
- package/lib/module/components/PlatformPayButton.js.map +1 -1
- package/lib/module/types/CustomerSheet.js.map +1 -1
- package/lib/module/types/PaymentIntent.js.map +1 -1
- package/lib/module/types/PlatformPay.js.map +1 -1
- package/lib/module/types/components/GooglePayButtonComponent.js.map +1 -1
- package/lib/typescript/src/components/AddressSheet.d.ts +2 -2
- package/lib/typescript/src/components/PlatformPayButton.d.ts +2 -2
- package/lib/typescript/src/types/CustomerSheet.d.ts +2 -2
- package/lib/typescript/src/types/PaymentIntent.d.ts +8 -1
- package/lib/typescript/src/types/PlatformPay.d.ts +2 -2
- package/lib/typescript/src/types/components/GooglePayButtonComponent.d.ts +2 -0
- package/package.json +2 -2
- package/src/components/AddressSheet.tsx +8 -2
- package/src/components/PlatformPayButton.tsx +4 -2
- package/src/types/CustomerSheet.ts +8 -2
- package/src/types/PaymentIntent.ts +10 -1
- package/src/types/PlatformPay.ts +2 -2
- package/src/types/components/GooglePayButtonComponent.ts +2 -0
- package/stripe-react-native.podspec +1 -1
- package/android/src/main/res/drawable/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable/googlepay_button_background_shape.xml +0 -5
- package/android/src/main/res/drawable/googlepay_button_content.xml +0 -48
- package/android/src/main/res/drawable/googlepay_mark_background.xml +0 -12
- package/android/src/main/res/drawable/googlepay_mark_content.xml +0 -27
- package/android/src/main/res/drawable/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ar/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ar/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ar/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ar/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ar/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ar/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ar/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-bg/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-bg/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-bg/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-bg/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-bg/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-bg/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-bg/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ca/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ca/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ca/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ca/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ca/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ca/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ca/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-cs/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-cs/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-cs/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-cs/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-cs/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-cs/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-cs/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-da/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-da/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-da/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-da/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-da/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-da/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-da/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-de/book_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-de/buy_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-de/checkout_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-de/donate_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-de/order_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-de/pay_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-de/subscribe_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-el/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-el/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-el/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-el/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-el/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-el/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-el/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-et/book_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-et/buy_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-et/checkout_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-et/donate_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-et/order_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-et/pay_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-et/subscribe_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-fi/book_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-fi/buy_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-fi/checkout_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-fi/donate_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-fi/order_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-fi/pay_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-fi/subscribe_with_googlepay_button_content.xml +0 -15
- package/android/src/main/res/drawable-fr/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-fr/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-fr/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-fr/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-fr/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-fr/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-fr/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-hdpi/googlepay_button_background_image.9.png +0 -0
- package/android/src/main/res/drawable-hdpi/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/src/main/res/drawable-hr/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-hr/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-hr/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-hr/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-hr/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-hr/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-hr/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-id/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-id/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-id/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-id/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-id/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-id/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-id/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-it/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-it/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-it/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-it/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-it/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-it/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-it/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ja/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ja/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ja/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ja/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ja/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ja/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ja/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ko/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ko/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ko/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ko/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ko/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ko/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ko/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-mdpi/googlepay_button_background_image.9.png +0 -0
- package/android/src/main/res/drawable-mdpi/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/src/main/res/drawable-ms/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ms/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ms/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ms/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ms/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ms/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ms/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-nl/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-nl/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-nl/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-nl/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-nl/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-nl/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-nl/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-no/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-no/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-no/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-no/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-no/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-no/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-no/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-pl/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-pl/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-pl/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-pl/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-pl/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-pl/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-pl/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ru/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ru/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ru/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ru/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ru/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ru/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-ru/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sk/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sk/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sk/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sk/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sk/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sk/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sk/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sl/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sl/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sl/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sl/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sl/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sl/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sl/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sr/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sr/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sr/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sr/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sr/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sr/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sr/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sv/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sv/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sv/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sv/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sv/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sv/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-sv/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-th/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-th/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-th/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-th/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-th/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-th/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-th/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-tr/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-tr/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-tr/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-tr/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-tr/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-tr/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-tr/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-uk/book_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-uk/buy_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-uk/checkout_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-uk/donate_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-uk/order_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-uk/pay_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-uk/subscribe_with_googlepay_button_content.xml +0 -14
- package/android/src/main/res/drawable-v21/googlepay_button_background.xml +0 -7
- package/android/src/main/res/drawable-v21/googlepay_button_no_shadow_background.xml +0 -7
- package/android/src/main/res/drawable-xhdpi/googlepay_button_background_image.9.png +0 -0
- package/android/src/main/res/drawable-xhdpi/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/googlepay_button_background_image.9.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/googlepay_button_background_image.9.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/src/main/res/layout/book_with_googlepay_button.xml +0 -20
- package/android/src/main/res/layout/buy_with_googlepay_button.xml +0 -20
- package/android/src/main/res/layout/checkout_with_googlepay_button.xml +0 -20
- package/android/src/main/res/layout/donate_with_googlepay_button.xml +0 -20
- package/android/src/main/res/layout/googlepay_mark_button.xml +0 -16
- package/android/src/main/res/layout/order_with_googlepay_button.xml +0 -20
- package/android/src/main/res/layout/pay_with_googlepay_button.xml +0 -20
- package/android/src/main/res/layout/plain_googlepay_button.xml +0 -17
- package/android/src/main/res/layout/subscribe_with_googlepay_button.xml +0 -20
- package/android/src/main/res/values/googlepay_strings.xml +0 -14
package/src/types/PlatformPay.ts
CHANGED
|
@@ -195,7 +195,7 @@ export type GooglePayBaseParams = {
|
|
|
195
195
|
};
|
|
196
196
|
/** An optional label to display with the amount. Google Pay may or may not display this label depending on its own internal logic. Defaults to a generic label if none is provided. */
|
|
197
197
|
label?: string;
|
|
198
|
-
/** An optional amount to display for setup intents. Google Pay may or may not display this amount depending on its own internal logic. Defaults to 0 if none is provided. */
|
|
198
|
+
/** An optional amount to display for setup intents. Google Pay may or may not display this amount depending on its own internal logic. Defaults to 0 if none is provided. Provide this value in the currency’s smallest unit. */
|
|
199
199
|
amount?: number;
|
|
200
200
|
};
|
|
201
201
|
|
|
@@ -269,7 +269,7 @@ export enum ButtonType {
|
|
|
269
269
|
Continue = 16,
|
|
270
270
|
/** Android only. A button useful for general payments. */
|
|
271
271
|
Pay = 1000,
|
|
272
|
-
/** Android only.
|
|
272
|
+
/** Android only. The Google Pay payment button without the additional text. */
|
|
273
273
|
GooglePayMark = 1001,
|
|
274
274
|
}
|
|
275
275
|
|
|
@@ -2,7 +2,7 @@ require 'json'
|
|
|
2
2
|
|
|
3
3
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
4
4
|
# Keep stripe_version in sync with https://github.com/stripe/stripe-identity-react-native/blob/main/stripe-identity-react-native.podspec
|
|
5
|
-
stripe_version = '~> 23.
|
|
5
|
+
stripe_version = '~> 23.18.0'
|
|
6
6
|
|
|
7
7
|
Pod::Spec.new do |s|
|
|
8
8
|
s.name = 'stripe-react-native'
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="130dp" android:height="21dp" android:viewportWidth="130" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M2.08038 15.0006V3.54461h4.288c0.62933 0 1.2 0.13333 1.712 0.4s0.91733 0.62933 1.216 1.088c0.30933 0.45867 0.464 0.976 0.464 1.552 0 0.58667-0.144 1.088-0.432 1.504-0.288 0.416-0.66133 0.73067-1.12 0.944v0.08c0.576 0.192 1.04533 0.52267 1.408 0.99199 0.36267 0.4693 0.54402 1.0293 0.54402 1.68 0 0.64-0.16535 1.2-0.49602 1.68-0.32 0.48-0.75733 0.8587-1.312 1.136-0.544 0.2667-1.14133 0.4-1.792 0.4h-4.48zm1.76-5.07199v3.43999h2.72c0.384 0 0.71466-0.08 0.992-0.24 0.27733-0.16 0.48533-0.3733 0.624-0.64 0.14933-0.2667 0.224-0.544 0.224-0.832 0-0.3093-0.07467-0.592-0.224-0.848-0.14934-0.2667-0.368-0.48-0.656-0.64-0.27733-0.16-0.61867-0.23999-1.024-0.23999h-2.656zm0-1.568h2.448c0.37333 0 0.688-0.07467 0.944-0.224 0.26667-0.16 0.46933-0.36267 0.608-0.608 0.13867-0.256 0.208-0.51733 0.208-0.784 0-0.26667-0.06933-0.51733-0.208-0.752-0.128-0.24533-0.32-0.44267-0.576-0.592-0.256-0.16-0.56-0.24-0.912-0.24h-2.512v3.2zM15.798 15.2566c-0.8427 0-1.584-0.192-2.224-0.576-0.64-0.384-1.1413-0.9013-1.504-1.552-0.3627-0.6613-0.544-1.3973-0.544-2.208 0-0.8107 0.1813-1.54132 0.544-2.19199 0.3627-0.66133 0.864-1.184 1.504-1.568 0.64-0.384 1.3813-0.576 2.224-0.576 0.832 0 1.568 0.19733 2.208 0.592 0.64 0.384 1.1413 0.90133 1.504 1.552 0.3627 0.65067 0.544 1.38129 0.544 2.19199 0 0.8107-0.1813 1.5467-0.544 2.208-0.3627 0.6507-0.864 1.168-1.504 1.552-0.64 0.384-1.376 0.576-2.208 0.576zm0-1.584c0.448 0 0.864-0.1067 1.248-0.32 0.384-0.224 0.6933-0.5387 0.928-0.944 0.2453-0.416 0.368-0.912 0.368-1.488s-0.1227-1.06666-0.368-1.47199c-0.2347-0.416-0.544-0.73067-0.928-0.944-0.384-0.224-0.8-0.336-1.248-0.336-0.448 0-0.8693 0.112-1.264 0.336-0.384 0.21333-0.6987 0.528-0.944 0.944-0.2347 0.40533-0.352 0.89599-0.352 1.47199s0.1173 1.072 0.352 1.488c0.2453 0.4053 0.5653 0.72 0.96 0.944 0.3947 0.2133 0.8107 0.32 1.248 0.32zm9.8375 1.584c-0.8427 0-1.584-0.192-2.224-0.576-0.64-0.384-1.1413-0.9013-1.504-1.552-0.3627-0.6613-0.544-1.3973-0.544-2.208 0-0.8107 0.1813-1.54132 0.544-2.19199 0.3627-0.66133 0.864-1.184 1.504-1.568 0.64-0.384 1.3813-0.576 2.224-0.576 0.832 0 1.568 0.19733 2.208 0.592 0.64 0.384 1.1413 0.90133 1.504 1.552 0.3627 0.65067 0.544 1.38129 0.544 2.19199 0 0.8107-0.1813 1.5467-0.544 2.208-0.3627 0.6507-0.864 1.168-1.504 1.552-0.64 0.384-1.376 0.576-2.208 0.576zm0-1.584c0.448 0 0.864-0.1067 1.248-0.32 0.384-0.224 0.6933-0.5387 0.928-0.944 0.2453-0.416 0.368-0.912 0.368-1.488s-0.1227-1.06666-0.368-1.47199c-0.2347-0.416-0.544-0.73067-0.928-0.944-0.384-0.224-0.8-0.336-1.248-0.336-0.448 0-0.8693 0.112-1.264 0.336-0.384 0.21333-0.6987 0.528-0.944 0.944-0.2347 0.40533-0.352 0.89599-0.352 1.47199s0.1173 1.072 0.352 1.488c0.2453 0.4053 0.5653 0.72 0.96 0.944 0.3947 0.2133 0.8107 0.32 1.248 0.32zm5.9194 1.328V3.54461h1.728v6.75199l3.456-3.45599h2.144v0.096l-3.152 3.11999 3.264 4.848v0.096h-2.048l-2.432-3.744-1.232 1.216v2.528h-1.728zm14.262 0l-2.608-8.15999h1.872l1.68 5.87199h0.064l1.84-5.87199h1.776l1.84 5.87199h0.064l1.68-5.87199h1.84l-2.624 8.15999h-1.808l-1.888-5.90399h-0.064l-1.872 5.90399h-1.792zm11.441 0V6.84061h1.728v8.15999h-1.728zm0.864-9.35999c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.33067 0.112-0.60267 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.3306 0 0.608 0.112 0.832 0.336 0.224 0.21333 0.336 0.48533 0.336 0.816 0 0.32-0.112 0.59733-0.336 0.832-0.224 0.224-0.5014 0.336-0.832 0.336zm2.5199 1.2h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1706 0.2133 0.4533 0.32 0.848 0.32 0.192 0 0.3626-0.0267 0.512-0.08 0.1493-0.064 0.2986-0.1387 0.448-0.224v1.68c-0.1814 0.0747-0.3734 0.1333-0.576 0.176-0.2027 0.0427-0.4427 0.064-0.72 0.064-0.7574 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84V8.34461h-1.424v-1.504zm7.0381 8.15999V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.5653-0.72 1.024-0.976 0.4693-0.26667 0.9866-0.4 1.552-0.4 0.6826 0 1.248 0.13867 1.696 0.416 0.4586 0.27733 0.8 0.66133 1.024 1.152 0.224 0.48 0.336 1.04533 0.336 1.696v5.15199h-1.712v-4.928c0-0.43732-0.0854-0.79466-0.256-1.07199-0.16-0.27733-0.3734-0.48533-0.64-0.624-0.2667-0.13867-0.5654-0.208-0.896-0.208-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.5707 0.544-0.752 0.928-0.1814 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M104.356 3.42339v4.73836h2.922c0.696 0 1.272-0.23394 1.727-0.70182 0.468-0.4668 0.702-1.02349 0.702-1.6679 0-0.63142-0.234-1.18162-0.702-1.64949-0.455-0.4798-1.031-0.72024-1.727-0.72024h-2.922v0.00109zm0 6.40627v5.49654h-1.745V1.75549h4.629c1.177 0 2.175 0.39207 2.998 1.17512 0.835 0.78304 1.253 1.73721 1.253 2.86142 0 1.15021-0.418 2.11088-1.253 2.88093-0.81 0.77113-1.809 1.15562-2.998 1.15562h-2.884v0.00108zM113.255 12.4831c0 0.4548 0.193 0.8339 0.579 1.1372 0.386 0.3032 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.864-1.1816 0.864-1.9138-0.545-0.4299-1.304-0.6444-2.277-0.6444-0.709 0-1.3 0.1711-1.774 0.5123-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74744c1.29 0 2.308 0.34441 3.056 1.03323 0.745 0.68882 1.118 1.63324 1.118 2.83327v5.72394h-1.669v-1.2888h-0.076c-0.721 1.0612-1.683 1.5921-2.884 1.5921-1.025 0-1.882-0.3033-2.571-0.9098-0.69-0.6065-1.034-1.3647-1.034-2.2744 0-0.9607 0.363-1.7244 1.09-2.2929 0.728-0.56855 1.698-0.8534 2.913-0.8534 1.036 0 1.89 0.18954 2.561 0.56861V9.46894c0-0.60651-0.241-1.12096-0.721-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M129.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M97.3029 8.64473c0-0.5491-0.0467-1.07872-0.1345-1.58559h-7.3619v3.00336h4.2166c-0.1811 0.9789-0.7287 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M89.8065 16.2651c2.1066 0 3.8804-0.691 5.1739-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.6025 0.7462-2.6574 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21881h-2.5924v2.00911c1.2848 2.5473 3.9249 4.2964 6.9749 4.2964" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M85.424 9.9596c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96564h-2.5924C82.3003 6.01837 82 7.20756 82 8.46715c0 1.25959 0.3003 2.44885 0.8316 3.50155l2.5924-2.0091z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M89.8065 3.75583c1.1503 0 2.1814 0.39532 2.9946 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.1172-2.031812-5.2227-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="120dp" android:height="21dp" android:viewportWidth="120" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M1.96475 15.0006V3.54461h4.288c0.62933 0 1.2 0.13333 1.712 0.4s0.91733 0.62933 1.216 1.088c0.30933 0.45867 0.464 0.976 0.464 1.552 0 0.58667-0.144 1.088-0.432 1.504-0.288 0.416-0.66134 0.73067-1.12 0.944v0.08c0.576 0.192 1.04533 0.52267 1.408 0.99199 0.36266 0.4693 0.54395 1.0293 0.54395 1.68 0 0.64-0.16529 1.2-0.49595 1.68-0.32 0.48-0.75734 0.8587-1.312 1.136-0.544 0.2667-1.14134 0.4-1.792 0.4h-4.48zm1.76-5.07199v3.43999h2.72c0.384 0 0.71466-0.08 0.992-0.24 0.27733-0.16 0.48533-0.3733 0.624-0.64 0.14933-0.2667 0.224-0.544 0.224-0.832 0-0.3093-0.07467-0.592-0.224-0.848-0.14934-0.2667-0.368-0.48-0.656-0.64-0.27734-0.16-0.61867-0.23999-1.024-0.23999h-2.656zm0-1.568h2.448c0.37333 0 0.688-0.07467 0.944-0.224 0.26666-0.16 0.46933-0.36267 0.608-0.608 0.13866-0.256 0.208-0.51733 0.208-0.784 0-0.26667-0.06934-0.51733-0.208-0.752-0.128-0.24533-0.32-0.44267-0.576-0.592-0.256-0.16-0.56-0.24-0.912-0.24h-2.512v3.2zM14.8024 15.2566c-1.0027 0-1.76-0.2987-2.272-0.896-0.5014-0.608-0.752-1.4293-0.752-2.464V6.84061h1.728v4.81599c0 0.6827 0.16 1.1893 0.48 1.52 0.3306 0.3307 0.7413 0.496 1.232 0.496 0.448 0 0.832-0.112 1.152-0.336 0.32-0.2347 0.5653-0.5387 0.736-0.912 0.1813-0.3733 0.272-0.7733 0.272-1.2V6.84061h1.712v8.15999h-1.616v-1.104h-0.096c-0.1494 0.256-0.3574 0.4853-0.624 0.688-0.2667 0.2027-0.5654 0.3627-0.896 0.48-0.3307 0.128-0.6827 0.192-1.056 0.192zm9.2552 2.8c-0.032 0.0747-0.0693 0.1493-0.112 0.224-0.032 0.0853-0.0533 0.144-0.064 0.176h-1.84c0.0534-0.1173 0.128-0.2827 0.224-0.496 0.1067-0.2133 0.208-0.4267 0.304-0.64 0.064-0.1387 0.128-0.288 0.192-0.448 0.0747-0.16 0.1494-0.3253 0.224-0.496 0.0854-0.1707 0.1654-0.336 0.24-0.496l0.608-1.328-3.408-7.71199h1.92l2.336 5.56799h0.08l2.256-5.56799h1.904l-4.224 9.72799c-0.0746 0.1813-0.16 0.3733-0.256 0.576-0.0853 0.2027-0.1653 0.384-0.24 0.544-0.064 0.1707-0.112 0.2933-0.144 0.368zm11.7593-3.056l-2.608-8.15999h1.872l1.68 5.87199h0.064l1.84-5.87199h1.776l1.84 5.87199h0.064l1.68-5.87199h1.84l-2.624 8.15999h-1.808l-1.888-5.90399h-0.064l-1.872 5.90399h-1.792zm11.441 0V6.84061h1.728v8.15999h-1.728zm0.864-9.35999c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.33067 0.112-0.60267 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.3306 0 0.608 0.112 0.832 0.336 0.224 0.21333 0.336 0.48533 0.336 0.816 0 0.32-0.112 0.59733-0.336 0.832-0.224 0.224-0.5014 0.336-0.832 0.336zm2.5198 1.2h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1707 0.2133 0.4534 0.32 0.848 0.32 0.192 0 0.3627-0.0267 0.512-0.08 0.1494-0.064 0.2987-0.1387 0.448-0.224v1.68c-0.1813 0.0747-0.3733 0.1333-0.576 0.176-0.2026 0.0427-0.4426 0.064-0.72 0.064-0.7573 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84V8.34461h-1.424v-1.504zm7.0382 8.15999V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.5653-0.72 1.024-0.976 0.4693-0.26667 0.9866-0.4 1.552-0.4 0.6826 0 1.248 0.13867 1.696 0.416 0.4586 0.27733 0.8 0.66133 1.024 1.152 0.224 0.48 0.336 1.04533 0.336 1.696v5.15199h-1.712v-4.928c0-0.43732-0.0854-0.79466-0.256-1.07199-0.16-0.27733-0.3734-0.48533-0.64-0.624-0.2667-0.13867-0.5654-0.208-0.896-0.208-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.5707 0.544-0.752 0.928-0.1814 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M94.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6297c1.1765 0 2.175 0.39207 2.9976 1.17512 0.835 0.78304 1.253 1.73721 1.253 2.86142 0 1.15021-0.418 2.11088-1.253 2.88093-0.8097 0.77113-1.8093 1.15562-2.9976 1.15562h-2.8841v0.00108zM103.255 12.4831c0 0.4548 0.193 0.8339 0.579 1.1372 0.386 0.3032 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.864-1.1816 0.864-1.9138-0.545-0.4299-1.304-0.6444-2.277-0.6444-0.709 0-1.3 0.1711-1.774 0.5123-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74744c1.29 0 2.308 0.34441 3.056 1.03323 0.745 0.68882 1.118 1.63324 1.118 2.83327v5.72394h-1.669v-1.2888h-0.076c-0.721 1.0612-1.683 1.5921-2.884 1.5921-1.025 0-1.882-0.3033-2.571-0.9098-0.69-0.6065-1.034-1.3647-1.034-2.2744 0-0.9607 0.363-1.7244 1.09-2.2929 0.728-0.56855 1.698-0.8534 2.913-0.8534 1.036 0 1.89 0.18954 2.561 0.56861V9.46894c0-0.60651-0.241-1.12096-0.721-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M119.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M87.3029 8.64473c0-0.5491-0.0467-1.07872-0.1345-1.58559h-7.3619v3.00336h4.2166c-0.1811 0.9789-0.7287 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M79.8065 16.2651c2.1066 0 3.8804-0.691 5.1739-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.6025 0.7462-2.6574 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21881h-2.5924v2.00911c1.2848 2.5473 3.9249 4.2964 6.9749 4.2964" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M75.424 9.9596c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96564h-2.5924C72.3003 6.01837 72 7.20756 72 8.46715c0 1.25959 0.3003 2.44885 0.8316 3.50155l2.5924-2.0091z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M79.8065 3.75583c1.1503 0 2.1814 0.39532 2.9946 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.1172-2.031812-5.2227-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="165dp" android:height="21dp" android:viewportWidth="165" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M6.888 15.2566c-0.84267 0-1.62667-0.1493-2.352-0.448-0.72534-0.3093-1.36-0.7307-1.904-1.264-0.53334-0.544-0.95467-1.1787-1.264-1.904-0.29867-0.736-0.448003-1.5253-0.448003-2.36799 0-0.85333 0.149333-1.64267 0.448003-2.368 0.30933-0.72533 0.73066-1.35467 1.264-1.888 0.544-0.544 1.17866-0.96533 1.904-1.264 0.72533-0.30933 1.50933-0.464 2.352-0.464 0.59733 0 1.152 0.07467 1.664 0.224 0.512 0.14933 0.98133 0.36267 1.408 0.64 0.4267 0.27733 0.816 0.61333 1.168 1.008l-1.232 1.2c-0.256-0.30933-0.53334-0.56533-0.832-0.768-0.29867-0.21333-0.62934-0.37333-0.992-0.48-0.352-0.10667-0.74134-0.16-1.168-0.16-0.768 0-1.472 0.18133-2.112 0.544-0.64 0.352-1.152 0.848-1.536 1.488-0.37334 0.64-0.56 1.40267-0.56 2.288 0 0.87469 0.18666 1.63729 0.56 2.28799 0.384 0.64 0.896 1.1413 1.536 1.504 0.64 0.352 1.344 0.528 2.112 0.528 0.46933 0 0.896-0.064 1.28-0.192 0.39466-0.128 0.75733-0.3147 1.088-0.56 0.33066-0.2453 0.63466-0.5333 0.912-0.864l1.264 1.216c-0.352 0.416-0.7627 0.7787-1.232 1.088-0.46934 0.3093-0.98134 0.5493-1.536 0.72-0.55467 0.1707-1.152 0.256-1.792 0.256zm6.2356-0.256V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.5654-0.72 1.024-0.976 0.4694-0.26667 0.9867-0.4 1.552-0.4 0.6827 0 1.248 0.13867 1.696 0.416 0.4587 0.27733 0.8 0.66133 1.024 1.152 0.224 0.48 0.336 1.04533 0.336 1.696v5.15199h-1.712v-4.928c0-0.43732-0.0853-0.79466-0.256-1.07199-0.16-0.27733-0.3733-0.48533-0.64-0.624-0.2666-0.13867-0.5653-0.208-0.896-0.208-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.5706 0.544-0.752 0.928-0.1813 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728zm13.2061 0.256c-0.8 0-1.5146-0.1867-2.144-0.56-0.6293-0.3733-1.1253-0.8853-1.488-1.536-0.352-0.6507-0.528-1.392-0.528-2.224 0-0.7787 0.1707-1.49866 0.512-2.15999 0.3414-0.66133 0.816-1.18933 1.424-1.584 0.6187-0.40533 1.328-0.608 2.128-0.608 0.8427 0 1.5574 0.18133 2.144 0.544 0.5974 0.36267 1.0507 0.85867 1.36 1.488 0.3094 0.62933 0.464 1.33867 0.464 2.12799 0 0.1173-0.0053 0.224-0.016 0.32 0 0.096-0.0053 0.1707-0.016 0.224h-6.304c0.0427 0.448 0.1547 0.8373 0.336 1.168 0.2347 0.416 0.544 0.7307 0.928 0.944 0.384 0.2133 0.8 0.32 1.248 0.32 0.544 0 0.9974-0.1227 1.36-0.368 0.3734-0.256 0.6667-0.5707 0.88-0.944l1.424 0.688c-0.352 0.64-0.832 1.1627-1.44 1.568-0.608 0.3947-1.3653 0.592-2.272 0.592zm-2.368-5.26399h4.528c-0.0106-0.20267-0.064-0.416-0.16-0.64-0.096-0.23467-0.2346-0.448-0.416-0.64-0.1813-0.192-0.4106-0.34667-0.688-0.464-0.2773-0.128-0.6026-0.192-0.976-0.192-0.4693 0-0.8853 0.12267-1.248 0.368-0.3626 0.23467-0.6453 0.56533-0.848 0.992-0.0853 0.18133-0.1493 0.37333-0.192 0.576zM35.809 15.2566c-0.8213 0-1.552-0.1867-2.192-0.56-0.6293-0.3733-1.1253-0.8853-1.488-1.536-0.352-0.6613-0.528-1.408-0.528-2.24 0-0.832 0.176-1.57332 0.528-2.22399 0.3627-0.65067 0.8587-1.16267 1.488-1.536 0.64-0.384 1.3707-0.576 2.192-0.576 0.9067 0 1.6693 0.20267 2.288 0.608 0.6293 0.40533 1.0773 0.95467 1.344 1.648l-1.568 0.64c-0.192-0.43733-0.4693-0.76267-0.832-0.976-0.352-0.224-0.7733-0.336-1.264-0.336-0.448 0-0.8587 0.11733-1.232 0.352-0.3733 0.224-0.672 0.53867-0.896 0.944-0.224 0.40533-0.336 0.89069-0.336 1.45599 0 0.5547 0.112 1.04 0.336 1.456 0.224 0.416 0.5227 0.736 0.896 0.96 0.3733 0.224 0.784 0.336 1.232 0.336 0.5227 0 0.9653-0.1173 1.328-0.352 0.3627-0.2347 0.6453-0.5653 0.848-0.992l1.536 0.672c-0.2987 0.6507-0.7627 1.1893-1.392 1.616-0.6187 0.4267-1.3813 0.64-2.288 0.64zm5.3115-0.256V3.54461h1.728v6.75199l3.456-3.45599h2.144v0.096l-3.152 3.11999 3.264 4.848v0.096h-2.048l-2.432-3.744-1.232 1.216v2.528h-1.728zm12.2712 0.256c-0.8426 0-1.584-0.192-2.224-0.576-0.64-0.384-1.1413-0.9013-1.504-1.552-0.3626-0.6613-0.544-1.3973-0.544-2.208 0-0.8107 0.1814-1.54132 0.544-2.19199 0.3627-0.66133 0.864-1.184 1.504-1.568 0.64-0.384 1.3814-0.576 2.224-0.576 0.832 0 1.568 0.19733 2.208 0.592 0.64 0.384 1.1414 0.90133 1.504 1.552 0.3627 0.65067 0.544 1.38129 0.544 2.19199 0 0.8107-0.1813 1.5467-0.544 2.208-0.3626 0.6507-0.864 1.168-1.504 1.552-0.64 0.384-1.376 0.576-2.208 0.576zm0-1.584c0.448 0 0.864-0.1067 1.248-0.32 0.384-0.224 0.6934-0.5387 0.928-0.944 0.2454-0.416 0.368-0.912 0.368-1.488s-0.1226-1.06666-0.368-1.47199c-0.2346-0.416-0.544-0.73067-0.928-0.944-0.384-0.224-0.8-0.336-1.248-0.336-0.448 0-0.8693 0.112-1.264 0.336-0.384 0.21333-0.6986 0.528-0.944 0.944-0.2346 0.40533-0.352 0.89599-0.352 1.47199s0.1174 1.072 0.352 1.488c0.2454 0.4053 0.5654 0.72 0.96 0.944 0.3947 0.2133 0.8107 0.32 1.248 0.32zm8.8794 1.584c-1.0026 0-1.76-0.2987-2.272-0.896-0.5013-0.608-0.752-1.4293-0.752-2.464V6.84061h1.728v4.81599c0 0.6827 0.16 1.1893 0.48 1.52 0.3307 0.3307 0.7414 0.496 1.232 0.496 0.448 0 0.832-0.112 1.152-0.336 0.32-0.2347 0.5654-0.5387 0.736-0.912 0.1814-0.3733 0.272-0.7733 0.272-1.2V6.84061h1.712v8.15999h-1.616v-1.104h-0.096c-0.1493 0.256-0.3573 0.4853-0.624 0.688-0.2666 0.2027-0.5653 0.3627-0.896 0.48-0.3306 0.128-0.6826 0.192-1.056 0.192zm5.9894-8.41599h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1707 0.2133 0.4533 0.32 0.848 0.32 0.192 0 0.3627-0.0267 0.512-0.08 0.1493-0.064 0.2987-0.1387 0.448-0.224v1.68c-0.1813 0.0747-0.3733 0.1333-0.576 0.176-0.2027 0.0427-0.4427 0.064-0.72 0.064-0.7573 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84V8.34461h-1.424v-1.504zm12.5564 8.15999l-2.608-8.15999h1.872l1.68 5.87199h0.064l1.84-5.87199h1.776l1.84 5.87199h0.064l1.68-5.87199h1.84l-2.624 8.15999h-1.808l-1.888-5.90399h-0.064l-1.872 5.90399h-1.792zm11.441 0V6.84061h1.728v8.15999h-1.728zm0.864-9.35999c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.33067 0.112-0.60267 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.3306 0 0.608 0.112 0.832 0.336 0.224 0.21333 0.336 0.48533 0.336 0.816 0 0.32-0.112 0.59733-0.336 0.832-0.224 0.224-0.5014 0.336-0.832 0.336zm2.5198 1.2h1.424v-2.304h1.728v2.304h2.0003v1.504h-2.0003v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1707 0.2133 0.4534 0.32 0.848 0.32 0.1923 0 0.3623-0.0267 0.5123-0.08 0.149-0.064 0.298-0.1387 0.448-0.224v1.68c-0.182 0.0747-0.374 0.1333-0.576 0.176-0.203 0.0427-0.4429 0.064-0.7203 0.064-0.7573 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84V8.34461h-1.424v-1.504zm7.0383 8.15999V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.565-0.72 1.024-0.976 0.469-0.26667 0.987-0.4 1.552-0.4 0.683 0 1.248 0.13867 1.696 0.416 0.459 0.27733 0.8 0.66133 1.024 1.152 0.224 0.48 0.336 1.04533 0.336 1.696v5.15199h-1.712v-4.928c0-0.43732-0.085-0.79466-0.256-1.07199-0.16-0.27733-0.373-0.48533-0.64-0.624-0.267-0.13867-0.565-0.208-0.896-0.208-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.571 0.544-0.752 0.928-0.181 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M139.356 3.42339v4.73836h2.922c0.696 0 1.272-0.23394 1.727-0.70182 0.468-0.4668 0.702-1.02349 0.702-1.6679 0-0.63142-0.234-1.18162-0.702-1.64949-0.455-0.4798-1.031-0.72024-1.727-0.72024h-2.922v0.00109zm0 6.40627v5.49654h-1.745V1.75549h4.629c1.177 0 2.175 0.39207 2.998 1.17512 0.835 0.78304 1.253 1.73721 1.253 2.86142 0 1.15021-0.418 2.11088-1.253 2.88093-0.81 0.77113-1.809 1.15562-2.998 1.15562h-2.884v0.00108zM148.255 12.4831c0 0.4548 0.193 0.8339 0.579 1.1372 0.386 0.3032 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.864-1.1816 0.864-1.9138-0.545-0.4299-1.304-0.6444-2.277-0.6444-0.709 0-1.3 0.1711-1.774 0.5123-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74744c1.29 0 2.308 0.34441 3.056 1.03323 0.745 0.68882 1.118 1.63324 1.118 2.83327v5.72394h-1.669v-1.2888h-0.076c-0.721 1.0612-1.683 1.5921-2.884 1.5921-1.025 0-1.882-0.3033-2.571-0.9098-0.69-0.6065-1.034-1.3647-1.034-2.2744 0-0.9607 0.363-1.7244 1.09-2.2929 0.728-0.56855 1.698-0.8534 2.913-0.8534 1.036 0 1.89 0.18954 2.561 0.56861V9.46894c0-0.60651-0.241-1.12096-0.721-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M164.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M132.303 8.64473c0-0.5491-0.047-1.07872-0.135-1.58559h-7.362v3.00336h4.217c-0.181 0.9789-0.729 1.8119-1.559 2.3697v1.9506h2.516c1.474-1.3582 2.323-3.3651 2.323-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M124.806 16.2651c2.107 0 3.881-0.691 5.174-1.8823l-2.516-1.9506c-0.701 0.4711-1.603 0.7462-2.658 0.7462-2.036 0-3.764-1.3711-4.382-3.21881h-2.592v2.00911c1.284 2.5473 3.925 4.2964 6.974 4.2964" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M120.424 9.9596c-0.158-0.47113-0.245-0.97367-0.245-1.49245s0.087-1.02132 0.245-1.49245V4.96564h-2.592C117.3 6.01837 117 7.20756 117 8.46715c0 1.25959 0.3 2.44885 0.832 3.50155l2.592-2.0091z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M124.806 3.75583c1.151 0 2.182 0.39532 2.995 1.1697v0.00108l2.228-2.22567c-1.353-1.25851-3.117-2.031812-5.223-2.031812-3.049 0-5.69 1.749132-6.974 4.296472l2.592 2.00907c0.618-1.84769 2.346-3.21884 4.382-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="146dp" android:height="21dp" android:viewportWidth="146" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M1.87413 15.0006V3.54461h3.664c1.20533 0 2.24 0.24533 3.104 0.736 0.87466 0.48 1.54667 1.152 2.01597 2.016 0.48 0.864 0.72 1.856 0.72 2.976 0 1.11999-0.24 2.11199-0.72 2.97599-0.4693 0.864-1.14131 1.5413-2.01597 2.032-0.864 0.48-1.89867 0.72-3.104 0.72h-3.664zm1.76-1.664h1.856c0.864 0 1.60533-0.16 2.224-0.48 0.61866-0.3307 1.088-0.8 1.408-1.408 0.32-0.608 0.48-1.3333 0.48-2.17599 0-0.84267-0.16-1.568-0.48-2.176-0.32-0.608-0.78934-1.072-1.408-1.392-0.61867-0.33067-1.36-0.496-2.224-0.496h-1.856v8.12799zm13.22327 1.92c-0.8427 0-1.584-0.192-2.224-0.576-0.64-0.384-1.1414-0.9013-1.504-1.552-0.3627-0.6613-0.544-1.3973-0.544-2.208 0-0.8107 0.1813-1.54132 0.544-2.19199 0.3626-0.66133 0.864-1.184 1.504-1.568 0.64-0.384 1.3813-0.576 2.224-0.576 0.832 0 1.568 0.19733 2.208 0.592 0.64 0.384 1.1413 0.90133 1.504 1.552 0.3626 0.65067 0.544 1.38129 0.544 2.19199 0 0.8107-0.1814 1.5467-0.544 2.208-0.3627 0.6507-0.864 1.168-1.504 1.552-0.64 0.384-1.376 0.576-2.208 0.576zm0-1.584c0.448 0 0.864-0.1067 1.248-0.32 0.384-0.224 0.6933-0.5387 0.928-0.944 0.2453-0.416 0.368-0.912 0.368-1.488s-0.1227-1.06666-0.368-1.47199c-0.2347-0.416-0.544-0.73067-0.928-0.944-0.384-0.224-0.8-0.336-1.248-0.336-0.448 0-0.8694 0.112-1.264 0.336-0.384 0.21333-0.6987 0.528-0.944 0.944-0.2347 0.40533-0.352 0.89599-0.352 1.47199s0.1173 1.072 0.352 1.488c0.2453 0.4053 0.5653 0.72 0.96 0.944 0.3946 0.2133 0.8106 0.32 1.248 0.32zm5.8412 1.328V6.84061h1.632v1.12h0.096c0.2347-0.39467 0.5814-0.72 1.04-0.976 0.4694-0.26667 0.9814-0.4 1.536-0.4 1.0027 0 1.7547 0.29867 2.256 0.896 0.5014 0.58667 0.752 1.376 0.752 2.368v5.15199h-1.712v-4.928c0-0.66132-0.1653-1.14132-0.496-1.43999-0.3306-0.30933-0.7626-0.464-1.296-0.464-0.416 0-0.7786 0.11733-1.088 0.352-0.3093 0.224-0.5546 0.52267-0.736 0.896-0.1706 0.37333-0.256 0.77329-0.256 1.19999v4.384h-1.728zm11.9132 0.256c-0.5867 0-1.1094-0.1173-1.568-0.352-0.448-0.2347-0.8054-0.5547-1.072-0.96-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.5867 0.1493-1.0827 0.448-1.488 0.3093-0.4053 0.72-0.7147 1.232-0.928 0.512-0.21332 1.0773-0.31999 1.696-0.31999 0.3413 0 0.656 0.02667 0.944 0.08 0.2986 0.04267 0.5546 0.096 0.768 0.15999 0.224 0.064 0.4 0.1333 0.528 0.208V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8107 0.096-1.184 0.288-0.3734 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.2346-0.33067 0.5173-0.61333 0.848-0.848 0.3413-0.23467 0.72-0.416 1.136-0.544 0.4266-0.128 0.8693-0.192 1.328-0.192 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.1387 0.2133-0.3307 0.416-0.576 0.608-0.2347 0.192-0.5174 0.3467-0.848 0.464-0.32 0.128-0.6774 0.192-1.072 0.192zm0.304-1.408c0.448 0 0.8426-0.1067 1.184-0.32 0.352-0.2133 0.624-0.4907 0.816-0.832 0.192-0.352 0.288-0.7307 0.288-1.136-0.2347-0.1387-0.5227-0.2507-0.864-0.336-0.3307-0.096-0.6827-0.144-1.056-0.144-0.704 0-1.2054 0.1387-1.504 0.416-0.2987 0.2773-0.448 0.624-0.448 1.04 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm5.3041-7.00799h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1706 0.2133 0.4533 0.32 0.848 0.32 0.192 0 0.3626-0.0267 0.512-0.08 0.1493-0.064 0.2986-0.1387 0.448-0.224v1.68c-0.1814 0.0747-0.3734 0.1333-0.576 0.176-0.2027 0.0427-0.4427 0.064-0.72 0.064-0.7574 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84V8.34461h-1.424v-1.504zm10.3755 8.41599c-0.8 0-1.5147-0.1867-2.144-0.56-0.6294-0.3733-1.1254-0.8853-1.488-1.536-0.352-0.6507-0.528-1.392-0.528-2.224 0-0.7787 0.1706-1.49866 0.512-2.15999 0.3413-0.66133 0.816-1.18933 1.424-1.584 0.6186-0.40533 1.328-0.608 2.128-0.608 0.8426 0 1.5573 0.18133 2.144 0.544 0.5973 0.36267 1.0506 0.85867 1.36 1.488 0.3093 0.62933 0.464 1.33867 0.464 2.12799 0 0.1173-0.0054 0.224-0.016 0.32 0 0.096-0.0054 0.1707-0.016 0.224h-6.304c0.0426 0.448 0.1546 0.8373 0.336 1.168 0.2346 0.416 0.544 0.7307 0.928 0.944 0.384 0.2133 0.8 0.32 1.248 0.32 0.544 0 0.9973-0.1227 1.36-0.368 0.3733-0.256 0.6666-0.5707 0.88-0.944l1.424 0.688c-0.352 0.64-0.832 1.1627-1.44 1.568-0.608 0.3947-1.3654 0.592-2.272 0.592zm-2.368-5.26399h4.528c-0.0107-0.20267-0.064-0.416-0.16-0.64-0.096-0.23467-0.2347-0.448-0.416-0.64-0.1814-0.192-0.4107-0.34667-0.688-0.464-0.2774-0.128-0.6027-0.192-0.976-0.192-0.4694 0-0.8854 0.12267-1.248 0.368-0.3627 0.23467-0.6454 0.56533-0.848 0.992-0.0854 0.18133-0.1494 0.37333-0.192 0.576zm13.5895 5.00799l-2.608-8.15999h1.872l1.68 5.87199h0.064l1.84-5.87199h1.776l1.84 5.87199h0.064l1.68-5.87199h1.84l-2.624 8.15999h-1.808l-1.888-5.90399h-0.064l-1.872 5.90399h-1.792zm11.441 0V6.84061h1.728v8.15999h-1.728zm0.864-9.35999c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.33067 0.112-0.60267 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.3306 0 0.608 0.112 0.832 0.336 0.224 0.21333 0.336 0.48533 0.336 0.816 0 0.32-0.112 0.59733-0.336 0.832-0.224 0.224-0.5014 0.336-0.832 0.336zm2.5198 1.2h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1707 0.2133 0.4534 0.32 0.848 0.32 0.192 0 0.3627-0.0267 0.512-0.08 0.1494-0.064 0.2987-0.1387 0.448-0.224v1.68c-0.1813 0.0747-0.3733 0.1333-0.576 0.176-0.2026 0.0427-0.4426 0.064-0.72 0.064-0.7573 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84V8.34461h-1.424v-1.504zm7.0382 8.15999V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.5653-0.72 1.024-0.976 0.4693-0.26667 0.9866-0.4 1.552-0.4 0.6826 0 1.248 0.13867 1.696 0.416 0.4586 0.27733 0.8 0.66133 1.024 1.152 0.224 0.48 0.336 1.04533 0.336 1.696v5.15199h-1.712v-4.928c0-0.43732-0.0854-0.79466-0.256-1.07199-0.16-0.27733-0.3734-0.48533-0.64-0.624-0.2667-0.13867-0.5654-0.208-0.896-0.208-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.5707 0.544-0.752 0.928-0.1814 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M120.356 3.42339v4.73836h2.922c0.696 0 1.272-0.23394 1.727-0.70182 0.468-0.4668 0.702-1.02349 0.702-1.6679 0-0.63142-0.234-1.18162-0.702-1.64949-0.455-0.4798-1.031-0.72024-1.727-0.72024h-2.922v0.00109zm0 6.40627v5.49654h-1.745V1.75549h4.629c1.177 0 2.175 0.39207 2.998 1.17512 0.835 0.78304 1.253 1.73721 1.253 2.86142 0 1.15021-0.418 2.11088-1.253 2.88093-0.81 0.77113-1.809 1.15562-2.998 1.15562h-2.884v0.00108zM129.255 12.4831c0 0.4548 0.193 0.8339 0.579 1.1372 0.386 0.3032 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.864-1.1816 0.864-1.9138-0.545-0.4299-1.304-0.6444-2.277-0.6444-0.709 0-1.3 0.1711-1.774 0.5123-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74744c1.29 0 2.308 0.34441 3.056 1.03323 0.745 0.68882 1.118 1.63324 1.118 2.83327v5.72394h-1.669v-1.2888h-0.076c-0.721 1.0612-1.683 1.5921-2.884 1.5921-1.025 0-1.882-0.3033-2.571-0.9098-0.69-0.6065-1.034-1.3647-1.034-2.2744 0-0.9607 0.363-1.7244 1.09-2.2929 0.728-0.56855 1.698-0.8534 2.913-0.8534 1.036 0 1.89 0.18954 2.561 0.56861V9.46894c0-0.60651-0.241-1.12096-0.721-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M145.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M113.303 8.64473c0-0.5491-0.047-1.07872-0.135-1.58559h-7.362v3.00336h4.217c-0.181 0.9789-0.729 1.8119-1.559 2.3697v1.9506h2.516c1.474-1.3582 2.323-3.3651 2.323-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M105.806 16.2651c2.107 0 3.881-0.691 5.174-1.8823l-2.516-1.9506c-0.701 0.4711-1.603 0.7462-2.658 0.7462-2.036 0-3.764-1.3711-4.382-3.21881h-2.5924v2.00911c1.2844 2.5473 3.9254 4.2964 6.9744 4.2964" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M101.424 9.9596c-0.158-0.47113-0.245-0.97367-0.245-1.49245s0.087-1.02132 0.245-1.49245V4.96564h-2.5924C98.3003 6.01837 98 7.20756 98 8.46715c0 1.25959 0.3003 2.44885 0.8316 3.50155l2.5924-2.0091z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M105.806 3.75583c1.151 0 2.182 0.39532 2.995 1.1697v0.00108l2.228-2.22567c-1.353-1.25851-3.117-2.031812-5.223-2.031812-3.049 0-5.69 1.749132-6.9744 4.296472l2.5924 2.00907c0.618-1.84769 2.346-3.21884 4.382-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
2
|
-
android:width="41dp"
|
|
3
|
-
android:height="17dp"
|
|
4
|
-
android:viewportWidth="41.0"
|
|
5
|
-
android:viewportHeight="17.0">
|
|
6
|
-
<path
|
|
7
|
-
android:pathData="M19.526,2.635L19.526,6.718L22.044,6.718C22.644,6.718 23.14,6.516 23.532,6.113C23.935,5.711 24.137,5.231 24.137,4.676C24.137,4.132 23.935,3.658 23.532,3.254C23.14,2.841 22.644,2.634 22.044,2.634L19.526,2.634L19.526,2.635ZM19.526,8.155L19.526,12.891L18.022,12.891L18.022,1.198L22.011,1.198C23.025,1.198 23.885,1.535 24.594,2.21C25.314,2.885 25.674,3.707 25.674,4.676C25.674,5.667 25.314,6.495 24.594,7.158C23.897,7.823 23.035,8.154 22.011,8.154L19.526,8.154L19.526,8.155Z"
|
|
8
|
-
android:strokeColor="#00000000"
|
|
9
|
-
android:fillType="evenOdd"
|
|
10
|
-
android:fillColor="#FFFFFF"
|
|
11
|
-
android:strokeWidth="1"/>
|
|
12
|
-
<path
|
|
13
|
-
android:pathData="M27.194,10.442C27.194,10.834 27.36,11.16 27.693,11.422C28.025,11.683 28.415,11.813 28.861,11.813C29.494,11.813 30.057,11.579 30.553,11.112C31.05,10.643 31.297,10.093 31.297,9.463C30.828,9.092 30.174,8.907 29.335,8.907C28.724,8.907 28.215,9.055 27.807,9.349C27.398,9.643 27.194,10.006 27.194,10.442M29.14,4.627C30.252,4.627 31.129,4.924 31.773,5.518C32.415,6.111 32.737,6.925 32.737,7.959L32.737,12.891L31.298,12.891L31.298,11.781L31.233,11.781C30.611,12.695 29.783,13.153 28.747,13.153C27.865,13.153 27.126,12.891 26.532,12.369C25.938,11.846 25.641,11.193 25.641,10.409C25.641,9.581 25.954,8.923 26.581,8.433C27.208,7.943 28.044,7.698 29.09,7.698C29.983,7.698 30.72,7.861 31.297,8.188L31.297,7.844C31.297,7.322 31.09,6.878 30.676,6.513C30.261,6.149 29.777,5.967 29.221,5.967C28.381,5.967 27.717,6.32 27.226,7.029L25.902,6.195C26.632,5.15 27.711,4.627 29.14,4.627"
|
|
14
|
-
android:strokeColor="#00000000"
|
|
15
|
-
android:fillType="evenOdd"
|
|
16
|
-
android:fillColor="#FFFFFF"
|
|
17
|
-
android:strokeWidth="1"/>
|
|
18
|
-
<path
|
|
19
|
-
android:pathData="M40.993,4.889l-5.02,11.531l-1.553,0l1.864,-4.035l-3.303,-7.496l1.635,0l2.387,5.749l0.033,0l2.322,-5.749z"
|
|
20
|
-
android:strokeColor="#00000000"
|
|
21
|
-
android:fillType="evenOdd"
|
|
22
|
-
android:fillColor="#FFFFFF"
|
|
23
|
-
android:strokeWidth="1"/>
|
|
24
|
-
<path
|
|
25
|
-
android:pathData="M13.448,7.134C13.448,6.661 13.408,6.205 13.332,5.768L6.988,5.768L6.988,8.356L10.622,8.356C10.466,9.199 9.994,9.917 9.278,10.398L9.278,12.079L11.447,12.079C12.716,10.908 13.448,9.179 13.448,7.134"
|
|
26
|
-
android:strokeColor="#00000000"
|
|
27
|
-
android:fillType="evenOdd"
|
|
28
|
-
android:fillColor="#4285F4"
|
|
29
|
-
android:strokeWidth="1"/>
|
|
30
|
-
<path
|
|
31
|
-
android:pathData="M6.988,13.701C8.804,13.701 10.332,13.105 11.447,12.079L9.278,10.398C8.675,10.804 7.897,11.041 6.988,11.041C5.234,11.041 3.744,9.859 3.212,8.267L0.978,8.267L0.978,9.998C2.085,12.193 4.36,13.701 6.988,13.701"
|
|
32
|
-
android:strokeColor="#00000000"
|
|
33
|
-
android:fillType="evenOdd"
|
|
34
|
-
android:fillColor="#34A853"
|
|
35
|
-
android:strokeWidth="1"/>
|
|
36
|
-
<path
|
|
37
|
-
android:pathData="M3.212,8.267C3.076,7.861 3.001,7.428 3.001,6.981C3.001,6.534 3.076,6.101 3.212,5.695L3.212,3.964L0.978,3.964C0.52,4.871 0.261,5.896 0.261,6.981C0.261,8.066 0.52,9.091 0.978,9.998L3.212,8.267Z"
|
|
38
|
-
android:strokeColor="#00000000"
|
|
39
|
-
android:fillType="evenOdd"
|
|
40
|
-
android:fillColor="#FABB05"
|
|
41
|
-
android:strokeWidth="1"/>
|
|
42
|
-
<path
|
|
43
|
-
android:pathData="M6.988,2.921C7.98,2.921 8.868,3.262 9.569,3.929L9.569,3.93L11.489,2.012C10.323,0.928 8.803,0.261 6.988,0.261C4.36,0.261 2.085,1.769 0.978,3.964L3.212,5.695C3.744,4.103 5.234,2.921 6.988,2.921"
|
|
44
|
-
android:strokeColor="#00000000"
|
|
45
|
-
android:fillType="evenOdd"
|
|
46
|
-
android:fillColor="#E94235"
|
|
47
|
-
android:strokeWidth="1"/>
|
|
48
|
-
</vector>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
3
|
-
<item>
|
|
4
|
-
<shape>
|
|
5
|
-
<size android:width="1094dp" android:height="742dp"/>
|
|
6
|
-
<solid android:color="#FFFFFF"/>
|
|
7
|
-
<stroke android:color="#3C4043" android:width="2dp"/>
|
|
8
|
-
<corners android:radius="1094dp"/>
|
|
9
|
-
</shape>
|
|
10
|
-
</item>
|
|
11
|
-
</layer-list>
|
|
12
|
-
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
2
|
-
android:width="1094dp"
|
|
3
|
-
android:height="742dp"
|
|
4
|
-
android:viewportWidth="1094"
|
|
5
|
-
android:viewportHeight="742">
|
|
6
|
-
<path
|
|
7
|
-
android:pathData="M529.3,384.2v60.5h-19.2V295.3H561c12.9,0 23.9,4.3 32.9,12.9c9.2,8.6 13.8,19.1 13.8,31.5c0,12.7 -4.6,23.2 -13.8,31.7c-8.9,8.5 -19.9,12.7 -32.9,12.7h-31.7V384.2zM529.3,313.7v52.1h32.1c7.6,0 14,-2.6 19,-7.7c5.1,-5.1 7.7,-11.3 7.7,-18.3c0,-6.9 -2.6,-13 -7.7,-18.1c-5,-5.3 -11.3,-7.9 -19,-7.9h-32.1V313.7z"
|
|
8
|
-
android:fillColor="#3C4043"/>
|
|
9
|
-
<path
|
|
10
|
-
android:pathData="M657.9,339.1c14.2,0 25.4,3.8 33.6,11.4c8.2,7.6 12.3,18 12.3,31.2v63h-18.3v-14.2h-0.8c-7.9,11.7 -18.5,17.5 -31.7,17.5c-11.3,0 -20.7,-3.3 -28.3,-10s-11.4,-15 -11.4,-25c0,-10.6 4,-19 12,-25.2c8,-6.3 18.7,-9.4 32,-9.4c11.4,0 20.8,2.1 28.1,6.3v-4.4c0,-6.7 -2.6,-12.3 -7.9,-17c-5.3,-4.7 -11.5,-7 -18.6,-7c-10.7,0 -19.2,4.5 -25.4,13.6l-16.9,-10.6C625.9,345.8 639.7,339.1 657.9,339.1zM633.1,413.3c0,5 2.1,9.2 6.4,12.5c4.2,3.3 9.2,5 14.9,5c8.1,0 15.3,-3 21.6,-9s9.5,-13 9.5,-21.1c-6,-4.7 -14.3,-7.1 -25,-7.1c-7.8,0 -14.3,1.9 -19.5,5.6C635.7,403.1 633.1,407.8 633.1,413.3z"
|
|
11
|
-
android:fillColor="#3C4043"/>
|
|
12
|
-
<path
|
|
13
|
-
android:pathData="M808.2,342.4l-64,147.2h-19.8l23.8,-51.5L706,342.4h20.9l30.4,73.4h0.4l29.6,-73.4H808.2z"
|
|
14
|
-
android:fillColor="#3C4043"/>
|
|
15
|
-
<path
|
|
16
|
-
android:pathData="M452.9,372c0,-6.3 -0.6,-12.3 -1.6,-18h-80.5v33L417.2,387c-1.9,11 -7.9,20.3 -17.2,26.6v21.4h27.6C443.7,420.1 452.9,398 452.9,372z"
|
|
17
|
-
android:fillColor="#4285F4"/>
|
|
18
|
-
<path
|
|
19
|
-
android:pathData="M400,413.6c-7.7,5.2 -17.6,8.2 -29.1,8.2c-22.4,0 -41.3,-15.1 -48.1,-35.4h-28.5v22.1c14.1,28 43.1,47.2 76.6,47.2c23.1,0 42.6,-7.6 56.7,-20.7L400,413.6z"
|
|
20
|
-
android:fillColor="#34A853"/>
|
|
21
|
-
<path
|
|
22
|
-
android:pathData="M320.1,370c0,-5.7 0.9,-11.2 2.7,-16.4v-22.1h-28.5c-5.8,11.6 -9.1,24.6 -9.1,38.5s3.3,26.9 9.1,38.5l28.5,-22.1C321,381.3 320.1,375.8 320.1,370z"
|
|
23
|
-
android:fillColor="#FABB05"/>
|
|
24
|
-
<path
|
|
25
|
-
android:pathData="M370.9,318.3c12.6,0 23.9,4.3 32.9,12.9l24.5,-24.4c-14.9,-13.8 -34.2,-22.3 -57.3,-22.3c-33.5,0 -62.5,19.2 -76.6,47.2l28.5,22.1C329.6,333.4 348.5,318.3 370.9,318.3z"
|
|
26
|
-
android:fillColor="#E94235"/>
|
|
27
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="137dp" android:height="21dp" android:viewportWidth="137" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M7.46225 15.2566c-0.85333 0-1.64266-0.1547-2.368-0.464-0.71467-0.3093-1.33867-0.736-1.872-1.28-0.53333-0.5547-0.94933-1.1893-1.248-1.904-0.29867-0.7253-0.448-1.504-0.448-2.33599 0-0.832 0.14933-1.60533 0.448-2.32 0.29867-0.72533 0.71467-1.36 1.248-1.904 0.53333-0.55467 1.15733-0.98667 1.872-1.296 0.72534-0.30933 1.51467-0.464 2.368-0.464 0.85334 0 1.63734 0.15467 2.352 0.464 0.71465 0.30933 1.33865 0.74133 1.87205 1.296 0.544 0.544 0.96 1.17867 1.248 1.904 0.2986 0.71467 0.448 1.488 0.448 2.32 0 0.83199-0.1494 1.61069-0.448 2.33599-0.288 0.7147-0.704 1.3493-1.248 1.904-0.5334 0.544-1.1574 0.9707-1.87205 1.28-0.71466 0.3093-1.49866 0.464-2.352 0.464zm0-1.664c0.77867 0 1.47734-0.1813 2.096-0.544 0.62935-0.3627 1.13065-0.8693 1.50405-1.52 0.3733-0.6507 0.56-1.4027 0.56-2.25599 0-0.864-0.1867-1.616-0.56-2.256-0.3734-0.65067-0.8747-1.15733-1.50405-1.52-0.61866-0.36267-1.31733-0.544-2.096-0.544-0.768 0-1.46666 0.18133-2.096 0.544-0.62933 0.36267-1.13066 0.86933-1.504 1.52-0.37333 0.64-0.56 1.392-0.56 2.256 0 0.85329 0.18667 1.60529 0.56 2.25599 0.37334 0.6507 0.87467 1.1573 1.504 1.52 0.62934 0.3627 1.328 0.544 2.096 0.544zm7.81455 1.408V6.84061h1.632v1.2h0.096c0.128-0.27733 0.3093-0.52267 0.544-0.736 0.2453-0.21333 0.5226-0.384 0.832-0.512 0.32-0.128 0.6506-0.192 0.992-0.192 0.224 0 0.4106 0.016 0.56 0.048 0.16 0.02133 0.304 0.05867 0.432 0.112v1.792c-0.2027-0.08533-0.4107-0.15467-0.624-0.208-0.2027-0.05333-0.416-0.08-0.64-0.08-0.4054 0-0.768 0.112-1.088 0.336-0.3094 0.21333-0.5547 0.50133-0.736 0.864-0.1814 0.36267-0.272 0.76799-0.272 1.21599v4.32h-1.728zm9.5755 0.256c-0.736 0-1.4027-0.1867-2-0.56-0.5974-0.3733-1.0667-0.8853-1.408-1.536-0.3414-0.6507-0.512-1.3973-0.512-2.24 0-0.8427 0.1706-1.58932 0.512-2.23999 0.3413-0.65067 0.8106-1.16267 1.408-1.536 0.5973-0.37333 1.264-0.56 2-0.56 0.4266 0 0.8106 0.064 1.152 0.192 0.3413 0.128 0.6346 0.29867 0.88 0.512 0.256 0.20267 0.4533 0.42133 0.592 0.656h0.096l-0.096-1.136v-3.264h1.712V15.0006h-1.616v-1.088h-0.096c-0.1387 0.224-0.336 0.4427-0.592 0.656-0.2454 0.2027-0.5387 0.368-0.88 0.496-0.3414 0.128-0.7254 0.192-1.152 0.192zm0.256-1.584c0.4266 0 0.8266-0.112 1.2-0.336 0.384-0.224 0.688-0.5387 0.912-0.944 0.2346-0.416 0.352-0.9067 0.352-1.472s-0.1174-1.05066-0.352-1.45599c-0.224-0.416-0.528-0.736-0.912-0.96-0.3734-0.224-0.7734-0.336-1.2-0.336-0.4267 0-0.8267 0.112-1.2 0.336-0.3734 0.224-0.6774 0.544-0.912 0.96-0.2347 0.40533-0.352 0.89069-0.352 1.45599 0 0.5547 0.1173 1.04 0.352 1.456 0.2346 0.416 0.5386 0.736 0.912 0.96 0.3733 0.224 0.7733 0.336 1.2 0.336zm9.9152 1.584c-0.8 0-1.5147-0.1867-2.144-0.56-0.6293-0.3733-1.1253-0.8853-1.488-1.536-0.352-0.6507-0.528-1.392-0.528-2.224 0-0.7787 0.1707-1.49866 0.512-2.15999 0.3413-0.66133 0.816-1.18933 1.424-1.584 0.6187-0.40533 1.328-0.608 2.128-0.608 0.8427 0 1.5573 0.18133 2.144 0.544 0.5973 0.36267 1.0507 0.85867 1.36 1.488 0.3093 0.62933 0.464 1.33867 0.464 2.12799 0 0.1173-0.0053 0.224-0.016 0.32 0 0.096-0.0053 0.1707-0.016 0.224h-6.304c0.0427 0.448 0.1547 0.8373 0.336 1.168 0.2347 0.416 0.544 0.7307 0.928 0.944 0.384 0.2133 0.8 0.32 1.248 0.32 0.544 0 0.9973-0.1227 1.36-0.368 0.3733-0.256 0.6667-0.5707 0.88-0.944l1.424 0.688c-0.352 0.64-0.832 1.1627-1.44 1.568-0.608 0.3947-1.3653 0.592-2.272 0.592zm-2.368-5.26399h4.528c-0.0107-0.20267-0.064-0.416-0.16-0.64-0.096-0.23467-0.2347-0.448-0.416-0.64s-0.4107-0.34667-0.688-0.464c-0.2773-0.128-0.6027-0.192-0.976-0.192-0.4693 0-0.8853 0.12267-1.248 0.368-0.3627 0.23467-0.6453 0.56533-0.848 0.992-0.0853 0.18133-0.1493 0.37333-0.192 0.576zm7.9931 5.00799V6.84061h1.632v1.2h0.096c0.128-0.27733 0.3094-0.52267 0.544-0.736 0.2454-0.21333 0.5227-0.384 0.832-0.512 0.32-0.128 0.6507-0.192 0.992-0.192 0.224 0 0.4107 0.016 0.56 0.048 0.16 0.02133 0.304 0.05867 0.432 0.112v1.792c-0.2026-0.08533-0.4106-0.15467-0.624-0.208-0.2026-0.05333-0.416-0.08-0.64-0.08-0.4053 0-0.768 0.112-1.088 0.336-0.3093 0.21333-0.5546 0.50133-0.736 0.864-0.1813 0.36267-0.272 0.76799-0.272 1.21599v4.32h-1.728zm12.1683 0l-2.608-8.15999h1.872l1.68 5.87199h0.064l1.84-5.87199h1.776l1.84 5.87199h0.064l1.68-5.87199h1.84l-2.624 8.15999h-1.808l-1.888-5.90399h-0.064l-1.872 5.90399h-1.792zm11.441 0V6.84061h1.728v8.15999h-1.728zm0.864-9.35999c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.33067 0.112-0.60267 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.3306 0 0.608 0.112 0.832 0.336 0.224 0.21333 0.336 0.48533 0.336 0.816 0 0.32-0.112 0.59733-0.336 0.832-0.224 0.224-0.5014 0.336-0.832 0.336zm2.5198 1.2h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1707 0.2133 0.4534 0.32 0.848 0.32 0.192 0 0.3627-0.0267 0.512-0.08 0.1494-0.064 0.2987-0.1387 0.448-0.224v1.68c-0.1813 0.0747-0.3733 0.1333-0.576 0.176-0.2026 0.0427-0.4426 0.064-0.72 0.064-0.7573 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84V8.34461h-1.424v-1.504zm7.0382 8.15999V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.5653-0.72 1.024-0.976 0.4693-0.26667 0.9866-0.4 1.552-0.4 0.6826 0 1.248 0.13867 1.696 0.416 0.4586 0.27733 0.8 0.66133 1.024 1.152 0.224 0.48 0.336 1.04533 0.336 1.696v5.15199h-1.712v-4.928c0-0.43732-0.0854-0.79466-0.256-1.07199-0.16-0.27733-0.3734-0.48533-0.64-0.624-0.2667-0.13867-0.5654-0.208-0.896-0.208-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.5707 0.544-0.752 0.928-0.1814 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M111.356 3.42339v4.73836h2.922c0.696 0 1.272-0.23394 1.727-0.70182 0.468-0.4668 0.702-1.02349 0.702-1.6679 0-0.63142-0.234-1.18162-0.702-1.64949-0.455-0.4798-1.031-0.72024-1.727-0.72024h-2.922v0.00109zm0 6.40627v5.49654h-1.745V1.75549h4.629c1.177 0 2.175 0.39207 2.998 1.17512 0.835 0.78304 1.253 1.73721 1.253 2.86142 0 1.15021-0.418 2.11088-1.253 2.88093-0.81 0.77113-1.809 1.15562-2.998 1.15562h-2.884v0.00108zM120.255 12.4831c0 0.4548 0.193 0.8339 0.579 1.1372 0.386 0.3032 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.864-1.1816 0.864-1.9138-0.545-0.4299-1.304-0.6444-2.277-0.6444-0.709 0-1.3 0.1711-1.774 0.5123-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74744c1.29 0 2.308 0.34441 3.056 1.03323 0.745 0.68882 1.118 1.63324 1.118 2.83327v5.72394h-1.669v-1.2888h-0.076c-0.721 1.0612-1.683 1.5921-2.884 1.5921-1.025 0-1.882-0.3033-2.571-0.9098-0.69-0.6065-1.034-1.3647-1.034-2.2744 0-0.9607 0.363-1.7244 1.09-2.2929 0.728-0.56855 1.698-0.8534 2.913-0.8534 1.036 0 1.89 0.18954 2.561 0.56861V9.46894c0-0.60651-0.241-1.12096-0.721-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M136.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M104.303 8.64473c0-0.5491-0.047-1.07872-0.135-1.58559h-7.3615v3.00336h4.2165c-0.181 0.9789-0.729 1.8119-1.5591 2.3697v1.9506h2.5161c1.474-1.3582 2.323-3.3651 2.323-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M96.8065 16.2651c2.1066 0 3.8805-0.691 5.1735-1.8823l-2.5161-1.9506c-0.7004 0.4711-1.6025 0.7462-2.6574 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21881h-2.5924v2.00911c1.2848 2.5473 3.9249 4.2964 6.9749 4.2964" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M92.424 9.9596c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96564h-2.5924C89.3003 6.01837 89 7.20756 89 8.46715c0 1.25959 0.3003 2.44885 0.8316 3.50155l2.5924-2.0091z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M96.8065 3.75583c1.1503 0 2.1814 0.39532 2.9946 1.1697v0.00108l2.2279-2.22567c-1.353-1.25851-3.117-2.031812-5.2225-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="118dp" android:height="21dp" android:viewportWidth="118" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M1.51163 15.0006V3.54461h3.936c0.69333 0 1.32266 0.14933 1.888 0.448 0.56533 0.288 1.01333 0.69867 1.344 1.232 0.34133 0.52267 0.512 1.13067 0.512 1.824 0 0.68267-0.17067 1.29067-0.512 1.824-0.33067 0.53333-0.77867 0.94933-1.344 1.24799-0.56534 0.288-1.19467 0.432-1.888 0.432h-2.176v4.448h-1.76zm1.76-6.11199h2.224c0.416 0 0.768-0.08533 1.056-0.256 0.288-0.18133 0.50666-0.41067 0.656-0.688 0.16-0.288 0.24-0.58667 0.24-0.896s-0.08-0.60267-0.24-0.88c-0.14934-0.27733-0.368-0.50667-0.656-0.688-0.288-0.18133-0.64-0.272-1.056-0.272h-2.224v3.68zm9.83387 6.36799c-0.5867 0-1.1093-0.1173-1.568-0.352-0.448-0.2347-0.8053-0.5547-1.072-0.96-0.256-0.416-0.384-0.8907-0.384-1.424 0-0.5867 0.1493-1.0827 0.448-1.488 0.3093-0.4053 0.72-0.7147 1.232-0.928 0.512-0.21332 1.0773-0.31999 1.696-0.31999 0.3413 0 0.656 0.02667 0.944 0.08 0.2987 0.04267 0.5547 0.096 0.768 0.15999 0.224 0.064 0.4 0.1333 0.528 0.208V9.80061c0-0.53333-0.192-0.96-0.576-1.28-0.384-0.32-0.88-0.48-1.488-0.48-0.416 0-0.8107 0.096-1.184 0.288-0.3733 0.18133-0.672 0.432-0.896 0.752l-1.184-0.912c0.2347-0.33067 0.5173-0.61333 0.848-0.848 0.3413-0.23467 0.72-0.416 1.136-0.544 0.4267-0.128 0.8693-0.192 1.328-0.192 1.184 0 2.096 0.29333 2.736 0.88 0.64 0.576 0.96 1.38667 0.96 2.432v5.10399h-1.68v-1.008h-0.096c-0.1387 0.2133-0.3307 0.416-0.576 0.608-0.2347 0.192-0.5173 0.3467-0.848 0.464-0.32 0.128-0.6773 0.192-1.072 0.192zm0.304-1.408c0.448 0 0.8427-0.1067 1.184-0.32 0.352-0.2133 0.624-0.4907 0.816-0.832 0.192-0.352 0.288-0.7307 0.288-1.136-0.2347-0.1387-0.5227-0.2507-0.864-0.336-0.3307-0.096-0.6827-0.144-1.056-0.144-0.704 0-1.2053 0.1387-1.504 0.416-0.2987 0.2773-0.448 0.624-0.448 1.04 0 0.384 0.144 0.6987 0.432 0.944 0.288 0.2453 0.672 0.368 1.152 0.368zm8.6481 4.208c-0.032 0.0747-0.0693 0.1493-0.112 0.224-0.032 0.0853-0.0533 0.144-0.064 0.176h-1.84c0.0534-0.1173 0.128-0.2827 0.224-0.496 0.1067-0.2133 0.208-0.4267 0.304-0.64 0.064-0.1387 0.128-0.288 0.192-0.448 0.0747-0.16 0.1494-0.3253 0.224-0.496 0.0854-0.1707 0.1654-0.336 0.24-0.496l0.608-1.328-3.408-7.71199h1.92l2.336 5.56799h0.08l2.256-5.56799h1.904l-4.224 9.72799c-0.0746 0.1813-0.16 0.3733-0.256 0.576-0.0853 0.2027-0.1653 0.384-0.24 0.544-0.064 0.1707-0.112 0.2933-0.144 0.368zm11.7593-3.056l-2.608-8.15999h1.872l1.68 5.87199h0.064l1.84-5.87199h1.776l1.84 5.87199h0.064l1.68-5.87199h1.84l-2.624 8.15999h-1.808l-1.888-5.90399h-0.064l-1.872 5.90399h-1.792zm11.441 0V6.84061h1.728v8.15999h-1.728zm0.864-9.35999c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.33067 0.112-0.60267 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.3306 0 0.608 0.112 0.832 0.336 0.224 0.21333 0.336 0.48533 0.336 0.816 0 0.32-0.112 0.59733-0.336 0.832-0.224 0.224-0.5014 0.336-0.832 0.336zm2.5199 1.2h1.424v-2.304h1.728v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.1706 0.2133 0.4533 0.32 0.848 0.32 0.192 0 0.3626-0.0267 0.512-0.08 0.1493-0.064 0.2986-0.1387 0.448-0.224v1.68c-0.1814 0.0747-0.3734 0.1333-0.576 0.176-0.2027 0.0427-0.4427 0.064-0.72 0.064-0.7574 0-1.36-0.2187-1.808-0.656-0.448-0.448-0.672-1.0613-0.672-1.84V8.34461h-1.424v-1.504zm7.0381 8.15999V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.5653-0.72 1.024-0.976 0.4693-0.26667 0.9866-0.4 1.552-0.4 0.6826 0 1.248 0.13867 1.696 0.416 0.4586 0.27733 0.8 0.66133 1.024 1.152 0.224 0.48 0.336 1.04533 0.336 1.696v5.15199h-1.712v-4.928c0-0.43732-0.0854-0.79466-0.256-1.07199-0.16-0.27733-0.3734-0.48533-0.64-0.624-0.2667-0.13867-0.5654-0.208-0.896-0.208-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.5707 0.544-0.752 0.928-0.1814 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M92.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6297c1.1765 0 2.175 0.39207 2.9979 1.17512 0.8349 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4175 2.11088-1.2523 2.88093-0.81 0.77113-1.8096 1.15562-2.9979 1.15562h-2.8841v0.00108zM101.255 12.4831c0 0.4548 0.193 0.8339 0.579 1.1372 0.386 0.3032 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.864-1.1816 0.864-1.9138-0.545-0.4299-1.304-0.6444-2.277-0.6444-0.709 0-1.3 0.1711-1.774 0.5123-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74744c1.29 0 2.308 0.34441 3.056 1.03323 0.745 0.68882 1.118 1.63324 1.118 2.83327v5.72394h-1.669v-1.2888h-0.076c-0.721 1.0612-1.683 1.5921-2.884 1.5921-1.025 0-1.882-0.3033-2.571-0.9098-0.6895-0.6065-1.0343-1.3647-1.0343-2.2744 0-0.9607 0.3631-1.7244 1.0903-2.2929 0.728-0.56855 1.698-0.8534 2.913-0.8534 1.036 0 1.89 0.18954 2.561 0.56861V9.46894c0-0.60651-0.241-1.12096-0.721-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.5379-0.96716c0.8479-1.21302 2.0999-1.81953 3.7579-1.81953M117.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M85.3029 8.64473c0-0.5491-0.0467-1.07872-0.1345-1.58559h-7.3619v3.00336h4.2166c-0.1811 0.9789-0.7287 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M77.8065 16.2651c2.1066 0 3.8804-0.691 5.1739-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.6025 0.7462-2.6574 0.7462-2.0362 0-3.7645-1.3711-4.3825-3.21881h-2.5924v2.00911c1.2848 2.5473 3.9249 4.2964 6.9749 4.2964" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M73.424 9.9596c-0.1583-0.47113-0.245-0.97367-0.245-1.49245s0.0867-1.02132 0.245-1.49245V4.96564h-2.5924C70.3003 6.01837 70 7.20756 70 8.46715c0 1.25959 0.3003 2.44885 0.8316 3.50155l2.5924-2.0091z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M77.8065 3.75583c1.1503 0 2.1814 0.39532 2.9946 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.1172-2.031812-5.2227-2.031812-3.05 0-5.6901 1.749132-6.9749 4.296472l2.5924 2.00907c0.618-1.84769 2.3463-3.21884 4.3825-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="167dp" android:height="21dp" android:viewportWidth="167" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<path android:pathData="M5.20525 15.2566c-0.608 0-1.18933-0.1173-1.744-0.352-0.55466-0.2453-1.04533-0.6027-1.472-1.072-0.416-0.4693-0.72533-1.0507-0.928-1.744l1.664-0.672c0.17067 0.6187 0.46934 1.136 0.896 1.552 0.42667 0.416 0.96 0.624 1.6 0.624 0.36267 0 0.69867-0.064 1.008-0.192 0.32-0.128 0.576-0.3147 0.768-0.56 0.192-0.256 0.288-0.5653 0.288-0.928 0-0.3413-0.08-0.6293-0.24-0.864-0.16-0.2453-0.416-0.464-0.768-0.656-0.352-0.2027-0.8-0.39999-1.344-0.59199l-0.72-0.256c-0.30933-0.11733-0.624-0.26133-0.944-0.432-0.32-0.17067-0.61866-0.37867-0.896-0.624-0.26666-0.256-0.48-0.55467-0.64-0.896-0.16-0.34133-0.24-0.736-0.24-1.184 0-0.576 0.14934-1.09867 0.448-1.568 0.30934-0.46933 0.73067-0.84267 1.264-1.12 0.544-0.288 1.17334-0.432 1.888-0.432 0.736 0 1.34934 0.13333 1.84 0.4 0.50134 0.256 0.89067 0.56533 1.168 0.928 0.288 0.36267 0.48534 0.70933 0.592 1.04l-1.584 0.672c-0.064-0.224-0.18133-0.44267-0.352-0.656-0.16-0.21333-0.37866-0.38933-0.656-0.528-0.26666-0.14933-0.59733-0.224-0.992-0.224-0.34133 0-0.656 0.064-0.944 0.192-0.27733 0.128-0.50133 0.304-0.672 0.528-0.17066 0.21333-0.256 0.464-0.256 0.752 0 0.416 0.17067 0.75733 0.512 1.024 0.34134 0.256 0.83734 0.49067 1.488 0.704l0.736 0.256c0.37334 0.128 0.74134 0.28267 1.104 0.464 0.36267 0.17067 0.69334 0.39467 0.992 0.672 0.29867 0.26667 0.53334 0.59729 0.704 0.99199 0.18134 0.384 0.272 0.8427 0.272 1.376 0 0.5867-0.11733 1.0987-0.352 1.536-0.224 0.4267-0.528 0.7787-0.912 1.056-0.37333 0.2667-0.78933 0.464-1.248 0.592-0.448 0.128-0.89066 0.192-1.328 0.192zm8.46275 0c-1.0027 0-1.76-0.2987-2.272-0.896-0.5013-0.608-0.752-1.4293-0.752-2.464V6.84061h1.728v4.81599c0 0.6827 0.16 1.1893 0.48 1.52 0.3307 0.3307 0.7413 0.496 1.232 0.496 0.448 0 0.832-0.112 1.152-0.336 0.32-0.2347 0.5653-0.5387 0.736-0.912 0.1813-0.3733 0.272-0.7733 0.272-1.2V6.84061h1.712v8.15999H16.34v-1.104h-0.096c-0.1493 0.256-0.3573 0.4853-0.624 0.688-0.2667 0.2027-0.5653 0.3627-0.896 0.48-0.3307 0.128-0.6827 0.192-1.056 0.192zm10.8233 0c-0.416 0-0.7947-0.064-1.136-0.192-0.3414-0.128-0.64-0.2933-0.896-0.496-0.2454-0.2133-0.4427-0.432-0.592-0.656h-0.096v1.088h-1.632V3.54461h1.728v3.264l-0.096 1.136h0.096c0.1493-0.23467 0.3466-0.45333 0.592-0.656 0.256-0.21333 0.5546-0.384 0.896-0.512 0.3413-0.128 0.72-0.192 1.136-0.192 0.7466 0 1.4133 0.18667 2 0.56 0.5866 0.37333 1.0506 0.88533 1.392 1.536 0.352 0.65067 0.528 1.39729 0.528 2.23999 0 0.8427-0.176 1.5893-0.528 2.24-0.3414 0.6507-0.8054 1.1627-1.392 1.536-0.5867 0.3733-1.2534 0.56-2 0.56zm-0.256-1.584c0.4266 0 0.8266-0.112 1.2-0.336 0.384-0.224 0.688-0.544 0.912-0.96 0.2346-0.416 0.352-0.9013 0.352-1.456 0-0.5653-0.1174-1.05066-0.352-1.45599-0.224-0.416-0.528-0.736-0.912-0.96-0.3734-0.224-0.7734-0.336-1.2-0.336-0.4267 0-0.8267 0.112-1.2 0.336-0.3734 0.224-0.6774 0.544-0.912 0.96-0.2347 0.40533-0.352 0.89069-0.352 1.45599 0 0.5653 0.1173 1.056 0.352 1.472 0.2346 0.4053 0.5386 0.72 0.912 0.944 0.3733 0.224 0.7733 0.336 1.2 0.336zm8.8112 1.584c-0.6507 0-1.216-0.096-1.696-0.288-0.48-0.2027-0.8747-0.4693-1.184-0.8-0.3093-0.3413-0.5387-0.7093-0.688-1.104l1.552-0.672c0.192 0.4373 0.464 0.7733 0.816 1.008 0.3627 0.224 0.7787 0.336 1.248 0.336 0.4267 0 0.7947-0.0747 1.104-0.224 0.3093-0.16 0.464-0.416 0.464-0.768 0-0.224-0.0747-0.4053-0.224-0.544-0.1387-0.1493-0.3307-0.272-0.576-0.368-0.2347-0.096-0.5067-0.1813-0.816-0.256l-0.976-0.224c-0.384-0.096-0.752-0.2453-1.104-0.448-0.3413-0.2133-0.6187-0.48-0.832-0.8-0.2133-0.31999-0.32-0.69866-0.32-1.13599 0-0.49067 0.1387-0.912 0.416-1.264 0.288-0.36267 0.672-0.64 1.152-0.832 0.48-0.192 0.9973-0.288 1.552-0.288 0.512 0 0.976 0.06933 1.392 0.208 0.4267 0.128 0.7947 0.32533 1.104 0.592 0.32 0.256 0.5707 0.576 0.752 0.96l-1.488 0.672c-0.1813-0.36267-0.4267-0.61333-0.736-0.752-0.3093-0.14933-0.6453-0.224-1.008-0.224-0.4053 0-0.7467 0.08533-1.024 0.256-0.2667 0.16-0.4 0.37333-0.4 0.64 0 0.27733 0.1173 0.496 0.352 0.656 0.2453 0.16 0.544 0.288 0.896 0.384l1.184 0.28799c0.8107 0.2027 1.4187 0.512 1.824 0.928 0.4053 0.4053 0.608 0.9013 0.608 1.488 0 0.5227-0.1493 0.9813-0.448 1.376-0.2987 0.384-0.704 0.6827-1.216 0.896-0.5013 0.2027-1.0613 0.304-1.68 0.304zm8.8563 0c-0.8214 0-1.552-0.1867-2.192-0.56-0.6294-0.3733-1.1254-0.8853-1.488-1.536-0.352-0.6613-0.528-1.408-0.528-2.24 0-0.832 0.176-1.57332 0.528-2.22399 0.3626-0.65067 0.8586-1.16267 1.488-1.536 0.64-0.384 1.3706-0.576 2.192-0.576 0.9066 0 1.6693 0.20267 2.288 0.608 0.6293 0.40533 1.0773 0.95467 1.344 1.648l-1.568 0.64c-0.192-0.43733-0.4694-0.76267-0.832-0.976-0.352-0.224-0.7734-0.336-1.264-0.336-0.448 0-0.8587 0.11733-1.232 0.352-0.3734 0.224-0.672 0.53867-0.896 0.944-0.224 0.40533-0.336 0.89069-0.336 1.45599 0 0.5547 0.112 1.04 0.336 1.456 0.224 0.416 0.5226 0.736 0.896 0.96 0.3733 0.224 0.784 0.336 1.232 0.336 0.5226 0 0.9653-0.1173 1.328-0.352 0.3626-0.2347 0.6453-0.5653 0.848-0.992l1.536 0.672c-0.2987 0.6507-0.7627 1.1893-1.392 1.616-0.6187 0.4267-1.3814 0.64-2.288 0.64zm5.2333-0.256V6.84061h1.632v1.2h0.096c0.128-0.27733 0.3094-0.52267 0.544-0.736 0.2454-0.21333 0.5227-0.384 0.832-0.512 0.32-0.128 0.6507-0.192 0.992-0.192 0.224 0 0.4107 0.016 0.56 0.048 0.16 0.02133 0.304 0.05867 0.432 0.112v1.792c-0.2026-0.08533-0.4106-0.15467-0.624-0.208-0.2026-0.05333-0.416-0.08-0.64-0.08-0.4053 0-0.768 0.112-1.088 0.336-0.3093 0.21333-0.5546 0.50133-0.736 0.864-0.1813 0.36267-0.272 0.76799-0.272 1.21599v4.32h-1.728zm6.6999 0V6.84061h1.728v8.15999h-1.728zM54.7 5.64061c-0.32 0-0.5973-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.33067 0.112-0.60267 0.336-0.816 0.2347-0.224 0.512-0.336 0.832-0.336 0.3307 0 0.608 0.112 0.832 0.336 0.224 0.21333 0.336 0.48533 0.336 0.816 0 0.32-0.112 0.59733-0.336 0.832-0.224 0.224-0.5013 0.336-0.832 0.336zm7.51 9.61599c-0.416 0-0.7947-0.064-1.136-0.192-0.3413-0.128-0.64-0.2933-0.896-0.496-0.2453-0.2133-0.4427-0.432-0.592-0.656H59.49v1.088h-1.632V3.54461h1.728v3.264l-0.096 1.136h0.096c0.1493-0.23467 0.3467-0.45333 0.592-0.656 0.256-0.21333 0.5547-0.384 0.896-0.512 0.3413-0.128 0.72-0.192 1.136-0.192 0.7467 0 1.4133 0.18667 2 0.56 0.5867 0.37333 1.0507 0.88533 1.392 1.536 0.352 0.65067 0.528 1.39729 0.528 2.23999 0 0.8427-0.176 1.5893-0.528 2.24-0.3413 0.6507-0.8053 1.1627-1.392 1.536-0.5867 0.3733-1.2533 0.56-2 0.56zm-0.256-1.584c0.4267 0 0.8267-0.112 1.2-0.336 0.384-0.224 0.688-0.544 0.912-0.96 0.2347-0.416 0.352-0.9013 0.352-1.456 0-0.5653-0.1173-1.05066-0.352-1.45599-0.224-0.416-0.528-0.736-0.912-0.96-0.3733-0.224-0.7733-0.336-1.2-0.336-0.4267 0-0.8267 0.112-1.2 0.336-0.3733 0.224-0.6773 0.544-0.912 0.96-0.2347 0.40533-0.352 0.89069-0.352 1.45599 0 0.5653 0.1173 1.056 0.352 1.472 0.2347 0.4053 0.5387 0.72 0.912 0.944 0.3733 0.224 0.7733 0.336 1.2 0.336zm9.6414 1.584c-0.8 0-1.5147-0.1867-2.144-0.56-0.6294-0.3733-1.1254-0.8853-1.488-1.536-0.352-0.6507-0.528-1.392-0.528-2.224 0-0.7787 0.1706-1.49866 0.512-2.15999 0.3413-0.66133 0.816-1.18933 1.424-1.584 0.6186-0.40533 1.328-0.608 2.128-0.608 0.8426 0 1.5573 0.18133 2.144 0.544 0.5973 0.36267 1.0506 0.85867 1.36 1.488 0.3093 0.62933 0.464 1.33867 0.464 2.12799 0 0.1173-0.0054 0.224-0.016 0.32 0 0.096-0.0054 0.1707-0.016 0.224h-6.304c0.0426 0.448 0.1546 0.8373 0.336 1.168 0.2346 0.416 0.544 0.7307 0.928 0.944 0.384 0.2133 0.8 0.32 1.248 0.32 0.544 0 0.9973-0.1227 1.36-0.368 0.3733-0.256 0.6666-0.5707 0.88-0.944l1.424 0.688c-0.352 0.64-0.832 1.1627-1.44 1.568-0.608 0.3947-1.3654 0.592-2.272 0.592zm-2.368-5.26399h4.528c-0.0107-0.20267-0.064-0.416-0.16-0.64-0.096-0.23467-0.2347-0.448-0.416-0.64-0.1814-0.192-0.4107-0.34667-0.688-0.464-0.2774-0.128-0.6027-0.192-0.976-0.192-0.4694 0-0.8854 0.12267-1.248 0.368-0.3627 0.23467-0.6454 0.56533-0.848 0.992-0.0854 0.18133-0.1494 0.37333-0.192 0.576zm13.5895 5.00799l-2.608-8.15999h1.872l1.68 5.87199h0.064l1.84-5.87199h1.776l1.84 5.87199h0.064l1.68-5.87199h1.84l-2.624 8.15999h-1.808l-1.888-5.90399h-0.064l-1.872 5.90399h-1.792zm11.441 0V6.84061h1.728v8.15999h-1.728zm0.864-9.35999c-0.32 0-0.5974-0.112-0.832-0.336-0.224-0.23467-0.336-0.512-0.336-0.832 0-0.33067 0.112-0.60267 0.336-0.816 0.2346-0.224 0.512-0.336 0.832-0.336 0.3306 0 0.608 0.112 0.832 0.336 0.224 0.21333 0.336 0.48533 0.336 0.816 0 0.32-0.112 0.59733-0.336 0.832-0.224 0.224-0.5014 0.336-0.832 0.336zm2.5199 1.2h1.424v-2.304h1.7282v2.304h2v1.504h-2v3.91999c0 0.4053 0.08 0.7147 0.24 0.928 0.17 0.2133 0.453 0.32 0.848 0.32 0.192 0 0.362-0.0267 0.512-0.08 0.149-0.064 0.298-0.1387 0.448-0.224v1.68c-0.182 0.0747-0.374 0.1333-0.576 0.176-0.203 0.0427-0.443 0.064-0.72 0.064-0.758 0-1.36-0.2187-1.8082-0.656-0.448-0.448-0.672-1.0613-0.672-1.84V8.34461h-1.424v-1.504zm7.0382 8.15999V3.54461h1.728v3.136l-0.096 1.28h0.096c0.224-0.39467 0.565-0.72 1.024-0.976 0.469-0.26667 0.987-0.4 1.552-0.4 0.683 0 1.248 0.13867 1.696 0.416 0.459 0.27733 0.8 0.66133 1.024 1.152 0.224 0.48 0.336 1.04533 0.336 1.696v5.15199h-1.712v-4.928c0-0.43732-0.085-0.79466-0.256-1.07199-0.16-0.27733-0.373-0.48533-0.64-0.624-0.267-0.13867-0.565-0.208-0.896-0.208-0.416 0-0.784 0.11733-1.104 0.352-0.32 0.23467-0.571 0.544-0.752 0.928-0.181 0.37333-0.272 0.77329-0.272 1.19999v4.352h-1.728z" android:fillColor="#ffffff"/>
|
|
3
|
-
<group>
|
|
4
|
-
<group>
|
|
5
|
-
<path android:pathData="M141.356 3.42339v4.73836h2.922c0.696 0 1.272-0.23394 1.727-0.70182 0.468-0.4668 0.702-1.02349 0.702-1.6679 0-0.63142-0.234-1.18162-0.702-1.64949-0.455-0.4798-1.031-0.72024-1.727-0.72024h-2.922v0.00109zm0 6.40627v5.49654h-1.745V1.75549h4.629c1.177 0 2.175 0.39207 2.998 1.17512 0.835 0.78304 1.253 1.73721 1.253 2.86142 0 1.15021-0.418 2.11088-1.253 2.88093-0.81 0.77113-1.809 1.15562-2.998 1.15562h-2.884v0.00108zM150.255 12.4831c0 0.4548 0.193 0.8339 0.579 1.1372 0.386 0.3032 0.838 0.4549 1.356 0.4549 0.734 0 1.388-0.272 1.963-0.8145 0.576-0.5437 0.864-1.1816 0.864-1.9138-0.545-0.4299-1.304-0.6444-2.277-0.6444-0.709 0-1.3 0.1711-1.774 0.5123-0.474 0.3411-0.711 0.7625-0.711 1.2683m2.258-6.74744c1.29 0 2.308 0.34441 3.056 1.03323 0.745 0.68882 1.118 1.63324 1.118 2.83327v5.72394h-1.669v-1.2888h-0.076c-0.721 1.0612-1.683 1.5921-2.884 1.5921-1.025 0-1.882-0.3033-2.571-0.9098-0.69-0.6065-1.034-1.3647-1.034-2.2744 0-0.9607 0.363-1.7244 1.09-2.2929 0.728-0.56855 1.698-0.8534 2.913-0.8534 1.036 0 1.89 0.18954 2.561 0.56861V9.46894c0-0.60651-0.241-1.12096-0.721-1.54443-0.482-0.42348-1.044-0.63467-1.689-0.63467-0.974 0-1.745 0.41048-2.314 1.23251l-1.538-0.96716c0.848-1.21302 2.1-1.81953 3.758-1.81953M166.269 6.03894l-5.826 13.38116h-1.802l2.163-4.6821-3.833-8.69906h1.898l2.77 6.67166h0.038l2.694-6.67166h1.898z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
6
|
-
</group>
|
|
7
|
-
<group>
|
|
8
|
-
<path android:pathData="M134.303 8.64473c0-0.5491-0.047-1.07872-0.135-1.58559h-7.362v3.00336h4.217c-0.181 0.9789-0.729 1.8119-1.559 2.3697v1.9506h2.516c1.474-1.3582 2.323-3.3651 2.323-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M126.806 16.2651c2.107 0 3.881-0.691 5.174-1.8823l-2.516-1.9506c-0.701 0.4711-1.603 0.7462-2.658 0.7462-2.036 0-3.764-1.3711-4.382-3.21881h-2.592v2.00911c1.284 2.5473 3.925 4.2964 6.974 4.2964" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M122.424 9.9596c-0.158-0.47113-0.245-0.97367-0.245-1.49245s0.087-1.02132 0.245-1.49245V4.96564h-2.592C119.3 6.01837 119 7.20756 119 8.46715c0 1.25959 0.3 2.44885 0.832 3.50155l2.592-2.0091z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
11
|
-
<path android:pathData="M126.806 3.75583c1.151 0 2.182 0.39532 2.995 1.1697v0.00108l2.228-2.22567c-1.353-1.25851-3.117-2.031812-5.223-2.031812-3.049 0-5.69 1.749132-6.974 4.296472l2.592 2.00907c0.618-1.84769 2.346-3.21884 4.382-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
12
|
-
</group>
|
|
13
|
-
</group>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="153dp" android:height="21dp" android:viewportWidth="153" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<group>
|
|
3
|
-
<group>
|
|
4
|
-
<path android:pathData="M22.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6297c1.1765 0 2.175 0.39207 2.9979 1.17512 0.8349 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4175 2.11088-1.2523 2.88093-0.81 0.77113-1.8096 1.15562-2.9979 1.15562h-2.8841v0.00108zM31.2546 12.4831c0 0.4548 0.193 0.8339 0.5791 1.1372 0.3858 0.3032 0.838 0.4549 1.3563 0.4549 0.7339 0 1.3877-0.272 1.9635-0.8145 0.5758-0.5437 0.863-1.1816 0.863-1.9138-0.5443-0.4299-1.3032-0.6444-2.2769-0.6444-0.709 0-1.2999 0.1711-1.7737 0.5123-0.4739 0.3411-0.7113 0.7625-0.7113 1.2683m2.2584-6.74744c1.2903 0 2.3084 0.34441 3.0555 1.03323 0.746 0.68882 1.1188 1.63324 1.1188 2.83327v5.72394h-1.6696v-1.2888h-0.076c-0.721 1.0612-1.6827 1.5921-2.8839 1.5921-1.0246 0-1.8823-0.3033-2.5709-0.9098-0.6894-0.6065-1.0342-1.3647-1.0342-2.2744 0-0.9607 0.3631-1.7244 1.0906-2.2929 0.7275-0.56855 1.698-0.8534 2.9124-0.8534 1.0364 0 1.8908 0.18954 2.5608 0.56861V9.46894c0-0.60651-0.2407-1.12096-0.7209-1.54443-0.4815-0.42348-1.0431-0.63467-1.6882-0.63467-0.9748 0-1.7456 0.41048-2.3148 1.23251l-1.5375-0.96716c0.8478-1.21302 2.1001-1.81953 3.7579-1.81953M47.2687 6.03894L41.4432 19.4201h-1.8021l2.1632-4.6821-3.8329-8.69906h1.8974l2.7702 6.67166h0.038l2.6943-6.67166h1.8974z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
5
|
-
</group>
|
|
6
|
-
<group>
|
|
7
|
-
<path android:pathData="M15.3029 8.64473c0-0.5491-0.0467-1.07872-0.1345-1.58559H7.80648v3.00336h4.21662c-0.1811 0.9789-0.7286 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
8
|
-
<path android:pathData="M7.80646 16.2651c2.10667 0 3.88044-0.691 5.17394-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.60248 0.7462-2.65744 0.7462-2.03618 0-3.76445-1.3711-4.38246-3.21881H0.831596v2.00911C2.11641 14.516 4.75652 16.2651 7.80646 16.2651" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M3.42401 9.9596c-0.1583-0.47113-0.24504-0.97367-0.24504-1.49245S3.26571 7.44583 3.42401 6.9747V4.96564H0.831606C0.300332 6.01837 0 7.20756 0 8.46715 0 9.72674 0.300332 10.916 0.831606 11.9687L3.42401 9.9596z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M7.80646 3.75583c1.15037 0 2.18148 0.39532 2.99464 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.11716-2.031812-5.22274-2.031812-3.04994 0-5.69005 1.749132-6.974864 4.296472L3.424 6.97467c0.61801-1.84769 2.34628-3.21884 4.38246-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
11
|
-
</group>
|
|
12
|
-
</group>
|
|
13
|
-
<path android:pathData="M55.7277 21.2886c-0.192-0.6933-0.352-1.3813-0.48-2.064-0.128-0.672-0.224-1.2907-0.288-1.856-0.064-0.5653-0.096-1.0293-0.096-1.392 0-0.6507 0.1174-1.1893 0.352-1.616 0.2347-0.4373 0.5494-0.7733 0.944-1.008 0.3947-0.2453 0.832-0.4107 1.312-0.496 0.4907-0.0853 0.992-0.112 1.504-0.08 0.5227 0.0213 1.0134 0.0853 1.472 0.192 0.032-0.48-0.016-0.9333-0.144-1.36-0.128-0.4267-0.3306-0.768-0.608-1.024-0.2773-0.2667-0.6186-0.4-1.024-0.4-0.7786 0-1.4506 0.5333-2.016 1.6l-0.992-0.544c0.4054-0.864 0.88-1.47199 1.424-1.82399 0.5547-0.352 1.1094-0.528 1.664-0.528 0.544 0 1.0027 0.11733 1.376 0.352 0.3734 0.224 0.6667 0.52267 0.88 0.89599 0.224 0.3627 0.384 0.7573 0.48 1.184 0.1067 0.416 0.16 0.816 0.16 1.2 0 0.3947-0.0693 0.7893-0.208 1.184-0.1386 0.384-0.2666 0.6613-0.384 0.832-0.9706-0.288-1.824-0.4373-2.56-0.448-0.7253-0.0213-1.296 0.128-1.712 0.448-0.4053 0.3093-0.608 0.816-0.608 1.52 0 0.4053 0.032 0.8747 0.096 1.408 0.064 0.544 0.1547 1.1147 0.272 1.712 0.1174 0.608 0.256 1.2053 0.416 1.792l-1.232 0.32zm8.188-6.288l-0.32-11.42399h1.296l0.32 11.42399h-1.296zm5.9305-1.232c0.7894 0 1.3494-0.1173 1.68-0.352 0.3307-0.2453 0.496-0.5813 0.496-1.008 0-0.2773-0.096-0.6347-0.288-1.072-0.192-0.4373-0.448-0.9227-0.768-1.45599-0.3093-0.544-0.656-1.09867-1.04-1.664l1.104-0.72c0.6187 0.94933 1.12 1.81867 1.504 2.60799 0.3947 0.7787 0.688 1.4827 0.88 2.112 0.1494 0.4693 0.3147 0.816 0.496 1.04 0.192 0.224 0.3894 0.368 0.592 0.432 0.2027 0.0533 0.3894 0.08 0.56 0.08 0.224 0 0.3894 0.064 0.496 0.192 0.1067 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0746 0.3307-0.224 0.48-0.1493 0.1387-0.3413 0.208-0.576 0.208-0.416 0-0.816-0.0907-1.2-0.272-0.384-0.1813-0.6933-0.4907-0.928-0.928-0.2133 0.352-0.5546 0.6453-1.024 0.88-0.4586 0.224-1.0986 0.336-1.92 0.336-0.5866 0-1.1306-0.0693-1.632-0.208-0.5013-0.1493-0.9173-0.352-1.248-0.608l0.64-1.104c0.2134 0.1493 0.512 0.288 0.896 0.416 0.384 0.1173 0.832 0.176 1.344 0.176zm5.2257 1.312l0.144-1.312c1.0986 0 2.1653-0.16 3.2-0.48 1.0346-0.3307 1.9786-0.7947 2.832-1.392-0.416-0.3627-0.928-0.656-1.536-0.88-0.5974-0.224-1.2587-0.336-1.984-0.336-0.2667 0-0.5014 0.016-0.704 0.048-0.2027 0.0213-0.448 0.064-0.736 0.128l-0.256-1.21599c0.5973-0.18133 1.1626-0.272 1.696-0.272 0.5546 0 1.056 0.06933 1.504 0.208 0.448 0.128 0.8533 0.288 1.216 0.47999 0.3733 0.192 0.72 0.384 1.04 0.576 0.3306 0.192 0.6506 0.3573 0.96 0.496 0.3093 0.128 0.6293 0.192 0.96 0.192h0.336l0.112 1.152c-0.3307 0-0.6507 0.0373-0.96 0.112 0.2026 0.48 0.4906 0.8 0.864 0.96 0.3733 0.1493 0.928 0.224 1.664 0.224 0.224 0 0.384 0.064 0.48 0.192 0.1066 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0747 0.3307-0.224 0.48-0.1494 0.1387-0.3414 0.208-0.576 0.208-0.576 0-1.0934-0.048-1.552-0.144-0.448-0.1067-0.832-0.3093-1.152-0.608-0.32-0.3093-0.5547-0.768-0.704-1.376-0.4054 0.192-0.8214 0.4107-1.248 0.656-0.416 0.2347-0.88 0.464-1.392 0.688-0.512 0.224-1.104 0.4107-1.776 0.56-0.672 0.1493-1.4614 0.224-2.368 0.224zm2.512-7.35999c-0.224 0-0.416-0.07467-0.576-0.224-0.1494-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0746-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2133 0 0.3946 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1494 0.14933-0.3307 0.224-0.544 0.224zm7.8255 7.35999l0.16-1.312c0.5333 0 0.9493-0.0373 1.248-0.112 0.2986-0.0853 0.5226-0.24 0.672-0.464 0.16-0.2347 0.288-0.5707 0.384-1.008 0.096-0.4373 0.2133-1.008 0.352-1.712l1.248 0.24c-0.064 0.288-0.1387 0.6187-0.224 0.992-0.0747 0.3733-0.112 0.688-0.112 0.944 0 0.16 0.0106 0.3093 0.032 0.448 0.0213 0.1387 0.1013 0.256 0.24 0.352 0.1386 0.096 0.3733 0.176 0.704 0.24 0.3306 0.0533 0.8053 0.08 1.424 0.08 0.224 0 0.384 0.064 0.48 0.192 0.1066 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0747 0.3307-0.224 0.48-0.1494 0.1387-0.3414 0.208-0.576 0.208-0.6934 0-1.2374-0.0373-1.632-0.112-0.384-0.0853-0.672-0.2027-0.864-0.352-0.1814-0.16-0.3147-0.3573-0.4-0.592-0.3094 0.4373-0.6934 0.7253-1.152 0.864-0.448 0.128-1.088 0.192-1.92 0.192zm4.272-6.25599c-0.224 0-0.416-0.07467-0.576-0.224-0.1494-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0746-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2133 0 0.3946 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1494 0.14933-0.3307 0.224-0.544 0.224zm-2.192 0c-0.224 0-0.416-0.07467-0.576-0.224-0.1494-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0746-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2133 0 0.3946 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1494 0.14933-0.3307 0.224-0.544 0.224zm4.0387 6.25599l0.16-1.312c0.3414 0 0.6187-0.0213 0.832-0.064 0.2134-0.0533 0.3894-0.176 0.528-0.368 0.1494-0.2027 0.288-0.5173 0.416-0.944 0.128-0.4267 0.2774-1.024 0.448-1.792l1.2 0.336c-0.064 0.2773-0.1386 0.6027-0.224 0.976-0.0853 0.3733-0.128 0.7093-0.128 1.008 0 0.2667 0.1014 0.4747 0.304 0.624 0.2027 0.1493 0.5707 0.224 1.104 0.224 0.32 0 0.5814-0.0267 0.784-0.08 0.2027-0.0533 0.368-0.1813 0.496-0.384 0.1387-0.2027 0.2614-0.5227 0.368-0.96 0.1067-0.448 0.2187-1.0667 0.336-1.856l1.216 0.224c-0.032 0.192-0.0746 0.4267-0.128 0.704-0.0426 0.2773-0.08 0.5547-0.112 0.832-0.032 0.2667-0.048 0.4907-0.048 0.672 0 0.1493 0.032 0.2933 0.096 0.432 0.0747 0.128 0.2134 0.2293 0.416 0.304 0.2134 0.0747 0.5279 0.112 0.9439 0.112 0.459 0 0.827-0.0907 1.104-0.272 0.277-0.1813 0.416-0.5493 0.416-1.104 0-0.3947-0.096-0.9013-0.288-1.52-0.181-0.6187-0.389-1.23199-0.624-1.83999l1.296-0.48c0.128 0.352 0.256 0.74667 0.384 1.184 0.128 0.42669 0.235 0.85329 0.32 1.27999 0.085 0.4267 0.128 0.8 0.128 1.12 0 0.992-0.245 1.7333-0.736 2.224-0.491 0.48-1.163 0.72-2.016 0.72-0.5865 0-1.0505-0.0747-1.3919-0.224-0.3306-0.16-0.5706-0.4053-0.72-0.736-0.256 0.3947-0.5653 0.656-0.928 0.784-0.352 0.1173-0.8533 0.176-1.504 0.176-0.224 0-0.464-0.0267-0.72-0.08-0.2453-0.0533-0.4746-0.1547-0.688-0.304-0.2133-0.16-0.3786-0.3947-0.496-0.704-0.2773 0.4693-0.624 0.768-1.04 0.896-0.4053 0.128-0.9066 0.192-1.504 0.192zm17.3529 0c-0.864 0-1.52-0.096-1.968-0.288-0.448-0.192-0.757-0.4907-0.928-0.896-0.171-0.4053-0.267-0.928-0.288-1.568l-0.32-8.75199h1.312l0.32 8.23999c0.021 0.5227 0.069 0.928 0.144 1.216 0.085 0.2773 0.267 0.4693 0.544 0.576 0.288 0.1067 0.736 0.16 1.344 0.16 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.075 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208zm0.15 0l0.16-1.312c0.512 0 0.923-0.032 1.232-0.096 0.32-0.064 0.55-0.192 0.688-0.384 0.139-0.2027 0.208-0.5013 0.208-0.896 0-0.3947-0.096-0.9013-0.288-1.52-0.181-0.6187-0.389-1.23199-0.624-1.83999l1.296-0.48c0.139 0.352 0.267 0.74667 0.384 1.184 0.128 0.42669 0.235 0.85329 0.32 1.27999 0.086 0.4267 0.128 0.8 0.128 1.12 0 1.0773-0.288 1.84-0.864 2.288-0.565 0.4373-1.445 0.656-2.64 0.656zm1.712 2.976c-0.224 0-0.416-0.08-0.576-0.24-0.149-0.1493-0.224-0.3307-0.224-0.544 0-0.2133 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.214 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.3467 0.24 0.56 0 0.2133-0.08 0.3947-0.24 0.544-0.149 0.16-0.33 0.24-0.544 0.24zm6.683 0.656l-0.464-1.216c1.035-0.3413 1.84-0.7467 2.416-1.216 0.587-0.4693 0.998-0.96 1.232-1.472 0.246-0.5227 0.368-1.0293 0.368-1.52 0-0.5227-0.117-1.0507-0.352-1.584-0.224-0.544-0.474-1.056-0.752-1.536l1.168-0.59199c0.299 0.56529 0.55 1.10929 0.752 1.63199 0.214 0.5227 0.379 0.9813 0.496 1.376 0.15 0.4587 0.342 0.7733 0.576 0.944 0.246 0.16 0.576 0.24 0.992 0.24 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.074 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208-0.405 0-0.746-0.064-1.024-0.192-0.266-0.128-0.485-0.2987-0.656-0.512-0.106 0.5973-0.33 1.1413-0.672 1.632-0.341 0.4907-0.741 0.9173-1.2 1.28-0.458 0.3733-0.928 0.6773-1.408 0.912-0.48 0.2347-0.917 0.4053-1.312 0.512zm2.544-10.97599c-0.224 0-0.416-0.07467-0.576-0.224-0.149-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.214 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.149 0.14933-0.33 0.224-0.544 0.224zm3.886 7.34399l0.144-1.312c1.099 0 2.166-0.16 3.2-0.48 1.035-0.3307 1.979-0.7947 2.832-1.392-0.416-0.3627-0.928-0.656-1.536-0.88-0.597-0.224-1.258-0.336-1.984-0.336-0.266 0-0.501 0.016-0.704 0.048-0.202 0.0213-0.448 0.064-0.736 0.128l-0.256-1.21599c0.598-0.18133 1.163-0.272 1.696-0.272 0.555 0 1.056 0.06933 1.504 0.208 0.448 0.128 0.854 0.288 1.216 0.47999 0.374 0.192 0.72 0.384 1.04 0.576 0.331 0.192 0.651 0.3573 0.96 0.496 0.31 0.128 0.63 0.192 0.96 0.192h0.336l0.112 1.152c-0.33 0-0.65 0.0373-0.96 0.112 0.203 0.48 0.491 0.8 0.864 0.96 0.374 0.1493 0.928 0.224 1.664 0.224 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.074 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208-0.576 0-1.093-0.048-1.552-0.144-0.448-0.1067-0.832-0.3093-1.152-0.608-0.32-0.3093-0.554-0.768-0.704-1.376-0.405 0.192-0.821 0.4107-1.248 0.656-0.416 0.2347-0.88 0.464-1.392 0.688-0.512 0.224-1.104 0.4107-1.776 0.56-0.672 0.1493-1.461 0.224-2.368 0.224zm4.176 2.896c-0.224 0-0.416-0.08-0.576-0.24-0.149-0.1493-0.224-0.3307-0.224-0.544 0-0.2133 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.214 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.3467 0.24 0.56 0 0.2133-0.08 0.3947-0.24 0.544-0.149 0.16-0.33 0.24-0.544 0.24zm6.162-2.896l0.144-1.312c1.098 0 2.165-0.16 3.2-0.48 1.034-0.3307 1.978-0.7947 2.832-1.392-0.416-0.3627-0.928-0.656-1.536-0.88-0.598-0.224-1.259-0.336-1.984-0.336-0.267 0-0.502 0.016-0.704 0.048-0.203 0.0213-0.448 0.064-0.736 0.128l-0.256-1.21599c0.597-0.18133 1.162-0.272 1.696-0.272 0.554 0 1.056 0.06933 1.504 0.208 0.448 0.128 0.853 0.288 1.216 0.47999 0.373 0.192 0.72 0.384 1.04 0.576 0.33 0.192 0.65 0.3573 0.96 0.496 0.309 0.128 0.629 0.192 0.96 0.192h0.336l0.112 1.152c-0.331 0-0.651 0.0373-0.96 0.112 0.202 0.48 0.49 0.8 0.864 0.96 0.373 0.1493 0.928 0.224 1.664 0.224 0.224 0 0.384 0.064 0.48 0.192 0.106 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.075 0.3307-0.224 0.48-0.15 0.1387-0.342 0.208-0.576 0.208-0.576 0-1.094-0.048-1.552-0.144-0.448-0.1067-0.832-0.3093-1.152-0.608-0.32-0.3093-0.555-0.768-0.704-1.376-0.406 0.192-0.822 0.4107-1.248 0.656-0.416 0.2347-0.88 0.464-1.392 0.688-0.512 0.224-1.104 0.4107-1.776 0.56-0.672 0.1493-1.462 0.224-2.368 0.224zm10.337 0l0.144-1.312c0.608 0 1.035-0.0587 1.28-0.176 0.246-0.1173 0.384-0.32 0.416-0.608 0.043-0.2987 0.054-0.72 0.032-1.264l-0.304-8.14399h1.296l0.32 7.99999c0.032 0.7573-0.021 1.3973-0.16 1.92-0.128 0.5227-0.426 0.9173-0.896 1.184-0.458 0.2667-1.168 0.4-2.128 0.4zm5.778-0.08l-0.32-11.42399h1.296l0.32 11.42399h-1.296z" android:fillColor="#ffffff"/>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="156dp" android:height="21dp" android:viewportWidth="156" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<group>
|
|
3
|
-
<group>
|
|
4
|
-
<path android:pathData="M22.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6297c1.1765 0 2.175 0.39207 2.9979 1.17512 0.8349 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4175 2.11088-1.2523 2.88093-0.81 0.77113-1.8096 1.15562-2.9979 1.15562h-2.8841v0.00108zM31.2546 12.4831c0 0.4548 0.193 0.8339 0.5791 1.1372 0.3858 0.3032 0.838 0.4549 1.3563 0.4549 0.7339 0 1.3877-0.272 1.9635-0.8145 0.5758-0.5437 0.863-1.1816 0.863-1.9138-0.5443-0.4299-1.3032-0.6444-2.2769-0.6444-0.709 0-1.2999 0.1711-1.7737 0.5123-0.4739 0.3411-0.7113 0.7625-0.7113 1.2683m2.2584-6.74744c1.2903 0 2.3084 0.34441 3.0555 1.03323 0.746 0.68882 1.1188 1.63324 1.1188 2.83327v5.72394h-1.6696v-1.2888h-0.076c-0.721 1.0612-1.6827 1.5921-2.8839 1.5921-1.0246 0-1.8823-0.3033-2.5709-0.9098-0.6894-0.6065-1.0342-1.3647-1.0342-2.2744 0-0.9607 0.3631-1.7244 1.0906-2.2929 0.7275-0.56855 1.698-0.8534 2.9124-0.8534 1.0364 0 1.8908 0.18954 2.5608 0.56861V9.46894c0-0.60651-0.2407-1.12096-0.7209-1.54443-0.4815-0.42348-1.0431-0.63467-1.6882-0.63467-0.9748 0-1.7456 0.41048-2.3148 1.23251l-1.5375-0.96716c0.8478-1.21302 2.1001-1.81953 3.7579-1.81953M47.2687 6.03894L41.4432 19.4201h-1.8021l2.1632-4.6821-3.8329-8.69906h1.8974l2.7702 6.67166h0.038l2.6943-6.67166h1.8974z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
5
|
-
</group>
|
|
6
|
-
<group>
|
|
7
|
-
<path android:pathData="M15.3029 8.64473c0-0.5491-0.0467-1.07872-0.1345-1.58559H7.80648v3.00336h4.21662c-0.1811 0.9789-0.7286 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
8
|
-
<path android:pathData="M7.80646 16.2651c2.10667 0 3.88044-0.691 5.17394-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.60248 0.7462-2.65744 0.7462-2.03618 0-3.76445-1.3711-4.38246-3.21881H0.831596v2.00911C2.11641 14.516 4.75652 16.2651 7.80646 16.2651" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M3.42401 9.9596c-0.1583-0.47113-0.24504-0.97367-0.24504-1.49245S3.26571 7.44583 3.42401 6.9747V4.96564H0.831606C0.300332 6.01837 0 7.20756 0 8.46715 0 9.72674 0.300332 10.916 0.831606 11.9687L3.42401 9.9596z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M7.80646 3.75583c1.15037 0 2.18148 0.39532 2.99464 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.11716-2.031812-5.22274-2.031812-3.04994 0-5.69005 1.749132-6.974864 4.296472L3.424 6.97467c0.61801-1.84769 2.34628-3.21884 4.38246-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
11
|
-
</group>
|
|
12
|
-
</group>
|
|
13
|
-
<path android:pathData="M55.3746 21.2886c-0.192-0.6933-0.352-1.3813-0.48-2.064-0.128-0.672-0.224-1.2907-0.288-1.856-0.064-0.5653-0.096-1.0293-0.096-1.392 0-0.6507 0.1174-1.1893 0.352-1.616 0.2347-0.4373 0.5494-0.7733 0.944-1.008 0.3947-0.2453 0.832-0.4107 1.312-0.496 0.4907-0.0853 0.992-0.112 1.504-0.08 0.5227 0.0213 1.0134 0.0853 1.472 0.192 0.032-0.48-0.016-0.9333-0.144-1.36-0.128-0.4267-0.3306-0.768-0.608-1.024-0.2773-0.2667-0.6186-0.4-1.024-0.4-0.7786 0-1.4506 0.5333-2.016 1.6l-0.992-0.544c0.4054-0.864 0.88-1.47199 1.424-1.82399 0.5547-0.352 1.1094-0.528 1.664-0.528 0.544 0 1.0027 0.11733 1.376 0.352 0.3734 0.224 0.6667 0.52267 0.88 0.89599 0.224 0.3627 0.384 0.7573 0.48 1.184 0.1067 0.416 0.16 0.816 0.16 1.2 0 0.3947-0.0693 0.7893-0.208 1.184-0.1386 0.384-0.2666 0.6613-0.384 0.832-0.9706-0.288-1.824-0.4373-2.56-0.448-0.7253-0.0213-1.296 0.128-1.712 0.448-0.4053 0.3093-0.608 0.816-0.608 1.52 0 0.4053 0.032 0.8747 0.096 1.408 0.064 0.544 0.1547 1.1147 0.272 1.712 0.1174 0.608 0.256 1.2053 0.416 1.792l-1.232 0.32zm8.188-6.288l-0.32-11.42399h1.296l0.32 11.42399h-1.296zm5.9305-1.232c0.7894 0 1.3494-0.1173 1.68-0.352 0.3307-0.2453 0.496-0.5813 0.496-1.008 0-0.2773-0.096-0.6347-0.288-1.072-0.192-0.4373-0.448-0.9227-0.768-1.45599-0.3093-0.544-0.656-1.09867-1.04-1.664l1.104-0.72c0.6187 0.94933 1.12 1.81867 1.504 2.60799 0.3947 0.7787 0.688 1.4827 0.88 2.112 0.1494 0.4693 0.3147 0.816 0.496 1.04 0.192 0.224 0.3894 0.368 0.592 0.432 0.2027 0.0533 0.3894 0.08 0.56 0.08 0.224 0 0.3894 0.064 0.496 0.192 0.1067 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0746 0.3307-0.224 0.48-0.1493 0.1387-0.3413 0.208-0.576 0.208-0.416 0-0.816-0.0907-1.2-0.272-0.384-0.1813-0.6933-0.4907-0.928-0.928-0.2133 0.352-0.5546 0.6453-1.024 0.88-0.4586 0.224-1.0986 0.336-1.92 0.336-0.5866 0-1.1306-0.0693-1.632-0.208-0.5013-0.1493-0.9173-0.352-1.248-0.608l0.64-1.104c0.2134 0.1493 0.512 0.288 0.896 0.416 0.384 0.1173 0.832 0.176 1.344 0.176zm5.2256 1.312l0.144-1.312c1.0987 0 2.1654-0.16 3.2-0.48 1.0347-0.3307 1.9787-0.7947 2.832-1.392-0.416-0.3627-0.928-0.656-1.536-0.88-0.5973-0.224-1.2586-0.336-1.984-0.336-0.2666 0-0.5013 0.016-0.704 0.048-0.2026 0.0213-0.448 0.064-0.736 0.128l-0.256-1.21599c0.5974-0.18133 1.1627-0.272 1.696-0.272 0.5547 0 1.056 0.06933 1.504 0.208 0.448 0.128 0.8534 0.288 1.216 0.47999 0.3734 0.192 0.72 0.384 1.04 0.576 0.3307 0.192 0.6507 0.3573 0.96 0.496 0.3094 0.128 0.6294 0.192 0.96 0.192h0.336l0.112 1.152c-0.3306 0-0.6506 0.0373-0.96 0.112 0.2027 0.48 0.4907 0.8 0.864 0.96 0.3734 0.1493 0.928 0.224 1.664 0.224 0.224 0 0.384 0.064 0.48 0.192 0.1067 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0746 0.3307-0.224 0.48-0.1493 0.1387-0.3413 0.208-0.576 0.208-0.576 0-1.0933-0.048-1.552-0.144-0.448-0.1067-0.832-0.3093-1.152-0.608-0.32-0.3093-0.5546-0.768-0.704-1.376-0.4053 0.192-0.8213 0.4107-1.248 0.656-0.416 0.2347-0.88 0.464-1.392 0.688-0.512 0.224-1.104 0.4107-1.776 0.56-0.672 0.1493-1.4613 0.224-2.368 0.224zm2.512-7.35999c-0.224 0-0.416-0.07467-0.576-0.224-0.1493-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0747-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2134 0 0.3947 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1493 0.14933-0.3306 0.224-0.544 0.224zm7.8255 7.35999l0.16-1.312c0.5334 0 0.9494-0.0373 1.248-0.112 0.2987-0.0853 0.5227-0.24 0.672-0.464 0.16-0.2347 0.288-0.5707 0.384-1.008 0.096-0.4373 0.2134-1.008 0.352-1.712l1.248 0.24c-0.064 0.288-0.1386 0.6187-0.224 0.992-0.0746 0.3733-0.112 0.688-0.112 0.944 0 0.16 0.0107 0.3093 0.032 0.448 0.0214 0.1387 0.1014 0.256 0.24 0.352 0.1387 0.096 0.3734 0.176 0.704 0.24 0.3307 0.0533 0.8054 0.08 1.424 0.08 0.224 0 0.384 0.064 0.48 0.192 0.1067 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0746 0.3307-0.224 0.48-0.1493 0.1387-0.3413 0.208-0.576 0.208-0.6933 0-1.2373-0.0373-1.632-0.112-0.384-0.0853-0.672-0.2027-0.864-0.352-0.1813-0.16-0.3146-0.3573-0.4-0.592-0.3093 0.4373-0.6933 0.7253-1.152 0.864-0.448 0.128-1.088 0.192-1.92 0.192zm4.272-6.25599c-0.224 0-0.416-0.07467-0.576-0.224-0.1493-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0747-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2134 0 0.3947 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1493 0.14933-0.3306 0.224-0.544 0.224zm-2.192 0c-0.224 0-0.416-0.07467-0.576-0.224-0.1493-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0747-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2134 0 0.3947 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1493 0.14933-0.3306 0.224-0.544 0.224zm4.0388 6.25599l0.16-1.312c0.3413 0 0.6187-0.0213 0.832-0.064 0.2133-0.0533 0.3893-0.176 0.528-0.368 0.1493-0.2027 0.288-0.5173 0.416-0.944 0.128-0.4267 0.2773-1.024 0.448-1.792l1.2 0.336c-0.064 0.2773-0.1387 0.6027-0.224 0.976-0.0853 0.3733-0.128 0.7093-0.128 1.008 0 0.2667 0.1013 0.4747 0.304 0.624s0.5707 0.224 1.104 0.224c0.32 0 0.5813-0.0267 0.784-0.08s0.368-0.1813 0.496-0.384c0.1387-0.2027 0.2613-0.5227 0.368-0.96 0.1067-0.448 0.2187-1.0667 0.336-1.856l1.216 0.224c-0.032 0.192-0.0747 0.4267-0.128 0.704-0.0427 0.2773-0.08 0.5547-0.112 0.832-0.032 0.2667-0.048 0.4907-0.048 0.672 0 0.1493 0.032 0.2933 0.096 0.432 0.0747 0.128 0.2133 0.2293 0.416 0.304 0.2133 0.0747 0.528 0.112 0.944 0.112 0.459 0 0.827-0.0907 1.104-0.272 0.277-0.1813 0.416-0.5493 0.416-1.104 0-0.3947-0.096-0.9013-0.288-1.52-0.181-0.6187-0.389-1.23199-0.624-1.83999l1.296-0.48c0.128 0.352 0.256 0.74667 0.384 1.184 0.128 0.42669 0.235 0.85329 0.32 1.27999 0.085 0.4267 0.128 0.8 0.128 1.12 0 0.992-0.245 1.7333-0.736 2.224-0.491 0.48-1.163 0.72-2.016 0.72-0.5867 0-1.0507-0.0747-1.392-0.224-0.3307-0.16-0.5707-0.4053-0.72-0.736-0.256 0.3947-0.5653 0.656-0.928 0.784-0.352 0.1173-0.8533 0.176-1.504 0.176-0.224 0-0.464-0.0267-0.72-0.08-0.2453-0.0533-0.4747-0.1547-0.688-0.304-0.2133-0.16-0.3787-0.3947-0.496-0.704-0.2773 0.4693-0.624 0.768-1.04 0.896-0.4053 0.128-0.9067 0.192-1.504 0.192zm17.353 0c-0.864 0-1.52-0.096-1.968-0.288-0.448-0.192-0.757-0.4907-0.928-0.896-0.171-0.4053-0.267-0.928-0.288-1.568l-0.32-8.75199h1.312l0.32 8.23999c0.021 0.5227 0.069 0.928 0.144 1.216 0.085 0.2773 0.267 0.4693 0.544 0.576 0.288 0.1067 0.736 0.16 1.344 0.16 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.075 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208zm0.15 0l0.16-1.312c0.512 0 0.923-0.032 1.232-0.096 0.32-0.064 0.549-0.192 0.688-0.384 0.139-0.2027 0.208-0.5013 0.208-0.896 0-0.3947-0.096-0.9013-0.288-1.52-0.181-0.6187-0.389-1.23199-0.624-1.83999l1.296-0.48c0.139 0.352 0.267 0.74667 0.384 1.184 0.128 0.42669 0.235 0.85329 0.32 1.27999 0.085 0.4267 0.128 0.8 0.128 1.12 0 1.0773-0.288 1.84-0.864 2.288-0.565 0.4373-1.445 0.656-2.64 0.656zm1.712 2.976c-0.224 0-0.416-0.08-0.576-0.24-0.149-0.1493-0.224-0.3307-0.224-0.544 0-0.2133 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.213 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.3467 0.24 0.56 0 0.2133-0.08 0.3947-0.24 0.544-0.149 0.16-0.331 0.24-0.544 0.24zm7.259-2.128l-0.368-1.216c0.278-0.064 0.592-0.144 0.944-0.24 0.363-0.096 0.747-0.2027 1.152-0.32-0.384-0.1707-0.725-0.448-1.024-0.832-0.288-0.3947-0.432-0.864-0.432-1.408 0-0.544 0.123-1.008 0.368-1.392 0.256-0.384 0.587-0.67732 0.992-0.87999 0.416-0.21333 0.87-0.32 1.36-0.32 0.182 0 0.379 0.02133 0.592 0.064 0.214 0.032 0.416 0.07467 0.608 0.128l-0.208 1.19999c-0.16-0.0427-0.33-0.0747-0.512-0.096-0.181-0.032-0.341-0.048-0.48-0.048-0.49 0-0.858 0.1333-1.104 0.4-0.234 0.2667-0.352 0.5813-0.352 0.944 0 0.2987 0.08 0.576 0.24 0.832 0.16 0.2453 0.363 0.4533 0.608 0.624 0.246 0.1707 0.496 0.2773 0.752 0.32 0.299-0.096 0.598-0.1973 0.896-0.304 0.299-0.1173 0.587-0.2347 0.864-0.352l0.48 1.168c-0.309 0.128-0.698 0.2773-1.168 0.448-0.458 0.16-0.949 0.32-1.472 0.48-0.512 0.1707-1.008 0.3253-1.488 0.464-0.48 0.1493-0.896 0.2613-1.248 0.336zm7.56-0.928l-0.32-11.42399h1.296l0.32 11.42399h-1.296zm2.149 3.712l-0.464-1.216c1.034-0.3413 1.84-0.7467 2.416-1.216 0.586-0.4693 0.997-0.96 1.232-1.472 0.245-0.5227 0.368-1.0293 0.368-1.52 0-0.5227-0.118-1.0507-0.352-1.584-0.224-0.544-0.475-1.056-0.752-1.536l1.168-0.59199c0.298 0.56529 0.549 1.10929 0.752 1.63199 0.213 0.5227 0.378 0.9813 0.496 1.376 0.149 0.4587 0.341 0.7733 0.576 0.944 0.245 0.16 0.576 0.24 0.992 0.24 0.224 0 0.384 0.064 0.48 0.192 0.106 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.075 0.3307-0.224 0.48-0.15 0.1387-0.342 0.208-0.576 0.208-0.406 0-0.747-0.064-1.024-0.192-0.267-0.128-0.486-0.2987-0.656-0.512-0.107 0.5973-0.331 1.1413-0.672 1.632-0.342 0.4907-0.742 0.9173-1.2 1.28-0.459 0.3733-0.928 0.6773-1.408 0.912-0.48 0.2347-0.918 0.4053-1.312 0.512zm6.429-3.632l0.16-1.312c0.342 0 0.619-0.0213 0.832-0.064 0.214-0.0533 0.39-0.176 0.528-0.368 0.15-0.2027 0.288-0.5173 0.416-0.944 0.128-0.4267 0.278-1.024 0.448-1.792l1.2 0.336c-0.064 0.2773-0.138 0.6027-0.224 0.976-0.085 0.3733-0.128 0.7093-0.128 1.008 0 0.2667 0.102 0.4747 0.304 0.624 0.203 0.1493 0.571 0.224 1.104 0.224 0.32 0 0.582-0.0267 0.784-0.08 0.203-0.0533 0.368-0.1813 0.496-0.384 0.139-0.2027 0.262-0.5227 0.368-0.96 0.107-0.448 0.219-1.0667 0.336-1.856l1.216 0.224c-0.032 0.192-0.074 0.4267-0.128 0.704-0.042 0.2773-0.08 0.5547-0.112 0.832-0.032 0.2667-0.048 0.4907-0.048 0.672 0 0.1493 0.032 0.2933 0.096 0.432 0.075 0.128 0.214 0.2293 0.416 0.304 0.214 0.0747 0.528 0.112 0.944 0.112 0.534 0 0.918-0.1067 1.152-0.32 0.246-0.224 0.368-0.5707 0.368-1.04 0-0.3627-0.01-0.7627-0.032-1.2-0.021-0.4373-0.074-0.9867-0.16-1.64799l1.168-0.08c0.064 0.86399 0.134 1.57329 0.208 2.12799 0.086 0.5547 0.203 0.992 0.352 1.312 0.16 0.3093 0.374 0.528 0.64 0.656 0.267 0.128 0.619 0.192 1.056 0.192 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.074 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208-0.597 0-1.093-0.1333-1.488-0.4-0.384-0.2667-0.666-0.6027-0.848-1.008-0.213 0.5653-0.538 0.944-0.976 1.136-0.426 0.1813-0.901 0.272-1.424 0.272-0.544 0-0.976-0.0747-1.296-0.224-0.309-0.16-0.538-0.4-0.688-0.72-0.256 0.384-0.565 0.64-0.928 0.768-0.352 0.1173-0.853 0.176-1.504 0.176-0.224 0-0.464-0.0267-0.72-0.08-0.245-0.0533-0.474-0.1547-0.688-0.304-0.213-0.16-0.378-0.3947-0.496-0.704-0.277 0.4693-0.624 0.768-1.04 0.896-0.405 0.128-0.906 0.192-1.504 0.192zm6.896-8.79999c-0.224 0-0.416-0.07467-0.576-0.224-0.149-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.214 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.149 0.14933-0.33 0.224-0.544 0.224zm-1.088 1.76c-0.224 0-0.416-0.07467-0.576-0.224-0.149-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.214 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.149 0.14933-0.33 0.224-0.544 0.224zm2.176 0c-0.224 0-0.416-0.07467-0.576-0.224-0.149-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.214 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.149 0.14933-0.33 0.224-0.544 0.224zm5.76 7.03999l0.144-1.312c0.608 0 1.035-0.0587 1.28-0.176 0.246-0.1173 0.384-0.32 0.416-0.608 0.043-0.2987 0.054-0.72 0.032-1.264l-0.304-8.14399h1.296l0.32 7.99999c0.032 0.7573-0.021 1.3973-0.16 1.92-0.128 0.5227-0.426 0.9173-0.896 1.184-0.458 0.2667-1.168 0.4-2.128 0.4zm5.778-0.08l-0.32-11.42399h1.296l0.32 11.42399h-1.296z" android:fillColor="#ffffff"/>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="185dp" android:height="21dp" android:viewportWidth="185" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<group>
|
|
3
|
-
<group>
|
|
4
|
-
<path android:pathData="M22.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6297c1.1765 0 2.175 0.39207 2.9979 1.17512 0.8349 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4175 2.11088-1.2523 2.88093-0.81 0.77113-1.8096 1.15562-2.9979 1.15562h-2.8841v0.00108zM31.2546 12.4831c0 0.4548 0.193 0.8339 0.5791 1.1372 0.3858 0.3032 0.838 0.4549 1.3563 0.4549 0.7339 0 1.3877-0.272 1.9635-0.8145 0.5758-0.5437 0.863-1.1816 0.863-1.9138-0.5443-0.4299-1.3032-0.6444-2.2769-0.6444-0.709 0-1.2999 0.1711-1.7737 0.5123-0.4739 0.3411-0.7113 0.7625-0.7113 1.2683m2.2584-6.74744c1.2903 0 2.3084 0.34441 3.0555 1.03323 0.746 0.68882 1.1188 1.63324 1.1188 2.83327v5.72394h-1.6696v-1.2888h-0.076c-0.721 1.0612-1.6827 1.5921-2.8839 1.5921-1.0246 0-1.8823-0.3033-2.5709-0.9098-0.6894-0.6065-1.0342-1.3647-1.0342-2.2744 0-0.9607 0.3631-1.7244 1.0906-2.2929 0.7275-0.56855 1.698-0.8534 2.9124-0.8534 1.0364 0 1.8908 0.18954 2.5608 0.56861V9.46894c0-0.60651-0.2407-1.12096-0.7209-1.54443-0.4815-0.42348-1.0431-0.63467-1.6882-0.63467-0.9748 0-1.7456 0.41048-2.3148 1.23251l-1.5375-0.96716c0.8478-1.21302 2.1001-1.81953 3.7579-1.81953M47.2687 6.03894L41.4432 19.4201h-1.8021l2.1632-4.6821-3.8329-8.69906h1.8974l2.7702 6.67166h0.038l2.6943-6.67166h1.8974z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
5
|
-
</group>
|
|
6
|
-
<group>
|
|
7
|
-
<path android:pathData="M15.3029 8.64473c0-0.5491-0.0467-1.07872-0.1345-1.58559H7.80648v3.00336h4.21662c-0.1811 0.9789-0.7286 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
8
|
-
<path android:pathData="M7.80646 16.2651c2.10667 0 3.88044-0.691 5.17394-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.60248 0.7462-2.65744 0.7462-2.03618 0-3.76445-1.3711-4.38246-3.21881H0.831596v2.00911C2.11641 14.516 4.75652 16.2651 7.80646 16.2651" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M3.42401 9.9596c-0.1583-0.47113-0.24504-0.97367-0.24504-1.49245S3.26571 7.44583 3.42401 6.9747V4.96564H0.831606C0.300332 6.01837 0 7.20756 0 8.46715 0 9.72674 0.300332 10.916 0.831606 11.9687L3.42401 9.9596z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M7.80646 3.75583c1.15037 0 2.18148 0.39532 2.99464 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.11716-2.031812-5.22274-2.031812-3.04994 0-5.69005 1.749132-6.974864 4.296472L3.424 6.97467c0.61801-1.84769 2.34628-3.21884 4.38246-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
11
|
-
</group>
|
|
12
|
-
</group>
|
|
13
|
-
<path android:pathData="M55.3902 21.2886c-0.192-0.6933-0.352-1.3813-0.48-2.064-0.128-0.672-0.224-1.2907-0.288-1.856-0.064-0.5653-0.096-1.0293-0.096-1.392 0-0.6507 0.1174-1.1893 0.352-1.616 0.2347-0.4373 0.5494-0.7733 0.944-1.008 0.3947-0.2453 0.832-0.4107 1.312-0.496 0.4907-0.0853 0.992-0.112 1.504-0.08 0.5227 0.0213 1.0134 0.0853 1.472 0.192 0.032-0.48-0.016-0.9333-0.144-1.36-0.128-0.4267-0.3306-0.768-0.608-1.024-0.2773-0.2667-0.6186-0.4-1.024-0.4-0.7786 0-1.4506 0.5333-2.016 1.6l-0.992-0.544c0.4054-0.864 0.88-1.47199 1.424-1.82399 0.5547-0.352 1.1094-0.528 1.664-0.528 0.544 0 1.0027 0.11733 1.376 0.352 0.3734 0.224 0.6667 0.52267 0.88 0.89599 0.224 0.3627 0.384 0.7573 0.48 1.184 0.1067 0.416 0.16 0.816 0.16 1.2 0 0.3947-0.0693 0.7893-0.208 1.184-0.1386 0.384-0.2666 0.6613-0.384 0.832-0.9706-0.288-1.824-0.4373-2.56-0.448-0.7253-0.0213-1.296 0.128-1.712 0.448-0.4053 0.3093-0.608 0.816-0.608 1.52 0 0.4053 0.032 0.8747 0.096 1.408 0.064 0.544 0.1547 1.1147 0.272 1.712 0.1174 0.608 0.256 1.2053 0.416 1.792l-1.232 0.32zm8.188-6.288l-0.32-11.42399h1.296l0.32 11.42399h-1.296zm5.9305-1.232c0.7894 0 1.3494-0.1173 1.68-0.352 0.3307-0.2453 0.496-0.5813 0.496-1.008 0-0.2773-0.096-0.6347-0.288-1.072-0.192-0.4373-0.448-0.9227-0.768-1.45599-0.3093-0.544-0.656-1.09867-1.04-1.664l1.104-0.72c0.6187 0.94933 1.12 1.81867 1.504 2.60799 0.3947 0.7787 0.688 1.4827 0.88 2.112 0.1494 0.4693 0.3147 0.816 0.496 1.04 0.192 0.224 0.3894 0.368 0.592 0.432 0.2027 0.0533 0.3894 0.08 0.56 0.08 0.224 0 0.3894 0.064 0.496 0.192 0.1067 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0746 0.3307-0.224 0.48-0.1493 0.1387-0.3413 0.208-0.576 0.208-0.416 0-0.816-0.0907-1.2-0.272-0.384-0.1813-0.6933-0.4907-0.928-0.928-0.2133 0.352-0.5546 0.6453-1.024 0.88-0.4586 0.224-1.0986 0.336-1.92 0.336-0.5866 0-1.1306-0.0693-1.632-0.208-0.5013-0.1493-0.9173-0.352-1.248-0.608l0.64-1.104c0.2134 0.1493 0.512 0.288 0.896 0.416 0.384 0.1173 0.832 0.176 1.344 0.176zm5.2257 1.312l0.144-1.312c1.0986 0 2.1653-0.16 3.2-0.48 1.0346-0.3307 1.9786-0.7947 2.832-1.392-0.416-0.3627-0.928-0.656-1.536-0.88-0.5974-0.224-1.2587-0.336-1.984-0.336-0.2667 0-0.5014 0.016-0.704 0.048-0.2027 0.0213-0.448 0.064-0.736 0.128l-0.256-1.21599c0.5973-0.18133 1.1626-0.272 1.696-0.272 0.5546 0 1.056 0.06933 1.504 0.208 0.448 0.128 0.8533 0.288 1.216 0.47999 0.3733 0.192 0.72 0.384 1.04 0.576 0.3306 0.192 0.6506 0.3573 0.96 0.496 0.3093 0.128 0.6293 0.192 0.96 0.192h0.336l0.112 1.152c-0.3307 0-0.6507 0.0373-0.96 0.112 0.2026 0.48 0.4906 0.8 0.864 0.96 0.3733 0.1493 0.928 0.224 1.664 0.224 0.224 0 0.384 0.064 0.48 0.192 0.1066 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0747 0.3307-0.224 0.48-0.1494 0.1387-0.3414 0.208-0.576 0.208-0.576 0-1.0934-0.048-1.552-0.144-0.448-0.1067-0.832-0.3093-1.152-0.608-0.32-0.3093-0.5547-0.768-0.704-1.376-0.4054 0.192-0.8214 0.4107-1.248 0.656-0.416 0.2347-0.88 0.464-1.392 0.688-0.512 0.224-1.104 0.4107-1.776 0.56-0.672 0.1493-1.4614 0.224-2.368 0.224zm2.512-7.35999c-0.224 0-0.416-0.07467-0.576-0.224-0.1494-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0746-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2133 0 0.3946 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1494 0.14933-0.3307 0.224-0.544 0.224zm7.8255 7.35999l0.16-1.312c0.5333 0 0.9493-0.0373 1.248-0.112 0.2986-0.0853 0.5226-0.24 0.672-0.464 0.16-0.2347 0.288-0.5707 0.384-1.008 0.096-0.4373 0.2133-1.008 0.352-1.712l1.248 0.24c-0.064 0.288-0.1387 0.6187-0.224 0.992-0.0747 0.3733-0.112 0.688-0.112 0.944 0 0.16 0.0106 0.3093 0.032 0.448 0.0213 0.1387 0.1013 0.256 0.24 0.352 0.1386 0.096 0.3733 0.176 0.704 0.24 0.3306 0.0533 0.8053 0.08 1.424 0.08 0.224 0 0.384 0.064 0.48 0.192 0.1066 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0747 0.3307-0.224 0.48-0.1494 0.1387-0.3414 0.208-0.576 0.208-0.6934 0-1.2374-0.0373-1.632-0.112-0.384-0.0853-0.672-0.2027-0.864-0.352-0.1814-0.16-0.3147-0.3573-0.4-0.592-0.3094 0.4373-0.6934 0.7253-1.152 0.864-0.448 0.128-1.088 0.192-1.92 0.192zm4.272-6.25599c-0.224 0-0.416-0.07467-0.576-0.224-0.1494-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0746-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2133 0 0.3946 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1494 0.14933-0.3307 0.224-0.544 0.224zm-2.192 0c-0.224 0-0.416-0.07467-0.576-0.224-0.1494-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0746-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2133 0 0.3946 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1494 0.14933-0.3307 0.224-0.544 0.224zm4.0387 6.25599l0.16-1.312c0.3413 0 0.6187-0.0213 0.832-0.064 0.2133-0.0533 0.3893-0.176 0.528-0.368 0.1493-0.2027 0.288-0.5173 0.416-0.944 0.128-0.4267 0.2773-1.024 0.448-1.792l1.2 0.336c-0.064 0.2773-0.1387 0.6027-0.224 0.976-0.0853 0.3733-0.128 0.7093-0.128 1.008 0 0.2667 0.1013 0.4747 0.304 0.624s0.5707 0.224 1.104 0.224c0.32 0 0.5813-0.0267 0.784-0.08s0.368-0.1813 0.496-0.384c0.1387-0.2027 0.2613-0.5227 0.368-0.96 0.1067-0.448 0.2187-1.0667 0.336-1.856l1.216 0.224c-0.032 0.192-0.0747 0.4267-0.128 0.704-0.0427 0.2773-0.08 0.5547-0.112 0.832-0.032 0.2667-0.048 0.4907-0.048 0.672 0 0.1493 0.032 0.2933 0.096 0.432 0.0747 0.128 0.2133 0.2293 0.416 0.304 0.2133 0.0747 0.528 0.112 0.9444 0.112 0.458 0 0.826-0.0907 1.104-0.272 0.277-0.1813 0.416-0.5493 0.416-1.104 0-0.3947-0.096-0.9013-0.288-1.52-0.182-0.6187-0.39-1.23199-0.624-1.83999l1.296-0.48c0.128 0.352 0.256 0.74667 0.384 1.184 0.128 0.42669 0.234 0.85329 0.32 1.27999 0.085 0.4267 0.128 0.8 0.128 1.12 0 0.992-0.246 1.7333-0.736 2.224-0.491 0.48-1.163 0.72-2.016 0.72-0.5871 0-1.0511-0.0747-1.3924-0.224-0.3307-0.16-0.5707-0.4053-0.72-0.736-0.256 0.3947-0.5653 0.656-0.928 0.784-0.352 0.1173-0.8533 0.176-1.504 0.176-0.224 0-0.464-0.0267-0.72-0.08-0.2453-0.0533-0.4747-0.1547-0.688-0.304-0.2133-0.16-0.3787-0.3947-0.496-0.704-0.2773 0.4693-0.624 0.768-1.04 0.896-0.4053 0.128-0.9067 0.192-1.504 0.192zm17.3524 0c-0.864 0-1.52-0.096-1.968-0.288-0.448-0.192-0.757-0.4907-0.928-0.896-0.17-0.4053-0.266-0.928-0.288-1.568l-0.32-8.75199h1.312l0.32 8.23999c0.022 0.5227 0.07 0.928 0.144 1.216 0.086 0.2773 0.267 0.4693 0.544 0.576 0.288 0.1067 0.736 0.16 1.344 0.16 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.074 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208zm0.151 0l0.16-1.312c0.512 0 0.922-0.032 1.232-0.096 0.32-0.064 0.549-0.192 0.688-0.384 0.138-0.2027 0.208-0.5013 0.208-0.896 0-0.3947-0.096-0.9013-0.288-1.52-0.182-0.6187-0.39-1.23199-0.624-1.83999l1.296-0.48c0.138 0.352 0.266 0.74667 0.384 1.184 0.128 0.42669 0.234 0.85329 0.32 1.27999 0.085 0.4267 0.128 0.8 0.128 1.12 0 1.0773-0.288 1.84-0.864 2.288-0.566 0.4373-1.446 0.656-2.64 0.656zm1.712 2.976c-0.224 0-0.416-0.08-0.576-0.24-0.15-0.1493-0.224-0.3307-0.224-0.544 0-0.2133 0.074-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.213 0 0.394 0.08 0.544 0.24 0.16 0.16 0.24 0.3467 0.24 0.56 0 0.2133-0.08 0.3947-0.24 0.544-0.15 0.16-0.331 0.24-0.544 0.24zm11.371 3.248c-0.48 0-0.987-0.048-1.52-0.144-0.533-0.0853-1.035-0.256-1.504-0.512-0.459-0.2453-0.837-0.592-1.136-1.04-0.288-0.448-0.432-1.0347-0.432-1.76 0-0.7787 0.16-1.456 0.48-2.032 0.32-0.576 0.725-1.072 1.216-1.488 0.491-0.4267 0.987-0.8107 1.488-1.152-0.256-0.2987-0.539-0.5973-0.848-0.896-0.309-0.2987-0.651-0.5813-1.024-0.848-0.064-0.0533-0.128-0.1493-0.192-0.288s-0.117-0.2827-0.16-0.432-0.064-0.2613-0.064-0.336c0-0.16 0.101-0.352 0.304-0.57599 0.203-0.224 0.475-0.43733 0.816-0.64 0.341-0.21333 0.731-0.38933 1.168-0.528 0.437-0.13867 0.891-0.208 1.36-0.208 0.747 0 1.328 0.18667 1.744 0.56 0.427 0.37333 0.64 0.81067 0.64 1.31199 0 0.608-0.171 1.136-0.512 1.584-0.331 0.448-0.736 0.864-1.216 1.248 0.405 0.2027 0.859 0.3627 1.36 0.48 0.501 0.1067 1.147 0.16 1.936 0.16 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.075 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208-0.736 0-1.365-0.048-1.888-0.144-0.512-0.096-0.955-0.224-1.328-0.384-0.373-0.1707-0.72-0.368-1.04-0.592-0.469 0.3413-0.917 0.688-1.344 1.04-0.416 0.352-0.757 0.7413-1.024 1.168-0.267 0.4267-0.4 0.9173-0.4 1.472 0 0.4907 0.117 0.8907 0.352 1.2 0.235 0.3093 0.528 0.544 0.88 0.704 0.352 0.1707 0.715 0.288 1.088 0.352 0.373 0.064 0.693 0.096 0.96 0.096 0.555 0 1.136-0.064 1.744-0.192 0.608-0.1173 1.237-0.3093 1.888-0.576l0.416 1.024c-0.32 0.192-0.704 0.368-1.152 0.528-0.437 0.16-0.912 0.288-1.424 0.384-0.501 0.096-0.992 0.144-1.472 0.144zm-2.544-10.848c0.384 0.32 0.741 0.6347 1.072 0.944 0.341 0.2987 0.709 0.656 1.104 1.072 0.416-0.288 0.757-0.576 1.024-0.864 0.277-0.288 0.416-0.608 0.416-0.96 0-0.2133-0.101-0.4213-0.304-0.624-0.203-0.20266-0.555-0.30399-1.056-0.30399-0.363 0-0.768 0.06933-1.216 0.208-0.437 0.13869-0.784 0.31469-1.04 0.52799zm6.442 4.624l0.16-1.312h1.2c0.459-0.0107 0.901-0.032 1.328-0.064 0.427-0.0427 0.763-0.1067 1.008-0.192 0.341-0.1173 0.613-0.2667 0.816-0.448 0.213-0.192 0.373-0.4373 0.48-0.736-0.192 0.064-0.4 0.112-0.624 0.144-0.213 0.0213-0.427 0.032-0.64 0.032-0.821 0-1.451-0.192-1.888-0.576-0.437-0.384-0.656-0.8693-0.656-1.456 0-0.4053 0.064-0.81066 0.192-1.21599 0.128-0.416 0.309-0.79467 0.544-1.136 0.235-0.34133 0.517-0.61333 0.848-0.816 0.331-0.21333 0.699-0.32 1.104-0.32 0.576 0 1.051 0.192 1.424 0.576 0.384 0.37333 0.667 0.85867 0.848 1.456 0.192 0.59733 0.288 1.23199 0.288 1.90399 0 0.8-0.139 1.488-0.416 2.064-0.267 0.5653-0.715 1.0347-1.344 1.408-0.331 0.192-0.747 0.3413-1.248 0.448-0.491 0.096-1.029 0.16-1.616 0.192-0.587 0.032-1.189 0.048-1.808 0.048zm2.448-4.928c0 0.3307 0.107 0.5973 0.32 0.8 0.213 0.192 0.581 0.288 1.104 0.288 0.459 0 0.896-0.064 1.312-0.192v-0.224c0-0.4373-0.059-0.84799-0.176-1.23199-0.117-0.39467-0.283-0.70933-0.496-0.944-0.213-0.23467-0.469-0.352-0.768-0.352-0.256 0-0.48 0.096-0.672 0.288-0.192 0.18133-0.347 0.416-0.464 0.704-0.107 0.288-0.16 0.576-0.16 0.86399zm1.12-4.81599c-0.224 0-0.416-0.07467-0.576-0.224-0.149-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.213 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.149 0.14933-0.331 0.224-0.544 0.224zm7.178 8.43199c0.79 0 1.35-0.1173 1.68-0.352 0.331-0.2453 0.496-0.5813 0.496-1.008 0-0.2773-0.096-0.6347-0.288-1.072-0.192-0.4373-0.448-0.9227-0.768-1.45599-0.309-0.544-0.656-1.09867-1.04-1.664l1.104-0.72c0.619 0.94933 1.12 1.81867 1.504 2.60799 0.395 0.7787 0.688 1.4827 0.88 2.112 0.15 0.4693 0.315 0.816 0.496 1.04 0.192 0.224 0.39 0.368 0.592 0.432 0.203 0.0533 0.39 0.08 0.56 0.08 0.224 0 0.39 0.064 0.496 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.074 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208-0.416 0-0.816-0.0907-1.2-0.272-0.384-0.1813-0.693-0.4907-0.928-0.928-0.213 0.352-0.554 0.6453-1.024 0.88-0.458 0.224-1.098 0.336-1.92 0.336-0.586 0-1.13-0.0693-1.632-0.208-0.501-0.1493-0.917-0.352-1.248-0.608l0.64-1.104c0.214 0.1493 0.512 0.288 0.896 0.416 0.384 0.1173 0.832 0.176 1.344 0.176zm5.226 1.312l0.144-1.312c0.608 0 1.035-0.0587 1.28-0.176 0.245-0.1173 0.384-0.32 0.416-0.608 0.043-0.2987 0.053-0.72 0.032-1.264l-0.304-8.14399h1.296l0.32 7.99999c0.032 0.7573-0.021 1.3973-0.16 1.92-0.128 0.5227-0.427 0.9173-0.896 1.184-0.459 0.2667-1.168 0.4-2.128 0.4zm5.778-0.08l-0.32-11.42399h1.296l0.32 11.42399h-1.296zm7.559 6.288c-0.192-0.6933-0.352-1.3813-0.48-2.064-0.128-0.672-0.224-1.2907-0.288-1.856-0.064-0.5653-0.096-1.0293-0.096-1.392 0-0.6507 0.117-1.1893 0.352-1.616 0.235-0.4373 0.549-0.7733 0.944-1.008 0.395-0.2453 0.832-0.4107 1.312-0.496 0.491-0.0853 0.992-0.112 1.504-0.08 0.523 0.0213 1.013 0.0853 1.472 0.192 0.032-0.48-0.016-0.9333-0.144-1.36-0.128-0.4267-0.331-0.768-0.608-1.024-0.277-0.2667-0.619-0.4-1.024-0.4-0.779 0-1.451 0.5333-2.016 1.6l-0.992-0.544c0.405-0.864 0.88-1.47199 1.424-1.82399 0.555-0.352 1.109-0.528 1.664-0.528 0.544 0 1.003 0.11733 1.376 0.352 0.373 0.224 0.667 0.52267 0.88 0.89599 0.224 0.3627 0.384 0.7573 0.48 1.184 0.107 0.416 0.16 0.816 0.16 1.2 0 0.3947-0.069 0.7893-0.208 1.184-0.139 0.384-0.267 0.6613-0.384 0.832-0.971-0.288-1.824-0.4373-2.56-0.448-0.725-0.0213-1.296 0.128-1.712 0.448-0.405 0.3093-0.608 0.816-0.608 1.52 0 0.4053 0.032 0.8747 0.096 1.408 0.064 0.544 0.155 1.1147 0.272 1.712 0.117 0.608 0.256 1.2053 0.416 1.792l-1.232 0.32zm11.372-6.208c-0.864 0-1.52-0.096-1.968-0.288-0.448-0.192-0.757-0.4907-0.928-0.896-0.171-0.4053-0.267-0.928-0.288-1.568l-0.32-8.75199h1.312l0.32 8.23999c0.021 0.5227 0.069 0.928 0.144 1.216 0.085 0.2773 0.267 0.4693 0.544 0.576 0.288 0.1067 0.736 0.16 1.344 0.16 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.075 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208zm0.15 0l0.16-1.312c0.299 0 0.534-0.064 0.704-0.192 0.182-0.128 0.352-0.336 0.512-0.624 0.171-0.2987 0.384-0.704 0.64-1.216 0.342-0.6827 0.683-1.2053 1.024-1.568 0.352-0.36266 0.683-0.61332 0.992-0.75199 0.32-0.13867 0.608-0.208 0.864-0.208 0.352 0 0.667 0.08 0.944 0.24 0.278 0.14933 0.534 0.41067 0.768 0.78399 0.246 0.3627 0.502 0.864 0.768 1.504 0.246 0.5973 0.464 1.04 0.656 1.328 0.203 0.288 0.411 0.48 0.624 0.576 0.224 0.0853 0.475 0.128 0.752 0.128 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.074 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208-0.416 0-0.8-0.064-1.152-0.192-0.341-0.1387-0.613-0.3467-0.816-0.624-0.202 0.3627-0.458 0.624-0.768 0.784-0.298 0.1707-0.624 0.256-0.976 0.256-0.533 0-1.077-0.1653-1.632-0.496-0.554-0.3413-1.024-0.7893-1.408-1.344-0.277 0.4907-0.544 0.8533-0.8 1.088-0.245 0.224-0.506 0.368-0.784 0.432-0.266 0.064-0.57 0.096-0.912 0.096zm3.104-2.832c0.363 0.608 0.768 1.056 1.216 1.344 0.448 0.2773 0.848 0.416 1.2 0.416 0.374 0 0.646-0.1333 0.816-0.4 0.182-0.2667 0.176-0.64-0.016-1.12-0.128-0.32-0.261-0.6347-0.4-0.944-0.138-0.3093-0.298-0.56-0.48-0.752-0.181-0.2027-0.394-0.304-0.64-0.304-0.234 0.0107-0.49 0.1387-0.768 0.384-0.277 0.2453-0.586 0.704-0.928 1.376zm6.296 2.832l0.16-1.312c0.619 0 1.104-0.0213 1.456-0.064 0.363-0.0533 0.619-0.176 0.768-0.368 0.15-0.192 0.224-0.5067 0.224-0.944 0-0.3947-0.096-0.9013-0.288-1.52-0.181-0.6187-0.389-1.23199-0.624-1.83999l1.296-0.48c0.139 0.352 0.267 0.74667 0.384 1.184 0.128 0.42669 0.235 0.85329 0.32 1.27999 0.086 0.4267 0.128 0.8 0.128 1.12 0 1.0773-0.298 1.84-0.896 2.288-0.597 0.4373-1.573 0.656-2.928 0.656zm3.488-8.19199c-0.224 0-0.416-0.07467-0.576-0.224-0.149-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.214 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.149 0.14933-0.33 0.224-0.544 0.224zm-2.192 0c-0.224 0-0.416-0.07467-0.576-0.224-0.149-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.214 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.149 0.14933-0.33 0.224-0.544 0.224zm5.107 8.11199l-0.32-11.42399h1.296l0.32 11.42399h-1.296zm-0.432 4.848l-0.192-0.864c0.16-0.032 0.299-0.064 0.416-0.096 0.118-0.032 0.23-0.0587 0.336-0.08-0.202-0.1387-0.378-0.32-0.528-0.544-0.149-0.224-0.224-0.4693-0.224-0.736 0-0.48 0.166-0.8427 0.496-1.088 0.342-0.2453 0.726-0.368 1.152-0.368 0.246 0 0.496 0.0427 0.752 0.128l-0.128 0.8c-0.106-0.0213-0.213-0.0427-0.32-0.064-0.096-0.0213-0.197-0.032-0.304-0.032-0.522 0-0.784 0.192-0.784 0.576 0 0.2773 0.102 0.5067 0.304 0.688 0.214 0.1813 0.422 0.2987 0.624 0.352 0.406-0.1173 0.763-0.2347 1.072-0.352l0.256 0.816c-0.256 0.096-0.56 0.1973-0.912 0.304-0.341 0.1067-0.693 0.208-1.056 0.304-0.352 0.1067-0.672 0.192-0.96 0.256z" android:fillColor="#ffffff"/>
|
|
14
|
-
</vector>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<vector android:width="152dp" android:height="21dp" android:viewportWidth="152" android:viewportHeight="21" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
2
|
-
<group>
|
|
3
|
-
<group>
|
|
4
|
-
<path android:pathData="M22.3563 3.42339v4.73836h2.9221c0.6961 0 1.2717-0.23394 1.7271-0.70182 0.4673-0.4668 0.7015-1.02349 0.7015-1.6679 0-0.63142-0.2342-1.18162-0.7015-1.64949-0.4554-0.4798-1.031-0.72024-1.7271-0.72024h-2.9221v0.00109zm0 6.40627v5.49654h-1.7456V1.75549h4.6297c1.1765 0 2.175 0.39207 2.9979 1.17512 0.8349 0.78304 1.2523 1.73721 1.2523 2.86142 0 1.15021-0.4175 2.11088-1.2523 2.88093-0.81 0.77113-1.8096 1.15562-2.9979 1.15562h-2.8841v0.00108zM31.2546 12.4831c0 0.4548 0.193 0.8339 0.5791 1.1372 0.3858 0.3032 0.838 0.4549 1.3563 0.4549 0.7339 0 1.3877-0.272 1.9635-0.8145 0.5758-0.5437 0.863-1.1816 0.863-1.9138-0.5443-0.4299-1.3032-0.6444-2.2769-0.6444-0.709 0-1.2999 0.1711-1.7737 0.5123-0.4739 0.3411-0.7113 0.7625-0.7113 1.2683m2.2584-6.74744c1.2903 0 2.3084 0.34441 3.0555 1.03323 0.746 0.68882 1.1188 1.63324 1.1188 2.83327v5.72394h-1.6696v-1.2888h-0.076c-0.721 1.0612-1.6827 1.5921-2.8839 1.5921-1.0246 0-1.8823-0.3033-2.5709-0.9098-0.6894-0.6065-1.0342-1.3647-1.0342-2.2744 0-0.9607 0.3631-1.7244 1.0906-2.2929 0.7275-0.56855 1.698-0.8534 2.9124-0.8534 1.0364 0 1.8908 0.18954 2.5608 0.56861V9.46894c0-0.60651-0.2407-1.12096-0.7209-1.54443-0.4815-0.42348-1.0431-0.63467-1.6882-0.63467-0.9748 0-1.7456 0.41048-2.3148 1.23251l-1.5375-0.96716c0.8478-1.21302 2.1001-1.81953 3.7579-1.81953M47.2687 6.03894L41.4432 19.4201h-1.8021l2.1632-4.6821-3.8329-8.69906h1.8974l2.7702 6.67166h0.038l2.6943-6.67166h1.8974z" android:fillColor="#ffffff" android:fillType="evenOdd"/>
|
|
5
|
-
</group>
|
|
6
|
-
<group>
|
|
7
|
-
<path android:pathData="M15.3029 8.64473c0-0.5491-0.0467-1.07872-0.1345-1.58559H7.80648v3.00336h4.21662c-0.1811 0.9789-0.7286 1.8119-1.5592 2.3697v1.9506h2.5165c1.4735-1.3582 2.3225-3.3651 2.3225-5.73807" android:fillColor="#4285f4" android:fillType="evenOdd"/>
|
|
8
|
-
<path android:pathData="M7.80646 16.2651c2.10667 0 3.88044-0.691 5.17394-1.8823l-2.5165-1.9506c-0.7004 0.4711-1.60248 0.7462-2.65744 0.7462-2.03618 0-3.76445-1.3711-4.38246-3.21881H0.831596v2.00911C2.11641 14.516 4.75652 16.2651 7.80646 16.2651" android:fillColor="#34a853" android:fillType="evenOdd"/>
|
|
9
|
-
<path android:pathData="M3.42401 9.9596c-0.1583-0.47113-0.24504-0.97367-0.24504-1.49245S3.26571 7.44583 3.42401 6.9747V4.96564H0.831606C0.300332 6.01837 0 7.20756 0 8.46715 0 9.72674 0.300332 10.916 0.831606 11.9687L3.42401 9.9596z" android:fillColor="#fabb05" android:fillType="evenOdd"/>
|
|
10
|
-
<path android:pathData="M7.80646 3.75583c1.15037 0 2.18148 0.39532 2.99464 1.1697v0.00108l2.2281-2.22567c-1.3531-1.25851-3.11716-2.031812-5.22274-2.031812-3.04994 0-5.69005 1.749132-6.974864 4.296472L3.424 6.97467c0.61801-1.84769 2.34628-3.21884 4.38246-3.21884" android:fillColor="#e94235" android:fillType="evenOdd"/>
|
|
11
|
-
</group>
|
|
12
|
-
</group>
|
|
13
|
-
<path android:pathData="M55.2402 21.2886c-0.192-0.6933-0.352-1.3813-0.48-2.064-0.128-0.672-0.224-1.2907-0.288-1.856-0.064-0.5653-0.096-1.0293-0.096-1.392 0-0.6507 0.1174-1.1893 0.352-1.616 0.2347-0.4373 0.5494-0.7733 0.944-1.008 0.3947-0.2453 0.832-0.4107 1.312-0.496 0.4907-0.0853 0.992-0.112 1.504-0.08 0.5227 0.0213 1.0134 0.0853 1.472 0.192 0.032-0.48-0.016-0.9333-0.144-1.36-0.128-0.4267-0.3306-0.768-0.608-1.024-0.2773-0.2667-0.6186-0.4-1.024-0.4-0.7786 0-1.4506 0.5333-2.016 1.6l-0.992-0.544c0.4054-0.864 0.88-1.47199 1.424-1.82399 0.5547-0.352 1.1094-0.528 1.664-0.528 0.544 0 1.0027 0.11733 1.376 0.352 0.3734 0.224 0.6667 0.52267 0.88 0.89599 0.224 0.3627 0.384 0.7573 0.48 1.184 0.1067 0.416 0.16 0.816 0.16 1.2 0 0.3947-0.0693 0.7893-0.208 1.184-0.1386 0.384-0.2666 0.6613-0.384 0.832-0.9706-0.288-1.824-0.4373-2.56-0.448-0.7253-0.0213-1.296 0.128-1.712 0.448-0.4053 0.3093-0.608 0.816-0.608 1.52 0 0.4053 0.032 0.8747 0.096 1.408 0.064 0.544 0.1547 1.1147 0.272 1.712 0.1174 0.608 0.256 1.2053 0.416 1.792l-1.232 0.32zm8.188-6.288l-0.32-11.42399h1.296l0.32 11.42399h-1.296zm5.9305-1.232c0.7894 0 1.3494-0.1173 1.68-0.352 0.3307-0.2453 0.496-0.5813 0.496-1.008 0-0.2773-0.096-0.6347-0.288-1.072-0.192-0.4373-0.448-0.9227-0.768-1.45599-0.3093-0.544-0.656-1.09867-1.04-1.664l1.104-0.72c0.6187 0.94933 1.12 1.81867 1.504 2.60799 0.3947 0.7787 0.688 1.4827 0.88 2.112 0.1494 0.4693 0.3147 0.816 0.496 1.04 0.192 0.224 0.3894 0.368 0.592 0.432 0.2027 0.0533 0.3894 0.08 0.56 0.08 0.224 0 0.3894 0.064 0.496 0.192 0.1067 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0746 0.3307-0.224 0.48-0.1493 0.1387-0.3413 0.208-0.576 0.208-0.416 0-0.816-0.0907-1.2-0.272-0.384-0.1813-0.6933-0.4907-0.928-0.928-0.2133 0.352-0.5546 0.6453-1.024 0.88-0.4586 0.224-1.0986 0.336-1.92 0.336-0.5866 0-1.1306-0.0693-1.632-0.208-0.5013-0.1493-0.9173-0.352-1.248-0.608l0.64-1.104c0.2134 0.1493 0.512 0.288 0.896 0.416 0.384 0.1173 0.832 0.176 1.344 0.176zm5.2257 1.312l0.144-1.312c1.0986 0 2.1653-0.16 3.2-0.48 1.0346-0.3307 1.9786-0.7947 2.832-1.392-0.416-0.3627-0.928-0.656-1.536-0.88-0.5974-0.224-1.2587-0.336-1.984-0.336-0.2667 0-0.5014 0.016-0.704 0.048-0.2027 0.0213-0.448 0.064-0.736 0.128l-0.256-1.21599c0.5973-0.18133 1.1626-0.272 1.696-0.272 0.5546 0 1.056 0.06933 1.504 0.208 0.448 0.128 0.8533 0.288 1.216 0.47999 0.3733 0.192 0.72 0.384 1.04 0.576 0.3306 0.192 0.6506 0.3573 0.96 0.496 0.3093 0.128 0.6293 0.192 0.96 0.192h0.336l0.112 1.152c-0.3307 0-0.6507 0.0373-0.96 0.112 0.2026 0.48 0.4906 0.8 0.864 0.96 0.3733 0.1493 0.928 0.224 1.664 0.224 0.224 0 0.384 0.064 0.48 0.192 0.1066 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0747 0.3307-0.224 0.48-0.1494 0.1387-0.3414 0.208-0.576 0.208-0.576 0-1.0934-0.048-1.552-0.144-0.448-0.1067-0.832-0.3093-1.152-0.608-0.32-0.3093-0.5547-0.768-0.704-1.376-0.4054 0.192-0.8214 0.4107-1.248 0.656-0.416 0.2347-0.88 0.464-1.392 0.688-0.512 0.224-1.104 0.4107-1.776 0.56-0.672 0.1493-1.4614 0.224-2.368 0.224zm2.512-7.35999c-0.224 0-0.416-0.07467-0.576-0.224-0.1494-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0746-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2133 0 0.3946 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1494 0.14933-0.3307 0.224-0.544 0.224zm7.8255 7.35999l0.16-1.312c0.5333 0 0.9493-0.0373 1.248-0.112 0.2986-0.0853 0.5226-0.24 0.672-0.464 0.16-0.2347 0.288-0.5707 0.384-1.008 0.096-0.4373 0.2133-1.008 0.352-1.712l1.248 0.24c-0.064 0.288-0.1387 0.6187-0.224 0.992-0.0747 0.3733-0.112 0.688-0.112 0.944 0 0.16 0.0106 0.3093 0.032 0.448 0.0213 0.1387 0.1013 0.256 0.24 0.352 0.1386 0.096 0.3733 0.176 0.704 0.24 0.3306 0.0533 0.8053 0.08 1.424 0.08 0.224 0 0.384 0.064 0.48 0.192 0.1066 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.0747 0.3307-0.224 0.48-0.1494 0.1387-0.3414 0.208-0.576 0.208-0.6934 0-1.2374-0.0373-1.632-0.112-0.384-0.0853-0.672-0.2027-0.864-0.352-0.1814-0.16-0.3147-0.3573-0.4-0.592-0.3094 0.4373-0.6934 0.7253-1.152 0.864-0.448 0.128-1.088 0.192-1.92 0.192zm4.272-6.25599c-0.224 0-0.416-0.07467-0.576-0.224-0.1494-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0746-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2133 0 0.3946 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1494 0.14933-0.3307 0.224-0.544 0.224zm-2.192 0c-0.224 0-0.416-0.07467-0.576-0.224-0.1494-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.0746-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.2133 0 0.3946 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.1494 0.14933-0.3307 0.224-0.544 0.224zm4.0387 6.25599l0.16-1.312c0.3414 0 0.6187-0.0213 0.832-0.064 0.2134-0.0533 0.3894-0.176 0.528-0.368 0.1494-0.2027 0.288-0.5173 0.416-0.944 0.128-0.4267 0.2774-1.024 0.448-1.792l1.2 0.336c-0.064 0.2773-0.1386 0.6027-0.224 0.976-0.0853 0.3733-0.128 0.7093-0.128 1.008 0 0.2667 0.1014 0.4747 0.304 0.624 0.2027 0.1493 0.5707 0.224 1.104 0.224 0.32 0 0.5814-0.0267 0.784-0.08 0.2027-0.0533 0.368-0.1813 0.496-0.384 0.1387-0.2027 0.2614-0.5227 0.368-0.96 0.1067-0.448 0.2187-1.0667 0.336-1.856l1.216 0.224c-0.032 0.192-0.0746 0.4267-0.128 0.704-0.0426 0.2773-0.08 0.5547-0.112 0.832-0.032 0.2667-0.048 0.4907-0.048 0.672 0 0.1493 0.032 0.2933 0.096 0.432 0.0747 0.128 0.2134 0.2293 0.416 0.304 0.2134 0.0747 0.528 0.112 0.9444 0.112 0.458 0 0.826-0.0907 1.104-0.272 0.277-0.1813 0.416-0.5493 0.416-1.104 0-0.3947-0.096-0.9013-0.288-1.52-0.182-0.6187-0.39-1.23199-0.624-1.83999l1.296-0.48c0.128 0.352 0.256 0.74667 0.384 1.184 0.128 0.42669 0.234 0.85329 0.32 1.27999 0.085 0.4267 0.128 0.8 0.128 1.12 0 0.992-0.246 1.7333-0.736 2.224-0.491 0.48-1.163 0.72-2.016 0.72-0.587 0-1.051-0.0747-1.3924-0.224-0.3306-0.16-0.5706-0.4053-0.72-0.736-0.256 0.3947-0.5653 0.656-0.928 0.784-0.352 0.1173-0.8533 0.176-1.504 0.176-0.224 0-0.464-0.0267-0.72-0.08-0.2453-0.0533-0.4746-0.1547-0.688-0.304-0.2133-0.16-0.3786-0.3947-0.496-0.704-0.2773 0.4693-0.624 0.768-1.04 0.896-0.4053 0.128-0.9066 0.192-1.504 0.192zm17.3524 0c-0.864 0-1.52-0.096-1.968-0.288-0.448-0.192-0.757-0.4907-0.928-0.896-0.17-0.4053-0.266-0.928-0.288-1.568l-0.32-8.75199h1.312l0.32 8.23999c0.022 0.5227 0.07 0.928 0.144 1.216 0.086 0.2773 0.267 0.4693 0.544 0.576 0.288 0.1067 0.736 0.16 1.344 0.16 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.074 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208zm0.151 0l0.16-1.312c0.512 0 0.922-0.032 1.232-0.096 0.32-0.064 0.549-0.192 0.688-0.384 0.138-0.2027 0.208-0.5013 0.208-0.896 0-0.3947-0.096-0.9013-0.288-1.52-0.182-0.6187-0.39-1.23199-0.624-1.83999l1.296-0.48c0.138 0.352 0.266 0.74667 0.384 1.184 0.128 0.42669 0.234 0.85329 0.32 1.27999 0.085 0.4267 0.128 0.8 0.128 1.12 0 1.0773-0.288 1.84-0.864 2.288-0.566 0.4373-1.446 0.656-2.64 0.656zm1.712 2.976c-0.224 0-0.416-0.08-0.576-0.24-0.15-0.1493-0.224-0.3307-0.224-0.544 0-0.2133 0.074-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.213 0 0.394 0.08 0.544 0.24 0.16 0.16 0.24 0.3467 0.24 0.56 0 0.2133-0.08 0.3947-0.24 0.544-0.15 0.16-0.331 0.24-0.544 0.24zm12.107 3.248c-0.576 0-1.173-0.0693-1.792-0.208-0.619-0.128-1.195-0.3573-1.728-0.688-0.533-0.32-0.971-0.7573-1.312-1.312-0.331-0.544-0.496-1.232-0.496-2.064 0-0.864 0.197-1.664 0.592-2.4 0.395-0.7467 0.939-1.4027 1.632-1.968-0.533-0.224-0.965-0.576-1.296-1.056-0.331-0.48-0.496-1.0027-0.496-1.568 0-0.66132 0.155-1.21599 0.464-1.66399 0.32-0.45867 0.725-0.8 1.216-1.024 0.501-0.224 1.029-0.336 1.584-0.336 0.512 0 1.04 0.08533 1.584 0.256l-0.272 1.232c-0.448-0.11733-0.885-0.176-1.312-0.176-0.587 0-1.067 0.15467-1.44 0.464-0.363 0.29867-0.544 0.68267-0.544 1.152 0 0.31999 0.101 0.60799 0.304 0.86399 0.213 0.2453 0.469 0.4533 0.768 0.624 0.299 0.16 0.587 0.2667 0.864 0.32 0.832-0.416 1.744-0.7093 2.736-0.88l0.336 1.248c-1.045 0.192-1.973 0.5013-2.784 0.928-0.811 0.4267-1.451 0.96-1.92 1.6-0.469 0.64-0.704 1.3707-0.704 2.192 0 0.6293 0.128 1.1467 0.384 1.552 0.256 0.416 0.587 0.736 0.992 0.96 0.416 0.2347 0.853 0.4 1.312 0.496 0.469 0.096 0.912 0.144 1.328 0.144 0.565 0 1.141-0.0533 1.728-0.16 0.587-0.096 1.12-0.2453 1.6-0.448l0.416 1.12c-0.256 0.128-0.597 0.2507-1.024 0.368-0.416 0.128-0.864 0.2293-1.344 0.304-0.48 0.0853-0.939 0.128-1.376 0.128zm4.103-13.75999c-0.427 0-0.71-0.13867-0.848-0.416-0.139-0.288-0.208-0.592-0.208-0.912 0-0.11733 0.005-0.24 0.016-0.368 0.021-0.13867 0.048-0.29333 0.08-0.464l0.8-0.224c-0.064 0.36267-0.096 0.66667-0.096 0.912 0 0.39467 0.133 0.592 0.4 0.592 0.16 0 0.293-0.08 0.4-0.24 0.106-0.17067 0.165-0.50667 0.176-1.008v-0.48l0.768-0.288v0.976c0 0.14933 0.026 0.28267 0.08 0.4 0.064 0.10667 0.192 0.16 0.384 0.16s0.32-0.05867 0.384-0.176c0.064-0.11733 0.096-0.26667 0.096-0.448s-0.022-0.36267-0.064-0.544c-0.043-0.192-0.102-0.37867-0.176-0.56l0.72-0.224c0.106 0.21333 0.192 0.448 0.256 0.704 0.074 0.256 0.112 0.49067 0.112 0.704 0 0.352-0.102 0.672-0.304 0.96-0.192 0.27733-0.496 0.416-0.912 0.416-0.342 0-0.619-0.096-0.832-0.288-0.096 0.24533-0.256 0.44267-0.48 0.592-0.214 0.14933-0.464 0.224-0.752 0.224zm-1.118 11.16799l-0.464-1.216c1.035-0.3413 1.84-0.7467 2.416-1.216 0.587-0.4693 0.998-0.96 1.232-1.472 0.246-0.5227 0.368-1.0293 0.368-1.52 0-0.5227-0.117-1.0507-0.352-1.584-0.224-0.544-0.474-1.056-0.752-1.536l1.168-0.59199c0.299 0.56529 0.55 1.10929 0.752 1.63199 0.214 0.5227 0.379 0.9813 0.496 1.376 0.15 0.4587 0.342 0.7733 0.576 0.944 0.246 0.16 0.576 0.24 0.992 0.24 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.074 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208-0.405 0-0.746-0.064-1.024-0.192-0.266-0.128-0.485-0.2987-0.656-0.512-0.106 0.5973-0.33 1.1413-0.672 1.632-0.341 0.4907-0.741 0.9173-1.2 1.28-0.458 0.3733-0.928 0.6773-1.408 0.912-0.48 0.2347-0.917 0.4053-1.312 0.512zm6.43-3.632l0.16-1.312c0.448 0 0.8-0.0373 1.056-0.112 0.256-0.0853 0.448-0.24 0.576-0.464 0.139-0.2347 0.256-0.5707 0.352-1.008 0.096-0.4373 0.213-1.008 0.352-1.712l1.248 0.24c-0.064 0.288-0.139 0.6187-0.224 0.992-0.075 0.3733-0.112 0.688-0.112 0.944 0 0.2133 0.048 0.4053 0.144 0.576 0.096 0.1707 0.299 0.304 0.608 0.4 0.32 0.096 0.816 0.144 1.488 0.144 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.075 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208-0.843 0-1.467-0.0907-1.872-0.272-0.405-0.1813-0.683-0.4533-0.832-0.816-0.32 0.448-0.688 0.7413-1.104 0.88-0.416 0.1387-0.976 0.208-1.68 0.208zm2.72 2.976c-0.224 0-0.416-0.08-0.576-0.24-0.149-0.1493-0.224-0.3307-0.224-0.544 0-0.2133 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.213 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.3467 0.24 0.56 0 0.2133-0.08 0.3947-0.24 0.544-0.149 0.16-0.331 0.24-0.544 0.24zm2.914-2.976l0.16-1.312c0.534 0 0.95-0.0373 1.248-0.112 0.299-0.0853 0.523-0.24 0.672-0.464 0.16-0.2347 0.288-0.5707 0.384-1.008 0.096-0.4373 0.214-1.008 0.352-1.712l1.248 0.24c-0.064 0.288-0.138 0.6187-0.224 0.992-0.074 0.3733-0.112 0.688-0.112 0.944 0 0.16 0.011 0.3093 0.032 0.448 0.022 0.1387 0.102 0.256 0.24 0.352 0.139 0.096 0.374 0.176 0.704 0.24 0.331 0.0533 0.806 0.08 1.424 0.08 0.224 0 0.384 0.064 0.48 0.192 0.107 0.1173 0.16 0.2613 0.16 0.432 0 0.1707-0.074 0.3307-0.224 0.48-0.149 0.1387-0.341 0.208-0.576 0.208-0.693 0-1.237-0.0373-1.632-0.112-0.384-0.0853-0.672-0.2027-0.864-0.352-0.181-0.16-0.314-0.3573-0.4-0.592-0.309 0.4373-0.693 0.7253-1.152 0.864-0.448 0.128-1.088 0.192-1.92 0.192zm4.272-6.25599c-0.224 0-0.416-0.07467-0.576-0.224-0.149-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.214 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.149 0.14933-0.33 0.224-0.544 0.224zm-2.192 0c-0.224 0-0.416-0.07467-0.576-0.224-0.149-0.16-0.224-0.34667-0.224-0.56 0-0.21333 0.075-0.4 0.224-0.56 0.16-0.16 0.352-0.24 0.576-0.24 0.214 0 0.395 0.08 0.544 0.24 0.16 0.16 0.24 0.34667 0.24 0.56 0 0.21333-0.08 0.4-0.24 0.56-0.149 0.14933-0.33 0.224-0.544 0.224zm4.039 6.25599l0.144-1.312c0.608 0 1.035-0.0587 1.28-0.176 0.246-0.1173 0.384-0.32 0.416-0.608 0.043-0.2987 0.054-0.72 0.032-1.264l-0.304-8.14399h1.296l0.32 7.99999c0.032 0.7573-0.021 1.3973-0.16 1.92-0.128 0.5227-0.426 0.9173-0.896 1.184-0.458 0.2667-1.168 0.4-2.128 0.4zm5.778-0.08l-0.32-11.42399h1.296l0.32 11.42399h-1.296z" android:fillColor="#ffffff"/>
|
|
14
|
-
</vector>
|