This is the GPLv3-licensed release!

The content of this commit is identical to the non-public commit ce1f738dec8c75824f6f1279681fffccedf42d90.
This commit is contained in:
Andreas Schildbach 2018-07-16 17:10:02 +02:00
commit 77d49b939b
366 changed files with 30271 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
.gradle
local.properties
build/

4
.gitmodules vendored Normal file
View file

@ -0,0 +1,4 @@
[submodule "public-transport-enabler"]
path = public-transport-enabler
url = https://gitlab.com/oeffi/public-transport-enabler.git
branch = oeffi

21
build.gradle Normal file
View file

@ -0,0 +1,21 @@
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath('fr.avianey.androidsvgdrawable:gradle-plugin:3.0.0') {
exclude group: 'xerces'
}
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
}

1
enabler Symbolic link
View file

@ -0,0 +1 @@
public-transport-enabler/enabler

1
gradle.properties Normal file
View file

@ -0,0 +1 @@
org.gradle.jvmargs=-Xmx2048M

6
oeffi/.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
/.classpath
/.project
/.settings/
/bin/
/gen/
/res/mipmap-*/

384
oeffi/AndroidManifest.xml Normal file
View file

@ -0,0 +1,384 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright the original author or authors.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="de.schildbach.oeffi"
android:versionCode="610"
android:versionName="10.0-aosp" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="27" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.READ_CALENDAR" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<uses-feature
android:name="android.hardware.location.gps"
android:required="false" />
<uses-feature
android:name="android.hardware.location.network"
android:required="false" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<application
android:name=".Application"
android:allowBackup="true"
android:icon="@mipmap/ic_oeffi_stations_color_48dp"
android:label="@string/app_name"
android:theme="@style/My.Theme.Light" >
<activity android:name=".PreferencesActivity" />
<activity android:name=".AboutActivity" />
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="de.schildbach.oeffi"
android:exported="false"
android:grantUriPermissions="true" >
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_provider" />
</provider>
<activity
android:name=".network.NetworkPickerActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:label="@string/network_picker_activity_title" />
<activity
android:name=".stations.StationsActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:label="@string/stations_icon_label"
android:launchMode="singleTop"
android:taskAffinity="de.schildbach.oeffi.stations" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<!-- thrown by google maps when starting navigation -->
<intent-filter android:label="@string/stations_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="google.navigation" />
</intent-filter>
<!-- thrown by google now gesture -->
<intent-filter android:label="@string/stations_intentfilter_title" >
<action android:name="android.intent.action.ASSIST" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data
android:name="android.app.default_searchable"
android:value=".stations.StationsActivity" />
<meta-data
android:name="android.app.searchable"
android:resource="@xml/stations_searchable" />
</activity>
<activity
android:name=".stations.StationDetailsActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:label="@string/station_details_activity_title"
android:taskAffinity="de.schildbach.oeffi.stations" >
<intent-filter android:label="@string/stations_station_details_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="oeffi.schildbach.de"
android:pathPrefix="/station/"
android:scheme="http" />
</intent-filter>
<intent-filter android:label="@string/stations_station_details_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="qr.bvg.de"
android:pathPrefix="/h"
android:scheme="http" />
</intent-filter>
<intent-filter android:label="@string/stations_station_details_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="mobil.s-bahn-berlin.de"
android:path="/"
android:scheme="http" />
</intent-filter>
<intent-filter android:label="@string/stations_station_details_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="wap.rmv.de"
android:pathPrefix="/mobil/tag/request.do"
android:scheme="http" />
</intent-filter>
<intent-filter android:label="@string/stations_station_details_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="m.vrn.de"
android:scheme="http" />
</intent-filter>
<intent-filter android:label="@string/stations_station_details_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="www.mvg-live.de"
android:pathPrefix="/qr"
android:scheme="http" />
</intent-filter>
<intent-filter android:label="@string/stations_station_details_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="www.rheinbahn.de"
android:pathPrefix="/QRBarcode/HS"
android:scheme="http" />
</intent-filter>
<intent-filter android:label="@string/stations_station_details_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="mobil.vvs.de"
android:pathPrefix="/mob/DMR"
android:scheme="http" />
</intent-filter>
<intent-filter android:label="@string/stations_station_details_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="m.qando.at"
android:pathPrefix="/qr"
android:scheme="http" />
</intent-filter>
</activity>
<activity
android:name=".stations.DecodeForeignActivity"
android:launchMode="singleInstance"
android:taskAffinity="de.schildbach.oeffi.stations"
android:theme="@style/My.Theme.Translucent" >
<intent-filter android:label="@string/stations_station_details_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="www.rmv.de"
android:pathPrefix="/t/d"
android:scheme="http" />
</intent-filter>
</activity>
<activity
android:name=".stations.FavoriteStationsActivity"
android:label="@string/stations_favorite_stations_title"
android:taskAffinity="de.schildbach.oeffi.stations" />
<provider
android:name=".stations.NetworkContentProvider"
android:authorities="de.schildbach.oeffi.networks"
android:exported="false" />
<provider
android:name=".stations.FavoriteStationsProvider"
android:authorities="de.schildbach.oeffi.stations.favorites"
android:exported="false" />
<receiver
android:name=".stations.NearestFavoriteStationWidgetProvider"
android:label="@string/nearest_favorite_station_widget_label" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/nearest_favorite_station_widget" />
</receiver>
<service
android:name=".stations.NearestFavoriteStationWidgetService"
android:permission="android.permission.BIND_JOB_SERVICE"
android:exported="false" />
<service
android:name=".stations.NearestFavoriteStationWidgetListService"
android:exported="false"
android:permission="android.permission.BIND_REMOTEVIEWS" />
<activity
android:name=".directions.DirectionsActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:icon="@mipmap/ic_oeffi_directions_color_48dp"
android:label="@string/directions_icon_label"
android:taskAffinity="de.schildbach.oeffi.directions"
android:windowSoftInputMode="stateHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- thrown by google calendar and qype radar -->
<intent-filter android:label="@string/directions_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="geo" />
</intent-filter>
<!-- thrown by google maps when starting navigation -->
<intent-filter android:label="@string/directions_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="google.navigation" />
</intent-filter>
<!-- thrown by google now -->
<intent-filter android:label="@string/directions_intentfilter_title" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="maps.google.com"
android:pathPrefix="/maps"
android:scheme="http" />
</intent-filter>
</activity>
<activity
android:name=".directions.TripsOverviewActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:taskAffinity="de.schildbach.oeffi.directions"
android:theme="@style/My.Theme.Dark" />
<activity
android:name=".directions.TripDetailsActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:label="@string/trip_details_title"
android:taskAffinity="de.schildbach.oeffi.directions" />
<activity
android:name=".directions.DirectionsShortcutActivity"
android:launchMode="singleInstance"
android:taskAffinity="de.schildbach.oeffi.directions"
android:theme="@style/My.Theme.Translucent" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<provider
android:name=".directions.QueryHistoryProvider"
android:authorities="de.schildbach.oeffi.directions.query_history"
android:exported="false" />
<activity
android:name=".plans.PlansPickerActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:icon="@mipmap/ic_oeffi_plans_color_48dp"
android:label="@string/plans_icon_label"
android:launchMode="singleTop"
android:taskAffinity="de.schildbach.oeffi.plans" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.default_searchable"
android:value=".plans.PlansPickerActivity" />
<meta-data
android:name="android.app.searchable"
android:resource="@xml/plans_searchable" />
</activity>
<activity
android:name=".plans.PlanActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:launchMode="singleTop"
android:taskAffinity="de.schildbach.oeffi.plans"
android:theme="@style/My.Theme.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.default_searchable"
android:value=".plans.PlanActivity" />
<meta-data
android:name="android.app.searchable"
android:resource="@xml/plan_searchable" />
</activity>
<provider
android:name=".plans.PlanContentProvider"
android:authorities="de.schildbach.oeffi.plans"
android:exported="false" />
</application>
</manifest>

6
oeffi/CHANGES Normal file
View file

@ -0,0 +1,6 @@
v10.0
* Öffi is now GPLv3 licensed!
The source code is available at https://gitlab.com/oeffi/oeffi
* The app now requires Android 4.1 (Jelly Bean) or higher.
This will make UI development easier in future.

621
oeffi/COPYING Normal file
View file

@ -0,0 +1,621 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS

View file

@ -0,0 +1,8 @@
# hints
hint-navigation-drawer | prefs-show-info:true limit-info:2d | once | info
hint-network-picker | prefs-show-info:true limit-info:2d | once | info
hint-landscape-orientation | prefs-show-info:true limit-info:2d | once | info
hint-qr-and-nfc | prefs-show-info:true limit-info:2d | once | info
hint-launcher-shortcuts | prefs-show-info:true limit-info:2d | once | info
hint-location-problems | prefs-show-info:true limit-info:2d | once | info
hint-drag-stations | prefs-show-info:true limit-info:2d min-version:546 task:stations | once | info

96
oeffi/assets/networks.txt Normal file
View file

@ -0,0 +1,96 @@
# networks.txt,1
# EU
RT|eu|DE;AT;CH;BE;LU;NL;DK;SE;NO;FI;GB;SI;HU;RO;BG;PL;SK;IT;ES;PT
# DE
DB|de-DE|DE
BVG|de-DE|Brandenburg;Berlin
VBB|de-DE|Brandenburg
BAYERN|de-DE|Bayern;Würzburg;Regensburg
AVV|de-DE|Augsburg
MVV|de-DE|Bayern;München
VGN|de-DE|Nürnberg;Fürth;Erlangen
VVM|de-DE|Schwaben;Mittelschwaben;Krumbach;Günzburg;Memmingen
NVV|de-DE|Hessen;Frankfurt am Main;Kassel
VMV|de-DE|Mecklenburg-Vorpommern;Schwerin
HVV|de-DE|Hamburg|disabled
SH|de-DE|Schleswig-Holstein;Kiel;Lübeck;Hamburg
GVH|de-DE|Niedersachsen;Hannover;Hamburg
BSVAG|de-DE|Braunschweig;Wolfsburg
VBN|de-DE|Niedersachsen;Bremen;Bremerhaven;Oldenburg (Oldenburg);Osnabrück;Göttingen;Rostock
VVO|de-DE|Sachsen;Dresden
VMS|de-DE|Mittelsachsen;Chemnitz
NASA|de-DE|Sachsen;Leipzig;Sachsen-Anhalt;Magdeburg;Halle
VMT|de-DE|Thüringen;Mittelthüringen;Erfurt;Jena;Gera;Weimar;Gotha
VRR|de-DE|Nordrhein-Westfalen;Essen;Dortmund;Düsseldorf;Münster;Paderborn;Höxter;Bielefeld
VRS|de-DE|Köln;Bonn
MVG|de-DE|Märkischer Kreis;Lüdenscheid
VRN|de-DE|Baden-Württemberg;Rheinland-Pfalz;Mannheim;Mainz;Trier
VVS|de-DE|Baden-Württemberg;Stuttgart
DING|de-DE|Baden-Württemberg;Ulm;Neu-Ulm
KVV|de-DE|Baden-Württemberg;Karlsruhe
VAGFR|de-DE|Elsass;Bas-Rhin;Straßburg;Freiburg im Breisgau
NVBW|de-DE|Baden-Württemberg;Konstanz;Basel;Basel-Stadt;Reutlingen;Rottweil;Tübingen;Sigmaringen
VVV|de-DE|Vogtland;Plauen
VGS|de-DE|Saarland;Saarbrücken|disabled
# AT
OEBB|de-AT|AT
WIEN|de-AT|Wien
LINZ|de-AT|Oberösterreich;Linz
STV|de-AT|Steiermark;Graz;Marburg;Maribor;Klagenfurt
VOR|de-AT|Niederösterreich;Burgenland;Wien|disabled
OOEVV|de-AT|Oberösterreich|disabled
VVT|de-AT|Tirol|disabled
SVV|de-AT|Salzburg|disabled
VMOBIL|de-AT|Vorarlberg;Bregenz|disabled
# CH
SBB|de-CH|CH
VBL|de-CH|Luzern
ZVV|de-CH|Zürich
# IT
IT|it-IT|IT|alpha
# FR
PARIS|fr-FR|FR|alpha
# BE
SNCB|be-BE|BE|alpha
# LU
LU|lb-LU|LU;Luxemburg
# NL
NS|nl-NL|NL;Amsterdam|alpha
# DK
DSB|da-DK|DK;København
# SE
SE|sv-SE|SE;Stockholm
# NO
NRI|no-NO|NO;Oslo;Bergen
# GB
TLEM|en-UK|GB;Greater London;Derbyshire;Leicestershire;Rutland;Northamptonshire;Nottinghamshire;Lincolnshire;Berkshire;Buckinghamshire;East Sussex;Hampshire;Isle of Wight;Kent;Oxfordshire;Surrey;West Sussex;Essex;Hertfordshire;Bedfordshire;Cambridgeshire;Norfolk;Suffolk;Somerset;Gloucestershire;Wiltshire;Dorset;Devon;Cornwall;West Devon;Stowford;Eastleigh;Swindon;Gloucester;Plymouth;Torbay;Bournemouth;Poole;Birmingham
MERSEY|en-UK|GB;Liverpool|beta
# IE
TFI|ga-IE|IE;Dublin;GB;Belfast
# PL
PL|pl-PL|PL;Warschau
# AE
DUB|ae-AE|AE;Dubai|beta
# US
RTACHICAGO|us-US|US;Illinois;Chicago|beta
# AU
SYDNEY|en-AU|AU;New South Wales;Sydney
MET|en-AU|AU;Victoria;Melbourne|disabled

View file

@ -0,0 +1,309 @@
# plans-index.txt,1
# id|location|valid_from|name|disclaimer|external_uri
# de
#!group:berlin|52.521165,13.413318|Berlin
berlin_bsu_ab|52.520134,13.388018|2016-01-15|Berlin Schnellbahn Liniennetz (AB)|Berliner Verkehrsbetriebe||BVG
berlin_bsu_abc|52.520134,13.388018|2016-01-15|Berlin Schnellbahn Liniennetz (ABC)|Berliner Verkehrsbetriebe||BVG
berlin_bsu_abc_arabic|52.520134,13.388018|2015-12-13|Berlin Schnellbahn Liniennetz arabisch (معلومات عن وسائل النقل العام في مدينة برلين)|Berliner Verkehrsbetriebe und „Moabit hilft!“||BVG
berlin_tram|52.521152,13.412832|2016-02-21|Berlin Tram-Netz|Berliner Verkehrsbetriebe||BVG
berlin_nacht|52.520134,13.388018|2014|Berlin Nachtverkehr|Berliner Verkehrsbetriebe||BVG
# berlin_anbindung_ber|52.363127,13.50498|2011-10|Berlin Brandenburg Flughafen Anbindung|Robert Aehnelt, Creative Commons|http://upload.wikimedia.org/wikipedia/commons/d/d3/Anbindung_BER.png
#!group:
brandenburg_regionalverkehr|52.525578,13.369523|2015-12-13|Brandenburg Regionalverkehr|Verkehrsverbund Berlin-Brandenburg ||VBB
potsdam_tag|52.390931,13.067171|2015-12-13|Potsdam Tagesliniennetz|Verkehrsverbund Berlin-Brandenburg ||VBB
potsdam_nacht|52.390931,13.067171|2015-12-13|Potsdam Nachtliniennetz|Verkehrsverbund Berlin-Brandenburg ||VBB
cottbus_tag_abc|51.760897,14.330106|2015-12-13|Cottbus Tageslinien ABC|Verkehrsverbund Berlin-Brandenburg ||VBB
cottbus_abend|51.760897,14.330106|2015-12-13|Cottbus Abendlinien|Verkehrsverbund Berlin-Brandenburg ||VBB
frankfurt_oder_abc|52.336876,14.545712|2015-12-13|Frankfurt (Oder) ABC|Verkehrsverbund Berlin-Brandenburg ||VBB
greifswald|54.092863,13.370336|2015-12|Greifswald Liniennetz|Stadtwerke Greifswald
dresden|51.050961,13.733239|2016-03-20|Dresden Liniennetz|Dresdner Verkehrsbetriebe AG
dresden_nacht|51.050961,13.733239|2015-01-05|Dresden Nachtverkehr|dvb.de
# dresden_sbahn|51.050961,13.733239|2008-01|Dresden S-Bahn|Maximilian Dörrbecker, Wikimedia Commons|http://upload.wikimedia.org/wikipedia/commons/9/99/Dresden_-_S-Bahn_-_Liniennetz.png
leipzig_halle_schnellbahn|51.423347,12.220980|2015-12-13|Leipzig/Halle Schnellbahn|Mitteldeutscher Verkehrsverbund GmbH
leipzig_tag|51.345476,12.379382|2015-11-28|Leipzig Linien Tag|Leipziger Verkehrsbetriebe GmbH
leipzig_nacht|51.345476,12.379382|2015-11-28|Leipzig Linien Nacht|Leipziger Verkehrsbetriebe GmbH
halle_tag|51.477347,11.985263|2016-05-02|Halle Linien Tag|SWH/HAVAG
halle_nacht|51.477347,11.985263|2016-05-02|Halle Linien Nacht|SWH/HAVAG
muenchen_schnellbahn|48.140377,11.560643|2016-12-11|München Schnellbahn|MVV
muenchen_tram_metrobus|48.140377,11.560643|2016-12-11|München Tram/MetroBus|MVV/MVG
muenchen_nacht|48.140377,11.560643|2016-12-11|München Nachtnetz|MVG
ingolstadt_tag|48.74462,11.437987|2014-12-14|Ingolstadt Liniennetz|Ingolstädter Verkehrsgesellschaft mbH
ingolstadt_nacht|48.74462,11.437987|2014-12-14|Ingolstadt Nachtliniennetz|Ingolstädter Verkehrsgesellschaft mbH
augsburg|48.364936,10.893713|2015-12|Augsburg Innenraum|AVV GmbH
augsburg_nachtbus|48.364936,10.893713|2015-12|Augsburg Nachtbus|AVV GmbH
ulm_stadt|48.398610,9.983322|2014-12|Ulm / Neu-Ulm Stadtnetz|Donau-Iller-Nahverkehrsverbund GmbH
ulm_regional|48.398610,9.983322|2014-11-06|Ulm Regionalnetz|Donau-Iller-Nahverkehrsverbund GmbH
nuernberg_gesamtraum|49.445719,11.082618|2016-12-11|Nürnberg Schienennetz Gesamtraum|Verkehrsverbund Großraum Nürnberg||VGN
nuernberg_schiene|49.445719,11.082618|2016-12-11|Nürnberg, Fürth Schienennetz|Verkehrsverbund Großraum Nürnberg||VGN
nuernberg_nightliner|49.445719,11.082618|2016-12-11|Nürnberg, Fürth Nightliner|Verkehrsverbund Großraum Nürnberg||VGN
fuerth_verkehrsnetz|49.469832,10.990178|2016-12-11|Fürth Verkehrsnetz|Verkehrsverbund Großraum Nürnberg||VGN
erlangen_verkehrsnetz|49.595851,11.001701|2016-12-11|Erlangen Verkehrsnetz|Verkehrsverbund Großraum Nürnberg||VGN
bayreuth_tag|49.949701,11.579951|2016-10-12|Bayreuth Tag|Verkehrsverbund Großraum Nürnberg||VGN
bayreuth_nacht|49.949701,11.579951|2016-10-12|Bayreuth Spät|Verkehrsverbund Großraum Nürnberg||VGN
bamberg|49.900716,10.899453|2013-09-12|Bamberg Liniennetz|Stadtwerke Bamberg
coburg_liniennetz|50.262975,10.957691|2015-06-18|Coburg Liniennetz|SÜC
regensburg|49.011489,12.09971|2014-12-14|Regensburg Liniennetzplan|Regensburger Verkehrsverbund GmbH & Co. KG
hamburg_usar|53.552946,10.006782|2015-12-13|Hamburg Schnellbahn/Regional|HVV
hamburg_metrobus_gross|53.552946,10.006782|2015-12-13|Hamburg MetroBus Großbereich|HVV
kiel_liniennetz|54.313282,10.132341|2015-02|Kiel Liniennetz|KVG
kiel_nacht|54.313282,10.132341|2014-09-01|Kiel Nachtliniennetz|KVG
rostock_vvw_liniennetz|54.078139,12.131724|2016-01-04|Rostock Liniennetz|Verkehrsverbund Warnow
rostock_vvw_region|54.078139,12.131724|2016-01-04|Rostock Region|Verkehrsverbund Warnow
rostock_region|54.078139,12.131724|2016-09-05|Rostock und Umgebung|Lucas Weiss, CC-BY-NC-SA 4.0
wismar|53.903943,11.391928||Wismar Stadtverkehr|NAHBUS Nordwestmecklenburg GmbH
nordwestmecklenburg|53.903943,11.391928|2016-03-14|Nordwestmecklenburg Busnetz|NAHBUS Nordwestmecklenburg GmbH
osnabrueck|52.272832,8.061726|2015-09-03|Osnabrück Liniennetz|Stadtwerke Osnabrück
osnabrueck_nacht|52.272832,8.061726|2015-09-03|Osnabrück NachtBus-Netz|Stadtwerke Osnabrück
stuttgart_verbund|48.784068,9.181713|2016-06|Stuttgart Verbund-Liniennetz|Verkehrs- und Tarifverbund Stuttgart GmbH
stuttgart_nacht|48.77861,9.179803|2016-05|Stuttgart Nachtverkehr|Verkehrs- und Tarifverbund Stuttgart GmbH
ringzug|48.113621,8.660603|2013-08|Ringzug|Zweckverband Ringzug
hannover_stadtbahn|52.376715,9.741168|2014-12|Hannover Stadtbahnnetz|GVH
hannover_bus|52.376715,9.741168|2014-12|Hannover Busnetz|GVH
hannover_regional|52.376715,9.741168|2014-12|Hannover Regional- und S-Bahn-Linien|GVH
celle_stadt|52.620411,10.059814|2015-04|Celle Liniennetz Stadt|CeBus
celle_region|52.620411,10.059814|2015-04|Celle Liniennetz Region|CeBus
goettingen|51.536290,9.926981|2014-11|Göttingen Liniennetz|Göttinger Verkehrsbetriebe GmbH
goettingen_nacht|51.536290,9.926981||Göttingen Nachtliesel|Göttinger Verkehrsbetriebe GmbH
bielefeld|52.029241,8.532835|2015-12|Bielefeld Gesamtnetz|moBiel
bielefeld_nacht|52.029241,8.532835|2015-10|Bielefeld Nachtbus|moBiel
essen_schiene|51.451355,7.014793|2015-06-14|Essen SchienenNetz|EVAG
essen_tag|51.451355,7.014793|2015-06-14|Essen TagNetz|EVAG
essen_nacht|51.451355,7.014793|2013-06-09|Essen NachtNetz|EVAG
krefeld_stadt|51.323714,6.565800|2013-06|Krefeld Liniennetz Stadt|SWK/VRR
krefeld_stadt_nacht|51.323714,6.565800|2013-06|Krefeld Nachtnetz|SWK/VRR
frankfurt_liniennetz|50.106318,8.662139|2015-12-13|Frankfurt am Main Liniennetz|traffiQ
frankfurt_flughafen_bus|50.037936,8.559958|2015-12-13|Frankfurt Flughafen Buslinien|traffiQ
rmv_schnellbahn|50.106318,8.662139|2015-12-13|Rhein-Main Schnellbahn|Rhein-Main-Verkehrsverbund GmbH|https://www.rmv.de/linkableblob/de/31950-51502/original/RMV-Schnellbahnplan.jpg
rmv_regional|50.106318,8.662139|2015-12-13|Rhein-Main Regional|Rhein-Main-Verkehrsverbund GmbH|https://www.rmv.de/linkableblob/de/31368-27837/original/Regionaler_Schienennetzplan.gif
rmv_nachtbus|50.106318,8.662139|2015-11|Rhein-Main Nachtbus|www.nachtbus-frankfurt.de
mainz|50.001395,8.258818|2014-11-03|Mainz|Mainzer Verkehrsgesellschaft mbH
koeln_schnellverkehr|50.943579,6.95796|2016-12-11|Köln Schnellverkehr|Verkehrsverbund Rhein-Sieg GmbH
koeln_bus|50.943579,6.95796|2016-12-11|Köln Busnetz|Verkehrsverbund Rhein-Sieg GmbH
bonn_schnellverkehr|50.732784,7.096447|2016-12-11|Bonn Schnellverkehr|Verkehrsverbund Rhein-Sieg GmbH
bonn_bus|50.732784,7.096447|2016-12-11|Bonn Busnetz|Verkehrsverbund Rhein-Sieg GmbH
leverkusen_bus|51.036197,6.994385|2015-12-13|Leverkusen Busnetz|Verkehrsverbund Rhein-Sieg GmbH
nrw_regio|51.429807,6.775253|2015-12|NRW Busse & Bahnen|VRS
aachen_schnellverkehr|50.768399,6.090705|2016-06|Aachen Schnellverkehr|Aachener Verkehrsverbund GmbH
aachen_region|50.768399,6.090705|2015-12|Aachen Region, Bus und Bahn|Aachener Verkehrsverbund GmbH
darmstadt|49.872582,8.630916|2016-12-11|Darmstadt Stadt|Darmstadt-Dieburger Nahverkehrsorganisation
darmstadt_nacht|49.872582,8.630916|2016-12-11|Darmstadt NightLiner|Darmstadt-Dieburger Nahverkehrsorganisation
schwerin|53.634476,11.407313|2015-03|Schwerin Liniennetz|Nahverkehr Schwerin GmbH
magdeburg_tag|52.130783,11.627347|2016-09-12|Magdeburg Liniennetz|Magdeburger Regionalverkehrsverbund
magdeburg_nacht|52.130783,11.627347|2016-01-07|Magdeburg Nacht-Liniennetz|Magdeburger Regionalverkehrsverbund
magdeburg_verbund|52.130783,11.627347|2016-08|Magdeburg Verbund-Liniennetz|Magdeburger Regionalverkehrsverbund
hagen|51.362675,7.461087|2010-06-13|Hagen Liniennetz|Hagener Straßenbahn AG
braunschweig_gesamt|52.252187,10.539705|2014-11-28|Braunschweig Gesamtnetz|Braunschweiger Verkehrs-AG
braunschweig_innenstadt|52.263931,10.526361|2014-11-28|Braunschweig Innenstadt|Braunschweiger Verkehrs-AG
salzgitter|52.15116,10.332488|2015-12|Salzgitter Liniennetz|KVG Braunschweig
wolfenbuettel|52.15898,10.532012|2015-12|Wolfenbüttel Liniennetz|KVG Braunschweig
helmstedt|52.222331,11.010690|2015-12|Helmstedt Liniennetz|KVG Braunschweig
harz|51.888518,10.554843|2015-12|Harz Liniennetz|KVG Braunschweig
wolfsburg|52.429484,10.788249|2015-04-13|Wolfsburg Liniennetz|WVG
karlsruhe_liniennetz|48.993988,8.400328|2016-12-11|Karlsruhe Liniennetz|Karlsruher Verkehrsverbund||KVV
karlsruhe_regio|48.993988,8.400328|2016-12-11|Karlsruhe Regionalverkehr|Karlsruher Verkehrsverbund||KVV
karlsruhe_bus|49.009498,8.404073|2016-12-11|Karlsruhe Busnetz|Karlsruher Verkehrsverbund||KVV
karlsruhe_nightliner|49.009498,8.404073|2015-11-13|Karlsruhe Nightliner|Karlsruher Verkehrsverbund||KVV
freiburg_liniennetz|47.996556,7.840286|2015-12-11|Freiburg Liniennetz|Freiburger Verkehrs AG||VAGFR
freiburg_nacht|47.996556,7.840286|2015-12-11|Freiburg Nachtbus|Freiburger Verkehrs AG||VAGFR
freiburg_regio|47.996556,7.840286|2015-12|Freiburg Regio|RVF
freiburg_tarifzonen|47.996556,7.840286|2014-06|Freiburg Tarifzonen|RVF
freudenstadt_werktag|48.460501,8.428012|2014-03|Freudenstadt Liniennetz Werktags|vgf
freudenstadt_freizeit|48.460501,8.428012|2014-03|Freudenstadt Liniennetz Freizeit|vgf
mannheim_ludwigshafen|49.481844,8.459115|2016-06|Mannheim/Ludwigshafen Liniennetz|RNV GmbH
ludwigshafen_nacht|49.4769784,8.4300132|2015-03|Ludwigshafen Nachtbus|RNV GmbH
heidelberg|49.403434,8.676352|2016-06|Heidelberg Liniennetz|RNV GmbH
heidelberg_nacht|49.403434,8.676352||Heidelberg Nachtlinien|RNV GmbH
rhein_neckar_regio|49.481844,8.459115|2016-06|Rhein-Neckar Regionalverkehr|RNV GmbH
# at
linz|48.290893,14.291965|2016-09|Linz Verkehrslinienplan|Linz AG
linz_nacht|48.290893,14.291965||Linz Nachtverkehr|Linz AG|http://www.linzag.at/cms/media/linzagwebsite/images_3/mobilittverkehr/Plan_Nachtlinien.jpg
innsbruck_liniennetz|47.26332,11.400951|2014-12|Innsbruck Liniennetz|Innsbrucker Verkehrsbetriebe GmbH
innsbruck_tram|47.26332,11.400951|2012-12-15|Innsbruck Straßenbahn|Steve Stipsits|http://www.public-transport.at/netzplan_innsbruck_gross_aktuell.gif
graz|47.073371,15.416154|2015-09-12|Graz Liniennetz|Verbund Linie
graz_sbahn|47.073371,15.416154|2014-12-14|Graz S-Bahn|ÖBB/STB||OEBB
graz_nightline|47.073371,15.416154|2015-09-12|Graz Nightline|Verbund Linie
wien_susb|48.209477,16.371074|2015-12-13|Wien Netzplan|Ben Lode
wien_tram|48.209477,16.371074|2015-12-13|Wien Straßenbahn|Ben Lode
wien_nacht|48.209477,16.371074|2015-12-13|Wien Nachtnetz|Ben Lode
wien_city|48.209477,16.371074|2015-05-19|Wien City|Wiener Linien
wien_gesamt|48.209477,16.371074|2016-01|Wien Gesamtnetz|Wiener Linien
wien_grossraum|48.209477,16.371074|2015-12-13|Wien Großraum Nahverkehr|ÖBB||OEBB
salzburg|47.813229,13.045907|2015-10-28|Salzburg Liniennetz|Salzburg AG
# ch
basel|47.553021,7.591031|2014-12|Basel Liniennetz|tnw Tarifverbund Nordwestschweiz
zvv|47.378136,8.540232|2015-12|ZVV Netzplan|Zürcher Verkehrsverbund/PostAuto Region Zürich
zvv_nacht|47.378136,8.540232|2015-12|ZVV Nachtnetz|Zürcher Verkehrsverbund/PostAuto Region Zürich
zuerich_stadt|47.378136,8.540232|2015-12|Zürich Stadt|ZVV/VBZ
zuerich_nacht|47.378136,8.540232|2015-12|Zürich Nachtnetz|Zürcher Verkehrsverbund/PostAuto Region Zürich
winterthur_stadt|47.500334,8.72342|2015-12|Winterthur Stadt|Zürcher Verkehrsverbund/PostAuto Region Zürich
winterthur_nacht|47.500334,8.72342|2015-12|Winterthur Nachtnetz|Zürcher Verkehrsverbund/PostAuto Region Zürich
bern|46.948748,7.439239|2014-12|Bern Liniennetz|BERNMOBIL
luzern|47.050023,8.310404|2014-12-14|Luzern Liniennetz|Passepartout Tarifverbund
# be
brussels|50.847293,4.361933|2015-09|Brussels|STIB-MIVB
brussels_metro|50.847293,4.361933|2015-04|Brussels Metro|STIB-MIVB
brussels_night|50.847293,4.361933|2015-07|Brussels Night Lines|STIB-MIVB
antwerp_tram|51.217197,4.421543|2015-04|Antwerp Tram|De Lijn
antwerp_city|51.217197,4.421543||Antwerp City Center|De Lijn
# nl
amsterdam_centre|52.378861,4.900392||Amsterdam City Centre|GVB
# dk
copenhagen_city|55.672717,12.562532||Copenhagen City|DOT
copenhagen_region|55.672717,12.562532||Copenhagen Greater Area|DOT
copenhagen_night|55.672717,12.562532|2015-02|Copenhagen Night Bus|DOT
# se
gothenburg_tram|57.708792,11.973538|2012-12-09|Göteborg Tram and Trunk Bus|västtrafik
gothenburg_commuter|57.708792,11.973538|2012-12-09|Göteborg Express Buses and Commuter Trains|västtrafik
gothenburg_ferry|57.708792,11.973538|2012-12-09|Göteborg Tram and Ferry|västtrafik
gothenburg_region|57.708792,11.973538|2012-12-09|Göteborg Region|västtågen
jonkoping_bus|57.784691,14.163508||Jonkoping Bus||http://transportmaps.free.fr/maps/Sweden/Jonkoping/map_Bus_Lines.jpg
jonkoping_map|57.784691,14.163508||Jonkoping Map||http://transportmaps.free.fr/maps/Sweden/Jonkoping/map_Bus_Map.jpg
linkoping_bus|58.416129,15.626714|2009-06-14|Linkoping Bus||http://transportmaps.free.fr/maps/Sweden/Linkoping/map_Bus.jpg
stockholm_train|59.329875,18.057218||Stockholm Train|Storstockholms Lokaltrafik|http://transportmaps.free.fr/maps/Sweden/Stockholm/map_All_Trains.jpg
# no
oslo_subway|59.910337,10.751746|2015-04-07|Oslo Subway|Truls Lange Civitas
oslo_tram|59.910337,10.751746|2015-10-19|Oslo Tram|Truls Lange Civitas
oslo_bus|59.910337,10.751746|2015-08-16|Oslo Bus|Truls Lange Civitas
oslo_bus_night|59.910337,10.751746|2015-08-16|Oslo Night Bus|Truls Lange Civitas
trondheim_bus|63.436476,10.398717||Trondheim Bus||http://transportmaps.free.fr/maps/Norway/Trondbeim/map_Bus.jpg
bergen_sentrum|60.390547,5.332593|2012-06-25|Bergen Sentrum|skyss
# fi
helsinki_centrum|60.171361,24.941214|2013-01-01|Helsinki Centrum|HSL HRT
helsinki_metro|60.171361,24.941214||Helsinki Metro|HSL HRT
# tr
istanbul_rail|41.011939,28.984308|2015-09|Istanbul Rail Transit|Maximilian Dörrbecker, CC BY-SA 2.5|https://upload.wikimedia.org/wikipedia/commons/8/87/Istanbul_Rapid_Transit_Map_with_Metrob%C3%BCs_%28schematic%29.png
# uk
london_tube|51.513507,-0.110264|2014-05|London Tube|TfL
london_overground|51.513507,-0.110264|2013-12|London Overground|TfL
london_rail|51.513507,-0.110264|2014-09|London Rail & Tube Services|TfL
london_night|51.513507,-0.110264|2014|London Night Bus|TfL
london_tramlink|51.37937,-0.101759|2014|London Tramlink|TfL|http://www.tfl.gov.uk/cdn/static/cms/documents/tramlink-network-map.jpg
manchester_metro|53.479754,-2.24272|2014|Manchester Metrolink|Transport for Greater Manchester
bath_bus|51.377628,-2.357004||Bath Bus Network|FWT|http://transportmaps.free.fr/maps/United_Kingdom/Bath/map_Bus_Network.jpg
bath_bus_city_center|51.377628,-2.357004||Bath Bus City Zone 1|FWT|http://transportmaps.free.fr/maps/United_Kingdom/Bath/map_City_Center_Bus.jpg
leeds_bus|53.795649,-1.548003||Leeds Bus Network|FWT|http://transportmaps.free.fr/maps/United_Kingdom/Leeds/map_Bus.jpg
newcastle_metro|54.972793,-1.604741||Newcastle Metro|Nexus
nottingham_bus_city_center|52.947042,-1.146276||Nottingham City Centre Bus/Tram|FWT|http://transportmaps.free.fr/maps/United_Kingdom/Nottingham/map_Bus_NCTX_Inner_City_Map.jpg
nottingham_bus_greater_area|52.947042,-1.146276||Nottingham Greater Area Bus||http://transportmaps.free.fr/maps/United_Kingdom/Nottingham/map_Greater_Nottingham_Buses.jpg
york|53.957911,-1.093061||York Bus||http://transportmaps.free.fr/maps/United_Kingdom/York/map_Bus.jpg
westmidlands_rail|52.477785,-1.898184||West Midlands Rail Network|
# it
milano_metro|45.484599,9.185281|2015-05|Milano Metro|Regione Lombardia
rome_metro|41.901276,12.499574||Rome Metro and Tram|atac
napoli_city|40.852780,14.271692||Napoli City|Unico Campania
napoli_region|40.852780,14.271692||Napoli Region|Unico Campania
# fr
paris_metro_ratp|48.855414,2.34488|2014-01|Paris Metro|RATP
paris_metro|48.855414,2.34488|2012-12|Paris Metro|Nathan Kaufmann, Creative Commons
# po
gdansk_tram|54.355338,18.644478|2008|Gdansk Tram|ZKM|http://transportmaps.free.fr/maps/Poland/Gdansk/map_Tram.jpg
krakow_tram|50.065365,19.947124|2010-03-01|Krakow Tram|KST|http://transportmaps.free.fr/maps/Poland/Krakow/map_Tram.jpg
poznan_tram|52.40144,16.91215||Poznan Tram|MPK|http://transportmaps.free.fr/maps/Poland/Poznan/map_Trams.jpg
poznan_night|52.40144,16.91215||Poznan Night Buses|MPK|http://transportmaps.free.fr/maps/Poland/Poznan/map_Night_Buses.jpg
warsaw_rail|52.230515,21.010702|2011-12-01|Warsaw Rail Transport|ztm|http://www.ztm.waw.pl/mapa/duze/tramwaje.gif
warsaw_metro_tram|52.230515,21.010702||Warsaw Metro and Tram|zajcev|http://transportmaps.free.fr/maps/Poland/Warsaw/map_Subway_and_Tramway.jpg
# cz
prague_bus_metro|50.083239,14.435021|2016-10-03|Prague Bus and Metro|Pražská Integrovaná Doprava
prague_tram_metro|50.083239,14.435021|2016-08-03|Prague Tram and Metro|Pražská Integrovaná Doprava
prague_train|50.083239,14.435021|2016-08-28|Prague Train Lines|Pražská Integrovaná Doprava
prague_night|50.083239,14.435021|2016-08-28|Prague Night Service|Pražská Integrovaná Doprava
# sk
bratislava_city|48.158729,17.106804|2013-09|Bratislava City Lines|Dopravný podnik Bratislava
bratislava_tram|48.158729,17.106804|2013-09-16|Bratislava Tram|Dopravný podnik Bratislava
bratislava_trolley|48.158729,17.106804|2013-09-02|Bratislava Trolley Buses|Dopravný podnik Bratislava
bratislava_night|48.158729,17.106804|2013-09-02|Bratislava Night Routes|Dopravný podnik Bratislava
# gr
athen_metro|37.992426,23.720444|2014-04|Athens Metro|Attiko Metro
# us
sanfrancisco_metro|37.774534,-122.419124|2007-07|San Francisco Metro|SFMTA|http://transit.511.org/static/providers/maps/SF_712200722845.gif
sanfrancisco_system|37.774534,-122.419124|2010-10|San Francisco System|SFMTA|http://transit.511.org/static/providers/maps/SF_1222201020400.gif
sanfrancisco_downtown|37.774534,-122.419124|2010-10|San Francisco Downtown|SFMTA|http://transit.511.org/static/providers/maps/SF_1222201020237.gif
sanfrancisco_marketstreet|37.774534,-122.419124|2010-10|San Francisco Market Street|SFMTA|http://transit.511.org/static/providers/maps/SF_10262010101811.gif
sanfrancisco_owl|37.774534,-122.419124|2010-10|San Francisco Owl Service|SFMTA|http://transit.511.org/static/providers/maps/SF_10262010102001.gif
sanfrancisco_bart|37.616291,-122.386079|2014|San Francisco Bay Area Rapid Transit|BART|http://www.bart.gov/sites/all/themes/bart_desktop/img/system-map.gif
losangeles_system|34.05427,-118.246715|2016-06|Los Angeles System|metro.net
losangeles_downtown|34.05427,-118.246715|2016-06|Los Angeles Downtown|metro.net
losangeles_metro|34.05427,-118.246715|2016-05|Los Angeles Metro|metro.net|https://media.metro.net/riding_metro/maps/images/rail_map.gif
losangeles_metro_metrolink|34.05427,-118.246715|2016-11|Los Angeles Metro & Rail|metro.net|https://media.metro.net/riding_metro/maps/images/metro_regionalrail_map.gif
newyork_subway|40.738452,-73.991919|2010-12|New York Subway|MTA
philadelphia_regional|39.957386,-75.180488|2012-06|Philadelphia Regional Train & Rail Transit|SEPTA
chicago_downtown|41.878674,-87.640333|2016-02|Chicago Downtown|RTA Chicago
chicago_trains|41.878674,-87.640333|2015-03|Chicago Train Connections|RTA Chicago
# ar
buenosaires_metro|-34.60837,-58.372171||Buenos Aires Metro|Metrovías|http://www.metrovias.com.ar/v2/html/..%5CImages%5CMapas%5Csubte-mapa-esquematico-2010.jpg
buenosaires_urquiza|-34.60837,-58.372171||Buenos Aires Urquiza|Metrovías|http://www.metrovias.com.ar/v2/Images/Mapas/mapa-urquiza.gif
buenosaires_premetro|-34.60837,-58.372171||Buenos Aires Premetro|Metrovías|http://www.metrovias.com.ar/v2/Images/Mapas/mapa-premetro.gif
# au
melbourne_metropolitan_train|-37.813425,144.962869|2016-01|Melbourne Metropolitan Train|Public Transport Victoria
melbourne_metropolitan_tram|-37.813425,144.962869|2015-01|Melbourne Metropolitan Tram|State of Victoria
melbourne_metropolitan_nightrider|-37.813425,144.962869|2015-01|Melbourne NightRider|Public Transport Victoria
sydney_trains|-33.882474,151.206688|2015|Sydney Trains|Transport for NSW
sydney_lightrail|-33.873103,151.199918|2015|Sydney Light Rail|Transport for NSW
sydney_night|-33.873813,151.206805|2015|Sydney NightRide Buses|Transport for NSW
sydney_ferry|-33.861256,151.210954|2015|Sydney Ferries|Transport for NSW
sydney_intercity|-33.882474,151.206688|2014|Sydney Intercity Trains|Transport for NSW
brisbane_light_rail|-27.473986,153.028035||Brisbane Light Rail|TRANSLink|https://translink.com.au/sites/default/files/assets/resources/plan-your-journey/maps/140721-gold-coast-light-rail.jpg
brisbane_ferry|-27.473986,153.028035|2015-07-01|Brisbane Ferry Network|TRANSLink|https://translink.com.au/sites/default/files/assets/resources/plan-your-journey/maps/150701-ferry-network-map.jpg
brisbane_night|-27.473986,153.028035|2014-12-05|Brisbane NightLight and CityGlider Network|TRANSLink
brisbane_train|-27.473986,153.028035|2016-10-04|Brisbane Train Network|QueenslandRail/TRANSLink|https://translink.com.au/sites/default/files/assets/resources/plan-your-journey/maps/160104-train-network-map.jpg
# sg
singapore|1.299078,103.84577|2015|Singapore|Land Transport Authority
# cn
beijing_subway|39.924854,116.396577|2009|Beijing Subway|Wikimedia Commons|http://upload.wikimedia.org/wikipedia/commons/thumb/5/52/Beijing-Subway-Plan.svg/2000px-Beijing-Subway-Plan.svg.png
# tw
taipei_metro|25.06331,121.55169||Taipei Metro|Taipei Rapid Transit Corporation|http://web.metro.taipei/img/E/metrotaipeimap.jpg
# in
delhi_metro|28.635481,77.225032|2010|Delhi Metro|Wikimedia Commons|http://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Delhi_metro_rail_network.svg/2000px-Delhi_metro_rail_network.svg.png
# jp
tokyo_subway|35.681143,139.76615|2015-08|Tokyo Subway|Bureau of Transportation
osaka_subway|34.693921,135.502181|2014-09-30|Osaka Subway|Osaka Municipal Transportation Bureau

75
oeffi/build.gradle Normal file
View file

@ -0,0 +1,75 @@
apply plugin: 'com.android.application'
apply plugin: 'androidsvgdrawable'
configurations {
all*.exclude group: 'org.json', module: 'json'
all*.exclude group: 'net.sf.kxml', module: 'kxml2'
all*.exclude group: 'android.arch.lifecycle', module: 'runtime'
all*.exclude group: 'com.github.tony19', module: 'apktool-lib'
}
dependencies {
compile project(':enabler')
compile 'de.schildbach.wallet:integration-android:2.0'
compile 'com.android.support:support-annotations:27.1.1'
compile 'com.android.support:support-compat:27.1.1'
compile 'com.android.support:support-core-ui:27.1.1'
compile 'com.android.support:support-core-utils:27.1.1'
compile 'com.android.support:recyclerview-v7:27.1.1'
compile 'com.squareup.okhttp3:okhttp:3.10.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.10.0'
compile 'com.google.guava:guava:25.1-android'
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'com.github.tony19:logback-android:1.1.1-8'
compile 'com.google.code.findbugs:jsr305:3.0.0'
testCompile 'junit:junit:4.12'
}
android {
compileSdkVersion 'android-27'
buildToolsVersion '27.0.3'
lintOptions {
abortOnError false
disable 'MissingTranslation'
}
defaultConfig {
generatedDensities = ['hdpi', 'xhdpi']
}
buildTypes {
all {
minifyEnabled true
proguardFile 'proguard.cfg'
}
debug {
debuggable true
}
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
test {
java.srcDirs = ['test']
}
}
packagingOptions {
exclude 'META-INF/*.version'
exclude 'okhttp3/internal/publicsuffix/publicsuffixes.gz'
}
}
task svgToPng(type: fr.avianey.androidsvgdrawable.gradle.SvgDrawableTask) {
from = files('graphics')
to = file('res')
targetedDensities = ['hdpi', 'xhdpi', 'xxhdpi', 'xxxhdpi']
outputFormat = 'PNG'
outputType = 'mipmap'
}

View file

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="48px" height="48px" viewBox="-32 -32 1088 1088">
<defs>
<linearGradient id="background-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#f0c410" />
<stop offset="100%" style="stop-color:#f0c410" />
</linearGradient>
<linearGradient id="symbol-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#40a33f" />
<stop offset="100%" style="stop-color:#40a33f" />
</linearGradient>
<filter id="background-shadow">
<feOffset result="offsetOut" in="SourceGraphic" dx="0" dy="32" />
<feColorMatrix result="matrixOut" in="offsetOut" type="matrix"
values="0.15 0 0 0 0 0 0.15 0 0 0 0 0 0.15 0 0 0 0 0 1 0" />
<feGaussianBlur result="blurOut" in="matrixOut" stdDeviation="32" />
<feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
</filter>
</defs>
<!-- background -->
<circle cx="512" cy="512" r="512" fill="url(#symbol-gradient)" />
<circle cx="512" cy="512" r="400" fill="url(#background-gradient)" filter="url(#background-shadow)" />
<!-- stiletto -->
<path d="M 387,787 v -355 a 120,120 0 0,1 120,-120" style="fill:none;stroke:#40a33f;stroke-width:104" />
<!-- trangle -->
<path d="M 507,312 v 130 l 260,-130 l -260,-130 z" style="fill:#40a33f" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="48px" height="48px" viewBox="-32 -32 1088 1088">
<defs>
<linearGradient id="background-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#f0c410" />
<stop offset="100%" style="stop-color:#f0c410" />
</linearGradient>
<linearGradient id="symbol-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#40a33f" />
<stop offset="100%" style="stop-color:#40a33f" />
</linearGradient>
<filter id="background-shadow">
<feOffset result="offsetOut" in="SourceGraphic" dx="0" dy="32" />
<feColorMatrix result="matrixOut" in="offsetOut" type="matrix"
values="0.15 0 0 0 0 0 0.15 0 0 0 0 0 0.15 0 0 0 0 0 1 0" />
<feGaussianBlur result="blurOut" in="matrixOut" stdDeviation="32" />
<feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
</filter>
</defs>
<!-- background -->
<circle cx="512" cy="512" r="512" fill="url(#symbol-gradient)" />
<circle cx="512" cy="512" r="400" fill="url(#background-gradient)" filter="url(#background-shadow)" />
<!-- plan -->
<g transform="scale(0.93) translate(42,42)">
<!-- upper horizontal line -->
<path style="fill:#40a33f"
d="M 149.625 420 C 143.11709 445.71106 139.24323 472.47699 138.375 500 L 885.625 500 C 884.75677 472.47699 880.88291 445.71106 874.375 420 L 149.625 420 z " />
<!-- lower horizontal line -->
<path style="fill:#307a2f"
d="M 138.5625 524 C 139.43073 551.52288 143.30196 578.29012 149.8125 604 L 874.1875 604 C 880.69804 578.29012 884.56927 551.52288 885.4375 524 L 138.5625 524 z " />
<!-- vertical line -->
<path style="fill:#40a33f"
d="M 512 138.21875 C 498.48498 138.21875 485.14397 138.94519 472 140.34375 L 472 724.84375 L 552 724.84375 L 552 140.34375 C 538.85603 138.94519 525.51502 138.21875 512 138.21875 z " />
<path style="fill:#40a33f"
d="M 495.28125 668.3125 L 327 836.59375 C 351.809 850.76368 378.39123 862.17957 406.34375 870.40625 L 551.84375 724.90625 L 495.28125 668.3125 z " />
<!-- stop -->
<rect style="fill:#40a33f" width="140" height="80" x="550.36188" y="210" />
<!-- station -->
<rect
style="fill:#ffffff;stroke:#2a6b29;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4"
width="120" height="308.41904" x="452" y="357.79047" rx="15" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="48px" height="48px" viewBox="-32 -32 1088 1088">
<defs>
<linearGradient id="background-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#f0c410" />
<stop offset="100%" style="stop-color:#f0c410" />
</linearGradient>
<linearGradient id="symbol-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#40a33f" />
<stop offset="100%" style="stop-color:#40a33f" />
</linearGradient>
<filter id="background-shadow">
<feOffset result="offsetOut" in="SourceGraphic" dx="0" dy="32" />
<feColorMatrix result="matrixOut" in="offsetOut" type="matrix"
values="0.15 0 0 0 0 0 0.15 0 0 0 0 0 0.15 0 0 0 0 0 1 0" />
<feGaussianBlur result="blurOut" in="matrixOut" stdDeviation="32" />
<feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
</filter>
</defs>
<!-- background -->
<circle cx="512" cy="512" r="512" fill="url(#symbol-gradient)" />
<circle cx="512" cy="512" r="400" fill="url(#background-gradient)" filter="url(#background-shadow)" />
<!-- H -->
<path d="M 354,787 v -554 m 0,266 h 311 m 0,288 v -554" style="fill:none;stroke:#40a33f;stroke-width:104" />
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

80
oeffi/proguard.cfg Normal file
View file

@ -0,0 +1,80 @@
-dontskipnonpubliclibraryclasses
-dontoptimize
-dontpreverify
-dontobfuscate
-verbose
-keepattributes *Annotation*
-keepclasseswithmembernames class * {
native <methods>;
}
-keepclassmembers,includedescriptorclasses public class * extends android.view.View {
void set*(***);
*** get*();
}
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keepclassmembers class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator CREATOR;
}
-keepclassmembers class **.R$* {
public static <fields>;
}
# serializable
-keepclassmembers class * implements java.io.Serializable {
static final long serialVersionUID;
private static final java.io.ObjectStreamField[] serialPersistentFields;
!static !transient <fields>;
private void writeObject(java.io.ObjectOutputStream);
private void readObject(java.io.ObjectInputStream);
java.lang.Object writeReplace();
java.lang.Object readResolve();
}
# android-support
-dontwarn android.support.**
-dontnote android.support.**
# OkHttp
-dontwarn okio.DeflaterSink
-dontwarn okio.Okio
-dontwarn okhttp3.internal.platform.ConscryptPlatform
-dontnote okhttp3.internal.platform.ConscryptPlatform
-dontnote okhttp3.internal.platform.Platform
-dontnote okhttp3.internal.platform.AndroidPlatform
# Guava
-dontwarn sun.misc.Unsafe
-dontwarn java.lang.ClassValue
-dontwarn com.google.errorprone.annotations.**
-dontwarn afu.org.checkerframework.checker.**,org.checkerframework.checker.**
-dontnote com.google.common.reflect.**
-dontnote com.google.appengine.**
-dontnote com.google.apphosting.**
-dontnote com.google.common.cache.Striped64,com.google.common.cache.Striped64$Cell
-dontnote com.google.common.hash.Striped64,com.google.common.hash.Striped64$Cell
-dontnote com.google.common.util.concurrent.AbstractFuture$UnsafeAtomicHelper
-dontnote dalvik.system.CloseGuard
# slf4j
-dontwarn org.slf4j.MDC
-dontwarn org.slf4j.MarkerFactory
# logback-android
-dontwarn javax.mail.**
-dontwarn brut.androlib.res.decoder.AXmlResourceParser
# Öffi
-dontnote de.schildbach.oeffi.util.PopupHelper

13
oeffi/project.properties Normal file
View file

@ -0,0 +1,13 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system use,
# "ant.properties", and override values to adapt the script to your
# project structure.
# Indicates whether an apk should be generated for each density.
split.density=false
# Project target.
target=android-27

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="@android:integer/config_longAnimTime"
android:fromXDelta="-100%p"
android:toXDelta="0" />
<alpha
android:duration="@android:integer/config_longAnimTime"
android:fromAlpha="0.0"
android:toAlpha="1.0" />
</set>

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="@android:integer/config_longAnimTime"
android:fromXDelta="100%p"
android:toXDelta="0" />
<alpha
android:duration="@android:integer/config_longAnimTime"
android:fromAlpha="0.0"
android:toAlpha="1.0" />
</set>

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="@android:integer/config_longAnimTime"
android:fromXDelta="0"
android:toXDelta="-100%p" />
<alpha
android:duration="@android:integer/config_longAnimTime"
android:fromAlpha="1.0"
android:toAlpha="0.0" />
</set>

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="@android:integer/config_longAnimTime"
android:fromXDelta="0"
android:toXDelta="100%p" />
<alpha
android:duration="@android:integer/config_longAnimTime"
android:fromAlpha="1.0"
android:toAlpha="0.0" />
</set>

14
oeffi/res/anim/pop_in.xml Normal file
View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<scale
android:duration="@android:integer/config_shortAnimTime"
android:fromXScale="0.0"
android:fromYScale="0.0"
android:interpolator="@android:anim/accelerate_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="1.0"
android:toYScale="1.0" />
</set>

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<scale
android:duration="@android:integer/config_shortAnimTime"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:interpolator="@android:anim/accelerate_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="0.0"
android:toYScale="0.0" />
</set>

13
oeffi/res/anim/rotate.xml Normal file
View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator" >
<rotate
android:duration="1000"
android:fromDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:toDegrees="360" />
</set>

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<alpha
android:duration="1000"
android:fillAfter="true"
android:fillEnabled="true"
android:fromAlpha="1.0"
android:startOffset="1000"
android:toAlpha="0.0" />
</set>

View file

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:interpolator/accelerate_quad" >
<!-- Beat -->
<objectAnimator
android:duration="100"
android:propertyName="scaleX"
android:valueTo="1.3" />
<objectAnimator
android:duration="100"
android:propertyName="scaleY"
android:valueTo="1.3" />
<objectAnimator
android:duration="200"
android:propertyName="scaleX"
android:startOffset="100"
android:valueTo="1" />
<objectAnimator
android:duration="200"
android:propertyName="scaleY"
android:startOffset="100"
android:valueTo="1" />
<!-- Beat again -->
<objectAnimator
android:duration="100"
android:propertyName="scaleX"
android:startOffset="400"
android:valueTo="1.3" />
<objectAnimator
android:duration="100"
android:propertyName="scaleY"
android:startOffset="400"
android:valueTo="1.3" />
<objectAnimator
android:duration="200"
android:propertyName="scaleX"
android:startOffset="500"
android:valueTo="1" />
<objectAnimator
android:duration="200"
android:propertyName="scaleY"
android:startOffset="500"
android:valueTo="1" />
</set>

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- activated, plain -->
<item android:state_activated="true"><shape>
<solid android:color="#cfffaf" />
</shape></item>
<!-- plain -->
<item><shape>
<solid android:color="#ffffff" />
</shape></item>
</selector>

View file

@ -0,0 +1,12 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="18dp"
android:height="18dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
<path
android:fillColor="#FF757575"
android:pathData="M19,13v-2c-1.54,0.02 -3.09,-0.75 -4.07,-1.83l-1.29,-1.43c-0.17,-0.19 -0.38,-0.34 -0.61,-0.45 -0.01,0 -0.01,-0.01 -0.02,-0.01L13,7.28c-0.35,-0.2 -0.75,-0.3 -1.19,-0.26C10.76,7.11 10,8.04 10,9.09L10,15c0,1.1 0.9,2 2,2h5v5h2v-5.5c0,-1.1 -0.9,-2 -2,-2h-3v-3.45c1.29,1.07 3.25,1.94 5,1.95zM12.83,18c-0.41,1.16 -1.52,2 -2.83,2 -1.66,0 -3,-1.34 -3,-3 0,-1.31 0.84,-2.41 2,-2.83L9,12.1c-2.28,0.46 -4,2.48 -4,4.9 0,2.76 2.24,5 5,5 2.42,0 4.44,-1.72 4.9,-4h-2.07z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M19,1L5,1c-1.1,0 -1.99,0.9 -1.99,2L3,15.93c0,0.69 0.35,1.3 0.88,1.66L12,23l8.11,-5.41c0.53,-0.36 0.88,-0.97 0.88,-1.66L21,3c0,-1.1 -0.9,-2 -2,-2zM10,16l-5,-5 1.41,-1.41L10,13.17l7.59,-7.59L19,7l-9,9z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM4,12c0,-4.42 3.58,-8 8,-8 1.85,0 3.55,0.63 4.9,1.69L5.69,16.9C4.63,15.55 4,13.85 4,12zM12,20c-1.85,0 -3.55,-0.63 -4.9,-1.69L18.31,7.1C19.37,8.45 20,10.15 20,12c0,4.42 -3.58,8 -8,8z"/>
</vector>

View file

@ -0,0 +1,7 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="24dp"
android:width="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path android:fillColor="#FF757575" android:pathData="M5,6H23V18H5V6M14,9A3,3 0 0,1 17,12A3,3 0 0,1 14,15A3,3 0 0,1 11,12A3,3 0 0,1 14,9M9,8A2,2 0 0,1 7,10V14A2,2 0 0,1 9,16H19A2,2 0 0,1 21,14V10A2,2 0 0,1 19,8H9M1,10H3V20H19V22H1V10Z" />
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M20,0L4,0v2h16L20,0zM4,24h16v-2L4,22v2zM20,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM12,6.75c1.24,0 2.25,1.01 2.25,2.25s-1.01,2.25 -2.25,2.25S9.75,10.24 9.75,9 10.76,6.75 12,6.75zM17,17L7,17v-1.5c0,-1.67 3.33,-2.5 5,-2.5s5,0.83 5,2.5L17,17z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="18dp"
android:height="18dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M15.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM5,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM5,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5zM10.8,10.5l2.4,-2.4 0.8,0.8c1.3,1.3 3,2.1 5.1,2.1L19.1,9c-1.5,0 -2.7,-0.6 -3.6,-1.5l-1.9,-1.9c-0.5,-0.4 -1,-0.6 -1.6,-0.6s-1.1,0.2 -1.4,0.6L7.8,8.4c-0.4,0.4 -0.6,0.9 -0.6,1.4 0,0.6 0.2,1.1 0.6,1.4L11,14v5h2v-6.2l-2.2,-2.3zM19,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM19,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M15.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM5,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM5,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5zM10.8,10.5l2.4,-2.4 0.8,0.8c1.3,1.3 3,2.1 5.1,2.1L19.1,9c-1.5,0 -2.7,-0.6 -3.6,-1.5l-1.9,-1.9c-0.5,-0.4 -1,-0.6 -1.6,-0.6s-1.1,0.2 -1.4,0.6L7.8,8.4c-0.4,0.4 -0.6,0.9 -0.6,1.4 0,0.6 0.2,1.1 0.6,1.4L11,14v5h2v-6.2l-2.2,-2.3zM19,12c-2.8,0 -5,2.2 -5,5s2.2,5 5,5 5,-2.2 5,-5 -2.2,-5 -5,-5zM19,20.5c-1.9,0 -3.5,-1.6 -3.5,-3.5s1.6,-3.5 3.5,-3.5 3.5,1.6 3.5,3.5 -1.6,3.5 -3.5,3.5z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M13.5,5.5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM9.8,8.9L7,23h2.1l1.8,-8 2.1,2v6h2v-7.5l-2.1,-2 0.6,-3C14.8,12 16.8,13 19,13v-2c-1.9,0 -3.5,-1 -4.3,-2.4l-1,-1.6c-0.4,-0.6 -1,-1 -1.7,-1 -0.3,0 -0.5,0.1 -0.8,0.1L6,8.3V13h2V9.6l1.8,-0.7"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M12,8l-6,6 1.41,1.41L12,10.83l4.59,4.58L18,14z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M12,8l-6,6 1.41,1.41L12,10.83l4.59,4.58L18,14z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M16.59,8.59L12,13.17 7.41,8.59 6,10l6,6 6,-6z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M16.59,8.59L12,13.17 7.41,8.59 6,10l6,6 6,-6z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M16.5,3c-1.74,0 -3.41,0.81 -4.5,2.09C10.91,3.81 9.24,3 7.5,3 4.42,3 2,5.42 2,8.5c0,3.78 3.4,6.86 8.55,11.54L12,21.35l1.45,-1.32C18.6,15.36 22,12.28 22,8.5 22,5.42 19.58,3 16.5,3zM12.1,18.55l-0.1,0.1 -0.1,-0.1C7.14,14.24 4,11.39 4,8.5 4,6.5 5.5,5 7.5,5c1.54,0 3.04,0.99 3.57,2.36h1.87C13.46,5.99 14.96,5 16.5,5c2,0 3.5,1.5 3.5,3.5 0,2.89 -3.14,5.74 -7.9,10.05z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M10,18h4v-2h-4v2zM3,6v2h18L21,6L3,6zM6,13h12v-2L6,11v2z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFEDF53"
android:pathData="M10,18h4v-2h-4v2zM3,6v2h18L21,6L3,6zM6,13h12v-2L6,11v2z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M14.4,6L14,4H5v17h2v-7h5.6l0.4,2h7V6z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94L23,13v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,17h-2v-6h2v6zM13,9h-2L11,7h2v2z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M11,17h2v-6h-2v6zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM11,9h2L13,7h-2v2z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M11,17h2v-6h-2v6zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM11,9h2L13,7h-2v2z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M18.92,6.01C18.72,5.42 18.16,5 17.5,5L15,5L15,3L9,3v2L6.5,5c-0.66,0 -1.21,0.42 -1.42,1.01L3,12v8c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-1h12v1c0,0.55 0.45,1 1,1h1c0.55,0 1,-0.45 1,-1v-8l-2.08,-5.99zM6.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,13 6.5,13s1.5,0.67 1.5,1.5S7.33,16 6.5,16zM17.5,16c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM5,11l1.5,-4.5h11L19,11L5,11z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94L13,1h-2v2.06c-1.13,0.12 -2.19,0.46 -3.16,0.97l1.5,1.5C10.16,5.19 11.06,5 12,5c3.87,0 7,3.13 7,7 0,0.94 -0.19,1.84 -0.52,2.65l1.5,1.5c0.5,-0.96 0.84,-2.02 0.97,-3.15L23,13v-2h-2.06zM3,4.27l2.04,2.04C3.97,7.62 3.25,9.23 3.06,11L1,11v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94L11,23h2v-2.06c1.77,-0.2 3.38,-0.91 4.69,-1.98L19.73,21 21,19.73 4.27,3 3,4.27zM16.27,17.54C15.09,18.45 13.61,19 12,19c-3.87,0 -7,-3.13 -7,-7 0,-1.61 0.55,-3.09 1.46,-4.27l9.81,9.81z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H23v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M20.94,11c-0.46,-4.17 -3.77,-7.48 -7.94,-7.94V1h-2v2.06C6.83,3.52 3.52,6.83 3.06,11H1v2h2.06c0.46,4.17 3.77,7.48 7.94,7.94V23h2v-2.06c4.17,-0.46 7.48,-3.77 7.94,-7.94H23v-2h-2.06zM12,19c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M20.5,3l-0.16,0.03L15,5.1 9,3 3.36,4.9c-0.21,0.07 -0.36,0.25 -0.36,0.48V20.5c0,0.28 0.22,0.5 0.5,0.5l0.16,-0.03L9,18.9l6,2.1 5.64,-1.9c0.21,-0.07 0.36,-0.25 0.36,-0.48V3.5c0,-0.28 -0.22,-0.5 -0.5,-0.5zM15,19l-6,-2.11V5l6,2.11V19z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M3,18h18v-2L3,16v2zM3,13h18v-2L3,11v2zM3,6v2h18L21,6L3,6z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z"/>
</vector>

View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="36dp"
android:viewportHeight="1088"
android:viewportWidth="1088"
android:width="36dp" >
<group
android:translateX="32"
android:translateY="32" >
<path
android:fillColor="#757575"
android:pathData="M 512,512 m l -464,0 a 464,464 0 1,0 928,0 a 464,464 0 1,0 -928,0 M 512,512 m -368,0 a 368,368 0 1,1 736,0 a 368,368 0 1,1 -736,0" />
<path
android:pathData="M 400,760 v -320 a 100,100 0 0,1 100,-100"
android:strokeColor="#757575"
android:strokeWidth="96" />
<path
android:fillColor="#757575"
android:pathData="M 500,340 v 120 l 240,-120 l -240,-120 z" />
</group>
</vector>

View file

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="72dp"
android:viewportHeight="1088"
android:viewportWidth="1088"
android:width="72dp" >
<group
android:translateX="32"
android:translateY="32" >
<path
android:fillColor="#e0e0e0"
android:pathData="M 512,512 m l -464,0 a 464,464 0 1,0 928,0 a 464,464 0 1,0 -928,0 M 512,512 m -368,0 a 368,368 0 1,1 736,0 a 368,368 0 1,1 -736,0" />
<group
android:scaleX="0.85"
android:scaleY="0.85"
android:translateX="88"
android:translateY="88" >
<path
android:fillColor="#e0e0e0"
android:pathData="M 149.625 420 C 143.11709 445.71106 139.24323 472.47699 138.375 500 L 885.625 500 C 884.75677 472.47699 880.88291 445.71106 874.375 420 L 149.625 420 z" />
<path
android:fillColor="#e0e0e0"
android:pathData="M 138.5625 524 C 139.43073 551.52288 143.30196 578.29012 149.8125 604 L 874.1875 604 C 880.69804 578.29012 884.56927 551.52288 885.4375 524 L 138.5625 524 z" />
<path
android:fillColor="#e0e0e0"
android:pathData="M 512 138.21875 C 498.48498 138.21875 485.14397 138.94519 472 140.34375 L 472 724.84375 L 552 724.84375 L 552 140.34375 C 538.85603 138.94519 525.51502 138.21875 512 138.21875 z" />
<path
android:fillColor="#e0e0e0"
android:pathData="M 495.28125 668.3125 L 327 836.59375 C 351.809 850.76368 378.39123 862.17957 406.34375 870.40625 L 551.84375 724.90625 L 495.28125 668.3125 z" />
<path
android:fillColor="#e0e0e0"
android:pathData="M 550.36188 210 H 690.36188 V 290 H 550.36188 V 210 Z" />
<path
android:fillColor="#ffffff"
android:pathData="M 467 357.79047 L 557 357.79047 Q 572 357.79047 572 372.79047 L 572 651.20951 Q 572 666.20951 557 666.20951 L 467 666.20951 Q 452 666.20951 452 651.20951 L 452 372.79047 Q 452 357.79047 467 357.79047 Z"
android:strokeColor="#e0e0e0"
android:strokeLineCap="round"
android:strokeLineJoin="round"
android:strokeWidth="15" />
</group>
</group>
</vector>

View file

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="36dp"
android:viewportHeight="1088"
android:viewportWidth="1088"
android:width="36dp" >
<group
android:translateX="32"
android:translateY="32" >
<path
android:fillColor="#757575"
android:pathData="M 512,512 m l -464,0 a 464,464 0 1,0 928,0 a 464,464 0 1,0 -928,0 M 512,512 m -368,0 a 368,368 0 1,1 736,0 a 368,368 0 1,1 -736,0" />
<group
android:scaleX="0.85"
android:scaleY="0.85"
android:translateX="88"
android:translateY="88" >
<path
android:fillColor="#757575"
android:pathData="M 149.625 420 C 143.11709 445.71106 139.24323 472.47699 138.375 500 L 885.625 500 C 884.75677 472.47699 880.88291 445.71106 874.375 420 L 149.625 420 z" />
<path
android:fillColor="#757575"
android:pathData="M 138.5625 524 C 139.43073 551.52288 143.30196 578.29012 149.8125 604 L 874.1875 604 C 880.69804 578.29012 884.56927 551.52288 885.4375 524 L 138.5625 524 z" />
<path
android:fillColor="#757575"
android:pathData="M 512 138.21875 C 498.48498 138.21875 485.14397 138.94519 472 140.34375 L 472 724.84375 L 552 724.84375 L 552 140.34375 C 538.85603 138.94519 525.51502 138.21875 512 138.21875 z" />
<path
android:fillColor="#757575"
android:pathData="M 495.28125 668.3125 L 327 836.59375 C 351.809 850.76368 378.39123 862.17957 406.34375 870.40625 L 551.84375 724.90625 L 495.28125 668.3125 z" />
<path
android:fillColor="#757575"
android:pathData="M 550.36188 210 H 690.36188 V 290 H 550.36188 V 210 Z" />
<path
android:fillColor="#ffffff"
android:pathData="M 467 357.79047 L 557 357.79047 Q 572 357.79047 572 372.79047 L 572 651.20951 Q 572 666.20951 557 666.20951 L 467 666.20951 Q 452 666.20951 452 651.20951 L 452 372.79047 Q 452 357.79047 467 357.79047 Z"
android:strokeColor="#757575"
android:strokeLineCap="round"
android:strokeLineJoin="round"
android:strokeWidth="15" />
</group>
</group>
</vector>

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="36dp"
android:viewportHeight="1088"
android:viewportWidth="1088"
android:width="36dp" >
<group
android:translateX="32"
android:translateY="32" >
<path
android:fillColor="#757575"
android:pathData="M 512,512 m l -464,0 a 464,464 0 1,0 928,0 a 464,464 0 1,0 -928,0 M 512,512 m -368,0 a 368,368 0 1,1 736,0 a 368,368 0 1,1 -736,0" />
<path
android:pathData="M 370,760 v -500 m 0,240 h 280 m 0,260 v -500"
android:strokeColor="#757575"
android:strokeWidth="96" />
</group>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10 10,-4.5 10,-10S17.5,2 12,2zM17,18L7,18v-2h10v2zM10.3,14L7,10.7l1.4,-1.4 1.9,1.9 5.3,-5.3L17,7.3 10.3,14z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M12,2C8.13,2 5,5.13 5,9c0,5.25 7,13 7,13s7,-7.75 7,-13c0,-3.87 -3.13,-7 -7,-7zM12,11.5c-1.38,0 -2.5,-1.12 -2.5,-2.5s1.12,-2.5 2.5,-2.5 2.5,1.12 2.5,2.5 -1.12,2.5 -2.5,2.5z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M17.56,14.24c0.28,-0.69 0.44,-1.45 0.44,-2.24 0,-3.31 -2.69,-6 -6,-6 -0.79,0 -1.55,0.16 -2.24,0.44l1.62,1.62c0.2,-0.03 0.41,-0.06 0.62,-0.06 2.21,0 4,1.79 4,4 0,0.21 -0.02,0.42 -0.05,0.63l1.61,1.61zM12,4c4.42,0 8,3.58 8,8 0,1.35 -0.35,2.62 -0.95,3.74l1.47,1.47C21.46,15.69 22,13.91 22,12c0,-5.52 -4.48,-10 -10,-10 -1.91,0 -3.69,0.55 -5.21,1.47l1.46,1.46C9.37,4.34 10.65,4 12,4zM3.27,2.5L2,3.77l2.1,2.1C2.79,7.57 2,9.69 2,12c0,3.7 2.01,6.92 4.99,8.65l1,-1.73C5.61,17.53 4,14.96 4,12c0,-1.76 0.57,-3.38 1.53,-4.69l1.43,1.44C6.36,9.68 6,10.8 6,12c0,2.22 1.21,4.15 3,5.19l1,-1.74c-1.19,-0.7 -2,-1.97 -2,-3.45 0,-0.65 0.17,-1.25 0.44,-1.79l1.58,1.58L10,12c0,1.1 0.9,2 2,2l0.21,-0.02 0.01,0.01 7.51,7.51L21,20.23 4.27,3.5l-1,-1z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M17.65,6.35C16.2,4.9 14.21,4 12,4c-4.42,0 -7.99,3.58 -7.99,8s3.57,8 7.99,8c3.73,0 6.84,-2.55 7.73,-6h-2.08c-0.82,2.33 -3.04,4 -5.65,4 -3.31,0 -6,-2.69 -6,-6s2.69,-6 6,-6c1.66,0 3.14,0.69 4.22,1.78L13,11h7V4l-2.35,2.35z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M19.43,12.98c0.04,-0.32 0.07,-0.64 0.07,-0.98s-0.03,-0.66 -0.07,-0.98l2.11,-1.65c0.19,-0.15 0.24,-0.42 0.12,-0.64l-2,-3.46c-0.12,-0.22 -0.39,-0.3 -0.61,-0.22l-2.49,1c-0.52,-0.4 -1.08,-0.73 -1.69,-0.98l-0.38,-2.65C14.46,2.18 14.25,2 14,2h-4c-0.25,0 -0.46,0.18 -0.49,0.42l-0.38,2.65c-0.61,0.25 -1.17,0.59 -1.69,0.98l-2.49,-1c-0.23,-0.09 -0.49,0 -0.61,0.22l-2,3.46c-0.13,0.22 -0.07,0.49 0.12,0.64l2.11,1.65c-0.04,0.32 -0.07,0.65 -0.07,0.98s0.03,0.66 0.07,0.98l-2.11,1.65c-0.19,0.15 -0.24,0.42 -0.12,0.64l2,3.46c0.12,0.22 0.39,0.3 0.61,0.22l2.49,-1c0.52,0.4 1.08,0.73 1.69,0.98l0.38,2.65c0.03,0.24 0.24,0.42 0.49,0.42h4c0.25,0 0.46,-0.18 0.49,-0.42l0.38,-2.65c0.61,-0.25 1.17,-0.59 1.69,-0.98l2.49,1c0.23,0.09 0.49,0 0.61,-0.22l2,-3.46c0.12,-0.22 0.07,-0.49 -0.12,-0.64l-2.11,-1.65zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5 3.5,1.57 3.5,3.5 -1.57,3.5 -3.5,3.5z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="18dp"
android:height="18dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M12,5c-3.87,0 -7,3.13 -7,7h2c0,-2.76 2.24,-5 5,-5s5,2.24 5,5h2c0,-3.87 -3.13,-7 -7,-7zM13,14.29c0.88,-0.39 1.5,-1.26 1.5,-2.29 0,-1.38 -1.12,-2.5 -2.5,-2.5S9.5,10.62 9.5,12c0,1.02 0.62,1.9 1.5,2.29v3.3L7.59,21 9,22.41l3,-3 3,3L16.41,21 13,17.59v-3.3zM12,1C5.93,1 1,5.93 1,12h2c0,-4.97 4.03,-9 9,-9s9,4.03 9,9h2c0,-6.07 -4.93,-11 -11,-11z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M18,16.08c-0.76,0 -1.44,0.3 -1.96,0.77L8.91,12.7c0.05,-0.23 0.09,-0.46 0.09,-0.7s-0.04,-0.47 -0.09,-0.7l7.05,-4.11c0.54,0.5 1.25,0.81 2.04,0.81 1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3 -3,1.34 -3,3c0,0.24 0.04,0.47 0.09,0.7L8.04,9.81C7.5,9.31 6.79,9 6,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.79,0 1.5,-0.31 2.04,-0.81l7.12,4.16c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.61 1.31,2.92 2.92,2.92 1.61,0 2.92,-1.31 2.92,-2.92s-1.31,-2.92 -2.92,-2.92z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M10.59,9.17L5.41,4 4,5.41l5.17,5.17 1.42,-1.41zM14.5,4l2.04,2.04L4,18.59 5.41,20 17.96,7.46 20,9.5L20,4h-5.5zM14.83,13.41l-1.41,1.41 3.13,3.13L14.5,20L20,20v-5.5l-2.04,2.04 -3.13,-3.13z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M22,9.24l-7.19,-0.62L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21 12,17.27 18.18,21l-1.63,-7.03L22,9.24zM12,15.4l-3.76,2.27 1,-4.28 -3.32,-2.88 4.38,-0.38L12,6.1l1.71,4.04 4.38,0.38 -3.32,2.88 1,4.28L12,15.4z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF757575"
android:pathData="M12,17.27L18.18,21l-1.64,-7.03L22,9.24l-7.19,-0.61L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M12,17.27L18.18,21l-1.64,-7.03L22,9.24l-7.19,-0.61L12,2 9.19,8.63 2,9.24l5.46,4.73L5.82,21z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,8h14v11zM7,10h5v5L7,15z"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFC107"
android:pathData="M1,21h22L12,2 1,21zM13,18h-2v-2h2v2zM13,14h-2v-4h2v4z"/>
</vector>

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="48dp"
android:viewportHeight="724.0552"
android:viewportWidth="724.0552"
android:width="48dp" >
<group
android:translateX="7.6969"
android:translateY="0" >
<path
android:fillColor="#f0d723"
android:pathData="M0 0.000098662109l708.66101 0 0 724.054991337891 -708.66101 0z" />
<path
android:fillColor="#000000"
android:pathData="M188.68978 558.13972c0 21.97404 -3.10506 41.95362 -32.00558 41.95362l-17.91356 0 0 -83.88335 13.9726 0c32.84148 0 35.94654 17.9853 35.94654 41.92973zm-3.10506 -114.80213c0 16.97007 -0.95543 37.9409 -34.87177 37.9409l-11.94231 0 0 -74.86676 14.92793 0c27.9452 0 31.88615 9.97183 31.88615 36.92586zm54.93506 112.83165c0 -26.96588 -12.89784 -56.90544 -50.87457 -58.91175 34.87177 -7.01018 43.94798 -31.9579 43.94798 -59.90309 0 -34.93149 -9.07621 -66.85347 -71.89317 -66.85347l-51.94943 0c-11.9424 0 -20.89918 8.96872 -20.89918 19.91996l0 227.60998c0 13.99648 8.95678 17.97327 20.89918 17.97327l47.88894 0c67.95222 0 82.88025 -37.90517 82.88025 -79.8349zM431.23973 402.42291c4.89639 -20.9589 -7.04601 -33.92829 -23.0488 -33.92829 -12.89783 0 -21.97404 7.97755 -24.84014 22.92937l-29.02005 149.73372c-2.98562 14.00842 -5.01582 30.94266 -5.97115 41.95361 -0.95543 -11.01095 -2.98563 -27.94519 -5.97125 -41.95361L310.38276 391.42399c-3.94096 -16.93433 -13.9726 -22.92937 -25.915 -22.92937 -18.98842 0 -27.94519 16.94628 -23.0488 36.92585l48.9638 202.65042c5.01582 19.96764 15.04736 30.93082 37.97683 30.93082 19.94375 0 31.88615 -10.96318 36.90197 -32.93713l45.97817 -203.64167zm188.57034 180.68841l0 -78.86753c0 -15.979 -4.89639 -22.9653 -19.94375 -22.9653l-43.82865 0c-14.09202 0 -21.01861 6.9863 -21.01861 19.96774 0 11.97823 8.00145 18.95258 21.01861 18.95258l14.92803 0 0 76.86122c-2.98563 1.03894 -8.00145 2.0302 -16.95822 2.0302 -34.99121 0 -51.94933 -16.98211 -51.94933 -90.85771 0 -78.85558 20.06317 -96.8408 49.91913 -96.8408 22.92938 0 33.91644 7.98941 44.90342 7.98941 10.98697 0 21.01861 -8.98067 21.01861 -20.93501 0 -8.02523 -4.06039 -13.00522 -7.04602 -16.00279 -14.92802 -11.9424 -44.90341 -14.98774 -57.80115 -14.98774 -61.98106 0 -101.86866 40.95051 -101.86866 136.7882 0 90.82188 18.03308 134.75792 96.85284 134.75792 48.84438 0 71.77375 -16.98211 71.77375 -55.89039" />
</group>
</vector>

View file

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="48dp"
android:viewportHeight="744.0945"
android:viewportWidth="744.0945"
android:width="48dp" >
<group
android:translateX="0"
android:translateY="105" >
<path
android:fillColor="#ec1b2d"
android:pathData="M90.1,17.8L653.7,17.8C693.8,17.8 726.4,50.1 726.4,90.2L726.4,436.1C726.4,476.2 693.8,508.7 653.7,508.7L90.1,508.7C50.1,508.7 17.7,476.2 17.7,436.1L17.7,90.2C17.7,50.1 50.1,17.8 90.1,17.8z"
android:strokeColor="#00000000" />
<path
android:fillColor="#ffffff"
android:pathData="M91.1,67.2L653,67.2C665.4,67.2 675.5,77.3 675.5,89.7L675.5,436.6C675.5,449 665.4,459.1 653,459.1L91.1,459.1C78.6,459.1 68.6,449 68.6,436.6L68.6,89.7C68.6,77.3 78.6,67.2 91.1,67.2z"
android:strokeColor="#00000000" />
<path
android:fillColor="#ec1b2d"
android:pathData="M115.2,104L239.9,104C317.7,104 363.4,154.2 363.4,262.4C363.4,377.7 315.6,423.9 239.9,423.9L115.2,423.9L115.2,104zM398.3,104L537.7,104C596.1,104 625.4,139.2 625.4,179.7C625.4,232.9 594.2,251 570.1,256.1L570.1,257.5C606.2,262.2 638.7,287.8 638.7,336.7C638.5,389.5 600.3,423.9 529.1,423.9L398.3,423.9L398.3,104z"
android:strokeColor="#00000000" />
<path
android:fillColor="#ffffff"
android:pathData="M192.3,154.2L219.7,154.2C264,154.2 287.4,186.1 287.4,261C287.4,347 260,372.8 221.1,372.8L192.3,372.8L192.3,154.2zM474.7,153.7L504.2,153.7C534.4,153.7 546.9,170.6 546.9,190.3C546.9,214.2 534,230.8 503.7,230.8L474.7,230.8L474.7,153.7zM474.7,291L511,291C546.9,291 556.5,308.4 556.5,331.1C556.5,357.6 537.3,372.8 511.5,372.8L474.7,372.8L474.7,291z"
android:strokeColor="#00000000" />
</group>
</vector>

View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="48dp"
android:viewportHeight="61.2"
android:viewportWidth="61.2"
android:width="48dp" >
<group android:translateY="15.55" >
<path
android:fillColor="#000000"
android:pathData="M2.68125 18.331869L0 30.054369l3.1475 0 1.245 -5.53375 2.7925 5.53375 3.6925 0 -3.415 -6.0325 5.6825 -5.69 -4.0375 0 -4.38875 4.76125 1.11 -4.76125 -3.1475 0zm10.79375 0l1.29625 11.7225 3.865 0 6.70125 -11.7225 -3.365 0 -4.71625 8.82125 -0.675 -8.82125 -3.10625 0zm12.46 0l1.27875 11.7225 3.925 0 6.67375 -11.7225 -3.36375 0 -4.71875 8.82125 -0.6825 -8.82125 -3.1125 0z" />
<group
android:scaleX="0.06151166"
android:scaleY="0.06151166"
android:translateX="-0.9254394"
android:translateY="-0.903525" >
<path
android:fillColor="#cf113f"
android:pathData="M549.71875 14.6875C446.52693 114.05891 294.87504 190.22076 83.1875 192.78125l-16.46875 72.25 924.1875 0 18.06255 -72.28125 -608.4063 0C524.13664 150.88803 594.69278 81.910534 672.21875 14.6875l-122.5 0zm432.75 278.375C745.44051 293.57053 632.87828 405.34752 564.375 504.3125l103.15625 0c107.62188 -136.49853 241.28311 -141.97318 298 -142.5625l16.9375 -68.6875z" />
</group>
</group>
</vector>

View file

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="48dp"
android:viewportHeight="158.079"
android:viewportWidth="158.079"
android:width="48dp" >
<group
android:translateX="-6"
android:translateY="50.693" >
<path
android:fillColor="#cc082a"
android:pathData="M57.525 3.187l-12.62 0 -16.342 17.483 0 0 12.998 0z" />
<path
android:fillColor="#cc082a"
android:pathData="M106.248 26.827c3.269 -2.813 4.563 -7.374 4.563 -10.338 0 -2.128 -0.838 -13.302 -18.397 -13.302l-21.056 0 0 50.702 23.109 0c2.963 0 8.815 -0.303 12.161 -3.272 4.637 -4.175 5.472 -8.283 5.472 -10.788 0 -6.31 -2.888 -10.418 -5.852 -13.002zm-24.401 -14.899l12.62 0c3.344 0 6.311 1.292 6.311 5.778 0 4.18 -2.586 5.853 -7.148 5.853l-11.783 0 0 -11.631zm12.162 33.219l-12.162 0 0 -12.847 14.215 0c2.129 0 5.929 0 5.929 5.853 0 6.994 -4.561 6.994 -7.982 6.994z" />
<path
android:fillColor="#cc082a"
android:pathData="M157.86 26.827c3.726 -2.813 4.563 -7.374 4.563 -10.338 0 -2.128 -0.838 -13.302 -18.472 -13.302l-20.979 0 0 50.702 23.106 0c2.89 0 8.819 -0.303 12.085 -3.272 4.714 -4.102 5.549 -8.283 5.549 -10.788 0.001 -6.31 -2.963 -10.418 -5.852 -13.002zm-24.4 -14.899l12.619 0c3.345 0 6.233 1.292 6.233 5.778 0 4.18 -2.508 5.853 -7.071 5.853l-11.781 0 0 -11.631zm12.162 33.219l-12.162 0 0 -12.847 14.289 0c2.056 0 5.931 0 5.931 5.853 0 6.994 -4.711 6.994 -8.058 6.994z" />
<path
android:fillColor="#cc082a"
android:pathData="M42.016 2.73C39.356 1.894 36.62 1.437 33.731 1.437 18.605 1.437 6.366 13.372 6.366 28.498c0 14.522 12.239 26.757 27.365 26.757 14.746 0 26.984 -12.235 26.984 -26.757 0 -6.916 -2.508 -13.15 -6.766 -17.938l-7.22 7.677c2.203 2.813 3.571 6.385 3.571 10.261 0 8.818 -7.6 16.346 -16.57 16.346 -9.35 0 -16.875 -7.528 -16.875 -16.346 0 -9.272 7.525 -16.646 16.875 -16.646l8.286 -9.122 0 0z" />
</group>
</vector>

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="48dp"
android:viewportHeight="157"
android:viewportWidth="157"
android:width="48dp" >
<group
android:translateX="-372.5"
android:translateY="-453.922647" >
<path
android:fillColor="#ed1c24"
android:pathData="M477.07813 500.23964c-8.00125 0 -14.50001 6.71 -14.5 14.9375 0 8.0775 6.49377 14.78128 14.3125 14.78125 3.87 0 7.73749 -1.76627 10.28125 -4.8125 2.545 -3.04875 2.94752 -6.23751 2.875 -10.125l-11.4375 0 0 2.96875 8.125 0c0 5.33375 -5.07628 9 -9.90625 9 -2.91375 0 -5.87626 -1.56122 -7.90625 -3.65625 -2.0625 -2.17375 -3.21874 -5.07623 -3.21875 -8.125 0 -6.47625 5.00122 -11.99998 11.34375 -12 4.09125 0 7.23873 2.03 9.5625 4.96875l2.25 -2.1875c-2.94875 -3.5075 -6.91372 -5.74998 -11.78125 -5.75zm-65 1.3125l10.0625 27.8125 9.3125 0 9.90625 -27.8125 -7.96875 0 -6.40625 20.6875 -6.375 -20.6875 -8.53125 0zm35.03125 0l-10.46875 27.8125 6.3125 0 1.78125 -5.53125 11 0 1.8125 5.53125 6.4375 0 -9.65625 -27.8125 -7.21875 0zm3.34375 5.90625l4.03125 11.3125 -7.96875 0 3.9375 -11.3125zm-35.9375 11.6875c-16.9375 5.86998 -23.34375 9.3125 -23.34375 9.3125 -19.87248 9.70999 -18.5 19.18745 -18.5 19.18745 0.90498 9.485 16.9375 13.0938 16.9375 13.0938 19.86501 5.3325 41.78125 3.4062 41.78125 3.4062 37.03498 -0.9024 68.71875 -13.75 68.71875 -13.75 25.96875 -9.9362 29.5 -21.0312 29.5 -21.0312l-1.28125 0.0625c-6.63623 11.64 -28.875 18.9063 -28.875 18.9063 -14.37751 5.9749 -37.3125 9.625 -37.3125 9.625 -33.04876 5.0562 -52.78125 1.7812 -52.78125 1.7812 -29.16499 -3.4112 -28.125 -14.125 -28.125 -14.125 -0.70998 -13.17376 34.09375 -24.84375 34.09375 -24.84375l-0.8125 -1.625z" />
</group>
</vector>

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="48dp"
android:viewportHeight="341.3282"
android:viewportWidth="341.3282"
android:width="48dp" >
<group
android:translateX="192.1762"
android:translateY="-161.6981" >
<path
android:fillColor="#e20619"
android:pathData="M-19.260181 162.70135c-1.41518 0.0122 -2.17188 0.0547 -2.17188 0.0547l0 38.97656c0 0 34.47157 -1.48985 68.47657 19.66016 31.90375 19.8425 46.33007 48.63476 46.33007 48.63476l42.875001 0c0 0 -14.0307 -44.90906 -63.283201 -78.57031 -40.18219 -27.46406 -82.3202997 -28.8409 -92.22656 -28.75586zm-36.57227 3.50781c0 0 -11.52593 2.02578 -25.335932 7.17578 -13.80876 5.15 -24.093757 11.33789 -24.093757 11.33789l19.630857 33.80469c0 0 9.017192 -5.30375 19.523442 -9 10.505 -3.6975 18.2461 -5.13867 18.2461 -5.13867l-7.97071 -38.17969zm-74.322269 35.87695c0 0 -9.61234 8.42672 -15.05859 14.26172 -5.445 5.83375 -11.78125 13.73047 -11.78125 13.73047l31.53516 23.5625c0 0 3.85672 -5.58523 8.51172 -10.45898 4.655 -4.875 11.68554 -11.1543 11.68554 -11.1543l-24.89258 -29.94141zm-8.26757 84.37305l8.4082 91.28906 27.40821 0 47.216789 -91.28906 -25.662112 0 -29.216787 65.39453 -0.26758 0 -1.15039 -65.39453 -26.73633 0zm92.705079 0l-19.40235 91.28906 36.00782 0c17.87 0 32.1109103 -7.58406 35.9472603 -25.63281 2.61309 -12.29375 -3.21905 -19.61883 -14.49219 -21.58008l0.0566 -0.26172c9.87767 -2.22375 19.2127797 -7.58687 22.3261797 -22.23437 2.89127 -13.6025 -5.0857097 -21.58008 -24.97071 -21.58008l-35.47265 0zm80.34765 0l-19.40429 91.28906 36.00781 0c17.87 0 32.11091 -7.58406 35.94726 -25.63281 2.61309 -12.29375 -3.21905 -19.61883 -14.49218 -21.58008l0.0547 -0.26172c9.87767 -2.22375 19.21473 -7.58687 22.32813 -22.23437 2.89127 -13.6025 -5.08766 -21.58008 -24.97266 -21.58008l-35.46875 0zm-59.66406 16.48047l6.44727 0c5.9125 0 9.5452403 3.1382 8.09961 9.93945 -1.64013 7.71625 -7.65008 10.07032 -13.83008 10.07032l-4.97071 0 4.25391 -20.00977zm80.34375 0l6.45117 0c5.91125 0 9.5433 3.1382 8.09766 9.93945 -1.64013 7.71625 -7.64883 10.07032 -13.83008 10.07032l-4.9707 0 4.25195 -20.00977zm-88.09961 36.48828l7.79102 0c6.58375 0 9.4847 4.05422 8.03906 10.85547 -1.47328 6.93125 -6.38828 10.46289 -13.64453 10.46289l-6.7168 0 4.53125 -21.31836zm80.34375 0l7.79297 0c6.58375 0 9.4847 4.05422 8.03906 10.85547 -1.47327 6.93125 -6.38953 10.46289 -13.64453 10.46289l-6.71875 0 4.53125 -21.31836zM-179.1762 394.69744c0 0 14.0307 44.90907 63.28321 78.57032 45.922499 31.3875 94.398429 28.70117 94.398429 28.70117l0 -38.97461c0 0 -34.47156 1.48789 -68.476562 -19.66211 -31.903747 -19.8425 -46.330077 -48.63477 -46.330077 -48.63477l-42.875 0zm261.708989 16.38672c0 0 -3.85672 5.58524 -8.51172 10.45899 -4.655 4.875 -11.68555 11.15429 -11.68555 11.15429l24.89258 29.94141c0 0 9.61234 -8.42672 15.058591 -14.26172 5.445 -5.83375 11.78125 -13.73047 11.78125 -13.73047l-31.535151 -23.5625zm-39.82813 35.11328c0 0 -9.01719 5.30375 -19.52344 9 -10.505 3.6975 -18.2460897 5.13867 -18.2460897 5.13867l7.9726597 38.17969c0 0 11.52398 -2.02578 25.33398 -7.17578 13.80875 -5.15125 24.09375 -11.33984 24.09375 -11.33984l-19.63086 -33.80274z" />
</group>
</vector>

View file

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="48dp"
android:viewportHeight="274"
android:viewportWidth="274"
android:width="48dp" >
<group
android:translateX="-399.5"
android:translateY="238" >
<group
android:scaleX="5.783103"
android:scaleY="5.783103"
android:translateX="-2029.067"
android:translateY="-4604.031" >
<path
android:fillColor="#221f1f"
android:pathData="M432.21 782.077l-0.21 -4.915 -2.44 0 0.8 8.166 2.6 0 4.06 -8.166 -2.45 0 -2.36 4.915z"
android:strokeColor="#221f1f"
android:strokeLineCap="butt"
android:strokeLineJoin="miter"
android:strokeMiterLimit="3.86400008"
android:strokeWidth="0.174" />
<path
android:fillColor="#221f1f"
android:pathData="M440.66 782.422l1.04 0.035c-0.84 1.189 -1.74 1.199 -1.89 1.208 -0.35 0.019 -1.72 -0.287 -1.32 -2.429 0.29 -1.53 1.47 -2.34 2.31 -2.294 0.71 0.038 1.31 0.634 1.24 0.956l2.3 0c0.15 -1.136 -0.5 -2.639 -3.03 -2.954 -2.75 -0.343 -4.93 1.921 -5.1 4.36 -0.22 2.948 1.03 4.314 3.02 4.314 1.5 0 2.12 -0.593 2.66 -1.098l-0.14 0.88 1.63 0 0.94 -4.44 -3.5 0 -0.16 1.462z"
android:strokeColor="#221f1f"
android:strokeLineCap="butt"
android:strokeLineJoin="miter"
android:strokeMiterLimit="3.86400008"
android:strokeWidth="0.174" />
<path
android:fillColor="#221f1f"
android:pathData="M450.15 782.154l-1.63 -4.992 -2.27 0 -1.75 8.238 2.22 0 1.04 -4.68 1.73 4.68 2.18 0 1.75 -8.238 -2.21 0 -1.06 4.992z"
android:strokeColor="#221f1f"
android:strokeLineCap="butt"
android:strokeLineJoin="miter"
android:strokeMiterLimit="3.86400008"
android:strokeWidth="0.174" />
<path
android:fillColor="#00a676"
android:pathData="M442.19 767.575c-0.36 -0.029 -0.73 -0.044 -1.09 -0.044 -7.45 0 -13.48 6.034 -13.48 13.478 0 0.382 0.01 0.76 0.04 1.133l-0.04 0.001 0 15.041 -3.52 3.481 -3.77 -3.764 0.04 -14.757c-0.02 -0.415 -0.04 -0.834 -0.04 -1.256 0 -8.461 5.07 -15.738 12.34 -18.958l-0.03 0.015 9.55 5.63"
android:strokeLineCap="butt"
android:strokeLineJoin="miter"
android:strokeMiterLimit="3.86400008" />
<path
android:fillColor="#00a676"
android:pathData="M429.07 787.517c0.15 0.327 0.32 0.651 0.51 0.97 3.72 6.447 11.97 8.315 18.41 4.593 0.33 -0.191 0.65 -0.394 0.96 -0.607l0.02 0.04 12.65 -7.387 5.29 1.309 -1.38 5.142 -12.93 7.212c-0.35 0.23 -0.71 0.45 -1.07 0.661 -7.33 4.231 -16.16 3.478 -22.59 -1.207l0.03 0.023 0.1 -10.749"
android:strokeLineCap="butt"
android:strokeLineJoin="miter"
android:strokeMiterLimit="3.86400008" />
<path
android:fillColor="#00a676"
android:pathData="M452.7 788.881c0.2 -0.299 0.4 -0.608 0.58 -0.927 3.73 -6.447 1.52 -14.69 -4.93 -18.412 -0.33 -0.191 -0.66 -0.366 -1 -0.526l0.02 -0.041 -12.88 -7.725 -1.26 -4.79 5.14 -1.378 12.62 7.615c0.37 0.187 0.74 0.385 1.11 0.596 7.33 4.231 11.09 12.26 10.25 20.164l0 -0.037 -9.65 5.461"
android:strokeLineCap="butt"
android:strokeLineJoin="miter"
android:strokeMiterLimit="3.86400008" />
</group>
</group>
</vector>

View file

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="48dp"
android:viewportHeight="137"
android:viewportWidth="137"
android:width="48dp" >
<group
android:translateX="8"
android:translateY="0" >
<path
android:fillColor="#007e32"
android:pathData="M 63.88672,0 L 63.88672,21.59178 L 103.26172,44.00878 L 103.26172,91.90917 L 63.88672,115.13671 L 63.88672,136.6748 L 121.91895,103.61327 L 121.91895,32.51952 L 63.88672,0"
android:strokeWidth="1" />
<path
android:fillColor="#55ab26"
android:pathData="M 57.96387,0 L 0,32.51952 L 0,103.61327 L 57.96387,136.6748 L 57.96387,115.13671 L 18.58399,91.90917 L 18.58399,44.00878 L 57.96387,21.59178 L 57.96387,0"
android:strokeWidth="1" />
<path
android:fillColor="#007e32"
android:pathData="M 27.29492,56.93358 L 33.24219,56.93358 L 39.0918,72.4414 L 39.16016,72.4414 L 45.10742,56.93358 L 50.68848,56.93358 L 40.92774,80.5957 L 36.74805,80.5957 L 27.29492,56.93358"
android:strokeWidth="1" />
<path
android:fillColor="#007e32"
android:pathData="M 53.16406,56.93358 L 62.31445,56.93358 C 67.16309,56.93358 71.24024,58.60351 71.24024,64.1162 C 71.24024,67.42675 69.47266,70 66.13281,70.60546 L 72.14356,80.5957 L 65.89356,80.5957 L 60.94727,71.13768 L 58.37403,71.13768 L 58.37403,80.5957 L 53.16406,80.5957 L 53.16406,56.93358 z M 58.37403,66.72362 L 61.4502,66.72362 C 63.35449,66.72362 65.8252,66.66015 65.8252,64.08691 C 65.8252,61.71386 63.69141,61.34277 61.78711,61.34277 L 58.37403,61.34277 L 58.37403,66.72362"
android:strokeWidth="1" />
<path
android:fillColor="#007e32"
android:pathData="M 74.81445,56.93358 L 83.97949,56.93358 C 88.823244,56.93358 92.900392,58.60351 92.900392,64.1162 C 92.900392,67.42675 91.132814,70 87.788088,70.60546 L 93.803713,80.5957 L 87.553713,80.5957 L 82.60742,71.13768 L 80.0293,71.13768 L 80.0293,80.5957 L 74.81445,80.5957 L 74.81445,56.93358 z M 80.0293,66.72362 L 83.10547,66.72362 C 85.00977,66.72362 87.490237,66.66015 87.490237,64.08691 C 87.490237,61.71386 85.34668,61.34277 83.44238,61.34277 L 80.0293,61.34277 L 80.0293,66.72362"
android:strokeWidth="1" />
</group>
</vector>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="22dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="22dp" >
<path
android:fillColor="#a3007c"
android:pathData="M 249.5 -0.5 C 387.571187458 -0.5 499.5 111.428812542 499.5 249.5 C 499.5 387.571187458 387.571187458 499.5 249.5 499.5 C 111.428812542 499.5 -0.5 387.571187458 -0.5 249.5 C -0.5 111.428812542 111.428812542 -0.5 249.5 -0.5 Z" />
<group
android:scaleX="0.93"
android:scaleY="0.93"
android:translateY="28" >
<path
android:fillColor="#ffffff"
android:pathData="M178.20792 263.87558C178.20776 271.38825 176.67741 278.10092 173.61686
284.0136C170.62558 289.92634 166.48668 294.83041 161.20016 298.72583C155.07863
303.31689 148.33118 306.58627 140.9578 308.53399C133.65374 310.48171 124.36731
311.45557 113.09846 311.45557L45.276115 311.45557L45.276115 156.09022L105.58583
156.09022C118.10679 156.09037 127.2541 156.50774 133.0278 157.34232C138.87084
158.17721 144.64443 160.02059 150.34858 162.87245C156.26117 165.86374 160.64353
169.8983 163.49568 174.97613C166.41712 179.98469 167.87791 185.72349 167.87805
192.19258C167.87791 199.70532 165.89541 206.34842 161.93055 212.12191C157.96542
217.82604 152.36574 222.27796 145.13148 225.4777L145.13148 226.31243C155.28731
228.3298 163.32164 232.50348 169.2345 238.83348C175.21663 245.16364 178.20776
253.51099 178.20792 263.87558M126.87162 200.01823C126.87151 197.44458 126.21068
194.87081 124.88912 192.29692C123.63691 189.72327 121.37617 187.81033 118.10688
186.5581C115.18521 185.44525 111.53325 184.85398 107.15096 184.78429C102.83808
184.64529 96.751466 184.57573 88.891101 184.57561L85.134787 184.57561L85.134787
217.44336L91.395311 217.44336C97.725325 217.44345 103.11633 217.33911 107.56833
217.13033C112.02017 216.92174 115.53302 216.22613 118.10688 215.04349C121.72398
213.44368 124.08906 211.39162 125.20214 208.88731C126.31502 206.31364 126.87151
203.35729 126.87162 200.01823M136.67977 263.24953C136.67966 258.31072 135.7058
254.51963 133.75819 251.87624C131.87993 249.16341 128.64533 247.14613 124.05438
245.8244C120.92402 244.92017 116.61122 244.43324 111.11596 244.36361C105.62053
244.29412 99.881725 244.25934 93.899521 244.25927L85.134787 244.25927L85.134787
282.97018L88.056365 282.97018C99.325235 282.97021 107.39435 282.93543 112.26373
282.86584C117.13293 282.79631 121.61964 281.89201 125.72385 280.15294C129.89743
278.41394 132.74945 276.11842 134.2799 273.26637C135.8797 270.34483 136.67966
267.00589 136.67977 263.24953M344.11181 255.21519C344.11166 274.41417 338.26851
289.12639 326.58235 299.35189C314.89591 309.57741 297.67948 314.69017 274.93302
314.69017C252.18638 314.69017 234.96996 309.57741 223.28369 299.35189C211.66692
289.12639 205.85855 274.44895 205.85857 255.31953L205.85857 156.09022L246.13461
156.09022L246.13461 253.02401C246.13455 263.80607 248.39529 271.8404 252.91684
277.12702C257.43826 282.41372 264.77698 285.05705 274.93302 285.05702C284.94976
285.05705 292.2537 282.51806 296.84486 277.44005C301.50535 272.36211 303.83566
264.22344 303.83577 253.02401L303.83577 156.09022L344.11181 156.09022L344.11181
255.21519M506.05073 262.62348C506.05059 277.92701 499.5466 290.37849 486.53876
299.97794C473.60023 309.50785 456.00122 314.2728 433.74167 314.2728C420.87276
314.2728 409.63861 313.15982 400.03918 310.93386C390.50925 308.63833 381.57062
305.75154 373.22327 302.27346L373.22327 265.02334L377.60564 265.02334C385.88342
271.63171 395.13507 276.70969 405.36063 280.25729C415.65566 283.80494 425.53337
285.57876 434.99378 285.57873C437.42835 285.57876 440.62817 285.37007 444.59325
284.95268C448.55816 284.53534 451.79276 283.83973 454.29706 282.86584C457.35767
281.61376 459.86188 280.04863 461.80969 278.17045C463.82687 276.29232 464.83551
273.50987 464.83561 269.82308C464.83551 266.41462 463.37472 263.49304 460.45324
261.05835C457.60113 258.55419 453.39267 256.64125 447.82785 255.31953C441.98462
253.92836 435.79366 252.64148 429.25497 251.45887C422.7857 250.20683 416.69908
248.6417 410.9951 246.76348C397.91753 242.52031 388.49197 236.7815 382.7184
229.54704C377.01435 222.24318 374.16234 213.20021 374.16235 202.4181C374.16234
187.94946 380.63154 176.15881 393.56998 167.04614C406.57791 157.86419 423.27262
153.27314 443.65417 153.27298C453.8796 153.27314 463.96599 154.28178 473.91337
156.2989C483.93009 158.24678 492.59047 160.7162 499.89455 163.70719L499.89455
199.49652L495.61652 199.49652C489.35587 194.48822 481.66935 190.31454 472.55693
186.97547C463.51384 183.56709 454.26219 181.86284 444.80193 181.86271C441.46291
181.86284 438.12396 182.10631 434.78509 182.59311C431.51564 183.0106 428.3506
183.84534 425.28997 185.09732C422.57701 186.14086 420.24671 187.74077 418.29905
189.89705C416.35127 191.98401 415.37742 194.38388 415.37747 197.09665C415.37742
201.20089 416.94255 204.36593 420.07286 206.59178C423.20306 208.74829 429.11577
210.73079 437.81102 212.53928C443.51497 213.72192 448.97553 214.86968 454.19272
215.98257C459.47929 217.09565 465.14853 218.62599 471.20048 220.57362C483.09535
224.46915 491.86008 229.79059 497.49468 236.53796C503.19857 243.21592 506.05059
251.91108 506.05073 262.62348" />
</group>
</vector>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="32dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="32dp" >
<path
android:fillColor="#a3007c"
android:pathData="M 249.5 -0.5 C 387.571187458 -0.5 499.5 111.428812542 499.5 249.5 C 499.5 387.571187458 387.571187458 499.5 249.5 499.5 C 111.428812542 499.5 -0.5 387.571187458 -0.5 249.5 C -0.5 111.428812542 111.428812542 -0.5 249.5 -0.5 Z" />
<group
android:scaleX="0.93"
android:scaleY="0.93"
android:translateY="28" >
<path
android:fillColor="#ffffff"
android:pathData="M178.20792 263.87558C178.20776 271.38825 176.67741 278.10092 173.61686
284.0136C170.62558 289.92634 166.48668 294.83041 161.20016 298.72583C155.07863
303.31689 148.33118 306.58627 140.9578 308.53399C133.65374 310.48171 124.36731
311.45557 113.09846 311.45557L45.276115 311.45557L45.276115 156.09022L105.58583
156.09022C118.10679 156.09037 127.2541 156.50774 133.0278 157.34232C138.87084
158.17721 144.64443 160.02059 150.34858 162.87245C156.26117 165.86374 160.64353
169.8983 163.49568 174.97613C166.41712 179.98469 167.87791 185.72349 167.87805
192.19258C167.87791 199.70532 165.89541 206.34842 161.93055 212.12191C157.96542
217.82604 152.36574 222.27796 145.13148 225.4777L145.13148 226.31243C155.28731
228.3298 163.32164 232.50348 169.2345 238.83348C175.21663 245.16364 178.20776
253.51099 178.20792 263.87558M126.87162 200.01823C126.87151 197.44458 126.21068
194.87081 124.88912 192.29692C123.63691 189.72327 121.37617 187.81033 118.10688
186.5581C115.18521 185.44525 111.53325 184.85398 107.15096 184.78429C102.83808
184.64529 96.751466 184.57573 88.891101 184.57561L85.134787 184.57561L85.134787
217.44336L91.395311 217.44336C97.725325 217.44345 103.11633 217.33911 107.56833
217.13033C112.02017 216.92174 115.53302 216.22613 118.10688 215.04349C121.72398
213.44368 124.08906 211.39162 125.20214 208.88731C126.31502 206.31364 126.87151
203.35729 126.87162 200.01823M136.67977 263.24953C136.67966 258.31072 135.7058
254.51963 133.75819 251.87624C131.87993 249.16341 128.64533 247.14613 124.05438
245.8244C120.92402 244.92017 116.61122 244.43324 111.11596 244.36361C105.62053
244.29412 99.881725 244.25934 93.899521 244.25927L85.134787 244.25927L85.134787
282.97018L88.056365 282.97018C99.325235 282.97021 107.39435 282.93543 112.26373
282.86584C117.13293 282.79631 121.61964 281.89201 125.72385 280.15294C129.89743
278.41394 132.74945 276.11842 134.2799 273.26637C135.8797 270.34483 136.67966
267.00589 136.67977 263.24953M344.11181 255.21519C344.11166 274.41417 338.26851
289.12639 326.58235 299.35189C314.89591 309.57741 297.67948 314.69017 274.93302
314.69017C252.18638 314.69017 234.96996 309.57741 223.28369 299.35189C211.66692
289.12639 205.85855 274.44895 205.85857 255.31953L205.85857 156.09022L246.13461
156.09022L246.13461 253.02401C246.13455 263.80607 248.39529 271.8404 252.91684
277.12702C257.43826 282.41372 264.77698 285.05705 274.93302 285.05702C284.94976
285.05705 292.2537 282.51806 296.84486 277.44005C301.50535 272.36211 303.83566
264.22344 303.83577 253.02401L303.83577 156.09022L344.11181 156.09022L344.11181
255.21519M506.05073 262.62348C506.05059 277.92701 499.5466 290.37849 486.53876
299.97794C473.60023 309.50785 456.00122 314.2728 433.74167 314.2728C420.87276
314.2728 409.63861 313.15982 400.03918 310.93386C390.50925 308.63833 381.57062
305.75154 373.22327 302.27346L373.22327 265.02334L377.60564 265.02334C385.88342
271.63171 395.13507 276.70969 405.36063 280.25729C415.65566 283.80494 425.53337
285.57876 434.99378 285.57873C437.42835 285.57876 440.62817 285.37007 444.59325
284.95268C448.55816 284.53534 451.79276 283.83973 454.29706 282.86584C457.35767
281.61376 459.86188 280.04863 461.80969 278.17045C463.82687 276.29232 464.83551
273.50987 464.83561 269.82308C464.83551 266.41462 463.37472 263.49304 460.45324
261.05835C457.60113 258.55419 453.39267 256.64125 447.82785 255.31953C441.98462
253.92836 435.79366 252.64148 429.25497 251.45887C422.7857 250.20683 416.69908
248.6417 410.9951 246.76348C397.91753 242.52031 388.49197 236.7815 382.7184
229.54704C377.01435 222.24318 374.16234 213.20021 374.16235 202.4181C374.16234
187.94946 380.63154 176.15881 393.56998 167.04614C406.57791 157.86419 423.27262
153.27314 443.65417 153.27298C453.8796 153.27314 463.96599 154.28178 473.91337
156.2989C483.93009 158.24678 492.59047 160.7162 499.89455 163.70719L499.89455
199.49652L495.61652 199.49652C489.35587 194.48822 481.66935 190.31454 472.55693
186.97547C463.51384 183.56709 454.26219 181.86284 444.80193 181.86271C441.46291
181.86284 438.12396 182.10631 434.78509 182.59311C431.51564 183.0106 428.3506
183.84534 425.28997 185.09732C422.57701 186.14086 420.24671 187.74077 418.29905
189.89705C416.35127 191.98401 415.37742 194.38388 415.37747 197.09665C415.37742
201.20089 416.94255 204.36593 420.07286 206.59178C423.20306 208.74829 429.11577
210.73079 437.81102 212.53928C443.51497 213.72192 448.97553 214.86968 454.19272
215.98257C459.47929 217.09565 465.14853 218.62599 471.20048 220.57362C483.09535
224.46915 491.86008 229.79059 497.49468 236.53796C503.19857 243.21592 506.05059
251.91108 506.05073 262.62348" />
</group>
</vector>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="32dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="32dp" >
<path
android:fillColor="#a9a9a9"
android:pathData="M 249.5 -0.5 C 387.571187458 -0.5 499.5 111.428812542 499.5 249.5 C 499.5 387.571187458 387.571187458 499.5 249.5 499.5 C 111.428812542 499.5 -0.5 387.571187458 -0.5 249.5 C -0.5 111.428812542 111.428812542 -0.5 249.5 -0.5 Z" />
<group
android:scaleX="0.93"
android:scaleY="0.93"
android:translateY="28" >
<path
android:fillColor="#ffffff"
android:pathData="M178.20792 263.87558C178.20776 271.38825 176.67741 278.10092 173.61686
284.0136C170.62558 289.92634 166.48668 294.83041 161.20016 298.72583C155.07863
303.31689 148.33118 306.58627 140.9578 308.53399C133.65374 310.48171 124.36731
311.45557 113.09846 311.45557L45.276115 311.45557L45.276115 156.09022L105.58583
156.09022C118.10679 156.09037 127.2541 156.50774 133.0278 157.34232C138.87084
158.17721 144.64443 160.02059 150.34858 162.87245C156.26117 165.86374 160.64353
169.8983 163.49568 174.97613C166.41712 179.98469 167.87791 185.72349 167.87805
192.19258C167.87791 199.70532 165.89541 206.34842 161.93055 212.12191C157.96542
217.82604 152.36574 222.27796 145.13148 225.4777L145.13148 226.31243C155.28731
228.3298 163.32164 232.50348 169.2345 238.83348C175.21663 245.16364 178.20776
253.51099 178.20792 263.87558M126.87162 200.01823C126.87151 197.44458 126.21068
194.87081 124.88912 192.29692C123.63691 189.72327 121.37617 187.81033 118.10688
186.5581C115.18521 185.44525 111.53325 184.85398 107.15096 184.78429C102.83808
184.64529 96.751466 184.57573 88.891101 184.57561L85.134787 184.57561L85.134787
217.44336L91.395311 217.44336C97.725325 217.44345 103.11633 217.33911 107.56833
217.13033C112.02017 216.92174 115.53302 216.22613 118.10688 215.04349C121.72398
213.44368 124.08906 211.39162 125.20214 208.88731C126.31502 206.31364 126.87151
203.35729 126.87162 200.01823M136.67977 263.24953C136.67966 258.31072 135.7058
254.51963 133.75819 251.87624C131.87993 249.16341 128.64533 247.14613 124.05438
245.8244C120.92402 244.92017 116.61122 244.43324 111.11596 244.36361C105.62053
244.29412 99.881725 244.25934 93.899521 244.25927L85.134787 244.25927L85.134787
282.97018L88.056365 282.97018C99.325235 282.97021 107.39435 282.93543 112.26373
282.86584C117.13293 282.79631 121.61964 281.89201 125.72385 280.15294C129.89743
278.41394 132.74945 276.11842 134.2799 273.26637C135.8797 270.34483 136.67966
267.00589 136.67977 263.24953M344.11181 255.21519C344.11166 274.41417 338.26851
289.12639 326.58235 299.35189C314.89591 309.57741 297.67948 314.69017 274.93302
314.69017C252.18638 314.69017 234.96996 309.57741 223.28369 299.35189C211.66692
289.12639 205.85855 274.44895 205.85857 255.31953L205.85857 156.09022L246.13461
156.09022L246.13461 253.02401C246.13455 263.80607 248.39529 271.8404 252.91684
277.12702C257.43826 282.41372 264.77698 285.05705 274.93302 285.05702C284.94976
285.05705 292.2537 282.51806 296.84486 277.44005C301.50535 272.36211 303.83566
264.22344 303.83577 253.02401L303.83577 156.09022L344.11181 156.09022L344.11181
255.21519M506.05073 262.62348C506.05059 277.92701 499.5466 290.37849 486.53876
299.97794C473.60023 309.50785 456.00122 314.2728 433.74167 314.2728C420.87276
314.2728 409.63861 313.15982 400.03918 310.93386C390.50925 308.63833 381.57062
305.75154 373.22327 302.27346L373.22327 265.02334L377.60564 265.02334C385.88342
271.63171 395.13507 276.70969 405.36063 280.25729C415.65566 283.80494 425.53337
285.57876 434.99378 285.57873C437.42835 285.57876 440.62817 285.37007 444.59325
284.95268C448.55816 284.53534 451.79276 283.83973 454.29706 282.86584C457.35767
281.61376 459.86188 280.04863 461.80969 278.17045C463.82687 276.29232 464.83551
273.50987 464.83561 269.82308C464.83551 266.41462 463.37472 263.49304 460.45324
261.05835C457.60113 258.55419 453.39267 256.64125 447.82785 255.31953C441.98462
253.92836 435.79366 252.64148 429.25497 251.45887C422.7857 250.20683 416.69908
248.6417 410.9951 246.76348C397.91753 242.52031 388.49197 236.7815 382.7184
229.54704C377.01435 222.24318 374.16234 213.20021 374.16235 202.4181C374.16234
187.94946 380.63154 176.15881 393.56998 167.04614C406.57791 157.86419 423.27262
153.27314 443.65417 153.27298C453.8796 153.27314 463.96599 154.28178 473.91337
156.2989C483.93009 158.24678 492.59047 160.7162 499.89455 163.70719L499.89455
199.49652L495.61652 199.49652C489.35587 194.48822 481.66935 190.31454 472.55693
186.97547C463.51384 183.56709 454.26219 181.86284 444.80193 181.86271C441.46291
181.86284 438.12396 182.10631 434.78509 182.59311C431.51564 183.0106 428.3506
183.84534 425.28997 185.09732C422.57701 186.14086 420.24671 187.74077 418.29905
189.89705C416.35127 191.98401 415.37742 194.38388 415.37747 197.09665C415.37742
201.20089 416.94255 204.36593 420.07286 206.59178C423.20306 208.74829 429.11577
210.73079 437.81102 212.53928C443.51497 213.72192 448.97553 214.86968 454.19272
215.98257C459.47929 217.09565 465.14853 218.62599 471.20048 220.57362C483.09535
224.46915 491.86008 229.79059 497.49468 236.53796C503.19857 243.21592 506.05059
251.91108 506.05073 262.62348" />
</group>
</vector>

View file

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="22dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="22dp" >
<group
android:pivotX="250"
android:pivotY="250"
android:scaleX="0.93"
android:scaleY="0.93" >
<path
android:fillColor="#0080c0"
android:pathData="M 0 0 H 500 V 500 H 0 V 0 Z" />
<group
android:scaleX="5"
android:scaleY="5"
android:translateX="87" >
<path
android:fillColor="#ffffff"
android:pathData="M 51.904,49.946 h -12.84 c 4.25,-5.939,6.5,-12.684,7.182,-18.825 c 0.768,-6.908,-0.201,-13.224,-3.373,-17.628
L 65.289,2.285 L 64.201,0 L 41.239,11.534 c -0.749,-0.681,-1.837,-0.974,-2.827,-0.762 c -0.267,0.076,-0.523,0.186,-0.762,0.327 l -12.84,6.42
l 0.871,1.741 L -18,41.1 l 1.088,2.285 l 43.68,-21.84 l 0.871,1.741 l 10.12,-5.005 c 1.517,2.69,2.767,6.882,2.177,12.187
c -0.718,6.462,-3.655,13.666,-9.358,19.478 c -5.881,0,-11.197,0,-17.041,0 c -1.064,0.014,-2.091,0.684,-2.437,1.415
c -6.872,13.742,-6.872,33.481,0,47.225 c 0.422,0.907,1.287,1.41,2.285,1.415 h 38.52 c 1,-0.005,1.861,-0.513,2.285,-1.415
c 6.871,-13.743,6.871,-33.482,0,-47.225 C 53.747,50.483,52.888,49.939,51.904,49.946 z
M 29.488,74.646 c -6.123,0,-12.533,0,-18.171,0 c 0.018,-6.964,1.293,-13.946,3.809,-19.587 h 14.363 V 74.646 z
M 35.8,74.646 V 55.06 h 14.363 c 2.506,5.639,3.699,12.642,3.809,19.587 C 47.912,74.645,41.985,74.645,35.8,74.646 z" />
</group>
</group>
</vector>

View file

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="32dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="32dp" >
<group
android:pivotX="250"
android:pivotY="250"
android:scaleX="0.93"
android:scaleY="0.93" >
<path
android:fillColor="#0080c0"
android:pathData="M 0 0 H 500 V 500 H 0 V 0 Z" />
<group
android:scaleX="5"
android:scaleY="5"
android:translateX="87" >
<path
android:fillColor="#ffffff"
android:pathData="M 51.904,49.946 h -12.84 c 4.25,-5.939,6.5,-12.684,7.182,-18.825 c 0.768,-6.908,-0.201,-13.224,-3.373,-17.628
L 65.289,2.285 L 64.201,0 L 41.239,11.534 c -0.749,-0.681,-1.837,-0.974,-2.827,-0.762 c -0.267,0.076,-0.523,0.186,-0.762,0.327 l -12.84,6.42
l 0.871,1.741 L -18,41.1 l 1.088,2.285 l 43.68,-21.84 l 0.871,1.741 l 10.12,-5.005 c 1.517,2.69,2.767,6.882,2.177,12.187
c -0.718,6.462,-3.655,13.666,-9.358,19.478 c -5.881,0,-11.197,0,-17.041,0 c -1.064,0.014,-2.091,0.684,-2.437,1.415
c -6.872,13.742,-6.872,33.481,0,47.225 c 0.422,0.907,1.287,1.41,2.285,1.415 h 38.52 c 1,-0.005,1.861,-0.513,2.285,-1.415
c 6.871,-13.743,6.871,-33.482,0,-47.225 C 53.747,50.483,52.888,49.939,51.904,49.946 z
M 29.488,74.646 c -6.123,0,-12.533,0,-18.171,0 c 0.018,-6.964,1.293,-13.946,3.809,-19.587 h 14.363 V 74.646 z
M 35.8,74.646 V 55.06 h 14.363 c 2.506,5.639,3.699,12.642,3.809,19.587 C 47.912,74.645,41.985,74.645,35.8,74.646 z" />
</group>
</group>
</vector>

View file

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="32dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="32dp" >
<group
android:pivotX="250"
android:pivotY="250"
android:scaleX="0.93"
android:scaleY="0.93" >
<path
android:fillColor="#a9a9a9"
android:pathData="M 0 0 H 500 V 500 H 0 V 0 Z" />
<group
android:scaleX="5"
android:scaleY="5"
android:translateX="87" >
<path
android:fillColor="#ffffff"
android:pathData="M 51.904,49.946 h -12.84 c 4.25,-5.939,6.5,-12.684,7.182,-18.825 c 0.768,-6.908,-0.201,-13.224,-3.373,-17.628
L 65.289,2.285 L 64.201,0 L 41.239,11.534 c -0.749,-0.681,-1.837,-0.974,-2.827,-0.762 c -0.267,0.076,-0.523,0.186,-0.762,0.327 l -12.84,6.42
l 0.871,1.741 L -18,41.1 l 1.088,2.285 l 43.68,-21.84 l 0.871,1.741 l 10.12,-5.005 c 1.517,2.69,2.767,6.882,2.177,12.187
c -0.718,6.462,-3.655,13.666,-9.358,19.478 c -5.881,0,-11.197,0,-17.041,0 c -1.064,0.014,-2.091,0.684,-2.437,1.415
c -6.872,13.742,-6.872,33.481,0,47.225 c 0.422,0.907,1.287,1.41,2.285,1.415 h 38.52 c 1,-0.005,1.861,-0.513,2.285,-1.415
c 6.871,-13.743,6.871,-33.482,0,-47.225 C 53.747,50.483,52.888,49.939,51.904,49.946 z
M 29.488,74.646 c -6.123,0,-12.533,0,-18.171,0 c 0.018,-6.964,1.293,-13.946,3.809,-19.587 h 14.363 V 74.646 z
M 35.8,74.646 V 55.06 h 14.363 c 2.506,5.639,3.699,12.642,3.809,19.587 C 47.912,74.645,41.985,74.645,35.8,74.646 z" />
</group>
</group>
</vector>

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="22dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="22dp" >
<path
android:fillColor="#a3007c"
android:pathData="M 249.5 -0.5 C 387.571187458 -0.5 499.5 111.428812542 499.5 249.5 C 499.5 387.571187458 387.571187458 499.5 249.5 499.5 C 111.428812542 499.5 -0.5 387.571187458 -0.5 249.5 C -0.5 111.428812542 111.428812542 -0.5 249.5 -0.5 Z" />
<group
android:scaleX="17"
android:scaleY="17"
android:translateX="45"
android:translateY="45" >
<path
android:fillColor="#ffffff"
android:pathData="M 20 15.5 c -1.25 0 -2.45 -.2 -3.57 -.57 -.35 -.11 -.74 -.03 -1.02 .24 l -2.2 2.2 c -2.83 -1.44 -5.15 -3.75 -6.59 -6.58 l 2.2 -2.21 c .28 -.27 .36 -.66 .25 -1.01 C 8.7 6.45 8.5 5.25 8.5 4 c 0 -.55 -.45 -1 -1 -1 H 4 c -.55 0 -1 .45 -1 1 0 9.39 7.61 17 17 17 .55 0 1 -.45 1 -1 v -3.5 c 0 -.55 -.45 -1 -1 -1 z" />
</group>
</vector>

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="32dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="32dp" >
<path
android:fillColor="#a3007c"
android:pathData="M 249.5 -0.5 C 387.571187458 -0.5 499.5 111.428812542 499.5 249.5 C 499.5 387.571187458 387.571187458 499.5 249.5 499.5 C 111.428812542 499.5 -0.5 387.571187458 -0.5 249.5 C -0.5 111.428812542 111.428812542 -0.5 249.5 -0.5 Z" />
<group
android:scaleX="17"
android:scaleY="17"
android:translateX="45"
android:translateY="45" >
<path
android:fillColor="#ffffff"
android:pathData="M 20 15.5 c -1.25 0 -2.45 -.2 -3.57 -.57 -.35 -.11 -.74 -.03 -1.02 .24 l -2.2 2.2 c -2.83 -1.44 -5.15 -3.75 -6.59 -6.58 l 2.2 -2.21 c .28 -.27 .36 -.66 .25 -1.01 C 8.7 6.45 8.5 5.25 8.5 4 c 0 -.55 -.45 -1 -1 -1 H 4 c -.55 0 -1 .45 -1 1 0 9.39 7.61 17 17 17 .55 0 1 -.45 1 -1 v -3.5 c 0 -.55 -.45 -1 -1 -1 z" />
</group>
</vector>

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="32dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="32dp" >
<path
android:fillColor="#a9a9a9"
android:pathData="M 249.5 -0.5 C 387.571187458 -0.5 499.5 111.428812542 499.5 249.5 C 499.5 387.571187458 387.571187458 499.5 249.5 499.5 C 111.428812542 499.5 -0.5 387.571187458 -0.5 249.5 C -0.5 111.428812542 111.428812542 -0.5 249.5 -0.5 Z" />
<group
android:scaleX="17"
android:scaleY="17"
android:translateX="45"
android:translateY="45" >
<path
android:fillColor="#ffffff"
android:pathData="M 20 15.5 c -1.25 0 -2.45 -.2 -3.57 -.57 -.35 -.11 -.74 -.03 -1.02 .24 l -2.2 2.2 c -2.83 -1.44 -5.15 -3.75 -6.59 -6.58 l 2.2 -2.21 c .28 -.27 .36 -.66 .25 -1.01 C 8.7 6.45 8.5 5.25 8.5 4 c 0 -.55 -.45 -1 -1 -1 H 4 c -.55 0 -1 .45 -1 1 0 9.39 7.61 17 17 17 .55 0 1 -.45 1 -1 v -3.5 c 0 -.55 -.45 -1 -1 -1 z" />
</group>
</vector>

View file

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="22dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="22dp" >
<path
android:fillColor="#ffffff"
android:pathData="M 249.5 -0.5 C 387.571187458 -0.5 499.5 111.428812542 499.5 249.5 C 499.5 387.571187458 387.571187458 499.5 249.5 499.5 C 111.428812542 499.5 -0.5 387.571187458 -0.5 249.5 C -0.5 111.428812542 111.428812542 -0.5 249.5 -0.5 Z" />
<group
android:translateX="-124"
android:translateY="-282.36217" >
<path
android:fillColor="#0080c0"
android:pathData="M 530.96544,727.09056 C 518.61233,731.51828 424.32729,729.55598
371.47722,713.67181 C 242.6438,674.95072 188.03985,698.09969 188.71925,698.44999
C 234.50268,749.59823 301.00643,781.86217 375.00001,781.86217 C
433.98426,781.86217 488.2424,761.35276 530.96544,727.09056 z
M 553.7215,706.36522 C 506.77439,716.60935 450.5039,712.13823 401.70643,703.18706
C 354.10678,691.99951 300.55231,671.99455 270.35714,674.50504 L
298.92857,540.21932 L 467.14285,540.21932 L 478.92857,480.93318 L
311.07143,480.93318 L 328.21428,397.36218 L 500.71428,397.36218 L
511.42857,339.50504 L 270,339.50504 L 199.28571,673.07647 C 177.5,676.64789
174.84375,681.51396 174.76786,681.49928 C 143.87047,639.76479
125.49999,588.19576 125.49999,532.36218 C 125.49999,394.63817 237.276,282.86218
375.00001,282.86218 C 512.72399,282.86218 624.5,394.63817 624.5,532.36218 C
624.5,600.02229 597.49914,661.40668 553.7215,706.36522 z"
android:strokeWidth="1" />
</group>
</vector>

View file

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="32dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="32dp" >
<path
android:fillColor="#ffffff"
android:pathData="M 249.5 -0.5 C 387.571187458 -0.5 499.5 111.428812542 499.5 249.5 C 499.5 387.571187458 387.571187458 499.5 249.5 499.5 C 111.428812542 499.5 -0.5 387.571187458 -0.5 249.5 C -0.5 111.428812542 111.428812542 -0.5 249.5 -0.5 Z" />
<group
android:translateX="-124"
android:translateY="-282.36217" >
<path
android:fillColor="#0080c0"
android:pathData="M 530.96544,727.09056 C 518.61233,731.51828 424.32729,729.55598
371.47722,713.67181 C 242.6438,674.95072 188.03985,698.09969 188.71925,698.44999
C 234.50268,749.59823 301.00643,781.86217 375.00001,781.86217 C
433.98426,781.86217 488.2424,761.35276 530.96544,727.09056 z
M 553.7215,706.36522 C 506.77439,716.60935 450.5039,712.13823 401.70643,703.18706
C 354.10678,691.99951 300.55231,671.99455 270.35714,674.50504 L
298.92857,540.21932 L 467.14285,540.21932 L 478.92857,480.93318 L
311.07143,480.93318 L 328.21428,397.36218 L 500.71428,397.36218 L
511.42857,339.50504 L 270,339.50504 L 199.28571,673.07647 C 177.5,676.64789
174.84375,681.51396 174.76786,681.49928 C 143.87047,639.76479
125.49999,588.19576 125.49999,532.36218 C 125.49999,394.63817 237.276,282.86218
375.00001,282.86218 C 512.72399,282.86218 624.5,394.63817 624.5,532.36218 C
624.5,600.02229 597.49914,661.40668 553.7215,706.36522 z"
android:strokeWidth="1" />
</group>
</vector>

View file

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="32dp"
android:viewportHeight="500"
android:viewportWidth="500"
android:width="32dp" >
<path
android:fillColor="#ffffff"
android:pathData="M 249.5 -0.5 C 387.571187458 -0.5 499.5 111.428812542 499.5 249.5 C 499.5 387.571187458 387.571187458 499.5 249.5 499.5 C 111.428812542 499.5 -0.5 387.571187458 -0.5 249.5 C -0.5 111.428812542 111.428812542 -0.5 249.5 -0.5 Z" />
<group
android:translateX="-124"
android:translateY="-282.36217" >
<path
android:fillColor="#a9a9a9"
android:pathData="M 530.96544,727.09056 C 518.61233,731.51828 424.32729,729.55598
371.47722,713.67181 C 242.6438,674.95072 188.03985,698.09969 188.71925,698.44999
C 234.50268,749.59823 301.00643,781.86217 375.00001,781.86217 C
433.98426,781.86217 488.2424,761.35276 530.96544,727.09056 z
M 553.7215,706.36522 C 506.77439,716.60935 450.5039,712.13823 401.70643,703.18706
C 354.10678,691.99951 300.55231,671.99455 270.35714,674.50504 L
298.92857,540.21932 L 467.14285,540.21932 L 478.92857,480.93318 L
311.07143,480.93318 L 328.21428,397.36218 L 500.71428,397.36218 L
511.42857,339.50504 L 270,339.50504 L 199.28571,673.07647 C 177.5,676.64789
174.84375,681.51396 174.76786,681.49928 C 143.87047,639.76479
125.49999,588.19576 125.49999,532.36218 C 125.49999,394.63817 237.276,282.86218
375.00001,282.86218 C 512.72399,282.86218 624.5,394.63817 624.5,532.36218 C
624.5,600.02229 597.49914,661.40668 553.7215,706.36522 z"
android:strokeWidth="1" />
</group>
</vector>

Some files were not shown because too many files have changed in this diff Show more