title stringlengths 1 185 | diff stringlengths 0 32.2M | body stringlengths 0 123k ⌀ | url stringlengths 57 58 | created_at stringlengths 20 20 | closed_at stringlengths 20 20 | merged_at stringlengths 20 20 ⌀ | updated_at stringlengths 20 20 |
|---|---|---|---|---|---|---|---|
BUG: Index(categorical, dtype=object) not returning object dtype | diff --git a/doc/source/whatsnew/v1.1.0.rst b/doc/source/whatsnew/v1.1.0.rst
index 7449c62a5ad31..a4c991dcc166c 100644
--- a/doc/source/whatsnew/v1.1.0.rst
+++ b/doc/source/whatsnew/v1.1.0.rst
@@ -103,7 +103,7 @@ Bug fixes
Categorical
^^^^^^^^^^^
-
+- Bug when passing categorical data to :class:`Index` constructor along with ``dtype=object`` incorrectly returning a :class:`CategoricalIndex` instead of object-dtype :class:`Index` (:issue:`32167`)
-
-
diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py
index c896e68f7a188..53c4dfde2775b 100644
--- a/pandas/core/indexes/base.py
+++ b/pandas/core/indexes/base.py
@@ -304,7 +304,7 @@ def __new__(
# Delay import for perf. https://github.com/pandas-dev/pandas/pull/31423
from pandas.core.indexes.category import CategoricalIndex
- return CategoricalIndex(data, dtype=dtype, copy=copy, name=name, **kwargs)
+ return _maybe_asobject(dtype, CategoricalIndex, data, copy, name, **kwargs)
# interval
elif is_interval_dtype(data) or is_interval_dtype(dtype):
diff --git a/pandas/tests/indexes/test_index_new.py b/pandas/tests/indexes/test_index_new.py
index e150df971da2d..33f61de6a4ebf 100644
--- a/pandas/tests/indexes/test_index_new.py
+++ b/pandas/tests/indexes/test_index_new.py
@@ -6,7 +6,7 @@
from pandas.core.dtypes.common import is_unsigned_integer_dtype
-from pandas import Index, Int64Index, MultiIndex, UInt64Index
+from pandas import CategoricalIndex, Index, Int64Index, MultiIndex, UInt64Index
import pandas._testing as tm
@@ -47,3 +47,9 @@ def test_constructor_dtypes_to_object(self, cast_index, vals):
assert type(index) is Index
assert index.dtype == object
+
+ def test_constructor_categorical_to_object(self):
+ # GH#32167 Categorical data and dtype=object should return object-dtype
+ ci = CategoricalIndex(range(5))
+ result = Index(ci, dtype=object)
+ assert not isinstance(result, CategoricalIndex)
| - [ ] closes #xxxx
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
In master we get a `CategoricalIndex` back.
Fixing this turns out to be pre-requisite to fixing a bug in `CategoricalDtype._from_values_or_dtype`, which in turn is needed to simplify the CategoricalIndex constructors (xref #32141) | https://api.github.com/repos/pandas-dev/pandas/pulls/32167 | 2020-02-22T00:21:01Z | 2020-02-23T15:50:38Z | 2020-02-23T15:50:38Z | 2020-02-23T17:12:53Z |
REGR: preserve freq in DTI/TDI outer join | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index f491774991090..e91bab0925bf7 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -23,6 +23,7 @@ Fixed regressions
- Fixed regression where :func:`read_pickle` raised a ``UnicodeDecodeError`` when reading a py27 pickle with :class:`MultiIndex` column (:issue:`31988`).
- Fixed regression in :class:`DataFrame` arithmetic operations with mis-matched columns (:issue:`31623`)
- Fixed regression in :meth:`GroupBy.agg` calling a user-provided function an extra time on an empty input (:issue:`31760`)
+- Joining on :class:`DatetimeIndex` or :class:`TimedeltaIndex` will preserve ``freq`` in simple cases (:issue:`32166`)
-
.. ---------------------------------------------------------------------------
diff --git a/pandas/core/indexes/datetimelike.py b/pandas/core/indexes/datetimelike.py
index 349b582de4358..72a2aba2d8a88 100644
--- a/pandas/core/indexes/datetimelike.py
+++ b/pandas/core/indexes/datetimelike.py
@@ -910,17 +910,14 @@ def _is_convertible_to_index_for_join(cls, other: Index) -> bool:
return True
return False
- def _wrap_joined_index(self, joined, other):
+ def _wrap_joined_index(self, joined: np.ndarray, other):
+ assert other.dtype == self.dtype, (other.dtype, self.dtype)
name = get_op_result_name(self, other)
- if self._can_fast_union(other):
- joined = self._shallow_copy(joined)
- joined.name = name
- return joined
- else:
- kwargs = {}
- if hasattr(self, "tz"):
- kwargs["tz"] = getattr(other, "tz", None)
- return type(self)._simple_new(joined, name, **kwargs)
+
+ freq = self.freq if self._can_fast_union(other) else None
+ new_data = type(self._data)._simple_new(joined, dtype=self.dtype, freq=freq)
+
+ return type(self)._simple_new(new_data, name=name)
# --------------------------------------------------------------------
# List-Like Methods
diff --git a/pandas/tests/indexes/datetimes/test_join.py b/pandas/tests/indexes/datetimes/test_join.py
index e4d6958dbd3d8..f2f88fd7dc90c 100644
--- a/pandas/tests/indexes/datetimes/test_join.py
+++ b/pandas/tests/indexes/datetimes/test_join.py
@@ -129,3 +129,16 @@ def test_naive_aware_conflicts(self):
with pytest.raises(TypeError, match=msg):
aware.join(naive)
+
+ @pytest.mark.parametrize("tz", [None, "US/Pacific"])
+ def test_join_preserves_freq(self, tz):
+ # GH#32157
+ dti = date_range("2016-01-01", periods=10, tz=tz)
+ result = dti[:5].join(dti[5:], how="outer")
+ assert result.freq == dti.freq
+ tm.assert_index_equal(result, dti)
+
+ result = dti[:5].join(dti[6:], how="outer")
+ assert result.freq is None
+ expected = dti.delete(5)
+ tm.assert_index_equal(result, expected)
diff --git a/pandas/tests/indexes/timedeltas/test_join.py b/pandas/tests/indexes/timedeltas/test_join.py
index 3e73ed35dae96..aaf4ef29e162b 100644
--- a/pandas/tests/indexes/timedeltas/test_join.py
+++ b/pandas/tests/indexes/timedeltas/test_join.py
@@ -35,3 +35,15 @@ def test_does_not_convert_mixed_integer(self):
assert cols.dtype == np.dtype("O")
assert cols.dtype == joined.dtype
tm.assert_index_equal(cols, joined)
+
+ def test_join_preserves_freq(self):
+ # GH#32157
+ tdi = timedelta_range("1 day", periods=10)
+ result = tdi[:5].join(tdi[5:], how="outer")
+ assert result.freq == tdi.freq
+ tm.assert_index_equal(result, tdi)
+
+ result = tdi[:5].join(tdi[6:], how="outer")
+ assert result.freq is None
+ expected = tdi.delete(5)
+ tm.assert_index_equal(result, expected)
| - [x] closes #32157
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
also just a nice cleanup, hoping to get this into ExtensionIndex before long | https://api.github.com/repos/pandas-dev/pandas/pulls/32166 | 2020-02-22T00:09:16Z | 2020-02-26T12:36:36Z | 2020-02-26T12:36:36Z | 2020-02-27T15:34:46Z |
CLN: Fix exception causes in datetimelike.py | diff --git a/pandas/core/arrays/datetimelike.py b/pandas/core/arrays/datetimelike.py
index e39d1dc03adf5..ce1d01e139540 100644
--- a/pandas/core/arrays/datetimelike.py
+++ b/pandas/core/arrays/datetimelike.py
@@ -775,8 +775,10 @@ def searchsorted(self, value, side="left", sorter=None):
if isinstance(value, str):
try:
value = self._scalar_from_string(value)
- except ValueError:
- raise TypeError("searchsorted requires compatible dtype or scalar")
+ except ValueError as e:
+ raise TypeError(
+ "searchsorted requires compatible dtype or scalar"
+ ) from e
elif is_valid_nat_for_dtype(value, self.dtype):
value = NaT
@@ -1039,7 +1041,7 @@ def _validate_frequency(cls, index, freq, **kwargs):
raise ValueError(
f"Inferred frequency {inferred} from passed values "
f"does not conform to passed frequency {freq.freqstr}"
- )
+ ) from e
# monotonicity/uniqueness properties are called via frequencies.infer_freq,
# see GH#23789
| - [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32164 | 2020-02-21T21:21:34Z | 2020-02-25T01:52:33Z | 2020-02-25T01:52:33Z | 2020-02-25T01:52:38Z |
Error on C Warnings | diff --git a/pandas/_libs/hashtable_class_helper.pxi.in b/pandas/_libs/hashtable_class_helper.pxi.in
index 811025a4b5764..11eecc46b335d 100644
--- a/pandas/_libs/hashtable_class_helper.pxi.in
+++ b/pandas/_libs/hashtable_class_helper.pxi.in
@@ -193,7 +193,7 @@ cdef class StringVector:
append_data_string(self.data, x)
- cdef extend(self, ndarray[:] x):
+ cdef extend(self, ndarray[object] x):
for i in range(len(x)):
self.append(x[i])
@@ -238,7 +238,7 @@ cdef class ObjectVector:
self.external_view_exists = True
return self.ao
- cdef extend(self, ndarray[:] x):
+ cdef extend(self, ndarray[object] x):
for i in range(len(x)):
self.append(x[i])
diff --git a/pandas/_libs/internals.pyx b/pandas/_libs/internals.pyx
index 63f076b7ee993..c65205e406607 100644
--- a/pandas/_libs/internals.pyx
+++ b/pandas/_libs/internals.pyx
@@ -378,25 +378,23 @@ def get_blkno_indexers(int64_t[:] blknos, bint group=True):
object blkno
object group_dict = defaultdict(list)
- int64_t[:] res_view
n = blknos.shape[0]
-
- if n == 0:
- return
-
+ result = list()
start = 0
cur_blkno = blknos[start]
- if group is False:
+ if n == 0:
+ pass
+ elif group is False:
for i in range(1, n):
if blknos[i] != cur_blkno:
- yield cur_blkno, slice(start, i)
+ result.append((cur_blkno, slice(start, i)))
start = i
cur_blkno = blknos[i]
- yield cur_blkno, slice(start, n)
+ result.append((cur_blkno, slice(start, n)))
else:
for i in range(1, n):
if blknos[i] != cur_blkno:
@@ -409,19 +407,20 @@ def get_blkno_indexers(int64_t[:] blknos, bint group=True):
for blkno, slices in group_dict.items():
if len(slices) == 1:
- yield blkno, slice(slices[0][0], slices[0][1])
+ result.append((blkno, slice(slices[0][0], slices[0][1])))
else:
tot_len = sum(stop - start for start, stop in slices)
- result = np.empty(tot_len, dtype=np.int64)
- res_view = result
+ arr = np.empty(tot_len, dtype=np.int64)
i = 0
for start, stop in slices:
for diff in range(start, stop):
- res_view[i] = diff
+ arr[i] = diff
i += 1
- yield blkno, result
+ result.append((blkno, arr))
+
+ return result
def get_blkno_placements(blknos, group: bool = True):
diff --git a/pandas/_libs/parsers.pyx b/pandas/_libs/parsers.pyx
index 4f7d75e0aaad6..e532d991acf1e 100644
--- a/pandas/_libs/parsers.pyx
+++ b/pandas/_libs/parsers.pyx
@@ -806,7 +806,6 @@ cdef class TextReader:
self._tokenize_rows(1)
header = [ self.names ]
- data_line = 0
if self.parser.lines < 1:
field_count = len(header[0])
diff --git a/pandas/_libs/src/ujson/python/date_conversions.c b/pandas/_libs/src/ujson/python/date_conversions.c
index bcb1334d978ef..4c25ab572bebe 100644
--- a/pandas/_libs/src/ujson/python/date_conversions.c
+++ b/pandas/_libs/src/ujson/python/date_conversions.c
@@ -67,7 +67,7 @@ npy_datetime NpyDateTimeToEpoch(npy_datetime dt, NPY_DATETIMEUNIT base) {
}
/* Convert PyDatetime To ISO C-string. mutates len */
-char *PyDateTimeToIso(PyDateTime_Date *obj, NPY_DATETIMEUNIT base,
+char *PyDateTimeToIso(PyObject *obj, NPY_DATETIMEUNIT base,
size_t *len) {
npy_datetimestruct dts;
int ret;
@@ -98,7 +98,7 @@ char *PyDateTimeToIso(PyDateTime_Date *obj, NPY_DATETIMEUNIT base,
return result;
}
-npy_datetime PyDateTimeToEpoch(PyDateTime_Date *dt, NPY_DATETIMEUNIT base) {
+npy_datetime PyDateTimeToEpoch(PyObject *dt, NPY_DATETIMEUNIT base) {
npy_datetimestruct dts;
int ret;
diff --git a/pandas/_libs/src/ujson/python/date_conversions.h b/pandas/_libs/src/ujson/python/date_conversions.h
index 1b5cbf2a7e307..23e36999be43f 100644
--- a/pandas/_libs/src/ujson/python/date_conversions.h
+++ b/pandas/_libs/src/ujson/python/date_conversions.h
@@ -4,7 +4,6 @@
#define PY_SSIZE_T_CLEAN
#include <Python.h>
#include <numpy/ndarraytypes.h>
-#include "datetime.h"
// Scales value inplace from nanosecond resolution to unit resolution
int scaleNanosecToUnit(npy_int64 *value, NPY_DATETIMEUNIT unit);
@@ -23,10 +22,10 @@ npy_datetime NpyDateTimeToEpoch(npy_datetime dt, NPY_DATETIMEUNIT base);
// up to precision `base` e.g. base="s" yields 2020-01-03T00:00:00Z
// while base="ns" yields "2020-01-01T00:00:00.000000000Z"
// len is mutated to save the length of the returned string
-char *PyDateTimeToIso(PyDateTime_Date *obj, NPY_DATETIMEUNIT base, size_t *len);
+char *PyDateTimeToIso(PyObject *obj, NPY_DATETIMEUNIT base, size_t *len);
// Convert a Python Date/Datetime to Unix epoch with resolution base
-npy_datetime PyDateTimeToEpoch(PyDateTime_Date *dt, NPY_DATETIMEUNIT base);
+npy_datetime PyDateTimeToEpoch(PyObject *dt, NPY_DATETIMEUNIT base);
char *int64ToIsoDuration(int64_t value, size_t *len);
diff --git a/pandas/_libs/src/ujson/python/objToJSON.c b/pandas/_libs/src/ujson/python/objToJSON.c
index 95e98779c2368..965d6aec2c1cf 100644
--- a/pandas/_libs/src/ujson/python/objToJSON.c
+++ b/pandas/_libs/src/ujson/python/objToJSON.c
@@ -1451,7 +1451,7 @@ char **NpyArr_encodeLabels(PyArrayObject *labels, PyObjectEncoder *enc,
} else {
// datetime.* objects don't follow above rules
nanosecVal =
- PyDateTimeToEpoch((PyDateTime_Date *)item, NPY_FR_ns);
+ PyDateTimeToEpoch(item, NPY_FR_ns);
}
}
}
@@ -1469,8 +1469,7 @@ char **NpyArr_encodeLabels(PyArrayObject *labels, PyObjectEncoder *enc,
if (type_num == NPY_DATETIME) {
cLabel = int64ToIso(nanosecVal, base, &len);
} else {
- cLabel = PyDateTimeToIso((PyDateTime_Date *)item,
- base, &len);
+ cLabel = PyDateTimeToIso(item, base, &len);
}
}
if (cLabel == NULL) {
@@ -1683,7 +1682,7 @@ void Object_beginTypeContext(JSOBJ _obj, JSONTypeContext *tc) {
NPY_DATETIMEUNIT base =
((PyObjectEncoder *)tc->encoder)->datetimeUnit;
GET_TC(tc)->longValue =
- PyDateTimeToEpoch((PyDateTime_Date *)obj, base);
+ PyDateTimeToEpoch(obj, base);
tc->type = JT_LONG;
}
return;
@@ -1710,7 +1709,7 @@ void Object_beginTypeContext(JSOBJ _obj, JSONTypeContext *tc) {
NPY_DATETIMEUNIT base =
((PyObjectEncoder *)tc->encoder)->datetimeUnit;
GET_TC(tc)->longValue =
- PyDateTimeToEpoch((PyDateTime_Date *)obj, base);
+ PyDateTimeToEpoch(obj, base);
tc->type = JT_LONG;
}
return;
diff --git a/pandas/_libs/tslibs/src/datetime/np_datetime.c b/pandas/_libs/tslibs/src/datetime/np_datetime.c
index a8a47e2e90f93..f647098140528 100644
--- a/pandas/_libs/tslibs/src/datetime/np_datetime.c
+++ b/pandas/_libs/tslibs/src/datetime/np_datetime.c
@@ -21,7 +21,6 @@ This file is derived from NumPy 1.7. See NUMPY_LICENSE.txt
#endif // NPY_NO_DEPRECATED_API
#include <Python.h>
-#include <datetime.h>
#include <numpy/arrayobject.h>
#include <numpy/arrayscalars.h>
@@ -313,15 +312,14 @@ int cmp_npy_datetimestruct(const npy_datetimestruct *a,
* object into a NumPy npy_datetimestruct. Uses tzinfo (if present)
* to convert to UTC time.
*
- * While the C API has PyDate_* and PyDateTime_* functions, the following
- * implementation just asks for attributes, and thus supports
- * datetime duck typing. The tzinfo time zone conversion would require
- * this style of access anyway.
+ * The following implementation just asks for attributes, and thus
+ * supports datetime duck typing. The tzinfo time zone conversion
+ * requires this style of access as well.
*
* Returns -1 on error, 0 on success, and 1 (with no error set)
* if obj doesn't have the needed date or datetime attributes.
*/
-int convert_pydatetime_to_datetimestruct(PyDateTime_Date *dtobj,
+int convert_pydatetime_to_datetimestruct(PyObject *dtobj,
npy_datetimestruct *out) {
// Assumes that obj is a valid datetime object
PyObject *tmp;
diff --git a/pandas/_libs/tslibs/src/datetime/np_datetime.h b/pandas/_libs/tslibs/src/datetime/np_datetime.h
index 549d38409ca83..0bbc24ed822c5 100644
--- a/pandas/_libs/tslibs/src/datetime/np_datetime.h
+++ b/pandas/_libs/tslibs/src/datetime/np_datetime.h
@@ -22,7 +22,6 @@ This file is derived from NumPy 1.7. See NUMPY_LICENSE.txt
#endif // NPY_NO_DEPRECATED_API
#include <numpy/ndarraytypes.h>
-#include <datetime.h>
typedef struct {
npy_int64 days;
@@ -35,7 +34,7 @@ extern const npy_datetimestruct _NS_MAX_DTS;
// stuff pandas needs
// ----------------------------------------------------------------------------
-int convert_pydatetime_to_datetimestruct(PyDateTime_Date *dtobj,
+int convert_pydatetime_to_datetimestruct(PyObject *dtobj,
npy_datetimestruct *out);
npy_datetime npy_datetimestruct_to_datetime(NPY_DATETIMEUNIT base,
diff --git a/setup.py b/setup.py
index 2d49d7e1e85f2..461ef005c3df3 100755
--- a/setup.py
+++ b/setup.py
@@ -433,8 +433,7 @@ def run(self):
extra_compile_args.append("/Z7")
extra_link_args.append("/DEBUG")
else:
- # args to ignore warnings
- extra_compile_args = []
+ extra_compile_args = ["-Werror"]
extra_link_args = []
if debugging_symbols_requested:
extra_compile_args.append("-g")
@@ -477,6 +476,14 @@ def run(self):
# we can't do anything about these warnings because they stem from
# cython+numpy version mismatches.
macros.append(("NPY_NO_DEPRECATED_API", "0"))
+if "-Werror" in extra_compile_args:
+ try:
+ import numpy as np
+ except ImportError:
+ pass
+ else:
+ if np.__version__ < LooseVersion("1.16.0"):
+ extra_compile_args.remove("-Werror")
# ----------------------------------------------------------------------
| Using Clang and latest numpy locally looks like we can use `-Werror`. WIP as I think there may still be things with gcc and older numpy versions to sort out
Note that there is also a warning emitted by cython for unreachable code in groupby, but -Werror wouldn't affect the "cythonization" step.
| https://api.github.com/repos/pandas-dev/pandas/pulls/32163 | 2020-02-21T20:39:06Z | 2020-03-19T21:29:19Z | 2020-03-19T21:29:19Z | 2020-03-19T21:31:19Z |
Backport PR #32155 on branch 1.0.x (TST: add test for DataFrame.reindex on nearest tz-aware DatetimeIndex) | diff --git a/pandas/tests/frame/indexing/test_indexing.py b/pandas/tests/frame/indexing/test_indexing.py
index bb81a1cd64541..4418dee66c092 100644
--- a/pandas/tests/frame/indexing/test_indexing.py
+++ b/pandas/tests/frame/indexing/test_indexing.py
@@ -1618,6 +1618,14 @@ def test_reindex_nearest_tz(self, tz_aware_fixture):
actual = df.reindex(idx[:3], method="nearest")
tm.assert_frame_equal(expected, actual)
+ def test_reindex_nearest_tz_empty_frame(self):
+ # https://github.com/pandas-dev/pandas/issues/31964
+ dti = pd.DatetimeIndex(["2016-06-26 14:27:26+00:00"])
+ df = pd.DataFrame(index=pd.DatetimeIndex(["2016-07-04 14:00:59+00:00"]))
+ expected = pd.DataFrame(index=dti)
+ result = df.reindex(dti, method="nearest")
+ tm.assert_frame_equal(result, expected)
+
def test_reindex_frame_add_nat(self):
rng = date_range("1/1/2000 00:00:00", periods=10, freq="10s")
df = DataFrame({"A": np.random.randn(len(rng)), "B": rng})
| xref #32155
| https://api.github.com/repos/pandas-dev/pandas/pulls/32161 | 2020-02-21T19:45:00Z | 2020-02-21T21:13:22Z | 2020-02-21T21:13:22Z | 2020-02-29T13:37:02Z |
Backport PR #32152 on branch 1.0.x (TST: add test for get_loc on tz-aware DatetimeIndex) | diff --git a/pandas/tests/indexes/datetimes/test_indexing.py b/pandas/tests/indexes/datetimes/test_indexing.py
index 4c600e510790a..7a396f8148f9f 100644
--- a/pandas/tests/indexes/datetimes/test_indexing.py
+++ b/pandas/tests/indexes/datetimes/test_indexing.py
@@ -343,6 +343,19 @@ def test_take_fill_value_with_timezone(self):
idx.take(np.array([1, -5]))
+class TestGetLoc:
+ def test_get_loc_tz_aware(self):
+ # https://github.com/pandas-dev/pandas/issues/32140
+ dti = pd.date_range(
+ pd.Timestamp("2019-12-12 00:00:00", tz="US/Eastern"),
+ pd.Timestamp("2019-12-13 00:00:00", tz="US/Eastern"),
+ freq="5s",
+ )
+ key = pd.Timestamp("2019-12-12 10:19:25", tz="US/Eastern")
+ result = dti.get_loc(key, method="nearest")
+ assert result == 7433
+
+
class TestDatetimeIndex:
@pytest.mark.parametrize(
"null", [None, np.nan, np.datetime64("NaT"), pd.NaT, pd.NA]
| xref #32152
@jbrockmendel with tests moving around, is this OK for the backport. i.e. in the same place as on master. | https://api.github.com/repos/pandas-dev/pandas/pulls/32160 | 2020-02-21T19:37:32Z | 2020-02-21T21:12:58Z | 2020-02-21T21:12:58Z | 2020-02-29T13:34:06Z |
Backport PR #32121 on branch 1.0.x (REG: dont call func on empty input) | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index da79f651b63a9..910389f648b60 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -21,6 +21,7 @@ Fixed regressions
- Fixed regression in :meth:`rolling(..).corr() <pandas.core.window.Rolling.corr>` when using a time offset (:issue:`31789`)
- Fixed regression where :func:`read_pickle` raised a ``UnicodeDecodeError`` when reading a py27 pickle with :class:`MultiIndex` column (:issue:`31988`).
- Fixed regression in :class:`DataFrame` arithmetic operations with mis-matched columns (:issue:`31623`)
+- Fixed regression in :meth:`GroupBy.agg` calling a user-provided function an extra time on an empty input (:issue:`31760`)
-
.. ---------------------------------------------------------------------------
diff --git a/pandas/core/groupby/groupby.py b/pandas/core/groupby/groupby.py
index 6864260809bfb..57d865a051c31 100644
--- a/pandas/core/groupby/groupby.py
+++ b/pandas/core/groupby/groupby.py
@@ -923,17 +923,10 @@ def _python_agg_general(self, func, *args, **kwargs):
try:
# if this function is invalid for this dtype, we will ignore it.
- func(obj[:0])
+ result, counts = self.grouper.agg_series(obj, f)
except TypeError:
continue
- except AssertionError:
- raise
- except Exception:
- # Our function depends on having a non-empty argument
- # See test_groupby_agg_err_catching
- pass
-
- result, counts = self.grouper.agg_series(obj, f)
+
assert result is not None
key = base.OutputKey(label=name, position=idx)
output[key] = self._try_cast(result, obj, numeric_only=True)
diff --git a/pandas/tests/groupby/aggregate/test_aggregate.py b/pandas/tests/groupby/aggregate/test_aggregate.py
index d521a3a500f97..cd1ea2415b0d2 100644
--- a/pandas/tests/groupby/aggregate/test_aggregate.py
+++ b/pandas/tests/groupby/aggregate/test_aggregate.py
@@ -14,6 +14,18 @@
from pandas.core.groupby.grouper import Grouping
+def test_groupby_agg_no_extra_calls():
+ # GH#31760
+ df = pd.DataFrame({"key": ["a", "b", "c", "c"], "value": [1, 2, 3, 4]})
+ gb = df.groupby("key")["value"]
+
+ def dummy_func(x):
+ assert len(x) != 0
+ return x.sum()
+
+ gb.agg(dummy_func)
+
+
def test_agg_regression1(tsframe):
grouped = tsframe.groupby([lambda x: x.year, lambda x: x.month])
result = grouped.agg(np.mean)
| Backport PR #32121: REG: dont call func on empty input | https://api.github.com/repos/pandas-dev/pandas/pulls/32159 | 2020-02-21T18:38:44Z | 2020-02-21T19:25:50Z | 2020-02-21T19:25:50Z | 2020-02-21T19:25:50Z |
TST: Fixed bare pytest.raises in test_window.py | diff --git a/pandas/tests/window/test_window.py b/pandas/tests/window/test_window.py
index cc29ab4f2cd62..41b9d9e84f27e 100644
--- a/pandas/tests/window/test_window.py
+++ b/pandas/tests/window/test_window.py
@@ -29,14 +29,15 @@ def test_constructor(self, which):
c(win_type="boxcar", window=2, min_periods=1, center=False)
# not valid
+ msg = "|".join(["min_periods must be an integer", "center must be a boolean"])
for w in [2.0, "foo", np.array([2])]:
- with pytest.raises(ValueError):
+ with pytest.raises(ValueError, match=msg):
c(win_type="boxcar", window=2, min_periods=w)
- with pytest.raises(ValueError):
+ with pytest.raises(ValueError, match=msg):
c(win_type="boxcar", window=2, min_periods=1, center=w)
for wt in ["foobar", 1]:
- with pytest.raises(ValueError):
+ with pytest.raises(ValueError, match="Invalid win_type"):
c(win_type=wt, window=2)
@td.skip_if_no_scipy
| - [x] ref #30999
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
| https://api.github.com/repos/pandas-dev/pandas/pulls/32158 | 2020-02-21T16:52:19Z | 2020-02-23T15:16:22Z | 2020-02-23T15:16:22Z | 2020-02-23T19:29:02Z |
TST: add test for DataFrame.reindex on nearest tz-aware DatetimeIndex | diff --git a/pandas/tests/frame/indexing/test_indexing.py b/pandas/tests/frame/indexing/test_indexing.py
index fcf0a41e0f74e..636cca0df9d4e 100644
--- a/pandas/tests/frame/indexing/test_indexing.py
+++ b/pandas/tests/frame/indexing/test_indexing.py
@@ -1623,6 +1623,14 @@ def test_reindex_nearest_tz(self, tz_aware_fixture):
actual = df.reindex(idx[:3], method="nearest")
tm.assert_frame_equal(expected, actual)
+ def test_reindex_nearest_tz_empty_frame(self):
+ # https://github.com/pandas-dev/pandas/issues/31964
+ dti = pd.DatetimeIndex(["2016-06-26 14:27:26+00:00"])
+ df = pd.DataFrame(index=pd.DatetimeIndex(["2016-07-04 14:00:59+00:00"]))
+ expected = pd.DataFrame(index=dti)
+ result = df.reindex(dti, method="nearest")
+ tm.assert_frame_equal(result, expected)
+
def test_reindex_frame_add_nat(self):
rng = date_range("1/1/2000 00:00:00", periods=10, freq="10s")
df = DataFrame({"A": np.random.randn(len(rng)), "B": rng})
| - [ ] closes #31964
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32155 | 2020-02-21T14:56:29Z | 2020-02-21T18:36:10Z | 2020-02-21T18:36:09Z | 2020-02-21T19:40:51Z |
Backport PR #32055 on branch 1.0.x (REGR: read_pickle fallback to encoding=latin_1 upon a UnicodeDecodeError) | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index c9031ac1ae9fe..57ed6adf667c8 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -19,6 +19,7 @@ Fixed regressions
- Fixed regression in :meth:`Series.align` when ``other`` is a DataFrame and ``method`` is not None (:issue:`31785`)
- Fixed regression in :meth:`pandas.core.groupby.RollingGroupby.apply` where the ``raw`` parameter was ignored (:issue:`31754`)
- Fixed regression in :meth:`rolling(..).corr() <pandas.core.window.Rolling.corr>` when using a time offset (:issue:`31789`)
+- Fixed regression where :func:`read_pickle` raised a ``UnicodeDecodeError`` when reading a py27 pickle with :class:`MultiIndex` column (:issue:`31988`).
- Fixed regression in :class:`DataFrame` arithmetic operations with mis-matched columns (:issue:`31623`)
-
diff --git a/pandas/io/pickle.py b/pandas/io/pickle.py
index e51f24b551f31..4e731b8ecca11 100644
--- a/pandas/io/pickle.py
+++ b/pandas/io/pickle.py
@@ -171,21 +171,22 @@ def read_pickle(
# 1) try standard library Pickle
# 2) try pickle_compat (older pandas version) to handle subclass changes
-
- excs_to_catch = (AttributeError, ImportError, ModuleNotFoundError)
+ # 3) try pickle_compat with latin-1 encoding upon a UnicodeDecodeError
try:
- with warnings.catch_warnings(record=True):
- # We want to silence any warnings about, e.g. moved modules.
- warnings.simplefilter("ignore", Warning)
- return pickle.load(f)
- except excs_to_catch:
- # e.g.
- # "No module named 'pandas.core.sparse.series'"
- # "Can't get attribute '__nat_unpickle' on <module 'pandas._libs.tslib"
- return pc.load(f, encoding=None)
+ excs_to_catch = (AttributeError, ImportError, ModuleNotFoundError)
+ try:
+ with warnings.catch_warnings(record=True):
+ # We want to silence any warnings about, e.g. moved modules.
+ warnings.simplefilter("ignore", Warning)
+ return pickle.load(f)
+ except excs_to_catch:
+ # e.g.
+ # "No module named 'pandas.core.sparse.series'"
+ # "Can't get attribute '__nat_unpickle' on <module 'pandas._libs.tslib"
+ return pc.load(f, encoding=None)
except UnicodeDecodeError:
- # e.g. can occur for files written in py27; see GH#28645
+ # e.g. can occur for files written in py27; see GH#28645 and GH#31988
return pc.load(f, encoding="latin-1")
finally:
f.close()
diff --git a/pandas/tests/io/data/pickle/test_mi_py27.pkl b/pandas/tests/io/data/pickle/test_mi_py27.pkl
new file mode 100644
index 0000000000000..89021dd828108
Binary files /dev/null and b/pandas/tests/io/data/pickle/test_mi_py27.pkl differ
diff --git a/pandas/tests/io/test_pickle.py b/pandas/tests/io/test_pickle.py
index 3d427dde573af..7605fae945962 100644
--- a/pandas/tests/io/test_pickle.py
+++ b/pandas/tests/io/test_pickle.py
@@ -382,14 +382,23 @@ def test_read(self, protocol, get_random_path):
tm.assert_frame_equal(df, df2)
-def test_unicode_decode_error(datapath):
+@pytest.mark.parametrize(
+ ["pickle_file", "excols"],
+ [
+ ("test_py27.pkl", pd.Index(["a", "b", "c"])),
+ (
+ "test_mi_py27.pkl",
+ pd.MultiIndex.from_arrays([["a", "b", "c"], ["A", "B", "C"]]),
+ ),
+ ],
+)
+def test_unicode_decode_error(datapath, pickle_file, excols):
# pickle file written with py27, should be readable without raising
- # UnicodeDecodeError, see GH#28645
- path = datapath("io", "data", "pickle", "test_py27.pkl")
+ # UnicodeDecodeError, see GH#28645 and GH#31988
+ path = datapath("io", "data", "pickle", pickle_file)
df = pd.read_pickle(path)
# just test the columns are correct since the values are random
- excols = pd.Index(["a", "b", "c"])
tm.assert_index_equal(df.columns, excols)
| Backport PR #32055: REGR: read_pickle fallback to encoding=latin_1 upon a UnicodeDecodeError | https://api.github.com/repos/pandas-dev/pandas/pulls/32154 | 2020-02-21T14:52:34Z | 2020-02-21T16:07:24Z | 2020-02-21T16:07:24Z | 2020-02-21T16:07:24Z |
Backport PR #32126 on branch 1.0.x (BUG: Fix for convert_dtypes with mix of int and string) | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index c9031ac1ae9fe..e0d2de634bf3d 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -45,6 +45,7 @@ Bug fixes
- Fix bug in :meth:`DataFrame.convert_dtypes` for columns that were already using the ``"string"`` dtype (:issue:`31731`).
- Fixed bug in setting values using a slice indexer with string dtype (:issue:`31772`)
+- Fix bug in :meth:`Series.convert_dtypes` for series with mix of integers and strings (:issue:`32117`)
.. ---------------------------------------------------------------------------
diff --git a/pandas/core/dtypes/cast.py b/pandas/core/dtypes/cast.py
index fa80e5c7b3700..4d99a13ccd0b5 100644
--- a/pandas/core/dtypes/cast.py
+++ b/pandas/core/dtypes/cast.py
@@ -1059,11 +1059,6 @@ def convert_dtypes(
if convert_integer:
target_int_dtype = "Int64"
- if isinstance(inferred_dtype, str) and (
- inferred_dtype == "mixed-integer"
- or inferred_dtype == "mixed-integer-float"
- ):
- inferred_dtype = target_int_dtype
if is_integer_dtype(input_array.dtype) and not is_extension_array_dtype(
input_array.dtype
):
diff --git a/pandas/tests/series/test_convert_dtypes.py b/pandas/tests/series/test_convert_dtypes.py
index a6b5fed40a9d7..17527a09f07a1 100644
--- a/pandas/tests/series/test_convert_dtypes.py
+++ b/pandas/tests/series/test_convert_dtypes.py
@@ -81,6 +81,18 @@ class TestSeriesConvertDtypes:
),
},
),
+ ( # GH32117
+ ["h", "i", 1],
+ np.dtype("O"),
+ {
+ (
+ (True, False),
+ (True, False),
+ (True, False),
+ (True, False),
+ ): np.dtype("O"),
+ },
+ ),
(
[10, np.nan, 20],
np.dtype("float"),
@@ -144,11 +156,23 @@ class TestSeriesConvertDtypes:
[1, 2.0],
object,
{
- ((True, False), (True, False), (True,), (True, False)): "Int64",
+ ((True,), (True, False), (True,), (True, False)): "Int64",
((True,), (True, False), (False,), (True, False)): np.dtype(
"float"
),
- ((False,), (True, False), (False,), (True, False)): np.dtype(
+ ((False,), (True, False), (True, False), (True, False)): np.dtype(
+ "object"
+ ),
+ },
+ ),
+ (
+ [1, 2.5],
+ object,
+ {
+ ((True,), (True, False), (True, False), (True, False)): np.dtype(
+ "float"
+ ),
+ ((False,), (True, False), (True, False), (True, False)): np.dtype(
"object"
),
},
| Backport PR #32126: BUG: Fix for convert_dtypes with mix of int and string | https://api.github.com/repos/pandas-dev/pandas/pulls/32153 | 2020-02-21T14:49:02Z | 2020-02-21T16:07:01Z | 2020-02-21T16:07:01Z | 2020-02-21T16:07:01Z |
TST: add test for get_loc on tz-aware DatetimeIndex | diff --git a/pandas/tests/indexes/datetimes/test_indexing.py b/pandas/tests/indexes/datetimes/test_indexing.py
index c358e72538788..ceab670fb5041 100644
--- a/pandas/tests/indexes/datetimes/test_indexing.py
+++ b/pandas/tests/indexes/datetimes/test_indexing.py
@@ -423,6 +423,17 @@ def test_get_loc(self):
with pytest.raises(NotImplementedError):
idx.get_loc(time(12, 30), method="pad")
+ def test_get_loc_tz_aware(self):
+ # https://github.com/pandas-dev/pandas/issues/32140
+ dti = pd.date_range(
+ pd.Timestamp("2019-12-12 00:00:00", tz="US/Eastern"),
+ pd.Timestamp("2019-12-13 00:00:00", tz="US/Eastern"),
+ freq="5s",
+ )
+ key = pd.Timestamp("2019-12-12 10:19:25", tz="US/Eastern")
+ result = dti.get_loc(key, method="nearest")
+ assert result == 7433
+
def test_get_loc_nat(self):
# GH#20464
index = DatetimeIndex(["1/3/2000", "NaT"])
| - [ ] closes #32140
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32152 | 2020-02-21T14:32:40Z | 2020-02-21T18:35:15Z | 2020-02-21T18:35:15Z | 2020-02-21T19:39:31Z |
DOC: move whatsnew to sync master with Backport PR #31511 | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index c9031ac1ae9fe..c9717fa5998c7 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -29,6 +29,10 @@ Fixed regressions
Bug fixes
~~~~~~~~~
+**Datetimelike**
+
+- Bug in :meth:`DataFrame.reindex` and :meth:`Series.reindex` when reindexing with a tz-aware index (:issue:`26683`)
+
**Categorical**
- Fixed bug where :meth:`Categorical.from_codes` improperly raised a ``ValueError`` when passed nullable integer codes. (:issue:`31779`)
diff --git a/doc/source/whatsnew/v1.1.0.rst b/doc/source/whatsnew/v1.1.0.rst
index 13827e8fc4c33..0e2b15974dbbd 100644
--- a/doc/source/whatsnew/v1.1.0.rst
+++ b/doc/source/whatsnew/v1.1.0.rst
@@ -111,7 +111,6 @@ Datetimelike
- Bug in :class:`Timestamp` where constructing :class:`Timestamp` from ambiguous epoch time and calling constructor again changed :meth:`Timestamp.value` property (:issue:`24329`)
- :meth:`DatetimeArray.searchsorted`, :meth:`TimedeltaArray.searchsorted`, :meth:`PeriodArray.searchsorted` not recognizing non-pandas scalars and incorrectly raising ``ValueError`` instead of ``TypeError`` (:issue:`30950`)
- Bug in :class:`Timestamp` where constructing :class:`Timestamp` with dateutil timezone less than 128 nanoseconds before daylight saving time switch from winter to summer would result in nonexistent time (:issue:`31043`)
-- Bug in :meth:`DataFrame.reindex` and :meth:`Series.reindex` when reindexing with a tz-aware index (:issue:`26683`)
- Bug in :meth:`Period.to_timestamp`, :meth:`Period.start_time` with microsecond frequency returning a timestamp one nanosecond earlier than the correct time (:issue:`31475`)
Timedelta
| xref #32150 | https://api.github.com/repos/pandas-dev/pandas/pulls/32151 | 2020-02-21T14:10:39Z | 2020-02-21T19:06:46Z | 2020-02-21T19:06:45Z | 2020-02-21T19:27:42Z |
Backport PR #31511 on branch 1.0.x (BUG: fix reindexing with a tz-awre index and method='nearest') | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index c9031ac1ae9fe..c9717fa5998c7 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -29,6 +29,10 @@ Fixed regressions
Bug fixes
~~~~~~~~~
+**Datetimelike**
+
+- Bug in :meth:`DataFrame.reindex` and :meth:`Series.reindex` when reindexing with a tz-aware index (:issue:`26683`)
+
**Categorical**
- Fixed bug where :meth:`Categorical.from_codes` improperly raised a ``ValueError`` when passed nullable integer codes. (:issue:`31779`)
diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py
index 4fcddb5cade4a..38f8521bfa2d4 100644
--- a/pandas/core/indexes/base.py
+++ b/pandas/core/indexes/base.py
@@ -2817,9 +2817,8 @@ def _get_nearest_indexer(self, target, limit, tolerance):
left_indexer = self.get_indexer(target, "pad", limit=limit)
right_indexer = self.get_indexer(target, "backfill", limit=limit)
- target = np.asarray(target)
- left_distances = abs(self.values[left_indexer] - target)
- right_distances = abs(self.values[right_indexer] - target)
+ left_distances = np.abs(self[left_indexer] - target)
+ right_distances = np.abs(self[right_indexer] - target)
op = operator.lt if self.is_monotonic_increasing else operator.le
indexer = np.where(
diff --git a/pandas/tests/frame/indexing/test_indexing.py b/pandas/tests/frame/indexing/test_indexing.py
index 928b4dc7fecb2..bb81a1cd64541 100644
--- a/pandas/tests/frame/indexing/test_indexing.py
+++ b/pandas/tests/frame/indexing/test_indexing.py
@@ -1608,6 +1608,16 @@ def test_reindex_methods_nearest_special(self):
actual = df.reindex(target, method="nearest", tolerance=[0.5, 0.01, 0.4, 0.1])
tm.assert_frame_equal(expected, actual)
+ def test_reindex_nearest_tz(self, tz_aware_fixture):
+ # GH26683
+ tz = tz_aware_fixture
+ idx = pd.date_range("2019-01-01", periods=5, tz=tz)
+ df = pd.DataFrame({"x": list(range(5))}, index=idx)
+
+ expected = df.head(3)
+ actual = df.reindex(idx[:3], method="nearest")
+ tm.assert_frame_equal(expected, actual)
+
def test_reindex_frame_add_nat(self):
rng = date_range("1/1/2000 00:00:00", periods=10, freq="10s")
df = DataFrame({"A": np.random.randn(len(rng)), "B": rng})
| with whatsnew moved to doc/source/whatsnew/v1.0.2.rst | https://api.github.com/repos/pandas-dev/pandas/pulls/32150 | 2020-02-21T14:07:13Z | 2020-02-21T19:06:21Z | 2020-02-21T19:06:21Z | 2020-02-21T19:28:49Z |
Backport PR #32148 on branch 1.0.x (CI: skip geopandas downstream test (Anaconda installation issue)) | diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py
index ee006233c4c1b..d4d7803a724e2 100644
--- a/pandas/tests/test_downstream.py
+++ b/pandas/tests/test_downstream.py
@@ -107,6 +107,7 @@ def test_pandas_datareader():
# importing from pandas, Cython import warning
@pytest.mark.filterwarnings("ignore:can't resolve:ImportWarning")
+@pytest.mark.skip(reason="Anaconda installation issue - GH32144")
def test_geopandas():
geopandas = import_module("geopandas") # noqa
| Backport PR #32148: CI: skip geopandas downstream test (Anaconda installation issue) | https://api.github.com/repos/pandas-dev/pandas/pulls/32149 | 2020-02-21T13:12:05Z | 2020-02-21T13:47:28Z | 2020-02-21T13:47:28Z | 2020-02-21T13:47:28Z |
CI: skip geopandas downstream test (Anaconda installation issue) | diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py
index 122ef1f47968e..b2a85b539fd86 100644
--- a/pandas/tests/test_downstream.py
+++ b/pandas/tests/test_downstream.py
@@ -107,6 +107,7 @@ def test_pandas_datareader():
# importing from pandas, Cython import warning
@pytest.mark.filterwarnings("ignore:can't resolve:ImportWarning")
+@pytest.mark.skip(reason="Anaconda installation issue - GH32144")
def test_geopandas():
geopandas = import_module("geopandas") # noqa
| xref #32144 | https://api.github.com/repos/pandas-dev/pandas/pulls/32148 | 2020-02-21T12:20:08Z | 2020-02-21T13:11:35Z | 2020-02-21T13:11:35Z | 2020-02-21T13:12:11Z |
Add ecosystem link to pandas-tfrecords project | diff --git a/doc/source/ecosystem.rst b/doc/source/ecosystem.rst
index fb06ee122ae88..b7e53b84f0e02 100644
--- a/doc/source/ecosystem.rst
+++ b/doc/source/ecosystem.rst
@@ -56,6 +56,11 @@ joining paths, replacing file extensions, and checking if files exist are also a
Statistics and machine learning
-------------------------------
+`pandas-tfrecords <https://pypi.org/project/pandas-tfrecords/>`__
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Easy saving pandas dataframe to tensorflow tfrecords format and reading tfrecords to pandas.
+
`Statsmodels <https://www.statsmodels.org/>`__
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| to understand tfrecords format requires quite much time and finally its details are not so needed in daily work with data. [pandas-tfrecords](https://pypi.org/project/pandas-tfrecords/) hides low-level details and provides easy human-usable api to convert pandas to tfrecords and restore back. | https://api.github.com/repos/pandas-dev/pandas/pulls/32143 | 2020-02-21T08:16:09Z | 2020-02-26T05:50:36Z | 2020-02-26T05:50:36Z | 2020-02-26T05:50:43Z |
Import OptionError in pandas.errors | diff --git a/doc/source/whatsnew/v1.1.0.rst b/doc/source/whatsnew/v1.1.0.rst
index 13827e8fc4c33..9e40c28db004b 100644
--- a/doc/source/whatsnew/v1.1.0.rst
+++ b/doc/source/whatsnew/v1.1.0.rst
@@ -43,7 +43,7 @@ Other enhancements
- :class:`Styler` may now render CSS more efficiently where multiple cells have the same styling (:issue:`30876`)
- When writing directly to a sqlite connection :func:`to_sql` now supports the ``multi`` method (:issue:`29921`)
--
+- `OptionError` is now exposed in `pandas.errors` (:issue:`27553`)
-
.. ---------------------------------------------------------------------------
diff --git a/pandas/errors/__init__.py b/pandas/errors/__init__.py
index ebe9a3d5bf472..29e69cc5fe509 100644
--- a/pandas/errors/__init__.py
+++ b/pandas/errors/__init__.py
@@ -4,6 +4,8 @@
Expose public exceptions & warnings
"""
+from pandas._config.config import OptionError
+
from pandas._libs.tslibs import NullFrequencyError, OutOfBoundsDatetime
diff --git a/pandas/tests/test_errors.py b/pandas/tests/test_errors.py
index d72c00ceb0045..515d798fe4322 100644
--- a/pandas/tests/test_errors.py
+++ b/pandas/tests/test_errors.py
@@ -17,6 +17,7 @@
"EmptyDataError",
"ParserWarning",
"MergeError",
+ "OptionError",
],
)
def test_exception_importable(exc):
| - [x] closes #27553
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32142 | 2020-02-21T07:10:00Z | 2020-02-24T16:32:47Z | 2020-02-24T16:32:46Z | 2020-02-24T16:32:50Z |
REF: standardize CategoricalIndex._shallow_copy usage | diff --git a/pandas/core/indexes/category.py b/pandas/core/indexes/category.py
index adb2ed9211bfe..caa6a9a93141f 100644
--- a/pandas/core/indexes/category.py
+++ b/pandas/core/indexes/category.py
@@ -264,10 +264,14 @@ def _simple_new(cls, values, name=None, dtype=None):
# --------------------------------------------------------------------
@Appender(Index._shallow_copy.__doc__)
- def _shallow_copy(self, values=None, dtype=None, **kwargs):
- if dtype is None:
- dtype = self.dtype
- return super()._shallow_copy(values=values, dtype=dtype, **kwargs)
+ def _shallow_copy(self, values=None, **kwargs):
+ if values is None:
+ values = self.values
+
+ cat = Categorical(values, dtype=self.dtype)
+
+ name = kwargs.get("name", self.name)
+ return type(self)._simple_new(cat, name=name)
def _is_dtype_compat(self, other) -> bool:
"""
@@ -422,9 +426,9 @@ def unique(self, level=None):
if level is not None:
self._validate_index_level(level)
result = self.values.unique()
- # CategoricalIndex._shallow_copy keeps original dtype
- # if not otherwise specified
- return self._shallow_copy(result, dtype=result.dtype)
+ # Use _simple_new instead of _shallow_copy to ensure we keep dtype
+ # of result, not self.
+ return type(self)._simple_new(result, name=self.name)
@Appender(Index.duplicated.__doc__)
def duplicated(self, keep="first"):
@@ -450,7 +454,7 @@ def where(self, cond, other=None):
other = self._na_value
values = np.where(cond, self.values, other)
cat = Categorical(values, dtype=self.dtype)
- return self._shallow_copy(cat, **self._get_attributes_dict())
+ return self._shallow_copy(cat)
def reindex(self, target, method=None, level=None, limit=None, tolerance=None):
"""
| The dtype keyword is akward, so this removes the one usage.
In turn this will allow us to simplify `_simple_new` and tighten up what it expects. Saved for separate PR. | https://api.github.com/repos/pandas-dev/pandas/pulls/32141 | 2020-02-21T02:42:26Z | 2020-02-22T16:12:43Z | 2020-02-22T16:12:43Z | 2020-02-22T16:34:04Z |
TST: show_versions test with unmerged commits | diff --git a/pandas/tests/util/test_show_versions.py b/pandas/tests/util/test_show_versions.py
index 0d2c81c4ea6c7..e36ea662fac8b 100644
--- a/pandas/tests/util/test_show_versions.py
+++ b/pandas/tests/util/test_show_versions.py
@@ -1,8 +1,26 @@
import re
+import pytest
+
import pandas as pd
+@pytest.mark.filterwarnings(
+ # openpyxl
+ "ignore:defusedxml.lxml is no longer supported:DeprecationWarning"
+)
+@pytest.mark.filterwarnings(
+ # html5lib
+ "ignore:Using or importing the ABCs from:DeprecationWarning"
+)
+@pytest.mark.filterwarnings(
+ # fastparquet
+ "ignore:pandas.core.index is deprecated:FutureWarning"
+)
+@pytest.mark.filterwarnings(
+ # pandas_datareader
+ "ignore:pandas.util.testing is deprecated:FutureWarning"
+)
def test_show_versions(capsys):
# gh-32041
pd.show_versions()
diff --git a/pandas/util/_print_versions.py b/pandas/util/_print_versions.py
index 99b2b9e9f5f6e..f9502cc22b0c6 100644
--- a/pandas/util/_print_versions.py
+++ b/pandas/util/_print_versions.py
@@ -4,13 +4,23 @@
import os
import platform
import struct
-import subprocess
import sys
from typing import List, Optional, Tuple, Union
from pandas.compat._optional import VERSIONS, _get_version, import_optional_dependency
+def _get_commit_hash() -> Optional[str]:
+ """
+ Use vendored versioneer code to get git hash, which handles
+ git worktree correctly.
+ """
+ from pandas._version import get_versions
+
+ versions = get_versions()
+ return versions["full-revisionid"]
+
+
def get_sys_info() -> List[Tuple[str, Optional[Union[str, int]]]]:
"""
Returns system information as a list
@@ -18,20 +28,7 @@ def get_sys_info() -> List[Tuple[str, Optional[Union[str, int]]]]:
blob: List[Tuple[str, Optional[Union[str, int]]]] = []
# get full commit hash
- commit = None
- if os.path.isdir(".git") and os.path.isdir("pandas"):
- try:
- pipe = subprocess.Popen(
- 'git log --format="%H" -n 1'.split(" "),
- stdout=subprocess.PIPE,
- stderr=subprocess.PIPE,
- )
- so, serr = pipe.communicate()
- except (OSError, ValueError):
- pass
- else:
- if pipe.returncode == 0:
- commit = so.decode("utf-8").strip().strip('"')
+ commit = _get_commit_hash()
blob.append(("commit", commit))
| - [x] closes #32120
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32139 | 2020-02-20T22:19:56Z | 2020-02-26T01:37:31Z | 2020-02-26T01:37:30Z | 2020-02-26T01:41:32Z |
CLN: make tm.N, tm.K private | diff --git a/doc/source/user_guide/reshaping.rst b/doc/source/user_guide/reshaping.rst
index bbec9a770477d..58733b852e3a1 100644
--- a/doc/source/user_guide/reshaping.rst
+++ b/doc/source/user_guide/reshaping.rst
@@ -17,7 +17,6 @@ Reshaping by pivoting DataFrame objects
:suppress:
import pandas._testing as tm
- tm.N = 3
def unpivot(frame):
N, K = frame.shape
@@ -27,7 +26,7 @@ Reshaping by pivoting DataFrame objects
columns = ['date', 'variable', 'value']
return pd.DataFrame(data, columns=columns)
- df = unpivot(tm.makeTimeDataFrame())
+ df = unpivot(tm.makeTimeDataFrame(3))
Data is often stored in so-called "stacked" or "record" format:
@@ -42,9 +41,6 @@ For the curious here is how the above ``DataFrame`` was created:
import pandas._testing as tm
- tm.N = 3
-
-
def unpivot(frame):
N, K = frame.shape
data = {'value': frame.to_numpy().ravel('F'),
@@ -53,7 +49,7 @@ For the curious here is how the above ``DataFrame`` was created:
return pd.DataFrame(data, columns=['date', 'variable', 'value'])
- df = unpivot(tm.makeTimeDataFrame())
+ df = unpivot(tm.makeTimeDataFrame(3))
To select out everything for variable ``A`` we could do:
diff --git a/pandas/_testing.py b/pandas/_testing.py
index 7ebf2c282f8c9..3a12eba5bf881 100644
--- a/pandas/_testing.py
+++ b/pandas/_testing.py
@@ -69,8 +69,8 @@
lzma = _import_lzma()
-N = 30
-K = 4
+_N = 30
+_K = 4
_RAISE_NETWORK_ERROR_DEFAULT = False
# set testing_mode
@@ -1794,45 +1794,45 @@ def all_timeseries_index_generator(k=10):
# make series
def makeFloatSeries(name=None):
- index = makeStringIndex(N)
- return Series(randn(N), index=index, name=name)
+ index = makeStringIndex(_N)
+ return Series(randn(_N), index=index, name=name)
def makeStringSeries(name=None):
- index = makeStringIndex(N)
- return Series(randn(N), index=index, name=name)
+ index = makeStringIndex(_N)
+ return Series(randn(_N), index=index, name=name)
def makeObjectSeries(name=None):
- data = makeStringIndex(N)
+ data = makeStringIndex(_N)
data = Index(data, dtype=object)
- index = makeStringIndex(N)
+ index = makeStringIndex(_N)
return Series(data, index=index, name=name)
def getSeriesData():
- index = makeStringIndex(N)
- return {c: Series(randn(N), index=index) for c in getCols(K)}
+ index = makeStringIndex(_N)
+ return {c: Series(randn(_N), index=index) for c in getCols(_K)}
def makeTimeSeries(nper=None, freq="B", name=None):
if nper is None:
- nper = N
+ nper = _N
return Series(randn(nper), index=makeDateIndex(nper, freq=freq), name=name)
def makePeriodSeries(nper=None, name=None):
if nper is None:
- nper = N
+ nper = _N
return Series(randn(nper), index=makePeriodIndex(nper), name=name)
def getTimeSeriesData(nper=None, freq="B"):
- return {c: makeTimeSeries(nper, freq) for c in getCols(K)}
+ return {c: makeTimeSeries(nper, freq) for c in getCols(_K)}
def getPeriodData(nper=None):
- return {c: makePeriodSeries(nper) for c in getCols(K)}
+ return {c: makePeriodSeries(nper) for c in getCols(_K)}
# make frame
| AFAICT this gets rid of the last two places where we set `tm.N` externally. With those gone, this privatizes these variables in the hopes of not falling back into that pattern. | https://api.github.com/repos/pandas-dev/pandas/pulls/32138 | 2020-02-20T21:47:02Z | 2020-02-21T18:34:11Z | 2020-02-21T18:34:11Z | 2020-02-21T18:34:34Z |
CLN: remove unused tm.isiterable | diff --git a/pandas/_testing.py b/pandas/_testing.py
index 7ebf2c282f8c9..c7c2e315812ac 100644
--- a/pandas/_testing.py
+++ b/pandas/_testing.py
@@ -806,10 +806,6 @@ def assert_is_valid_plot_return_object(objs):
assert isinstance(objs, (plt.Artist, tuple, dict)), msg
-def isiterable(obj):
- return hasattr(obj, "__iter__")
-
-
def assert_is_sorted(seq):
"""Assert that the sequence is sorted."""
if isinstance(seq, (Index, Series)):
| https://api.github.com/repos/pandas-dev/pandas/pulls/32137 | 2020-02-20T21:16:20Z | 2020-02-21T02:15:04Z | 2020-02-21T02:15:04Z | 2020-02-21T02:15:08Z | |
used f-strings in docs | diff --git a/doc/source/user_guide/io.rst b/doc/source/user_guide/io.rst
index bd19b35e8d9e8..c34247a49335d 100644
--- a/doc/source/user_guide/io.rst
+++ b/doc/source/user_guide/io.rst
@@ -3815,7 +3815,7 @@ The right-hand side of the sub-expression (after a comparison operator) can be:
.. code-block:: ipython
string = "HolyMoly'"
- store.select('df', 'index == %s' % string)
+ store.select('df', f'index == {string}')
The latter will **not** work and will raise a ``SyntaxError``.Note that
there's a single quote followed by a double quote in the ``string``
| - [x] xref #32039
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry | https://api.github.com/repos/pandas-dev/pandas/pulls/32133 | 2020-02-20T17:39:09Z | 2020-02-22T16:33:47Z | 2020-02-22T16:33:47Z | 2020-02-22T16:33:51Z |
CLN: NDFrame.__init__ unnecessary code | diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index 9fe1ec7b792c8..fdb8aad680115 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -514,7 +514,7 @@ def __init__(
else:
raise ValueError("DataFrame constructor not properly called!")
- NDFrame.__init__(self, mgr, fastpath=True)
+ NDFrame.__init__(self, mgr)
# ----------------------------------------------------------------------
diff --git a/pandas/core/generic.py b/pandas/core/generic.py
index 579daae2b15c6..500969d2476cc 100644
--- a/pandas/core/generic.py
+++ b/pandas/core/generic.py
@@ -33,7 +33,6 @@
from pandas._libs import Timestamp, iNaT, lib
from pandas._typing import (
Axis,
- Dtype,
FilePathOrBuffer,
FrameOrSeries,
JSONSerializable,
@@ -200,22 +199,10 @@ class NDFrame(PandasObject, SelectionMixin, indexing.IndexingMixin):
def __init__(
self,
data: BlockManager,
- axes: Optional[List[Index]] = None,
copy: bool = False,
- dtype: Optional[Dtype] = None,
attrs: Optional[Mapping[Optional[Hashable], Any]] = None,
- fastpath: bool = False,
):
-
- if not fastpath:
- if dtype is not None:
- data = data.astype(dtype)
- elif copy:
- data = data.copy()
-
- if axes is not None:
- for i, ax in enumerate(axes):
- data = data.reindex_axis(ax, axis=i)
+ # copy kwarg is retained for mypy compat, is not used
object.__setattr__(self, "_is_copy", None)
object.__setattr__(self, "_data", data)
@@ -226,12 +213,13 @@ def __init__(
attrs = dict(attrs)
object.__setattr__(self, "_attrs", attrs)
- def _init_mgr(self, mgr, axes=None, dtype=None, copy=False):
+ @classmethod
+ def _init_mgr(cls, mgr, axes=None, dtype=None, copy=False):
""" passed a manager and a axes dict """
for a, axe in axes.items():
if axe is not None:
mgr = mgr.reindex_axis(
- axe, axis=self._get_block_manager_axis(a), copy=False
+ axe, axis=cls._get_block_manager_axis(a), copy=False
)
# make a copy if explicitly requested
@@ -262,7 +250,8 @@ def attrs(self) -> Dict[Optional[Hashable], Any]:
def attrs(self, value: Mapping[Optional[Hashable], Any]) -> None:
self._attrs = dict(value)
- def _validate_dtype(self, dtype):
+ @classmethod
+ def _validate_dtype(cls, dtype):
""" validate the passed dtype """
if dtype is not None:
dtype = pandas_dtype(dtype)
@@ -271,7 +260,7 @@ def _validate_dtype(self, dtype):
if dtype.kind == "V":
raise NotImplementedError(
"compound dtypes are not implemented "
- f"in the {type(self).__name__} constructor"
+ f"in the {cls.__name__} constructor"
)
return dtype
@@ -324,8 +313,9 @@ def _construct_axes_dict(self, axes=None, **kwargs):
d.update(kwargs)
return d
+ @classmethod
def _construct_axes_from_arguments(
- self, args, kwargs, require_all: bool = False, sentinel=None
+ cls, args, kwargs, require_all: bool = False, sentinel=None
):
"""
Construct and returns axes if supplied in args/kwargs.
@@ -339,7 +329,7 @@ def _construct_axes_from_arguments(
"""
# construct the args
args = list(args)
- for a in self._AXIS_ORDERS:
+ for a in cls._AXIS_ORDERS:
# look for a argument by position
if a not in kwargs:
@@ -349,7 +339,7 @@ def _construct_axes_from_arguments(
if require_all:
raise TypeError("not enough/duplicate arguments specified!")
- axes = {a: kwargs.pop(a, sentinel) for a in self._AXIS_ORDERS}
+ axes = {a: kwargs.pop(a, sentinel) for a in cls._AXIS_ORDERS}
return axes, kwargs
@classmethod
@@ -495,7 +485,7 @@ def ndim(self) -> int:
return self._data.ndim
@property
- def size(self):
+ def size(self) -> int:
"""
Return an int representing the number of elements in this object.
@@ -3660,7 +3650,7 @@ def get(self, key, default=None):
return default
@property
- def _is_view(self):
+ def _is_view(self) -> bool_t:
"""Return boolean indicating if self is view of another array """
return self._data.is_view
@@ -5176,12 +5166,12 @@ def _consolidate(self, inplace: bool_t = False):
return self._constructor(cons_data).__finalize__(self)
@property
- def _is_mixed_type(self):
+ def _is_mixed_type(self) -> bool_t:
f = lambda: self._data.is_mixed_type
return self._protect_consolidate(f)
@property
- def _is_numeric_mixed_type(self):
+ def _is_numeric_mixed_type(self) -> bool_t:
f = lambda: self._data.is_numeric_mixed_type
return self._protect_consolidate(f)
diff --git a/pandas/core/series.py b/pandas/core/series.py
index 9c0ff9780da3e..2182374337c84 100644
--- a/pandas/core/series.py
+++ b/pandas/core/series.py
@@ -324,7 +324,7 @@ def __init__(
data = SingleBlockManager(data, index, fastpath=True)
- generic.NDFrame.__init__(self, data, fastpath=True)
+ generic.NDFrame.__init__(self, data)
self.name = name
self._set_axis(0, index, fastpath=True)
diff --git a/pandas/tests/indexing/test_indexing.py b/pandas/tests/indexing/test_indexing.py
index 1b3e301b0fef0..8af0fe548e48a 100644
--- a/pandas/tests/indexing/test_indexing.py
+++ b/pandas/tests/indexing/test_indexing.py
@@ -7,14 +7,11 @@
import numpy as np
import pytest
-from pandas.errors import AbstractMethodError
-
from pandas.core.dtypes.common import is_float_dtype, is_integer_dtype
import pandas as pd
from pandas import DataFrame, Index, NaT, Series
import pandas._testing as tm
-from pandas.core.generic import NDFrame
from pandas.core.indexers import validate_indices
from pandas.core.indexing import _maybe_numeric_slice, _non_reducing_slice
from pandas.tests.indexing.common import _mklbl
@@ -1094,29 +1091,6 @@ def test_extension_array_cross_section_converts():
tm.assert_series_equal(result, expected)
-@pytest.mark.parametrize(
- "idxr, error, error_message",
- [
- (lambda x: x, AbstractMethodError, None),
- (
- lambda x: x.loc,
- AttributeError,
- "type object 'NDFrame' has no attribute '_AXIS_NAMES'",
- ),
- (
- lambda x: x.iloc,
- AttributeError,
- "type object 'NDFrame' has no attribute '_AXIS_NAMES'",
- ),
- ],
-)
-def test_ndframe_indexing_raises(idxr, error, error_message):
- # GH 25567
- frame = NDFrame(np.random.randint(5, size=(2, 2, 2)))
- with pytest.raises(error, match=error_message):
- idxr(frame)[0]
-
-
def test_readonly_indices():
# GH#17192 iloc with read-only array raising TypeError
df = pd.DataFrame({"data": np.ones(100, dtype="float64")})
| Make methods into classmethods where feasible, annotate in a couple of places.
Removes nonsense test (constructs an invalid NDFrame)
Preparatory for making a potential fastpath _from_mgr constructor.
`attrs` is never passed. Is there a plan to do so @TomAugspurger ? | https://api.github.com/repos/pandas-dev/pandas/pulls/32131 | 2020-02-20T17:12:27Z | 2020-02-22T16:10:24Z | 2020-02-22T16:10:24Z | 2020-02-22T16:39:02Z |
PERF: IntegerIndex._shallow_copy (and by extension, indexing) | diff --git a/pandas/core/indexes/numeric.py b/pandas/core/indexes/numeric.py
index 877b3d1d2ba30..367870f0ee467 100644
--- a/pandas/core/indexes/numeric.py
+++ b/pandas/core/indexes/numeric.py
@@ -103,11 +103,16 @@ def _maybe_cast_slice_bound(self, label, side, kind):
return self._maybe_cast_indexer(label)
@Appender(Index._shallow_copy.__doc__)
- def _shallow_copy(self, values=None, **kwargs):
- if values is not None and not self._can_hold_na:
+ def _shallow_copy(self, values=None, name=lib.no_default):
+ name = name if name is not lib.no_default else self.name
+
+ if values is not None and not self._can_hold_na and values.dtype.kind == "f":
# Ensure we are not returning an Int64Index with float data:
- return self._shallow_copy_with_infer(values=values, **kwargs)
- return super()._shallow_copy(values=values, **kwargs)
+ return Float64Index._simple_new(values, name=name)
+
+ if values is None:
+ values = self.values
+ return type(self)._simple_new(values, name=name)
def _convert_for_op(self, value):
"""
| ```
In [2]: idx = pd.Index(range(1000)).insert(-1, 1)
In [3]: %timeit idx[:5]
2.84 µs ± 97.6 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) # <-- PR
24.5 µs ± 292 ns per loop (mean ± std. dev. of 7 runs, 10000 loops each) # <-- master
In [4]: idx2 = idx.astype('uint64')
In [5]: %timeit idx2[5:]
2.99 µs ± 331 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) # <-- PR
25.8 µs ± 957 ns per loop (mean ± std. dev. of 7 runs, 10000 loops each) # <-- master
```
Motivated by profiling in #32086 and seeing that _shallow_copy_with_infer was taking over a third of the runtime in the relevant benchmark. | https://api.github.com/repos/pandas-dev/pandas/pulls/32130 | 2020-02-20T16:32:29Z | 2020-02-22T16:09:15Z | 2020-02-22T16:09:14Z | 2020-02-22T16:40:45Z |
CLN: auto-inherit specified Index method docstrings | diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py
index ae2387f0fd7b4..2d5a642b83018 100644
--- a/pandas/core/indexes/base.py
+++ b/pandas/core/indexes/base.py
@@ -5439,6 +5439,32 @@ def shape(self):
# overridden in MultiIndex.shape to avoid materializing the values
return self._values.shape
+ @classmethod
+ def __init_subclass__(cls):
+ """
+ Automatically inherit some docstrings, so we dont have to decorate
+ every method with @Appender(Index.foo.__doc__)
+ """
+ names = [
+ "_shallow_copy",
+ "_convert_arr_indexer",
+ "_convert_index_indexer",
+ "astype",
+ "dropna",
+ "duplicated",
+ ]
+
+ for name in names:
+ method = getattr(cls, name)
+ if method.__doc__ is None:
+ for parent in cls.__mro__[1:]:
+ parent_method = getattr(parent, name, None)
+ if parent_method is not None:
+ if parent_method.__doc__ is not None:
+ # Implicitly assuming here that it is a method
+ method.__doc__ = parent_method.__doc__
+ break
+
Index._add_numeric_methods_disabled()
Index._add_logical_methods()
diff --git a/pandas/core/indexes/category.py b/pandas/core/indexes/category.py
index 8c2d7f4aa6c0e..f6360fe5851bb 100644
--- a/pandas/core/indexes/category.py
+++ b/pandas/core/indexes/category.py
@@ -240,7 +240,6 @@ def _simple_new(cls, values: Categorical, name: Label = None):
# --------------------------------------------------------------------
- @Appender(Index._shallow_copy.__doc__)
def _shallow_copy(self, values=None, name: Label = no_default):
name = self.name if name is no_default else name
@@ -368,7 +367,6 @@ def __array__(self, dtype=None) -> np.ndarray:
""" the array interface, return my values """
return np.array(self._data, dtype=dtype)
- @Appender(Index.astype.__doc__)
def astype(self, dtype, copy=True):
if is_interval_dtype(dtype):
from pandas import IntervalIndex
@@ -409,7 +407,6 @@ def unique(self, level=None):
# of result, not self.
return type(self)._simple_new(result, name=self.name)
- @Appender(Index.duplicated.__doc__)
def duplicated(self, keep="first"):
codes = self.codes.astype("i8")
return duplicated_int64(codes, keep)
@@ -601,7 +598,6 @@ def _convert_list_indexer(self, keyarr):
return self.get_indexer(keyarr)
- @Appender(Index._convert_arr_indexer.__doc__)
def _convert_arr_indexer(self, keyarr):
keyarr = com.asarray_tuplesafe(keyarr)
@@ -610,7 +606,6 @@ def _convert_arr_indexer(self, keyarr):
return self._shallow_copy(keyarr)
- @Appender(Index._convert_index_indexer.__doc__)
def _convert_index_indexer(self, keyarr):
return self._shallow_copy(keyarr)
diff --git a/pandas/core/indexes/extension.py b/pandas/core/indexes/extension.py
index daccb35864e98..8d433148a8bb7 100644
--- a/pandas/core/indexes/extension.py
+++ b/pandas/core/indexes/extension.py
@@ -228,7 +228,6 @@ def __iter__(self):
def _ndarray_values(self) -> np.ndarray:
return self._data._ndarray_values
- @Appender(Index.dropna.__doc__)
def dropna(self, how="any"):
if how not in ("any", "all"):
raise ValueError(f"invalid how option: {how}")
@@ -293,7 +292,6 @@ def map(self, mapper, na_action=None):
except Exception:
return self.astype(object).map(mapper)
- @Appender(Index.astype.__doc__)
def astype(self, dtype, copy=True):
if is_dtype_equal(self.dtype, dtype) and copy is False:
# Ensure that self.astype(self.dtype) is self
diff --git a/pandas/core/indexes/interval.py b/pandas/core/indexes/interval.py
index d396d1c76f357..44602764562ee 100644
--- a/pandas/core/indexes/interval.py
+++ b/pandas/core/indexes/interval.py
@@ -330,10 +330,10 @@ def from_tuples(
# --------------------------------------------------------------------
- @Appender(Index._shallow_copy.__doc__)
def _shallow_copy(self, values=None, **kwargs):
if values is None:
values = self._data
+
attributes = self._get_attributes_dict()
attributes.update(kwargs)
return self._simple_new(values, **attributes)
@@ -401,7 +401,6 @@ def __reduce__(self):
d.update(self._get_attributes_dict())
return _new_IntervalIndex, (type(self), d), None
- @Appender(Index.astype.__doc__)
def astype(self, dtype, copy=True):
with rewrite_exception("IntervalArray", type(self).__name__):
new_values = self.values.astype(dtype, copy=copy)
diff --git a/pandas/core/indexes/multi.py b/pandas/core/indexes/multi.py
index f70975e19b9a4..69aebf4c7f8fd 100644
--- a/pandas/core/indexes/multi.py
+++ b/pandas/core/indexes/multi.py
@@ -983,7 +983,6 @@ def _engine(self):
def _constructor(self):
return MultiIndex.from_tuples
- @Appender(Index._shallow_copy.__doc__)
def _shallow_copy(self, values=None, **kwargs):
if values is not None:
names = kwargs.pop("names", kwargs.pop("name", self.names))
@@ -1435,7 +1434,6 @@ def _inferred_type_levels(self):
""" return a list of the inferred types, one for each level """
return [i.inferred_type for i in self.levels]
- @Appender(Index.duplicated.__doc__)
def duplicated(self, keep="first"):
shape = map(len, self.levels)
ids = get_group_index(self.codes, shape, sort=False, xnull=False)
@@ -1448,7 +1446,6 @@ def fillna(self, value=None, downcast=None):
"""
raise NotImplementedError("isna is not defined for MultiIndex")
- @Appender(Index.dropna.__doc__)
def dropna(self, how="any"):
nans = [level_codes == -1 for level_codes in self.codes]
if how == "any":
@@ -3378,7 +3375,6 @@ def _convert_can_do_setop(self, other):
# --------------------------------------------------------------------
- @Appender(Index.astype.__doc__)
def astype(self, dtype, copy=True):
dtype = pandas_dtype(dtype)
if is_categorical_dtype(dtype):
diff --git a/pandas/core/indexes/numeric.py b/pandas/core/indexes/numeric.py
index 06a26cc90555e..c9b8650192324 100644
--- a/pandas/core/indexes/numeric.py
+++ b/pandas/core/indexes/numeric.py
@@ -102,7 +102,6 @@ def _maybe_cast_slice_bound(self, label, side, kind):
# we will try to coerce to integers
return self._maybe_cast_indexer(label)
- @Appender(Index._shallow_copy.__doc__)
def _shallow_copy(self, values=None, name: Label = lib.no_default):
name = name if name is not lib.no_default else self.name
@@ -307,7 +306,6 @@ class UInt64Index(IntegerIndex):
_engine_type = libindex.UInt64Engine
_default_dtype = np.dtype(np.uint64)
- @Appender(Index._convert_arr_indexer.__doc__)
def _convert_arr_indexer(self, keyarr):
# Cast the indexer to uint64 if possible so that the values returned
# from indexing are also uint64.
@@ -319,7 +317,6 @@ def _convert_arr_indexer(self, keyarr):
return com.asarray_tuplesafe(keyarr, dtype=dtype)
- @Appender(Index._convert_index_indexer.__doc__)
def _convert_index_indexer(self, keyarr):
# Cast the indexer to uint64 if possible so
# that the values returned from indexing are
@@ -369,7 +366,6 @@ def inferred_type(self) -> str:
"""
return "floating"
- @Appender(Index.astype.__doc__)
def astype(self, dtype, copy=True):
dtype = pandas_dtype(dtype)
if needs_i8_conversion(dtype):
diff --git a/pandas/core/indexes/period.py b/pandas/core/indexes/period.py
index 9eeb41f735015..e5a77a00879cd 100644
--- a/pandas/core/indexes/period.py
+++ b/pandas/core/indexes/period.py
@@ -412,7 +412,6 @@ def asof_locs(self, where, mask):
return result
- @Appender(Index.astype.__doc__)
def astype(self, dtype, copy=True, how="start"):
dtype = pandas_dtype(dtype)
diff --git a/pandas/core/indexes/range.py b/pandas/core/indexes/range.py
index f621a3c153adf..45f827a6c3b05 100644
--- a/pandas/core/indexes/range.py
+++ b/pandas/core/indexes/range.py
@@ -386,7 +386,6 @@ def get_indexer(self, target, method=None, limit=None, tolerance=None):
def tolist(self):
return list(self._range)
- @Appender(Int64Index._shallow_copy.__doc__)
def _shallow_copy(self, values=None, name: Label = no_default):
name = self.name if name is no_default else name
diff --git a/pandas/core/indexes/timedeltas.py b/pandas/core/indexes/timedeltas.py
index 5e4a8e83bd95b..eebaac4ddd5bd 100644
--- a/pandas/core/indexes/timedeltas.py
+++ b/pandas/core/indexes/timedeltas.py
@@ -1,7 +1,6 @@
""" implement the TimedeltaIndex """
from pandas._libs import NaT, Timedelta, index as libindex
-from pandas.util._decorators import Appender
from pandas.core.dtypes.common import (
_TD_DTYPE,
@@ -197,7 +196,6 @@ def _formatter_func(self):
# -------------------------------------------------------------------
- @Appender(Index.astype.__doc__)
def astype(self, dtype, copy=True):
dtype = pandas_dtype(dtype)
if is_timedelta64_dtype(dtype) and not is_timedelta64_ns_dtype(dtype):
| When working on indexing methods, I find myself grepping for the names, and having the extra Appender lines is a small-but-repeated nuisance.
In py36+ we can use `__init_subclass_` to automatically inherit docstrings without needing to repeat these Appenders.
This PR only does this for a few methods as a proof of concept, but we could expand this list quite a bit.
Based on a handful of measurements, no obvious impact on import time.
cc @WillAyd you were -1 on the proof of concept when it was on PandasObject and automatic for all methods; are you more amenable to this more finely-tuned approach? | https://api.github.com/repos/pandas-dev/pandas/pulls/32128 | 2020-02-20T15:23:09Z | 2020-03-13T22:37:15Z | null | 2021-03-07T16:55:45Z |
BUG: Fix for convert_dtypes with mix of int and string | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index c9031ac1ae9fe..e0d2de634bf3d 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -45,6 +45,7 @@ Bug fixes
- Fix bug in :meth:`DataFrame.convert_dtypes` for columns that were already using the ``"string"`` dtype (:issue:`31731`).
- Fixed bug in setting values using a slice indexer with string dtype (:issue:`31772`)
+- Fix bug in :meth:`Series.convert_dtypes` for series with mix of integers and strings (:issue:`32117`)
.. ---------------------------------------------------------------------------
diff --git a/pandas/core/dtypes/cast.py b/pandas/core/dtypes/cast.py
index 1c969d40c2c7f..c2b600b5d8c5b 100644
--- a/pandas/core/dtypes/cast.py
+++ b/pandas/core/dtypes/cast.py
@@ -1062,11 +1062,6 @@ def convert_dtypes(
if convert_integer:
target_int_dtype = "Int64"
- if isinstance(inferred_dtype, str) and (
- inferred_dtype == "mixed-integer"
- or inferred_dtype == "mixed-integer-float"
- ):
- inferred_dtype = target_int_dtype
if is_integer_dtype(input_array.dtype) and not is_extension_array_dtype(
input_array.dtype
):
diff --git a/pandas/tests/series/methods/test_convert_dtypes.py b/pandas/tests/series/methods/test_convert_dtypes.py
index a6b5fed40a9d7..17527a09f07a1 100644
--- a/pandas/tests/series/methods/test_convert_dtypes.py
+++ b/pandas/tests/series/methods/test_convert_dtypes.py
@@ -81,6 +81,18 @@ class TestSeriesConvertDtypes:
),
},
),
+ ( # GH32117
+ ["h", "i", 1],
+ np.dtype("O"),
+ {
+ (
+ (True, False),
+ (True, False),
+ (True, False),
+ (True, False),
+ ): np.dtype("O"),
+ },
+ ),
(
[10, np.nan, 20],
np.dtype("float"),
@@ -144,11 +156,23 @@ class TestSeriesConvertDtypes:
[1, 2.0],
object,
{
- ((True, False), (True, False), (True,), (True, False)): "Int64",
+ ((True,), (True, False), (True,), (True, False)): "Int64",
((True,), (True, False), (False,), (True, False)): np.dtype(
"float"
),
- ((False,), (True, False), (False,), (True, False)): np.dtype(
+ ((False,), (True, False), (True, False), (True, False)): np.dtype(
+ "object"
+ ),
+ },
+ ),
+ (
+ [1, 2.5],
+ object,
+ {
+ ((True,), (True, False), (True, False), (True, False)): np.dtype(
+ "float"
+ ),
+ ((False,), (True, False), (True, False), (True, False)): np.dtype(
"object"
),
},
| - [x] closes #32117
- [x] tests added / passed
- added new cases for `test_convert_dtypes`
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
- placed in v1.0.2 whatsnew
| https://api.github.com/repos/pandas-dev/pandas/pulls/32126 | 2020-02-20T13:52:45Z | 2020-02-21T14:48:51Z | 2020-02-21T14:48:51Z | 2023-02-13T20:50:48Z |
BUG: Avoid ambiguous condition in GroupBy.first / last | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index affe019d0ac86..82d603cfb8c15 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -76,6 +76,7 @@ Bug fixes
- Fix bug in :meth:`DataFrame.convert_dtypes` for columns that were already using the ``"string"`` dtype (:issue:`31731`).
- Fixed bug in setting values using a slice indexer with string dtype (:issue:`31772`)
+- Fixed bug where :meth:`GroupBy.first` and :meth:`GroupBy.last` would raise a ``TypeError`` when groups contained ``pd.NA`` in a column of object dtype (:issue:`32123`)
- Fix bug in :meth:`Series.convert_dtypes` for series with mix of integers and strings (:issue:`32117`)
.. ---------------------------------------------------------------------------
diff --git a/pandas/_libs/groupby.pyx b/pandas/_libs/groupby.pyx
index edc44f1c94589..27b3095d8cb4f 100644
--- a/pandas/_libs/groupby.pyx
+++ b/pandas/_libs/groupby.pyx
@@ -22,6 +22,8 @@ from pandas._libs.algos cimport (swap, TiebreakEnumType, TIEBREAK_AVERAGE,
from pandas._libs.algos import (take_2d_axis1_float64_float64,
groupsort_indexer, tiebreakers)
+from pandas._libs.missing cimport checknull
+
cdef int64_t NPY_NAT = get_nat()
_int64_max = np.iinfo(np.int64).max
@@ -887,7 +889,7 @@ def group_last(rank_t[:, :] out,
for j in range(K):
val = values[i, j]
- if val == val:
+ if not checknull(val):
# NB: use _treat_as_na here once
# conditional-nogil is available.
nobs[lab, j] += 1
@@ -976,7 +978,7 @@ def group_nth(rank_t[:, :] out,
for j in range(K):
val = values[i, j]
- if val == val:
+ if not checknull(val):
# NB: use _treat_as_na here once
# conditional-nogil is available.
nobs[lab, j] += 1
diff --git a/pandas/tests/groupby/test_nth.py b/pandas/tests/groupby/test_nth.py
index 0f850f2e94581..b1476f1059d84 100644
--- a/pandas/tests/groupby/test_nth.py
+++ b/pandas/tests/groupby/test_nth.py
@@ -54,6 +54,46 @@ def test_first_last_nth(df):
tm.assert_frame_equal(result, expected)
+@pytest.mark.parametrize("method", ["first", "last"])
+def test_first_last_with_na_object(method, nulls_fixture):
+ # https://github.com/pandas-dev/pandas/issues/32123
+ groups = pd.DataFrame({"a": [1, 1, 2, 2], "b": [1, 2, 3, nulls_fixture]}).groupby(
+ "a"
+ )
+ result = getattr(groups, method)()
+
+ if method == "first":
+ values = [1, 3]
+ else:
+ values = [2, 3]
+
+ values = np.array(values, dtype=result["b"].dtype)
+ idx = pd.Index([1, 2], name="a")
+ expected = pd.DataFrame({"b": values}, index=idx)
+
+ tm.assert_frame_equal(result, expected)
+
+
+@pytest.mark.parametrize("index", [0, -1])
+def test_nth_with_na_object(index, nulls_fixture):
+ # https://github.com/pandas-dev/pandas/issues/32123
+ groups = pd.DataFrame({"a": [1, 1, 2, 2], "b": [1, 2, 3, nulls_fixture]}).groupby(
+ "a"
+ )
+ result = groups.nth(index)
+
+ if index == 0:
+ values = [1, 3]
+ else:
+ values = [2, nulls_fixture]
+
+ values = np.array(values, dtype=result["b"].dtype)
+ idx = pd.Index([1, 2], name="a")
+ expected = pd.DataFrame({"b": values}, index=idx)
+
+ tm.assert_frame_equal(result, expected)
+
+
def test_first_last_nth_dtypes(df_mixed_floats):
df = df_mixed_floats.copy()
| - [x] closes #32123
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
This comparison `val == val` happens in a lot of these groupby operations but only seems to raise here in the presence of `NA`. Are we just always / mostly converting to numpy beforehand in the other cases? | https://api.github.com/repos/pandas-dev/pandas/pulls/32124 | 2020-02-20T01:37:52Z | 2020-02-23T14:59:00Z | 2020-02-23T14:59:00Z | 2020-02-23T15:07:44Z |
CLN: Replace old string formatting syntax with f-strings for scripts/validate_docstrings.py | diff --git a/scripts/validate_docstrings.py b/scripts/validate_docstrings.py
index d43086756769a..051bd5b9761ae 100755
--- a/scripts/validate_docstrings.py
+++ b/scripts/validate_docstrings.py
@@ -243,14 +243,12 @@ def pandas_validate(func_name: str):
"EX03",
error_code=err.error_code,
error_message=err.message,
- times_happening=" ({} times)".format(err.count)
- if err.count > 1
- else "",
+ times_happening=f" ({err.count} times)" if err.count > 1 else "",
)
)
examples_source_code = "".join(doc.examples_source_code)
for wrong_import in ("numpy", "pandas"):
- if "import {}".format(wrong_import) in examples_source_code:
+ if f"import {wrong_import}" in examples_source_code:
result["errors"].append(
pandas_error("EX04", imported_library=wrong_import)
)
@@ -345,9 +343,7 @@ def header(title, width=80, char="#"):
full_line = char * width
side_len = (width - len(title) - 2) // 2
adj = "" if len(title) % 2 == 0 else " "
- title_line = "{side} {title}{adj} {side}".format(
- side=char * side_len, title=title, adj=adj
- )
+ title_line = f"{char * side_len} {title}{adj} {char * side_len}"
return f"\n{full_line}\n{title_line}\n{full_line}\n\n"
|
- [ ] xref #29547
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32122 | 2020-02-19T22:08:21Z | 2020-02-20T01:06:00Z | 2020-02-20T01:06:00Z | 2020-02-20T01:06:05Z |
REG: dont call func on empty input | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index c9031ac1ae9fe..88a343664f304 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -20,6 +20,7 @@ Fixed regressions
- Fixed regression in :meth:`pandas.core.groupby.RollingGroupby.apply` where the ``raw`` parameter was ignored (:issue:`31754`)
- Fixed regression in :meth:`rolling(..).corr() <pandas.core.window.Rolling.corr>` when using a time offset (:issue:`31789`)
- Fixed regression in :class:`DataFrame` arithmetic operations with mis-matched columns (:issue:`31623`)
+- Fixed regression in :meth:`GroupBy.agg` calling a user-provided function an extra time on an empty input (:issue:`31760`)
-
.. ---------------------------------------------------------------------------
diff --git a/pandas/core/groupby/groupby.py b/pandas/core/groupby/groupby.py
index cc46485b4a2e8..f946f0e63a583 100644
--- a/pandas/core/groupby/groupby.py
+++ b/pandas/core/groupby/groupby.py
@@ -923,17 +923,10 @@ def _python_agg_general(self, func, *args, **kwargs):
try:
# if this function is invalid for this dtype, we will ignore it.
- func(obj[:0])
+ result, counts = self.grouper.agg_series(obj, f)
except TypeError:
continue
- except AssertionError:
- raise
- except Exception:
- # Our function depends on having a non-empty argument
- # See test_groupby_agg_err_catching
- pass
-
- result, counts = self.grouper.agg_series(obj, f)
+
assert result is not None
key = base.OutputKey(label=name, position=idx)
output[key] = self._try_cast(result, obj, numeric_only=True)
diff --git a/pandas/tests/groupby/aggregate/test_aggregate.py b/pandas/tests/groupby/aggregate/test_aggregate.py
index ff99081521ffb..48f8de7e51ae4 100644
--- a/pandas/tests/groupby/aggregate/test_aggregate.py
+++ b/pandas/tests/groupby/aggregate/test_aggregate.py
@@ -13,6 +13,18 @@
from pandas.core.groupby.grouper import Grouping
+def test_groupby_agg_no_extra_calls():
+ # GH#31760
+ df = pd.DataFrame({"key": ["a", "b", "c", "c"], "value": [1, 2, 3, 4]})
+ gb = df.groupby("key")["value"]
+
+ def dummy_func(x):
+ assert len(x) != 0
+ return x.sum()
+
+ gb.agg(dummy_func)
+
+
def test_agg_regression1(tsframe):
grouped = tsframe.groupby([lambda x: x.year, lambda x: x.month])
result = grouped.agg(np.mean)
| - [x] closes #31760
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
Could use confirmation from OP that this does in fact close #31760. | https://api.github.com/repos/pandas-dev/pandas/pulls/32121 | 2020-02-19T21:35:24Z | 2020-02-21T18:38:13Z | 2020-02-21T18:38:13Z | 2020-02-21T18:40:03Z |
REF: make pd._testing directory, split out asserters | diff --git a/doc/source/user_guide/reshaping.rst b/doc/source/user_guide/reshaping.rst
index bbec9a770477d..58733b852e3a1 100644
--- a/doc/source/user_guide/reshaping.rst
+++ b/doc/source/user_guide/reshaping.rst
@@ -17,7 +17,6 @@ Reshaping by pivoting DataFrame objects
:suppress:
import pandas._testing as tm
- tm.N = 3
def unpivot(frame):
N, K = frame.shape
@@ -27,7 +26,7 @@ Reshaping by pivoting DataFrame objects
columns = ['date', 'variable', 'value']
return pd.DataFrame(data, columns=columns)
- df = unpivot(tm.makeTimeDataFrame())
+ df = unpivot(tm.makeTimeDataFrame(3))
Data is often stored in so-called "stacked" or "record" format:
@@ -42,9 +41,6 @@ For the curious here is how the above ``DataFrame`` was created:
import pandas._testing as tm
- tm.N = 3
-
-
def unpivot(frame):
N, K = frame.shape
data = {'value': frame.to_numpy().ravel('F'),
@@ -53,7 +49,7 @@ For the curious here is how the above ``DataFrame`` was created:
return pd.DataFrame(data, columns=['date', 'variable', 'value'])
- df = unpivot(tm.makeTimeDataFrame())
+ df = unpivot(tm.makeTimeDataFrame(3))
To select out everything for variable ``A`` we could do:
diff --git a/pandas/_testing.py b/pandas/_testing.py
deleted file mode 100644
index 7ebf2c282f8c9..0000000000000
--- a/pandas/_testing.py
+++ /dev/null
@@ -1,2799 +0,0 @@
-import bz2
-from collections import Counter
-from contextlib import contextmanager
-from datetime import datetime
-from functools import wraps
-import gzip
-import os
-from shutil import rmtree
-import string
-import tempfile
-from typing import Any, Callable, List, Optional, Type, Union, cast
-import warnings
-import zipfile
-
-import numpy as np
-from numpy.random import rand, randn
-
-from pandas._config.localization import ( # noqa:F401
- can_set_locale,
- get_locales,
- set_locale,
-)
-
-import pandas._libs.testing as _testing
-from pandas._typing import FilePathOrBuffer, FrameOrSeries
-from pandas.compat import _get_lzma_file, _import_lzma
-
-from pandas.core.dtypes.common import (
- is_bool,
- is_categorical_dtype,
- is_datetime64_dtype,
- is_datetime64tz_dtype,
- is_extension_array_dtype,
- is_interval_dtype,
- is_list_like,
- is_number,
- is_period_dtype,
- is_sequence,
- is_timedelta64_dtype,
- needs_i8_conversion,
-)
-from pandas.core.dtypes.missing import array_equivalent
-
-import pandas as pd
-from pandas import (
- Categorical,
- CategoricalIndex,
- DataFrame,
- DatetimeIndex,
- Index,
- IntervalIndex,
- MultiIndex,
- RangeIndex,
- Series,
- bdate_range,
-)
-from pandas.core.algorithms import take_1d
-from pandas.core.arrays import (
- DatetimeArray,
- ExtensionArray,
- IntervalArray,
- PeriodArray,
- TimedeltaArray,
- period_array,
-)
-
-from pandas.io.common import urlopen
-from pandas.io.formats.printing import pprint_thing
-
-lzma = _import_lzma()
-
-N = 30
-K = 4
-_RAISE_NETWORK_ERROR_DEFAULT = False
-
-# set testing_mode
-_testing_mode_warnings = (DeprecationWarning, ResourceWarning)
-
-
-def set_testing_mode():
- # set the testing mode filters
- testing_mode = os.environ.get("PANDAS_TESTING_MODE", "None")
- if "deprecate" in testing_mode:
- warnings.simplefilter("always", _testing_mode_warnings)
-
-
-def reset_testing_mode():
- # reset the testing mode filters
- testing_mode = os.environ.get("PANDAS_TESTING_MODE", "None")
- if "deprecate" in testing_mode:
- warnings.simplefilter("ignore", _testing_mode_warnings)
-
-
-set_testing_mode()
-
-
-def reset_display_options():
- """
- Reset the display options for printing and representing objects.
- """
- pd.reset_option("^display.", silent=True)
-
-
-def round_trip_pickle(
- obj: Any, path: Optional[FilePathOrBuffer] = None
-) -> FrameOrSeries:
- """
- Pickle an object and then read it again.
-
- Parameters
- ----------
- obj : any object
- The object to pickle and then re-read.
- path : str, path object or file-like object, default None
- The path where the pickled object is written and then read.
-
- Returns
- -------
- pandas object
- The original object that was pickled and then re-read.
- """
- _path = path
- if _path is None:
- _path = f"__{rands(10)}__.pickle"
- with ensure_clean(_path) as temp_path:
- pd.to_pickle(obj, temp_path)
- return pd.read_pickle(temp_path)
-
-
-def round_trip_pathlib(writer, reader, path: Optional[str] = None):
- """
- Write an object to file specified by a pathlib.Path and read it back
-
- Parameters
- ----------
- writer : callable bound to pandas object
- IO writing function (e.g. DataFrame.to_csv )
- reader : callable
- IO reading function (e.g. pd.read_csv )
- path : str, default None
- The path where the object is written and then read.
-
- Returns
- -------
- pandas object
- The original object that was serialized and then re-read.
- """
- import pytest
-
- Path = pytest.importorskip("pathlib").Path
- if path is None:
- path = "___pathlib___"
- with ensure_clean(path) as path:
- writer(Path(path))
- obj = reader(Path(path))
- return obj
-
-
-def round_trip_localpath(writer, reader, path: Optional[str] = None):
- """
- Write an object to file specified by a py.path LocalPath and read it back.
-
- Parameters
- ----------
- writer : callable bound to pandas object
- IO writing function (e.g. DataFrame.to_csv )
- reader : callable
- IO reading function (e.g. pd.read_csv )
- path : str, default None
- The path where the object is written and then read.
-
- Returns
- -------
- pandas object
- The original object that was serialized and then re-read.
- """
- import pytest
-
- LocalPath = pytest.importorskip("py.path").local
- if path is None:
- path = "___localpath___"
- with ensure_clean(path) as path:
- writer(LocalPath(path))
- obj = reader(LocalPath(path))
- return obj
-
-
-@contextmanager
-def decompress_file(path, compression):
- """
- Open a compressed file and return a file object.
-
- Parameters
- ----------
- path : str
- The path where the file is read from.
-
- compression : {'gzip', 'bz2', 'zip', 'xz', None}
- Name of the decompression to use
-
- Returns
- -------
- file object
- """
- if compression is None:
- f = open(path, "rb")
- elif compression == "gzip":
- f = gzip.open(path, "rb")
- elif compression == "bz2":
- f = bz2.BZ2File(path, "rb")
- elif compression == "xz":
- f = _get_lzma_file(lzma)(path, "rb")
- elif compression == "zip":
- zip_file = zipfile.ZipFile(path)
- zip_names = zip_file.namelist()
- if len(zip_names) == 1:
- f = zip_file.open(zip_names.pop())
- else:
- raise ValueError(f"ZIP file {path} error. Only one file per ZIP.")
- else:
- raise ValueError(f"Unrecognized compression type: {compression}")
-
- try:
- yield f
- finally:
- f.close()
- if compression == "zip":
- zip_file.close()
-
-
-def write_to_compressed(compression, path, data, dest="test"):
- """
- Write data to a compressed file.
-
- Parameters
- ----------
- compression : {'gzip', 'bz2', 'zip', 'xz'}
- The compression type to use.
- path : str
- The file path to write the data.
- data : str
- The data to write.
- dest : str, default "test"
- The destination file (for ZIP only)
-
- Raises
- ------
- ValueError : An invalid compression value was passed in.
- """
- if compression == "zip":
- import zipfile
-
- compress_method = zipfile.ZipFile
- elif compression == "gzip":
- import gzip
-
- compress_method = gzip.GzipFile
- elif compression == "bz2":
- import bz2
-
- compress_method = bz2.BZ2File
- elif compression == "xz":
- compress_method = _get_lzma_file(lzma)
- else:
- raise ValueError(f"Unrecognized compression type: {compression}")
-
- if compression == "zip":
- mode = "w"
- args = (dest, data)
- method = "writestr"
- else:
- mode = "wb"
- args = (data,)
- method = "write"
-
- with compress_method(path, mode=mode) as f:
- getattr(f, method)(*args)
-
-
-def assert_almost_equal(
- left,
- right,
- check_dtype: Union[bool, str] = "equiv",
- check_less_precise: Union[bool, int] = False,
- **kwargs,
-):
- """
- Check that the left and right objects are approximately equal.
-
- By approximately equal, we refer to objects that are numbers or that
- contain numbers which may be equivalent to specific levels of precision.
-
- Parameters
- ----------
- left : object
- right : object
- check_dtype : bool or {'equiv'}, default 'equiv'
- Check dtype if both a and b are the same type. If 'equiv' is passed in,
- then `RangeIndex` and `Int64Index` are also considered equivalent
- when doing type checking.
- check_less_precise : bool or int, default False
- Specify comparison precision. 5 digits (False) or 3 digits (True)
- after decimal points are compared. If int, then specify the number
- of digits to compare.
-
- When comparing two numbers, if the first number has magnitude less
- than 1e-5, we compare the two numbers directly and check whether
- they are equivalent within the specified precision. Otherwise, we
- compare the **ratio** of the second number to the first number and
- check whether it is equivalent to 1 within the specified precision.
- """
- if isinstance(left, pd.Index):
- assert_index_equal(
- left,
- right,
- check_exact=False,
- exact=check_dtype,
- check_less_precise=check_less_precise,
- **kwargs,
- )
-
- elif isinstance(left, pd.Series):
- assert_series_equal(
- left,
- right,
- check_exact=False,
- check_dtype=check_dtype,
- check_less_precise=check_less_precise,
- **kwargs,
- )
-
- elif isinstance(left, pd.DataFrame):
- assert_frame_equal(
- left,
- right,
- check_exact=False,
- check_dtype=check_dtype,
- check_less_precise=check_less_precise,
- **kwargs,
- )
-
- else:
- # Other sequences.
- if check_dtype:
- if is_number(left) and is_number(right):
- # Do not compare numeric classes, like np.float64 and float.
- pass
- elif is_bool(left) and is_bool(right):
- # Do not compare bool classes, like np.bool_ and bool.
- pass
- else:
- if isinstance(left, np.ndarray) or isinstance(right, np.ndarray):
- obj = "numpy array"
- else:
- obj = "Input"
- assert_class_equal(left, right, obj=obj)
- _testing.assert_almost_equal(
- left,
- right,
- check_dtype=check_dtype,
- check_less_precise=check_less_precise,
- **kwargs,
- )
-
-
-def _check_isinstance(left, right, cls):
- """
- Helper method for our assert_* methods that ensures that
- the two objects being compared have the right type before
- proceeding with the comparison.
-
- Parameters
- ----------
- left : The first object being compared.
- right : The second object being compared.
- cls : The class type to check against.
-
- Raises
- ------
- AssertionError : Either `left` or `right` is not an instance of `cls`.
- """
- cls_name = cls.__name__
-
- if not isinstance(left, cls):
- raise AssertionError(
- f"{cls_name} Expected type {cls}, found {type(left)} instead"
- )
- if not isinstance(right, cls):
- raise AssertionError(
- f"{cls_name} Expected type {cls}, found {type(right)} instead"
- )
-
-
-def assert_dict_equal(left, right, compare_keys: bool = True):
-
- _check_isinstance(left, right, dict)
- _testing.assert_dict_equal(left, right, compare_keys=compare_keys)
-
-
-def randbool(size=(), p: float = 0.5):
- return rand(*size) <= p
-
-
-RANDS_CHARS = np.array(list(string.ascii_letters + string.digits), dtype=(np.str_, 1))
-RANDU_CHARS = np.array(
- list("".join(map(chr, range(1488, 1488 + 26))) + string.digits),
- dtype=(np.unicode_, 1),
-)
-
-
-def rands_array(nchars, size, dtype="O"):
- """
- Generate an array of byte strings.
- """
- retval = (
- np.random.choice(RANDS_CHARS, size=nchars * np.prod(size))
- .view((np.str_, nchars))
- .reshape(size)
- )
- if dtype is None:
- return retval
- else:
- return retval.astype(dtype)
-
-
-def randu_array(nchars, size, dtype="O"):
- """
- Generate an array of unicode strings.
- """
- retval = (
- np.random.choice(RANDU_CHARS, size=nchars * np.prod(size))
- .view((np.unicode_, nchars))
- .reshape(size)
- )
- if dtype is None:
- return retval
- else:
- return retval.astype(dtype)
-
-
-def rands(nchars):
- """
- Generate one random byte string.
-
- See `rands_array` if you want to create an array of random strings.
-
- """
- return "".join(np.random.choice(RANDS_CHARS, nchars))
-
-
-def randu(nchars):
- """
- Generate one random unicode string.
-
- See `randu_array` if you want to create an array of random unicode strings.
-
- """
- return "".join(np.random.choice(RANDU_CHARS, nchars))
-
-
-def close(fignum=None):
- from matplotlib.pyplot import get_fignums, close as _close
-
- if fignum is None:
- for fignum in get_fignums():
- _close(fignum)
- else:
- _close(fignum)
-
-
-# -----------------------------------------------------------------------------
-# contextmanager to ensure the file cleanup
-
-
-@contextmanager
-def ensure_clean(filename=None, return_filelike=False, **kwargs):
- """
- Gets a temporary path and agrees to remove on close.
-
- Parameters
- ----------
- filename : str (optional)
- if None, creates a temporary file which is then removed when out of
- scope. if passed, creates temporary file with filename as ending.
- return_filelike : bool (default False)
- if True, returns a file-like which is *always* cleaned. Necessary for
- savefig and other functions which want to append extensions.
- **kwargs
- Additional keywords passed in for creating a temporary file.
- :meth:`tempFile.TemporaryFile` is used when `return_filelike` is ``True``.
- :meth:`tempfile.mkstemp` is used when `return_filelike` is ``False``.
- Note that the `filename` parameter will be passed in as the `suffix`
- argument to either function.
-
- See Also
- --------
- tempfile.TemporaryFile
- tempfile.mkstemp
- """
- filename = filename or ""
- fd = None
-
- kwargs["suffix"] = filename
-
- if return_filelike:
- f = tempfile.TemporaryFile(**kwargs)
-
- try:
- yield f
- finally:
- f.close()
- else:
- # Don't generate tempfile if using a path with directory specified.
- if len(os.path.dirname(filename)):
- raise ValueError("Can't pass a qualified name to ensure_clean()")
-
- try:
- fd, filename = tempfile.mkstemp(**kwargs)
- except UnicodeEncodeError:
- import pytest
-
- pytest.skip("no unicode file names on this system")
-
- try:
- yield filename
- finally:
- try:
- os.close(fd)
- except OSError:
- print(f"Couldn't close file descriptor: {fd} (file: {filename})")
- try:
- if os.path.exists(filename):
- os.remove(filename)
- except OSError as e:
- print(f"Exception on removing file: {e}")
-
-
-@contextmanager
-def ensure_clean_dir():
- """
- Get a temporary directory path and agrees to remove on close.
-
- Yields
- ------
- Temporary directory path
- """
- directory_name = tempfile.mkdtemp(suffix="")
- try:
- yield directory_name
- finally:
- try:
- rmtree(directory_name)
- except OSError:
- pass
-
-
-@contextmanager
-def ensure_safe_environment_variables():
- """
- Get a context manager to safely set environment variables
-
- All changes will be undone on close, hence environment variables set
- within this contextmanager will neither persist nor change global state.
- """
- saved_environ = dict(os.environ)
- try:
- yield
- finally:
- os.environ.clear()
- os.environ.update(saved_environ)
-
-
-# -----------------------------------------------------------------------------
-# Comparators
-
-
-def equalContents(arr1, arr2) -> bool:
- """
- Checks if the set of unique elements of arr1 and arr2 are equivalent.
- """
- return frozenset(arr1) == frozenset(arr2)
-
-
-def assert_index_equal(
- left: Index,
- right: Index,
- exact: Union[bool, str] = "equiv",
- check_names: bool = True,
- check_less_precise: Union[bool, int] = False,
- check_exact: bool = True,
- check_categorical: bool = True,
- obj: str = "Index",
-) -> None:
- """
- Check that left and right Index are equal.
-
- Parameters
- ----------
- left : Index
- right : Index
- exact : bool or {'equiv'}, default 'equiv'
- Whether to check the Index class, dtype and inferred_type
- are identical. If 'equiv', then RangeIndex can be substituted for
- Int64Index as well.
- check_names : bool, default True
- Whether to check the names attribute.
- check_less_precise : bool or int, default False
- Specify comparison precision. Only used when check_exact is False.
- 5 digits (False) or 3 digits (True) after decimal points are compared.
- If int, then specify the digits to compare.
- check_exact : bool, default True
- Whether to compare number exactly.
- check_categorical : bool, default True
- Whether to compare internal Categorical exactly.
- obj : str, default 'Index'
- Specify object name being compared, internally used to show appropriate
- assertion message.
- """
- __tracebackhide__ = True
-
- def _check_types(l, r, obj="Index"):
- if exact:
- assert_class_equal(l, r, exact=exact, obj=obj)
-
- # Skip exact dtype checking when `check_categorical` is False
- if check_categorical:
- assert_attr_equal("dtype", l, r, obj=obj)
-
- # allow string-like to have different inferred_types
- if l.inferred_type in ("string"):
- assert r.inferred_type in ("string")
- else:
- assert_attr_equal("inferred_type", l, r, obj=obj)
-
- def _get_ilevel_values(index, level):
- # accept level number only
- unique = index.levels[level]
- level_codes = index.codes[level]
- filled = take_1d(unique._values, level_codes, fill_value=unique._na_value)
- values = unique._shallow_copy(filled, name=index.names[level])
- return values
-
- # instance validation
- _check_isinstance(left, right, Index)
-
- # class / dtype comparison
- _check_types(left, right, obj=obj)
-
- # level comparison
- if left.nlevels != right.nlevels:
- msg1 = f"{obj} levels are different"
- msg2 = f"{left.nlevels}, {left}"
- msg3 = f"{right.nlevels}, {right}"
- raise_assert_detail(obj, msg1, msg2, msg3)
-
- # length comparison
- if len(left) != len(right):
- msg1 = f"{obj} length are different"
- msg2 = f"{len(left)}, {left}"
- msg3 = f"{len(right)}, {right}"
- raise_assert_detail(obj, msg1, msg2, msg3)
-
- # MultiIndex special comparison for little-friendly error messages
- if left.nlevels > 1:
- left = cast(MultiIndex, left)
- right = cast(MultiIndex, right)
-
- for level in range(left.nlevels):
- # cannot use get_level_values here because it can change dtype
- llevel = _get_ilevel_values(left, level)
- rlevel = _get_ilevel_values(right, level)
-
- lobj = f"MultiIndex level [{level}]"
- assert_index_equal(
- llevel,
- rlevel,
- exact=exact,
- check_names=check_names,
- check_less_precise=check_less_precise,
- check_exact=check_exact,
- obj=lobj,
- )
- # get_level_values may change dtype
- _check_types(left.levels[level], right.levels[level], obj=obj)
-
- # skip exact index checking when `check_categorical` is False
- if check_exact and check_categorical:
- if not left.equals(right):
- diff = np.sum((left.values != right.values).astype(int)) * 100.0 / len(left)
- msg = f"{obj} values are different ({np.round(diff, 5)} %)"
- raise_assert_detail(obj, msg, left, right)
- else:
- _testing.assert_almost_equal(
- left.values,
- right.values,
- check_less_precise=check_less_precise,
- check_dtype=exact,
- obj=obj,
- lobj=left,
- robj=right,
- )
-
- # metadata comparison
- if check_names:
- assert_attr_equal("names", left, right, obj=obj)
- if isinstance(left, pd.PeriodIndex) or isinstance(right, pd.PeriodIndex):
- assert_attr_equal("freq", left, right, obj=obj)
- if isinstance(left, pd.IntervalIndex) or isinstance(right, pd.IntervalIndex):
- assert_interval_array_equal(left.values, right.values)
-
- if check_categorical:
- if is_categorical_dtype(left) or is_categorical_dtype(right):
- assert_categorical_equal(left.values, right.values, obj=f"{obj} category")
-
-
-def assert_class_equal(left, right, exact: Union[bool, str] = True, obj="Input"):
- """
- Checks classes are equal.
- """
- __tracebackhide__ = True
-
- def repr_class(x):
- if isinstance(x, Index):
- # return Index as it is to include values in the error message
- return x
-
- try:
- return type(x).__name__
- except AttributeError:
- return repr(type(x))
-
- if exact == "equiv":
- if type(left) != type(right):
- # allow equivalence of Int64Index/RangeIndex
- types = {type(left).__name__, type(right).__name__}
- if len(types - {"Int64Index", "RangeIndex"}):
- msg = f"{obj} classes are not equivalent"
- raise_assert_detail(obj, msg, repr_class(left), repr_class(right))
- elif exact:
- if type(left) != type(right):
- msg = f"{obj} classes are different"
- raise_assert_detail(obj, msg, repr_class(left), repr_class(right))
-
-
-def assert_attr_equal(attr, left, right, obj="Attributes"):
- """
- checks attributes are equal. Both objects must have attribute.
-
- Parameters
- ----------
- attr : str
- Attribute name being compared.
- left : object
- right : object
- obj : str, default 'Attributes'
- Specify object name being compared, internally used to show appropriate
- assertion message
- """
- __tracebackhide__ = True
-
- left_attr = getattr(left, attr)
- right_attr = getattr(right, attr)
-
- if left_attr is right_attr:
- return True
- elif (
- is_number(left_attr)
- and np.isnan(left_attr)
- and is_number(right_attr)
- and np.isnan(right_attr)
- ):
- # np.nan
- return True
-
- try:
- result = left_attr == right_attr
- except TypeError:
- # datetimetz on rhs may raise TypeError
- result = False
- if not isinstance(result, bool):
- result = result.all()
-
- if result:
- return True
- else:
- msg = f'Attribute "{attr}" are different'
- raise_assert_detail(obj, msg, left_attr, right_attr)
-
-
-def assert_is_valid_plot_return_object(objs):
- import matplotlib.pyplot as plt
-
- if isinstance(objs, (pd.Series, np.ndarray)):
- for el in objs.ravel():
- msg = (
- "one of 'objs' is not a matplotlib Axes instance, "
- f"type encountered {repr(type(el).__name__)}"
- )
- assert isinstance(el, (plt.Axes, dict)), msg
- else:
- msg = (
- "objs is neither an ndarray of Artist instances nor a single "
- "ArtistArtist instance, tuple, or dict, 'objs' is a "
- f"{repr(type(objs).__name__)}"
- )
- assert isinstance(objs, (plt.Artist, tuple, dict)), msg
-
-
-def isiterable(obj):
- return hasattr(obj, "__iter__")
-
-
-def assert_is_sorted(seq):
- """Assert that the sequence is sorted."""
- if isinstance(seq, (Index, Series)):
- seq = seq.values
- # sorting does not change precisions
- assert_numpy_array_equal(seq, np.sort(np.array(seq)))
-
-
-def assert_categorical_equal(
- left, right, check_dtype=True, check_category_order=True, obj="Categorical"
-):
- """
- Test that Categoricals are equivalent.
-
- Parameters
- ----------
- left : Categorical
- right : Categorical
- check_dtype : bool, default True
- Check that integer dtype of the codes are the same
- check_category_order : bool, default True
- Whether the order of the categories should be compared, which
- implies identical integer codes. If False, only the resulting
- values are compared. The ordered attribute is
- checked regardless.
- obj : str, default 'Categorical'
- Specify object name being compared, internally used to show appropriate
- assertion message
- """
- _check_isinstance(left, right, Categorical)
-
- if check_category_order:
- assert_index_equal(left.categories, right.categories, obj=f"{obj}.categories")
- assert_numpy_array_equal(
- left.codes, right.codes, check_dtype=check_dtype, obj=f"{obj}.codes",
- )
- else:
- assert_index_equal(
- left.categories.sort_values(),
- right.categories.sort_values(),
- obj=f"{obj}.categories",
- )
- assert_index_equal(
- left.categories.take(left.codes),
- right.categories.take(right.codes),
- obj=f"{obj}.values",
- )
-
- assert_attr_equal("ordered", left, right, obj=obj)
-
-
-def assert_interval_array_equal(left, right, exact="equiv", obj="IntervalArray"):
- """
- Test that two IntervalArrays are equivalent.
-
- Parameters
- ----------
- left, right : IntervalArray
- The IntervalArrays to compare.
- exact : bool or {'equiv'}, default 'equiv'
- Whether to check the Index class, dtype and inferred_type
- are identical. If 'equiv', then RangeIndex can be substituted for
- Int64Index as well.
- obj : str, default 'IntervalArray'
- Specify object name being compared, internally used to show appropriate
- assertion message
- """
- _check_isinstance(left, right, IntervalArray)
-
- assert_index_equal(left.left, right.left, exact=exact, obj=f"{obj}.left")
- assert_index_equal(left.right, right.right, exact=exact, obj=f"{obj}.left")
- assert_attr_equal("closed", left, right, obj=obj)
-
-
-def assert_period_array_equal(left, right, obj="PeriodArray"):
- _check_isinstance(left, right, PeriodArray)
-
- assert_numpy_array_equal(left._data, right._data, obj=f"{obj}.values")
- assert_attr_equal("freq", left, right, obj=obj)
-
-
-def assert_datetime_array_equal(left, right, obj="DatetimeArray"):
- __tracebackhide__ = True
- _check_isinstance(left, right, DatetimeArray)
-
- assert_numpy_array_equal(left._data, right._data, obj=f"{obj}._data")
- assert_attr_equal("freq", left, right, obj=obj)
- assert_attr_equal("tz", left, right, obj=obj)
-
-
-def assert_timedelta_array_equal(left, right, obj="TimedeltaArray"):
- __tracebackhide__ = True
- _check_isinstance(left, right, TimedeltaArray)
- assert_numpy_array_equal(left._data, right._data, obj=f"{obj}._data")
- assert_attr_equal("freq", left, right, obj=obj)
-
-
-def raise_assert_detail(obj, message, left, right, diff=None):
- __tracebackhide__ = True
-
- if isinstance(left, np.ndarray):
- left = pprint_thing(left)
- elif is_categorical_dtype(left):
- left = repr(left)
-
- if isinstance(right, np.ndarray):
- right = pprint_thing(right)
- elif is_categorical_dtype(right):
- right = repr(right)
-
- msg = f"""{obj} are different
-
-{message}
-[left]: {left}
-[right]: {right}"""
-
- if diff is not None:
- msg += f"\n[diff]: {diff}"
-
- raise AssertionError(msg)
-
-
-def assert_numpy_array_equal(
- left,
- right,
- strict_nan=False,
- check_dtype=True,
- err_msg=None,
- check_same=None,
- obj="numpy array",
-):
- """
- Check that 'np.ndarray' is equivalent.
-
- Parameters
- ----------
- left, right : numpy.ndarray or iterable
- The two arrays to be compared.
- strict_nan : bool, default False
- If True, consider NaN and None to be different.
- check_dtype : bool, default True
- Check dtype if both a and b are np.ndarray.
- err_msg : str, default None
- If provided, used as assertion message.
- check_same : None|'copy'|'same', default None
- Ensure left and right refer/do not refer to the same memory area.
- obj : str, default 'numpy array'
- Specify object name being compared, internally used to show appropriate
- assertion message.
- """
- __tracebackhide__ = True
-
- # instance validation
- # Show a detailed error message when classes are different
- assert_class_equal(left, right, obj=obj)
- # both classes must be an np.ndarray
- _check_isinstance(left, right, np.ndarray)
-
- def _get_base(obj):
- return obj.base if getattr(obj, "base", None) is not None else obj
-
- left_base = _get_base(left)
- right_base = _get_base(right)
-
- if check_same == "same":
- if left_base is not right_base:
- raise AssertionError(f"{repr(left_base)} is not {repr(right_base)}")
- elif check_same == "copy":
- if left_base is right_base:
- raise AssertionError(f"{repr(left_base)} is {repr(right_base)}")
-
- def _raise(left, right, err_msg):
- if err_msg is None:
- if left.shape != right.shape:
- raise_assert_detail(
- obj, f"{obj} shapes are different", left.shape, right.shape,
- )
-
- diff = 0
- for l, r in zip(left, right):
- # count up differences
- if not array_equivalent(l, r, strict_nan=strict_nan):
- diff += 1
-
- diff = diff * 100.0 / left.size
- msg = f"{obj} values are different ({np.round(diff, 5)} %)"
- raise_assert_detail(obj, msg, left, right)
-
- raise AssertionError(err_msg)
-
- # compare shape and values
- if not array_equivalent(left, right, strict_nan=strict_nan):
- _raise(left, right, err_msg)
-
- if check_dtype:
- if isinstance(left, np.ndarray) and isinstance(right, np.ndarray):
- assert_attr_equal("dtype", left, right, obj=obj)
-
-
-def assert_extension_array_equal(
- left, right, check_dtype=True, check_less_precise=False, check_exact=False
-):
- """
- Check that left and right ExtensionArrays are equal.
-
- Parameters
- ----------
- left, right : ExtensionArray
- The two arrays to compare.
- check_dtype : bool, default True
- Whether to check if the ExtensionArray dtypes are identical.
- check_less_precise : bool or int, default False
- Specify comparison precision. Only used when check_exact is False.
- 5 digits (False) or 3 digits (True) after decimal points are compared.
- If int, then specify the digits to compare.
- check_exact : bool, default False
- Whether to compare number exactly.
-
- Notes
- -----
- Missing values are checked separately from valid values.
- A mask of missing values is computed for each and checked to match.
- The remaining all-valid values are cast to object dtype and checked.
- """
- assert isinstance(left, ExtensionArray), "left is not an ExtensionArray"
- assert isinstance(right, ExtensionArray), "right is not an ExtensionArray"
- if check_dtype:
- assert_attr_equal("dtype", left, right, obj="ExtensionArray")
-
- if hasattr(left, "asi8") and type(right) == type(left):
- # Avoid slow object-dtype comparisons
- assert_numpy_array_equal(left.asi8, right.asi8)
- return
-
- left_na = np.asarray(left.isna())
- right_na = np.asarray(right.isna())
- assert_numpy_array_equal(left_na, right_na, obj="ExtensionArray NA mask")
-
- left_valid = np.asarray(left[~left_na].astype(object))
- right_valid = np.asarray(right[~right_na].astype(object))
- if check_exact:
- assert_numpy_array_equal(left_valid, right_valid, obj="ExtensionArray")
- else:
- _testing.assert_almost_equal(
- left_valid,
- right_valid,
- check_dtype=check_dtype,
- check_less_precise=check_less_precise,
- obj="ExtensionArray",
- )
-
-
-# This could be refactored to use the NDFrame.equals method
-def assert_series_equal(
- left,
- right,
- check_dtype=True,
- check_index_type="equiv",
- check_series_type=True,
- check_less_precise=False,
- check_names=True,
- check_exact=False,
- check_datetimelike_compat=False,
- check_categorical=True,
- check_category_order=True,
- obj="Series",
-):
- """
- Check that left and right Series are equal.
-
- Parameters
- ----------
- left : Series
- right : Series
- check_dtype : bool, default True
- Whether to check the Series dtype is identical.
- check_index_type : bool or {'equiv'}, default 'equiv'
- Whether to check the Index class, dtype and inferred_type
- are identical.
- check_series_type : bool, default True
- Whether to check the Series class is identical.
- check_less_precise : bool or int, default False
- Specify comparison precision. Only used when check_exact is False.
- 5 digits (False) or 3 digits (True) after decimal points are compared.
- If int, then specify the digits to compare.
-
- When comparing two numbers, if the first number has magnitude less
- than 1e-5, we compare the two numbers directly and check whether
- they are equivalent within the specified precision. Otherwise, we
- compare the **ratio** of the second number to the first number and
- check whether it is equivalent to 1 within the specified precision.
- check_names : bool, default True
- Whether to check the Series and Index names attribute.
- check_exact : bool, default False
- Whether to compare number exactly.
- check_datetimelike_compat : bool, default False
- Compare datetime-like which is comparable ignoring dtype.
- check_categorical : bool, default True
- Whether to compare internal Categorical exactly.
- check_category_order : bool, default True
- Whether to compare category order of internal Categoricals
-
- .. versionadded:: 1.0.2
- obj : str, default 'Series'
- Specify object name being compared, internally used to show appropriate
- assertion message.
- """
- __tracebackhide__ = True
-
- # instance validation
- _check_isinstance(left, right, Series)
-
- if check_series_type:
- # ToDo: There are some tests using rhs is sparse
- # lhs is dense. Should use assert_class_equal in future
- assert isinstance(left, type(right))
- # assert_class_equal(left, right, obj=obj)
-
- # length comparison
- if len(left) != len(right):
- msg1 = f"{len(left)}, {left.index}"
- msg2 = f"{len(right)}, {right.index}"
- raise_assert_detail(obj, "Series length are different", msg1, msg2)
-
- # index comparison
- assert_index_equal(
- left.index,
- right.index,
- exact=check_index_type,
- check_names=check_names,
- check_less_precise=check_less_precise,
- check_exact=check_exact,
- check_categorical=check_categorical,
- obj=f"{obj}.index",
- )
-
- if check_dtype:
- # We want to skip exact dtype checking when `check_categorical`
- # is False. We'll still raise if only one is a `Categorical`,
- # regardless of `check_categorical`
- if (
- is_categorical_dtype(left)
- and is_categorical_dtype(right)
- and not check_categorical
- ):
- pass
- else:
- assert_attr_equal("dtype", left, right, obj=f"Attributes of {obj}")
-
- if check_exact:
- assert_numpy_array_equal(
- left._internal_get_values(),
- right._internal_get_values(),
- check_dtype=check_dtype,
- obj=str(obj),
- )
- elif check_datetimelike_compat:
- # we want to check only if we have compat dtypes
- # e.g. integer and M|m are NOT compat, but we can simply check
- # the values in that case
- if needs_i8_conversion(left) or needs_i8_conversion(right):
-
- # datetimelike may have different objects (e.g. datetime.datetime
- # vs Timestamp) but will compare equal
- if not Index(left.values).equals(Index(right.values)):
- msg = (
- f"[datetimelike_compat=True] {left.values} "
- f"is not equal to {right.values}."
- )
- raise AssertionError(msg)
- else:
- assert_numpy_array_equal(
- left._internal_get_values(),
- right._internal_get_values(),
- check_dtype=check_dtype,
- )
- elif is_interval_dtype(left) or is_interval_dtype(right):
- assert_interval_array_equal(left.array, right.array)
- elif is_extension_array_dtype(left.dtype) and is_datetime64tz_dtype(left.dtype):
- # .values is an ndarray, but ._values is the ExtensionArray.
- # TODO: Use .array
- assert is_extension_array_dtype(right.dtype)
- assert_extension_array_equal(left._values, right._values)
- elif (
- is_extension_array_dtype(left)
- and not is_categorical_dtype(left)
- and is_extension_array_dtype(right)
- and not is_categorical_dtype(right)
- ):
- assert_extension_array_equal(left.array, right.array)
- else:
- _testing.assert_almost_equal(
- left._internal_get_values(),
- right._internal_get_values(),
- check_less_precise=check_less_precise,
- check_dtype=check_dtype,
- obj=str(obj),
- )
-
- # metadata comparison
- if check_names:
- assert_attr_equal("name", left, right, obj=obj)
-
- if check_categorical:
- if is_categorical_dtype(left) or is_categorical_dtype(right):
- assert_categorical_equal(
- left.values,
- right.values,
- obj=f"{obj} category",
- check_category_order=check_category_order,
- )
-
-
-# This could be refactored to use the NDFrame.equals method
-def assert_frame_equal(
- left,
- right,
- check_dtype=True,
- check_index_type="equiv",
- check_column_type="equiv",
- check_frame_type=True,
- check_less_precise=False,
- check_names=True,
- by_blocks=False,
- check_exact=False,
- check_datetimelike_compat=False,
- check_categorical=True,
- check_like=False,
- obj="DataFrame",
-):
- """
- Check that left and right DataFrame are equal.
-
- This function is intended to compare two DataFrames and output any
- differences. Is is mostly intended for use in unit tests.
- Additional parameters allow varying the strictness of the
- equality checks performed.
-
- Parameters
- ----------
- left : DataFrame
- First DataFrame to compare.
- right : DataFrame
- Second DataFrame to compare.
- check_dtype : bool, default True
- Whether to check the DataFrame dtype is identical.
- check_index_type : bool or {'equiv'}, default 'equiv'
- Whether to check the Index class, dtype and inferred_type
- are identical.
- check_column_type : bool or {'equiv'}, default 'equiv'
- Whether to check the columns class, dtype and inferred_type
- are identical. Is passed as the ``exact`` argument of
- :func:`assert_index_equal`.
- check_frame_type : bool, default True
- Whether to check the DataFrame class is identical.
- check_less_precise : bool or int, default False
- Specify comparison precision. Only used when check_exact is False.
- 5 digits (False) or 3 digits (True) after decimal points are compared.
- If int, then specify the digits to compare.
-
- When comparing two numbers, if the first number has magnitude less
- than 1e-5, we compare the two numbers directly and check whether
- they are equivalent within the specified precision. Otherwise, we
- compare the **ratio** of the second number to the first number and
- check whether it is equivalent to 1 within the specified precision.
- check_names : bool, default True
- Whether to check that the `names` attribute for both the `index`
- and `column` attributes of the DataFrame is identical.
- by_blocks : bool, default False
- Specify how to compare internal data. If False, compare by columns.
- If True, compare by blocks.
- check_exact : bool, default False
- Whether to compare number exactly.
- check_datetimelike_compat : bool, default False
- Compare datetime-like which is comparable ignoring dtype.
- check_categorical : bool, default True
- Whether to compare internal Categorical exactly.
- check_like : bool, default False
- If True, ignore the order of index & columns.
- Note: index labels must match their respective rows
- (same as in columns) - same labels must be with the same data.
- obj : str, default 'DataFrame'
- Specify object name being compared, internally used to show appropriate
- assertion message.
-
- See Also
- --------
- assert_series_equal : Equivalent method for asserting Series equality.
- DataFrame.equals : Check DataFrame equality.
-
- Examples
- --------
- This example shows comparing two DataFrames that are equal
- but with columns of differing dtypes.
-
- >>> from pandas._testing import assert_frame_equal
- >>> df1 = pd.DataFrame({'a': [1, 2], 'b': [3, 4]})
- >>> df2 = pd.DataFrame({'a': [1, 2], 'b': [3.0, 4.0]})
-
- df1 equals itself.
-
- >>> assert_frame_equal(df1, df1)
-
- df1 differs from df2 as column 'b' is of a different type.
-
- >>> assert_frame_equal(df1, df2)
- Traceback (most recent call last):
- ...
- AssertionError: Attributes of DataFrame.iloc[:, 1] (column name="b") are different
-
- Attribute "dtype" are different
- [left]: int64
- [right]: float64
-
- Ignore differing dtypes in columns with check_dtype.
-
- >>> assert_frame_equal(df1, df2, check_dtype=False)
- """
- __tracebackhide__ = True
-
- # instance validation
- _check_isinstance(left, right, DataFrame)
-
- if check_frame_type:
- assert isinstance(left, type(right))
- # assert_class_equal(left, right, obj=obj)
-
- # shape comparison
- if left.shape != right.shape:
- raise_assert_detail(
- obj, f"{obj} shape mismatch", f"{repr(left.shape)}", f"{repr(right.shape)}",
- )
-
- if check_like:
- left, right = left.reindex_like(right), right
-
- # index comparison
- assert_index_equal(
- left.index,
- right.index,
- exact=check_index_type,
- check_names=check_names,
- check_less_precise=check_less_precise,
- check_exact=check_exact,
- check_categorical=check_categorical,
- obj=f"{obj}.index",
- )
-
- # column comparison
- assert_index_equal(
- left.columns,
- right.columns,
- exact=check_column_type,
- check_names=check_names,
- check_less_precise=check_less_precise,
- check_exact=check_exact,
- check_categorical=check_categorical,
- obj=f"{obj}.columns",
- )
-
- # compare by blocks
- if by_blocks:
- rblocks = right._to_dict_of_blocks()
- lblocks = left._to_dict_of_blocks()
- for dtype in list(set(list(lblocks.keys()) + list(rblocks.keys()))):
- assert dtype in lblocks
- assert dtype in rblocks
- assert_frame_equal(
- lblocks[dtype], rblocks[dtype], check_dtype=check_dtype, obj=obj
- )
-
- # compare by columns
- else:
- for i, col in enumerate(left.columns):
- assert col in right
- lcol = left.iloc[:, i]
- rcol = right.iloc[:, i]
- assert_series_equal(
- lcol,
- rcol,
- check_dtype=check_dtype,
- check_index_type=check_index_type,
- check_less_precise=check_less_precise,
- check_exact=check_exact,
- check_names=check_names,
- check_datetimelike_compat=check_datetimelike_compat,
- check_categorical=check_categorical,
- obj=f'{obj}.iloc[:, {i}] (column name="{col}")',
- )
-
-
-def assert_equal(left, right, **kwargs):
- """
- Wrapper for tm.assert_*_equal to dispatch to the appropriate test function.
-
- Parameters
- ----------
- left, right : Index, Series, DataFrame, ExtensionArray, or np.ndarray
- The two items to be compared.
- **kwargs
- All keyword arguments are passed through to the underlying assert method.
- """
- __tracebackhide__ = True
-
- if isinstance(left, pd.Index):
- assert_index_equal(left, right, **kwargs)
- elif isinstance(left, pd.Series):
- assert_series_equal(left, right, **kwargs)
- elif isinstance(left, pd.DataFrame):
- assert_frame_equal(left, right, **kwargs)
- elif isinstance(left, IntervalArray):
- assert_interval_array_equal(left, right, **kwargs)
- elif isinstance(left, PeriodArray):
- assert_period_array_equal(left, right, **kwargs)
- elif isinstance(left, DatetimeArray):
- assert_datetime_array_equal(left, right, **kwargs)
- elif isinstance(left, TimedeltaArray):
- assert_timedelta_array_equal(left, right, **kwargs)
- elif isinstance(left, ExtensionArray):
- assert_extension_array_equal(left, right, **kwargs)
- elif isinstance(left, np.ndarray):
- assert_numpy_array_equal(left, right, **kwargs)
- elif isinstance(left, str):
- assert kwargs == {}
- assert left == right
- else:
- raise NotImplementedError(type(left))
-
-
-def box_expected(expected, box_cls, transpose=True):
- """
- Helper function to wrap the expected output of a test in a given box_class.
-
- Parameters
- ----------
- expected : np.ndarray, Index, Series
- box_cls : {Index, Series, DataFrame}
-
- Returns
- -------
- subclass of box_cls
- """
- if box_cls is pd.Index:
- expected = pd.Index(expected)
- elif box_cls is pd.Series:
- expected = pd.Series(expected)
- elif box_cls is pd.DataFrame:
- expected = pd.Series(expected).to_frame()
- if transpose:
- # for vector operations, we we need a DataFrame to be a single-row,
- # not a single-column, in order to operate against non-DataFrame
- # vectors of the same length.
- expected = expected.T
- elif box_cls is PeriodArray:
- # the PeriodArray constructor is not as flexible as period_array
- expected = period_array(expected)
- elif box_cls is DatetimeArray:
- expected = DatetimeArray(expected)
- elif box_cls is TimedeltaArray:
- expected = TimedeltaArray(expected)
- elif box_cls is np.ndarray:
- expected = np.array(expected)
- elif box_cls is to_array:
- expected = to_array(expected)
- else:
- raise NotImplementedError(box_cls)
- return expected
-
-
-def to_array(obj):
- # temporary implementation until we get pd.array in place
- if is_period_dtype(obj):
- return period_array(obj)
- elif is_datetime64_dtype(obj) or is_datetime64tz_dtype(obj):
- return DatetimeArray._from_sequence(obj)
- elif is_timedelta64_dtype(obj):
- return TimedeltaArray._from_sequence(obj)
- else:
- return np.array(obj)
-
-
-# -----------------------------------------------------------------------------
-# Sparse
-
-
-def assert_sp_array_equal(
- left,
- right,
- check_dtype=True,
- check_kind=True,
- check_fill_value=True,
- consolidate_block_indices=False,
-):
- """
- Check that the left and right SparseArray are equal.
-
- Parameters
- ----------
- left : SparseArray
- right : SparseArray
- check_dtype : bool, default True
- Whether to check the data dtype is identical.
- check_kind : bool, default True
- Whether to just the kind of the sparse index for each column.
- check_fill_value : bool, default True
- Whether to check that left.fill_value matches right.fill_value
- consolidate_block_indices : bool, default False
- Whether to consolidate contiguous blocks for sparse arrays with
- a BlockIndex. Some operations, e.g. concat, will end up with
- block indices that could be consolidated. Setting this to true will
- create a new BlockIndex for that array, with consolidated
- block indices.
- """
- _check_isinstance(left, right, pd.arrays.SparseArray)
-
- assert_numpy_array_equal(left.sp_values, right.sp_values, check_dtype=check_dtype)
-
- # SparseIndex comparison
- assert isinstance(left.sp_index, pd._libs.sparse.SparseIndex)
- assert isinstance(right.sp_index, pd._libs.sparse.SparseIndex)
-
- if not check_kind:
- left_index = left.sp_index.to_block_index()
- right_index = right.sp_index.to_block_index()
- else:
- left_index = left.sp_index
- right_index = right.sp_index
-
- if consolidate_block_indices and left.kind == "block":
- # we'll probably remove this hack...
- left_index = left_index.to_int_index().to_block_index()
- right_index = right_index.to_int_index().to_block_index()
-
- if not left_index.equals(right_index):
- raise_assert_detail(
- "SparseArray.index", "index are not equal", left_index, right_index
- )
- else:
- # Just ensure a
- pass
-
- if check_fill_value:
- assert_attr_equal("fill_value", left, right)
- if check_dtype:
- assert_attr_equal("dtype", left, right)
- assert_numpy_array_equal(left.to_dense(), right.to_dense(), check_dtype=check_dtype)
-
-
-# -----------------------------------------------------------------------------
-# Others
-
-
-def assert_contains_all(iterable, dic):
- for k in iterable:
- assert k in dic, f"Did not contain item: {repr(k)}"
-
-
-def assert_copy(iter1, iter2, **eql_kwargs):
- """
- iter1, iter2: iterables that produce elements
- comparable with assert_almost_equal
-
- Checks that the elements are equal, but not
- the same object. (Does not check that items
- in sequences are also not the same object)
- """
- for elem1, elem2 in zip(iter1, iter2):
- assert_almost_equal(elem1, elem2, **eql_kwargs)
- msg = (
- f"Expected object {repr(type(elem1))} and object {repr(type(elem2))} to be "
- "different objects, but they were the same object."
- )
- assert elem1 is not elem2, msg
-
-
-def getCols(k):
- return string.ascii_uppercase[:k]
-
-
-# make index
-def makeStringIndex(k=10, name=None):
- return Index(rands_array(nchars=10, size=k), name=name)
-
-
-def makeUnicodeIndex(k=10, name=None):
- return Index(randu_array(nchars=10, size=k), name=name)
-
-
-def makeCategoricalIndex(k=10, n=3, name=None, **kwargs):
- """ make a length k index or n categories """
- x = rands_array(nchars=4, size=n)
- return CategoricalIndex(
- Categorical.from_codes(np.arange(k) % n, categories=x), name=name, **kwargs
- )
-
-
-def makeIntervalIndex(k=10, name=None, **kwargs):
- """ make a length k IntervalIndex """
- x = np.linspace(0, 100, num=(k + 1))
- return IntervalIndex.from_breaks(x, name=name, **kwargs)
-
-
-def makeBoolIndex(k=10, name=None):
- if k == 1:
- return Index([True], name=name)
- elif k == 2:
- return Index([False, True], name=name)
- return Index([False, True] + [False] * (k - 2), name=name)
-
-
-def makeIntIndex(k=10, name=None):
- return Index(list(range(k)), name=name)
-
-
-def makeUIntIndex(k=10, name=None):
- return Index([2 ** 63 + i for i in range(k)], name=name)
-
-
-def makeRangeIndex(k=10, name=None, **kwargs):
- return RangeIndex(0, k, 1, name=name, **kwargs)
-
-
-def makeFloatIndex(k=10, name=None):
- values = sorted(np.random.random_sample(k)) - np.random.random_sample(1)
- return Index(values * (10 ** np.random.randint(0, 9)), name=name)
-
-
-def makeDateIndex(k=10, freq="B", name=None, **kwargs):
- dt = datetime(2000, 1, 1)
- dr = bdate_range(dt, periods=k, freq=freq, name=name)
- return DatetimeIndex(dr, name=name, **kwargs)
-
-
-def makeTimedeltaIndex(k=10, freq="D", name=None, **kwargs):
- return pd.timedelta_range(start="1 day", periods=k, freq=freq, name=name, **kwargs)
-
-
-def makePeriodIndex(k=10, name=None, **kwargs):
- dt = datetime(2000, 1, 1)
- dr = pd.period_range(start=dt, periods=k, freq="B", name=name, **kwargs)
- return dr
-
-
-def makeMultiIndex(k=10, names=None, **kwargs):
- return MultiIndex.from_product((("foo", "bar"), (1, 2)), names=names, **kwargs)
-
-
-_names = [
- "Alice",
- "Bob",
- "Charlie",
- "Dan",
- "Edith",
- "Frank",
- "George",
- "Hannah",
- "Ingrid",
- "Jerry",
- "Kevin",
- "Laura",
- "Michael",
- "Norbert",
- "Oliver",
- "Patricia",
- "Quinn",
- "Ray",
- "Sarah",
- "Tim",
- "Ursula",
- "Victor",
- "Wendy",
- "Xavier",
- "Yvonne",
- "Zelda",
-]
-
-
-def _make_timeseries(start="2000-01-01", end="2000-12-31", freq="1D", seed=None):
- """
- Make a DataFrame with a DatetimeIndex
-
- Parameters
- ----------
- start : str or Timestamp, default "2000-01-01"
- The start of the index. Passed to date_range with `freq`.
- end : str or Timestamp, default "2000-12-31"
- The end of the index. Passed to date_range with `freq`.
- freq : str or Freq
- The frequency to use for the DatetimeIndex
- seed : int, optional
- The random state seed.
-
- * name : object dtype with string names
- * id : int dtype with
- * x, y : float dtype
-
- Examples
- --------
- >>> _make_timeseries()
- id name x y
- timestamp
- 2000-01-01 982 Frank 0.031261 0.986727
- 2000-01-02 1025 Edith -0.086358 -0.032920
- 2000-01-03 982 Edith 0.473177 0.298654
- 2000-01-04 1009 Sarah 0.534344 -0.750377
- 2000-01-05 963 Zelda -0.271573 0.054424
- ... ... ... ... ...
- 2000-12-27 980 Ingrid -0.132333 -0.422195
- 2000-12-28 972 Frank -0.376007 -0.298687
- 2000-12-29 1009 Ursula -0.865047 -0.503133
- 2000-12-30 1000 Hannah -0.063757 -0.507336
- 2000-12-31 972 Tim -0.869120 0.531685
- """
- index = pd.date_range(start=start, end=end, freq=freq, name="timestamp")
- n = len(index)
- state = np.random.RandomState(seed)
- columns = {
- "name": state.choice(_names, size=n),
- "id": state.poisson(1000, size=n),
- "x": state.rand(n) * 2 - 1,
- "y": state.rand(n) * 2 - 1,
- }
- df = pd.DataFrame(columns, index=index, columns=sorted(columns))
- if df.index[-1] == end:
- df = df.iloc[:-1]
- return df
-
-
-def all_index_generator(k=10):
- """
- Generator which can be iterated over to get instances of all the various
- index classes.
-
- Parameters
- ----------
- k: length of each of the index instances
- """
- all_make_index_funcs = [
- makeIntIndex,
- makeFloatIndex,
- makeStringIndex,
- makeUnicodeIndex,
- makeDateIndex,
- makePeriodIndex,
- makeTimedeltaIndex,
- makeBoolIndex,
- makeRangeIndex,
- makeIntervalIndex,
- makeCategoricalIndex,
- ]
- for make_index_func in all_make_index_funcs:
- yield make_index_func(k=k)
-
-
-def index_subclass_makers_generator():
- make_index_funcs = [
- makeDateIndex,
- makePeriodIndex,
- makeTimedeltaIndex,
- makeRangeIndex,
- makeIntervalIndex,
- makeCategoricalIndex,
- makeMultiIndex,
- ]
- for make_index_func in make_index_funcs:
- yield make_index_func
-
-
-def all_timeseries_index_generator(k=10):
- """
- Generator which can be iterated over to get instances of all the classes
- which represent time-series.
-
- Parameters
- ----------
- k: length of each of the index instances
- """
- make_index_funcs = [makeDateIndex, makePeriodIndex, makeTimedeltaIndex]
- for make_index_func in make_index_funcs:
- yield make_index_func(k=k)
-
-
-# make series
-def makeFloatSeries(name=None):
- index = makeStringIndex(N)
- return Series(randn(N), index=index, name=name)
-
-
-def makeStringSeries(name=None):
- index = makeStringIndex(N)
- return Series(randn(N), index=index, name=name)
-
-
-def makeObjectSeries(name=None):
- data = makeStringIndex(N)
- data = Index(data, dtype=object)
- index = makeStringIndex(N)
- return Series(data, index=index, name=name)
-
-
-def getSeriesData():
- index = makeStringIndex(N)
- return {c: Series(randn(N), index=index) for c in getCols(K)}
-
-
-def makeTimeSeries(nper=None, freq="B", name=None):
- if nper is None:
- nper = N
- return Series(randn(nper), index=makeDateIndex(nper, freq=freq), name=name)
-
-
-def makePeriodSeries(nper=None, name=None):
- if nper is None:
- nper = N
- return Series(randn(nper), index=makePeriodIndex(nper), name=name)
-
-
-def getTimeSeriesData(nper=None, freq="B"):
- return {c: makeTimeSeries(nper, freq) for c in getCols(K)}
-
-
-def getPeriodData(nper=None):
- return {c: makePeriodSeries(nper) for c in getCols(K)}
-
-
-# make frame
-def makeTimeDataFrame(nper=None, freq="B"):
- data = getTimeSeriesData(nper, freq)
- return DataFrame(data)
-
-
-def makeDataFrame():
- data = getSeriesData()
- return DataFrame(data)
-
-
-def getMixedTypeDict():
- index = Index(["a", "b", "c", "d", "e"])
-
- data = {
- "A": [0.0, 1.0, 2.0, 3.0, 4.0],
- "B": [0.0, 1.0, 0.0, 1.0, 0.0],
- "C": ["foo1", "foo2", "foo3", "foo4", "foo5"],
- "D": bdate_range("1/1/2009", periods=5),
- }
-
- return index, data
-
-
-def makeMixedDataFrame():
- return DataFrame(getMixedTypeDict()[1])
-
-
-def makePeriodFrame(nper=None):
- data = getPeriodData(nper)
- return DataFrame(data)
-
-
-def makeCustomIndex(
- nentries, nlevels, prefix="#", names=False, ndupe_l=None, idx_type=None
-):
- """
- Create an index/multindex with given dimensions, levels, names, etc'
-
- nentries - number of entries in index
- nlevels - number of levels (> 1 produces multindex)
- prefix - a string prefix for labels
- names - (Optional), bool or list of strings. if True will use default
- names, if false will use no names, if a list is given, the name of
- each level in the index will be taken from the list.
- ndupe_l - (Optional), list of ints, the number of rows for which the
- label will repeated at the corresponding level, you can specify just
- the first few, the rest will use the default ndupe_l of 1.
- len(ndupe_l) <= nlevels.
- idx_type - "i"/"f"/"s"/"u"/"dt"/"p"/"td".
- If idx_type is not None, `idx_nlevels` must be 1.
- "i"/"f" creates an integer/float index,
- "s"/"u" creates a string/unicode index
- "dt" create a datetime index.
- "td" create a datetime index.
-
- if unspecified, string labels will be generated.
- """
- if ndupe_l is None:
- ndupe_l = [1] * nlevels
- assert is_sequence(ndupe_l) and len(ndupe_l) <= nlevels
- assert names is None or names is False or names is True or len(names) is nlevels
- assert idx_type is None or (
- idx_type in ("i", "f", "s", "u", "dt", "p", "td") and nlevels == 1
- )
-
- if names is True:
- # build default names
- names = [prefix + str(i) for i in range(nlevels)]
- if names is False:
- # pass None to index constructor for no name
- names = None
-
- # make singleton case uniform
- if isinstance(names, str) and nlevels == 1:
- names = [names]
-
- # specific 1D index type requested?
- idx_func = dict(
- i=makeIntIndex,
- f=makeFloatIndex,
- s=makeStringIndex,
- u=makeUnicodeIndex,
- dt=makeDateIndex,
- td=makeTimedeltaIndex,
- p=makePeriodIndex,
- ).get(idx_type)
- if idx_func:
- idx = idx_func(nentries)
- # but we need to fill in the name
- if names:
- idx.name = names[0]
- return idx
- elif idx_type is not None:
- raise ValueError(
- f"{repr(idx_type)} is not a legal value for `idx_type`, "
- "use 'i'/'f'/'s'/'u'/'dt'/'p'/'td'."
- )
-
- if len(ndupe_l) < nlevels:
- ndupe_l.extend([1] * (nlevels - len(ndupe_l)))
- assert len(ndupe_l) == nlevels
-
- assert all(x > 0 for x in ndupe_l)
-
- tuples = []
- for i in range(nlevels):
-
- def keyfunc(x):
- import re
-
- numeric_tuple = re.sub(r"[^\d_]_?", "", x).split("_")
- return [int(num) for num in numeric_tuple]
-
- # build a list of lists to create the index from
- div_factor = nentries // ndupe_l[i] + 1
- cnt = Counter()
- for j in range(div_factor):
- label = f"{prefix}_l{i}_g{j}"
- cnt[label] = ndupe_l[i]
- # cute Counter trick
- result = sorted(cnt.elements(), key=keyfunc)[:nentries]
- tuples.append(result)
-
- tuples = list(zip(*tuples))
-
- # convert tuples to index
- if nentries == 1:
- # we have a single level of tuples, i.e. a regular Index
- index = Index(tuples[0], name=names[0])
- elif nlevels == 1:
- name = None if names is None else names[0]
- index = Index((x[0] for x in tuples), name=name)
- else:
- index = MultiIndex.from_tuples(tuples, names=names)
- return index
-
-
-def makeCustomDataframe(
- nrows,
- ncols,
- c_idx_names=True,
- r_idx_names=True,
- c_idx_nlevels=1,
- r_idx_nlevels=1,
- data_gen_f=None,
- c_ndupe_l=None,
- r_ndupe_l=None,
- dtype=None,
- c_idx_type=None,
- r_idx_type=None,
-):
- """
- Create a DataFrame using supplied parameters.
-
- Parameters
- ----------
- nrows, ncols - number of data rows/cols
- c_idx_names, idx_names - False/True/list of strings, yields No names ,
- default names or uses the provided names for the levels of the
- corresponding index. You can provide a single string when
- c_idx_nlevels ==1.
- c_idx_nlevels - number of levels in columns index. > 1 will yield MultiIndex
- r_idx_nlevels - number of levels in rows index. > 1 will yield MultiIndex
- data_gen_f - a function f(row,col) which return the data value
- at that position, the default generator used yields values of the form
- "RxCy" based on position.
- c_ndupe_l, r_ndupe_l - list of integers, determines the number
- of duplicates for each label at a given level of the corresponding
- index. The default `None` value produces a multiplicity of 1 across
- all levels, i.e. a unique index. Will accept a partial list of length
- N < idx_nlevels, for just the first N levels. If ndupe doesn't divide
- nrows/ncol, the last label might have lower multiplicity.
- dtype - passed to the DataFrame constructor as is, in case you wish to
- have more control in conjunction with a custom `data_gen_f`
- r_idx_type, c_idx_type - "i"/"f"/"s"/"u"/"dt"/"td".
- If idx_type is not None, `idx_nlevels` must be 1.
- "i"/"f" creates an integer/float index,
- "s"/"u" creates a string/unicode index
- "dt" create a datetime index.
- "td" create a timedelta index.
-
- if unspecified, string labels will be generated.
-
- Examples
- --------
- # 5 row, 3 columns, default names on both, single index on both axis
- >> makeCustomDataframe(5,3)
-
- # make the data a random int between 1 and 100
- >> mkdf(5,3,data_gen_f=lambda r,c:randint(1,100))
-
- # 2-level multiindex on rows with each label duplicated
- # twice on first level, default names on both axis, single
- # index on both axis
- >> a=makeCustomDataframe(5,3,r_idx_nlevels=2,r_ndupe_l=[2])
-
- # DatetimeIndex on row, index with unicode labels on columns
- # no names on either axis
- >> a=makeCustomDataframe(5,3,c_idx_names=False,r_idx_names=False,
- r_idx_type="dt",c_idx_type="u")
-
- # 4-level multindex on rows with names provided, 2-level multindex
- # on columns with default labels and default names.
- >> a=makeCustomDataframe(5,3,r_idx_nlevels=4,
- r_idx_names=["FEE","FI","FO","FAM"],
- c_idx_nlevels=2)
-
- >> a=mkdf(5,3,r_idx_nlevels=2,c_idx_nlevels=4)
- """
- assert c_idx_nlevels > 0
- assert r_idx_nlevels > 0
- assert r_idx_type is None or (
- r_idx_type in ("i", "f", "s", "u", "dt", "p", "td") and r_idx_nlevels == 1
- )
- assert c_idx_type is None or (
- c_idx_type in ("i", "f", "s", "u", "dt", "p", "td") and c_idx_nlevels == 1
- )
-
- columns = makeCustomIndex(
- ncols,
- nlevels=c_idx_nlevels,
- prefix="C",
- names=c_idx_names,
- ndupe_l=c_ndupe_l,
- idx_type=c_idx_type,
- )
- index = makeCustomIndex(
- nrows,
- nlevels=r_idx_nlevels,
- prefix="R",
- names=r_idx_names,
- ndupe_l=r_ndupe_l,
- idx_type=r_idx_type,
- )
-
- # by default, generate data based on location
- if data_gen_f is None:
- data_gen_f = lambda r, c: f"R{r}C{c}"
-
- data = [[data_gen_f(r, c) for c in range(ncols)] for r in range(nrows)]
-
- return DataFrame(data, index, columns, dtype=dtype)
-
-
-def _create_missing_idx(nrows, ncols, density, random_state=None):
- if random_state is None:
- random_state = np.random
- else:
- random_state = np.random.RandomState(random_state)
-
- # below is cribbed from scipy.sparse
- size = int(np.round((1 - density) * nrows * ncols))
- # generate a few more to ensure unique values
- min_rows = 5
- fac = 1.02
- extra_size = min(size + min_rows, fac * size)
-
- def _gen_unique_rand(rng, _extra_size):
- ind = rng.rand(int(_extra_size))
- return np.unique(np.floor(ind * nrows * ncols))[:size]
-
- ind = _gen_unique_rand(random_state, extra_size)
- while ind.size < size:
- extra_size *= 1.05
- ind = _gen_unique_rand(random_state, extra_size)
-
- j = np.floor(ind * 1.0 / nrows).astype(int)
- i = (ind - j * nrows).astype(int)
- return i.tolist(), j.tolist()
-
-
-def makeMissingCustomDataframe(
- nrows,
- ncols,
- density=0.9,
- random_state=None,
- c_idx_names=True,
- r_idx_names=True,
- c_idx_nlevels=1,
- r_idx_nlevels=1,
- data_gen_f=None,
- c_ndupe_l=None,
- r_ndupe_l=None,
- dtype=None,
- c_idx_type=None,
- r_idx_type=None,
-):
- """
- Parameters
- ----------
- Density : float, optional
- Float in (0, 1) that gives the percentage of non-missing numbers in
- the DataFrame.
- random_state : {np.random.RandomState, int}, optional
- Random number generator or random seed.
-
- See makeCustomDataframe for descriptions of the rest of the parameters.
- """
- df = makeCustomDataframe(
- nrows,
- ncols,
- c_idx_names=c_idx_names,
- r_idx_names=r_idx_names,
- c_idx_nlevels=c_idx_nlevels,
- r_idx_nlevels=r_idx_nlevels,
- data_gen_f=data_gen_f,
- c_ndupe_l=c_ndupe_l,
- r_ndupe_l=r_ndupe_l,
- dtype=dtype,
- c_idx_type=c_idx_type,
- r_idx_type=r_idx_type,
- )
-
- i, j = _create_missing_idx(nrows, ncols, density, random_state)
- df.values[i, j] = np.nan
- return df
-
-
-def makeMissingDataframe(density=0.9, random_state=None):
- df = makeDataFrame()
- i, j = _create_missing_idx(*df.shape, density=density, random_state=random_state)
- df.values[i, j] = np.nan
- return df
-
-
-def optional_args(decorator):
- """
- allows a decorator to take optional positional and keyword arguments.
- Assumes that taking a single, callable, positional argument means that
- it is decorating a function, i.e. something like this::
-
- @my_decorator
- def function(): pass
-
- Calls decorator with decorator(f, *args, **kwargs)
- """
-
- @wraps(decorator)
- def wrapper(*args, **kwargs):
- def dec(f):
- return decorator(f, *args, **kwargs)
-
- is_decorating = not kwargs and len(args) == 1 and callable(args[0])
- if is_decorating:
- f = args[0]
- args = []
- return dec(f)
- else:
- return dec
-
- return wrapper
-
-
-# skip tests on exceptions with this message
-_network_error_messages = (
- # 'urlopen error timed out',
- # 'timeout: timed out',
- # 'socket.timeout: timed out',
- "timed out",
- "Server Hangup",
- "HTTP Error 503: Service Unavailable",
- "502: Proxy Error",
- "HTTP Error 502: internal error",
- "HTTP Error 502",
- "HTTP Error 503",
- "HTTP Error 403",
- "HTTP Error 400",
- "Temporary failure in name resolution",
- "Name or service not known",
- "Connection refused",
- "certificate verify",
-)
-
-# or this e.errno/e.reason.errno
-_network_errno_vals = (
- 101, # Network is unreachable
- 111, # Connection refused
- 110, # Connection timed out
- 104, # Connection reset Error
- 54, # Connection reset by peer
- 60, # urllib.error.URLError: [Errno 60] Connection timed out
-)
-
-# Both of the above shouldn't mask real issues such as 404's
-# or refused connections (changed DNS).
-# But some tests (test_data yahoo) contact incredibly flakey
-# servers.
-
-# and conditionally raise on exception types in _get_default_network_errors
-
-
-def _get_default_network_errors():
- # Lazy import for http.client because it imports many things from the stdlib
- import http.client
-
- return (IOError, http.client.HTTPException, TimeoutError)
-
-
-def can_connect(url, error_classes=None):
- """
- Try to connect to the given url. True if succeeds, False if IOError
- raised
-
- Parameters
- ----------
- url : basestring
- The URL to try to connect to
-
- Returns
- -------
- connectable : bool
- Return True if no IOError (unable to connect) or URLError (bad url) was
- raised
- """
- if error_classes is None:
- error_classes = _get_default_network_errors()
-
- try:
- with urlopen(url):
- pass
- except error_classes:
- return False
- else:
- return True
-
-
-@optional_args
-def network(
- t,
- url="http://www.google.com",
- raise_on_error=_RAISE_NETWORK_ERROR_DEFAULT,
- check_before_test=False,
- error_classes=None,
- skip_errnos=_network_errno_vals,
- _skip_on_messages=_network_error_messages,
-):
- """
- Label a test as requiring network connection and, if an error is
- encountered, only raise if it does not find a network connection.
-
- In comparison to ``network``, this assumes an added contract to your test:
- you must assert that, under normal conditions, your test will ONLY fail if
- it does not have network connectivity.
-
- You can call this in 3 ways: as a standard decorator, with keyword
- arguments, or with a positional argument that is the url to check.
-
- Parameters
- ----------
- t : callable
- The test requiring network connectivity.
- url : path
- The url to test via ``pandas.io.common.urlopen`` to check
- for connectivity. Defaults to 'http://www.google.com'.
- raise_on_error : bool
- If True, never catches errors.
- check_before_test : bool
- If True, checks connectivity before running the test case.
- error_classes : tuple or Exception
- error classes to ignore. If not in ``error_classes``, raises the error.
- defaults to IOError. Be careful about changing the error classes here.
- skip_errnos : iterable of int
- Any exception that has .errno or .reason.erno set to one
- of these values will be skipped with an appropriate
- message.
- _skip_on_messages: iterable of string
- any exception e for which one of the strings is
- a substring of str(e) will be skipped with an appropriate
- message. Intended to suppress errors where an errno isn't available.
-
- Notes
- -----
- * ``raise_on_error`` supercedes ``check_before_test``
-
- Returns
- -------
- t : callable
- The decorated test ``t``, with checks for connectivity errors.
-
- Example
- -------
-
- Tests decorated with @network will fail if it's possible to make a network
- connection to another URL (defaults to google.com)::
-
- >>> from pandas._testing import network
- >>> from pandas.io.common import urlopen
- >>> @network
- ... def test_network():
- ... with urlopen("rabbit://bonanza.com"):
- ... pass
- Traceback
- ...
- URLError: <urlopen error unknown url type: rabit>
-
- You can specify alternative URLs::
-
- >>> @network("http://www.yahoo.com")
- ... def test_something_with_yahoo():
- ... raise IOError("Failure Message")
- >>> test_something_with_yahoo()
- Traceback (most recent call last):
- ...
- IOError: Failure Message
-
- If you set check_before_test, it will check the url first and not run the
- test on failure::
-
- >>> @network("failing://url.blaher", check_before_test=True)
- ... def test_something():
- ... print("I ran!")
- ... raise ValueError("Failure")
- >>> test_something()
- Traceback (most recent call last):
- ...
-
- Errors not related to networking will always be raised.
- """
- from pytest import skip
-
- if error_classes is None:
- error_classes = _get_default_network_errors()
-
- t.network = True
-
- @wraps(t)
- def wrapper(*args, **kwargs):
- if check_before_test and not raise_on_error:
- if not can_connect(url, error_classes):
- skip()
- try:
- return t(*args, **kwargs)
- except Exception as err:
- errno = getattr(err, "errno", None)
- if not errno and hasattr(errno, "reason"):
- errno = getattr(err.reason, "errno", None)
-
- if errno in skip_errnos:
- skip(f"Skipping test due to known errno and error {err}")
-
- e_str = str(err)
-
- if any(m.lower() in e_str.lower() for m in _skip_on_messages):
- skip(
- f"Skipping test because exception message is known and error {err}"
- )
-
- if not isinstance(err, error_classes):
- raise
-
- if raise_on_error or can_connect(url, error_classes):
- raise
- else:
- skip(f"Skipping test due to lack of connectivity and error {err}")
-
- return wrapper
-
-
-with_connectivity_check = network
-
-
-@contextmanager
-def assert_produces_warning(
- expected_warning=Warning,
- filter_level="always",
- clear=None,
- check_stacklevel=True,
- raise_on_extra_warnings=True,
-):
- """
- Context manager for running code expected to either raise a specific
- warning, or not raise any warnings. Verifies that the code raises the
- expected warning, and that it does not raise any other unexpected
- warnings. It is basically a wrapper around ``warnings.catch_warnings``.
-
- Parameters
- ----------
- expected_warning : {Warning, False, None}, default Warning
- The type of Exception raised. ``exception.Warning`` is the base
- class for all warnings. To check that no warning is returned,
- specify ``False`` or ``None``.
- filter_level : str or None, default "always"
- Specifies whether warnings are ignored, displayed, or turned
- into errors.
- Valid values are:
-
- * "error" - turns matching warnings into exceptions
- * "ignore" - discard the warning
- * "always" - always emit a warning
- * "default" - print the warning the first time it is generated
- from each location
- * "module" - print the warning the first time it is generated
- from each module
- * "once" - print the warning the first time it is generated
-
- clear : str, default None
- If not ``None`` then remove any previously raised warnings from
- the ``__warningsregistry__`` to ensure that no warning messages are
- suppressed by this context manager. If ``None`` is specified,
- the ``__warningsregistry__`` keeps track of which warnings have been
- shown, and does not show them again.
- check_stacklevel : bool, default True
- If True, displays the line that called the function containing
- the warning to show were the function is called. Otherwise, the
- line that implements the function is displayed.
- raise_on_extra_warnings : bool, default True
- Whether extra warnings not of the type `expected_warning` should
- cause the test to fail.
-
- Examples
- --------
- >>> import warnings
- >>> with assert_produces_warning():
- ... warnings.warn(UserWarning())
- ...
- >>> with assert_produces_warning(False):
- ... warnings.warn(RuntimeWarning())
- ...
- Traceback (most recent call last):
- ...
- AssertionError: Caused unexpected warning(s): ['RuntimeWarning'].
- >>> with assert_produces_warning(UserWarning):
- ... warnings.warn(RuntimeWarning())
- Traceback (most recent call last):
- ...
- AssertionError: Did not see expected warning of class 'UserWarning'.
-
- ..warn:: This is *not* thread-safe.
- """
- __tracebackhide__ = True
-
- with warnings.catch_warnings(record=True) as w:
-
- if clear is not None:
- # make sure that we are clearing these warnings
- # if they have happened before
- # to guarantee that we will catch them
- if not is_list_like(clear):
- clear = [clear]
- for m in clear:
- try:
- m.__warningregistry__.clear()
- except AttributeError:
- # module may not have __warningregistry__
- pass
-
- saw_warning = False
- warnings.simplefilter(filter_level)
- yield w
- extra_warnings = []
-
- for actual_warning in w:
- if expected_warning and issubclass(
- actual_warning.category, expected_warning
- ):
- saw_warning = True
-
- if check_stacklevel and issubclass(
- actual_warning.category, (FutureWarning, DeprecationWarning)
- ):
- from inspect import getframeinfo, stack
-
- caller = getframeinfo(stack()[2][0])
- msg = (
- "Warning not set with correct stacklevel. "
- f"File where warning is raised: {actual_warning.filename} != "
- f"{caller.filename}. Warning message: {actual_warning.message}"
- )
- assert actual_warning.filename == caller.filename, msg
- else:
- extra_warnings.append(
- (
- actual_warning.category.__name__,
- actual_warning.message,
- actual_warning.filename,
- actual_warning.lineno,
- )
- )
- if expected_warning:
- msg = (
- f"Did not see expected warning of class "
- f"{repr(expected_warning.__name__)}"
- )
- assert saw_warning, msg
- if raise_on_extra_warnings and extra_warnings:
- raise AssertionError(
- f"Caused unexpected warning(s): {repr(extra_warnings)}"
- )
-
-
-class RNGContext:
- """
- Context manager to set the numpy random number generator speed. Returns
- to the original value upon exiting the context manager.
-
- Parameters
- ----------
- seed : int
- Seed for numpy.random.seed
-
- Examples
- --------
- with RNGContext(42):
- np.random.randn()
- """
-
- def __init__(self, seed):
- self.seed = seed
-
- def __enter__(self):
-
- self.start_state = np.random.get_state()
- np.random.seed(self.seed)
-
- def __exit__(self, exc_type, exc_value, traceback):
-
- np.random.set_state(self.start_state)
-
-
-@contextmanager
-def with_csv_dialect(name, **kwargs):
- """
- Context manager to temporarily register a CSV dialect for parsing CSV.
-
- Parameters
- ----------
- name : str
- The name of the dialect.
- kwargs : mapping
- The parameters for the dialect.
-
- Raises
- ------
- ValueError : the name of the dialect conflicts with a builtin one.
-
- See Also
- --------
- csv : Python's CSV library.
- """
- import csv
-
- _BUILTIN_DIALECTS = {"excel", "excel-tab", "unix"}
-
- if name in _BUILTIN_DIALECTS:
- raise ValueError("Cannot override builtin dialect.")
-
- csv.register_dialect(name, **kwargs)
- yield
- csv.unregister_dialect(name)
-
-
-@contextmanager
-def use_numexpr(use, min_elements=None):
- from pandas.core.computation import expressions as expr
-
- if min_elements is None:
- min_elements = expr._MIN_ELEMENTS
-
- olduse = expr._USE_NUMEXPR
- oldmin = expr._MIN_ELEMENTS
- expr.set_use_numexpr(use)
- expr._MIN_ELEMENTS = min_elements
- yield
- expr._MIN_ELEMENTS = oldmin
- expr.set_use_numexpr(olduse)
-
-
-def test_parallel(num_threads=2, kwargs_list=None):
- """
- Decorator to run the same function multiple times in parallel.
-
- Parameters
- ----------
- num_threads : int, optional
- The number of times the function is run in parallel.
- kwargs_list : list of dicts, optional
- The list of kwargs to update original
- function kwargs on different threads.
-
- Notes
- -----
- This decorator does not pass the return value of the decorated function.
-
- Original from scikit-image:
-
- https://github.com/scikit-image/scikit-image/pull/1519
-
- """
- assert num_threads > 0
- has_kwargs_list = kwargs_list is not None
- if has_kwargs_list:
- assert len(kwargs_list) == num_threads
- import threading
-
- def wrapper(func):
- @wraps(func)
- def inner(*args, **kwargs):
- if has_kwargs_list:
- update_kwargs = lambda i: dict(kwargs, **kwargs_list[i])
- else:
- update_kwargs = lambda i: kwargs
- threads = []
- for i in range(num_threads):
- updated_kwargs = update_kwargs(i)
- thread = threading.Thread(target=func, args=args, kwargs=updated_kwargs)
- threads.append(thread)
- for thread in threads:
- thread.start()
- for thread in threads:
- thread.join()
-
- return inner
-
- return wrapper
-
-
-class SubclassedSeries(Series):
- _metadata = ["testattr", "name"]
-
- @property
- def _constructor(self):
- return SubclassedSeries
-
- @property
- def _constructor_expanddim(self):
- return SubclassedDataFrame
-
-
-class SubclassedDataFrame(DataFrame):
- _metadata = ["testattr"]
-
- @property
- def _constructor(self):
- return SubclassedDataFrame
-
- @property
- def _constructor_sliced(self):
- return SubclassedSeries
-
-
-class SubclassedCategorical(Categorical):
- @property
- def _constructor(self):
- return SubclassedCategorical
-
-
-@contextmanager
-def set_timezone(tz: str):
- """
- Context manager for temporarily setting a timezone.
-
- Parameters
- ----------
- tz : str
- A string representing a valid timezone.
-
- Examples
- --------
- >>> from datetime import datetime
- >>> from dateutil.tz import tzlocal
- >>> tzlocal().tzname(datetime.now())
- 'IST'
-
- >>> with set_timezone('US/Eastern'):
- ... tzlocal().tzname(datetime.now())
- ...
- 'EDT'
- """
- import os
- import time
-
- def setTZ(tz):
- if tz is None:
- try:
- del os.environ["TZ"]
- except KeyError:
- pass
- else:
- os.environ["TZ"] = tz
- time.tzset()
-
- orig_tz = os.environ.get("TZ")
- setTZ(tz)
- try:
- yield
- finally:
- setTZ(orig_tz)
-
-
-def _make_skipna_wrapper(alternative, skipna_alternative=None):
- """
- Create a function for calling on an array.
-
- Parameters
- ----------
- alternative : function
- The function to be called on the array with no NaNs.
- Only used when 'skipna_alternative' is None.
- skipna_alternative : function
- The function to be called on the original array
-
- Returns
- -------
- function
- """
- if skipna_alternative:
-
- def skipna_wrapper(x):
- return skipna_alternative(x.values)
-
- else:
-
- def skipna_wrapper(x):
- nona = x.dropna()
- if len(nona) == 0:
- return np.nan
- return alternative(nona)
-
- return skipna_wrapper
-
-
-def convert_rows_list_to_csv_str(rows_list: List[str]):
- """
- Convert list of CSV rows to single CSV-formatted string for current OS.
-
- This method is used for creating expected value of to_csv() method.
-
- Parameters
- ----------
- rows_list : List[str]
- Each element represents the row of csv.
-
- Returns
- -------
- str
- Expected output of to_csv() in current OS.
- """
- sep = os.linesep
- expected = sep.join(rows_list) + sep
- return expected
-
-
-def external_error_raised(
- expected_exception: Type[Exception],
-) -> Callable[[Type[Exception], None], None]:
- """
- Helper function to mark pytest.raises that have an external error message.
-
- Parameters
- ----------
- expected_exception : Exception
- Expected error to raise.
-
- Returns
- -------
- Callable
- Regular `pytest.raises` function with `match` equal to `None`.
- """
- import pytest
-
- return pytest.raises(expected_exception, match=None)
diff --git a/pandas/_testing/__init__.py b/pandas/_testing/__init__.py
new file mode 100644
index 0000000000000..5aab31dfaafe3
--- /dev/null
+++ b/pandas/_testing/__init__.py
@@ -0,0 +1,471 @@
+from functools import wraps
+import os
+from typing import Callable, List, Type
+import warnings
+
+import numpy as np
+from numpy.random import rand
+
+from pandas._config.localization import ( # noqa:F401
+ can_set_locale,
+ get_locales,
+ set_locale,
+)
+
+from pandas.compat import _get_lzma_file, _import_lzma
+
+from pandas.core.dtypes.common import (
+ is_datetime64_dtype,
+ is_datetime64tz_dtype,
+ is_period_dtype,
+ is_timedelta64_dtype,
+)
+
+import pandas as pd
+from pandas import Categorical, DataFrame, Series
+from pandas.core.arrays import DatetimeArray, PeriodArray, TimedeltaArray, period_array
+
+from .asserters import ( # noqa:F401
+ assert_almost_equal,
+ assert_attr_equal,
+ assert_categorical_equal,
+ assert_class_equal,
+ assert_contains_all,
+ assert_copy,
+ assert_datetime_array_equal,
+ assert_dict_equal,
+ assert_equal,
+ assert_extension_array_equal,
+ assert_frame_equal,
+ assert_index_equal,
+ assert_interval_array_equal,
+ assert_is_sorted,
+ assert_numpy_array_equal,
+ assert_period_array_equal,
+ assert_series_equal,
+ assert_sp_array_equal,
+ assert_timedelta_array_equal,
+ raise_assert_detail,
+)
+from .contexts import ( # noqa:F401
+ RNGContext,
+ assert_produces_warning,
+ decompress_file,
+ ensure_clean,
+ ensure_clean_dir,
+ ensure_safe_environment_variables,
+ set_timezone,
+ use_numexpr,
+ with_csv_dialect,
+)
+from .graphics import assert_is_valid_plot_return_object, close # noqa:F401
+from .makers import ( # noqa:F401
+ _create_missing_idx,
+ _make_timeseries,
+ getMixedTypeDict,
+ getPeriodData,
+ getSeriesData,
+ getTimeSeriesData,
+ makeBoolIndex,
+ makeCategoricalIndex,
+ makeCustomDataframe,
+ makeCustomIndex,
+ makeDataFrame,
+ makeDateIndex,
+ makeFloatIndex,
+ makeFloatSeries,
+ makeIntervalIndex,
+ makeIntIndex,
+ makeMissingCustomDataframe,
+ makeMissingDataframe,
+ makeMixedDataFrame,
+ makeMultiIndex,
+ makeObjectSeries,
+ makePeriodFrame,
+ makePeriodIndex,
+ makePeriodSeries,
+ makeRangeIndex,
+ makeStringIndex,
+ makeStringSeries,
+ makeTimeDataFrame,
+ makeTimedeltaIndex,
+ makeTimeSeries,
+ makeUIntIndex,
+ makeUnicodeIndex,
+ rands,
+ rands_array,
+ randu,
+ randu_array,
+)
+from .network import ( # noqa:F401
+ can_connect,
+ network,
+ optional_args,
+ with_connectivity_check,
+)
+from .roundtrips import ( # noqa:F401
+ round_trip_localpath,
+ round_trip_pathlib,
+ round_trip_pickle,
+)
+
+lzma = _import_lzma()
+
+
+# set testing_mode
+_testing_mode_warnings = (DeprecationWarning, ResourceWarning)
+
+
+def set_testing_mode():
+ # set the testing mode filters
+ testing_mode = os.environ.get("PANDAS_TESTING_MODE", "None")
+ if "deprecate" in testing_mode:
+ warnings.simplefilter("always", _testing_mode_warnings)
+
+
+def reset_testing_mode():
+ # reset the testing mode filters
+ testing_mode = os.environ.get("PANDAS_TESTING_MODE", "None")
+ if "deprecate" in testing_mode:
+ warnings.simplefilter("ignore", _testing_mode_warnings)
+
+
+set_testing_mode()
+
+
+def reset_display_options():
+ """
+ Reset the display options for printing and representing objects.
+ """
+ pd.reset_option("^display.", silent=True)
+
+
+def write_to_compressed(compression, path, data, dest="test"):
+ """
+ Write data to a compressed file.
+
+ Parameters
+ ----------
+ compression : {'gzip', 'bz2', 'zip', 'xz'}
+ The compression type to use.
+ path : str
+ The file path to write the data.
+ data : str
+ The data to write.
+ dest : str, default "test"
+ The destination file (for ZIP only)
+
+ Raises
+ ------
+ ValueError : An invalid compression value was passed in.
+ """
+ if compression == "zip":
+ import zipfile
+
+ compress_method = zipfile.ZipFile
+ elif compression == "gzip":
+ import gzip
+
+ compress_method = gzip.GzipFile
+ elif compression == "bz2":
+ import bz2
+
+ compress_method = bz2.BZ2File
+ elif compression == "xz":
+ compress_method = _get_lzma_file(lzma)
+ else:
+ raise ValueError(f"Unrecognized compression type: {compression}")
+
+ if compression == "zip":
+ mode = "w"
+ args = (dest, data)
+ method = "writestr"
+ else:
+ mode = "wb"
+ args = (data,)
+ method = "write"
+
+ with compress_method(path, mode=mode) as f:
+ getattr(f, method)(*args)
+
+
+def randbool(size=(), p: float = 0.5):
+ return rand(*size) <= p
+
+
+# -----------------------------------------------------------------------------
+# Comparators
+
+
+def equalContents(arr1, arr2) -> bool:
+ """
+ Checks if the set of unique elements of arr1 and arr2 are equivalent.
+ """
+ return frozenset(arr1) == frozenset(arr2)
+
+
+def isiterable(obj):
+ return hasattr(obj, "__iter__")
+
+
+def box_expected(expected, box_cls, transpose=True):
+ """
+ Helper function to wrap the expected output of a test in a given box_class.
+
+ Parameters
+ ----------
+ expected : np.ndarray, Index, Series
+ box_cls : {Index, Series, DataFrame}
+
+ Returns
+ -------
+ subclass of box_cls
+ """
+ if box_cls is pd.Index:
+ expected = pd.Index(expected)
+ elif box_cls is pd.Series:
+ expected = pd.Series(expected)
+ elif box_cls is pd.DataFrame:
+ expected = pd.Series(expected).to_frame()
+ if transpose:
+ # for vector operations, we we need a DataFrame to be a single-row,
+ # not a single-column, in order to operate against non-DataFrame
+ # vectors of the same length.
+ expected = expected.T
+ elif box_cls is PeriodArray:
+ # the PeriodArray constructor is not as flexible as period_array
+ expected = period_array(expected)
+ elif box_cls is DatetimeArray:
+ expected = DatetimeArray(expected)
+ elif box_cls is TimedeltaArray:
+ expected = TimedeltaArray(expected)
+ elif box_cls is np.ndarray:
+ expected = np.array(expected)
+ elif box_cls is to_array:
+ expected = to_array(expected)
+ else:
+ raise NotImplementedError(box_cls)
+ return expected
+
+
+def to_array(obj):
+ # temporary implementation until we get pd.array in place
+ if is_period_dtype(obj):
+ return period_array(obj)
+ elif is_datetime64_dtype(obj) or is_datetime64tz_dtype(obj):
+ return DatetimeArray._from_sequence(obj)
+ elif is_timedelta64_dtype(obj):
+ return TimedeltaArray._from_sequence(obj)
+ else:
+ return np.array(obj)
+
+
+# -----------------------------------------------------------------------------
+# Others
+
+
+def all_index_generator(k=10):
+ """
+ Generator which can be iterated over to get instances of all the various
+ index classes.
+
+ Parameters
+ ----------
+ k: length of each of the index instances
+ """
+ all_make_index_funcs = [
+ makeIntIndex,
+ makeFloatIndex,
+ makeStringIndex,
+ makeUnicodeIndex,
+ makeDateIndex,
+ makePeriodIndex,
+ makeTimedeltaIndex,
+ makeBoolIndex,
+ makeRangeIndex,
+ makeIntervalIndex,
+ makeCategoricalIndex,
+ ]
+ for make_index_func in all_make_index_funcs:
+ yield make_index_func(k=k)
+
+
+def index_subclass_makers_generator():
+ make_index_funcs = [
+ makeDateIndex,
+ makePeriodIndex,
+ makeTimedeltaIndex,
+ makeRangeIndex,
+ makeIntervalIndex,
+ makeCategoricalIndex,
+ makeMultiIndex,
+ ]
+ for make_index_func in make_index_funcs:
+ yield make_index_func
+
+
+def all_timeseries_index_generator(k=10):
+ """
+ Generator which can be iterated over to get instances of all the classes
+ which represent time-series.
+
+ Parameters
+ ----------
+ k: length of each of the index instances
+ """
+ make_index_funcs = [makeDateIndex, makePeriodIndex, makeTimedeltaIndex]
+ for make_index_func in make_index_funcs:
+ yield make_index_func(k=k)
+
+
+def test_parallel(num_threads=2, kwargs_list=None):
+ """
+ Decorator to run the same function multiple times in parallel.
+
+ Parameters
+ ----------
+ num_threads : int, optional
+ The number of times the function is run in parallel.
+ kwargs_list : list of dicts, optional
+ The list of kwargs to update original
+ function kwargs on different threads.
+
+ Notes
+ -----
+ This decorator does not pass the return value of the decorated function.
+
+ Original from scikit-image:
+
+ https://github.com/scikit-image/scikit-image/pull/1519
+
+ """
+ assert num_threads > 0
+ has_kwargs_list = kwargs_list is not None
+ if has_kwargs_list:
+ assert len(kwargs_list) == num_threads
+ import threading
+
+ def wrapper(func):
+ @wraps(func)
+ def inner(*args, **kwargs):
+ if has_kwargs_list:
+ update_kwargs = lambda i: dict(kwargs, **kwargs_list[i])
+ else:
+ update_kwargs = lambda i: kwargs
+ threads = []
+ for i in range(num_threads):
+ updated_kwargs = update_kwargs(i)
+ thread = threading.Thread(target=func, args=args, kwargs=updated_kwargs)
+ threads.append(thread)
+ for thread in threads:
+ thread.start()
+ for thread in threads:
+ thread.join()
+
+ return inner
+
+ return wrapper
+
+
+class SubclassedSeries(Series):
+ _metadata = ["testattr", "name"]
+
+ @property
+ def _constructor(self):
+ return SubclassedSeries
+
+ @property
+ def _constructor_expanddim(self):
+ return SubclassedDataFrame
+
+
+class SubclassedDataFrame(DataFrame):
+ _metadata = ["testattr"]
+
+ @property
+ def _constructor(self):
+ return SubclassedDataFrame
+
+ @property
+ def _constructor_sliced(self):
+ return SubclassedSeries
+
+
+class SubclassedCategorical(Categorical):
+ @property
+ def _constructor(self):
+ return SubclassedCategorical
+
+
+def _make_skipna_wrapper(alternative, skipna_alternative=None):
+ """
+ Create a function for calling on an array.
+
+ Parameters
+ ----------
+ alternative : function
+ The function to be called on the array with no NaNs.
+ Only used when 'skipna_alternative' is None.
+ skipna_alternative : function
+ The function to be called on the original array
+
+ Returns
+ -------
+ function
+ """
+ if skipna_alternative:
+
+ def skipna_wrapper(x):
+ return skipna_alternative(x.values)
+
+ else:
+
+ def skipna_wrapper(x):
+ nona = x.dropna()
+ if len(nona) == 0:
+ return np.nan
+ return alternative(nona)
+
+ return skipna_wrapper
+
+
+def convert_rows_list_to_csv_str(rows_list: List[str]):
+ """
+ Convert list of CSV rows to single CSV-formatted string for current OS.
+
+ This method is used for creating expected value of to_csv() method.
+
+ Parameters
+ ----------
+ rows_list : List[str]
+ Each element represents the row of csv.
+
+ Returns
+ -------
+ str
+ Expected output of to_csv() in current OS.
+ """
+ sep = os.linesep
+ expected = sep.join(rows_list) + sep
+ return expected
+
+
+def external_error_raised(
+ expected_exception: Type[Exception],
+) -> Callable[[Type[Exception], None], None]:
+ """
+ Helper function to mark pytest.raises that have an external error message.
+
+ Parameters
+ ----------
+ expected_exception : Exception
+ Expected error to raise.
+
+ Returns
+ -------
+ Callable
+ Regular `pytest.raises` function with `match` equal to `None`.
+ """
+ import pytest
+
+ return pytest.raises(expected_exception, match=None)
diff --git a/pandas/_testing/asserters.py b/pandas/_testing/asserters.py
new file mode 100644
index 0000000000000..726b7bff9527a
--- /dev/null
+++ b/pandas/_testing/asserters.py
@@ -0,0 +1,1073 @@
+"""
+Helpers for making specific test assertions.
+"""
+from typing import Union, cast
+
+import numpy as np
+
+import pandas._libs.testing as _testing
+
+from pandas.core.dtypes.common import (
+ is_bool,
+ is_categorical_dtype,
+ is_datetime64tz_dtype,
+ is_extension_array_dtype,
+ is_interval_dtype,
+ is_number,
+ needs_i8_conversion,
+)
+from pandas.core.dtypes.missing import array_equivalent
+
+import pandas as pd
+from pandas import Categorical, DataFrame, Index, MultiIndex, Series
+from pandas.core.algorithms import take_1d
+from pandas.core.arrays import (
+ DatetimeArray,
+ ExtensionArray,
+ IntervalArray,
+ PeriodArray,
+ TimedeltaArray,
+)
+
+from pandas.io.formats.printing import pprint_thing
+
+
+def _check_isinstance(left, right, cls):
+ """
+ Helper method for our assert_* methods that ensures that
+ the two objects being compared have the right type before
+ proceeding with the comparison.
+
+ Parameters
+ ----------
+ left : The first object being compared.
+ right : The second object being compared.
+ cls : The class type to check against.
+
+ Raises
+ ------
+ AssertionError : Either `left` or `right` is not an instance of `cls`.
+ """
+ cls_name = cls.__name__
+
+ if not isinstance(left, cls):
+ raise AssertionError(
+ f"{cls_name} Expected type {cls}, found {type(left)} instead"
+ )
+ if not isinstance(right, cls):
+ raise AssertionError(
+ f"{cls_name} Expected type {cls}, found {type(right)} instead"
+ )
+
+
+def assert_almost_equal(
+ left,
+ right,
+ check_dtype: Union[bool, str] = "equiv",
+ check_less_precise: Union[bool, int] = False,
+ **kwargs,
+):
+ """
+ Check that the left and right objects are approximately equal.
+
+ By approximately equal, we refer to objects that are numbers or that
+ contain numbers which may be equivalent to specific levels of precision.
+
+ Parameters
+ ----------
+ left : object
+ right : object
+ check_dtype : bool or {'equiv'}, default 'equiv'
+ Check dtype if both a and b are the same type. If 'equiv' is passed in,
+ then `RangeIndex` and `Int64Index` are also considered equivalent
+ when doing type checking.
+ check_less_precise : bool or int, default False
+ Specify comparison precision. 5 digits (False) or 3 digits (True)
+ after decimal points are compared. If int, then specify the number
+ of digits to compare.
+
+ When comparing two numbers, if the first number has magnitude less
+ than 1e-5, we compare the two numbers directly and check whether
+ they are equivalent within the specified precision. Otherwise, we
+ compare the **ratio** of the second number to the first number and
+ check whether it is equivalent to 1 within the specified precision.
+ """
+ if isinstance(left, pd.Index):
+ assert_index_equal(
+ left,
+ right,
+ check_exact=False,
+ exact=check_dtype,
+ check_less_precise=check_less_precise,
+ **kwargs,
+ )
+
+ elif isinstance(left, pd.Series):
+ assert_series_equal(
+ left,
+ right,
+ check_exact=False,
+ check_dtype=check_dtype,
+ check_less_precise=check_less_precise,
+ **kwargs,
+ )
+
+ elif isinstance(left, pd.DataFrame):
+ assert_frame_equal(
+ left,
+ right,
+ check_exact=False,
+ check_dtype=check_dtype,
+ check_less_precise=check_less_precise,
+ **kwargs,
+ )
+
+ else:
+ # Other sequences.
+ if check_dtype:
+ if is_number(left) and is_number(right):
+ # Do not compare numeric classes, like np.float64 and float.
+ pass
+ elif is_bool(left) and is_bool(right):
+ # Do not compare bool classes, like np.bool_ and bool.
+ pass
+ else:
+ if isinstance(left, np.ndarray) or isinstance(right, np.ndarray):
+ obj = "numpy array"
+ else:
+ obj = "Input"
+ assert_class_equal(left, right, obj=obj)
+ _testing.assert_almost_equal(
+ left,
+ right,
+ check_dtype=check_dtype,
+ check_less_precise=check_less_precise,
+ **kwargs,
+ )
+
+
+def assert_dict_equal(left, right, compare_keys: bool = True):
+
+ _check_isinstance(left, right, dict)
+ _testing.assert_dict_equal(left, right, compare_keys=compare_keys)
+
+
+def assert_index_equal(
+ left: Index,
+ right: Index,
+ exact: Union[bool, str] = "equiv",
+ check_names: bool = True,
+ check_less_precise: Union[bool, int] = False,
+ check_exact: bool = True,
+ check_categorical: bool = True,
+ obj: str = "Index",
+) -> None:
+ """
+ Check that left and right Index are equal.
+
+ Parameters
+ ----------
+ left : Index
+ right : Index
+ exact : bool or {'equiv'}, default 'equiv'
+ Whether to check the Index class, dtype and inferred_type
+ are identical. If 'equiv', then RangeIndex can be substituted for
+ Int64Index as well.
+ check_names : bool, default True
+ Whether to check the names attribute.
+ check_less_precise : bool or int, default False
+ Specify comparison precision. Only used when check_exact is False.
+ 5 digits (False) or 3 digits (True) after decimal points are compared.
+ If int, then specify the digits to compare.
+ check_exact : bool, default True
+ Whether to compare number exactly.
+ check_categorical : bool, default True
+ Whether to compare internal Categorical exactly.
+ obj : str, default 'Index'
+ Specify object name being compared, internally used to show appropriate
+ assertion message.
+ """
+ __tracebackhide__ = True
+
+ def _check_types(l, r, obj="Index"):
+ if exact:
+ assert_class_equal(l, r, exact=exact, obj=obj)
+
+ # Skip exact dtype checking when `check_categorical` is False
+ if check_categorical:
+ assert_attr_equal("dtype", l, r, obj=obj)
+
+ # allow string-like to have different inferred_types
+ if l.inferred_type in ("string"):
+ assert r.inferred_type in ("string")
+ else:
+ assert_attr_equal("inferred_type", l, r, obj=obj)
+
+ def _get_ilevel_values(index, level):
+ # accept level number only
+ unique = index.levels[level]
+ level_codes = index.codes[level]
+ filled = take_1d(unique._values, level_codes, fill_value=unique._na_value)
+ values = unique._shallow_copy(filled, name=index.names[level])
+ return values
+
+ # instance validation
+ _check_isinstance(left, right, Index)
+
+ # class / dtype comparison
+ _check_types(left, right, obj=obj)
+
+ # level comparison
+ if left.nlevels != right.nlevels:
+ msg1 = f"{obj} levels are different"
+ msg2 = f"{left.nlevels}, {left}"
+ msg3 = f"{right.nlevels}, {right}"
+ raise_assert_detail(obj, msg1, msg2, msg3)
+
+ # length comparison
+ if len(left) != len(right):
+ msg1 = f"{obj} length are different"
+ msg2 = f"{len(left)}, {left}"
+ msg3 = f"{len(right)}, {right}"
+ raise_assert_detail(obj, msg1, msg2, msg3)
+
+ # MultiIndex special comparison for little-friendly error messages
+ if left.nlevels > 1:
+ left = cast(MultiIndex, left)
+ right = cast(MultiIndex, right)
+
+ for level in range(left.nlevels):
+ # cannot use get_level_values here because it can change dtype
+ llevel = _get_ilevel_values(left, level)
+ rlevel = _get_ilevel_values(right, level)
+
+ lobj = f"MultiIndex level [{level}]"
+ assert_index_equal(
+ llevel,
+ rlevel,
+ exact=exact,
+ check_names=check_names,
+ check_less_precise=check_less_precise,
+ check_exact=check_exact,
+ obj=lobj,
+ )
+ # get_level_values may change dtype
+ _check_types(left.levels[level], right.levels[level], obj=obj)
+
+ # skip exact index checking when `check_categorical` is False
+ if check_exact and check_categorical:
+ if not left.equals(right):
+ diff = np.sum((left.values != right.values).astype(int)) * 100.0 / len(left)
+ msg = f"{obj} values are different ({np.round(diff, 5)} %)"
+ raise_assert_detail(obj, msg, left, right)
+ else:
+ _testing.assert_almost_equal(
+ left.values,
+ right.values,
+ check_less_precise=check_less_precise,
+ check_dtype=exact,
+ obj=obj,
+ lobj=left,
+ robj=right,
+ )
+
+ # metadata comparison
+ if check_names:
+ assert_attr_equal("names", left, right, obj=obj)
+ if isinstance(left, pd.PeriodIndex) or isinstance(right, pd.PeriodIndex):
+ assert_attr_equal("freq", left, right, obj=obj)
+ if isinstance(left, pd.IntervalIndex) or isinstance(right, pd.IntervalIndex):
+ assert_interval_array_equal(left.values, right.values)
+
+ if check_categorical:
+ if is_categorical_dtype(left) or is_categorical_dtype(right):
+ assert_categorical_equal(left.values, right.values, obj=f"{obj} category")
+
+
+def assert_class_equal(left, right, exact: Union[bool, str] = True, obj="Input"):
+ """
+ Checks classes are equal.
+ """
+ __tracebackhide__ = True
+
+ def repr_class(x):
+ if isinstance(x, Index):
+ # return Index as it is to include values in the error message
+ return x
+
+ try:
+ return type(x).__name__
+ except AttributeError:
+ return repr(type(x))
+
+ if exact == "equiv":
+ if type(left) != type(right):
+ # allow equivalence of Int64Index/RangeIndex
+ types = {type(left).__name__, type(right).__name__}
+ if len(types - {"Int64Index", "RangeIndex"}):
+ msg = f"{obj} classes are not equivalent"
+ raise_assert_detail(obj, msg, repr_class(left), repr_class(right))
+ elif exact:
+ if type(left) != type(right):
+ msg = f"{obj} classes are different"
+ raise_assert_detail(obj, msg, repr_class(left), repr_class(right))
+
+
+def assert_attr_equal(attr, left, right, obj="Attributes"):
+ """
+ checks attributes are equal. Both objects must have attribute.
+
+ Parameters
+ ----------
+ attr : str
+ Attribute name being compared.
+ left : object
+ right : object
+ obj : str, default 'Attributes'
+ Specify object name being compared, internally used to show appropriate
+ assertion message
+ """
+ __tracebackhide__ = True
+
+ left_attr = getattr(left, attr)
+ right_attr = getattr(right, attr)
+
+ if left_attr is right_attr:
+ return True
+ elif (
+ is_number(left_attr)
+ and np.isnan(left_attr)
+ and is_number(right_attr)
+ and np.isnan(right_attr)
+ ):
+ # np.nan
+ return True
+
+ try:
+ result = left_attr == right_attr
+ except TypeError:
+ # datetimetz on rhs may raise TypeError
+ result = False
+ if not isinstance(result, bool):
+ result = result.all()
+
+ if result:
+ return True
+ else:
+ msg = f'Attribute "{attr}" are different'
+ raise_assert_detail(obj, msg, left_attr, right_attr)
+
+
+def assert_categorical_equal(
+ left, right, check_dtype=True, check_category_order=True, obj="Categorical"
+):
+ """
+ Test that Categoricals are equivalent.
+
+ Parameters
+ ----------
+ left : Categorical
+ right : Categorical
+ check_dtype : bool, default True
+ Check that integer dtype of the codes are the same
+ check_category_order : bool, default True
+ Whether the order of the categories should be compared, which
+ implies identical integer codes. If False, only the resulting
+ values are compared. The ordered attribute is
+ checked regardless.
+ obj : str, default 'Categorical'
+ Specify object name being compared, internally used to show appropriate
+ assertion message
+ """
+ _check_isinstance(left, right, Categorical)
+
+ if check_category_order:
+ assert_index_equal(left.categories, right.categories, obj=f"{obj}.categories")
+ assert_numpy_array_equal(
+ left.codes, right.codes, check_dtype=check_dtype, obj=f"{obj}.codes",
+ )
+ else:
+ assert_index_equal(
+ left.categories.sort_values(),
+ right.categories.sort_values(),
+ obj=f"{obj}.categories",
+ )
+ assert_index_equal(
+ left.categories.take(left.codes),
+ right.categories.take(right.codes),
+ obj=f"{obj}.values",
+ )
+
+ assert_attr_equal("ordered", left, right, obj=obj)
+
+
+def assert_interval_array_equal(left, right, exact="equiv", obj="IntervalArray"):
+ """
+ Test that two IntervalArrays are equivalent.
+
+ Parameters
+ ----------
+ left, right : IntervalArray
+ The IntervalArrays to compare.
+ exact : bool or {'equiv'}, default 'equiv'
+ Whether to check the Index class, dtype and inferred_type
+ are identical. If 'equiv', then RangeIndex can be substituted for
+ Int64Index as well.
+ obj : str, default 'IntervalArray'
+ Specify object name being compared, internally used to show appropriate
+ assertion message
+ """
+ _check_isinstance(left, right, IntervalArray)
+
+ assert_index_equal(left.left, right.left, exact=exact, obj=f"{obj}.left")
+ assert_index_equal(left.right, right.right, exact=exact, obj=f"{obj}.left")
+ assert_attr_equal("closed", left, right, obj=obj)
+
+
+def assert_period_array_equal(left, right, obj="PeriodArray"):
+ _check_isinstance(left, right, PeriodArray)
+
+ assert_numpy_array_equal(left._data, right._data, obj=f"{obj}.values")
+ assert_attr_equal("freq", left, right, obj=obj)
+
+
+def assert_datetime_array_equal(left, right, obj="DatetimeArray"):
+ __tracebackhide__ = True
+ _check_isinstance(left, right, DatetimeArray)
+
+ assert_numpy_array_equal(left._data, right._data, obj=f"{obj}._data")
+ assert_attr_equal("freq", left, right, obj=obj)
+ assert_attr_equal("tz", left, right, obj=obj)
+
+
+def assert_timedelta_array_equal(left, right, obj="TimedeltaArray"):
+ __tracebackhide__ = True
+ _check_isinstance(left, right, TimedeltaArray)
+ assert_numpy_array_equal(left._data, right._data, obj=f"{obj}._data")
+ assert_attr_equal("freq", left, right, obj=obj)
+
+
+def assert_sp_array_equal(
+ left,
+ right,
+ check_dtype=True,
+ check_kind=True,
+ check_fill_value=True,
+ consolidate_block_indices=False,
+):
+ """
+ Check that the left and right SparseArray are equal.
+
+ Parameters
+ ----------
+ left : SparseArray
+ right : SparseArray
+ check_dtype : bool, default True
+ Whether to check the data dtype is identical.
+ check_kind : bool, default True
+ Whether to just the kind of the sparse index for each column.
+ check_fill_value : bool, default True
+ Whether to check that left.fill_value matches right.fill_value
+ consolidate_block_indices : bool, default False
+ Whether to consolidate contiguous blocks for sparse arrays with
+ a BlockIndex. Some operations, e.g. concat, will end up with
+ block indices that could be consolidated. Setting this to true will
+ create a new BlockIndex for that array, with consolidated
+ block indices.
+ """
+ _check_isinstance(left, right, pd.arrays.SparseArray)
+
+ assert_numpy_array_equal(left.sp_values, right.sp_values, check_dtype=check_dtype)
+
+ # SparseIndex comparison
+ assert isinstance(left.sp_index, pd._libs.sparse.SparseIndex)
+ assert isinstance(right.sp_index, pd._libs.sparse.SparseIndex)
+
+ if not check_kind:
+ left_index = left.sp_index.to_block_index()
+ right_index = right.sp_index.to_block_index()
+ else:
+ left_index = left.sp_index
+ right_index = right.sp_index
+
+ if consolidate_block_indices and left.kind == "block":
+ # we'll probably remove this hack...
+ left_index = left_index.to_int_index().to_block_index()
+ right_index = right_index.to_int_index().to_block_index()
+
+ if not left_index.equals(right_index):
+ raise_assert_detail(
+ "SparseArray.index", "index are not equal", left_index, right_index
+ )
+ else:
+ # Just ensure a
+ pass
+
+ if check_fill_value:
+ assert_attr_equal("fill_value", left, right)
+ if check_dtype:
+ assert_attr_equal("dtype", left, right)
+ assert_numpy_array_equal(left.to_dense(), right.to_dense(), check_dtype=check_dtype)
+
+
+def raise_assert_detail(obj, message, left, right, diff=None):
+ __tracebackhide__ = True
+
+ if isinstance(left, np.ndarray):
+ left = pprint_thing(left)
+ elif is_categorical_dtype(left):
+ left = repr(left)
+
+ if isinstance(right, np.ndarray):
+ right = pprint_thing(right)
+ elif is_categorical_dtype(right):
+ right = repr(right)
+
+ msg = f"""{obj} are different
+
+{message}
+[left]: {left}
+[right]: {right}"""
+
+ if diff is not None:
+ msg += f"\n[diff]: {diff}"
+
+ raise AssertionError(msg)
+
+
+def assert_numpy_array_equal(
+ left,
+ right,
+ strict_nan=False,
+ check_dtype=True,
+ err_msg=None,
+ check_same=None,
+ obj="numpy array",
+):
+ """
+ Check that 'np.ndarray' is equivalent.
+
+ Parameters
+ ----------
+ left, right : numpy.ndarray or iterable
+ The two arrays to be compared.
+ strict_nan : bool, default False
+ If True, consider NaN and None to be different.
+ check_dtype : bool, default True
+ Check dtype if both a and b are np.ndarray.
+ err_msg : str, default None
+ If provided, used as assertion message.
+ check_same : None|'copy'|'same', default None
+ Ensure left and right refer/do not refer to the same memory area.
+ obj : str, default 'numpy array'
+ Specify object name being compared, internally used to show appropriate
+ assertion message.
+ """
+ __tracebackhide__ = True
+
+ # instance validation
+ # Show a detailed error message when classes are different
+ assert_class_equal(left, right, obj=obj)
+ # both classes must be an np.ndarray
+ _check_isinstance(left, right, np.ndarray)
+
+ def _get_base(obj):
+ return obj.base if getattr(obj, "base", None) is not None else obj
+
+ left_base = _get_base(left)
+ right_base = _get_base(right)
+
+ if check_same == "same":
+ if left_base is not right_base:
+ raise AssertionError(f"{repr(left_base)} is not {repr(right_base)}")
+ elif check_same == "copy":
+ if left_base is right_base:
+ raise AssertionError(f"{repr(left_base)} is {repr(right_base)}")
+
+ def _raise(left, right, err_msg):
+ if err_msg is None:
+ if left.shape != right.shape:
+ raise_assert_detail(
+ obj, f"{obj} shapes are different", left.shape, right.shape,
+ )
+
+ diff = 0
+ for l, r in zip(left, right):
+ # count up differences
+ if not array_equivalent(l, r, strict_nan=strict_nan):
+ diff += 1
+
+ diff = diff * 100.0 / left.size
+ msg = f"{obj} values are different ({np.round(diff, 5)} %)"
+ raise_assert_detail(obj, msg, left, right)
+
+ raise AssertionError(err_msg)
+
+ # compare shape and values
+ if not array_equivalent(left, right, strict_nan=strict_nan):
+ _raise(left, right, err_msg)
+
+ if check_dtype:
+ if isinstance(left, np.ndarray) and isinstance(right, np.ndarray):
+ assert_attr_equal("dtype", left, right, obj=obj)
+
+
+def assert_extension_array_equal(
+ left, right, check_dtype=True, check_less_precise=False, check_exact=False
+):
+ """
+ Check that left and right ExtensionArrays are equal.
+
+ Parameters
+ ----------
+ left, right : ExtensionArray
+ The two arrays to compare.
+ check_dtype : bool, default True
+ Whether to check if the ExtensionArray dtypes are identical.
+ check_less_precise : bool or int, default False
+ Specify comparison precision. Only used when check_exact is False.
+ 5 digits (False) or 3 digits (True) after decimal points are compared.
+ If int, then specify the digits to compare.
+ check_exact : bool, default False
+ Whether to compare number exactly.
+
+ Notes
+ -----
+ Missing values are checked separately from valid values.
+ A mask of missing values is computed for each and checked to match.
+ The remaining all-valid values are cast to object dtype and checked.
+ """
+ assert isinstance(left, ExtensionArray), "left is not an ExtensionArray"
+ assert isinstance(right, ExtensionArray), "right is not an ExtensionArray"
+ if check_dtype:
+ assert_attr_equal("dtype", left, right, obj="ExtensionArray")
+
+ if hasattr(left, "asi8") and type(right) == type(left):
+ # Avoid slow object-dtype comparisons
+ assert_numpy_array_equal(left.asi8, right.asi8) # type: ignore
+ return
+
+ left_na = np.asarray(left.isna())
+ right_na = np.asarray(right.isna())
+ assert_numpy_array_equal(left_na, right_na, obj="ExtensionArray NA mask")
+
+ left_valid = np.asarray(left[~left_na].astype(object))
+ right_valid = np.asarray(right[~right_na].astype(object))
+ if check_exact:
+ assert_numpy_array_equal(left_valid, right_valid, obj="ExtensionArray")
+ else:
+ _testing.assert_almost_equal(
+ left_valid,
+ right_valid,
+ check_dtype=check_dtype,
+ check_less_precise=check_less_precise,
+ obj="ExtensionArray",
+ )
+
+
+# This could be refactored to use the NDFrame.equals method
+def assert_series_equal(
+ left,
+ right,
+ check_dtype=True,
+ check_index_type="equiv",
+ check_series_type=True,
+ check_less_precise=False,
+ check_names=True,
+ check_exact=False,
+ check_datetimelike_compat=False,
+ check_categorical=True,
+ check_category_order=True,
+ obj="Series",
+):
+ """
+ Check that left and right Series are equal.
+
+ Parameters
+ ----------
+ left : Series
+ right : Series
+ check_dtype : bool, default True
+ Whether to check the Series dtype is identical.
+ check_index_type : bool or {'equiv'}, default 'equiv'
+ Whether to check the Index class, dtype and inferred_type
+ are identical.
+ check_series_type : bool, default True
+ Whether to check the Series class is identical.
+ check_less_precise : bool or int, default False
+ Specify comparison precision. Only used when check_exact is False.
+ 5 digits (False) or 3 digits (True) after decimal points are compared.
+ If int, then specify the digits to compare.
+
+ When comparing two numbers, if the first number has magnitude less
+ than 1e-5, we compare the two numbers directly and check whether
+ they are equivalent within the specified precision. Otherwise, we
+ compare the **ratio** of the second number to the first number and
+ check whether it is equivalent to 1 within the specified precision.
+ check_names : bool, default True
+ Whether to check the Series and Index names attribute.
+ check_exact : bool, default False
+ Whether to compare number exactly.
+ check_datetimelike_compat : bool, default False
+ Compare datetime-like which is comparable ignoring dtype.
+ check_categorical : bool, default True
+ Whether to compare internal Categorical exactly.
+ check_category_order : bool, default True
+ Whether to compare category order of internal Categoricals
+
+ .. versionadded:: 1.0.2
+ obj : str, default 'Series'
+ Specify object name being compared, internally used to show appropriate
+ assertion message.
+ """
+ __tracebackhide__ = True
+
+ # instance validation
+ _check_isinstance(left, right, Series)
+
+ if check_series_type:
+ # ToDo: There are some tests using rhs is sparse
+ # lhs is dense. Should use assert_class_equal in future
+ assert isinstance(left, type(right))
+ # assert_class_equal(left, right, obj=obj)
+
+ # length comparison
+ if len(left) != len(right):
+ msg1 = f"{len(left)}, {left.index}"
+ msg2 = f"{len(right)}, {right.index}"
+ raise_assert_detail(obj, "Series length are different", msg1, msg2)
+
+ # index comparison
+ assert_index_equal(
+ left.index,
+ right.index,
+ exact=check_index_type,
+ check_names=check_names,
+ check_less_precise=check_less_precise,
+ check_exact=check_exact,
+ check_categorical=check_categorical,
+ obj=f"{obj}.index",
+ )
+
+ if check_dtype:
+ # We want to skip exact dtype checking when `check_categorical`
+ # is False. We'll still raise if only one is a `Categorical`,
+ # regardless of `check_categorical`
+ if (
+ is_categorical_dtype(left)
+ and is_categorical_dtype(right)
+ and not check_categorical
+ ):
+ pass
+ else:
+ assert_attr_equal("dtype", left, right, obj=f"Attributes of {obj}")
+
+ if check_exact:
+ assert_numpy_array_equal(
+ left._internal_get_values(),
+ right._internal_get_values(),
+ check_dtype=check_dtype,
+ obj=str(obj),
+ )
+ elif check_datetimelike_compat:
+ # we want to check only if we have compat dtypes
+ # e.g. integer and M|m are NOT compat, but we can simply check
+ # the values in that case
+ if needs_i8_conversion(left) or needs_i8_conversion(right):
+
+ # datetimelike may have different objects (e.g. datetime.datetime
+ # vs Timestamp) but will compare equal
+ if not Index(left.values).equals(Index(right.values)):
+ msg = (
+ f"[datetimelike_compat=True] {left.values} "
+ f"is not equal to {right.values}."
+ )
+ raise AssertionError(msg)
+ else:
+ assert_numpy_array_equal(
+ left._internal_get_values(),
+ right._internal_get_values(),
+ check_dtype=check_dtype,
+ )
+ elif is_interval_dtype(left) or is_interval_dtype(right):
+ assert_interval_array_equal(left.array, right.array)
+ elif is_extension_array_dtype(left.dtype) and is_datetime64tz_dtype(left.dtype):
+ # .values is an ndarray, but ._values is the ExtensionArray.
+ # TODO: Use .array
+ assert is_extension_array_dtype(right.dtype)
+ assert_extension_array_equal(left._values, right._values)
+ elif (
+ is_extension_array_dtype(left)
+ and not is_categorical_dtype(left)
+ and is_extension_array_dtype(right)
+ and not is_categorical_dtype(right)
+ ):
+ assert_extension_array_equal(left.array, right.array)
+ else:
+ _testing.assert_almost_equal(
+ left._internal_get_values(),
+ right._internal_get_values(),
+ check_less_precise=check_less_precise,
+ check_dtype=check_dtype,
+ obj=str(obj),
+ )
+
+ # metadata comparison
+ if check_names:
+ assert_attr_equal("name", left, right, obj=obj)
+
+ if check_categorical:
+ if is_categorical_dtype(left) or is_categorical_dtype(right):
+ assert_categorical_equal(
+ left.values,
+ right.values,
+ obj=f"{obj} category",
+ check_category_order=check_category_order,
+ )
+
+
+# This could be refactored to use the NDFrame.equals method
+def assert_frame_equal(
+ left,
+ right,
+ check_dtype=True,
+ check_index_type="equiv",
+ check_column_type="equiv",
+ check_frame_type=True,
+ check_less_precise=False,
+ check_names=True,
+ by_blocks=False,
+ check_exact=False,
+ check_datetimelike_compat=False,
+ check_categorical=True,
+ check_like=False,
+ obj="DataFrame",
+):
+ """
+ Check that left and right DataFrame are equal.
+
+ This function is intended to compare two DataFrames and output any
+ differences. Is is mostly intended for use in unit tests.
+ Additional parameters allow varying the strictness of the
+ equality checks performed.
+
+ Parameters
+ ----------
+ left : DataFrame
+ First DataFrame to compare.
+ right : DataFrame
+ Second DataFrame to compare.
+ check_dtype : bool, default True
+ Whether to check the DataFrame dtype is identical.
+ check_index_type : bool or {'equiv'}, default 'equiv'
+ Whether to check the Index class, dtype and inferred_type
+ are identical.
+ check_column_type : bool or {'equiv'}, default 'equiv'
+ Whether to check the columns class, dtype and inferred_type
+ are identical. Is passed as the ``exact`` argument of
+ :func:`assert_index_equal`.
+ check_frame_type : bool, default True
+ Whether to check the DataFrame class is identical.
+ check_less_precise : bool or int, default False
+ Specify comparison precision. Only used when check_exact is False.
+ 5 digits (False) or 3 digits (True) after decimal points are compared.
+ If int, then specify the digits to compare.
+
+ When comparing two numbers, if the first number has magnitude less
+ than 1e-5, we compare the two numbers directly and check whether
+ they are equivalent within the specified precision. Otherwise, we
+ compare the **ratio** of the second number to the first number and
+ check whether it is equivalent to 1 within the specified precision.
+ check_names : bool, default True
+ Whether to check that the `names` attribute for both the `index`
+ and `column` attributes of the DataFrame is identical.
+ by_blocks : bool, default False
+ Specify how to compare internal data. If False, compare by columns.
+ If True, compare by blocks.
+ check_exact : bool, default False
+ Whether to compare number exactly.
+ check_datetimelike_compat : bool, default False
+ Compare datetime-like which is comparable ignoring dtype.
+ check_categorical : bool, default True
+ Whether to compare internal Categorical exactly.
+ check_like : bool, default False
+ If True, ignore the order of index & columns.
+ Note: index labels must match their respective rows
+ (same as in columns) - same labels must be with the same data.
+ obj : str, default 'DataFrame'
+ Specify object name being compared, internally used to show appropriate
+ assertion message.
+
+ See Also
+ --------
+ assert_series_equal : Equivalent method for asserting Series equality.
+ DataFrame.equals : Check DataFrame equality.
+
+ Examples
+ --------
+ This example shows comparing two DataFrames that are equal
+ but with columns of differing dtypes.
+
+ >>> from pandas._testing import assert_frame_equal
+ >>> df1 = pd.DataFrame({'a': [1, 2], 'b': [3, 4]})
+ >>> df2 = pd.DataFrame({'a': [1, 2], 'b': [3.0, 4.0]})
+
+ df1 equals itself.
+
+ >>> assert_frame_equal(df1, df1)
+
+ df1 differs from df2 as column 'b' is of a different type.
+
+ >>> assert_frame_equal(df1, df2)
+ Traceback (most recent call last):
+ ...
+ AssertionError: Attributes of DataFrame.iloc[:, 1] (column name="b") are different
+
+ Attribute "dtype" are different
+ [left]: int64
+ [right]: float64
+
+ Ignore differing dtypes in columns with check_dtype.
+
+ >>> assert_frame_equal(df1, df2, check_dtype=False)
+ """
+ __tracebackhide__ = True
+
+ # instance validation
+ _check_isinstance(left, right, DataFrame)
+
+ if check_frame_type:
+ assert isinstance(left, type(right))
+ # assert_class_equal(left, right, obj=obj)
+
+ # shape comparison
+ if left.shape != right.shape:
+ raise_assert_detail(
+ obj, f"{obj} shape mismatch", f"{repr(left.shape)}", f"{repr(right.shape)}",
+ )
+
+ if check_like:
+ left, right = left.reindex_like(right), right
+
+ # index comparison
+ assert_index_equal(
+ left.index,
+ right.index,
+ exact=check_index_type,
+ check_names=check_names,
+ check_less_precise=check_less_precise,
+ check_exact=check_exact,
+ check_categorical=check_categorical,
+ obj=f"{obj}.index",
+ )
+
+ # column comparison
+ assert_index_equal(
+ left.columns,
+ right.columns,
+ exact=check_column_type,
+ check_names=check_names,
+ check_less_precise=check_less_precise,
+ check_exact=check_exact,
+ check_categorical=check_categorical,
+ obj=f"{obj}.columns",
+ )
+
+ # compare by blocks
+ if by_blocks:
+ rblocks = right._to_dict_of_blocks()
+ lblocks = left._to_dict_of_blocks()
+ for dtype in list(set(list(lblocks.keys()) + list(rblocks.keys()))):
+ assert dtype in lblocks
+ assert dtype in rblocks
+ assert_frame_equal(
+ lblocks[dtype], rblocks[dtype], check_dtype=check_dtype, obj=obj
+ )
+
+ # compare by columns
+ else:
+ for i, col in enumerate(left.columns):
+ assert col in right
+ lcol = left.iloc[:, i]
+ rcol = right.iloc[:, i]
+ assert_series_equal(
+ lcol,
+ rcol,
+ check_dtype=check_dtype,
+ check_index_type=check_index_type,
+ check_less_precise=check_less_precise,
+ check_exact=check_exact,
+ check_names=check_names,
+ check_datetimelike_compat=check_datetimelike_compat,
+ check_categorical=check_categorical,
+ obj=f'{obj}.iloc[:, {i}] (column name="{col}")',
+ )
+
+
+def assert_equal(left, right, **kwargs):
+ """
+ Wrapper for tm.assert_*_equal to dispatch to the appropriate test function.
+
+ Parameters
+ ----------
+ left, right : Index, Series, DataFrame, ExtensionArray, or np.ndarray
+ The two items to be compared.
+ **kwargs
+ All keyword arguments are passed through to the underlying assert method.
+ """
+ __tracebackhide__ = True
+
+ if isinstance(left, pd.Index):
+ assert_index_equal(left, right, **kwargs)
+ elif isinstance(left, pd.Series):
+ assert_series_equal(left, right, **kwargs)
+ elif isinstance(left, pd.DataFrame):
+ assert_frame_equal(left, right, **kwargs)
+ elif isinstance(left, IntervalArray):
+ assert_interval_array_equal(left, right, **kwargs)
+ elif isinstance(left, PeriodArray):
+ assert_period_array_equal(left, right, **kwargs)
+ elif isinstance(left, DatetimeArray):
+ assert_datetime_array_equal(left, right, **kwargs)
+ elif isinstance(left, TimedeltaArray):
+ assert_timedelta_array_equal(left, right, **kwargs)
+ elif isinstance(left, ExtensionArray):
+ assert_extension_array_equal(left, right, **kwargs)
+ elif isinstance(left, np.ndarray):
+ assert_numpy_array_equal(left, right, **kwargs)
+ elif isinstance(left, str):
+ assert kwargs == {}
+ assert left == right
+ else:
+ raise NotImplementedError(type(left))
+
+
+def assert_contains_all(iterable, dic):
+ for k in iterable:
+ assert k in dic, f"Did not contain item: {repr(k)}"
+
+
+def assert_copy(iter1, iter2, **eql_kwargs):
+ """
+ iter1, iter2: iterables that produce elements
+ comparable with assert_almost_equal
+
+ Checks that the elements are equal, but not
+ the same object. (Does not check that items
+ in sequences are also not the same object)
+ """
+ for elem1, elem2 in zip(iter1, iter2):
+ assert_almost_equal(elem1, elem2, **eql_kwargs)
+ msg = (
+ f"Expected object {repr(type(elem1))} and object {repr(type(elem2))} to be "
+ "different objects, but they were the same object."
+ )
+ assert elem1 is not elem2, msg
+
+
+def assert_is_sorted(seq):
+ """Assert that the sequence is sorted."""
+ if isinstance(seq, (Index, Series)):
+ seq = seq.values
+ # sorting does not change precisions
+ assert_numpy_array_equal(seq, np.sort(np.array(seq)))
diff --git a/pandas/_testing/contexts.py b/pandas/_testing/contexts.py
new file mode 100644
index 0000000000000..ba516e4287dae
--- /dev/null
+++ b/pandas/_testing/contexts.py
@@ -0,0 +1,410 @@
+import bz2
+from contextlib import contextmanager
+import gzip
+import os
+from shutil import rmtree
+import tempfile
+import warnings
+import zipfile
+
+import numpy as np
+
+from pandas.compat import _get_lzma_file, _import_lzma
+
+from pandas.core.dtypes.common import is_list_like
+
+lzma = _import_lzma()
+
+
+@contextmanager
+def assert_produces_warning(
+ expected_warning=Warning,
+ filter_level="always",
+ clear=None,
+ check_stacklevel=True,
+ raise_on_extra_warnings=True,
+):
+ """
+ Context manager for running code expected to either raise a specific
+ warning, or not raise any warnings. Verifies that the code raises the
+ expected warning, and that it does not raise any other unexpected
+ warnings. It is basically a wrapper around ``warnings.catch_warnings``.
+
+ Parameters
+ ----------
+ expected_warning : {Warning, False, None}, default Warning
+ The type of Exception raised. ``exception.Warning`` is the base
+ class for all warnings. To check that no warning is returned,
+ specify ``False`` or ``None``.
+ filter_level : str or None, default "always"
+ Specifies whether warnings are ignored, displayed, or turned
+ into errors.
+ Valid values are:
+
+ * "error" - turns matching warnings into exceptions
+ * "ignore" - discard the warning
+ * "always" - always emit a warning
+ * "default" - print the warning the first time it is generated
+ from each location
+ * "module" - print the warning the first time it is generated
+ from each module
+ * "once" - print the warning the first time it is generated
+
+ clear : str, default None
+ If not ``None`` then remove any previously raised warnings from
+ the ``__warningsregistry__`` to ensure that no warning messages are
+ suppressed by this context manager. If ``None`` is specified,
+ the ``__warningsregistry__`` keeps track of which warnings have been
+ shown, and does not show them again.
+ check_stacklevel : bool, default True
+ If True, displays the line that called the function containing
+ the warning to show were the function is called. Otherwise, the
+ line that implements the function is displayed.
+ raise_on_extra_warnings : bool, default True
+ Whether extra warnings not of the type `expected_warning` should
+ cause the test to fail.
+
+ Examples
+ --------
+ >>> import warnings
+ >>> with assert_produces_warning():
+ ... warnings.warn(UserWarning())
+ ...
+ >>> with assert_produces_warning(False):
+ ... warnings.warn(RuntimeWarning())
+ ...
+ Traceback (most recent call last):
+ ...
+ AssertionError: Caused unexpected warning(s): ['RuntimeWarning'].
+ >>> with assert_produces_warning(UserWarning):
+ ... warnings.warn(RuntimeWarning())
+ Traceback (most recent call last):
+ ...
+ AssertionError: Did not see expected warning of class 'UserWarning'.
+
+ ..warn:: This is *not* thread-safe.
+ """
+ __tracebackhide__ = True
+
+ with warnings.catch_warnings(record=True) as w:
+
+ if clear is not None:
+ # make sure that we are clearing these warnings
+ # if they have happened before
+ # to guarantee that we will catch them
+ if not is_list_like(clear):
+ clear = [clear]
+ for m in clear:
+ try:
+ m.__warningregistry__.clear()
+ except AttributeError:
+ # module may not have __warningregistry__
+ pass
+
+ saw_warning = False
+ warnings.simplefilter(filter_level)
+ yield w
+ extra_warnings = []
+
+ for actual_warning in w:
+ if expected_warning and issubclass(
+ actual_warning.category, expected_warning
+ ):
+ saw_warning = True
+
+ if check_stacklevel and issubclass(
+ actual_warning.category, (FutureWarning, DeprecationWarning)
+ ):
+ from inspect import getframeinfo, stack
+
+ caller = getframeinfo(stack()[2][0])
+ msg = (
+ "Warning not set with correct stacklevel. "
+ f"File where warning is raised: {actual_warning.filename} != "
+ f"{caller.filename}. Warning message: {actual_warning.message}"
+ )
+ assert actual_warning.filename == caller.filename, msg
+ else:
+ extra_warnings.append(
+ (
+ actual_warning.category.__name__,
+ actual_warning.message,
+ actual_warning.filename,
+ actual_warning.lineno,
+ )
+ )
+ if expected_warning:
+ msg = (
+ f"Did not see expected warning of class "
+ f"{repr(expected_warning.__name__)}"
+ )
+ assert saw_warning, msg
+ if raise_on_extra_warnings and extra_warnings:
+ raise AssertionError(
+ f"Caused unexpected warning(s): {repr(extra_warnings)}"
+ )
+
+
+class RNGContext:
+ """
+ Context manager to set the numpy random number generator speed. Returns
+ to the original value upon exiting the context manager.
+
+ Parameters
+ ----------
+ seed : int
+ Seed for numpy.random.seed
+
+ Examples
+ --------
+ with RNGContext(42):
+ np.random.randn()
+ """
+
+ def __init__(self, seed):
+ self.seed = seed
+
+ def __enter__(self):
+
+ self.start_state = np.random.get_state()
+ np.random.seed(self.seed)
+
+ def __exit__(self, exc_type, exc_value, traceback):
+
+ np.random.set_state(self.start_state)
+
+
+@contextmanager
+def use_numexpr(use, min_elements=None):
+ from pandas.core.computation import expressions as expr
+
+ if min_elements is None:
+ min_elements = expr._MIN_ELEMENTS
+
+ olduse = expr._USE_NUMEXPR
+ oldmin = expr._MIN_ELEMENTS
+ expr.set_use_numexpr(use)
+ expr._MIN_ELEMENTS = min_elements
+ yield
+ expr._MIN_ELEMENTS = oldmin
+ expr.set_use_numexpr(olduse)
+
+
+@contextmanager
+def decompress_file(path, compression):
+ """
+ Open a compressed file and return a file object.
+
+ Parameters
+ ----------
+ path : str
+ The path where the file is read from.
+
+ compression : {'gzip', 'bz2', 'zip', 'xz', None}
+ Name of the decompression to use
+
+ Returns
+ -------
+ file object
+ """
+ if compression is None:
+ f = open(path, "rb")
+ elif compression == "gzip":
+ f = gzip.open(path, "rb")
+ elif compression == "bz2":
+ f = bz2.BZ2File(path, "rb")
+ elif compression == "xz":
+ f = _get_lzma_file(lzma)(path, "rb")
+ elif compression == "zip":
+ zip_file = zipfile.ZipFile(path)
+ zip_names = zip_file.namelist()
+ if len(zip_names) == 1:
+ f = zip_file.open(zip_names.pop())
+ else:
+ raise ValueError(f"ZIP file {path} error. Only one file per ZIP.")
+ else:
+ raise ValueError(f"Unrecognized compression type: {compression}")
+
+ try:
+ yield f
+ finally:
+ f.close()
+ if compression == "zip":
+ zip_file.close()
+
+
+@contextmanager
+def with_csv_dialect(name, **kwargs):
+ """
+ Context manager to temporarily register a CSV dialect for parsing CSV.
+
+ Parameters
+ ----------
+ name : str
+ The name of the dialect.
+ kwargs : mapping
+ The parameters for the dialect.
+
+ Raises
+ ------
+ ValueError : the name of the dialect conflicts with a builtin one.
+
+ See Also
+ --------
+ csv : Python's CSV library.
+ """
+ import csv
+
+ _BUILTIN_DIALECTS = {"excel", "excel-tab", "unix"}
+
+ if name in _BUILTIN_DIALECTS:
+ raise ValueError("Cannot override builtin dialect.")
+
+ csv.register_dialect(name, **kwargs)
+ yield
+ csv.unregister_dialect(name)
+
+
+@contextmanager
+def set_timezone(tz: str):
+ """
+ Context manager for temporarily setting a timezone.
+
+ Parameters
+ ----------
+ tz : str
+ A string representing a valid timezone.
+
+ Examples
+ --------
+ >>> from datetime import datetime
+ >>> from dateutil.tz import tzlocal
+ >>> tzlocal().tzname(datetime.now())
+ 'IST'
+
+ >>> with set_timezone('US/Eastern'):
+ ... tzlocal().tzname(datetime.now())
+ ...
+ 'EDT'
+ """
+ import os
+ import time
+
+ def setTZ(tz):
+ if tz is None:
+ try:
+ del os.environ["TZ"]
+ except KeyError:
+ pass
+ else:
+ os.environ["TZ"] = tz
+ time.tzset()
+
+ orig_tz = os.environ.get("TZ")
+ setTZ(tz)
+ try:
+ yield
+ finally:
+ setTZ(orig_tz)
+
+
+# -----------------------------------------------------------------------------
+# contextmanager to ensure the file cleanup
+
+
+@contextmanager
+def ensure_clean(filename=None, return_filelike=False, **kwargs):
+ """
+ Gets a temporary path and agrees to remove on close.
+
+ Parameters
+ ----------
+ filename : str (optional)
+ if None, creates a temporary file which is then removed when out of
+ scope. if passed, creates temporary file with filename as ending.
+ return_filelike : bool (default False)
+ if True, returns a file-like which is *always* cleaned. Necessary for
+ savefig and other functions which want to append extensions.
+ **kwargs
+ Additional keywords passed in for creating a temporary file.
+ :meth:`tempFile.TemporaryFile` is used when `return_filelike` is ``True``.
+ :meth:`tempfile.mkstemp` is used when `return_filelike` is ``False``.
+ Note that the `filename` parameter will be passed in as the `suffix`
+ argument to either function.
+
+ See Also
+ --------
+ tempfile.TemporaryFile
+ tempfile.mkstemp
+ """
+ filename = filename or ""
+ fd = None
+
+ kwargs["suffix"] = filename
+
+ if return_filelike:
+ f = tempfile.TemporaryFile(**kwargs)
+
+ try:
+ yield f
+ finally:
+ f.close()
+ else:
+ # Don't generate tempfile if using a path with directory specified.
+ if len(os.path.dirname(filename)):
+ raise ValueError("Can't pass a qualified name to ensure_clean()")
+
+ try:
+ fd, filename = tempfile.mkstemp(**kwargs)
+ except UnicodeEncodeError:
+ import pytest
+
+ pytest.skip("no unicode file names on this system")
+
+ try:
+ yield filename
+ finally:
+ try:
+ os.close(fd)
+ except OSError:
+ print(f"Couldn't close file descriptor: {fd} (file: {filename})")
+ try:
+ if os.path.exists(filename):
+ os.remove(filename)
+ except OSError as e:
+ print(f"Exception on removing file: {e}")
+
+
+@contextmanager
+def ensure_clean_dir():
+ """
+ Get a temporary directory path and agrees to remove on close.
+
+ Yields
+ ------
+ Temporary directory path
+ """
+ directory_name = tempfile.mkdtemp(suffix="")
+ try:
+ yield directory_name
+ finally:
+ try:
+ rmtree(directory_name)
+ except OSError:
+ pass
+
+
+@contextmanager
+def ensure_safe_environment_variables():
+ """
+ Get a context manager to safely set environment variables
+
+ All changes will be undone on close, hence environment variables set
+ within this contextmanager will neither persist nor change global state.
+ """
+ saved_environ = dict(os.environ)
+ try:
+ yield
+ finally:
+ os.environ.clear()
+ os.environ.update(saved_environ)
diff --git a/pandas/_testing/graphics.py b/pandas/_testing/graphics.py
new file mode 100644
index 0000000000000..899de02e80881
--- /dev/null
+++ b/pandas/_testing/graphics.py
@@ -0,0 +1,32 @@
+import numpy as np
+
+import pandas as pd
+
+
+def close(fignum=None):
+ from matplotlib.pyplot import get_fignums, close as _close
+
+ if fignum is None:
+ for fignum in get_fignums():
+ _close(fignum)
+ else:
+ _close(fignum)
+
+
+def assert_is_valid_plot_return_object(objs):
+ import matplotlib.pyplot as plt
+
+ if isinstance(objs, (pd.Series, np.ndarray)):
+ for el in objs.ravel():
+ msg = (
+ "one of 'objs' is not a matplotlib Axes instance, "
+ f"type encountered {repr(type(el).__name__)}"
+ )
+ assert isinstance(el, (plt.Axes, dict)), msg
+ else:
+ msg = (
+ "objs is neither an ndarray of Artist instances nor a single "
+ "ArtistArtist instance, tuple, or dict, 'objs' is a "
+ f"{repr(type(objs).__name__)}"
+ )
+ assert isinstance(objs, (plt.Artist, tuple, dict)), msg
diff --git a/pandas/_testing/makers.py b/pandas/_testing/makers.py
new file mode 100644
index 0000000000000..1e63cf5a8351d
--- /dev/null
+++ b/pandas/_testing/makers.py
@@ -0,0 +1,615 @@
+from collections import Counter
+from datetime import datetime
+import string
+
+import numpy as np
+
+from pandas.core.dtypes.common import is_sequence
+
+import pandas as pd
+from pandas import (
+ Categorical,
+ CategoricalIndex,
+ DataFrame,
+ DatetimeIndex,
+ Index,
+ IntervalIndex,
+ MultiIndex,
+ RangeIndex,
+ Series,
+ bdate_range,
+)
+
+RANDS_CHARS = np.array(list(string.ascii_letters + string.digits), dtype=(np.str_, 1))
+RANDU_CHARS = np.array(
+ list("".join(map(chr, range(1488, 1488 + 26))) + string.digits),
+ dtype=(np.unicode_, 1),
+)
+
+N = 30
+K = 4
+
+
+def getCols(k):
+ return string.ascii_uppercase[:k]
+
+
+def rands(nchars):
+ """
+ Generate one random byte string.
+
+ See `rands_array` if you want to create an array of random strings.
+
+ """
+ return "".join(np.random.choice(RANDS_CHARS, nchars))
+
+
+def randu(nchars):
+ """
+ Generate one random unicode string.
+
+ See `randu_array` if you want to create an array of random unicode strings.
+
+ """
+ return "".join(np.random.choice(RANDU_CHARS, nchars))
+
+
+def rands_array(nchars, size, dtype="O"):
+ """
+ Generate an array of byte strings.
+ """
+ retval = (
+ np.random.choice(RANDS_CHARS, size=nchars * np.prod(size))
+ .view((np.str_, nchars))
+ .reshape(size)
+ )
+ if dtype is None:
+ return retval
+ else:
+ return retval.astype(dtype)
+
+
+def randu_array(nchars, size, dtype="O"):
+ """
+ Generate an array of unicode strings.
+ """
+ retval = (
+ np.random.choice(RANDU_CHARS, size=nchars * np.prod(size))
+ .view((np.unicode_, nchars))
+ .reshape(size)
+ )
+ if dtype is None:
+ return retval
+ else:
+ return retval.astype(dtype)
+
+
+# ----------------------------------------------------------------------
+
+_names = [
+ "Alice",
+ "Bob",
+ "Charlie",
+ "Dan",
+ "Edith",
+ "Frank",
+ "George",
+ "Hannah",
+ "Ingrid",
+ "Jerry",
+ "Kevin",
+ "Laura",
+ "Michael",
+ "Norbert",
+ "Oliver",
+ "Patricia",
+ "Quinn",
+ "Ray",
+ "Sarah",
+ "Tim",
+ "Ursula",
+ "Victor",
+ "Wendy",
+ "Xavier",
+ "Yvonne",
+ "Zelda",
+]
+
+
+def _make_timeseries(start="2000-01-01", end="2000-12-31", freq="1D", seed=None):
+ """
+ Make a DataFrame with a DatetimeIndex
+
+ Parameters
+ ----------
+ start : str or Timestamp, default "2000-01-01"
+ The start of the index. Passed to date_range with `freq`.
+ end : str or Timestamp, default "2000-12-31"
+ The end of the index. Passed to date_range with `freq`.
+ freq : str or Freq
+ The frequency to use for the DatetimeIndex
+ seed : int, optional
+ The random state seed.
+
+ * name : object dtype with string names
+ * id : int dtype with
+ * x, y : float dtype
+
+ Examples
+ --------
+ >>> _make_timeseries()
+ id name x y
+ timestamp
+ 2000-01-01 982 Frank 0.031261 0.986727
+ 2000-01-02 1025 Edith -0.086358 -0.032920
+ 2000-01-03 982 Edith 0.473177 0.298654
+ 2000-01-04 1009 Sarah 0.534344 -0.750377
+ 2000-01-05 963 Zelda -0.271573 0.054424
+ ... ... ... ... ...
+ 2000-12-27 980 Ingrid -0.132333 -0.422195
+ 2000-12-28 972 Frank -0.376007 -0.298687
+ 2000-12-29 1009 Ursula -0.865047 -0.503133
+ 2000-12-30 1000 Hannah -0.063757 -0.507336
+ 2000-12-31 972 Tim -0.869120 0.531685
+ """
+ index = pd.date_range(start=start, end=end, freq=freq, name="timestamp")
+ n = len(index)
+ state = np.random.RandomState(seed)
+ columns = {
+ "name": state.choice(_names, size=n),
+ "id": state.poisson(1000, size=n),
+ "x": state.rand(n) * 2 - 1,
+ "y": state.rand(n) * 2 - 1,
+ }
+ df = pd.DataFrame(columns, index=index, columns=sorted(columns))
+ if df.index[-1] == end:
+ df = df.iloc[:-1]
+ return df
+
+
+# ----------------------------------------------------------------------
+
+
+def _create_missing_idx(nrows, ncols, density, random_state=None):
+ if random_state is None:
+ random_state = np.random
+ else:
+ random_state = np.random.RandomState(random_state)
+
+ # below is cribbed from scipy.sparse
+ size = int(np.round((1 - density) * nrows * ncols))
+ # generate a few more to ensure unique values
+ min_rows = 5
+ fac = 1.02
+ extra_size = min(size + min_rows, fac * size)
+
+ def _gen_unique_rand(rng, _extra_size):
+ ind = rng.rand(int(_extra_size))
+ return np.unique(np.floor(ind * nrows * ncols))[:size]
+
+ ind = _gen_unique_rand(random_state, extra_size)
+ while ind.size < size:
+ extra_size *= 1.05
+ ind = _gen_unique_rand(random_state, extra_size)
+
+ j = np.floor(ind * 1.0 / nrows).astype(int)
+ i = (ind - j * nrows).astype(int)
+ return i.tolist(), j.tolist()
+
+
+# ----------------------------------------------------------------------
+# Make Indexes
+
+
+def makeStringIndex(k=10, name=None):
+ return Index(rands_array(nchars=10, size=k), name=name)
+
+
+def makeUnicodeIndex(k=10, name=None):
+ return Index(randu_array(nchars=10, size=k), name=name)
+
+
+def makeCategoricalIndex(k=10, n=3, name=None, **kwargs):
+ """ make a length k index or n categories """
+ x = rands_array(nchars=4, size=n)
+ return CategoricalIndex(
+ Categorical.from_codes(np.arange(k) % n, categories=x), name=name, **kwargs
+ )
+
+
+def makeIntervalIndex(k=10, name=None, **kwargs):
+ """ make a length k IntervalIndex """
+ x = np.linspace(0, 100, num=(k + 1))
+ return IntervalIndex.from_breaks(x, name=name, **kwargs)
+
+
+def makeBoolIndex(k=10, name=None):
+ if k == 1:
+ return Index([True], name=name)
+ elif k == 2:
+ return Index([False, True], name=name)
+ return Index([False, True] + [False] * (k - 2), name=name)
+
+
+def makeIntIndex(k=10, name=None):
+ return Index(list(range(k)), name=name)
+
+
+def makeUIntIndex(k=10, name=None):
+ return Index([2 ** 63 + i for i in range(k)], name=name)
+
+
+def makeRangeIndex(k=10, name=None, **kwargs):
+ return RangeIndex(0, k, 1, name=name, **kwargs)
+
+
+def makeFloatIndex(k=10, name=None):
+ values = sorted(np.random.random_sample(k)) - np.random.random_sample(1)
+ return Index(values * (10 ** np.random.randint(0, 9)), name=name)
+
+
+def makeDateIndex(k=10, freq="B", name=None, **kwargs):
+ dt = datetime(2000, 1, 1)
+ dr = bdate_range(dt, periods=k, freq=freq, name=name)
+ return DatetimeIndex(dr, name=name, **kwargs)
+
+
+def makeTimedeltaIndex(k=10, freq="D", name=None, **kwargs):
+ return pd.timedelta_range(start="1 day", periods=k, freq=freq, name=name, **kwargs)
+
+
+def makePeriodIndex(k=10, name=None, **kwargs):
+ dt = datetime(2000, 1, 1)
+ dr = pd.period_range(start=dt, periods=k, freq="B", name=name, **kwargs)
+ return dr
+
+
+def makeMultiIndex(k=10, names=None, **kwargs):
+ return MultiIndex.from_product((("foo", "bar"), (1, 2)), names=names, **kwargs)
+
+
+# ----------------------------------------------------------------------
+# Make Series
+
+
+def makeFloatSeries(name=None):
+ index = makeStringIndex(N)
+ return Series(np.random.randn(N), index=index, name=name)
+
+
+def makeStringSeries(name=None):
+ index = makeStringIndex(N)
+ return Series(np.random.randn(N), index=index, name=name)
+
+
+def makeObjectSeries(name=None):
+ data = makeStringIndex(N)
+ data = Index(data, dtype=object)
+ index = makeStringIndex(N)
+ return Series(data, index=index, name=name)
+
+
+def getSeriesData():
+ index = makeStringIndex(N)
+ return {c: Series(np.random.randn(N), index=index) for c in getCols(K)}
+
+
+def makeTimeSeries(nper=None, freq="B", name=None):
+ if nper is None:
+ nper = N
+ return Series(
+ np.random.randn(nper), index=makeDateIndex(nper, freq=freq), name=name
+ )
+
+
+def makePeriodSeries(nper=None, name=None):
+ if nper is None:
+ nper = N
+ return Series(np.random.randn(nper), index=makePeriodIndex(nper), name=name)
+
+
+def getTimeSeriesData(nper=None, freq="B"):
+ return {c: makeTimeSeries(nper, freq) for c in getCols(K)}
+
+
+def getPeriodData(nper=None):
+ return {c: makePeriodSeries(nper) for c in getCols(K)}
+
+
+# make frame
+def makeTimeDataFrame(nper=None, freq="B"):
+ data = getTimeSeriesData(nper, freq)
+ return DataFrame(data)
+
+
+def makeDataFrame():
+ data = getSeriesData()
+ return DataFrame(data)
+
+
+def getMixedTypeDict():
+ index = Index(["a", "b", "c", "d", "e"])
+
+ data = {
+ "A": [0.0, 1.0, 2.0, 3.0, 4.0],
+ "B": [0.0, 1.0, 0.0, 1.0, 0.0],
+ "C": ["foo1", "foo2", "foo3", "foo4", "foo5"],
+ "D": bdate_range("1/1/2009", periods=5),
+ }
+
+ return index, data
+
+
+def makeMixedDataFrame():
+ return DataFrame(getMixedTypeDict()[1])
+
+
+def makePeriodFrame(nper=None):
+ data = getPeriodData(nper)
+ return DataFrame(data)
+
+
+def makeCustomIndex(
+ nentries, nlevels, prefix="#", names=False, ndupe_l=None, idx_type=None
+):
+ """
+ Create an index/multindex with given dimensions, levels, names, etc'
+
+ nentries - number of entries in index
+ nlevels - number of levels (> 1 produces multindex)
+ prefix - a string prefix for labels
+ names - (Optional), bool or list of strings. if True will use default
+ names, if false will use no names, if a list is given, the name of
+ each level in the index will be taken from the list.
+ ndupe_l - (Optional), list of ints, the number of rows for which the
+ label will repeated at the corresponding level, you can specify just
+ the first few, the rest will use the default ndupe_l of 1.
+ len(ndupe_l) <= nlevels.
+ idx_type - "i"/"f"/"s"/"u"/"dt"/"p"/"td".
+ If idx_type is not None, `idx_nlevels` must be 1.
+ "i"/"f" creates an integer/float index,
+ "s"/"u" creates a string/unicode index
+ "dt" create a datetime index.
+ "td" create a datetime index.
+
+ if unspecified, string labels will be generated.
+ """
+ if ndupe_l is None:
+ ndupe_l = [1] * nlevels
+ assert is_sequence(ndupe_l) and len(ndupe_l) <= nlevels
+ assert names is None or names is False or names is True or len(names) is nlevels
+ assert idx_type is None or (
+ idx_type in ("i", "f", "s", "u", "dt", "p", "td") and nlevels == 1
+ )
+
+ if names is True:
+ # build default names
+ names = [prefix + str(i) for i in range(nlevels)]
+ if names is False:
+ # pass None to index constructor for no name
+ names = None
+
+ # make singleton case uniform
+ if isinstance(names, str) and nlevels == 1:
+ names = [names]
+
+ # specific 1D index type requested?
+ idx_func = dict(
+ i=makeIntIndex,
+ f=makeFloatIndex,
+ s=makeStringIndex,
+ u=makeUnicodeIndex,
+ dt=makeDateIndex,
+ td=makeTimedeltaIndex,
+ p=makePeriodIndex,
+ ).get(idx_type)
+ if idx_func:
+ idx = idx_func(nentries)
+ # but we need to fill in the name
+ if names:
+ idx.name = names[0]
+ return idx
+ elif idx_type is not None:
+ raise ValueError(
+ f"{repr(idx_type)} is not a legal value for `idx_type`, "
+ "use 'i'/'f'/'s'/'u'/'dt'/'p'/'td'."
+ )
+
+ if len(ndupe_l) < nlevels:
+ ndupe_l.extend([1] * (nlevels - len(ndupe_l)))
+ assert len(ndupe_l) == nlevels
+
+ assert all(x > 0 for x in ndupe_l)
+
+ tuples = []
+ for i in range(nlevels):
+
+ def keyfunc(x):
+ import re
+
+ numeric_tuple = re.sub(r"[^\d_]_?", "", x).split("_")
+ return [int(num) for num in numeric_tuple]
+
+ # build a list of lists to create the index from
+ div_factor = nentries // ndupe_l[i] + 1
+ cnt = Counter()
+ for j in range(div_factor):
+ label = f"{prefix}_l{i}_g{j}"
+ cnt[label] = ndupe_l[i]
+ # cute Counter trick
+ result = sorted(cnt.elements(), key=keyfunc)[:nentries]
+ tuples.append(result)
+
+ tuples = list(zip(*tuples))
+
+ # convert tuples to index
+ if nentries == 1:
+ # we have a single level of tuples, i.e. a regular Index
+ index = Index(tuples[0], name=names[0])
+ elif nlevels == 1:
+ name = None if names is None else names[0]
+ index = Index((x[0] for x in tuples), name=name)
+ else:
+ index = MultiIndex.from_tuples(tuples, names=names)
+ return index
+
+
+def makeCustomDataframe(
+ nrows,
+ ncols,
+ c_idx_names=True,
+ r_idx_names=True,
+ c_idx_nlevels=1,
+ r_idx_nlevels=1,
+ data_gen_f=None,
+ c_ndupe_l=None,
+ r_ndupe_l=None,
+ dtype=None,
+ c_idx_type=None,
+ r_idx_type=None,
+):
+ """
+ Create a DataFrame using supplied parameters.
+
+ Parameters
+ ----------
+ nrows, ncols - number of data rows/cols
+ c_idx_names, idx_names - False/True/list of strings, yields No names ,
+ default names or uses the provided names for the levels of the
+ corresponding index. You can provide a single string when
+ c_idx_nlevels ==1.
+ c_idx_nlevels - number of levels in columns index. > 1 will yield MultiIndex
+ r_idx_nlevels - number of levels in rows index. > 1 will yield MultiIndex
+ data_gen_f - a function f(row,col) which return the data value
+ at that position, the default generator used yields values of the form
+ "RxCy" based on position.
+ c_ndupe_l, r_ndupe_l - list of integers, determines the number
+ of duplicates for each label at a given level of the corresponding
+ index. The default `None` value produces a multiplicity of 1 across
+ all levels, i.e. a unique index. Will accept a partial list of length
+ N < idx_nlevels, for just the first N levels. If ndupe doesn't divide
+ nrows/ncol, the last label might have lower multiplicity.
+ dtype - passed to the DataFrame constructor as is, in case you wish to
+ have more control in conjunction with a custom `data_gen_f`
+ r_idx_type, c_idx_type - "i"/"f"/"s"/"u"/"dt"/"td".
+ If idx_type is not None, `idx_nlevels` must be 1.
+ "i"/"f" creates an integer/float index,
+ "s"/"u" creates a string/unicode index
+ "dt" create a datetime index.
+ "td" create a timedelta index.
+
+ if unspecified, string labels will be generated.
+
+ Examples
+ --------
+ # 5 row, 3 columns, default names on both, single index on both axis
+ >> makeCustomDataframe(5,3)
+
+ # make the data a random int between 1 and 100
+ >> mkdf(5,3,data_gen_f=lambda r,c:randint(1,100))
+
+ # 2-level multiindex on rows with each label duplicated
+ # twice on first level, default names on both axis, single
+ # index on both axis
+ >> a=makeCustomDataframe(5,3,r_idx_nlevels=2,r_ndupe_l=[2])
+
+ # DatetimeIndex on row, index with unicode labels on columns
+ # no names on either axis
+ >> a=makeCustomDataframe(5,3,c_idx_names=False,r_idx_names=False,
+ r_idx_type="dt",c_idx_type="u")
+
+ # 4-level multindex on rows with names provided, 2-level multindex
+ # on columns with default labels and default names.
+ >> a=makeCustomDataframe(5,3,r_idx_nlevels=4,
+ r_idx_names=["FEE","FI","FO","FAM"],
+ c_idx_nlevels=2)
+
+ >> a=mkdf(5,3,r_idx_nlevels=2,c_idx_nlevels=4)
+ """
+ assert c_idx_nlevels > 0
+ assert r_idx_nlevels > 0
+ assert r_idx_type is None or (
+ r_idx_type in ("i", "f", "s", "u", "dt", "p", "td") and r_idx_nlevels == 1
+ )
+ assert c_idx_type is None or (
+ c_idx_type in ("i", "f", "s", "u", "dt", "p", "td") and c_idx_nlevels == 1
+ )
+
+ columns = makeCustomIndex(
+ ncols,
+ nlevels=c_idx_nlevels,
+ prefix="C",
+ names=c_idx_names,
+ ndupe_l=c_ndupe_l,
+ idx_type=c_idx_type,
+ )
+ index = makeCustomIndex(
+ nrows,
+ nlevels=r_idx_nlevels,
+ prefix="R",
+ names=r_idx_names,
+ ndupe_l=r_ndupe_l,
+ idx_type=r_idx_type,
+ )
+
+ # by default, generate data based on location
+ if data_gen_f is None:
+ data_gen_f = lambda r, c: f"R{r}C{c}"
+
+ data = [[data_gen_f(r, c) for c in range(ncols)] for r in range(nrows)]
+
+ return DataFrame(data, index, columns, dtype=dtype)
+
+
+def makeMissingCustomDataframe(
+ nrows,
+ ncols,
+ density=0.9,
+ random_state=None,
+ c_idx_names=True,
+ r_idx_names=True,
+ c_idx_nlevels=1,
+ r_idx_nlevels=1,
+ data_gen_f=None,
+ c_ndupe_l=None,
+ r_ndupe_l=None,
+ dtype=None,
+ c_idx_type=None,
+ r_idx_type=None,
+):
+ """
+ Parameters
+ ----------
+ Density : float, optional
+ Float in (0, 1) that gives the percentage of non-missing numbers in
+ the DataFrame.
+ random_state : {np.random.RandomState, int}, optional
+ Random number generator or random seed.
+
+ See makeCustomDataframe for descriptions of the rest of the parameters.
+ """
+ df = makeCustomDataframe(
+ nrows,
+ ncols,
+ c_idx_names=c_idx_names,
+ r_idx_names=r_idx_names,
+ c_idx_nlevels=c_idx_nlevels,
+ r_idx_nlevels=r_idx_nlevels,
+ data_gen_f=data_gen_f,
+ c_ndupe_l=c_ndupe_l,
+ r_ndupe_l=r_ndupe_l,
+ dtype=dtype,
+ c_idx_type=c_idx_type,
+ r_idx_type=r_idx_type,
+ )
+
+ i, j = _create_missing_idx(nrows, ncols, density, random_state)
+ df.values[i, j] = np.nan
+ return df
+
+
+def makeMissingDataframe(density=0.9, random_state=None):
+ df = makeDataFrame()
+ i, j = _create_missing_idx(*df.shape, density=density, random_state=random_state)
+ df.values[i, j] = np.nan
+ return df
diff --git a/pandas/_testing/network.py b/pandas/_testing/network.py
new file mode 100644
index 0000000000000..3ef07032d06cb
--- /dev/null
+++ b/pandas/_testing/network.py
@@ -0,0 +1,240 @@
+from functools import wraps
+
+from pandas.io.common import urlopen
+
+_RAISE_NETWORK_ERROR_DEFAULT = False
+
+# skip tests on exceptions with this message
+_network_error_messages = (
+ # 'urlopen error timed out',
+ # 'timeout: timed out',
+ # 'socket.timeout: timed out',
+ "timed out",
+ "Server Hangup",
+ "HTTP Error 503: Service Unavailable",
+ "502: Proxy Error",
+ "HTTP Error 502: internal error",
+ "HTTP Error 502",
+ "HTTP Error 503",
+ "HTTP Error 403",
+ "HTTP Error 400",
+ "Temporary failure in name resolution",
+ "Name or service not known",
+ "Connection refused",
+ "certificate verify",
+)
+
+# or this e.errno/e.reason.errno
+_network_errno_vals = (
+ 101, # Network is unreachable
+ 111, # Connection refused
+ 110, # Connection timed out
+ 104, # Connection reset Error
+ 54, # Connection reset by peer
+ 60, # urllib.error.URLError: [Errno 60] Connection timed out
+)
+
+# Both of the above shouldn't mask real issues such as 404's
+# or refused connections (changed DNS).
+# But some tests (test_data yahoo) contact incredibly flakey
+# servers.
+
+# and conditionally raise on exception types in _get_default_network_errors
+
+
+def _get_default_network_errors():
+ # Lazy import for http.client because it imports many things from the stdlib
+ import http.client
+
+ return (IOError, http.client.HTTPException, TimeoutError)
+
+
+def can_connect(url, error_classes=None):
+ """
+ Try to connect to the given url. True if succeeds, False if IOError
+ raised
+
+ Parameters
+ ----------
+ url : basestring
+ The URL to try to connect to
+
+ Returns
+ -------
+ connectable : bool
+ Return True if no IOError (unable to connect) or URLError (bad url) was
+ raised
+ """
+ if error_classes is None:
+ error_classes = _get_default_network_errors()
+
+ try:
+ with urlopen(url):
+ pass
+ except error_classes:
+ return False
+ else:
+ return True
+
+
+def optional_args(decorator):
+ """
+ allows a decorator to take optional positional and keyword arguments.
+ Assumes that taking a single, callable, positional argument means that
+ it is decorating a function, i.e. something like this::
+
+ @my_decorator
+ def function(): pass
+
+ Calls decorator with decorator(f, *args, **kwargs)
+ """
+
+ @wraps(decorator)
+ def wrapper(*args, **kwargs):
+ def dec(f):
+ return decorator(f, *args, **kwargs)
+
+ is_decorating = not kwargs and len(args) == 1 and callable(args[0])
+ if is_decorating:
+ f = args[0]
+ args = []
+ return dec(f)
+ else:
+ return dec
+
+ return wrapper
+
+
+@optional_args
+def network(
+ t,
+ url="http://www.google.com",
+ raise_on_error=_RAISE_NETWORK_ERROR_DEFAULT,
+ check_before_test=False,
+ error_classes=None,
+ skip_errnos=_network_errno_vals,
+ _skip_on_messages=_network_error_messages,
+):
+ """
+ Label a test as requiring network connection and, if an error is
+ encountered, only raise if it does not find a network connection.
+
+ In comparison to ``network``, this assumes an added contract to your test:
+ you must assert that, under normal conditions, your test will ONLY fail if
+ it does not have network connectivity.
+
+ You can call this in 3 ways: as a standard decorator, with keyword
+ arguments, or with a positional argument that is the url to check.
+
+ Parameters
+ ----------
+ t : callable
+ The test requiring network connectivity.
+ url : path
+ The url to test via ``pandas.io.common.urlopen`` to check
+ for connectivity. Defaults to 'http://www.google.com'.
+ raise_on_error : bool
+ If True, never catches errors.
+ check_before_test : bool
+ If True, checks connectivity before running the test case.
+ error_classes : tuple or Exception
+ error classes to ignore. If not in ``error_classes``, raises the error.
+ defaults to IOError. Be careful about changing the error classes here.
+ skip_errnos : iterable of int
+ Any exception that has .errno or .reason.erno set to one
+ of these values will be skipped with an appropriate
+ message.
+ _skip_on_messages: iterable of string
+ any exception e for which one of the strings is
+ a substring of str(e) will be skipped with an appropriate
+ message. Intended to suppress errors where an errno isn't available.
+
+ Notes
+ -----
+ * ``raise_on_error`` supercedes ``check_before_test``
+
+ Returns
+ -------
+ t : callable
+ The decorated test ``t``, with checks for connectivity errors.
+
+ Example
+ -------
+
+ Tests decorated with @network will fail if it's possible to make a network
+ connection to another URL (defaults to google.com)::
+
+ >>> from pandas._testing import network
+ >>> from pandas.io.common import urlopen
+ >>> @network
+ ... def test_network():
+ ... with urlopen("rabbit://bonanza.com"):
+ ... pass
+ Traceback
+ ...
+ URLError: <urlopen error unknown url type: rabit>
+
+ You can specify alternative URLs::
+
+ >>> @network("http://www.yahoo.com")
+ ... def test_something_with_yahoo():
+ ... raise IOError("Failure Message")
+ >>> test_something_with_yahoo()
+ Traceback (most recent call last):
+ ...
+ IOError: Failure Message
+
+ If you set check_before_test, it will check the url first and not run the
+ test on failure::
+
+ >>> @network("failing://url.blaher", check_before_test=True)
+ ... def test_something():
+ ... print("I ran!")
+ ... raise ValueError("Failure")
+ >>> test_something()
+ Traceback (most recent call last):
+ ...
+
+ Errors not related to networking will always be raised.
+ """
+ from pytest import skip
+
+ if error_classes is None:
+ error_classes = _get_default_network_errors()
+
+ t.network = True
+
+ @wraps(t)
+ def wrapper(*args, **kwargs):
+ if check_before_test and not raise_on_error:
+ if not can_connect(url, error_classes):
+ skip()
+ try:
+ return t(*args, **kwargs)
+ except Exception as err:
+ errno = getattr(err, "errno", None)
+ if not errno and hasattr(errno, "reason"):
+ errno = getattr(err.reason, "errno", None)
+
+ if errno in skip_errnos:
+ skip(f"Skipping test due to known errno and error {err}")
+
+ e_str = str(err)
+
+ if any(m.lower() in e_str.lower() for m in _skip_on_messages):
+ skip(
+ f"Skipping test because exception message is known and error {err}"
+ )
+
+ if not isinstance(err, error_classes):
+ raise
+
+ if raise_on_error or can_connect(url, error_classes):
+ raise
+ else:
+ skip(f"Skipping test due to lack of connectivity and error {err}")
+
+ return wrapper
+
+
+with_connectivity_check = network
diff --git a/pandas/_testing/roundtrips.py b/pandas/_testing/roundtrips.py
new file mode 100644
index 0000000000000..1c4e30e98d5a5
--- /dev/null
+++ b/pandas/_testing/roundtrips.py
@@ -0,0 +1,92 @@
+from typing import Any, Optional
+
+from pandas._typing import FilePathOrBuffer, FrameOrSeries
+
+import pandas as pd
+
+from .contexts import ensure_clean
+from .makers import rands
+
+
+def round_trip_pickle(
+ obj: Any, path: Optional[FilePathOrBuffer] = None
+) -> FrameOrSeries:
+ """
+ Pickle an object and then read it again.
+
+ Parameters
+ ----------
+ obj : any object
+ The object to pickle and then re-read.
+ path : str, path object or file-like object, default None
+ The path where the pickled object is written and then read.
+
+ Returns
+ -------
+ pandas object
+ The original object that was pickled and then re-read.
+ """
+ _path = path
+ if _path is None:
+ _path = f"__{rands(10)}__.pickle"
+ with ensure_clean(_path) as temp_path:
+ pd.to_pickle(obj, temp_path)
+ return pd.read_pickle(temp_path)
+
+
+def round_trip_pathlib(writer, reader, path: Optional[str] = None):
+ """
+ Write an object to file specified by a pathlib.Path and read it back
+
+ Parameters
+ ----------
+ writer : callable bound to pandas object
+ IO writing function (e.g. DataFrame.to_csv )
+ reader : callable
+ IO reading function (e.g. pd.read_csv )
+ path : str, default None
+ The path where the object is written and then read.
+
+ Returns
+ -------
+ pandas object
+ The original object that was serialized and then re-read.
+ """
+ import pytest
+
+ Path = pytest.importorskip("pathlib").Path
+ if path is None:
+ path = "___pathlib___"
+ with ensure_clean(path) as path:
+ writer(Path(path))
+ obj = reader(Path(path))
+ return obj
+
+
+def round_trip_localpath(writer, reader, path: Optional[str] = None):
+ """
+ Write an object to file specified by a py.path LocalPath and read it back.
+
+ Parameters
+ ----------
+ writer : callable bound to pandas object
+ IO writing function (e.g. DataFrame.to_csv )
+ reader : callable
+ IO reading function (e.g. pd.read_csv )
+ path : str, default None
+ The path where the object is written and then read.
+
+ Returns
+ -------
+ pandas object
+ The original object that was serialized and then re-read.
+ """
+ import pytest
+
+ LocalPath = pytest.importorskip("py.path").local
+ if path is None:
+ path = "___localpath___"
+ with ensure_clean(path) as path:
+ writer(LocalPath(path))
+ obj = reader(LocalPath(path))
+ return obj
diff --git a/pandas/tests/internals/test_internals.py b/pandas/tests/internals/test_internals.py
index 0c9ddbf5473b3..c39eb86ccc17d 100644
--- a/pandas/tests/internals/test_internals.py
+++ b/pandas/tests/internals/test_internals.py
@@ -240,8 +240,8 @@ def test_attrs(self):
assert len(self.fblock) == len(self.fblock.values)
def test_merge(self):
- avals = tm.randn(2, 10)
- bvals = tm.randn(2, 10)
+ avals = np.random.randn(2, 10)
+ bvals = np.random.randn(2, 10)
ref_cols = Index(["e", "a", "b", "d", "f"])
@@ -435,10 +435,10 @@ def test_set_change_dtype(self, mgr):
mgr2.set("baz", np.repeat("foo", N))
assert mgr2.get("baz").dtype == np.object_
- mgr2.set("quux", tm.randn(N).astype(int))
+ mgr2.set("quux", np.random.randn(N).astype(int))
assert mgr2.get("quux").dtype == np.int_
- mgr2.set("quux", tm.randn(N))
+ mgr2.set("quux", np.random.randn(N))
assert mgr2.get("quux").dtype == np.float_
def test_set_change_dtype_slice(self): # GH8850
@@ -667,11 +667,11 @@ def test_consolidate(self):
pass
def test_consolidate_ordering_issues(self, mgr):
- mgr.set("f", tm.randn(N))
- mgr.set("d", tm.randn(N))
- mgr.set("b", tm.randn(N))
- mgr.set("g", tm.randn(N))
- mgr.set("h", tm.randn(N))
+ mgr.set("f", np.random.randn(N))
+ mgr.set("d", np.random.randn(N))
+ mgr.set("b", np.random.randn(N))
+ mgr.set("g", np.random.randn(N))
+ mgr.set("h", np.random.randn(N))
# we have datetime/tz blocks in mgr
cons = mgr.consolidate()
diff --git a/pandas/tests/series/methods/test_combine_first.py b/pandas/tests/series/methods/test_combine_first.py
index 1ee55fbe39513..eb22bf364c15a 100644
--- a/pandas/tests/series/methods/test_combine_first.py
+++ b/pandas/tests/series/methods/test_combine_first.py
@@ -46,7 +46,7 @@ def test_combine_first(self):
# mixed types
index = tm.makeStringIndex(20)
- floats = Series(tm.randn(20), index=index)
+ floats = Series(np.random.randn(20), index=index)
strings = Series(tm.makeStringIndex(10), index=index[::2])
combined = strings.combine_first(floats)
diff --git a/pandas/tests/series/test_apply.py b/pandas/tests/series/test_apply.py
index a4c55a80a9f0f..0445b3a0a47d7 100644
--- a/pandas/tests/series/test_apply.py
+++ b/pandas/tests/series/test_apply.py
@@ -4,6 +4,8 @@
import numpy as np
import pytest
+from pandas.core.dtypes.common import is_number
+
import pandas as pd
from pandas import DataFrame, Index, Series, isna
import pandas._testing as tm
@@ -401,7 +403,7 @@ def test_agg_cython_table(self, series, func, expected):
# test reducing functions in
# pandas.core.base.SelectionMixin._cython_table
result = series.agg(func)
- if tm.is_number(expected):
+ if is_number(expected):
assert np.isclose(result, expected, equal_nan=True)
else:
assert result == expected
diff --git a/pandas/tests/series/test_repr.py b/pandas/tests/series/test_repr.py
index 64a8c4569406e..302fb845ca072 100644
--- a/pandas/tests/series/test_repr.py
+++ b/pandas/tests/series/test_repr.py
@@ -71,8 +71,8 @@ def test_repr(self, datetime_series, string_series, object_series):
str(string_series.astype(int))
str(object_series)
- str(Series(tm.randn(1000), index=np.arange(1000)))
- str(Series(tm.randn(1000), index=np.arange(1000, 0, step=-1)))
+ str(Series(np.random.randn(1000), index=np.arange(1000)))
+ str(Series(np.random.randn(1000), index=np.arange(1000, 0, step=-1)))
# empty
str(Series(dtype=object))
@@ -104,7 +104,7 @@ def test_repr(self, datetime_series, string_series, object_series):
repr(string_series)
biggie = Series(
- tm.randn(1000), index=np.arange(1000), name=("foo", "bar", "baz")
+ np.random.randn(1000), index=np.arange(1000), name=("foo", "bar", "baz")
)
repr(biggie)
| Scattered throughout the tests we have other helpers like assert_block_equal that probably belong in `tm`. Before trying to collect all of these, it makes sense to split this already-cumbersome module. | https://api.github.com/repos/pandas-dev/pandas/pulls/32118 | 2020-02-19T20:37:12Z | 2020-02-21T02:15:45Z | null | 2021-01-04T06:20:41Z |
REF: collect arithmetic benchmarks | diff --git a/asv_bench/benchmarks/binary_ops.py b/asv_bench/benchmarks/arithmetic.py
similarity index 51%
rename from asv_bench/benchmarks/binary_ops.py
rename to asv_bench/benchmarks/arithmetic.py
index 64e067d25a454..d1e94f62967f4 100644
--- a/asv_bench/benchmarks/binary_ops.py
+++ b/asv_bench/benchmarks/arithmetic.py
@@ -1,14 +1,23 @@
import operator
+import warnings
import numpy as np
-from pandas import DataFrame, Series, date_range
+import pandas as pd
+from pandas import DataFrame, Series, Timestamp, date_range, to_timedelta
+import pandas._testing as tm
from pandas.core.algorithms import checked_add_with_arr
+from .pandas_vb_common import numeric_dtypes
+
try:
import pandas.core.computation.expressions as expr
except ImportError:
import pandas.computation.expressions as expr
+try:
+ import pandas.tseries.holiday
+except ImportError:
+ pass
class IntFrameWithScalar:
@@ -151,6 +160,110 @@ def time_timestamp_ops_diff_with_shift(self, tz):
self.s - self.s.shift()
+class IrregularOps:
+ def setup(self):
+ N = 10 ** 5
+ idx = date_range(start="1/1/2000", periods=N, freq="s")
+ s = Series(np.random.randn(N), index=idx)
+ self.left = s.sample(frac=1)
+ self.right = s.sample(frac=1)
+
+ def time_add(self):
+ self.left + self.right
+
+
+class TimedeltaOps:
+ def setup(self):
+ self.td = to_timedelta(np.arange(1000000))
+ self.ts = Timestamp("2000")
+
+ def time_add_td_ts(self):
+ self.td + self.ts
+
+
+class CategoricalComparisons:
+ params = ["__lt__", "__le__", "__eq__", "__ne__", "__ge__", "__gt__"]
+ param_names = ["op"]
+
+ def setup(self, op):
+ N = 10 ** 5
+ self.cat = pd.Categorical(list("aabbcd") * N, ordered=True)
+
+ def time_categorical_op(self, op):
+ getattr(self.cat, op)("b")
+
+
+class IndexArithmetic:
+
+ params = ["float", "int"]
+ param_names = ["dtype"]
+
+ def setup(self, dtype):
+ N = 10 ** 6
+ indexes = {"int": "makeIntIndex", "float": "makeFloatIndex"}
+ self.index = getattr(tm, indexes[dtype])(N)
+
+ def time_add(self, dtype):
+ self.index + 2
+
+ def time_subtract(self, dtype):
+ self.index - 2
+
+ def time_multiply(self, dtype):
+ self.index * 2
+
+ def time_divide(self, dtype):
+ self.index / 2
+
+ def time_modulo(self, dtype):
+ self.index % 2
+
+
+class NumericInferOps:
+ # from GH 7332
+ params = numeric_dtypes
+ param_names = ["dtype"]
+
+ def setup(self, dtype):
+ N = 5 * 10 ** 5
+ self.df = DataFrame(
+ {"A": np.arange(N).astype(dtype), "B": np.arange(N).astype(dtype)}
+ )
+
+ def time_add(self, dtype):
+ self.df["A"] + self.df["B"]
+
+ def time_subtract(self, dtype):
+ self.df["A"] - self.df["B"]
+
+ def time_multiply(self, dtype):
+ self.df["A"] * self.df["B"]
+
+ def time_divide(self, dtype):
+ self.df["A"] / self.df["B"]
+
+ def time_modulo(self, dtype):
+ self.df["A"] % self.df["B"]
+
+
+class DateInferOps:
+ # from GH 7332
+ def setup_cache(self):
+ N = 5 * 10 ** 5
+ df = DataFrame({"datetime64": np.arange(N).astype("datetime64[ms]")})
+ df["timedelta"] = df["datetime64"] - df["datetime64"]
+ return df
+
+ def time_subtract_datetimes(self, df):
+ df["datetime64"] - df["datetime64"]
+
+ def time_timedelta_plus_datetime(self, df):
+ df["timedelta"] + df["datetime64"]
+
+ def time_add_timedeltas(self, df):
+ df["timedelta"] + df["timedelta"]
+
+
class AddOverflowScalar:
params = [1, -1, 0]
@@ -188,4 +301,68 @@ def time_add_overflow_both_arg_nan(self):
)
+hcal = pd.tseries.holiday.USFederalHolidayCalendar()
+# These offsets currently raise a NotImplimentedError with .apply_index()
+non_apply = [
+ pd.offsets.Day(),
+ pd.offsets.BYearEnd(),
+ pd.offsets.BYearBegin(),
+ pd.offsets.BQuarterEnd(),
+ pd.offsets.BQuarterBegin(),
+ pd.offsets.BMonthEnd(),
+ pd.offsets.BMonthBegin(),
+ pd.offsets.CustomBusinessDay(),
+ pd.offsets.CustomBusinessDay(calendar=hcal),
+ pd.offsets.CustomBusinessMonthBegin(calendar=hcal),
+ pd.offsets.CustomBusinessMonthEnd(calendar=hcal),
+ pd.offsets.CustomBusinessMonthEnd(calendar=hcal),
+]
+other_offsets = [
+ pd.offsets.YearEnd(),
+ pd.offsets.YearBegin(),
+ pd.offsets.QuarterEnd(),
+ pd.offsets.QuarterBegin(),
+ pd.offsets.MonthEnd(),
+ pd.offsets.MonthBegin(),
+ pd.offsets.DateOffset(months=2, days=2),
+ pd.offsets.BusinessDay(),
+ pd.offsets.SemiMonthEnd(),
+ pd.offsets.SemiMonthBegin(),
+]
+offsets = non_apply + other_offsets
+
+
+class OffsetArrayArithmetic:
+
+ params = offsets
+ param_names = ["offset"]
+
+ def setup(self, offset):
+ N = 10000
+ rng = pd.date_range(start="1/1/2000", periods=N, freq="T")
+ self.rng = rng
+ self.ser = pd.Series(rng)
+
+ def time_add_series_offset(self, offset):
+ with warnings.catch_warnings(record=True):
+ self.ser + offset
+
+ def time_add_dti_offset(self, offset):
+ with warnings.catch_warnings(record=True):
+ self.rng + offset
+
+
+class ApplyIndex:
+ params = other_offsets
+ param_names = ["offset"]
+
+ def setup(self, offset):
+ N = 10000
+ rng = pd.date_range(start="1/1/2000", periods=N, freq="T")
+ self.rng = rng
+
+ def time_apply_index(self, offset):
+ offset.apply_index(self.rng)
+
+
from .pandas_vb_common import setup # noqa: F401 isort:skip
diff --git a/asv_bench/benchmarks/categoricals.py b/asv_bench/benchmarks/categoricals.py
index 1dcd52ac074a6..6f43a6fd3fc9b 100644
--- a/asv_bench/benchmarks/categoricals.py
+++ b/asv_bench/benchmarks/categoricals.py
@@ -63,18 +63,6 @@ def time_existing_series(self):
pd.Categorical(self.series)
-class CategoricalOps:
- params = ["__lt__", "__le__", "__eq__", "__ne__", "__ge__", "__gt__"]
- param_names = ["op"]
-
- def setup(self, op):
- N = 10 ** 5
- self.cat = pd.Categorical(list("aabbcd") * N, ordered=True)
-
- def time_categorical_op(self, op):
- getattr(self.cat, op)("b")
-
-
class Concat:
def setup(self):
N = 10 ** 5
diff --git a/asv_bench/benchmarks/index_object.py b/asv_bench/benchmarks/index_object.py
index 103141545504b..cf51a4d35f805 100644
--- a/asv_bench/benchmarks/index_object.py
+++ b/asv_bench/benchmarks/index_object.py
@@ -63,32 +63,6 @@ def time_is_dates_only(self):
self.dr._is_dates_only
-class Ops:
-
- params = ["float", "int"]
- param_names = ["dtype"]
-
- def setup(self, dtype):
- N = 10 ** 6
- indexes = {"int": "makeIntIndex", "float": "makeFloatIndex"}
- self.index = getattr(tm, indexes[dtype])(N)
-
- def time_add(self, dtype):
- self.index + 2
-
- def time_subtract(self, dtype):
- self.index - 2
-
- def time_multiply(self, dtype):
- self.index * 2
-
- def time_divide(self, dtype):
- self.index / 2
-
- def time_modulo(self, dtype):
- self.index % 2
-
-
class Range:
def setup(self):
self.idx_inc = RangeIndex(start=0, stop=10 ** 7, step=3)
diff --git a/asv_bench/benchmarks/inference.py b/asv_bench/benchmarks/inference.py
index 1a8d5ede52512..40b064229ae49 100644
--- a/asv_bench/benchmarks/inference.py
+++ b/asv_bench/benchmarks/inference.py
@@ -1,53 +1,8 @@
import numpy as np
-from pandas import DataFrame, Series, to_numeric
+from pandas import Series, to_numeric
-from .pandas_vb_common import lib, numeric_dtypes, tm
-
-
-class NumericInferOps:
- # from GH 7332
- params = numeric_dtypes
- param_names = ["dtype"]
-
- def setup(self, dtype):
- N = 5 * 10 ** 5
- self.df = DataFrame(
- {"A": np.arange(N).astype(dtype), "B": np.arange(N).astype(dtype)}
- )
-
- def time_add(self, dtype):
- self.df["A"] + self.df["B"]
-
- def time_subtract(self, dtype):
- self.df["A"] - self.df["B"]
-
- def time_multiply(self, dtype):
- self.df["A"] * self.df["B"]
-
- def time_divide(self, dtype):
- self.df["A"] / self.df["B"]
-
- def time_modulo(self, dtype):
- self.df["A"] % self.df["B"]
-
-
-class DateInferOps:
- # from GH 7332
- def setup_cache(self):
- N = 5 * 10 ** 5
- df = DataFrame({"datetime64": np.arange(N).astype("datetime64[ms]")})
- df["timedelta"] = df["datetime64"] - df["datetime64"]
- return df
-
- def time_subtract_datetimes(self, df):
- df["datetime64"] - df["datetime64"]
-
- def time_timedelta_plus_datetime(self, df):
- df["timedelta"] + df["datetime64"]
-
- def time_add_timedeltas(self, df):
- df["timedelta"] + df["timedelta"]
+from .pandas_vb_common import lib, tm
class ToNumeric:
diff --git a/asv_bench/benchmarks/offset.py b/asv_bench/benchmarks/offset.py
deleted file mode 100644
index 77ce1b2763bce..0000000000000
--- a/asv_bench/benchmarks/offset.py
+++ /dev/null
@@ -1,80 +0,0 @@
-import warnings
-
-import pandas as pd
-
-try:
- import pandas.tseries.holiday
-except ImportError:
- pass
-
-hcal = pd.tseries.holiday.USFederalHolidayCalendar()
-# These offsets currently raise a NotImplimentedError with .apply_index()
-non_apply = [
- pd.offsets.Day(),
- pd.offsets.BYearEnd(),
- pd.offsets.BYearBegin(),
- pd.offsets.BQuarterEnd(),
- pd.offsets.BQuarterBegin(),
- pd.offsets.BMonthEnd(),
- pd.offsets.BMonthBegin(),
- pd.offsets.CustomBusinessDay(),
- pd.offsets.CustomBusinessDay(calendar=hcal),
- pd.offsets.CustomBusinessMonthBegin(calendar=hcal),
- pd.offsets.CustomBusinessMonthEnd(calendar=hcal),
- pd.offsets.CustomBusinessMonthEnd(calendar=hcal),
-]
-other_offsets = [
- pd.offsets.YearEnd(),
- pd.offsets.YearBegin(),
- pd.offsets.QuarterEnd(),
- pd.offsets.QuarterBegin(),
- pd.offsets.MonthEnd(),
- pd.offsets.MonthBegin(),
- pd.offsets.DateOffset(months=2, days=2),
- pd.offsets.BusinessDay(),
- pd.offsets.SemiMonthEnd(),
- pd.offsets.SemiMonthBegin(),
-]
-offsets = non_apply + other_offsets
-
-
-class ApplyIndex:
-
- params = other_offsets
- param_names = ["offset"]
-
- def setup(self, offset):
- N = 10000
- self.rng = pd.date_range(start="1/1/2000", periods=N, freq="T")
-
- def time_apply_index(self, offset):
- offset.apply_index(self.rng)
-
-
-class OffsetSeriesArithmetic:
-
- params = offsets
- param_names = ["offset"]
-
- def setup(self, offset):
- N = 1000
- rng = pd.date_range(start="1/1/2000", periods=N, freq="T")
- self.data = pd.Series(rng)
-
- def time_add_offset(self, offset):
- with warnings.catch_warnings(record=True):
- self.data + offset
-
-
-class OffsetDatetimeIndexArithmetic:
-
- params = offsets
- param_names = ["offset"]
-
- def setup(self, offset):
- N = 1000
- self.data = pd.date_range(start="1/1/2000", periods=N, freq="T")
-
- def time_add_offset(self, offset):
- with warnings.catch_warnings(record=True):
- self.data + offset
diff --git a/asv_bench/benchmarks/timedelta.py b/asv_bench/benchmarks/timedelta.py
index 37418d752f833..208c8f9d14a5e 100644
--- a/asv_bench/benchmarks/timedelta.py
+++ b/asv_bench/benchmarks/timedelta.py
@@ -5,7 +5,7 @@
import numpy as np
-from pandas import DataFrame, Series, Timestamp, timedelta_range, to_timedelta
+from pandas import DataFrame, Series, timedelta_range, to_timedelta
class ToTimedelta:
@@ -41,15 +41,6 @@ def time_convert(self, errors):
to_timedelta(self.arr, errors=errors)
-class TimedeltaOps:
- def setup(self):
- self.td = to_timedelta(np.arange(1000000))
- self.ts = Timestamp("2000")
-
- def time_add_td_ts(self):
- self.td + self.ts
-
-
class DatetimeAccessor:
def setup_cache(self):
N = 100000
diff --git a/asv_bench/benchmarks/timeseries.py b/asv_bench/benchmarks/timeseries.py
index ba0b51922fd31..2f7ea8b9c0873 100644
--- a/asv_bench/benchmarks/timeseries.py
+++ b/asv_bench/benchmarks/timeseries.py
@@ -262,18 +262,6 @@ def time_get_slice(self, monotonic):
self.s[:10000]
-class IrregularOps:
- def setup(self):
- N = 10 ** 5
- idx = date_range(start="1/1/2000", periods=N, freq="s")
- s = Series(np.random.randn(N), index=idx)
- self.left = s.sample(frac=1)
- self.right = s.sample(frac=1)
-
- def time_add(self):
- self.left + self.right
-
-
class Lookup:
def setup(self):
N = 1500000
| ATM these are scattered, making it tough to a) run just arithmetic-relevant benchmarks and b) determine what we have good benchmark coverage for.
This collects the scattered benchmarks in one place, cleaning up and fleshing these out is for a separate pass.
I also intend to do something analogous for indexing benchmarks. | https://api.github.com/repos/pandas-dev/pandas/pulls/32116 | 2020-02-19T18:53:09Z | 2020-02-22T16:06:41Z | 2020-02-22T16:06:41Z | 2020-02-22T16:08:29Z |
add test for "Allow definition of `pd.CategoricalDtype` with a specific `categories.dtype`" | diff --git a/pandas/core/dtypes/dtypes.py b/pandas/core/dtypes/dtypes.py
index 8aaebe89871b6..70e677411b4a9 100644
--- a/pandas/core/dtypes/dtypes.py
+++ b/pandas/core/dtypes/dtypes.py
@@ -175,6 +175,8 @@ class CategoricalDtype(PandasExtensionDtype, ExtensionDtype):
----------
categories : sequence, optional
Must be unique, and must not contain any nulls.
+ The categories are stored in an Index,
+ and if an index is provided the dtype of that index will be used.
ordered : bool or None, default False
Whether or not this categorical is treated as a ordered categorical.
None can be used to maintain the ordered value of existing categoricals when
@@ -210,6 +212,12 @@ class CategoricalDtype(PandasExtensionDtype, ExtensionDtype):
3 NaN
dtype: category
Categories (2, object): [b < a]
+
+ An empty CategoricalDtype with a specific dtype can be created
+ by providing an empty index. As follows,
+
+ >>> pd.CategoricalDtype(pd.DatetimeIndex([])).categories.dtype
+ dtype('<M8[ns]')
"""
# TODO: Document public vs. private API
diff --git a/pandas/tests/dtypes/test_dtypes.py b/pandas/tests/dtypes/test_dtypes.py
index dd99b81fb6764..645912b2a2c21 100644
--- a/pandas/tests/dtypes/test_dtypes.py
+++ b/pandas/tests/dtypes/test_dtypes.py
@@ -26,7 +26,14 @@
)
import pandas as pd
-from pandas import Categorical, CategoricalIndex, IntervalIndex, Series, date_range
+from pandas import (
+ Categorical,
+ CategoricalIndex,
+ DatetimeIndex,
+ IntervalIndex,
+ Series,
+ date_range,
+)
import pandas._testing as tm
from pandas.core.arrays.sparse import SparseArray, SparseDtype
@@ -172,6 +179,11 @@ def test_is_boolean(self, categories, expected):
assert is_bool_dtype(cat) is expected
assert is_bool_dtype(cat.dtype) is expected
+ def test_dtype_specific_categorical_dtype(self):
+ expected = "datetime64[ns]"
+ result = str(Categorical(DatetimeIndex([])).categories.dtype)
+ assert result == expected
+
class TestDatetimeTZDtype(Base):
@pytest.fixture
| - [x] closes #32096
- [x] tests added / passed
| https://api.github.com/repos/pandas-dev/pandas/pulls/32115 | 2020-02-19T17:17:23Z | 2020-03-02T15:30:18Z | 2020-03-02T15:30:18Z | 2020-03-02T15:30:34Z |
REF/TST: implement test_interpolate for Series | diff --git a/pandas/tests/series/methods/test_interpolate.py b/pandas/tests/series/methods/test_interpolate.py
new file mode 100644
index 0000000000000..6844225a81a8f
--- /dev/null
+++ b/pandas/tests/series/methods/test_interpolate.py
@@ -0,0 +1,673 @@
+import numpy as np
+import pytest
+
+import pandas.util._test_decorators as td
+
+import pandas as pd
+from pandas import Index, MultiIndex, Series, date_range, isna
+import pandas._testing as tm
+
+
+@pytest.fixture(
+ params=[
+ "linear",
+ "index",
+ "values",
+ "nearest",
+ "slinear",
+ "zero",
+ "quadratic",
+ "cubic",
+ "barycentric",
+ "krogh",
+ "polynomial",
+ "spline",
+ "piecewise_polynomial",
+ "from_derivatives",
+ "pchip",
+ "akima",
+ ]
+)
+def nontemporal_method(request):
+ """ Fixture that returns an (method name, required kwargs) pair.
+
+ This fixture does not include method 'time' as a parameterization; that
+ method requires a Series with a DatetimeIndex, and is generally tested
+ separately from these non-temporal methods.
+ """
+ method = request.param
+ kwargs = dict(order=1) if method in ("spline", "polynomial") else dict()
+ return method, kwargs
+
+
+@pytest.fixture(
+ params=[
+ "linear",
+ "slinear",
+ "zero",
+ "quadratic",
+ "cubic",
+ "barycentric",
+ "krogh",
+ "polynomial",
+ "spline",
+ "piecewise_polynomial",
+ "from_derivatives",
+ "pchip",
+ "akima",
+ ]
+)
+def interp_methods_ind(request):
+ """ Fixture that returns a (method name, required kwargs) pair to
+ be tested for various Index types.
+
+ This fixture does not include methods - 'time', 'index', 'nearest',
+ 'values' as a parameterization
+ """
+ method = request.param
+ kwargs = dict(order=1) if method in ("spline", "polynomial") else dict()
+ return method, kwargs
+
+
+class TestSeriesInterpolateData:
+ def test_interpolate(self, datetime_series, string_series):
+ ts = Series(np.arange(len(datetime_series), dtype=float), datetime_series.index)
+
+ ts_copy = ts.copy()
+ ts_copy[5:10] = np.NaN
+
+ linear_interp = ts_copy.interpolate(method="linear")
+ tm.assert_series_equal(linear_interp, ts)
+
+ ord_ts = Series(
+ [d.toordinal() for d in datetime_series.index], index=datetime_series.index
+ ).astype(float)
+
+ ord_ts_copy = ord_ts.copy()
+ ord_ts_copy[5:10] = np.NaN
+
+ time_interp = ord_ts_copy.interpolate(method="time")
+ tm.assert_series_equal(time_interp, ord_ts)
+
+ def test_interpolate_time_raises_for_non_timeseries(self):
+ # When method='time' is used on a non-TimeSeries that contains a null
+ # value, a ValueError should be raised.
+ non_ts = Series([0, 1, 2, np.NaN])
+ msg = "time-weighted interpolation only works on Series.* with a DatetimeIndex"
+ with pytest.raises(ValueError, match=msg):
+ non_ts.interpolate(method="time")
+
+ @td.skip_if_no_scipy
+ def test_interpolate_pchip(self):
+
+ ser = Series(np.sort(np.random.uniform(size=100)))
+
+ # interpolate at new_index
+ new_index = ser.index.union(
+ Index([49.25, 49.5, 49.75, 50.25, 50.5, 50.75])
+ ).astype(float)
+ interp_s = ser.reindex(new_index).interpolate(method="pchip")
+ # does not blow up, GH5977
+ interp_s[49:51]
+
+ @td.skip_if_no_scipy
+ def test_interpolate_akima(self):
+
+ ser = Series([10, 11, 12, 13])
+
+ expected = Series(
+ [11.00, 11.25, 11.50, 11.75, 12.00, 12.25, 12.50, 12.75, 13.00],
+ index=Index([1.0, 1.25, 1.5, 1.75, 2.0, 2.25, 2.5, 2.75, 3.0]),
+ )
+ # interpolate at new_index
+ new_index = ser.index.union(Index([1.25, 1.5, 1.75, 2.25, 2.5, 2.75])).astype(
+ float
+ )
+ interp_s = ser.reindex(new_index).interpolate(method="akima")
+ tm.assert_series_equal(interp_s[1:3], expected)
+
+ @td.skip_if_no_scipy
+ def test_interpolate_piecewise_polynomial(self):
+ ser = Series([10, 11, 12, 13])
+
+ expected = Series(
+ [11.00, 11.25, 11.50, 11.75, 12.00, 12.25, 12.50, 12.75, 13.00],
+ index=Index([1.0, 1.25, 1.5, 1.75, 2.0, 2.25, 2.5, 2.75, 3.0]),
+ )
+ # interpolate at new_index
+ new_index = ser.index.union(Index([1.25, 1.5, 1.75, 2.25, 2.5, 2.75])).astype(
+ float
+ )
+ interp_s = ser.reindex(new_index).interpolate(method="piecewise_polynomial")
+ tm.assert_series_equal(interp_s[1:3], expected)
+
+ @td.skip_if_no_scipy
+ def test_interpolate_from_derivatives(self):
+ ser = Series([10, 11, 12, 13])
+
+ expected = Series(
+ [11.00, 11.25, 11.50, 11.75, 12.00, 12.25, 12.50, 12.75, 13.00],
+ index=Index([1.0, 1.25, 1.5, 1.75, 2.0, 2.25, 2.5, 2.75, 3.0]),
+ )
+ # interpolate at new_index
+ new_index = ser.index.union(Index([1.25, 1.5, 1.75, 2.25, 2.5, 2.75])).astype(
+ float
+ )
+ interp_s = ser.reindex(new_index).interpolate(method="from_derivatives")
+ tm.assert_series_equal(interp_s[1:3], expected)
+
+ @pytest.mark.parametrize(
+ "kwargs",
+ [
+ {},
+ pytest.param(
+ {"method": "polynomial", "order": 1}, marks=td.skip_if_no_scipy
+ ),
+ ],
+ )
+ def test_interpolate_corners(self, kwargs):
+ s = Series([np.nan, np.nan])
+ tm.assert_series_equal(s.interpolate(**kwargs), s)
+
+ s = Series([], dtype=object).interpolate()
+ tm.assert_series_equal(s.interpolate(**kwargs), s)
+
+ def test_interpolate_index_values(self):
+ s = Series(np.nan, index=np.sort(np.random.rand(30)))
+ s[::3] = np.random.randn(10)
+
+ vals = s.index.values.astype(float)
+
+ result = s.interpolate(method="index")
+
+ expected = s.copy()
+ bad = isna(expected.values)
+ good = ~bad
+ expected = Series(
+ np.interp(vals[bad], vals[good], s.values[good]), index=s.index[bad]
+ )
+
+ tm.assert_series_equal(result[bad], expected)
+
+ # 'values' is synonymous with 'index' for the method kwarg
+ other_result = s.interpolate(method="values")
+
+ tm.assert_series_equal(other_result, result)
+ tm.assert_series_equal(other_result[bad], expected)
+
+ def test_interpolate_non_ts(self):
+ s = Series([1, 3, np.nan, np.nan, np.nan, 11])
+ msg = (
+ "time-weighted interpolation only works on Series or DataFrames "
+ "with a DatetimeIndex"
+ )
+ with pytest.raises(ValueError, match=msg):
+ s.interpolate(method="time")
+
+ @pytest.mark.parametrize(
+ "kwargs",
+ [
+ {},
+ pytest.param(
+ {"method": "polynomial", "order": 1}, marks=td.skip_if_no_scipy
+ ),
+ ],
+ )
+ def test_nan_interpolate(self, kwargs):
+ s = Series([0, 1, np.nan, 3])
+ result = s.interpolate(**kwargs)
+ expected = Series([0.0, 1.0, 2.0, 3.0])
+ tm.assert_series_equal(result, expected)
+
+ def test_nan_irregular_index(self):
+ s = Series([1, 2, np.nan, 4], index=[1, 3, 5, 9])
+ result = s.interpolate()
+ expected = Series([1.0, 2.0, 3.0, 4.0], index=[1, 3, 5, 9])
+ tm.assert_series_equal(result, expected)
+
+ def test_nan_str_index(self):
+ s = Series([0, 1, 2, np.nan], index=list("abcd"))
+ result = s.interpolate()
+ expected = Series([0.0, 1.0, 2.0, 2.0], index=list("abcd"))
+ tm.assert_series_equal(result, expected)
+
+ @td.skip_if_no_scipy
+ def test_interp_quad(self):
+ sq = Series([1, 4, np.nan, 16], index=[1, 2, 3, 4])
+ result = sq.interpolate(method="quadratic")
+ expected = Series([1.0, 4.0, 9.0, 16.0], index=[1, 2, 3, 4])
+ tm.assert_series_equal(result, expected)
+
+ @td.skip_if_no_scipy
+ def test_interp_scipy_basic(self):
+ s = Series([1, 3, np.nan, 12, np.nan, 25])
+ # slinear
+ expected = Series([1.0, 3.0, 7.5, 12.0, 18.5, 25.0])
+ result = s.interpolate(method="slinear")
+ tm.assert_series_equal(result, expected)
+
+ result = s.interpolate(method="slinear", downcast="infer")
+ tm.assert_series_equal(result, expected)
+ # nearest
+ expected = Series([1, 3, 3, 12, 12, 25])
+ result = s.interpolate(method="nearest")
+ tm.assert_series_equal(result, expected.astype("float"))
+
+ result = s.interpolate(method="nearest", downcast="infer")
+ tm.assert_series_equal(result, expected)
+ # zero
+ expected = Series([1, 3, 3, 12, 12, 25])
+ result = s.interpolate(method="zero")
+ tm.assert_series_equal(result, expected.astype("float"))
+
+ result = s.interpolate(method="zero", downcast="infer")
+ tm.assert_series_equal(result, expected)
+ # quadratic
+ # GH #15662.
+ expected = Series([1, 3.0, 6.823529, 12.0, 18.058824, 25.0])
+ result = s.interpolate(method="quadratic")
+ tm.assert_series_equal(result, expected)
+
+ result = s.interpolate(method="quadratic", downcast="infer")
+ tm.assert_series_equal(result, expected)
+ # cubic
+ expected = Series([1.0, 3.0, 6.8, 12.0, 18.2, 25.0])
+ result = s.interpolate(method="cubic")
+ tm.assert_series_equal(result, expected)
+
+ def test_interp_limit(self):
+ s = Series([1, 3, np.nan, np.nan, np.nan, 11])
+
+ expected = Series([1.0, 3.0, 5.0, 7.0, np.nan, 11.0])
+ result = s.interpolate(method="linear", limit=2)
+ tm.assert_series_equal(result, expected)
+
+ @pytest.mark.parametrize("limit", [-1, 0])
+ def test_interpolate_invalid_nonpositive_limit(self, nontemporal_method, limit):
+ # GH 9217: make sure limit is greater than zero.
+ s = pd.Series([1, 2, np.nan, 4])
+ method, kwargs = nontemporal_method
+ with pytest.raises(ValueError, match="Limit must be greater than 0"):
+ s.interpolate(limit=limit, method=method, **kwargs)
+
+ def test_interpolate_invalid_float_limit(self, nontemporal_method):
+ # GH 9217: make sure limit is an integer.
+ s = pd.Series([1, 2, np.nan, 4])
+ method, kwargs = nontemporal_method
+ limit = 2.0
+ with pytest.raises(ValueError, match="Limit must be an integer"):
+ s.interpolate(limit=limit, method=method, **kwargs)
+
+ @pytest.mark.parametrize("invalid_method", [None, "nonexistent_method"])
+ def test_interp_invalid_method(self, invalid_method):
+ s = Series([1, 3, np.nan, 12, np.nan, 25])
+
+ msg = f"method must be one of.* Got '{invalid_method}' instead"
+ with pytest.raises(ValueError, match=msg):
+ s.interpolate(method=invalid_method)
+
+ # When an invalid method and invalid limit (such as -1) are
+ # provided, the error message reflects the invalid method.
+ with pytest.raises(ValueError, match=msg):
+ s.interpolate(method=invalid_method, limit=-1)
+
+ def test_interp_limit_forward(self):
+ s = Series([1, 3, np.nan, np.nan, np.nan, 11])
+
+ # Provide 'forward' (the default) explicitly here.
+ expected = Series([1.0, 3.0, 5.0, 7.0, np.nan, 11.0])
+
+ result = s.interpolate(method="linear", limit=2, limit_direction="forward")
+ tm.assert_series_equal(result, expected)
+
+ result = s.interpolate(method="linear", limit=2, limit_direction="FORWARD")
+ tm.assert_series_equal(result, expected)
+
+ def test_interp_unlimited(self):
+ # these test are for issue #16282 default Limit=None is unlimited
+ s = Series([np.nan, 1.0, 3.0, np.nan, np.nan, np.nan, 11.0, np.nan])
+ expected = Series([1.0, 1.0, 3.0, 5.0, 7.0, 9.0, 11.0, 11.0])
+ result = s.interpolate(method="linear", limit_direction="both")
+ tm.assert_series_equal(result, expected)
+
+ expected = Series([np.nan, 1.0, 3.0, 5.0, 7.0, 9.0, 11.0, 11.0])
+ result = s.interpolate(method="linear", limit_direction="forward")
+ tm.assert_series_equal(result, expected)
+
+ expected = Series([1.0, 1.0, 3.0, 5.0, 7.0, 9.0, 11.0, np.nan])
+ result = s.interpolate(method="linear", limit_direction="backward")
+ tm.assert_series_equal(result, expected)
+
+ def test_interp_limit_bad_direction(self):
+ s = Series([1, 3, np.nan, np.nan, np.nan, 11])
+
+ msg = (
+ r"Invalid limit_direction: expecting one of \['forward', "
+ r"'backward', 'both'\], got 'abc'"
+ )
+ with pytest.raises(ValueError, match=msg):
+ s.interpolate(method="linear", limit=2, limit_direction="abc")
+
+ # raises an error even if no limit is specified.
+ with pytest.raises(ValueError, match=msg):
+ s.interpolate(method="linear", limit_direction="abc")
+
+ # limit_area introduced GH #16284
+ def test_interp_limit_area(self):
+ # These tests are for issue #9218 -- fill NaNs in both directions.
+ s = Series([np.nan, np.nan, 3, np.nan, np.nan, np.nan, 7, np.nan, np.nan])
+
+ expected = Series([np.nan, np.nan, 3.0, 4.0, 5.0, 6.0, 7.0, np.nan, np.nan])
+ result = s.interpolate(method="linear", limit_area="inside")
+ tm.assert_series_equal(result, expected)
+
+ expected = Series(
+ [np.nan, np.nan, 3.0, 4.0, np.nan, np.nan, 7.0, np.nan, np.nan]
+ )
+ result = s.interpolate(method="linear", limit_area="inside", limit=1)
+ tm.assert_series_equal(result, expected)
+
+ expected = Series([np.nan, np.nan, 3.0, 4.0, np.nan, 6.0, 7.0, np.nan, np.nan])
+ result = s.interpolate(
+ method="linear", limit_area="inside", limit_direction="both", limit=1
+ )
+ tm.assert_series_equal(result, expected)
+
+ expected = Series([np.nan, np.nan, 3.0, np.nan, np.nan, np.nan, 7.0, 7.0, 7.0])
+ result = s.interpolate(method="linear", limit_area="outside")
+ tm.assert_series_equal(result, expected)
+
+ expected = Series(
+ [np.nan, np.nan, 3.0, np.nan, np.nan, np.nan, 7.0, 7.0, np.nan]
+ )
+ result = s.interpolate(method="linear", limit_area="outside", limit=1)
+ tm.assert_series_equal(result, expected)
+
+ expected = Series([np.nan, 3.0, 3.0, np.nan, np.nan, np.nan, 7.0, 7.0, np.nan])
+ result = s.interpolate(
+ method="linear", limit_area="outside", limit_direction="both", limit=1
+ )
+ tm.assert_series_equal(result, expected)
+
+ expected = Series([3.0, 3.0, 3.0, np.nan, np.nan, np.nan, 7.0, np.nan, np.nan])
+ result = s.interpolate(
+ method="linear", limit_area="outside", limit_direction="backward"
+ )
+ tm.assert_series_equal(result, expected)
+
+ # raises an error even if limit type is wrong.
+ msg = r"Invalid limit_area: expecting one of \['inside', 'outside'\], got abc"
+ with pytest.raises(ValueError, match=msg):
+ s.interpolate(method="linear", limit_area="abc")
+
+ def test_interp_limit_direction(self):
+ # These tests are for issue #9218 -- fill NaNs in both directions.
+ s = Series([1, 3, np.nan, np.nan, np.nan, 11])
+
+ expected = Series([1.0, 3.0, np.nan, 7.0, 9.0, 11.0])
+ result = s.interpolate(method="linear", limit=2, limit_direction="backward")
+ tm.assert_series_equal(result, expected)
+
+ expected = Series([1.0, 3.0, 5.0, np.nan, 9.0, 11.0])
+ result = s.interpolate(method="linear", limit=1, limit_direction="both")
+ tm.assert_series_equal(result, expected)
+
+ # Check that this works on a longer series of nans.
+ s = Series([1, 3, np.nan, np.nan, np.nan, 7, 9, np.nan, np.nan, 12, np.nan])
+
+ expected = Series([1.0, 3.0, 4.0, 5.0, 6.0, 7.0, 9.0, 10.0, 11.0, 12.0, 12.0])
+ result = s.interpolate(method="linear", limit=2, limit_direction="both")
+ tm.assert_series_equal(result, expected)
+
+ expected = Series(
+ [1.0, 3.0, 4.0, np.nan, 6.0, 7.0, 9.0, 10.0, 11.0, 12.0, 12.0]
+ )
+ result = s.interpolate(method="linear", limit=1, limit_direction="both")
+ tm.assert_series_equal(result, expected)
+
+ def test_interp_limit_to_ends(self):
+ # These test are for issue #10420 -- flow back to beginning.
+ s = Series([np.nan, np.nan, 5, 7, 9, np.nan])
+
+ expected = Series([5.0, 5.0, 5.0, 7.0, 9.0, np.nan])
+ result = s.interpolate(method="linear", limit=2, limit_direction="backward")
+ tm.assert_series_equal(result, expected)
+
+ expected = Series([5.0, 5.0, 5.0, 7.0, 9.0, 9.0])
+ result = s.interpolate(method="linear", limit=2, limit_direction="both")
+ tm.assert_series_equal(result, expected)
+
+ def test_interp_limit_before_ends(self):
+ # These test are for issue #11115 -- limit ends properly.
+ s = Series([np.nan, np.nan, 5, 7, np.nan, np.nan])
+
+ expected = Series([np.nan, np.nan, 5.0, 7.0, 7.0, np.nan])
+ result = s.interpolate(method="linear", limit=1, limit_direction="forward")
+ tm.assert_series_equal(result, expected)
+
+ expected = Series([np.nan, 5.0, 5.0, 7.0, np.nan, np.nan])
+ result = s.interpolate(method="linear", limit=1, limit_direction="backward")
+ tm.assert_series_equal(result, expected)
+
+ expected = Series([np.nan, 5.0, 5.0, 7.0, 7.0, np.nan])
+ result = s.interpolate(method="linear", limit=1, limit_direction="both")
+ tm.assert_series_equal(result, expected)
+
+ @td.skip_if_no_scipy
+ def test_interp_all_good(self):
+ s = Series([1, 2, 3])
+ result = s.interpolate(method="polynomial", order=1)
+ tm.assert_series_equal(result, s)
+
+ # non-scipy
+ result = s.interpolate()
+ tm.assert_series_equal(result, s)
+
+ @pytest.mark.parametrize(
+ "check_scipy", [False, pytest.param(True, marks=td.skip_if_no_scipy)]
+ )
+ def test_interp_multiIndex(self, check_scipy):
+ idx = MultiIndex.from_tuples([(0, "a"), (1, "b"), (2, "c")])
+ s = Series([1, 2, np.nan], index=idx)
+
+ expected = s.copy()
+ expected.loc[2] = 2
+ result = s.interpolate()
+ tm.assert_series_equal(result, expected)
+
+ msg = "Only `method=linear` interpolation is supported on MultiIndexes"
+ if check_scipy:
+ with pytest.raises(ValueError, match=msg):
+ s.interpolate(method="polynomial", order=1)
+
+ @td.skip_if_no_scipy
+ def test_interp_nonmono_raise(self):
+ s = Series([1, np.nan, 3], index=[0, 2, 1])
+ msg = "krogh interpolation requires that the index be monotonic"
+ with pytest.raises(ValueError, match=msg):
+ s.interpolate(method="krogh")
+
+ @td.skip_if_no_scipy
+ @pytest.mark.parametrize("method", ["nearest", "pad"])
+ def test_interp_datetime64(self, method, tz_naive_fixture):
+ df = Series(
+ [1, np.nan, 3], index=date_range("1/1/2000", periods=3, tz=tz_naive_fixture)
+ )
+ result = df.interpolate(method=method)
+ expected = Series(
+ [1.0, 1.0, 3.0],
+ index=date_range("1/1/2000", periods=3, tz=tz_naive_fixture),
+ )
+ tm.assert_series_equal(result, expected)
+
+ def test_interp_pad_datetime64tz_values(self):
+ # GH#27628 missing.interpolate_2d should handle datetimetz values
+ dti = pd.date_range("2015-04-05", periods=3, tz="US/Central")
+ ser = pd.Series(dti)
+ ser[1] = pd.NaT
+ result = ser.interpolate(method="pad")
+
+ expected = pd.Series(dti)
+ expected[1] = expected[0]
+ tm.assert_series_equal(result, expected)
+
+ def test_interp_limit_no_nans(self):
+ # GH 7173
+ s = pd.Series([1.0, 2.0, 3.0])
+ result = s.interpolate(limit=1)
+ expected = s
+ tm.assert_series_equal(result, expected)
+
+ @td.skip_if_no_scipy
+ @pytest.mark.parametrize("method", ["polynomial", "spline"])
+ def test_no_order(self, method):
+ # see GH-10633, GH-24014
+ s = Series([0, 1, np.nan, 3])
+ msg = "You must specify the order of the spline or polynomial"
+ with pytest.raises(ValueError, match=msg):
+ s.interpolate(method=method)
+
+ @td.skip_if_no_scipy
+ @pytest.mark.parametrize("order", [-1, -1.0, 0, 0.0, np.nan])
+ def test_interpolate_spline_invalid_order(self, order):
+ s = Series([0, 1, np.nan, 3])
+ msg = "order needs to be specified and greater than 0"
+ with pytest.raises(ValueError, match=msg):
+ s.interpolate(method="spline", order=order)
+
+ @td.skip_if_no_scipy
+ def test_spline(self):
+ s = Series([1, 2, np.nan, 4, 5, np.nan, 7])
+ result = s.interpolate(method="spline", order=1)
+ expected = Series([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0])
+ tm.assert_series_equal(result, expected)
+
+ @td.skip_if_no_scipy
+ def test_spline_extrapolate(self):
+ s = Series([1, 2, 3, 4, np.nan, 6, np.nan])
+ result3 = s.interpolate(method="spline", order=1, ext=3)
+ expected3 = Series([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 6.0])
+ tm.assert_series_equal(result3, expected3)
+
+ result1 = s.interpolate(method="spline", order=1, ext=0)
+ expected1 = Series([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0])
+ tm.assert_series_equal(result1, expected1)
+
+ @td.skip_if_no_scipy
+ def test_spline_smooth(self):
+ s = Series([1, 2, np.nan, 4, 5.1, np.nan, 7])
+ assert (
+ s.interpolate(method="spline", order=3, s=0)[5]
+ != s.interpolate(method="spline", order=3)[5]
+ )
+
+ @td.skip_if_no_scipy
+ def test_spline_interpolation(self):
+ s = Series(np.arange(10) ** 2)
+ s[np.random.randint(0, 9, 3)] = np.nan
+ result1 = s.interpolate(method="spline", order=1)
+ expected1 = s.interpolate(method="spline", order=1)
+ tm.assert_series_equal(result1, expected1)
+
+ def test_interp_timedelta64(self):
+ # GH 6424
+ df = Series([1, np.nan, 3], index=pd.to_timedelta([1, 2, 3]))
+ result = df.interpolate(method="time")
+ expected = Series([1.0, 2.0, 3.0], index=pd.to_timedelta([1, 2, 3]))
+ tm.assert_series_equal(result, expected)
+
+ # test for non uniform spacing
+ df = Series([1, np.nan, 3], index=pd.to_timedelta([1, 2, 4]))
+ result = df.interpolate(method="time")
+ expected = Series([1.0, 1.666667, 3.0], index=pd.to_timedelta([1, 2, 4]))
+ tm.assert_series_equal(result, expected)
+
+ def test_series_interpolate_method_values(self):
+ # GH#1646
+ rng = date_range("1/1/2000", "1/20/2000", freq="D")
+ ts = Series(np.random.randn(len(rng)), index=rng)
+
+ ts[::2] = np.nan
+
+ result = ts.interpolate(method="values")
+ exp = ts.interpolate()
+ tm.assert_series_equal(result, exp)
+
+ def test_series_interpolate_intraday(self):
+ # #1698
+ index = pd.date_range("1/1/2012", periods=4, freq="12D")
+ ts = pd.Series([0, 12, 24, 36], index)
+ new_index = index.append(index + pd.DateOffset(days=1)).sort_values()
+
+ exp = ts.reindex(new_index).interpolate(method="time")
+
+ index = pd.date_range("1/1/2012", periods=4, freq="12H")
+ ts = pd.Series([0, 12, 24, 36], index)
+ new_index = index.append(index + pd.DateOffset(hours=1)).sort_values()
+ result = ts.reindex(new_index).interpolate(method="time")
+
+ tm.assert_numpy_array_equal(result.values, exp.values)
+
+ @pytest.mark.parametrize(
+ "ind",
+ [
+ ["a", "b", "c", "d"],
+ pd.period_range(start="2019-01-01", periods=4),
+ pd.interval_range(start=0, end=4),
+ ],
+ )
+ def test_interp_non_timedelta_index(self, interp_methods_ind, ind):
+ # gh 21662
+ df = pd.DataFrame([0, 1, np.nan, 3], index=ind)
+
+ method, kwargs = interp_methods_ind
+ if method == "pchip":
+ pytest.importorskip("scipy")
+
+ if method == "linear":
+ result = df[0].interpolate(**kwargs)
+ expected = pd.Series([0.0, 1.0, 2.0, 3.0], name=0, index=ind)
+ tm.assert_series_equal(result, expected)
+ else:
+ expected_error = (
+ "Index column must be numeric or datetime type when "
+ f"using {method} method other than linear. "
+ "Try setting a numeric or datetime index column before "
+ "interpolating."
+ )
+ with pytest.raises(ValueError, match=expected_error):
+ df[0].interpolate(method=method, **kwargs)
+
+ def test_interpolate_timedelta_index(self, interp_methods_ind):
+ """
+ Tests for non numerical index types - object, period, timedelta
+ Note that all methods except time, index, nearest and values
+ are tested here.
+ """
+ # gh 21662
+ ind = pd.timedelta_range(start=1, periods=4)
+ df = pd.DataFrame([0, 1, np.nan, 3], index=ind)
+
+ method, kwargs = interp_methods_ind
+ if method == "pchip":
+ pytest.importorskip("scipy")
+
+ if method in {"linear", "pchip"}:
+ result = df[0].interpolate(method=method, **kwargs)
+ expected = pd.Series([0.0, 1.0, 2.0, 3.0], name=0, index=ind)
+ tm.assert_series_equal(result, expected)
+ else:
+ pytest.skip(
+ "This interpolation method is not supported for Timedelta Index yet."
+ )
+
+ @pytest.mark.parametrize(
+ "ascending, expected_values",
+ [(True, [1, 2, 3, 9, 10]), (False, [10, 9, 3, 2, 1])],
+ )
+ def test_interpolate_unsorted_index(self, ascending, expected_values):
+ # GH 21037
+ ts = pd.Series(data=[10, 9, np.nan, 2, 1], index=[10, 9, 3, 2, 1])
+ result = ts.sort_index(ascending=ascending).interpolate(method="index")
+ expected = pd.Series(data=expected_values, index=expected_values, dtype=float)
+ tm.assert_series_equal(result, expected)
diff --git a/pandas/tests/series/test_internals.py b/pandas/tests/series/test_internals.py
index 4c817ed2e2d59..1566d8f36373b 100644
--- a/pandas/tests/series/test_internals.py
+++ b/pandas/tests/series/test_internals.py
@@ -169,6 +169,7 @@ def test_convert(self):
result = s._convert(datetime=True, coerce=True)
tm.assert_series_equal(result, s)
+ # FIXME: dont leave commented-out
# r = s.copy()
# r[0] = np.nan
# result = r._convert(convert_dates=True,convert_numeric=False)
diff --git a/pandas/tests/series/test_missing.py b/pandas/tests/series/test_missing.py
index 6b7d9e00a5228..bac005465034f 100644
--- a/pandas/tests/series/test_missing.py
+++ b/pandas/tests/series/test_missing.py
@@ -5,7 +5,6 @@
import pytz
from pandas._libs.tslib import iNaT
-import pandas.util._test_decorators as td
import pandas as pd
from pandas import (
@@ -13,7 +12,6 @@
DataFrame,
Index,
IntervalIndex,
- MultiIndex,
NaT,
Series,
Timedelta,
@@ -24,11 +22,6 @@
import pandas._testing as tm
-def _simple_ts(start, end, freq="D"):
- rng = date_range(start, end, freq=freq)
- return Series(np.random.randn(len(rng)), index=rng)
-
-
class TestSeriesMissingData:
def test_timedelta_fillna(self):
# GH 3371
@@ -988,666 +981,3 @@ def test_series_pad_backfill_limit(self):
expected = s[-2:].reindex(index).fillna(method="backfill")
expected[:3] = np.nan
tm.assert_series_equal(result, expected)
-
-
-@pytest.fixture(
- params=[
- "linear",
- "index",
- "values",
- "nearest",
- "slinear",
- "zero",
- "quadratic",
- "cubic",
- "barycentric",
- "krogh",
- "polynomial",
- "spline",
- "piecewise_polynomial",
- "from_derivatives",
- "pchip",
- "akima",
- ]
-)
-def nontemporal_method(request):
- """ Fixture that returns an (method name, required kwargs) pair.
-
- This fixture does not include method 'time' as a parameterization; that
- method requires a Series with a DatetimeIndex, and is generally tested
- separately from these non-temporal methods.
- """
- method = request.param
- kwargs = dict(order=1) if method in ("spline", "polynomial") else dict()
- return method, kwargs
-
-
-@pytest.fixture(
- params=[
- "linear",
- "slinear",
- "zero",
- "quadratic",
- "cubic",
- "barycentric",
- "krogh",
- "polynomial",
- "spline",
- "piecewise_polynomial",
- "from_derivatives",
- "pchip",
- "akima",
- ]
-)
-def interp_methods_ind(request):
- """ Fixture that returns a (method name, required kwargs) pair to
- be tested for various Index types.
-
- This fixture does not include methods - 'time', 'index', 'nearest',
- 'values' as a parameterization
- """
- method = request.param
- kwargs = dict(order=1) if method in ("spline", "polynomial") else dict()
- return method, kwargs
-
-
-class TestSeriesInterpolateData:
- def test_interpolate(self, datetime_series, string_series):
- ts = Series(np.arange(len(datetime_series), dtype=float), datetime_series.index)
-
- ts_copy = ts.copy()
- ts_copy[5:10] = np.NaN
-
- linear_interp = ts_copy.interpolate(method="linear")
- tm.assert_series_equal(linear_interp, ts)
-
- ord_ts = Series(
- [d.toordinal() for d in datetime_series.index], index=datetime_series.index
- ).astype(float)
-
- ord_ts_copy = ord_ts.copy()
- ord_ts_copy[5:10] = np.NaN
-
- time_interp = ord_ts_copy.interpolate(method="time")
- tm.assert_series_equal(time_interp, ord_ts)
-
- def test_interpolate_time_raises_for_non_timeseries(self):
- # When method='time' is used on a non-TimeSeries that contains a null
- # value, a ValueError should be raised.
- non_ts = Series([0, 1, 2, np.NaN])
- msg = "time-weighted interpolation only works on Series.* with a DatetimeIndex"
- with pytest.raises(ValueError, match=msg):
- non_ts.interpolate(method="time")
-
- @td.skip_if_no_scipy
- def test_interpolate_pchip(self):
-
- ser = Series(np.sort(np.random.uniform(size=100)))
-
- # interpolate at new_index
- new_index = ser.index.union(
- Index([49.25, 49.5, 49.75, 50.25, 50.5, 50.75])
- ).astype(float)
- interp_s = ser.reindex(new_index).interpolate(method="pchip")
- # does not blow up, GH5977
- interp_s[49:51]
-
- @td.skip_if_no_scipy
- def test_interpolate_akima(self):
-
- ser = Series([10, 11, 12, 13])
-
- expected = Series(
- [11.00, 11.25, 11.50, 11.75, 12.00, 12.25, 12.50, 12.75, 13.00],
- index=Index([1.0, 1.25, 1.5, 1.75, 2.0, 2.25, 2.5, 2.75, 3.0]),
- )
- # interpolate at new_index
- new_index = ser.index.union(Index([1.25, 1.5, 1.75, 2.25, 2.5, 2.75])).astype(
- float
- )
- interp_s = ser.reindex(new_index).interpolate(method="akima")
- tm.assert_series_equal(interp_s[1:3], expected)
-
- @td.skip_if_no_scipy
- def test_interpolate_piecewise_polynomial(self):
- ser = Series([10, 11, 12, 13])
-
- expected = Series(
- [11.00, 11.25, 11.50, 11.75, 12.00, 12.25, 12.50, 12.75, 13.00],
- index=Index([1.0, 1.25, 1.5, 1.75, 2.0, 2.25, 2.5, 2.75, 3.0]),
- )
- # interpolate at new_index
- new_index = ser.index.union(Index([1.25, 1.5, 1.75, 2.25, 2.5, 2.75])).astype(
- float
- )
- interp_s = ser.reindex(new_index).interpolate(method="piecewise_polynomial")
- tm.assert_series_equal(interp_s[1:3], expected)
-
- @td.skip_if_no_scipy
- def test_interpolate_from_derivatives(self):
- ser = Series([10, 11, 12, 13])
-
- expected = Series(
- [11.00, 11.25, 11.50, 11.75, 12.00, 12.25, 12.50, 12.75, 13.00],
- index=Index([1.0, 1.25, 1.5, 1.75, 2.0, 2.25, 2.5, 2.75, 3.0]),
- )
- # interpolate at new_index
- new_index = ser.index.union(Index([1.25, 1.5, 1.75, 2.25, 2.5, 2.75])).astype(
- float
- )
- interp_s = ser.reindex(new_index).interpolate(method="from_derivatives")
- tm.assert_series_equal(interp_s[1:3], expected)
-
- @pytest.mark.parametrize(
- "kwargs",
- [
- {},
- pytest.param(
- {"method": "polynomial", "order": 1}, marks=td.skip_if_no_scipy
- ),
- ],
- )
- def test_interpolate_corners(self, kwargs):
- s = Series([np.nan, np.nan])
- tm.assert_series_equal(s.interpolate(**kwargs), s)
-
- s = Series([], dtype=object).interpolate()
- tm.assert_series_equal(s.interpolate(**kwargs), s)
-
- def test_interpolate_index_values(self):
- s = Series(np.nan, index=np.sort(np.random.rand(30)))
- s[::3] = np.random.randn(10)
-
- vals = s.index.values.astype(float)
-
- result = s.interpolate(method="index")
-
- expected = s.copy()
- bad = isna(expected.values)
- good = ~bad
- expected = Series(
- np.interp(vals[bad], vals[good], s.values[good]), index=s.index[bad]
- )
-
- tm.assert_series_equal(result[bad], expected)
-
- # 'values' is synonymous with 'index' for the method kwarg
- other_result = s.interpolate(method="values")
-
- tm.assert_series_equal(other_result, result)
- tm.assert_series_equal(other_result[bad], expected)
-
- def test_interpolate_non_ts(self):
- s = Series([1, 3, np.nan, np.nan, np.nan, 11])
- msg = (
- "time-weighted interpolation only works on Series or DataFrames "
- "with a DatetimeIndex"
- )
- with pytest.raises(ValueError, match=msg):
- s.interpolate(method="time")
-
- @pytest.mark.parametrize(
- "kwargs",
- [
- {},
- pytest.param(
- {"method": "polynomial", "order": 1}, marks=td.skip_if_no_scipy
- ),
- ],
- )
- def test_nan_interpolate(self, kwargs):
- s = Series([0, 1, np.nan, 3])
- result = s.interpolate(**kwargs)
- expected = Series([0.0, 1.0, 2.0, 3.0])
- tm.assert_series_equal(result, expected)
-
- def test_nan_irregular_index(self):
- s = Series([1, 2, np.nan, 4], index=[1, 3, 5, 9])
- result = s.interpolate()
- expected = Series([1.0, 2.0, 3.0, 4.0], index=[1, 3, 5, 9])
- tm.assert_series_equal(result, expected)
-
- def test_nan_str_index(self):
- s = Series([0, 1, 2, np.nan], index=list("abcd"))
- result = s.interpolate()
- expected = Series([0.0, 1.0, 2.0, 2.0], index=list("abcd"))
- tm.assert_series_equal(result, expected)
-
- @td.skip_if_no_scipy
- def test_interp_quad(self):
- sq = Series([1, 4, np.nan, 16], index=[1, 2, 3, 4])
- result = sq.interpolate(method="quadratic")
- expected = Series([1.0, 4.0, 9.0, 16.0], index=[1, 2, 3, 4])
- tm.assert_series_equal(result, expected)
-
- @td.skip_if_no_scipy
- def test_interp_scipy_basic(self):
- s = Series([1, 3, np.nan, 12, np.nan, 25])
- # slinear
- expected = Series([1.0, 3.0, 7.5, 12.0, 18.5, 25.0])
- result = s.interpolate(method="slinear")
- tm.assert_series_equal(result, expected)
-
- result = s.interpolate(method="slinear", downcast="infer")
- tm.assert_series_equal(result, expected)
- # nearest
- expected = Series([1, 3, 3, 12, 12, 25])
- result = s.interpolate(method="nearest")
- tm.assert_series_equal(result, expected.astype("float"))
-
- result = s.interpolate(method="nearest", downcast="infer")
- tm.assert_series_equal(result, expected)
- # zero
- expected = Series([1, 3, 3, 12, 12, 25])
- result = s.interpolate(method="zero")
- tm.assert_series_equal(result, expected.astype("float"))
-
- result = s.interpolate(method="zero", downcast="infer")
- tm.assert_series_equal(result, expected)
- # quadratic
- # GH #15662.
- expected = Series([1, 3.0, 6.823529, 12.0, 18.058824, 25.0])
- result = s.interpolate(method="quadratic")
- tm.assert_series_equal(result, expected)
-
- result = s.interpolate(method="quadratic", downcast="infer")
- tm.assert_series_equal(result, expected)
- # cubic
- expected = Series([1.0, 3.0, 6.8, 12.0, 18.2, 25.0])
- result = s.interpolate(method="cubic")
- tm.assert_series_equal(result, expected)
-
- def test_interp_limit(self):
- s = Series([1, 3, np.nan, np.nan, np.nan, 11])
-
- expected = Series([1.0, 3.0, 5.0, 7.0, np.nan, 11.0])
- result = s.interpolate(method="linear", limit=2)
- tm.assert_series_equal(result, expected)
-
- @pytest.mark.parametrize("limit", [-1, 0])
- def test_interpolate_invalid_nonpositive_limit(self, nontemporal_method, limit):
- # GH 9217: make sure limit is greater than zero.
- s = pd.Series([1, 2, np.nan, 4])
- method, kwargs = nontemporal_method
- with pytest.raises(ValueError, match="Limit must be greater than 0"):
- s.interpolate(limit=limit, method=method, **kwargs)
-
- def test_interpolate_invalid_float_limit(self, nontemporal_method):
- # GH 9217: make sure limit is an integer.
- s = pd.Series([1, 2, np.nan, 4])
- method, kwargs = nontemporal_method
- limit = 2.0
- with pytest.raises(ValueError, match="Limit must be an integer"):
- s.interpolate(limit=limit, method=method, **kwargs)
-
- @pytest.mark.parametrize("invalid_method", [None, "nonexistent_method"])
- def test_interp_invalid_method(self, invalid_method):
- s = Series([1, 3, np.nan, 12, np.nan, 25])
-
- msg = f"method must be one of.* Got '{invalid_method}' instead"
- with pytest.raises(ValueError, match=msg):
- s.interpolate(method=invalid_method)
-
- # When an invalid method and invalid limit (such as -1) are
- # provided, the error message reflects the invalid method.
- with pytest.raises(ValueError, match=msg):
- s.interpolate(method=invalid_method, limit=-1)
-
- def test_interp_limit_forward(self):
- s = Series([1, 3, np.nan, np.nan, np.nan, 11])
-
- # Provide 'forward' (the default) explicitly here.
- expected = Series([1.0, 3.0, 5.0, 7.0, np.nan, 11.0])
-
- result = s.interpolate(method="linear", limit=2, limit_direction="forward")
- tm.assert_series_equal(result, expected)
-
- result = s.interpolate(method="linear", limit=2, limit_direction="FORWARD")
- tm.assert_series_equal(result, expected)
-
- def test_interp_unlimited(self):
- # these test are for issue #16282 default Limit=None is unlimited
- s = Series([np.nan, 1.0, 3.0, np.nan, np.nan, np.nan, 11.0, np.nan])
- expected = Series([1.0, 1.0, 3.0, 5.0, 7.0, 9.0, 11.0, 11.0])
- result = s.interpolate(method="linear", limit_direction="both")
- tm.assert_series_equal(result, expected)
-
- expected = Series([np.nan, 1.0, 3.0, 5.0, 7.0, 9.0, 11.0, 11.0])
- result = s.interpolate(method="linear", limit_direction="forward")
- tm.assert_series_equal(result, expected)
-
- expected = Series([1.0, 1.0, 3.0, 5.0, 7.0, 9.0, 11.0, np.nan])
- result = s.interpolate(method="linear", limit_direction="backward")
- tm.assert_series_equal(result, expected)
-
- def test_interp_limit_bad_direction(self):
- s = Series([1, 3, np.nan, np.nan, np.nan, 11])
-
- msg = (
- r"Invalid limit_direction: expecting one of \['forward', "
- r"'backward', 'both'\], got 'abc'"
- )
- with pytest.raises(ValueError, match=msg):
- s.interpolate(method="linear", limit=2, limit_direction="abc")
-
- # raises an error even if no limit is specified.
- with pytest.raises(ValueError, match=msg):
- s.interpolate(method="linear", limit_direction="abc")
-
- # limit_area introduced GH #16284
- def test_interp_limit_area(self):
- # These tests are for issue #9218 -- fill NaNs in both directions.
- s = Series([np.nan, np.nan, 3, np.nan, np.nan, np.nan, 7, np.nan, np.nan])
-
- expected = Series([np.nan, np.nan, 3.0, 4.0, 5.0, 6.0, 7.0, np.nan, np.nan])
- result = s.interpolate(method="linear", limit_area="inside")
- tm.assert_series_equal(result, expected)
-
- expected = Series(
- [np.nan, np.nan, 3.0, 4.0, np.nan, np.nan, 7.0, np.nan, np.nan]
- )
- result = s.interpolate(method="linear", limit_area="inside", limit=1)
- tm.assert_series_equal(result, expected)
-
- expected = Series([np.nan, np.nan, 3.0, 4.0, np.nan, 6.0, 7.0, np.nan, np.nan])
- result = s.interpolate(
- method="linear", limit_area="inside", limit_direction="both", limit=1
- )
- tm.assert_series_equal(result, expected)
-
- expected = Series([np.nan, np.nan, 3.0, np.nan, np.nan, np.nan, 7.0, 7.0, 7.0])
- result = s.interpolate(method="linear", limit_area="outside")
- tm.assert_series_equal(result, expected)
-
- expected = Series(
- [np.nan, np.nan, 3.0, np.nan, np.nan, np.nan, 7.0, 7.0, np.nan]
- )
- result = s.interpolate(method="linear", limit_area="outside", limit=1)
- tm.assert_series_equal(result, expected)
-
- expected = Series([np.nan, 3.0, 3.0, np.nan, np.nan, np.nan, 7.0, 7.0, np.nan])
- result = s.interpolate(
- method="linear", limit_area="outside", limit_direction="both", limit=1
- )
- tm.assert_series_equal(result, expected)
-
- expected = Series([3.0, 3.0, 3.0, np.nan, np.nan, np.nan, 7.0, np.nan, np.nan])
- result = s.interpolate(
- method="linear", limit_area="outside", limit_direction="backward"
- )
- tm.assert_series_equal(result, expected)
-
- # raises an error even if limit type is wrong.
- msg = r"Invalid limit_area: expecting one of \['inside', 'outside'\], got abc"
- with pytest.raises(ValueError, match=msg):
- s.interpolate(method="linear", limit_area="abc")
-
- def test_interp_limit_direction(self):
- # These tests are for issue #9218 -- fill NaNs in both directions.
- s = Series([1, 3, np.nan, np.nan, np.nan, 11])
-
- expected = Series([1.0, 3.0, np.nan, 7.0, 9.0, 11.0])
- result = s.interpolate(method="linear", limit=2, limit_direction="backward")
- tm.assert_series_equal(result, expected)
-
- expected = Series([1.0, 3.0, 5.0, np.nan, 9.0, 11.0])
- result = s.interpolate(method="linear", limit=1, limit_direction="both")
- tm.assert_series_equal(result, expected)
-
- # Check that this works on a longer series of nans.
- s = Series([1, 3, np.nan, np.nan, np.nan, 7, 9, np.nan, np.nan, 12, np.nan])
-
- expected = Series([1.0, 3.0, 4.0, 5.0, 6.0, 7.0, 9.0, 10.0, 11.0, 12.0, 12.0])
- result = s.interpolate(method="linear", limit=2, limit_direction="both")
- tm.assert_series_equal(result, expected)
-
- expected = Series(
- [1.0, 3.0, 4.0, np.nan, 6.0, 7.0, 9.0, 10.0, 11.0, 12.0, 12.0]
- )
- result = s.interpolate(method="linear", limit=1, limit_direction="both")
- tm.assert_series_equal(result, expected)
-
- def test_interp_limit_to_ends(self):
- # These test are for issue #10420 -- flow back to beginning.
- s = Series([np.nan, np.nan, 5, 7, 9, np.nan])
-
- expected = Series([5.0, 5.0, 5.0, 7.0, 9.0, np.nan])
- result = s.interpolate(method="linear", limit=2, limit_direction="backward")
- tm.assert_series_equal(result, expected)
-
- expected = Series([5.0, 5.0, 5.0, 7.0, 9.0, 9.0])
- result = s.interpolate(method="linear", limit=2, limit_direction="both")
- tm.assert_series_equal(result, expected)
-
- def test_interp_limit_before_ends(self):
- # These test are for issue #11115 -- limit ends properly.
- s = Series([np.nan, np.nan, 5, 7, np.nan, np.nan])
-
- expected = Series([np.nan, np.nan, 5.0, 7.0, 7.0, np.nan])
- result = s.interpolate(method="linear", limit=1, limit_direction="forward")
- tm.assert_series_equal(result, expected)
-
- expected = Series([np.nan, 5.0, 5.0, 7.0, np.nan, np.nan])
- result = s.interpolate(method="linear", limit=1, limit_direction="backward")
- tm.assert_series_equal(result, expected)
-
- expected = Series([np.nan, 5.0, 5.0, 7.0, 7.0, np.nan])
- result = s.interpolate(method="linear", limit=1, limit_direction="both")
- tm.assert_series_equal(result, expected)
-
- @td.skip_if_no_scipy
- def test_interp_all_good(self):
- s = Series([1, 2, 3])
- result = s.interpolate(method="polynomial", order=1)
- tm.assert_series_equal(result, s)
-
- # non-scipy
- result = s.interpolate()
- tm.assert_series_equal(result, s)
-
- @pytest.mark.parametrize(
- "check_scipy", [False, pytest.param(True, marks=td.skip_if_no_scipy)]
- )
- def test_interp_multiIndex(self, check_scipy):
- idx = MultiIndex.from_tuples([(0, "a"), (1, "b"), (2, "c")])
- s = Series([1, 2, np.nan], index=idx)
-
- expected = s.copy()
- expected.loc[2] = 2
- result = s.interpolate()
- tm.assert_series_equal(result, expected)
-
- msg = "Only `method=linear` interpolation is supported on MultiIndexes"
- if check_scipy:
- with pytest.raises(ValueError, match=msg):
- s.interpolate(method="polynomial", order=1)
-
- @td.skip_if_no_scipy
- def test_interp_nonmono_raise(self):
- s = Series([1, np.nan, 3], index=[0, 2, 1])
- msg = "krogh interpolation requires that the index be monotonic"
- with pytest.raises(ValueError, match=msg):
- s.interpolate(method="krogh")
-
- @td.skip_if_no_scipy
- @pytest.mark.parametrize("method", ["nearest", "pad"])
- def test_interp_datetime64(self, method, tz_naive_fixture):
- df = Series(
- [1, np.nan, 3], index=date_range("1/1/2000", periods=3, tz=tz_naive_fixture)
- )
- result = df.interpolate(method=method)
- expected = Series(
- [1.0, 1.0, 3.0],
- index=date_range("1/1/2000", periods=3, tz=tz_naive_fixture),
- )
- tm.assert_series_equal(result, expected)
-
- def test_interp_pad_datetime64tz_values(self):
- # GH#27628 missing.interpolate_2d should handle datetimetz values
- dti = pd.date_range("2015-04-05", periods=3, tz="US/Central")
- ser = pd.Series(dti)
- ser[1] = pd.NaT
- result = ser.interpolate(method="pad")
-
- expected = pd.Series(dti)
- expected[1] = expected[0]
- tm.assert_series_equal(result, expected)
-
- def test_interp_limit_no_nans(self):
- # GH 7173
- s = pd.Series([1.0, 2.0, 3.0])
- result = s.interpolate(limit=1)
- expected = s
- tm.assert_series_equal(result, expected)
-
- @td.skip_if_no_scipy
- @pytest.mark.parametrize("method", ["polynomial", "spline"])
- def test_no_order(self, method):
- # see GH-10633, GH-24014
- s = Series([0, 1, np.nan, 3])
- msg = "You must specify the order of the spline or polynomial"
- with pytest.raises(ValueError, match=msg):
- s.interpolate(method=method)
-
- @td.skip_if_no_scipy
- @pytest.mark.parametrize("order", [-1, -1.0, 0, 0.0, np.nan])
- def test_interpolate_spline_invalid_order(self, order):
- s = Series([0, 1, np.nan, 3])
- msg = "order needs to be specified and greater than 0"
- with pytest.raises(ValueError, match=msg):
- s.interpolate(method="spline", order=order)
-
- @td.skip_if_no_scipy
- def test_spline(self):
- s = Series([1, 2, np.nan, 4, 5, np.nan, 7])
- result = s.interpolate(method="spline", order=1)
- expected = Series([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0])
- tm.assert_series_equal(result, expected)
-
- @td.skip_if_no_scipy
- def test_spline_extrapolate(self):
- s = Series([1, 2, 3, 4, np.nan, 6, np.nan])
- result3 = s.interpolate(method="spline", order=1, ext=3)
- expected3 = Series([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 6.0])
- tm.assert_series_equal(result3, expected3)
-
- result1 = s.interpolate(method="spline", order=1, ext=0)
- expected1 = Series([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0])
- tm.assert_series_equal(result1, expected1)
-
- @td.skip_if_no_scipy
- def test_spline_smooth(self):
- s = Series([1, 2, np.nan, 4, 5.1, np.nan, 7])
- assert (
- s.interpolate(method="spline", order=3, s=0)[5]
- != s.interpolate(method="spline", order=3)[5]
- )
-
- @td.skip_if_no_scipy
- def test_spline_interpolation(self):
- s = Series(np.arange(10) ** 2)
- s[np.random.randint(0, 9, 3)] = np.nan
- result1 = s.interpolate(method="spline", order=1)
- expected1 = s.interpolate(method="spline", order=1)
- tm.assert_series_equal(result1, expected1)
-
- def test_interp_timedelta64(self):
- # GH 6424
- df = Series([1, np.nan, 3], index=pd.to_timedelta([1, 2, 3]))
- result = df.interpolate(method="time")
- expected = Series([1.0, 2.0, 3.0], index=pd.to_timedelta([1, 2, 3]))
- tm.assert_series_equal(result, expected)
-
- # test for non uniform spacing
- df = Series([1, np.nan, 3], index=pd.to_timedelta([1, 2, 4]))
- result = df.interpolate(method="time")
- expected = Series([1.0, 1.666667, 3.0], index=pd.to_timedelta([1, 2, 4]))
- tm.assert_series_equal(result, expected)
-
- def test_series_interpolate_method_values(self):
- # #1646
- ts = _simple_ts("1/1/2000", "1/20/2000")
- ts[::2] = np.nan
-
- result = ts.interpolate(method="values")
- exp = ts.interpolate()
- tm.assert_series_equal(result, exp)
-
- def test_series_interpolate_intraday(self):
- # #1698
- index = pd.date_range("1/1/2012", periods=4, freq="12D")
- ts = pd.Series([0, 12, 24, 36], index)
- new_index = index.append(index + pd.DateOffset(days=1)).sort_values()
-
- exp = ts.reindex(new_index).interpolate(method="time")
-
- index = pd.date_range("1/1/2012", periods=4, freq="12H")
- ts = pd.Series([0, 12, 24, 36], index)
- new_index = index.append(index + pd.DateOffset(hours=1)).sort_values()
- result = ts.reindex(new_index).interpolate(method="time")
-
- tm.assert_numpy_array_equal(result.values, exp.values)
-
- @pytest.mark.parametrize(
- "ind",
- [
- ["a", "b", "c", "d"],
- pd.period_range(start="2019-01-01", periods=4),
- pd.interval_range(start=0, end=4),
- ],
- )
- def test_interp_non_timedelta_index(self, interp_methods_ind, ind):
- # gh 21662
- df = pd.DataFrame([0, 1, np.nan, 3], index=ind)
-
- method, kwargs = interp_methods_ind
- if method == "pchip":
- pytest.importorskip("scipy")
-
- if method == "linear":
- result = df[0].interpolate(**kwargs)
- expected = pd.Series([0.0, 1.0, 2.0, 3.0], name=0, index=ind)
- tm.assert_series_equal(result, expected)
- else:
- expected_error = (
- "Index column must be numeric or datetime type when "
- f"using {method} method other than linear. "
- "Try setting a numeric or datetime index column before "
- "interpolating."
- )
- with pytest.raises(ValueError, match=expected_error):
- df[0].interpolate(method=method, **kwargs)
-
- def test_interpolate_timedelta_index(self, interp_methods_ind):
- """
- Tests for non numerical index types - object, period, timedelta
- Note that all methods except time, index, nearest and values
- are tested here.
- """
- # gh 21662
- ind = pd.timedelta_range(start=1, periods=4)
- df = pd.DataFrame([0, 1, np.nan, 3], index=ind)
-
- method, kwargs = interp_methods_ind
- if method == "pchip":
- pytest.importorskip("scipy")
-
- if method in {"linear", "pchip"}:
- result = df[0].interpolate(method=method, **kwargs)
- expected = pd.Series([0.0, 1.0, 2.0, 3.0], name=0, index=ind)
- tm.assert_series_equal(result, expected)
- else:
- pytest.skip(
- "This interpolation method is not supported for Timedelta Index yet."
- )
-
- @pytest.mark.parametrize(
- "ascending, expected_values",
- [(True, [1, 2, 3, 9, 10]), (False, [10, 9, 3, 2, 1])],
- )
- def test_interpolate_unsorted_index(self, ascending, expected_values):
- # GH 21037
- ts = pd.Series(data=[10, 9, np.nan, 2, 1], index=[10, 9, 3, 2, 1])
- result = ts.sort_index(ascending=ascending).interpolate(method="index")
- expected = pd.Series(data=expected_values, index=expected_values, dtype=float)
- tm.assert_series_equal(result, expected)
| https://api.github.com/repos/pandas-dev/pandas/pulls/32112 | 2020-02-19T16:34:58Z | 2020-02-22T16:01:54Z | 2020-02-22T16:01:54Z | 2020-02-22T16:49:18Z | |
REF: misplaced Series.combine_first tests | diff --git a/pandas/tests/series/methods/test_combine_first.py b/pandas/tests/series/methods/test_combine_first.py
index aed6425e50117..1ee55fbe39513 100644
--- a/pandas/tests/series/methods/test_combine_first.py
+++ b/pandas/tests/series/methods/test_combine_first.py
@@ -1,6 +1,9 @@
+from datetime import datetime
+
import numpy as np
-from pandas import Period, Series, date_range, period_range
+import pandas as pd
+from pandas import Period, Series, date_range, period_range, to_datetime
import pandas._testing as tm
@@ -17,3 +20,75 @@ def test_combine_first_period_datetime(self):
result = a.combine_first(b)
expected = Series([1, 9, 9, 4, 5, 9, 7], index=idx, dtype=np.float64)
tm.assert_series_equal(result, expected)
+
+ def test_combine_first_name(self, datetime_series):
+ result = datetime_series.combine_first(datetime_series[:5])
+ assert result.name == datetime_series.name
+
+ def test_combine_first(self):
+ values = tm.makeIntIndex(20).values.astype(float)
+ series = Series(values, index=tm.makeIntIndex(20))
+
+ series_copy = series * 2
+ series_copy[::2] = np.NaN
+
+ # nothing used from the input
+ combined = series.combine_first(series_copy)
+
+ tm.assert_series_equal(combined, series)
+
+ # Holes filled from input
+ combined = series_copy.combine_first(series)
+ assert np.isfinite(combined).all()
+
+ tm.assert_series_equal(combined[::2], series[::2])
+ tm.assert_series_equal(combined[1::2], series_copy[1::2])
+
+ # mixed types
+ index = tm.makeStringIndex(20)
+ floats = Series(tm.randn(20), index=index)
+ strings = Series(tm.makeStringIndex(10), index=index[::2])
+
+ combined = strings.combine_first(floats)
+
+ tm.assert_series_equal(strings, combined.loc[index[::2]])
+ tm.assert_series_equal(floats[1::2].astype(object), combined.loc[index[1::2]])
+
+ # corner case
+ ser = Series([1.0, 2, 3], index=[0, 1, 2])
+ empty = Series([], index=[], dtype=object)
+ result = ser.combine_first(empty)
+ ser.index = ser.index.astype("O")
+ tm.assert_series_equal(ser, result)
+
+ def test_combine_first_dt64(self):
+
+ s0 = to_datetime(Series(["2010", np.NaN]))
+ s1 = to_datetime(Series([np.NaN, "2011"]))
+ rs = s0.combine_first(s1)
+ xp = to_datetime(Series(["2010", "2011"]))
+ tm.assert_series_equal(rs, xp)
+
+ s0 = to_datetime(Series(["2010", np.NaN]))
+ s1 = Series([np.NaN, "2011"])
+ rs = s0.combine_first(s1)
+ xp = Series([datetime(2010, 1, 1), "2011"])
+ tm.assert_series_equal(rs, xp)
+
+ def test_combine_first_dt_tz_values(self, tz_naive_fixture):
+ ser1 = pd.Series(
+ pd.DatetimeIndex(["20150101", "20150102", "20150103"], tz=tz_naive_fixture),
+ name="ser1",
+ )
+ ser2 = pd.Series(
+ pd.DatetimeIndex(["20160514", "20160515", "20160516"], tz=tz_naive_fixture),
+ index=[2, 3, 4],
+ name="ser2",
+ )
+ result = ser1.combine_first(ser2)
+ exp_vals = pd.DatetimeIndex(
+ ["20150101", "20150102", "20150103", "20160515", "20160516"],
+ tz=tz_naive_fixture,
+ )
+ exp = pd.Series(exp_vals, name="ser1")
+ tm.assert_series_equal(exp, result)
diff --git a/pandas/tests/series/test_api.py b/pandas/tests/series/test_api.py
index 33706c00c53f4..3e877cf2fc787 100644
--- a/pandas/tests/series/test_api.py
+++ b/pandas/tests/series/test_api.py
@@ -85,10 +85,6 @@ def test_binop_maybe_preserve_name(self, datetime_series):
result = getattr(s, op)(cp)
assert result.name is None
- def test_combine_first_name(self, datetime_series):
- result = datetime_series.combine_first(datetime_series[:5])
- assert result.name == datetime_series.name
-
def test_getitem_preserve_name(self, datetime_series):
result = datetime_series[datetime_series > 0]
assert result.name == datetime_series.name
diff --git a/pandas/tests/series/test_combine_concat.py b/pandas/tests/series/test_combine_concat.py
index 4cb471597b67a..4afa083e97c7c 100644
--- a/pandas/tests/series/test_combine_concat.py
+++ b/pandas/tests/series/test_combine_concat.py
@@ -1,10 +1,8 @@
-from datetime import datetime
-
import numpy as np
import pytest
import pandas as pd
-from pandas import DataFrame, Series, to_datetime
+from pandas import DataFrame, Series
import pandas._testing as tm
@@ -22,42 +20,6 @@ def test_combine_scalar(self):
expected = pd.Series([min(i * 10, 22) for i in range(5)])
tm.assert_series_equal(result, expected)
- def test_combine_first(self):
- values = tm.makeIntIndex(20).values.astype(float)
- series = Series(values, index=tm.makeIntIndex(20))
-
- series_copy = series * 2
- series_copy[::2] = np.NaN
-
- # nothing used from the input
- combined = series.combine_first(series_copy)
-
- tm.assert_series_equal(combined, series)
-
- # Holes filled from input
- combined = series_copy.combine_first(series)
- assert np.isfinite(combined).all()
-
- tm.assert_series_equal(combined[::2], series[::2])
- tm.assert_series_equal(combined[1::2], series_copy[1::2])
-
- # mixed types
- index = tm.makeStringIndex(20)
- floats = Series(tm.randn(20), index=index)
- strings = Series(tm.makeStringIndex(10), index=index[::2])
-
- combined = strings.combine_first(floats)
-
- tm.assert_series_equal(strings, combined.loc[index[::2]])
- tm.assert_series_equal(floats[1::2].astype(object), combined.loc[index[1::2]])
-
- # corner case
- s = Series([1.0, 2, 3], index=[0, 1, 2])
- empty = Series([], index=[], dtype=object)
- result = s.combine_first(empty)
- s.index = s.index.astype("O")
- tm.assert_series_equal(s, result)
-
def test_update(self):
s = Series([1.5, np.nan, 3.0, 4.0, np.nan])
s2 = Series([np.nan, 3.5, np.nan, 5.0])
@@ -156,24 +118,6 @@ def get_result_type(dtype, dtype2):
result = pd.concat([Series(dtype=dtype), Series(dtype=dtype2)]).dtype
assert result.kind == expected
- def test_combine_first_dt_tz_values(self, tz_naive_fixture):
- ser1 = pd.Series(
- pd.DatetimeIndex(["20150101", "20150102", "20150103"], tz=tz_naive_fixture),
- name="ser1",
- )
- ser2 = pd.Series(
- pd.DatetimeIndex(["20160514", "20160515", "20160516"], tz=tz_naive_fixture),
- index=[2, 3, 4],
- name="ser2",
- )
- result = ser1.combine_first(ser2)
- exp_vals = pd.DatetimeIndex(
- ["20150101", "20150102", "20150103", "20160515", "20160516"],
- tz=tz_naive_fixture,
- )
- exp = pd.Series(exp_vals, name="ser1")
- tm.assert_series_equal(exp, result)
-
def test_concat_empty_series_dtypes(self):
# booleans
@@ -250,17 +194,3 @@ def test_concat_empty_series_dtypes(self):
# TODO: release-note: concat sparse dtype
expected = pd.SparseDtype("object")
assert result.dtype == expected
-
- def test_combine_first_dt64(self):
-
- s0 = to_datetime(Series(["2010", np.NaN]))
- s1 = to_datetime(Series([np.NaN, "2011"]))
- rs = s0.combine_first(s1)
- xp = to_datetime(Series(["2010", "2011"]))
- tm.assert_series_equal(rs, xp)
-
- s0 = to_datetime(Series(["2010", np.NaN]))
- s1 = Series([np.NaN, "2011"])
- rs = s0.combine_first(s1)
- xp = Series([datetime(2010, 1, 1), "2011"])
- tm.assert_series_equal(rs, xp)
| https://api.github.com/repos/pandas-dev/pandas/pulls/32111 | 2020-02-19T16:18:36Z | 2020-02-20T12:44:52Z | 2020-02-20T12:44:52Z | 2020-02-20T15:00:13Z | |
TST: method-specific files for DataFrame assign, interpolate | diff --git a/pandas/tests/frame/methods/test_assign.py b/pandas/tests/frame/methods/test_assign.py
new file mode 100644
index 0000000000000..63b9f031de188
--- /dev/null
+++ b/pandas/tests/frame/methods/test_assign.py
@@ -0,0 +1,82 @@
+import pytest
+
+from pandas import DataFrame
+import pandas._testing as tm
+
+
+class TestAssign:
+ def test_assign(self):
+ df = DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]})
+ original = df.copy()
+ result = df.assign(C=df.B / df.A)
+ expected = df.copy()
+ expected["C"] = [4, 2.5, 2]
+ tm.assert_frame_equal(result, expected)
+
+ # lambda syntax
+ result = df.assign(C=lambda x: x.B / x.A)
+ tm.assert_frame_equal(result, expected)
+
+ # original is unmodified
+ tm.assert_frame_equal(df, original)
+
+ # Non-Series array-like
+ result = df.assign(C=[4, 2.5, 2])
+ tm.assert_frame_equal(result, expected)
+ # original is unmodified
+ tm.assert_frame_equal(df, original)
+
+ result = df.assign(B=df.B / df.A)
+ expected = expected.drop("B", axis=1).rename(columns={"C": "B"})
+ tm.assert_frame_equal(result, expected)
+
+ # overwrite
+ result = df.assign(A=df.A + df.B)
+ expected = df.copy()
+ expected["A"] = [5, 7, 9]
+ tm.assert_frame_equal(result, expected)
+
+ # lambda
+ result = df.assign(A=lambda x: x.A + x.B)
+ tm.assert_frame_equal(result, expected)
+
+ def test_assign_multiple(self):
+ df = DataFrame([[1, 4], [2, 5], [3, 6]], columns=["A", "B"])
+ result = df.assign(C=[7, 8, 9], D=df.A, E=lambda x: x.B)
+ expected = DataFrame(
+ [[1, 4, 7, 1, 4], [2, 5, 8, 2, 5], [3, 6, 9, 3, 6]], columns=list("ABCDE")
+ )
+ tm.assert_frame_equal(result, expected)
+
+ def test_assign_order(self):
+ # GH 9818
+ df = DataFrame([[1, 2], [3, 4]], columns=["A", "B"])
+ result = df.assign(D=df.A + df.B, C=df.A - df.B)
+
+ expected = DataFrame([[1, 2, 3, -1], [3, 4, 7, -1]], columns=list("ABDC"))
+ tm.assert_frame_equal(result, expected)
+ result = df.assign(C=df.A - df.B, D=df.A + df.B)
+
+ expected = DataFrame([[1, 2, -1, 3], [3, 4, -1, 7]], columns=list("ABCD"))
+
+ tm.assert_frame_equal(result, expected)
+
+ def test_assign_bad(self):
+ df = DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]})
+
+ # non-keyword argument
+ with pytest.raises(TypeError):
+ df.assign(lambda x: x.A)
+ with pytest.raises(AttributeError):
+ df.assign(C=df.A, D=df.A + df.C)
+
+ def test_assign_dependent(self):
+ df = DataFrame({"A": [1, 2], "B": [3, 4]})
+
+ result = df.assign(C=df.A, D=lambda x: x["A"] + x["C"])
+ expected = DataFrame([[1, 3, 1, 2], [2, 4, 2, 4]], columns=list("ABCD"))
+ tm.assert_frame_equal(result, expected)
+
+ result = df.assign(C=lambda df: df.A, D=lambda df: df["A"] + df["C"])
+ expected = DataFrame([[1, 3, 1, 2], [2, 4, 2, 4]], columns=list("ABCD"))
+ tm.assert_frame_equal(result, expected)
diff --git a/pandas/tests/frame/methods/test_interpolate.py b/pandas/tests/frame/methods/test_interpolate.py
new file mode 100644
index 0000000000000..3b8fa0dfbb603
--- /dev/null
+++ b/pandas/tests/frame/methods/test_interpolate.py
@@ -0,0 +1,286 @@
+import numpy as np
+import pytest
+
+import pandas.util._test_decorators as td
+
+from pandas import DataFrame, Series, date_range
+import pandas._testing as tm
+
+
+class TestDataFrameInterpolate:
+ def test_interp_basic(self):
+ df = DataFrame(
+ {
+ "A": [1, 2, np.nan, 4],
+ "B": [1, 4, 9, np.nan],
+ "C": [1, 2, 3, 5],
+ "D": list("abcd"),
+ }
+ )
+ expected = DataFrame(
+ {
+ "A": [1.0, 2.0, 3.0, 4.0],
+ "B": [1.0, 4.0, 9.0, 9.0],
+ "C": [1, 2, 3, 5],
+ "D": list("abcd"),
+ }
+ )
+ result = df.interpolate()
+ tm.assert_frame_equal(result, expected)
+
+ result = df.set_index("C").interpolate()
+ expected = df.set_index("C")
+ expected.loc[3, "A"] = 3
+ expected.loc[5, "B"] = 9
+ tm.assert_frame_equal(result, expected)
+
+ def test_interp_bad_method(self):
+ df = DataFrame(
+ {
+ "A": [1, 2, np.nan, 4],
+ "B": [1, 4, 9, np.nan],
+ "C": [1, 2, 3, 5],
+ "D": list("abcd"),
+ }
+ )
+ with pytest.raises(ValueError):
+ df.interpolate(method="not_a_method")
+
+ def test_interp_combo(self):
+ df = DataFrame(
+ {
+ "A": [1.0, 2.0, np.nan, 4.0],
+ "B": [1, 4, 9, np.nan],
+ "C": [1, 2, 3, 5],
+ "D": list("abcd"),
+ }
+ )
+
+ result = df["A"].interpolate()
+ expected = Series([1.0, 2.0, 3.0, 4.0], name="A")
+ tm.assert_series_equal(result, expected)
+
+ result = df["A"].interpolate(downcast="infer")
+ expected = Series([1, 2, 3, 4], name="A")
+ tm.assert_series_equal(result, expected)
+
+ def test_interp_nan_idx(self):
+ df = DataFrame({"A": [1, 2, np.nan, 4], "B": [np.nan, 2, 3, 4]})
+ df = df.set_index("A")
+ with pytest.raises(NotImplementedError):
+ df.interpolate(method="values")
+
+ @td.skip_if_no_scipy
+ def test_interp_various(self):
+ df = DataFrame(
+ {"A": [1, 2, np.nan, 4, 5, np.nan, 7], "C": [1, 2, 3, 5, 8, 13, 21]}
+ )
+ df = df.set_index("C")
+ expected = df.copy()
+ result = df.interpolate(method="polynomial", order=1)
+
+ expected.A.loc[3] = 2.66666667
+ expected.A.loc[13] = 5.76923076
+ tm.assert_frame_equal(result, expected)
+
+ result = df.interpolate(method="cubic")
+ # GH #15662.
+ expected.A.loc[3] = 2.81547781
+ expected.A.loc[13] = 5.52964175
+ tm.assert_frame_equal(result, expected)
+
+ result = df.interpolate(method="nearest")
+ expected.A.loc[3] = 2
+ expected.A.loc[13] = 5
+ tm.assert_frame_equal(result, expected, check_dtype=False)
+
+ result = df.interpolate(method="quadratic")
+ expected.A.loc[3] = 2.82150771
+ expected.A.loc[13] = 6.12648668
+ tm.assert_frame_equal(result, expected)
+
+ result = df.interpolate(method="slinear")
+ expected.A.loc[3] = 2.66666667
+ expected.A.loc[13] = 5.76923077
+ tm.assert_frame_equal(result, expected)
+
+ result = df.interpolate(method="zero")
+ expected.A.loc[3] = 2.0
+ expected.A.loc[13] = 5
+ tm.assert_frame_equal(result, expected, check_dtype=False)
+
+ @td.skip_if_no_scipy
+ def test_interp_alt_scipy(self):
+ df = DataFrame(
+ {"A": [1, 2, np.nan, 4, 5, np.nan, 7], "C": [1, 2, 3, 5, 8, 13, 21]}
+ )
+ result = df.interpolate(method="barycentric")
+ expected = df.copy()
+ expected.loc[2, "A"] = 3
+ expected.loc[5, "A"] = 6
+ tm.assert_frame_equal(result, expected)
+
+ result = df.interpolate(method="barycentric", downcast="infer")
+ tm.assert_frame_equal(result, expected.astype(np.int64))
+
+ result = df.interpolate(method="krogh")
+ expectedk = df.copy()
+ expectedk["A"] = expected["A"]
+ tm.assert_frame_equal(result, expectedk)
+
+ result = df.interpolate(method="pchip")
+ expected.loc[2, "A"] = 3
+ expected.loc[5, "A"] = 6.0
+
+ tm.assert_frame_equal(result, expected)
+
+ def test_interp_rowwise(self):
+ df = DataFrame(
+ {
+ 0: [1, 2, np.nan, 4],
+ 1: [2, 3, 4, np.nan],
+ 2: [np.nan, 4, 5, 6],
+ 3: [4, np.nan, 6, 7],
+ 4: [1, 2, 3, 4],
+ }
+ )
+ result = df.interpolate(axis=1)
+ expected = df.copy()
+ expected.loc[3, 1] = 5
+ expected.loc[0, 2] = 3
+ expected.loc[1, 3] = 3
+ expected[4] = expected[4].astype(np.float64)
+ tm.assert_frame_equal(result, expected)
+
+ result = df.interpolate(axis=1, method="values")
+ tm.assert_frame_equal(result, expected)
+
+ result = df.interpolate(axis=0)
+ expected = df.interpolate()
+ tm.assert_frame_equal(result, expected)
+
+ @pytest.mark.parametrize(
+ "axis_name, axis_number",
+ [
+ pytest.param("rows", 0, id="rows_0"),
+ pytest.param("index", 0, id="index_0"),
+ pytest.param("columns", 1, id="columns_1"),
+ ],
+ )
+ def test_interp_axis_names(self, axis_name, axis_number):
+ # GH 29132: test axis names
+ data = {0: [0, np.nan, 6], 1: [1, np.nan, 7], 2: [2, 5, 8]}
+
+ df = DataFrame(data, dtype=np.float64)
+ result = df.interpolate(axis=axis_name, method="linear")
+ expected = df.interpolate(axis=axis_number, method="linear")
+ tm.assert_frame_equal(result, expected)
+
+ def test_rowwise_alt(self):
+ df = DataFrame(
+ {
+ 0: [0, 0.5, 1.0, np.nan, 4, 8, np.nan, np.nan, 64],
+ 1: [1, 2, 3, 4, 3, 2, 1, 0, -1],
+ }
+ )
+ df.interpolate(axis=0)
+ # TODO: assert something?
+
+ @pytest.mark.parametrize(
+ "check_scipy", [False, pytest.param(True, marks=td.skip_if_no_scipy)]
+ )
+ def test_interp_leading_nans(self, check_scipy):
+ df = DataFrame(
+ {"A": [np.nan, np.nan, 0.5, 0.25, 0], "B": [np.nan, -3, -3.5, np.nan, -4]}
+ )
+ result = df.interpolate()
+ expected = df.copy()
+ expected["B"].loc[3] = -3.75
+ tm.assert_frame_equal(result, expected)
+
+ if check_scipy:
+ result = df.interpolate(method="polynomial", order=1)
+ tm.assert_frame_equal(result, expected)
+
+ def test_interp_raise_on_only_mixed(self):
+ df = DataFrame(
+ {
+ "A": [1, 2, np.nan, 4],
+ "B": ["a", "b", "c", "d"],
+ "C": [np.nan, 2, 5, 7],
+ "D": [np.nan, np.nan, 9, 9],
+ "E": [1, 2, 3, 4],
+ }
+ )
+ with pytest.raises(TypeError):
+ df.interpolate(axis=1)
+
+ def test_interp_raise_on_all_object_dtype(self):
+ # GH 22985
+ df = DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]}, dtype="object")
+ msg = (
+ "Cannot interpolate with all object-dtype columns "
+ "in the DataFrame. Try setting at least one "
+ "column to a numeric dtype."
+ )
+ with pytest.raises(TypeError, match=msg):
+ df.interpolate()
+
+ def test_interp_inplace(self):
+ df = DataFrame({"a": [1.0, 2.0, np.nan, 4.0]})
+ expected = DataFrame({"a": [1.0, 2.0, 3.0, 4.0]})
+ result = df.copy()
+ result["a"].interpolate(inplace=True)
+ tm.assert_frame_equal(result, expected)
+
+ result = df.copy()
+ result["a"].interpolate(inplace=True, downcast="infer")
+ tm.assert_frame_equal(result, expected.astype("int64"))
+
+ def test_interp_inplace_row(self):
+ # GH 10395
+ result = DataFrame(
+ {"a": [1.0, 2.0, 3.0, 4.0], "b": [np.nan, 2.0, 3.0, 4.0], "c": [3, 2, 2, 2]}
+ )
+ expected = result.interpolate(method="linear", axis=1, inplace=False)
+ result.interpolate(method="linear", axis=1, inplace=True)
+ tm.assert_frame_equal(result, expected)
+
+ def test_interp_ignore_all_good(self):
+ # GH
+ df = DataFrame(
+ {
+ "A": [1, 2, np.nan, 4],
+ "B": [1, 2, 3, 4],
+ "C": [1.0, 2.0, np.nan, 4.0],
+ "D": [1.0, 2.0, 3.0, 4.0],
+ }
+ )
+ expected = DataFrame(
+ {
+ "A": np.array([1, 2, 3, 4], dtype="float64"),
+ "B": np.array([1, 2, 3, 4], dtype="int64"),
+ "C": np.array([1.0, 2.0, 3, 4.0], dtype="float64"),
+ "D": np.array([1.0, 2.0, 3.0, 4.0], dtype="float64"),
+ }
+ )
+
+ result = df.interpolate(downcast=None)
+ tm.assert_frame_equal(result, expected)
+
+ # all good
+ result = df[["B", "D"]].interpolate(downcast=None)
+ tm.assert_frame_equal(result, df[["B", "D"]])
+
+ @pytest.mark.parametrize("axis", [0, 1])
+ def test_interp_time_inplace_axis(self, axis):
+ # GH 9687
+ periods = 5
+ idx = date_range(start="2014-01-01", periods=periods)
+ data = np.random.rand(periods, periods)
+ data[data < 0.5] = np.nan
+ expected = DataFrame(index=idx, columns=idx, data=data)
+
+ result = expected.interpolate(axis=0, method="time")
+ expected.interpolate(axis=0, method="time", inplace=True)
+ tm.assert_frame_equal(result, expected)
diff --git a/pandas/tests/frame/test_missing.py b/pandas/tests/frame/test_missing.py
index ae0516dd29a1f..196df8ba00476 100644
--- a/pandas/tests/frame/test_missing.py
+++ b/pandas/tests/frame/test_missing.py
@@ -4,8 +4,6 @@
import numpy as np
import pytest
-import pandas.util._test_decorators as td
-
import pandas as pd
from pandas import Categorical, DataFrame, Series, Timestamp, date_range
import pandas._testing as tm
@@ -705,281 +703,3 @@ def test_fill_value_when_combine_const(self):
exp = df.fillna(0).add(2)
res = df.add(2, fill_value=0)
tm.assert_frame_equal(res, exp)
-
-
-class TestDataFrameInterpolate:
- def test_interp_basic(self):
- df = DataFrame(
- {
- "A": [1, 2, np.nan, 4],
- "B": [1, 4, 9, np.nan],
- "C": [1, 2, 3, 5],
- "D": list("abcd"),
- }
- )
- expected = DataFrame(
- {
- "A": [1.0, 2.0, 3.0, 4.0],
- "B": [1.0, 4.0, 9.0, 9.0],
- "C": [1, 2, 3, 5],
- "D": list("abcd"),
- }
- )
- result = df.interpolate()
- tm.assert_frame_equal(result, expected)
-
- result = df.set_index("C").interpolate()
- expected = df.set_index("C")
- expected.loc[3, "A"] = 3
- expected.loc[5, "B"] = 9
- tm.assert_frame_equal(result, expected)
-
- def test_interp_bad_method(self):
- df = DataFrame(
- {
- "A": [1, 2, np.nan, 4],
- "B": [1, 4, 9, np.nan],
- "C": [1, 2, 3, 5],
- "D": list("abcd"),
- }
- )
- with pytest.raises(ValueError):
- df.interpolate(method="not_a_method")
-
- def test_interp_combo(self):
- df = DataFrame(
- {
- "A": [1.0, 2.0, np.nan, 4.0],
- "B": [1, 4, 9, np.nan],
- "C": [1, 2, 3, 5],
- "D": list("abcd"),
- }
- )
-
- result = df["A"].interpolate()
- expected = Series([1.0, 2.0, 3.0, 4.0], name="A")
- tm.assert_series_equal(result, expected)
-
- result = df["A"].interpolate(downcast="infer")
- expected = Series([1, 2, 3, 4], name="A")
- tm.assert_series_equal(result, expected)
-
- def test_interp_nan_idx(self):
- df = DataFrame({"A": [1, 2, np.nan, 4], "B": [np.nan, 2, 3, 4]})
- df = df.set_index("A")
- with pytest.raises(NotImplementedError):
- df.interpolate(method="values")
-
- @td.skip_if_no_scipy
- def test_interp_various(self):
- df = DataFrame(
- {"A": [1, 2, np.nan, 4, 5, np.nan, 7], "C": [1, 2, 3, 5, 8, 13, 21]}
- )
- df = df.set_index("C")
- expected = df.copy()
- result = df.interpolate(method="polynomial", order=1)
-
- expected.A.loc[3] = 2.66666667
- expected.A.loc[13] = 5.76923076
- tm.assert_frame_equal(result, expected)
-
- result = df.interpolate(method="cubic")
- # GH #15662.
- expected.A.loc[3] = 2.81547781
- expected.A.loc[13] = 5.52964175
- tm.assert_frame_equal(result, expected)
-
- result = df.interpolate(method="nearest")
- expected.A.loc[3] = 2
- expected.A.loc[13] = 5
- tm.assert_frame_equal(result, expected, check_dtype=False)
-
- result = df.interpolate(method="quadratic")
- expected.A.loc[3] = 2.82150771
- expected.A.loc[13] = 6.12648668
- tm.assert_frame_equal(result, expected)
-
- result = df.interpolate(method="slinear")
- expected.A.loc[3] = 2.66666667
- expected.A.loc[13] = 5.76923077
- tm.assert_frame_equal(result, expected)
-
- result = df.interpolate(method="zero")
- expected.A.loc[3] = 2.0
- expected.A.loc[13] = 5
- tm.assert_frame_equal(result, expected, check_dtype=False)
-
- @td.skip_if_no_scipy
- def test_interp_alt_scipy(self):
- df = DataFrame(
- {"A": [1, 2, np.nan, 4, 5, np.nan, 7], "C": [1, 2, 3, 5, 8, 13, 21]}
- )
- result = df.interpolate(method="barycentric")
- expected = df.copy()
- expected.loc[2, "A"] = 3
- expected.loc[5, "A"] = 6
- tm.assert_frame_equal(result, expected)
-
- result = df.interpolate(method="barycentric", downcast="infer")
- tm.assert_frame_equal(result, expected.astype(np.int64))
-
- result = df.interpolate(method="krogh")
- expectedk = df.copy()
- expectedk["A"] = expected["A"]
- tm.assert_frame_equal(result, expectedk)
-
- result = df.interpolate(method="pchip")
- expected.loc[2, "A"] = 3
- expected.loc[5, "A"] = 6.0
-
- tm.assert_frame_equal(result, expected)
-
- def test_interp_rowwise(self):
- df = DataFrame(
- {
- 0: [1, 2, np.nan, 4],
- 1: [2, 3, 4, np.nan],
- 2: [np.nan, 4, 5, 6],
- 3: [4, np.nan, 6, 7],
- 4: [1, 2, 3, 4],
- }
- )
- result = df.interpolate(axis=1)
- expected = df.copy()
- expected.loc[3, 1] = 5
- expected.loc[0, 2] = 3
- expected.loc[1, 3] = 3
- expected[4] = expected[4].astype(np.float64)
- tm.assert_frame_equal(result, expected)
-
- result = df.interpolate(axis=1, method="values")
- tm.assert_frame_equal(result, expected)
-
- result = df.interpolate(axis=0)
- expected = df.interpolate()
- tm.assert_frame_equal(result, expected)
-
- @pytest.mark.parametrize(
- "axis_name, axis_number",
- [
- pytest.param("rows", 0, id="rows_0"),
- pytest.param("index", 0, id="index_0"),
- pytest.param("columns", 1, id="columns_1"),
- ],
- )
- def test_interp_axis_names(self, axis_name, axis_number):
- # GH 29132: test axis names
- data = {0: [0, np.nan, 6], 1: [1, np.nan, 7], 2: [2, 5, 8]}
-
- df = DataFrame(data, dtype=np.float64)
- result = df.interpolate(axis=axis_name, method="linear")
- expected = df.interpolate(axis=axis_number, method="linear")
- tm.assert_frame_equal(result, expected)
-
- def test_rowwise_alt(self):
- df = DataFrame(
- {
- 0: [0, 0.5, 1.0, np.nan, 4, 8, np.nan, np.nan, 64],
- 1: [1, 2, 3, 4, 3, 2, 1, 0, -1],
- }
- )
- df.interpolate(axis=0)
-
- @pytest.mark.parametrize(
- "check_scipy", [False, pytest.param(True, marks=td.skip_if_no_scipy)]
- )
- def test_interp_leading_nans(self, check_scipy):
- df = DataFrame(
- {"A": [np.nan, np.nan, 0.5, 0.25, 0], "B": [np.nan, -3, -3.5, np.nan, -4]}
- )
- result = df.interpolate()
- expected = df.copy()
- expected["B"].loc[3] = -3.75
- tm.assert_frame_equal(result, expected)
-
- if check_scipy:
- result = df.interpolate(method="polynomial", order=1)
- tm.assert_frame_equal(result, expected)
-
- def test_interp_raise_on_only_mixed(self):
- df = DataFrame(
- {
- "A": [1, 2, np.nan, 4],
- "B": ["a", "b", "c", "d"],
- "C": [np.nan, 2, 5, 7],
- "D": [np.nan, np.nan, 9, 9],
- "E": [1, 2, 3, 4],
- }
- )
- with pytest.raises(TypeError):
- df.interpolate(axis=1)
-
- def test_interp_raise_on_all_object_dtype(self):
- # GH 22985
- df = DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]}, dtype="object")
- msg = (
- "Cannot interpolate with all object-dtype columns "
- "in the DataFrame. Try setting at least one "
- "column to a numeric dtype."
- )
- with pytest.raises(TypeError, match=msg):
- df.interpolate()
-
- def test_interp_inplace(self):
- df = DataFrame({"a": [1.0, 2.0, np.nan, 4.0]})
- expected = DataFrame({"a": [1.0, 2.0, 3.0, 4.0]})
- result = df.copy()
- result["a"].interpolate(inplace=True)
- tm.assert_frame_equal(result, expected)
-
- result = df.copy()
- result["a"].interpolate(inplace=True, downcast="infer")
- tm.assert_frame_equal(result, expected.astype("int64"))
-
- def test_interp_inplace_row(self):
- # GH 10395
- result = DataFrame(
- {"a": [1.0, 2.0, 3.0, 4.0], "b": [np.nan, 2.0, 3.0, 4.0], "c": [3, 2, 2, 2]}
- )
- expected = result.interpolate(method="linear", axis=1, inplace=False)
- result.interpolate(method="linear", axis=1, inplace=True)
- tm.assert_frame_equal(result, expected)
-
- def test_interp_ignore_all_good(self):
- # GH
- df = DataFrame(
- {
- "A": [1, 2, np.nan, 4],
- "B": [1, 2, 3, 4],
- "C": [1.0, 2.0, np.nan, 4.0],
- "D": [1.0, 2.0, 3.0, 4.0],
- }
- )
- expected = DataFrame(
- {
- "A": np.array([1, 2, 3, 4], dtype="float64"),
- "B": np.array([1, 2, 3, 4], dtype="int64"),
- "C": np.array([1.0, 2.0, 3, 4.0], dtype="float64"),
- "D": np.array([1.0, 2.0, 3.0, 4.0], dtype="float64"),
- }
- )
-
- result = df.interpolate(downcast=None)
- tm.assert_frame_equal(result, expected)
-
- # all good
- result = df[["B", "D"]].interpolate(downcast=None)
- tm.assert_frame_equal(result, df[["B", "D"]])
-
- @pytest.mark.parametrize("axis", [0, 1])
- def test_interp_time_inplace_axis(self, axis):
- # GH 9687
- periods = 5
- idx = pd.date_range(start="2014-01-01", periods=periods)
- data = np.random.rand(periods, periods)
- data[data < 0.5] = np.nan
- expected = pd.DataFrame(index=idx, columns=idx, data=data)
-
- result = expected.interpolate(axis=0, method="time")
- expected.interpolate(axis=0, method="time", inplace=True)
- tm.assert_frame_equal(result, expected)
diff --git a/pandas/tests/frame/test_mutate_columns.py b/pandas/tests/frame/test_mutate_columns.py
index 8bc2aa214e035..33f71602f4713 100644
--- a/pandas/tests/frame/test_mutate_columns.py
+++ b/pandas/tests/frame/test_mutate_columns.py
@@ -10,82 +10,6 @@
class TestDataFrameMutateColumns:
- def test_assign(self):
- df = DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]})
- original = df.copy()
- result = df.assign(C=df.B / df.A)
- expected = df.copy()
- expected["C"] = [4, 2.5, 2]
- tm.assert_frame_equal(result, expected)
-
- # lambda syntax
- result = df.assign(C=lambda x: x.B / x.A)
- tm.assert_frame_equal(result, expected)
-
- # original is unmodified
- tm.assert_frame_equal(df, original)
-
- # Non-Series array-like
- result = df.assign(C=[4, 2.5, 2])
- tm.assert_frame_equal(result, expected)
- # original is unmodified
- tm.assert_frame_equal(df, original)
-
- result = df.assign(B=df.B / df.A)
- expected = expected.drop("B", axis=1).rename(columns={"C": "B"})
- tm.assert_frame_equal(result, expected)
-
- # overwrite
- result = df.assign(A=df.A + df.B)
- expected = df.copy()
- expected["A"] = [5, 7, 9]
- tm.assert_frame_equal(result, expected)
-
- # lambda
- result = df.assign(A=lambda x: x.A + x.B)
- tm.assert_frame_equal(result, expected)
-
- def test_assign_multiple(self):
- df = DataFrame([[1, 4], [2, 5], [3, 6]], columns=["A", "B"])
- result = df.assign(C=[7, 8, 9], D=df.A, E=lambda x: x.B)
- expected = DataFrame(
- [[1, 4, 7, 1, 4], [2, 5, 8, 2, 5], [3, 6, 9, 3, 6]], columns=list("ABCDE")
- )
- tm.assert_frame_equal(result, expected)
-
- def test_assign_order(self):
- # GH 9818
- df = DataFrame([[1, 2], [3, 4]], columns=["A", "B"])
- result = df.assign(D=df.A + df.B, C=df.A - df.B)
-
- expected = DataFrame([[1, 2, 3, -1], [3, 4, 7, -1]], columns=list("ABDC"))
- tm.assert_frame_equal(result, expected)
- result = df.assign(C=df.A - df.B, D=df.A + df.B)
-
- expected = DataFrame([[1, 2, -1, 3], [3, 4, -1, 7]], columns=list("ABCD"))
-
- tm.assert_frame_equal(result, expected)
-
- def test_assign_bad(self):
- df = DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]})
-
- # non-keyword argument
- with pytest.raises(TypeError):
- df.assign(lambda x: x.A)
- with pytest.raises(AttributeError):
- df.assign(C=df.A, D=df.A + df.C)
-
- def test_assign_dependent(self):
- df = DataFrame({"A": [1, 2], "B": [3, 4]})
-
- result = df.assign(C=df.A, D=lambda x: x["A"] + x["C"])
- expected = DataFrame([[1, 3, 1, 2], [2, 4, 2, 4]], columns=list("ABCD"))
- tm.assert_frame_equal(result, expected)
-
- result = df.assign(C=lambda df: df.A, D=lambda df: df["A"] + df["C"])
- expected = DataFrame([[1, 3, 1, 2], [2, 4, 2, 4]], columns=list("ABCD"))
- tm.assert_frame_equal(result, expected)
-
def test_insert_error_msmgs(self):
# GH 7432
| https://api.github.com/repos/pandas-dev/pandas/pulls/32110 | 2020-02-19T16:05:16Z | 2020-02-22T16:03:21Z | 2020-02-22T16:03:21Z | 2020-02-22T16:48:55Z | |
DataFrame: Ctor from non abc.Iterable 2-d array like | diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index 9fe1ec7b792c8..5afd527113fa6 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -511,6 +511,10 @@ def __init__(
mgr = init_ndarray(
values, index, columns, dtype=values.dtype, copy=False
)
+ elif arr.ndim == 2 and columns is not None:
+ if index is None:
+ index = ibase.default_index(len(arr))
+ mgr = init_ndarray(arr, index, columns, dtype=dtype, copy=copy)
else:
raise ValueError("DataFrame constructor not properly called!")
diff --git a/pandas/tests/frame/test_constructors.py b/pandas/tests/frame/test_constructors.py
index 8c9b7cd060059..e1672290e88ba 100644
--- a/pandas/tests/frame/test_constructors.py
+++ b/pandas/tests/frame/test_constructors.py
@@ -2590,3 +2590,24 @@ def test_from_2d_ndarray_with_dtype(self):
expected = pd.DataFrame(array_dim2).astype("datetime64[ns, UTC]")
tm.assert_frame_equal(df, expected)
+
+ def test_from_noniterable_2d_array_like(self):
+ class Sample:
+ def __init__(self, length, width):
+ self.length = length
+ self.width = width
+ self.columns = ["X" + str(i) for i in range(self.width)]
+
+ def __getitem__(self, index):
+ if isinstance(index, int):
+ i = index
+ if i >= self.length:
+ raise IndexError("end")
+ return [3 * i + j for j in range(self.width)]
+
+ def __len__(self):
+ return self.length
+
+ sample = Sample(4, 5)
+ df = pd.DataFrame(sample, columns=sample.columns)
+ assert df.shape == (4, 5)
| In case we pass a 2d array like that do not use __iter__ but the
__getitem__ interface, it falls outside the collection.abc.Iterable case
and throw.
- [ ] closes #xxxx
- [x] tests added / passed
- [x] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32109 | 2020-02-19T15:56:14Z | 2020-02-26T07:34:02Z | null | 2020-02-26T17:43:30Z |
BUG: Allow addition of Timedelta to Timestamp interval | diff --git a/doc/source/whatsnew/v1.1.0.rst b/doc/source/whatsnew/v1.1.0.rst
index cd1cb0b64f74a..8a05d0d36cd2f 100644
--- a/doc/source/whatsnew/v1.1.0.rst
+++ b/doc/source/whatsnew/v1.1.0.rst
@@ -525,6 +525,7 @@ Indexing
- Bug in :class:`Index` constructor where an unhelpful error message was raised for ``numpy`` scalars (:issue:`33017`)
- Bug in :meth:`DataFrame.lookup` incorrectly raising an ``AttributeError`` when ``frame.index`` or ``frame.columns`` is not unique; this will now raise a ``ValueError`` with a helpful error message (:issue:`33041`)
- Bug in :meth:`DataFrame.iloc.__setitem__` creating a new array instead of overwriting ``Categorical`` values in-place (:issue:`32831`)
+- Bug in :class:`Interval` where a :class:`Timedelta` could not be added or subtracted from a :class:`Timestamp` interval (:issue:`32023`)
- Bug in :meth:`DataFrame.copy` _item_cache not invalidated after copy causes post-copy value updates to not be reflected (:issue:`31784`)
- Bug in `Series.__getitem__` with an integer key and a :class:`MultiIndex` with leading integer level failing to raise ``KeyError`` if the key is not present in the first level (:issue:`33355`)
- Bug in :meth:`DataFrame.iloc` when slicing a single column-:class:`DataFrame`` with ``ExtensionDtype`` (e.g. ``df.iloc[:, :1]``) returning an invalid result (:issue:`32957`)
diff --git a/pandas/_libs/interval.pyx b/pandas/_libs/interval.pyx
index a47303ddc93cf..e52474e233510 100644
--- a/pandas/_libs/interval.pyx
+++ b/pandas/_libs/interval.pyx
@@ -1,6 +1,9 @@
import numbers
from operator import le, lt
+from cpython.datetime cimport PyDelta_Check, PyDateTime_IMPORT
+PyDateTime_IMPORT
+
from cpython.object cimport (
Py_EQ,
Py_GE,
@@ -11,7 +14,6 @@ from cpython.object cimport (
PyObject_RichCompare,
)
-
import cython
from cython import Py_ssize_t
@@ -34,7 +36,11 @@ cnp.import_array()
cimport pandas._libs.util as util
from pandas._libs.hashtable cimport Int64Vector
-from pandas._libs.tslibs.util cimport is_integer_object, is_float_object
+from pandas._libs.tslibs.util cimport (
+ is_integer_object,
+ is_float_object,
+ is_timedelta64_object,
+)
from pandas._libs.tslibs import Timestamp
from pandas._libs.tslibs.timedeltas import Timedelta
@@ -294,6 +300,7 @@ cdef class Interval(IntervalMixin):
True
"""
_typ = "interval"
+ __array_priority__ = 1000
cdef readonly object left
"""
@@ -398,14 +405,29 @@ cdef class Interval(IntervalMixin):
return f'{start_symbol}{left}, {right}{end_symbol}'
def __add__(self, y):
- if isinstance(y, numbers.Number):
+ if (
+ isinstance(y, numbers.Number)
+ or PyDelta_Check(y)
+ or is_timedelta64_object(y)
+ ):
return Interval(self.left + y, self.right + y, closed=self.closed)
- elif isinstance(y, Interval) and isinstance(self, numbers.Number):
+ elif (
+ isinstance(y, Interval)
+ and (
+ isinstance(self, numbers.Number)
+ or PyDelta_Check(self)
+ or is_timedelta64_object(self)
+ )
+ ):
return Interval(y.left + self, y.right + self, closed=y.closed)
return NotImplemented
def __sub__(self, y):
- if isinstance(y, numbers.Number):
+ if (
+ isinstance(y, numbers.Number)
+ or PyDelta_Check(y)
+ or is_timedelta64_object(y)
+ ):
return Interval(self.left - y, self.right - y, closed=self.closed)
return NotImplemented
diff --git a/pandas/tests/scalar/interval/test_arithmetic.py b/pandas/tests/scalar/interval/test_arithmetic.py
new file mode 100644
index 0000000000000..5252f1a4d5a24
--- /dev/null
+++ b/pandas/tests/scalar/interval/test_arithmetic.py
@@ -0,0 +1,47 @@
+from datetime import timedelta
+
+import numpy as np
+import pytest
+
+from pandas import Interval, Timedelta, Timestamp
+
+
+@pytest.mark.parametrize("method", ["__add__", "__sub__"])
+@pytest.mark.parametrize(
+ "interval",
+ [
+ Interval(Timestamp("2017-01-01 00:00:00"), Timestamp("2018-01-01 00:00:00")),
+ Interval(Timedelta(days=7), Timedelta(days=14)),
+ ],
+)
+@pytest.mark.parametrize(
+ "delta", [Timedelta(days=7), timedelta(7), np.timedelta64(7, "D")]
+)
+def test_time_interval_add_subtract_timedelta(interval, delta, method):
+ # https://github.com/pandas-dev/pandas/issues/32023
+ result = getattr(interval, method)(delta)
+ left = getattr(interval.left, method)(delta)
+ right = getattr(interval.right, method)(delta)
+ expected = Interval(left, right)
+
+ assert result == expected
+
+
+@pytest.mark.parametrize("interval", [Interval(1, 2), Interval(1.0, 2.0)])
+@pytest.mark.parametrize(
+ "delta", [Timedelta(days=7), timedelta(7), np.timedelta64(7, "D")]
+)
+def test_numeric_interval_add_timedelta_raises(interval, delta):
+ # https://github.com/pandas-dev/pandas/issues/32023
+ msg = "|".join(
+ [
+ "unsupported operand",
+ "cannot use operands",
+ "Only numeric, Timestamp and Timedelta endpoints are allowed",
+ ]
+ )
+ with pytest.raises((TypeError, ValueError), match=msg):
+ interval + delta
+
+ with pytest.raises((TypeError, ValueError), match=msg):
+ delta + interval
| - [x] closes #32023
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32107 | 2020-02-19T14:53:31Z | 2020-04-25T23:58:52Z | 2020-04-25T23:58:52Z | 2020-04-26T00:06:54Z |
Added in a error message | diff --git a/pandas/tests/arrays/test_array.py b/pandas/tests/arrays/test_array.py
index b1b5a9482e34f..f42b16cf18f20 100644
--- a/pandas/tests/arrays/test_array.py
+++ b/pandas/tests/arrays/test_array.py
@@ -291,7 +291,7 @@ class DecimalArray2(DecimalArray):
@classmethod
def _from_sequence(cls, scalars, dtype=None, copy=False):
if isinstance(scalars, (pd.Series, pd.Index)):
- raise TypeError
+ raise TypeError("scalars should not be of type pd.Series or pd.Index")
return super()._from_sequence(scalars, dtype=dtype, copy=copy)
@@ -301,7 +301,9 @@ def test_array_unboxes(index_or_series):
data = box([decimal.Decimal("1"), decimal.Decimal("2")])
# make sure it works
- with pytest.raises(TypeError):
+ with pytest.raises(
+ TypeError, match="scalars should not be of type pd.Series or pd.Index"
+ ):
DecimalArray2._from_sequence(data)
result = pd.array(data, dtype="decimal2")
| - [x] ref #30999
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] Added in an error message
| https://api.github.com/repos/pandas-dev/pandas/pulls/32105 | 2020-02-19T14:01:05Z | 2020-02-27T19:31:58Z | 2020-02-27T19:31:57Z | 2020-02-27T21:00:45Z |
BUG: Pickle NA objects | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index 1b6098e6b6ac1..808e6ae709ce9 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -74,6 +74,7 @@ Bug fixes
**I/O**
- Using ``pd.NA`` with :meth:`DataFrame.to_json` now correctly outputs a null value instead of an empty object (:issue:`31615`)
+- Fixed pickling of ``pandas.NA``. Previously a new object was returned, which broke computations relying on ``NA`` being a singleton (:issue:`31847`)
- Fixed bug in parquet roundtrip with nullable unsigned integer dtypes (:issue:`31896`).
**Experimental dtypes**
diff --git a/pandas/_libs/missing.pyx b/pandas/_libs/missing.pyx
index 4d17a6f883c1c..c54cb652d7b21 100644
--- a/pandas/_libs/missing.pyx
+++ b/pandas/_libs/missing.pyx
@@ -364,6 +364,9 @@ class NAType(C_NAType):
exponent = 31 if is_32bit else 61
return 2 ** exponent - 1
+ def __reduce__(self):
+ return "NA"
+
# Binary arithmetic and comparison ops -> propagate
__add__ = _create_binary_propagating_op("__add__")
diff --git a/pandas/tests/scalar/test_na_scalar.py b/pandas/tests/scalar/test_na_scalar.py
index dcb9d66708724..07656de2e9062 100644
--- a/pandas/tests/scalar/test_na_scalar.py
+++ b/pandas/tests/scalar/test_na_scalar.py
@@ -1,3 +1,5 @@
+import pickle
+
import numpy as np
import pytest
@@ -267,3 +269,26 @@ def test_integer_hash_collision_set():
assert len(result) == 2
assert NA in result
assert hash(NA) in result
+
+
+def test_pickle_roundtrip():
+ # https://github.com/pandas-dev/pandas/issues/31847
+ result = pickle.loads(pickle.dumps(pd.NA))
+ assert result is pd.NA
+
+
+def test_pickle_roundtrip_pandas():
+ result = tm.round_trip_pickle(pd.NA)
+ assert result is pd.NA
+
+
+@pytest.mark.parametrize(
+ "values, dtype", [([1, 2, pd.NA], "Int64"), (["A", "B", pd.NA], "string")]
+)
+@pytest.mark.parametrize("as_frame", [True, False])
+def test_pickle_roundtrip_containers(as_frame, values, dtype):
+ s = pd.Series(pd.array(values, dtype=dtype))
+ if as_frame:
+ s = s.to_frame(name="A")
+ result = tm.round_trip_pickle(s)
+ tm.assert_equal(result, s)
| According to
https://docs.python.org/3/library/pickle.html#object.__reduce__,
> If a string is returned, the string should be interpreted as the name
> of a global variable. It should be the object’s local name relative to
> its module; the pickle module searches the module namespace to determine
> the object’s module. This behaviour is typically useful for singletons.
Closes https://github.com/pandas-dev/pandas/issues/31847 | https://api.github.com/repos/pandas-dev/pandas/pulls/32104 | 2020-02-19T13:46:22Z | 2020-03-02T23:13:33Z | 2020-03-02T23:13:33Z | 2020-03-03T12:44:06Z |
added msg to TypeError test_to_boolean_array_error | diff --git a/pandas/tests/arrays/test_boolean.py b/pandas/tests/arrays/test_boolean.py
index cb9b07db4a0df..d14d6f3ff0c41 100644
--- a/pandas/tests/arrays/test_boolean.py
+++ b/pandas/tests/arrays/test_boolean.py
@@ -131,7 +131,8 @@ def test_to_boolean_array_missing_indicators(a, b):
)
def test_to_boolean_array_error(values):
# error in converting existing arrays to BooleanArray
- with pytest.raises(TypeError):
+ msg = "Need to pass bool-like value"
+ with pytest.raises(TypeError, match=msg):
pd.array(values, dtype="boolean")
| - [x] ref #30999
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
Fixed bare pytest.raises (#30999) for test_to_boolean_array_error in test_boolean.py
| https://api.github.com/repos/pandas-dev/pandas/pulls/32103 | 2020-02-19T12:52:58Z | 2020-02-20T15:01:13Z | 2020-02-20T15:01:13Z | 2020-02-25T10:48:57Z |
TST: Fix bare pytest.raises in test_parsing.py | diff --git a/pandas/tests/tslibs/test_parsing.py b/pandas/tests/tslibs/test_parsing.py
index 1ba7832c47e6c..dc7421ea63464 100644
--- a/pandas/tests/tslibs/test_parsing.py
+++ b/pandas/tests/tslibs/test_parsing.py
@@ -2,6 +2,7 @@
Tests for Timestamp parsing, aimed at pandas/_libs/tslibs/parsing.pyx
"""
from datetime import datetime
+import re
from dateutil.parser import parse
import numpy as np
@@ -24,7 +25,8 @@ def test_parse_time_string():
def test_parse_time_string_invalid_type():
# Raise on invalid input, don't just return it
- with pytest.raises(TypeError):
+ msg = "Argument 'arg' has incorrect type (expected str, got tuple)"
+ with pytest.raises(TypeError, match=re.escape(msg)):
parse_time_string((4, 5))
@@ -217,7 +219,8 @@ def test_try_parse_dates():
def test_parse_time_string_check_instance_type_raise_exception():
# issue 20684
- with pytest.raises(TypeError):
+ msg = "Argument 'arg' has incorrect type (expected str, got tuple)"
+ with pytest.raises(TypeError, match=re.escape(msg)):
parse_time_string((1, 2, 3))
result = parse_time_string("2019")
| - [x] ref #30999
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
Fixes bare pytest.raises issue for `test_parsing.py`. | https://api.github.com/repos/pandas-dev/pandas/pulls/32102 | 2020-02-19T12:52:56Z | 2020-02-20T16:39:44Z | 2020-02-20T16:39:44Z | 2020-02-20T16:39:53Z |
TYP: check_untyped_defs core.tools.datetimes | diff --git a/pandas/core/tools/datetimes.py b/pandas/core/tools/datetimes.py
index 6d45ddd29d783..b10b736b9134e 100644
--- a/pandas/core/tools/datetimes.py
+++ b/pandas/core/tools/datetimes.py
@@ -2,7 +2,7 @@
from datetime import datetime, time
from functools import partial
from itertools import islice
-from typing import Optional, TypeVar, Union
+from typing import List, Optional, TypeVar, Union
import numpy as np
@@ -296,7 +296,9 @@ def _convert_listlike_datetimes(
if not isinstance(arg, (DatetimeArray, DatetimeIndex)):
return DatetimeIndex(arg, tz=tz, name=name)
if tz == "utc":
- arg = arg.tz_convert(None).tz_localize(tz)
+ # error: Item "DatetimeIndex" of "Union[DatetimeArray, DatetimeIndex]" has
+ # no attribute "tz_convert"
+ arg = arg.tz_convert(None).tz_localize(tz) # type: ignore
return arg
elif is_datetime64_ns_dtype(arg):
@@ -307,7 +309,9 @@ def _convert_listlike_datetimes(
pass
elif tz:
# DatetimeArray, DatetimeIndex
- return arg.tz_localize(tz)
+ # error: Item "DatetimeIndex" of "Union[DatetimeArray, DatetimeIndex]" has
+ # no attribute "tz_localize"
+ return arg.tz_localize(tz) # type: ignore
return arg
@@ -826,18 +830,18 @@ def f(value):
required = ["year", "month", "day"]
req = sorted(set(required) - set(unit_rev.keys()))
if len(req):
- required = ",".join(req)
+ _required = ",".join(req)
raise ValueError(
"to assemble mappings requires at least that "
- f"[year, month, day] be specified: [{required}] is missing"
+ f"[year, month, day] be specified: [{_required}] is missing"
)
# keys we don't recognize
excess = sorted(set(unit_rev.keys()) - set(_unit_map.values()))
if len(excess):
- excess = ",".join(excess)
+ _excess = ",".join(excess)
raise ValueError(
- f"extra keys have been passed to the datetime assemblage: [{excess}]"
+ f"extra keys have been passed to the datetime assemblage: [{_excess}]"
)
def coerce(values):
@@ -992,7 +996,7 @@ def _convert_listlike(arg, format):
if infer_time_format and format is None:
format = _guess_time_format_for_array(arg)
- times = []
+ times: List[Optional[time]] = []
if format is not None:
for element in arg:
try:
diff --git a/setup.cfg b/setup.cfg
index 4a900e581c353..32efec7d2cf0d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -234,9 +234,6 @@ check_untyped_defs=False
[mypy-pandas.core.strings]
check_untyped_defs=False
-[mypy-pandas.core.tools.datetimes]
-check_untyped_defs=False
-
[mypy-pandas.core.window.common]
check_untyped_defs=False
| pandas\core\tools\datetimes.py:299: error: Item "DatetimeIndex" of "Union[DatetimeArray, DatetimeIndex]" has no attribute "tz_convert"
pandas\core\tools\datetimes.py:310: error: Item "DatetimeIndex" of "Union[DatetimeArray, DatetimeIndex]" has no attribute "tz_localize"
pandas\core\tools\datetimes.py:829: error: Incompatible types in assignment (expression has type "str", variable has type "List[str]")
pandas\core\tools\datetimes.py:838: error: Incompatible types in assignment (expression has type "str", variable has type "List[Any]")
pandas\core\tools\datetimes.py:1010: error: Argument 1 to "append" of "list" has incompatible type "None"; expected "time"
pandas\core\tools\datetimes.py:1035: error: Argument 1 to "append" of "list" has incompatible type "None"; expected "time" | https://api.github.com/repos/pandas-dev/pandas/pulls/32101 | 2020-02-19T12:33:10Z | 2020-02-20T01:24:38Z | 2020-02-20T01:24:38Z | 2020-02-20T09:40:16Z |
TYP: check_untyped_defs arrays.sparse.array | diff --git a/pandas/core/arrays/sparse/array.py b/pandas/core/arrays/sparse/array.py
index b17a4647ffc9f..542cfd334b810 100644
--- a/pandas/core/arrays/sparse/array.py
+++ b/pandas/core/arrays/sparse/array.py
@@ -4,7 +4,7 @@
from collections import abc
import numbers
import operator
-from typing import Any, Callable
+from typing import Any, Callable, Union
import warnings
import numpy as np
@@ -479,7 +479,7 @@ def sp_index(self):
return self._sparse_index
@property
- def sp_values(self):
+ def sp_values(self) -> np.ndarray:
"""
An ndarray containing the non- ``fill_value`` values.
@@ -798,13 +798,13 @@ def _get_val_at(self, loc):
val = com.maybe_box_datetimelike(val, self.sp_values.dtype)
return val
- def take(self, indices, allow_fill=False, fill_value=None):
+ def take(self, indices, allow_fill=False, fill_value=None) -> "SparseArray":
if is_scalar(indices):
raise ValueError(f"'indices' must be an array, not a scalar '{indices}'.")
indices = np.asarray(indices, dtype=np.int32)
if indices.size == 0:
- result = []
+ result = np.array([], dtype="object")
kwargs = {"dtype": self.dtype}
elif allow_fill:
result = self._take_with_fill(indices, fill_value=fill_value)
@@ -815,7 +815,7 @@ def take(self, indices, allow_fill=False, fill_value=None):
return type(self)(result, fill_value=self.fill_value, kind=self.kind, **kwargs)
- def _take_with_fill(self, indices, fill_value=None):
+ def _take_with_fill(self, indices, fill_value=None) -> np.ndarray:
if fill_value is None:
fill_value = self.dtype.na_value
@@ -878,7 +878,7 @@ def _take_with_fill(self, indices, fill_value=None):
return taken
- def _take_without_fill(self, indices):
+ def _take_without_fill(self, indices) -> Union[np.ndarray, "SparseArray"]:
to_shift = indices < 0
indices = indices.copy()
diff --git a/setup.cfg b/setup.cfg
index 87054f864813f..61d5b1030a500 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -150,9 +150,6 @@ check_untyped_defs=False
[mypy-pandas.core.arrays.interval]
check_untyped_defs=False
-[mypy-pandas.core.arrays.sparse.array]
-check_untyped_defs=False
-
[mypy-pandas.core.base]
check_untyped_defs=False
| pandas\core\arrays\sparse\array.py:807: error: Need type annotation for 'result' (hint: "result: List[<type>] = ...") | https://api.github.com/repos/pandas-dev/pandas/pulls/32099 | 2020-02-19T11:51:01Z | 2020-02-20T22:37:25Z | 2020-02-20T22:37:25Z | 2020-02-21T08:16:55Z |
TYP: check_untyped_defs core.arrays.interval | diff --git a/pandas/core/arrays/interval.py b/pandas/core/arrays/interval.py
index ab3ee5bbcdc3a..bb8817c3a7fa2 100644
--- a/pandas/core/arrays/interval.py
+++ b/pandas/core/arrays/interval.py
@@ -1,5 +1,6 @@
from operator import le, lt
import textwrap
+from typing import Any, Sequence, Tuple
import numpy as np
@@ -433,30 +434,33 @@ def from_arrays(cls, left, right, closed="right", copy=False, dtype=None):
),
)
)
- def from_tuples(cls, data, closed="right", copy=False, dtype=None):
+ def from_tuples(
+ cls, data: Sequence[Tuple[Any, Any]], closed="right", copy=False, dtype=None
+ ):
+ left: Sequence
+ right: Sequence
if len(data):
left, right = [], []
+ for d in data:
+ if isna(d):
+ lhs = rhs = np.nan
+ else:
+ name = cls.__name__
+ try:
+ # need list of length 2 tuples, e.g. [(0, 1), (1, 2), ...]
+ lhs, rhs = d
+ except ValueError:
+ msg = f"{name}.from_tuples requires tuples of length 2, got {d}"
+ raise ValueError(msg)
+ except TypeError:
+ msg = f"{name}.from_tuples received an invalid item, {d}"
+ raise TypeError(msg)
+ left.append(lhs)
+ right.append(rhs)
else:
# ensure that empty data keeps input dtype
left = right = data
- for d in data:
- if isna(d):
- lhs = rhs = np.nan
- else:
- name = cls.__name__
- try:
- # need list of length 2 tuples, e.g. [(0, 1), (1, 2), ...]
- lhs, rhs = d
- except ValueError:
- msg = f"{name}.from_tuples requires tuples of length 2, got {d}"
- raise ValueError(msg)
- except TypeError:
- msg = f"{name}.from_tuples received an invalid item, {d}"
- raise TypeError(msg)
- left.append(lhs)
- right.append(rhs)
-
return cls.from_arrays(left, right, closed, copy=False, dtype=dtype)
def _validate(self):
diff --git a/setup.cfg b/setup.cfg
index 4a900e581c353..d8801f02b5a27 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -150,9 +150,6 @@ check_untyped_defs=False
[mypy-pandas.core.arrays.categorical]
check_untyped_defs=False
-[mypy-pandas.core.arrays.interval]
-check_untyped_defs=False
-
[mypy-pandas.core.arrays.sparse.array]
check_untyped_defs=False
| pandas\core\arrays\interval.py:438: error: Need type annotation for 'left' (hint: "left: List[<type>] = ...")
pandas\core\arrays\interval.py:438: error: Need type annotation for 'right' (hint: "right: List[<type>] = ...") | https://api.github.com/repos/pandas-dev/pandas/pulls/32098 | 2020-02-19T11:32:43Z | 2020-02-20T11:32:37Z | null | 2020-02-20T11:32:37Z |
TYP: check_untyped_defs core.arrays.categorical | diff --git a/pandas/core/arrays/categorical.py b/pandas/core/arrays/categorical.py
index d469b574820f9..a5048e3aae899 100644
--- a/pandas/core/arrays/categorical.py
+++ b/pandas/core/arrays/categorical.py
@@ -341,10 +341,7 @@ def __init__(
values = _convert_to_list_like(values)
# By convention, empty lists result in object dtype:
- if len(values) == 0:
- sanitize_dtype = "object"
- else:
- sanitize_dtype = None
+ sanitize_dtype = "object" if len(values) == 0 else None
null_mask = isna(values)
if null_mask.any():
values = [values[idx] for idx in np.where(~null_mask)[0]]
@@ -1496,7 +1493,7 @@ def check_for_ordered(self, op):
def _values_for_argsort(self):
return self._codes.copy()
- def argsort(self, ascending=True, kind="quicksort", *args, **kwargs):
+ def argsort(self, ascending=True, kind="quicksort", **kwargs):
"""
Return the indices that would sort the Categorical.
@@ -1511,7 +1508,7 @@ def argsort(self, ascending=True, kind="quicksort", *args, **kwargs):
or descending sort.
kind : {'quicksort', 'mergesort', 'heapsort'}, optional
Sorting algorithm.
- *args, **kwargs:
+ **kwargs:
passed through to :func:`numpy.argsort`.
Returns
@@ -1547,7 +1544,7 @@ def argsort(self, ascending=True, kind="quicksort", *args, **kwargs):
>>> cat.argsort()
array([2, 0, 1])
"""
- return super().argsort(ascending=ascending, kind=kind, *args, **kwargs)
+ return super().argsort(ascending=ascending, kind=kind, **kwargs)
def sort_values(self, inplace=False, ascending=True, na_position="last"):
"""
diff --git a/setup.cfg b/setup.cfg
index 4a900e581c353..4b0b32b09ca8d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -147,9 +147,6 @@ check_untyped_defs=False
[mypy-pandas._version]
check_untyped_defs=False
-[mypy-pandas.core.arrays.categorical]
-check_untyped_defs=False
-
[mypy-pandas.core.arrays.interval]
check_untyped_defs=False
| pandas\core\arrays\categorical.py:347: error: Incompatible types in assignment (expression has type "None", variable has type "str")
pandas\core\arrays\categorical.py:1550: error: "argsort" of "ExtensionArray" gets multiple values for keyword argument "ascending"
pandas\core\arrays\categorical.py:1550: error: "argsort" of "ExtensionArray" gets multiple values for keyword argument "kind" | https://api.github.com/repos/pandas-dev/pandas/pulls/32097 | 2020-02-19T11:22:04Z | 2020-02-19T22:29:57Z | 2020-02-19T22:29:57Z | 2020-02-20T09:38:34Z |
Backport PR #31841: BUG: Fix rolling.corr with time frequency | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index 1622a6dc8ce56..19358689a2186 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -18,6 +18,7 @@ Fixed regressions
- Fixed regression in :meth:`DataFrame.to_excel` when ``columns`` kwarg is passed (:issue:`31677`)
- Fixed regression in :meth:`Series.align` when ``other`` is a DataFrame and ``method`` is not None (:issue:`31785`)
- Fixed regression in :meth:`pandas.core.groupby.RollingGroupby.apply` where the ``raw`` parameter was ignored (:issue:`31754`)
+- Fixed regression in :meth:`rolling(..).corr() <pandas.core.window.Rolling.corr>` when using a time offset (:issue:`31789`)
-
.. ---------------------------------------------------------------------------
diff --git a/pandas/core/window/rolling.py b/pandas/core/window/rolling.py
index 3d5cee3bd5a31..b7e1779a08562 100644
--- a/pandas/core/window/rolling.py
+++ b/pandas/core/window/rolling.py
@@ -1782,7 +1782,7 @@ def corr(self, other=None, pairwise=None, **kwargs):
# only default unset
pairwise = True if pairwise is None else pairwise
other = self._shallow_copy(other)
- window = self._get_window(other)
+ window = self._get_window(other) if not self.is_freq_type else self.win_freq
def _get_corr(a, b):
a = a.rolling(
diff --git a/pandas/tests/window/test_pairwise.py b/pandas/tests/window/test_pairwise.py
index 717273cff64ea..bb305e93a3cf1 100644
--- a/pandas/tests/window/test_pairwise.py
+++ b/pandas/tests/window/test_pairwise.py
@@ -1,8 +1,9 @@
import warnings
+import numpy as np
import pytest
-from pandas import DataFrame, Series
+from pandas import DataFrame, Series, date_range
import pandas._testing as tm
from pandas.core.algorithms import safe_sort
@@ -181,3 +182,10 @@ def test_pairwise_with_series(self, f):
for i, result in enumerate(results):
if i > 0:
self.compare(result, results[0])
+
+ def test_corr_freq_memory_error(self):
+ # GH 31789
+ s = Series(range(5), index=date_range("2020", periods=5))
+ result = s.rolling("12H").corr(s)
+ expected = Series([np.nan] * 5, index=date_range("2020", periods=5))
+ tm.assert_series_equal(result, expected)
| https://github.com/pandas-dev/pandas/pull/31841 | https://api.github.com/repos/pandas-dev/pandas/pulls/32094 | 2020-02-19T07:40:21Z | 2020-02-19T09:58:57Z | 2020-02-19T09:58:57Z | 2020-02-19T10:01:25Z |
Backport PR #31842 on branch 1.0.x (BUG: Fix raw parameter not being respected in groupby.rolling.apply) | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index 805f87b63eef8..1622a6dc8ce56 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -17,6 +17,7 @@ Fixed regressions
- Fixed regression in :meth:`DataFrame.to_excel` when ``columns`` kwarg is passed (:issue:`31677`)
- Fixed regression in :meth:`Series.align` when ``other`` is a DataFrame and ``method`` is not None (:issue:`31785`)
+- Fixed regression in :meth:`pandas.core.groupby.RollingGroupby.apply` where the ``raw`` parameter was ignored (:issue:`31754`)
-
.. ---------------------------------------------------------------------------
diff --git a/pandas/core/window/rolling.py b/pandas/core/window/rolling.py
index c1e34757b45d4..3d5cee3bd5a31 100644
--- a/pandas/core/window/rolling.py
+++ b/pandas/core/window/rolling.py
@@ -1296,13 +1296,14 @@ def apply(
raise ValueError("engine must be either 'numba' or 'cython'")
# TODO: Why do we always pass center=False?
- # name=func for WindowGroupByMixin._apply
+ # name=func & raw=raw for WindowGroupByMixin._apply
return self._apply(
apply_func,
center=False,
floor=0,
name=func,
use_numba_cache=engine == "numba",
+ raw=raw,
)
def _generate_cython_apply_func(self, args, kwargs, raw, offset, func):
diff --git a/pandas/tests/window/test_grouper.py b/pandas/tests/window/test_grouper.py
index 355ef3a90d424..5b2687271f9d6 100644
--- a/pandas/tests/window/test_grouper.py
+++ b/pandas/tests/window/test_grouper.py
@@ -190,3 +190,21 @@ def test_expanding_apply(self, raw):
result = r.apply(lambda x: x.sum(), raw=raw)
expected = g.apply(lambda x: x.expanding().apply(lambda y: y.sum(), raw=raw))
tm.assert_frame_equal(result, expected)
+
+ @pytest.mark.parametrize("expected_value,raw_value", [[1.0, True], [0.0, False]])
+ def test_groupby_rolling(self, expected_value, raw_value):
+ # GH 31754
+
+ def foo(x):
+ return int(isinstance(x, np.ndarray))
+
+ df = pd.DataFrame({"id": [1, 1, 1], "value": [1, 2, 3]})
+ result = df.groupby("id").value.rolling(1).apply(foo, raw=raw_value)
+ expected = Series(
+ [expected_value] * 3,
+ index=pd.MultiIndex.from_tuples(
+ ((1, 0), (1, 1), (1, 2)), names=["id", None]
+ ),
+ name="value",
+ )
+ tm.assert_series_equal(result, expected)
| Backport PR #31842: BUG: Fix raw parameter not being respected in groupby.rolling.apply | https://api.github.com/repos/pandas-dev/pandas/pulls/32093 | 2020-02-19T07:35:30Z | 2020-02-19T08:15:47Z | 2020-02-19T08:15:47Z | 2020-02-19T08:15:47Z |
TST: parametrize and de-duplicate timedelta64 arithmetic tests | diff --git a/pandas/tests/arithmetic/test_timedelta64.py b/pandas/tests/arithmetic/test_timedelta64.py
index abdeb1b30b626..300e468c34e65 100644
--- a/pandas/tests/arithmetic/test_timedelta64.py
+++ b/pandas/tests/arithmetic/test_timedelta64.py
@@ -25,6 +25,19 @@
get_upcast_box,
)
+
+def assert_dtype(obj, expected_dtype):
+ """
+ Helper to check the dtype for a Series, Index, or single-column DataFrame.
+ """
+ if isinstance(obj, DataFrame):
+ dtype = obj.dtypes.iat[0]
+ else:
+ dtype = obj.dtype
+
+ assert dtype == expected_dtype
+
+
# ------------------------------------------------------------------
# Timedelta64[ns] dtype Comparisons
@@ -522,19 +535,35 @@ def test_tda_add_sub_index(self):
# -------------------------------------------------------------
# Binary operations TimedeltaIndex and timedelta-like
- def test_tdi_iadd_timedeltalike(self, two_hours):
+ def test_tdi_iadd_timedeltalike(self, two_hours, box_with_array):
# only test adding/sub offsets as + is now numeric
rng = timedelta_range("1 days", "10 days")
expected = timedelta_range("1 days 02:00:00", "10 days 02:00:00", freq="D")
+
+ rng = tm.box_expected(rng, box_with_array)
+ expected = tm.box_expected(expected, box_with_array)
+
+ orig_rng = rng
rng += two_hours
- tm.assert_index_equal(rng, expected)
+ tm.assert_equal(rng, expected)
+ if box_with_array is not pd.Index:
+ # Check that operation is actually inplace
+ tm.assert_equal(orig_rng, expected)
- def test_tdi_isub_timedeltalike(self, two_hours):
+ def test_tdi_isub_timedeltalike(self, two_hours, box_with_array):
# only test adding/sub offsets as - is now numeric
rng = timedelta_range("1 days", "10 days")
expected = timedelta_range("0 days 22:00:00", "9 days 22:00:00")
+
+ rng = tm.box_expected(rng, box_with_array)
+ expected = tm.box_expected(expected, box_with_array)
+
+ orig_rng = rng
rng -= two_hours
- tm.assert_index_equal(rng, expected)
+ tm.assert_equal(rng, expected)
+ if box_with_array is not pd.Index:
+ # Check that operation is actually inplace
+ tm.assert_equal(orig_rng, expected)
# -------------------------------------------------------------
@@ -1013,15 +1042,6 @@ def test_td64arr_add_datetime64_nat(self, box_with_array):
# ------------------------------------------------------------------
# Invalid __add__/__sub__ operations
- # TODO: moved from frame tests; needs parametrization/de-duplication
- def test_td64_df_add_int_frame(self):
- # GH#22696 Check that we don't dispatch to numpy implementation,
- # which treats int64 as m8[ns]
- tdi = pd.timedelta_range("1", periods=3)
- df = tdi.to_frame()
- other = pd.DataFrame([1, 2, 3], index=tdi) # indexed like `df`
- assert_invalid_addsub_type(df, other)
-
@pytest.mark.parametrize("pi_freq", ["D", "W", "Q", "H"])
@pytest.mark.parametrize("tdi_freq", [None, "H"])
def test_td64arr_sub_periodlike(self, box_with_array, tdi_freq, pi_freq):
@@ -1100,6 +1120,9 @@ def test_td64arr_add_sub_int(self, box_with_array, one):
def test_td64arr_add_sub_integer_array(self, box_with_array):
# GH#19959, deprecated GH#22535
+ # GH#22696 for DataFrame case, check that we don't dispatch to numpy
+ # implementation, which treats int64 as m8[ns]
+
rng = timedelta_range("1 days 09:00:00", freq="H", periods=3)
tdarr = tm.box_expected(rng, box_with_array)
other = tm.box_expected([4, 3, 2], box_with_array)
@@ -1119,60 +1142,6 @@ def test_td64arr_addsub_integer_array_no_freq(self, box_with_array):
# ------------------------------------------------------------------
# Operations with timedelta-like others
- # TODO: this was taken from tests.series.test_ops; de-duplicate
- def test_operators_timedelta64_with_timedelta(self, scalar_td):
- # smoke tests
- td1 = Series([timedelta(minutes=5, seconds=3)] * 3)
- td1.iloc[2] = np.nan
-
- td1 + scalar_td
- scalar_td + td1
- td1 - scalar_td
- scalar_td - td1
- td1 / scalar_td
- scalar_td / td1
-
- # TODO: this was taken from tests.series.test_ops; de-duplicate
- def test_timedelta64_operations_with_timedeltas(self):
- # td operate with td
- td1 = Series([timedelta(minutes=5, seconds=3)] * 3)
- td2 = timedelta(minutes=5, seconds=4)
- result = td1 - td2
- expected = Series([timedelta(seconds=0)] * 3) - Series(
- [timedelta(seconds=1)] * 3
- )
- assert result.dtype == "m8[ns]"
- tm.assert_series_equal(result, expected)
-
- result2 = td2 - td1
- expected = Series([timedelta(seconds=1)] * 3) - Series(
- [timedelta(seconds=0)] * 3
- )
- tm.assert_series_equal(result2, expected)
-
- # roundtrip
- tm.assert_series_equal(result + td2, td1)
-
- # Now again, using pd.to_timedelta, which should build
- # a Series or a scalar, depending on input.
- td1 = Series(pd.to_timedelta(["00:05:03"] * 3))
- td2 = pd.to_timedelta("00:05:04")
- result = td1 - td2
- expected = Series([timedelta(seconds=0)] * 3) - Series(
- [timedelta(seconds=1)] * 3
- )
- assert result.dtype == "m8[ns]"
- tm.assert_series_equal(result, expected)
-
- result2 = td2 - td1
- expected = Series([timedelta(seconds=1)] * 3) - Series(
- [timedelta(seconds=0)] * 3
- )
- tm.assert_series_equal(result2, expected)
-
- # roundtrip
- tm.assert_series_equal(result + td2, td1)
-
def test_td64arr_add_td64_array(self, box_with_array):
box = box_with_array
dti = pd.date_range("2016-01-01", periods=3)
@@ -1203,7 +1172,6 @@ def test_td64arr_sub_td64_array(self, box_with_array):
result = tdarr - tdi
tm.assert_equal(result, expected)
- # TODO: parametrize over [add, sub, radd, rsub]?
@pytest.mark.parametrize(
"names",
[
@@ -1232,17 +1200,11 @@ def test_td64arr_add_sub_tdi(self, box, names):
result = tdi + ser
tm.assert_equal(result, expected)
- if box is not pd.DataFrame:
- assert result.dtype == "timedelta64[ns]"
- else:
- assert result.dtypes[0] == "timedelta64[ns]"
+ assert_dtype(result, "timedelta64[ns]")
result = ser + tdi
tm.assert_equal(result, expected)
- if box is not pd.DataFrame:
- assert result.dtype == "timedelta64[ns]"
- else:
- assert result.dtypes[0] == "timedelta64[ns]"
+ assert_dtype(result, "timedelta64[ns]")
expected = Series(
[Timedelta(hours=-3), Timedelta(days=1, hours=-4)], name=names[2]
@@ -1251,17 +1213,11 @@ def test_td64arr_add_sub_tdi(self, box, names):
result = tdi - ser
tm.assert_equal(result, expected)
- if box is not pd.DataFrame:
- assert result.dtype == "timedelta64[ns]"
- else:
- assert result.dtypes[0] == "timedelta64[ns]"
+ assert_dtype(result, "timedelta64[ns]")
result = ser - tdi
tm.assert_equal(result, -expected)
- if box is not pd.DataFrame:
- assert result.dtype == "timedelta64[ns]"
- else:
- assert result.dtypes[0] == "timedelta64[ns]"
+ assert_dtype(result, "timedelta64[ns]")
def test_td64arr_add_sub_td64_nat(self, box_with_array):
# GH#23320 special handling for timedelta64("NaT")
@@ -1296,6 +1252,7 @@ def test_td64arr_sub_NaT(self, box_with_array):
def test_td64arr_add_timedeltalike(self, two_hours, box_with_array):
# only test adding/sub offsets as + is now numeric
+ # GH#10699 for Tick cases
box = box_with_array
rng = timedelta_range("1 days", "10 days")
expected = timedelta_range("1 days 02:00:00", "10 days 02:00:00", freq="D")
@@ -1305,8 +1262,12 @@ def test_td64arr_add_timedeltalike(self, two_hours, box_with_array):
result = rng + two_hours
tm.assert_equal(result, expected)
+ result = two_hours + rng
+ tm.assert_equal(result, expected)
+
def test_td64arr_sub_timedeltalike(self, two_hours, box_with_array):
# only test adding/sub offsets as - is now numeric
+ # GH#10699 for Tick cases
box = box_with_array
rng = timedelta_range("1 days", "10 days")
expected = timedelta_range("0 days 22:00:00", "9 days 22:00:00")
@@ -1317,46 +1278,12 @@ def test_td64arr_sub_timedeltalike(self, two_hours, box_with_array):
result = rng - two_hours
tm.assert_equal(result, expected)
+ result = two_hours - rng
+ tm.assert_equal(result, -expected)
+
# ------------------------------------------------------------------
# __add__/__sub__ with DateOffsets and arrays of DateOffsets
- # TODO: this was taken from tests.series.test_operators; de-duplicate
- def test_timedelta64_operations_with_DateOffset(self):
- # GH#10699
- td = Series([timedelta(minutes=5, seconds=3)] * 3)
- result = td + pd.offsets.Minute(1)
- expected = Series([timedelta(minutes=6, seconds=3)] * 3)
- tm.assert_series_equal(result, expected)
-
- result = td - pd.offsets.Minute(1)
- expected = Series([timedelta(minutes=4, seconds=3)] * 3)
- tm.assert_series_equal(result, expected)
-
- with tm.assert_produces_warning(PerformanceWarning):
- result = td + Series(
- [pd.offsets.Minute(1), pd.offsets.Second(3), pd.offsets.Hour(2)]
- )
- expected = Series(
- [
- timedelta(minutes=6, seconds=3),
- timedelta(minutes=5, seconds=6),
- timedelta(hours=2, minutes=5, seconds=3),
- ]
- )
- tm.assert_series_equal(result, expected)
-
- result = td + pd.offsets.Minute(1) + pd.offsets.Second(12)
- expected = Series([timedelta(minutes=6, seconds=15)] * 3)
- tm.assert_series_equal(result, expected)
-
- # valid DateOffsets
- for do in ["Hour", "Minute", "Second", "Day", "Micro", "Milli", "Nano"]:
- op = getattr(pd.offsets, do)
- td + op(5)
- op(5) + td
- td - op(5)
- op(5) - td
-
@pytest.mark.parametrize(
"names", [(None, None, None), ("foo", "bar", None), ("foo", "foo", "foo")]
)
@@ -1561,26 +1488,6 @@ class TestTimedeltaArraylikeMulDivOps:
# Tests for timedelta64[ns]
# __mul__, __rmul__, __div__, __rdiv__, __floordiv__, __rfloordiv__
- # TODO: Moved from tests.series.test_operators; needs cleanup
- @pytest.mark.parametrize("m", [1, 3, 10])
- @pytest.mark.parametrize("unit", ["D", "h", "m", "s", "ms", "us", "ns"])
- def test_timedelta64_conversions(self, m, unit):
- startdate = Series(pd.date_range("2013-01-01", "2013-01-03"))
- enddate = Series(pd.date_range("2013-03-01", "2013-03-03"))
-
- ser = enddate - startdate
- ser[2] = np.nan
-
- # op
- expected = Series([x / np.timedelta64(m, unit) for x in ser])
- result = ser / np.timedelta64(m, unit)
- tm.assert_series_equal(result, expected)
-
- # reverse op
- expected = Series([Timedelta(np.timedelta64(m, unit)) / x for x in ser])
- result = np.timedelta64(m, unit) / ser
- tm.assert_series_equal(result, expected)
-
# ------------------------------------------------------------------
# Multiplication
# organized with scalar others first, then array-like
@@ -1734,6 +1641,29 @@ def test_td64arr_div_tdlike_scalar(self, two_hours, box_with_array):
expected = 1 / expected
tm.assert_equal(result, expected)
+ @pytest.mark.parametrize("m", [1, 3, 10])
+ @pytest.mark.parametrize("unit", ["D", "h", "m", "s", "ms", "us", "ns"])
+ def test_td64arr_div_td64_scalar(self, m, unit, box_with_array):
+ startdate = Series(pd.date_range("2013-01-01", "2013-01-03"))
+ enddate = Series(pd.date_range("2013-03-01", "2013-03-03"))
+
+ ser = enddate - startdate
+ ser[2] = np.nan
+ flat = ser
+ ser = tm.box_expected(ser, box_with_array)
+
+ # op
+ expected = Series([x / np.timedelta64(m, unit) for x in flat])
+ expected = tm.box_expected(expected, box_with_array)
+ result = ser / np.timedelta64(m, unit)
+ tm.assert_equal(result, expected)
+
+ # reverse op
+ expected = Series([Timedelta(np.timedelta64(m, unit)) / x for x in flat])
+ expected = tm.box_expected(expected, box_with_array)
+ result = np.timedelta64(m, unit) / ser
+ tm.assert_equal(result, expected)
+
def test_td64arr_div_tdlike_scalar_with_nat(self, two_hours, box_with_array):
rng = TimedeltaIndex(["1 days", pd.NaT, "2 days"], name="foo")
expected = pd.Float64Index([12, np.nan, 24], name="foo")
| https://api.github.com/repos/pandas-dev/pandas/pulls/32091 | 2020-02-19T03:45:07Z | 2020-02-23T15:56:30Z | 2020-02-23T15:56:30Z | 2020-02-23T17:05:17Z | |
Series append raises TypeError | diff --git a/doc/source/whatsnew/v1.1.0.rst b/doc/source/whatsnew/v1.1.0.rst
index 57c53f73962dc..7c68005144cbc 100644
--- a/doc/source/whatsnew/v1.1.0.rst
+++ b/doc/source/whatsnew/v1.1.0.rst
@@ -327,6 +327,7 @@ Reshaping
- Bug in :func:`crosstab` when inputs are two Series and have tuple names, the output will keep dummy MultiIndex as columns. (:issue:`18321`)
- :meth:`DataFrame.pivot` can now take lists for ``index`` and ``columns`` arguments (:issue:`21425`)
- Bug in :func:`concat` where the resulting indices are not copied when ``copy=True`` (:issue:`29879`)
+- :meth:`Series.append` will now raise a ``TypeError`` when passed a DataFrame or a sequence containing Dataframe (:issue:`31413`)
- :meth:`DataFrame.replace` and :meth:`Series.replace` will raise a ``TypeError`` if ``to_replace`` is not an expected type. Previously the ``replace`` would fail silently (:issue:`18634`)
@@ -349,7 +350,6 @@ Other
instead of ``TypeError: Can only append a Series if ignore_index=True or if the Series has a name`` (:issue:`30871`)
- Set operations on an object-dtype :class:`Index` now always return object-dtype results (:issue:`31401`)
- Bug in :meth:`AbstractHolidayCalendar.holidays` when no rules were defined (:issue:`31415`)
--
.. ---------------------------------------------------------------------------
diff --git a/pandas/core/series.py b/pandas/core/series.py
index d565cbbdd5344..9e67393df3370 100644
--- a/pandas/core/series.py
+++ b/pandas/core/series.py
@@ -2535,6 +2535,12 @@ def append(self, to_append, ignore_index=False, verify_integrity=False):
to_concat.extend(to_append)
else:
to_concat = [self, to_append]
+ if any(isinstance(x, (ABCDataFrame,)) for x in to_concat[1:]):
+ msg = (
+ f"to_append should be a Series or list/tuple of Series, "
+ f"got DataFrame"
+ )
+ raise TypeError(msg)
return concat(
to_concat, ignore_index=ignore_index, verify_integrity=verify_integrity
)
diff --git a/pandas/tests/series/methods/test_append.py b/pandas/tests/series/methods/test_append.py
index 4742d6ae3544f..158c759fdaef3 100644
--- a/pandas/tests/series/methods/test_append.py
+++ b/pandas/tests/series/methods/test_append.py
@@ -61,15 +61,15 @@ def test_append_tuples(self):
tm.assert_series_equal(expected, result)
- def test_append_dataframe_regression(self):
- # GH 30975
- df = pd.DataFrame({"A": [1, 2]})
- result = df.A.append([df])
- expected = pd.DataFrame(
- {0: [1.0, 2.0, None, None], "A": [None, None, 1.0, 2.0]}, index=[0, 1, 0, 1]
- )
-
- tm.assert_frame_equal(expected, result)
+ def test_append_dataframe_raises(self):
+ # GH 31413
+ df = pd.DataFrame({"A": [1, 2], "B": [3, 4]})
+
+ msg = "to_append should be a Series or list/tuple of Series, got DataFrame"
+ with pytest.raises(TypeError, match=msg):
+ df.A.append(df)
+ with pytest.raises(TypeError, match=msg):
+ df.A.append([df])
class TestSeriesAppendWithDatetimeIndex:
| - [ ] closes #31413
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
Series.append now raises TypeError when a DataFrame or a sequence containing DataFrame is passed.
| https://api.github.com/repos/pandas-dev/pandas/pulls/32090 | 2020-02-19T02:18:53Z | 2020-03-04T14:17:16Z | 2020-03-04T14:17:16Z | 2020-03-04T21:07:57Z |
BUG: DataFrame.iat incorrectly wrapping datetime objects | diff --git a/doc/source/whatsnew/v1.1.0.rst b/doc/source/whatsnew/v1.1.0.rst
index 13827e8fc4c33..add046674e9dc 100644
--- a/doc/source/whatsnew/v1.1.0.rst
+++ b/doc/source/whatsnew/v1.1.0.rst
@@ -160,6 +160,7 @@ Indexing
- Bug in :meth:`PeriodIndex.is_monotonic` incorrectly returning ``True`` when containing leading ``NaT`` entries (:issue:`31437`)
- Bug in :meth:`DatetimeIndex.get_loc` raising ``KeyError`` with converted-integer key instead of the user-passed key (:issue:`31425`)
- Bug in :meth:`Series.xs` incorrectly returning ``Timestamp`` instead of ``datetime64`` in some object-dtype cases (:issue:`31630`)
+- Bug in :meth:`DataFrame.iat` incorrectly returning ``Timestamp`` instead of ``datetime`` in some object-dtype cases (:issue:`32809`)
Missing
^^^^^^^
diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index 4ad80273f77ba..3651fdf081846 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -2894,8 +2894,8 @@ def _get_value(self, index, col, takeable: bool = False):
scalar
"""
if takeable:
- series = self._iget_item_cache(col)
- return com.maybe_box_datetimelike(series._values[index])
+ series = self._ixs(col, axis=1)
+ return series._values[index]
series = self._get_item_cache(col)
engine = self.index._engine
diff --git a/pandas/tests/indexing/test_scalar.py b/pandas/tests/indexing/test_scalar.py
index 899c58eb5edea..c4750778e2eb8 100644
--- a/pandas/tests/indexing/test_scalar.py
+++ b/pandas/tests/indexing/test_scalar.py
@@ -1,4 +1,5 @@
""" test scalar indexing, including at and iat """
+from datetime import datetime, timedelta
import numpy as np
import pytest
@@ -288,3 +289,24 @@ def test_getitem_zerodim_np_array(self):
s = Series([1, 2])
result = s[np.array(0)]
assert result == 1
+
+
+def test_iat_dont_wrap_object_datetimelike():
+ # GH#32809 .iat calls go through DataFrame._get_value, should not
+ # call maybe_box_datetimelike
+ dti = date_range("2016-01-01", periods=3)
+ tdi = dti - dti
+ ser = Series(dti.to_pydatetime(), dtype=object)
+ ser2 = Series(tdi.to_pytimedelta(), dtype=object)
+ df = DataFrame({"A": ser, "B": ser2})
+ assert (df.dtypes == object).all()
+
+ for result in [df.at[0, "A"], df.iat[0, 0], df.loc[0, "A"], df.iloc[0, 0]]:
+ assert result is ser[0]
+ assert isinstance(result, datetime)
+ assert not isinstance(result, Timestamp)
+
+ for result in [df.at[1, "B"], df.iat[1, 1], df.loc[1, "B"], df.iloc[1, 1]]:
+ assert result is ser2[1]
+ assert isinstance(result, timedelta)
+ assert not isinstance(result, Timedelta)
| https://api.github.com/repos/pandas-dev/pandas/pulls/32089 | 2020-02-19T02:08:53Z | 2020-02-22T15:56:04Z | 2020-02-22T15:56:04Z | 2020-02-22T15:58:16Z | |
"Backport PR #31679 on branch 1.0.x" | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index 19358689a2186..c9031ac1ae9fe 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -19,6 +19,7 @@ Fixed regressions
- Fixed regression in :meth:`Series.align` when ``other`` is a DataFrame and ``method`` is not None (:issue:`31785`)
- Fixed regression in :meth:`pandas.core.groupby.RollingGroupby.apply` where the ``raw`` parameter was ignored (:issue:`31754`)
- Fixed regression in :meth:`rolling(..).corr() <pandas.core.window.Rolling.corr>` when using a time offset (:issue:`31789`)
+- Fixed regression in :class:`DataFrame` arithmetic operations with mis-matched columns (:issue:`31623`)
-
.. ---------------------------------------------------------------------------
diff --git a/pandas/core/ops/__init__.py b/pandas/core/ops/__init__.py
index f51d71d5507a0..9db0306e53a50 100644
--- a/pandas/core/ops/__init__.py
+++ b/pandas/core/ops/__init__.py
@@ -5,7 +5,7 @@
"""
import datetime
import operator
-from typing import Set, Tuple, Union
+from typing import TYPE_CHECKING, Set, Tuple, Union
import numpy as np
@@ -60,6 +60,9 @@
rxor,
)
+if TYPE_CHECKING:
+ from pandas import DataFrame # noqa:F401
+
# -----------------------------------------------------------------------------
# constants
ARITHMETIC_BINOPS: Set[str] = {
@@ -675,6 +678,58 @@ def to_series(right):
return right
+def _should_reindex_frame_op(
+ left: "DataFrame", right, axis, default_axis: int, fill_value, level
+) -> bool:
+ """
+ Check if this is an operation between DataFrames that will need to reindex.
+ """
+ assert isinstance(left, ABCDataFrame)
+
+ if not isinstance(right, ABCDataFrame):
+ return False
+
+ if fill_value is None and level is None and axis is default_axis:
+ # TODO: any other cases we should handle here?
+ cols = left.columns.intersection(right.columns)
+ if not (cols.equals(left.columns) and cols.equals(right.columns)):
+ return True
+
+ return False
+
+
+def _frame_arith_method_with_reindex(
+ left: "DataFrame", right: "DataFrame", op
+) -> "DataFrame":
+ """
+ For DataFrame-with-DataFrame operations that require reindexing,
+ operate only on shared columns, then reindex.
+
+ Parameters
+ ----------
+ left : DataFrame
+ right : DataFrame
+ op : binary operator
+
+ Returns
+ -------
+ DataFrame
+ """
+ # GH#31623, only operate on shared columns
+ cols = left.columns.intersection(right.columns)
+
+ new_left = left[cols]
+ new_right = right[cols]
+ result = op(new_left, new_right)
+
+ # Do the join on the columns instead of using _align_method_FRAME
+ # to avoid constructing two potentially large/sparse DataFrames
+ join_columns, _, _ = left.columns.join(
+ right.columns, how="outer", level=None, return_indexers=True
+ )
+ return result.reindex(join_columns, axis=1)
+
+
def _arith_method_FRAME(cls, op, special):
str_rep = _get_opstr(op)
op_name = _get_op_name(op, special)
@@ -692,6 +747,9 @@ def _arith_method_FRAME(cls, op, special):
@Appender(doc)
def f(self, other, axis=default_axis, level=None, fill_value=None):
+ if _should_reindex_frame_op(self, other, axis, default_axis, fill_value, level):
+ return _frame_arith_method_with_reindex(self, other, op)
+
other = _align_method_FRAME(self, other, axis)
if isinstance(other, ABCDataFrame):
diff --git a/pandas/tests/frame/test_arithmetic.py b/pandas/tests/frame/test_arithmetic.py
index 659b55756c4b6..fadba0a8673d0 100644
--- a/pandas/tests/frame/test_arithmetic.py
+++ b/pandas/tests/frame/test_arithmetic.py
@@ -696,6 +696,25 @@ def test_operations_with_interval_categories_index(self, all_arithmetic_operator
expected = pd.DataFrame([[getattr(n, op)(num) for n in data]], columns=ind)
tm.assert_frame_equal(result, expected)
+ def test_frame_with_frame_reindex(self):
+ # GH#31623
+ df = pd.DataFrame(
+ {
+ "foo": [pd.Timestamp("2019"), pd.Timestamp("2020")],
+ "bar": [pd.Timestamp("2018"), pd.Timestamp("2021")],
+ },
+ columns=["foo", "bar"],
+ )
+ df2 = df[["foo"]]
+
+ result = df - df2
+
+ expected = pd.DataFrame(
+ {"foo": [pd.Timedelta(0), pd.Timedelta(0)], "bar": [np.nan, np.nan]},
+ columns=["bar", "foo"],
+ )
+ tm.assert_frame_equal(result, expected)
+
def test_frame_with_zero_len_series_corner_cases():
# GH#28600
| #31679 | https://api.github.com/repos/pandas-dev/pandas/pulls/32088 | 2020-02-19T01:33:22Z | 2020-02-19T11:05:40Z | 2020-02-19T11:05:39Z | 2020-02-19T15:55:41Z |
REF: remove compute_reduction | diff --git a/pandas/_libs/reduction.pyx b/pandas/_libs/reduction.pyx
index b27072aa66708..fdcce6ad1df9e 100644
--- a/pandas/_libs/reduction.pyx
+++ b/pandas/_libs/reduction.pyx
@@ -27,126 +27,6 @@ cdef _check_result_array(object obj, Py_ssize_t cnt):
raise ValueError('Function does not reduce')
-cdef class Reducer:
- """
- Performs generic reduction operation on a C or Fortran-contiguous ndarray
- while avoiding ndarray construction overhead
- """
- cdef:
- Py_ssize_t increment, chunksize, nresults
- object dummy, f, labels, typ, ityp, index
- ndarray arr
-
- def __init__(self, ndarray arr, object f, axis=1, dummy=None, labels=None):
- n, k = (<object>arr).shape
-
- if axis == 0:
- if not arr.flags.f_contiguous:
- arr = arr.copy('F')
-
- self.nresults = k
- self.chunksize = n
- self.increment = n * arr.dtype.itemsize
- else:
- if not arr.flags.c_contiguous:
- arr = arr.copy('C')
-
- self.nresults = n
- self.chunksize = k
- self.increment = k * arr.dtype.itemsize
-
- self.f = f
- self.arr = arr
- self.labels = labels
- self.dummy, self.typ, self.index, self.ityp = self._check_dummy(
- dummy=dummy)
-
- cdef _check_dummy(self, dummy=None):
- cdef:
- object index = None, typ = None, ityp = None
-
- if dummy is None:
- dummy = np.empty(self.chunksize, dtype=self.arr.dtype)
-
- # our ref is stolen later since we are creating this array
- # in cython, so increment first
- Py_INCREF(dummy)
-
- else:
-
- # we passed a Series
- typ = type(dummy)
- index = dummy.index
- dummy = dummy.values
-
- if dummy.dtype != self.arr.dtype:
- raise ValueError('Dummy array must be same dtype')
- if len(dummy) != self.chunksize:
- raise ValueError(f'Dummy array must be length {self.chunksize}')
-
- return dummy, typ, index, ityp
-
- def get_result(self):
- cdef:
- char* dummy_buf
- ndarray arr, result, chunk
- Py_ssize_t i
- flatiter it
- object res, name, labels
- object cached_typ = None
-
- arr = self.arr
- chunk = self.dummy
- dummy_buf = chunk.data
- chunk.data = arr.data
- labels = self.labels
-
- result = np.empty(self.nresults, dtype='O')
- it = <flatiter>PyArray_IterNew(result)
-
- try:
- for i in range(self.nresults):
-
- # create the cached type
- # each time just reassign the data
- if i == 0:
-
- if self.typ is not None:
- # In this case, we also have self.index
- name = labels[i]
- cached_typ = self.typ(
- chunk, index=self.index, name=name, dtype=arr.dtype)
-
- # use the cached_typ if possible
- if cached_typ is not None:
- # In this case, we also have non-None labels
- name = labels[i]
-
- object.__setattr__(
- cached_typ._data._block, 'values', chunk)
- object.__setattr__(cached_typ, 'name', name)
- res = self.f(cached_typ)
- else:
- res = self.f(chunk)
-
- # TODO: reason for not squeezing here?
- res = _extract_result(res, squeeze=False)
- if i == 0:
- # On the first pass, we check the output shape to see
- # if this looks like a reduction.
- _check_result_array(res, len(self.dummy))
-
- PyArray_SETITEM(result, PyArray_ITER_DATA(it), res)
- chunk.data = chunk.data + self.increment
- PyArray_ITER_NEXT(it)
- finally:
- # so we don't free the wrong memory
- chunk.data = dummy_buf
-
- result = maybe_convert_objects(result)
- return result
-
-
cdef class _BaseGrouper:
cdef _check_dummy(self, dummy):
# both values and index must be an ndarray!
@@ -588,30 +468,3 @@ cdef class BlockSlider:
# axis=1 is the frame's axis=0
arr.data = self.base_ptrs[i]
arr.shape[1] = 0
-
-
-def compute_reduction(arr: np.ndarray, f, axis: int = 0, dummy=None, labels=None):
- """
-
- Parameters
- -----------
- arr : np.ndarray
- f : function
- axis : integer axis
- dummy : type of reduced output (series)
- labels : Index or None
- """
-
- # We either have both dummy and labels, or neither of them
- if (labels is None) ^ (dummy is None):
- raise ValueError("Must pass either dummy and labels, or neither")
-
- if labels is not None:
- # Caller is responsible for ensuring we don't have MultiIndex
- assert labels.nlevels == 1
-
- # pass as an ndarray/ExtensionArray
- labels = labels._values
-
- reducer = Reducer(arr, f, axis=axis, dummy=dummy, labels=labels)
- return reducer.get_result()
diff --git a/pandas/core/apply.py b/pandas/core/apply.py
index 70e0a129c055f..23b0056261fbb 100644
--- a/pandas/core/apply.py
+++ b/pandas/core/apply.py
@@ -4,16 +4,10 @@
import numpy as np
-from pandas._libs import reduction as libreduction
from pandas._typing import Axis
from pandas.util._decorators import cache_readonly
-from pandas.core.dtypes.common import (
- is_dict_like,
- is_extension_array_dtype,
- is_list_like,
- is_sequence,
-)
+from pandas.core.dtypes.common import is_dict_like, is_list_like, is_sequence
from pandas.core.dtypes.generic import ABCSeries
from pandas.core.construction import create_series_with_explicit_dtype
@@ -221,15 +215,7 @@ def apply_empty_result(self):
def apply_raw(self):
""" apply to the values as a numpy array """
- try:
- result = libreduction.compute_reduction(self.values, self.f, axis=self.axis)
- except ValueError as err:
- if "Function does not reduce" not in str(err):
- # catch only ValueError raised intentionally in libreduction
- raise
- # We expect np.apply_along_axis to give a two-dimensional result, or
- # also raise.
- result = np.apply_along_axis(self.f, self.axis, self.values)
+ result = np.apply_along_axis(self.f, self.axis, self.values)
# TODO: mixed type case
if result.ndim == 2:
@@ -265,51 +251,6 @@ def apply_broadcast(self, target: "DataFrame") -> "DataFrame":
return result
def apply_standard(self):
-
- # try to reduce first (by default)
- # this only matters if the reduction in values is of different dtype
- # e.g. if we want to apply to a SparseFrame, then can't directly reduce
-
- # we cannot reduce using non-numpy dtypes,
- # as demonstrated in gh-12244
- if (
- self.result_type in ["reduce", None]
- and not self.dtypes.apply(is_extension_array_dtype).any()
- # Disallow dtypes where setting _index_data will break
- # ExtensionArray values, see GH#31182
- and not self.dtypes.apply(lambda x: x.kind in ["m", "M"]).any()
- # Disallow complex_internals since libreduction shortcut raises a TypeError
- and not self.agg_axis._has_complex_internals
- ):
-
- values = self.values
- index = self.obj._get_axis(self.axis)
- labels = self.agg_axis
- empty_arr = np.empty(len(index), dtype=values.dtype)
-
- # Preserve subclass for e.g. test_subclassed_apply
- dummy = self.obj._constructor_sliced(
- empty_arr, index=index, dtype=values.dtype
- )
-
- try:
- result = libreduction.compute_reduction(
- values, self.f, axis=self.axis, dummy=dummy, labels=labels
- )
- except ValueError as err:
- if "Function does not reduce" not in str(err):
- # catch only ValueError raised intentionally in libreduction
- raise
- except TypeError:
- # e.g. test_apply_ignore_failures we just ignore
- if not self.ignore_failures:
- raise
- except ZeroDivisionError:
- # reached via numexpr; fall back to python implementation
- pass
- else:
- return self.obj._constructor_sliced(result, index=labels)
-
# compute the result using the series generator
results, res_index = self.apply_series_generator()
@@ -350,9 +291,23 @@ def wrap_results(
from pandas import Series
# see if we can infer the results
- if len(results) > 0 and 0 in results and is_sequence(results[0]):
+ if (
+ len(results) > 0
+ and 0 in results
+ and is_sequence(results[0])
+ and (not isinstance(results[0], dict) or self.result_type == "expand")
+ ):
- return self.wrap_results_for_axis(results, res_index)
+ try:
+ return self.wrap_results_for_axis(results, res_index)
+ except ValueError as err:
+ # See e.g. test_agg_listlike_result
+ # FIXME: kludge for ragged array
+ if "arrays must all be same length" in str(err):
+ # Fall back to constructing Series
+ pass
+ else:
+ raise
# dict of scalars
@@ -440,9 +395,8 @@ def wrap_results_for_axis(
# we have a non-series and don't want inference
elif not isinstance(results[0], ABCSeries):
- from pandas import Series
- result = Series(results)
+ result = self.obj._constructor_sliced(results)
result.index = res_index
# we may want to infer results
diff --git a/pandas/tests/groupby/test_bin_groupby.py b/pandas/tests/groupby/test_bin_groupby.py
index ff74d374e5e3f..b0e354050b9a4 100644
--- a/pandas/tests/groupby/test_bin_groupby.py
+++ b/pandas/tests/groupby/test_bin_groupby.py
@@ -5,7 +5,7 @@
from pandas.core.dtypes.common import ensure_int64
-from pandas import Index, Series, isna
+from pandas import Series, isna
import pandas._testing as tm
@@ -111,37 +111,3 @@ def _ohlc(group):
class TestMoments:
pass
-
-
-class TestReducer:
- def test_int_index(self):
- arr = np.random.randn(100, 4)
-
- msg = "Must pass either dummy and labels, or neither"
- # we must pass either both labels and dummy, or neither
- with pytest.raises(ValueError, match=msg):
- libreduction.compute_reduction(arr, np.sum, labels=Index(np.arange(4)))
-
- with pytest.raises(ValueError, match=msg):
- libreduction.compute_reduction(
- arr, np.sum, axis=1, labels=Index(np.arange(100))
- )
-
- dummy = Series(0.0, index=np.arange(100))
- result = libreduction.compute_reduction(
- arr, np.sum, dummy=dummy, labels=Index(np.arange(4))
- )
- expected = arr.sum(0)
- tm.assert_almost_equal(result, expected)
-
- dummy = Series(0.0, index=np.arange(4))
- result = libreduction.compute_reduction(
- arr, np.sum, axis=1, dummy=dummy, labels=Index(np.arange(100))
- )
- expected = arr.sum(1)
- tm.assert_almost_equal(result, expected)
-
- result = libreduction.compute_reduction(
- arr, np.sum, axis=1, dummy=dummy, labels=Index(np.arange(100))
- )
- tm.assert_almost_equal(result, expected)
| Along with #32083, #32086 this gets rid of _libs.reduction.
Now, time to run some asvs | https://api.github.com/repos/pandas-dev/pandas/pulls/32087 | 2020-02-19T01:20:55Z | 2020-02-20T02:46:09Z | null | 2020-08-27T20:18:21Z |
REF: remove fast_apply | diff --git a/pandas/_libs/reduction.pyx b/pandas/_libs/reduction.pyx
index b27072aa66708..db897014a1061 100644
--- a/pandas/_libs/reduction.pyx
+++ b/pandas/_libs/reduction.pyx
@@ -454,142 +454,6 @@ cdef class Slider:
self.buf.strides[0] = self.orig_stride
-class InvalidApply(Exception):
- pass
-
-
-def apply_frame_axis0(object frame, object f, object names,
- const int64_t[:] starts, const int64_t[:] ends):
- cdef:
- BlockSlider slider
- Py_ssize_t i, n = len(starts)
- list results
- object piece
- dict item_cache
-
- # We have already checked that we don't have a MultiIndex before calling
- assert frame.index.nlevels == 1
-
- results = []
-
- slider = BlockSlider(frame)
-
- mutated = False
- item_cache = slider.dummy._item_cache
- try:
- for i in range(n):
- slider.move(starts[i], ends[i])
-
- item_cache.clear() # ugh
- chunk = slider.dummy
- object.__setattr__(chunk, 'name', names[i])
-
- try:
- piece = f(chunk)
- except Exception:
- # We can't be more specific without knowing something about `f`
- raise InvalidApply('Let this error raise above us')
-
- # Need to infer if low level index slider will cause segfaults
- require_slow_apply = i == 0 and piece is chunk
- try:
- if piece.index is not chunk.index:
- mutated = True
- except AttributeError:
- # `piece` might not have an index, could be e.g. an int
- pass
-
- if not is_scalar(piece):
- # Need to copy data to avoid appending references
- try:
- piece = piece.copy(deep="all")
- except (TypeError, AttributeError):
- piece = copy(piece)
-
- results.append(piece)
-
- # If the data was modified inplace we need to
- # take the slow path to not risk segfaults
- # we have already computed the first piece
- if require_slow_apply:
- break
- finally:
- slider.reset()
-
- return results, mutated
-
-
-cdef class BlockSlider:
- """
- Only capable of sliding on axis=0
- """
-
- cdef public:
- object frame, dummy, index
- int nblocks
- Slider idx_slider
- list blocks
-
- cdef:
- char **base_ptrs
-
- def __init__(self, frame):
- self.frame = frame
- self.dummy = frame[:0]
- self.index = self.dummy.index
-
- self.blocks = [b.values for b in self.dummy._data.blocks]
-
- for x in self.blocks:
- util.set_array_not_contiguous(x)
-
- self.nblocks = len(self.blocks)
- # See the comment in indexes/base.py about _index_data.
- # We need this for EA-backed indexes that have a reference to a 1-d
- # ndarray like datetime / timedelta / period.
- self.idx_slider = Slider(
- self.frame.index._index_data, self.dummy.index._index_data)
-
- self.base_ptrs = <char**>malloc(sizeof(char*) * len(self.blocks))
- for i, block in enumerate(self.blocks):
- self.base_ptrs[i] = (<ndarray>block).data
-
- def __dealloc__(self):
- free(self.base_ptrs)
-
- cdef move(self, int start, int end):
- cdef:
- ndarray arr
- Py_ssize_t i
-
- # move blocks
- for i in range(self.nblocks):
- arr = self.blocks[i]
-
- # axis=1 is the frame's axis=0
- arr.data = self.base_ptrs[i] + arr.strides[1] * start
- arr.shape[1] = end - start
-
- # move and set the index
- self.idx_slider.move(start, end)
-
- object.__setattr__(self.index, '_index_data', self.idx_slider.buf)
- self.index._engine.clear_mapping()
-
- cdef reset(self):
- cdef:
- ndarray arr
- Py_ssize_t i
-
- # reset blocks
- for i in range(self.nblocks):
- arr = self.blocks[i]
-
- # axis=1 is the frame's axis=0
- arr.data = self.base_ptrs[i]
- arr.shape[1] = 0
-
-
def compute_reduction(arr: np.ndarray, f, axis: int = 0, dummy=None, labels=None):
"""
diff --git a/pandas/core/groupby/ops.py b/pandas/core/groupby/ops.py
index 7259268ac3f2b..c33748deef1c2 100644
--- a/pandas/core/groupby/ops.py
+++ b/pandas/core/groupby/ops.py
@@ -43,7 +43,7 @@
import pandas.core.common as com
from pandas.core.frame import DataFrame
from pandas.core.generic import NDFrame
-from pandas.core.groupby import base, grouper
+from pandas.core.groupby import grouper
from pandas.core.indexes.api import Index, MultiIndex, ensure_index
from pandas.core.series import Series
from pandas.core.sorting import (
@@ -154,37 +154,6 @@ def apply(self, f, data: FrameOrSeries, axis: int = 0):
group_keys = self._get_group_keys()
result_values = None
- sdata: FrameOrSeries = splitter._get_sorted_data()
- if sdata.ndim == 2 and np.any(sdata.dtypes.apply(is_extension_array_dtype)):
- # calling splitter.fast_apply will raise TypeError via apply_frame_axis0
- # if we pass EA instead of ndarray
- # TODO: can we have a workaround for EAs backed by ndarray?
- pass
-
- elif (
- com.get_callable_name(f) not in base.plotting_methods
- and isinstance(splitter, FrameSplitter)
- and axis == 0
- # fast_apply/libreduction doesn't allow non-numpy backed indexes
- and not sdata.index._has_complex_internals
- ):
- try:
- result_values, mutated = splitter.fast_apply(f, sdata, group_keys)
-
- except libreduction.InvalidApply as err:
- # This Exception is raised if `f` triggers an exception
- # but it is preferable to raise the exception in Python.
- if "Let this error raise above us" not in str(err):
- # TODO: can we infer anything about whether this is
- # worth-retrying in pure-python?
- raise
-
- else:
- # If the fast apply path could be used we can return here.
- # Otherwise we need to fall back to the slow implementation.
- if len(result_values) == len(group_keys):
- return group_keys, result_values, mutated
-
for key, (i, group) in zip(group_keys, splitter):
object.__setattr__(group, "name", key)
@@ -925,11 +894,6 @@ def _chop(self, sdata: Series, slice_obj: slice) -> Series:
class FrameSplitter(DataSplitter):
- def fast_apply(self, f, sdata: FrameOrSeries, names):
- # must return keys::list, values::list, mutated::bool
- starts, ends = lib.generate_slices(self.slabels, self.ngroups)
- return libreduction.apply_frame_axis0(sdata, f, names, starts, ends)
-
def _chop(self, sdata: DataFrame, slice_obj: slice) -> DataFrame:
if self.axis == 0:
return sdata.iloc[slice_obj]
diff --git a/pandas/tests/groupby/test_apply.py b/pandas/tests/groupby/test_apply.py
index 18ad5d90b3f60..7afb449dbe37e 100644
--- a/pandas/tests/groupby/test_apply.py
+++ b/pandas/tests/groupby/test_apply.py
@@ -82,39 +82,6 @@ def test_apply_trivial_fail():
tm.assert_frame_equal(result, expected)
-def test_fast_apply():
- # make sure that fast apply is correctly called
- # rather than raising any kind of error
- # otherwise the python path will be callsed
- # which slows things down
- N = 1000
- labels = np.random.randint(0, 2000, size=N)
- labels2 = np.random.randint(0, 3, size=N)
- df = DataFrame(
- {
- "key": labels,
- "key2": labels2,
- "value1": np.random.randn(N),
- "value2": ["foo", "bar", "baz", "qux"] * (N // 4),
- }
- )
-
- def f(g):
- return 1
-
- g = df.groupby(["key", "key2"])
-
- grouper = g.grouper
-
- splitter = grouper._get_splitter(g._selected_obj, axis=g.axis)
- group_keys = grouper._get_group_keys()
- sdata = splitter._get_sorted_data()
-
- values, mutated = splitter.fast_apply(f, sdata, group_keys)
-
- assert not mutated
-
-
@pytest.mark.parametrize(
"df, group_names",
[
diff --git a/pandas/tests/groupby/test_whitelist.py b/pandas/tests/groupby/test_whitelist.py
index 8e387e9202ef6..eaab2757097bf 100644
--- a/pandas/tests/groupby/test_whitelist.py
+++ b/pandas/tests/groupby/test_whitelist.py
@@ -367,7 +367,6 @@ def test_groupby_selection_with_methods(df):
"ffill",
"bfill",
"pct_change",
- "tshift",
]
for m in methods:
@@ -377,6 +376,11 @@ def test_groupby_selection_with_methods(df):
# should always be frames!
tm.assert_frame_equal(res, exp)
+ with pytest.raises(ValueError, match="Freq was not given"):
+ g.tshift()
+ with pytest.raises(ValueError, match="Freq was not given"):
+ g_exp.tshift()
+
# methods which aren't just .foo()
tm.assert_frame_equal(g.fillna(0), g_exp.fillna(0))
tm.assert_frame_equal(g.dtypes, g_exp.dtypes)
| xref #32083, one more coming that i think finishes off libreduction | https://api.github.com/repos/pandas-dev/pandas/pulls/32086 | 2020-02-19T01:19:21Z | 2020-02-20T02:46:29Z | null | 2020-08-27T20:18:08Z |
BUG: Fix incorrect _is_scalar_access check in iloc | diff --git a/pandas/core/generic.py b/pandas/core/generic.py
index 579daae2b15c6..ac03843a0e27d 100644
--- a/pandas/core/generic.py
+++ b/pandas/core/generic.py
@@ -3467,13 +3467,13 @@ def _get_item_cache(self, item):
res._is_copy = self._is_copy
return res
- def _iget_item_cache(self, item):
+ def _iget_item_cache(self, item: int):
"""Return the cached item, item represents a positional indexer."""
ax = self._info_axis
if ax.is_unique:
lower = self._get_item_cache(ax[item])
else:
- lower = self._take_with_is_copy(item, axis=self._info_axis_number)
+ return self._ixs(item, axis=1)
return lower
def _box_item_values(self, key, values):
diff --git a/pandas/core/indexing.py b/pandas/core/indexing.py
index d3e75d43c6bd7..c366b0621fe93 100755
--- a/pandas/core/indexing.py
+++ b/pandas/core/indexing.py
@@ -1445,10 +1445,6 @@ def _is_scalar_access(self, key: Tuple) -> bool:
if not is_integer(k):
return False
- ax = self.obj.axes[i]
- if not ax.is_unique:
- return False
-
return True
def _validate_integer(self, key: int, axis: int) -> None:
diff --git a/pandas/tests/indexing/test_iloc.py b/pandas/tests/indexing/test_iloc.py
index 500bd1853e9a4..683d4f2605712 100644
--- a/pandas/tests/indexing/test_iloc.py
+++ b/pandas/tests/indexing/test_iloc.py
@@ -47,6 +47,17 @@ def test_iloc_getitem_list_int(self):
class TestiLoc2:
# TODO: better name, just separating out things that dont rely on base class
+
+ def test_is_scalar_access(self):
+ # GH#32085 index with duplicates doesnt matter for _is_scalar_access
+ index = pd.Index([1, 2, 1])
+ ser = pd.Series(range(3), index=index)
+
+ assert ser.iloc._is_scalar_access((1,))
+
+ df = ser.to_frame()
+ assert df.iloc._is_scalar_access((1, 0,))
+
def test_iloc_exceeds_bounds(self):
# GH6296
| We only have two test cases that make it to the _take_with_is_copy line in _iget_item_cache | https://api.github.com/repos/pandas-dev/pandas/pulls/32085 | 2020-02-19T00:08:20Z | 2020-02-22T16:08:23Z | 2020-02-22T16:08:23Z | 2020-02-22T16:10:24Z |
POC/REF: remove SeriesBinGrouper, SeriesGrouper | diff --git a/pandas/_libs/reduction.pyx b/pandas/_libs/reduction.pyx
index b27072aa66708..382a5c6692b55 100644
--- a/pandas/_libs/reduction.pyx
+++ b/pandas/_libs/reduction.pyx
@@ -147,253 +147,6 @@ cdef class Reducer:
return result
-cdef class _BaseGrouper:
- cdef _check_dummy(self, dummy):
- # both values and index must be an ndarray!
-
- values = dummy.values
- # GH 23683: datetimetz types are equivalent to datetime types here
- if (dummy.dtype != self.arr.dtype
- and values.dtype != self.arr.dtype):
- raise ValueError('Dummy array must be same dtype')
- if util.is_array(values) and not values.flags.contiguous:
- # e.g. Categorical has no `flags` attribute
- values = values.copy()
- index = dummy.index.values
- if not index.flags.contiguous:
- index = index.copy()
-
- return values, index
-
- cdef inline _update_cached_objs(self, object cached_typ, object cached_ityp,
- Slider islider, Slider vslider):
- if cached_typ is None:
- cached_ityp = self.ityp(islider.buf)
- cached_typ = self.typ(vslider.buf, index=cached_ityp, name=self.name)
- else:
- # See the comment in indexes/base.py about _index_data.
- # We need this for EA-backed indexes that have a reference
- # to a 1-d ndarray like datetime / timedelta / period.
- object.__setattr__(cached_ityp, '_index_data', islider.buf)
- cached_ityp._engine.clear_mapping()
- object.__setattr__(cached_typ._data._block, 'values', vslider.buf)
- object.__setattr__(cached_typ, '_index', cached_ityp)
- object.__setattr__(cached_typ, 'name', self.name)
-
- return cached_typ, cached_ityp
-
- cdef inline object _apply_to_group(self,
- object cached_typ, object cached_ityp,
- Slider islider, Slider vslider,
- Py_ssize_t group_size, bint initialized):
- """
- Call self.f on our new group, then update to the next group.
- """
- cached_ityp._engine.clear_mapping()
- res = self.f(cached_typ)
- res = _extract_result(res)
- if not initialized:
- # On the first pass, we check the output shape to see
- # if this looks like a reduction.
- initialized = 1
- _check_result_array(res, len(self.dummy_arr))
-
- islider.advance(group_size)
- vslider.advance(group_size)
-
- return res, initialized
-
-
-cdef class SeriesBinGrouper(_BaseGrouper):
- """
- Performs grouping operation according to bin edges, rather than labels
- """
- cdef:
- Py_ssize_t nresults, ngroups
-
- cdef public:
- ndarray arr, index, dummy_arr, dummy_index
- object values, f, bins, typ, ityp, name
-
- def __init__(self, object series, object f, object bins, object dummy):
-
- assert dummy is not None # always obj[:0]
- assert len(bins) > 0 # otherwise we get IndexError in get_result
-
- self.bins = bins
- self.f = f
-
- values = series.values
- if util.is_array(values) and not values.flags.c_contiguous:
- # e.g. Categorical has no `flags` attribute
- values = values.copy('C')
- self.arr = values
- self.typ = series._constructor
- self.ityp = series.index._constructor
- self.index = series.index.values
- self.name = series.name
-
- self.dummy_arr, self.dummy_index = self._check_dummy(dummy)
-
- # kludge for #1688
- if len(bins) > 0 and bins[-1] == len(series):
- self.ngroups = len(bins)
- else:
- self.ngroups = len(bins) + 1
-
- def get_result(self):
- cdef:
- ndarray arr, result
- ndarray[int64_t] counts
- Py_ssize_t i, n, group_size
- object res
- bint initialized = 0
- Slider vslider, islider
- object cached_typ = None, cached_ityp = None
-
- counts = np.zeros(self.ngroups, dtype=np.int64)
-
- if self.ngroups > 0:
- counts[0] = self.bins[0]
- for i in range(1, self.ngroups):
- if i == self.ngroups - 1:
- counts[i] = len(self.arr) - self.bins[i - 1]
- else:
- counts[i] = self.bins[i] - self.bins[i - 1]
-
- group_size = 0
- n = len(self.arr)
-
- vslider = Slider(self.arr, self.dummy_arr)
- islider = Slider(self.index, self.dummy_index)
-
- result = np.empty(self.ngroups, dtype='O')
-
- try:
- for i in range(self.ngroups):
- group_size = counts[i]
-
- islider.set_length(group_size)
- vslider.set_length(group_size)
-
- cached_typ, cached_ityp = self._update_cached_objs(
- cached_typ, cached_ityp, islider, vslider)
-
- res, initialized = self._apply_to_group(cached_typ, cached_ityp,
- islider, vslider,
- group_size, initialized)
-
- result[i] = res
-
- finally:
- # so we don't free the wrong memory
- islider.reset()
- vslider.reset()
-
- result = maybe_convert_objects(result)
- return result, counts
-
-
-cdef class SeriesGrouper(_BaseGrouper):
- """
- Performs generic grouping operation while avoiding ndarray construction
- overhead
- """
- cdef:
- Py_ssize_t nresults, ngroups
-
- cdef public:
- ndarray arr, index, dummy_arr, dummy_index
- object f, labels, values, typ, ityp, name
-
- def __init__(self, object series, object f, object labels,
- Py_ssize_t ngroups, object dummy):
-
- # in practice we always pass obj.iloc[:0] or equivalent
- assert dummy is not None
-
- if len(series) == 0:
- # get_result would never assign `result`
- raise ValueError("SeriesGrouper requires non-empty `series`")
-
- self.labels = labels
- self.f = f
-
- values = series.values
- if util.is_array(values) and not values.flags.c_contiguous:
- # e.g. Categorical has no `flags` attribute
- values = values.copy('C')
- self.arr = values
- self.typ = series._constructor
- self.ityp = series.index._constructor
- self.index = series.index.values
- self.name = series.name
-
- self.dummy_arr, self.dummy_index = self._check_dummy(dummy)
- self.ngroups = ngroups
-
- def get_result(self):
- cdef:
- # Define result to avoid UnboundLocalError
- ndarray arr, result = None
- ndarray[int64_t] labels, counts
- Py_ssize_t i, n, group_size, lab
- object res
- bint initialized = 0
- Slider vslider, islider
- object cached_typ = None, cached_ityp = None
-
- labels = self.labels
- counts = np.zeros(self.ngroups, dtype=np.int64)
- group_size = 0
- n = len(self.arr)
-
- vslider = Slider(self.arr, self.dummy_arr)
- islider = Slider(self.index, self.dummy_index)
-
- result = np.empty(self.ngroups, dtype='O')
-
- try:
- for i in range(n):
- group_size += 1
-
- lab = labels[i]
-
- if i == n - 1 or lab != labels[i + 1]:
- if lab == -1:
- islider.advance(group_size)
- vslider.advance(group_size)
- group_size = 0
- continue
-
- islider.set_length(group_size)
- vslider.set_length(group_size)
-
- cached_typ, cached_ityp = self._update_cached_objs(
- cached_typ, cached_ityp, islider, vslider)
-
- res, initialized = self._apply_to_group(cached_typ, cached_ityp,
- islider, vslider,
- group_size, initialized)
-
- result[lab] = res
- counts[lab] = group_size
- group_size = 0
-
- finally:
- # so we don't free the wrong memory
- islider.reset()
- vslider.reset()
-
- # We check for empty series in the constructor, so should always
- # have result initialized by this point.
- assert initialized, "`result` has not been initialized."
-
- result = maybe_convert_objects(result)
-
- return result, counts
-
-
cdef inline _extract_result(object res, bint squeeze=True):
""" extract the result object, it might be a 0-dim ndarray
or a len-1 0-dim, or a scalar """
diff --git a/pandas/core/groupby/groupby.py b/pandas/core/groupby/groupby.py
index cc46485b4a2e8..f946f0e63a583 100644
--- a/pandas/core/groupby/groupby.py
+++ b/pandas/core/groupby/groupby.py
@@ -923,17 +923,10 @@ def _python_agg_general(self, func, *args, **kwargs):
try:
# if this function is invalid for this dtype, we will ignore it.
- func(obj[:0])
+ result, counts = self.grouper.agg_series(obj, f)
except TypeError:
continue
- except AssertionError:
- raise
- except Exception:
- # Our function depends on having a non-empty argument
- # See test_groupby_agg_err_catching
- pass
-
- result, counts = self.grouper.agg_series(obj, f)
+
assert result is not None
key = base.OutputKey(label=name, position=idx)
output[key] = self._try_cast(result, obj, numeric_only=True)
diff --git a/pandas/core/groupby/ops.py b/pandas/core/groupby/ops.py
index 7259268ac3f2b..2b89a51eb635c 100644
--- a/pandas/core/groupby/ops.py
+++ b/pandas/core/groupby/ops.py
@@ -621,50 +621,8 @@ def agg_series(self, obj: Series, func):
# Caller is responsible for checking ngroups != 0
assert self.ngroups != 0
- if len(obj) == 0:
- # SeriesGrouper would raise if we were to call _aggregate_series_fast
- return self._aggregate_series_pure_python(obj, func)
-
- elif is_extension_array_dtype(obj.dtype):
- # _aggregate_series_fast would raise TypeError when
- # calling libreduction.Slider
- # In the datetime64tz case it would incorrectly cast to tz-naive
- # TODO: can we get a performant workaround for EAs backed by ndarray?
- return self._aggregate_series_pure_python(obj, func)
-
- elif obj.index._has_complex_internals:
- # Pre-empt TypeError in _aggregate_series_fast
- return self._aggregate_series_pure_python(obj, func)
-
- try:
- return self._aggregate_series_fast(obj, func)
- except ValueError as err:
- if "Function does not reduce" in str(err):
- # raised in libreduction
- pass
- else:
- raise
return self._aggregate_series_pure_python(obj, func)
- def _aggregate_series_fast(self, obj: Series, func):
- # At this point we have already checked that
- # - obj.index is not a MultiIndex
- # - obj is backed by an ndarray, not ExtensionArray
- # - len(obj) > 0
- # - ngroups != 0
- func = self._is_builtin_func(func)
-
- group_index, _, ngroups = self.group_info
-
- # avoids object / Series creation overhead
- dummy = obj.iloc[:0]
- indexer = get_group_index_sorter(group_index, ngroups)
- obj = obj.take(indexer)
- group_index = algorithms.take_nd(group_index, indexer, allow_fill=False)
- grouper = libreduction.SeriesGrouper(obj, func, group_index, ngroups, dummy)
- result, counts = grouper.get_result()
- return result, counts
-
def _aggregate_series_pure_python(self, obj: Series, func):
group_index, _, ngroups = self.group_info
@@ -856,13 +814,7 @@ def agg_series(self, obj: Series, func):
assert self.ngroups != 0
assert len(self.bins) > 0 # otherwise we'd get IndexError in get_result
- if is_extension_array_dtype(obj.dtype):
- # pre-empt SeriesBinGrouper from raising TypeError
- return self._aggregate_series_pure_python(obj, func)
-
- dummy = obj[:0]
- grouper = libreduction.SeriesBinGrouper(obj, func, self.bins, dummy)
- return grouper.get_result()
+ return self._aggregate_series_pure_python(obj, func)
def _is_indexed_like(obj, axes) -> bool:
diff --git a/pandas/tests/groupby/test_bin_groupby.py b/pandas/tests/groupby/test_bin_groupby.py
index ff74d374e5e3f..5f20155fc46e4 100644
--- a/pandas/tests/groupby/test_bin_groupby.py
+++ b/pandas/tests/groupby/test_bin_groupby.py
@@ -9,48 +9,6 @@
import pandas._testing as tm
-def test_series_grouper():
- obj = Series(np.random.randn(10))
- dummy = obj.iloc[:0]
-
- labels = np.array([-1, -1, -1, 0, 0, 0, 1, 1, 1, 1], dtype=np.int64)
-
- grouper = libreduction.SeriesGrouper(obj, np.mean, labels, 2, dummy)
- result, counts = grouper.get_result()
-
- expected = np.array([obj[3:6].mean(), obj[6:].mean()])
- tm.assert_almost_equal(result, expected)
-
- exp_counts = np.array([3, 4], dtype=np.int64)
- tm.assert_almost_equal(counts, exp_counts)
-
-
-def test_series_grouper_requires_nonempty_raises():
- # GH#29500
- obj = Series(np.random.randn(10))
- dummy = obj.iloc[:0]
- labels = np.array([-1, -1, -1, 0, 0, 0, 1, 1, 1, 1], dtype=np.int64)
-
- with pytest.raises(ValueError, match="SeriesGrouper requires non-empty `series`"):
- libreduction.SeriesGrouper(dummy, np.mean, labels, 2, dummy)
-
-
-def test_series_bin_grouper():
- obj = Series(np.random.randn(10))
- dummy = obj[:0]
-
- bins = np.array([3, 6])
-
- grouper = libreduction.SeriesBinGrouper(obj, np.mean, bins, dummy)
- result, counts = grouper.get_result()
-
- expected = np.array([obj[:3].mean(), obj[3:6].mean(), obj[6:].mean()])
- tm.assert_almost_equal(result, expected)
-
- exp_counts = np.array([3, 3, 4], dtype=np.int64)
- tm.assert_almost_equal(counts, exp_counts)
-
-
@pytest.mark.parametrize(
"binner,closed,expected",
[
| Maintenance of libreduction is a PITA, so I want to see how big a performance hit we take if we rip it out.
I get a test failure locally because apparently something in resample behaves differently if we go through the python path, which itself should be considered a bug. cc @mroeschke any ideas how to fix the failing test/ | https://api.github.com/repos/pandas-dev/pandas/pulls/32083 | 2020-02-18T21:00:12Z | 2020-02-20T02:45:47Z | null | 2020-08-27T20:18:36Z |
CLN: indexing comments and cleanups | diff --git a/pandas/core/indexing.py b/pandas/core/indexing.py
index c53e690b5f46c..a614c731df879 100755
--- a/pandas/core/indexing.py
+++ b/pandas/core/indexing.py
@@ -732,14 +732,15 @@ def _getitem_lowerdim(self, tup: Tuple):
raise IndexingError("Too many indexers. handle elsewhere")
for i, key in enumerate(tup):
- if is_label_like(key) or isinstance(key, tuple):
+ if is_label_like(key):
+ # We don't need to check for tuples here because those are
+ # caught by the _is_nested_tuple_indexer check above.
section = self._getitem_axis(key, axis=i)
- # we have yielded a scalar ?
- if not is_list_like_indexer(section):
- return section
-
- elif section.ndim == self.ndim:
+ # We should never have a scalar section here, because
+ # _getitem_lowerdim is only called after a check for
+ # is_scalar_access, which that would be.
+ if section.ndim == self.ndim:
# we're in the middle of slicing through a MultiIndex
# revise the key wrt to `section` by inserting an _NS
new_key = tup[:i] + (_NS,) + tup[i + 1 :]
@@ -757,7 +758,7 @@ def _getitem_lowerdim(self, tup: Tuple):
# slice returns a new object.
if com.is_null_slice(new_key):
return section
- # This is an elided recursive call to iloc/loc/etc'
+ # This is an elided recursive call to iloc/loc
return getattr(section, self.name)[new_key]
raise IndexingError("not applicable")
@@ -1013,15 +1014,7 @@ def _getitem_tuple(self, tup: Tuple):
return self._getitem_tuple_same_dim(tup)
def _get_label(self, label, axis: int):
- if self.ndim == 1:
- # for perf reasons we want to try _xs first
- # as its basically direct indexing
- # but will fail when the index is not present
- # see GH5667
- return self.obj._xs(label, axis=axis)
- elif isinstance(label, tuple) and isinstance(label[axis], slice):
- raise IndexingError("no slices here, handle elsewhere")
-
+ # GH#5667 this will fail if the label is not present in the axis.
return self.obj._xs(label, axis=axis)
def _handle_lowerdim_multi_index_axis0(self, tup: Tuple):
@@ -1298,7 +1291,7 @@ def _validate_read_indexer(
# We (temporarily) allow for some missing keys with .loc, except in
# some cases (e.g. setting) in which "raise_missing" will be False
- if not (self.name == "loc" and not raise_missing):
+ if raise_missing:
not_found = list(set(key) - set(ax))
raise KeyError(f"{not_found} not in index")
@@ -1363,10 +1356,7 @@ def _validate_key(self, key, axis: int):
else:
raise ValueError(f"Can only index by location with a [{self._valid_types}]")
- def _has_valid_setitem_indexer(self, indexer):
- self._has_valid_positional_setitem_indexer(indexer)
-
- def _has_valid_positional_setitem_indexer(self, indexer) -> bool:
+ def _has_valid_setitem_indexer(self, indexer) -> bool:
"""
Validate that a positional indexer cannot enlarge its target
will raise if needed, does not modify the indexer externally.
@@ -1376,7 +1366,7 @@ def _has_valid_positional_setitem_indexer(self, indexer) -> bool:
bool
"""
if isinstance(indexer, dict):
- raise IndexError(f"{self.name} cannot enlarge its target object")
+ raise IndexError("iloc cannot enlarge its target object")
else:
if not isinstance(indexer, tuple):
indexer = _tuplify(self.ndim, indexer)
@@ -1389,11 +1379,9 @@ def _has_valid_positional_setitem_indexer(self, indexer) -> bool:
pass
elif is_integer(i):
if i >= len(ax):
- raise IndexError(
- f"{self.name} cannot enlarge its target object"
- )
+ raise IndexError("iloc cannot enlarge its target object")
elif isinstance(i, dict):
- raise IndexError(f"{self.name} cannot enlarge its target object")
+ raise IndexError("iloc cannot enlarge its target object")
return True
@@ -1520,8 +1508,8 @@ def _convert_to_indexer(self, key, axis: int, is_setter: bool = False):
return key
elif is_float(key):
+ # _validate_indexer call will always raise
labels._validate_indexer("positional", key, "iloc")
- return key
self._validate_key(key, axis)
return key
@@ -1582,7 +1570,7 @@ def _setitem_with_indexer(self, indexer, value):
# this correctly sets the dtype and avoids cache issues
# essentially this separates out the block that is needed
# to possibly be modified
- if self.ndim > 1 and i == self.obj._info_axis_number:
+ if self.ndim > 1 and i == info_axis:
# add the new item, and set the value
# must have all defined axes if we have a scalar
| https://api.github.com/repos/pandas-dev/pandas/pulls/32082 | 2020-02-18T19:57:15Z | 2020-02-23T15:52:04Z | 2020-02-23T15:52:04Z | 2020-02-23T17:10:08Z | |
REGR: Series.str.encode("base64") | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index 19358689a2186..025924b1c0a5a 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -19,7 +19,7 @@ Fixed regressions
- Fixed regression in :meth:`Series.align` when ``other`` is a DataFrame and ``method`` is not None (:issue:`31785`)
- Fixed regression in :meth:`pandas.core.groupby.RollingGroupby.apply` where the ``raw`` parameter was ignored (:issue:`31754`)
- Fixed regression in :meth:`rolling(..).corr() <pandas.core.window.Rolling.corr>` when using a time offset (:issue:`31789`)
--
+- Fixed regression in :meth:`Series.str.encode` where ``base64`` was no longer valid for bytes objects (:issue:`32048`)
.. ---------------------------------------------------------------------------
diff --git a/pandas/core/strings.py b/pandas/core/strings.py
index 4b0fc3e47356c..017504d9f002a 100644
--- a/pandas/core/strings.py
+++ b/pandas/core/strings.py
@@ -2898,7 +2898,6 @@ def decode(self, encoding, errors="strict"):
return self._wrap_result(result, returns_string=False)
@copy(str_encode)
- @forbid_nonstring_types(["bytes"])
def encode(self, encoding, errors="strict"):
result = str_encode(self._parent, encoding, errors)
return self._wrap_result(result, returns_string=False)
diff --git a/pandas/tests/test_strings.py b/pandas/tests/test_strings.py
index 1338d801e39f4..f7d945f1f8879 100644
--- a/pandas/tests/test_strings.py
+++ b/pandas/tests/test_strings.py
@@ -3592,3 +3592,11 @@ def test_string_array_extract():
result = result.astype(object)
tm.assert_equal(result, expected)
+
+
+def test_bytes_encode():
+ # gh-32049
+ ser = pd.Series(list("abc"))
+ result = ser.str.encode(encoding="utf-8").str.encode(encoding="base64")
+ expected = pd.Series([b"YQ==\n", b"Yg==\n", b"Yw==\n"])
+ tm.assert_series_equal(result, expected)
| - [ ] closes #32048
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32080 | 2020-02-18T18:15:58Z | 2020-02-18T19:32:06Z | null | 2020-02-18T19:32:06Z |
BUG: fix in categorical merges | diff --git a/doc/source/whatsnew/v1.1.0.rst b/doc/source/whatsnew/v1.1.0.rst
index 705c335acfb48..822b7dc2e5caa 100644
--- a/doc/source/whatsnew/v1.1.0.rst
+++ b/doc/source/whatsnew/v1.1.0.rst
@@ -103,9 +103,10 @@ Bug fixes
Categorical
^^^^^^^^^^^
+
+- Bug where :func:`merge` was unable to join on non-unique categorical indices (:issue:`28189`)
- Bug when passing categorical data to :class:`Index` constructor along with ``dtype=object`` incorrectly returning a :class:`CategoricalIndex` instead of object-dtype :class:`Index` (:issue:`32167`)
-
--
Datetimelike
^^^^^^^^^^^^
diff --git a/pandas/_libs/join.pyx b/pandas/_libs/join.pyx
index dfa7aa708d681..f696591cf3bd1 100644
--- a/pandas/_libs/join.pyx
+++ b/pandas/_libs/join.pyx
@@ -254,6 +254,8 @@ ctypedef fused join_t:
float64_t
float32_t
object
+ int8_t
+ int16_t
int32_t
int64_t
uint64_t
diff --git a/pandas/core/indexes/category.py b/pandas/core/indexes/category.py
index caa6a9a93141f..11b603f3478ae 100644
--- a/pandas/core/indexes/category.py
+++ b/pandas/core/indexes/category.py
@@ -28,6 +28,7 @@
from pandas.core.indexes.base import Index, _index_shared_docs, maybe_extract_name
from pandas.core.indexes.extension import ExtensionIndex, inherit_names
import pandas.core.missing as missing
+from pandas.core.ops import get_op_result_name
_index_doc_kwargs = dict(ibase._index_doc_kwargs)
_index_doc_kwargs.update(dict(target_klass="CategoricalIndex"))
@@ -785,6 +786,12 @@ def _delegate_method(self, name: str, *args, **kwargs):
return res
return CategoricalIndex(res, name=self.name)
+ def _wrap_joined_index(
+ self, joined: np.ndarray, other: "CategoricalIndex"
+ ) -> "CategoricalIndex":
+ name = get_op_result_name(self, other)
+ return self._create_from_codes(joined, name=name)
+
CategoricalIndex._add_numeric_methods_add_sub_disabled()
CategoricalIndex._add_numeric_methods_disabled()
diff --git a/pandas/tests/reshape/merge/test_merge.py b/pandas/tests/reshape/merge/test_merge.py
index 4f2cd878df613..d80e2e7afceef 100644
--- a/pandas/tests/reshape/merge/test_merge.py
+++ b/pandas/tests/reshape/merge/test_merge.py
@@ -2163,3 +2163,25 @@ def test_merge_datetime_upcast_dtype():
}
)
tm.assert_frame_equal(result, expected)
+
+
+@pytest.mark.parametrize("n_categories", [5, 128])
+def test_categorical_non_unique_monotonic(n_categories):
+ # GH 28189
+ # With n_categories as 5, we test the int8 case is hit in libjoin,
+ # with n_categories as 128 we test the int16 case.
+ left_index = CategoricalIndex([0] + list(range(n_categories)))
+ df1 = DataFrame(range(n_categories + 1), columns=["value"], index=left_index)
+ df2 = DataFrame(
+ [[6]],
+ columns=["value"],
+ index=CategoricalIndex([0], categories=np.arange(n_categories)),
+ )
+
+ result = merge(df1, df2, how="left", left_index=True, right_index=True)
+ expected = DataFrame(
+ [[i, 6.0] if i < 2 else [i, np.nan] for i in range(n_categories + 1)],
+ columns=["value_x", "value_y"],
+ index=left_index,
+ )
+ tm.assert_frame_equal(expected, result)
| test adapted (at this point kind of loosely) from #28296
- [x] closes #28189
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32079 | 2020-02-18T18:12:14Z | 2020-02-27T23:07:26Z | 2020-02-27T23:07:26Z | 2020-10-10T14:14:58Z |
REF: de-nest Series.__setitem__ | diff --git a/pandas/core/series.py b/pandas/core/series.py
index 12164a4b8ff6b..e3f4261eb0b73 100644
--- a/pandas/core/series.py
+++ b/pandas/core/series.py
@@ -978,14 +978,15 @@ def __setitem__(self, key, value):
key = com.apply_if_callable(key, self)
cacher_needs_updating = self._check_is_chained_assignment_possible()
+ if key is Ellipsis:
+ key = slice(None)
+
try:
self._set_with_engine(key, value)
except (KeyError, ValueError):
values = self._values
if is_integer(key) and not self.index.inferred_type == "integer":
values[key] = value
- elif key is Ellipsis:
- self[:] = value
else:
self.loc[key] = value
@@ -1003,9 +1004,10 @@ def __setitem__(self, key, value):
self._where(~key, value, inplace=True)
return
except InvalidIndexError:
- pass
+ self._set_values(key.astype(np.bool_), value)
- self._set_with(key, value)
+ else:
+ self._set_with(key, value)
if cacher_needs_updating:
self._maybe_update_cacher()
@@ -1046,13 +1048,13 @@ def _set_with(self, key, value):
else:
key_type = lib.infer_dtype(key, skipna=False)
+ # Note: key_type == "boolean" should not occur because that
+ # should be caught by the is_bool_indexer check in __setitem__
if key_type == "integer":
if self.index.inferred_type == "integer":
self._set_labels(key, value)
else:
return self._set_values(key, value)
- elif key_type == "boolean":
- self._set_values(key.astype(np.bool_), value)
else:
self._set_labels(key, value)
| Splitting this into a couple of steps for readability. The two main things I have in mind here are a) de-nesting, b) try to parallel the structure of `__getitem__` | https://api.github.com/repos/pandas-dev/pandas/pulls/32078 | 2020-02-18T17:32:32Z | 2020-03-07T11:18:57Z | 2020-03-07T11:18:57Z | 2020-03-07T15:16:18Z |
CI: Remove docs build from pipelines | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d87fa5203bd52..7493be34d10c7 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -154,6 +154,39 @@ jobs:
echo "region = BHS" >> $RCLONE_CONFIG_PATH
if: github.event_name == 'push'
- - name: Sync web
+ - name: Sync web with OVH
run: rclone sync pandas_web ovh_cloud_pandas_web:dev
if: github.event_name == 'push'
+
+ - name: Create git repo to upload the built docs to GitHub pages
+ run: |
+ cd pandas_web
+ git init
+ touch .nojekyll
+ echo "dev.pandas.io" > CNAME
+ printf "User-agent: *\nDisallow: /" > robots.txt
+ git add --all .
+ git config user.email "pandas-dev@python.org"
+ git config user.name "pandas-bot"
+ git commit -m "pandas web and documentation in master"
+ if: github.event_name == 'push'
+
+ # For this task to work, next steps are required:
+ # 1. Generate a pair of private/public keys (i.e. `ssh-keygen -t rsa -b 4096 -C "your_email@example.com"`)
+ # 2. Go to https://github.com/pandas-dev/pandas/settings/secrets
+ # 3. Click on "Add a new secret"
+ # 4. Name: "github_pagas_ssh_key", Value: <Content of the private ssh key>
+ # 5. The public key needs to be upladed to https://github.com/pandas-dev/pandas-dev.github.io/settings/keys
+ - name: Install GitHub pages ssh deployment key
+ uses: shimataro/ssh-key-action@v2
+ with:
+ key: ${{ secrets.github_pages_ssh_key }}
+ known_hosts: 'github.com,192.30.252.128 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ=='
+ if: github.event_name == 'push'
+
+ - name: Publish web and docs to GitHub pages
+ run: |
+ cd pandas_web
+ git remote add origin git@github.com:pandas-dev/pandas-dev.github.io.git
+ git push -f origin master
+ if: github.event_name == 'push'
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index d992c64073476..42a039af46e94 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -15,78 +15,3 @@ jobs:
parameters:
name: Windows
vmImage: vs2017-win2016
-
-- job: 'Web_and_Docs'
- pool:
- vmImage: ubuntu-16.04
- timeoutInMinutes: 90
- steps:
- - script: |
- echo '##vso[task.setvariable variable=ENV_FILE]environment.yml'
- echo '##vso[task.prependpath]$(HOME)/miniconda3/bin'
- displayName: 'Setting environment variables'
-
- - script: |
- sudo apt-get install -y libc6-dev-i386
- ci/setup_env.sh
- displayName: 'Setup environment and build pandas'
-
- - script: |
- source activate pandas-dev
- python web/pandas_web.py web/pandas --target-path=web/build
- displayName: 'Build website'
-
- - script: |
- source activate pandas-dev
- # Next we should simply have `doc/make.py --warnings-are-errors`, everything else is required because the ipython directive doesn't fail the build on errors (https://github.com/ipython/ipython/issues/11547)
- doc/make.py --warnings-are-errors | tee sphinx.log ; SPHINX_RET=${PIPESTATUS[0]}
- grep -B1 "^<<<-------------------------------------------------------------------------$" sphinx.log ; IPY_RET=$(( $? != 1 ))
- exit $(( $SPHINX_RET + $IPY_RET ))
- displayName: 'Build documentation'
-
- - script: |
- mkdir -p to_deploy/docs
- cp -r web/build/* to_deploy/
- cp -r doc/build/html/* to_deploy/docs/
- displayName: 'Merge website and docs'
-
- - script: |
- cd to_deploy
- git init
- touch .nojekyll
- echo "dev.pandas.io" > CNAME
- printf "User-agent: *\nDisallow: /" > robots.txt
- git add --all .
- git config user.email "pandas-dev@python.org"
- git config user.name "pandas-bot"
- git commit -m "pandas web and documentation in master"
- displayName: 'Create git repo for docs build'
- condition : |
- and(not(eq(variables['Build.Reason'], 'PullRequest')),
- eq(variables['Build.SourceBranch'], 'refs/heads/master'))
-
- # For `InstallSSHKey@0` to work, next steps are required:
- # 1. Generate a pair of private/public keys (i.e. `ssh-keygen -t rsa -b 4096 -C "your_email@example.com"`)
- # 2. Go to "Library > Secure files" in the Azure Pipelines dashboard: https://dev.azure.com/pandas-dev/pandas/_library?itemType=SecureFiles
- # 3. Click on "+ Secure file"
- # 4. Upload the private key (the name of the file must match with the specified in "sshKeySecureFile" input below, "pandas_docs_key")
- # 5. Click on file name after it is created, tick the box "Authorize for use in all pipelines" and save
- # 6. The public key specified in "sshPublicKey" is the pair of the uploaded private key, and needs to be set as a deploy key of the repo where the docs will be pushed (with write access): https://github.com/pandas-dev/pandas-dev.github.io/settings/keys
- - task: InstallSSHKey@0
- inputs:
- hostName: 'github.com,192.30.252.128 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ=='
- sshPublicKey: 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDHmz3l/EdqrgNxEUKkwDUuUcLv91unig03pYFGO/DMIgCmPdMG96zAgfnESd837Rm0wSSqylwSzkRJt5MV/TpFlcVifDLDQmUhqCeO8Z6dLl/oe35UKmyYICVwcvQTAaHNnYRpKC5IUlTh0JEtw9fGlnp1Ta7U1ENBLbKdpywczElhZu+hOQ892zqOj3CwA+U2329/d6cd7YnqIKoFN9DWT3kS5K6JE4IoBfQEVekIOs23bKjNLvPoOmi6CroAhu/K8j+NCWQjge5eJf2x/yTnIIP1PlEcXoHIr8io517posIx3TBup+CN8bNS1PpDW3jyD3ttl1uoBudjOQrobNnJeR6Rn67DRkG6IhSwr3BWj8alwUG5mTdZzwV5Pa9KZFdIiqX7NoDGg+itsR39QCn0thK8lGRNSR8KrWC1PSjecwelKBO7uQ7rnk/rkrZdBWR4oEA8YgNH8tirUw5WfOr5a0AIaJicKxGKNdMxZt+zmC+bS7F4YCOGIm9KHa43RrKhoGRhRf9fHHHKUPwFGqtWG4ykcUgoamDOURJyepesBAO3FiRE9rLU6ILbB3yEqqoekborHmAJD5vf7PWItW3Q/YQKuk3kkqRcKnexPyzyyq5lUgTi8CxxZdaASIOu294wjBhhdyHlXEkVTNJ9JKkj/obF+XiIIp0cBDsOXY9hDQ== pandas-dev@python.org'
- sshKeySecureFile: 'pandas_docs_key'
- displayName: 'Install GitHub ssh deployment key'
- condition : |
- and(not(eq(variables['Build.Reason'], 'PullRequest')),
- eq(variables['Build.SourceBranch'], 'refs/heads/master'))
-
- - script: |
- cd to_deploy
- git remote add origin git@github.com:pandas-dev/pandas-dev.github.io.git
- git push -f origin master
- displayName: 'Publish web and docs to GitHub pages'
- condition : |
- and(not(eq(variables['Build.Reason'], 'PullRequest')),
- eq(variables['Build.SourceBranch'], 'refs/heads/master'))
| - [X] closes #29472
At the moment we're building the web and the docs from both Actions and Pipelines. While is still under discussion where things should be hosted, it's probably worth to just build on Actions for now, and publish from there to both the OVH cloud, and to GitHub pages.
**This needs the GitHub pages ssh key to be added to the secrets of this repo with name "github_pages_ssh_key".*** Can someone with permissions please add it? Or if we already got it with a different name, please let me know the name.
| https://api.github.com/repos/pandas-dev/pandas/pulls/32074 | 2020-02-18T10:18:24Z | 2020-02-26T21:08:06Z | 2020-02-26T21:08:05Z | 2020-02-26T21:08:06Z |
CLN: Remove unused script find_commits_touching_func.py | diff --git a/scripts/find_commits_touching_func.py b/scripts/find_commits_touching_func.py
deleted file mode 100755
index 85675cb6df42b..0000000000000
--- a/scripts/find_commits_touching_func.py
+++ /dev/null
@@ -1,244 +0,0 @@
-#!/usr/bin/env python3
-# copyright 2013, y-p @ github
-"""
-Search the git history for all commits touching a named method
-
-You need the sh module to run this
-WARNING: this script uses git clean -f, running it on a repo with untracked
-files will probably erase them.
-
-Usage::
- $ ./find_commits_touching_func.py (see arguments below)
-"""
-import argparse
-from collections import namedtuple
-import logging
-import os
-import re
-
-from dateutil.parser import parse
-
-try:
- import sh
-except ImportError:
- raise ImportError("The 'sh' package is required to run this script.")
-
-
-desc = """
-Find all commits touching a specified function across the codebase.
-""".strip()
-argparser = argparse.ArgumentParser(description=desc)
-argparser.add_argument(
- "funcname",
- metavar="FUNCNAME",
- help="Name of function/method to search for changes on",
-)
-argparser.add_argument(
- "-f",
- "--file-masks",
- metavar="f_re(,f_re)*",
- default=[r"\.py.?$"],
- help="comma separated list of regexes to match "
- "filenames against\ndefaults all .py? files",
-)
-argparser.add_argument(
- "-d",
- "--dir-masks",
- metavar="d_re(,d_re)*",
- default=[],
- help="comma separated list of regexes to match base path against",
-)
-argparser.add_argument(
- "-p",
- "--path-masks",
- metavar="p_re(,p_re)*",
- default=[],
- help="comma separated list of regexes to match full file path against",
-)
-argparser.add_argument(
- "-y",
- "--saw-the-warning",
- action="store_true",
- default=False,
- help="must specify this to run, acknowledge you "
- "realize this will erase untracked files",
-)
-argparser.add_argument(
- "--debug-level",
- default="CRITICAL",
- help="debug level of messages (DEBUG, INFO, etc...)",
-)
-args = argparser.parse_args()
-
-
-lfmt = logging.Formatter(fmt="%(levelname)-8s %(message)s", datefmt="%m-%d %H:%M:%S")
-shh = logging.StreamHandler()
-shh.setFormatter(lfmt)
-logger = logging.getLogger("findit")
-logger.addHandler(shh)
-
-Hit = namedtuple("Hit", "commit path")
-HASH_LEN = 8
-
-
-def clean_checkout(comm):
- h, s, d = get_commit_vitals(comm)
- if len(s) > 60:
- s = s[:60] + "..."
- s = s.split("\n")[0]
- logger.info("CO: %s %s" % (comm, s))
-
- sh.git("checkout", comm, _tty_out=False)
- sh.git("clean", "-f")
-
-
-def get_hits(defname, files=()):
- cs = set()
- for f in files:
- try:
- r = sh.git(
- "blame",
- "-L",
- r"/def\s*{start}/,/def/".format(start=defname),
- f,
- _tty_out=False,
- )
- except sh.ErrorReturnCode_128:
- logger.debug("no matches in %s" % f)
- continue
-
- lines = r.strip().splitlines()[:-1]
- # remove comment lines
- lines = [x for x in lines if not re.search(r"^\w+\s*\(.+\)\s*#", x)]
- hits = set(map(lambda x: x.split(" ")[0], lines))
- cs.update({Hit(commit=c, path=f) for c in hits})
-
- return cs
-
-
-def get_commit_info(c, fmt, sep="\t"):
- r = sh.git(
- "log",
- "--format={}".format(fmt),
- "{}^..{}".format(c, c),
- "-n",
- "1",
- _tty_out=False,
- )
- return str(r).split(sep)
-
-
-def get_commit_vitals(c, hlen=HASH_LEN):
- h, s, d = get_commit_info(c, "%H\t%s\t%ci", "\t")
- return h[:hlen], s, parse(d)
-
-
-def file_filter(state, dirname, fnames):
- if args.dir_masks and not any(re.search(x, dirname) for x in args.dir_masks):
- return
- for f in fnames:
- p = os.path.abspath(os.path.join(os.path.realpath(dirname), f))
- if any(re.search(x, f) for x in args.file_masks) or any(
- re.search(x, p) for x in args.path_masks
- ):
- if os.path.isfile(p):
- state["files"].append(p)
-
-
-def search(defname, head_commit="HEAD"):
- HEAD, s = get_commit_vitals("HEAD")[:2]
- logger.info("HEAD at %s: %s" % (HEAD, s))
- done_commits = set()
- # allhits = set()
- files = []
- state = dict(files=files)
- os.walk(".", file_filter, state)
- # files now holds a list of paths to files
-
- # seed with hits from q
- allhits = set(get_hits(defname, files=files))
- q = {HEAD}
- try:
- while q:
- h = q.pop()
- clean_checkout(h)
- hits = get_hits(defname, files=files)
- for x in hits:
- prevc = get_commit_vitals(x.commit + "^")[0]
- if prevc not in done_commits:
- q.add(prevc)
- allhits.update(hits)
- done_commits.add(h)
-
- logger.debug("Remaining: %s" % q)
- finally:
- logger.info("Restoring HEAD to %s" % HEAD)
- clean_checkout(HEAD)
- return allhits
-
-
-def pprint_hits(hits):
- SUBJ_LEN = 50
- PATH_LEN = 20
- hits = list(hits)
- max_p = 0
- for hit in hits:
- p = hit.path.split(os.path.realpath(os.curdir) + os.path.sep)[-1]
- max_p = max(max_p, len(p))
-
- if max_p < PATH_LEN:
- SUBJ_LEN += PATH_LEN - max_p
- PATH_LEN = max_p
-
- def sorter(i):
- h, s, d = get_commit_vitals(hits[i].commit)
- return hits[i].path, d
-
- print(
- ("\nThese commits touched the %s method in these files on these dates:\n")
- % args.funcname
- )
- for i in sorted(range(len(hits)), key=sorter):
- hit = hits[i]
- h, s, d = get_commit_vitals(hit.commit)
- p = hit.path.split(os.path.realpath(os.curdir) + os.path.sep)[-1]
-
- fmt = "{:%d} {:10} {:<%d} {:<%d}" % (HASH_LEN, SUBJ_LEN, PATH_LEN)
- if len(s) > SUBJ_LEN:
- s = s[: SUBJ_LEN - 5] + " ..."
- print(fmt.format(h[:HASH_LEN], d.isoformat()[:10], s, p[-20:]))
-
- print("\n")
-
-
-def main():
- if not args.saw_the_warning:
- argparser.print_help()
- print(
- """
-!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-WARNING:
-this script uses git clean -f, running it on a repo with untracked files.
-It's recommended that you make a fresh clone and run from its root directory.
-You must specify the -y argument to ignore this warning.
-!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-"""
- )
- return
- if isinstance(args.file_masks, str):
- args.file_masks = args.file_masks.split(",")
- if isinstance(args.path_masks, str):
- args.path_masks = args.path_masks.split(",")
- if isinstance(args.dir_masks, str):
- args.dir_masks = args.dir_masks.split(",")
-
- logger.setLevel(getattr(logging, args.debug_level))
-
- hits = search(args.funcname)
- pprint_hits(hits)
-
-
-if __name__ == "__main__":
- import sys
-
- sys.exit(main())
| - [X] xref #31039
I've been trying the script `find_commits_touching_func.py` and doesn't seem to be working. Tried for many existing functions, and never get any result. I guess it doesn't work with newer git versions, or with the latest dependencies. And if nobody realized of this before, I assume nobody is using this script (and in any case, a separate project would be more appropriate for it, since I don't think it's pandas specific).
The script was being refactored in #32044, that's why I was having a look.
| https://api.github.com/repos/pandas-dev/pandas/pulls/32071 | 2020-02-18T09:17:07Z | 2020-02-20T01:04:11Z | 2020-02-20T01:04:11Z | 2020-02-20T01:04:20Z |
TST: corrwith and tshift in groupby/groupby.transform | diff --git a/pandas/tests/groupby/test_transform.py b/pandas/tests/groupby/test_transform.py
index 740103eec185a..73a99f2dd4402 100644
--- a/pandas/tests/groupby/test_transform.py
+++ b/pandas/tests/groupby/test_transform.py
@@ -1,4 +1,5 @@
""" test with the .transform """
+from datetime import timedelta
from io import StringIO
import numpy as np
@@ -23,6 +24,17 @@
from pandas.core.groupby.groupby import DataError
+@pytest.fixture
+def df_for_transformation_func():
+ return DataFrame(
+ {
+ "A": [121, 121, 121, 121, 231, 231, 676],
+ "B": [1.0, 2.0, 2.0, 3.0, 3.0, 3.0, 4.0],
+ "C": pd.date_range("2013-11-03", periods=7, freq="D"),
+ }
+ )
+
+
def assert_fp_equal(a, b):
assert (np.abs(a - b) < 1e-12).all()
@@ -318,7 +330,7 @@ def test_dispatch_transform(tsframe):
tm.assert_frame_equal(filled, expected)
-def test_transform_transformation_func(transformation_func):
+def test_transform_transformation_func(transformation_func, df_for_transformation_func):
# GH 30918
df = DataFrame(
{
@@ -346,6 +358,47 @@ def test_transform_transformation_func(transformation_func):
tm.assert_frame_equal(result, expected)
+def test_groupby_transform_corrwith(df_for_transformation_func):
+
+ # GH 27905
+ df = df_for_transformation_func
+ g = df.groupby("A")
+
+ result = g.corrwith(df)
+ expected = pd.DataFrame(dict(B=[1, np.nan, np.nan], A=[np.nan] * 3))
+ expected.index = pd.Index([121, 231, 676], name="A")
+ tm.assert_frame_equal(result, expected)
+
+ msg = "'Series' object has no attribute 'corrwith'"
+
+ with pytest.raises(AttributeError, match=msg):
+ g.transform("corrwith", df)
+
+
+def test_groupby_transform_tshift(df_for_transformation_func):
+
+ # GH 27905
+ df = df_for_transformation_func
+ g = df.set_index("C").groupby("A")
+ result = g.tshift(2, "D")
+ df["C"] = df["C"] + timedelta(days=2)
+ expected = df
+ tm.assert_frame_equal(
+ result.reset_index().reindex(columns=["A", "B", "C"]), expected
+ )
+
+ op1 = g.transform(lambda x: x.tshift(2, "D"))
+ op2 = g.transform("tshift", *[2, "D"])
+
+ for result in [op1, op2]:
+ pytest.xfail(
+ "The output of groupby.transform with tshift is wrong, see GH 32344"
+ )
+ tm.assert_frame_equal(
+ result.reset_index().reindex(columns=["A", "B", "C"]), expected
+ )
+
+
def test_transform_select_columns(df):
f = lambda x: x.mean()
result = df.groupby("A")[["C", "D"]].transform(f)
| This PR tests `corrwith` and `tshift`, so not sure if it fully closes the original issue or not, but the other functions`backfill`, `pad` and `cumcount` don't seem to be supported in `groupby.transform` as reported in issues #27472 and #31269.
- [x] closes #27905
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
| https://api.github.com/repos/pandas-dev/pandas/pulls/32069 | 2020-02-18T01:54:52Z | 2020-03-03T15:45:24Z | null | 2020-03-03T15:45:25Z |
DOC: Add example for multiindex series and dataframe merge | diff --git a/doc/source/user_guide/merging.rst b/doc/source/user_guide/merging.rst
index 8fdcd8d281a41..8302b5c5dea60 100644
--- a/doc/source/user_guide/merging.rst
+++ b/doc/source/user_guide/merging.rst
@@ -724,6 +724,27 @@ either the left or right tables, the values in the joined table will be
labels=['left', 'right'], vertical=False);
plt.close('all');
+You can merge a mult-indexed Series and a DataFrame, if the names of
+the MultiIndex correspond to the columns from the DataFrame. Transform
+the Series to a DataFrame using :meth:`Series.reset_index` before merging,
+as shown in the following example.
+
+.. ipython:: python
+
+ df = pd.DataFrame({"Let": ["A", "B", "C"], "Num": [1, 2, 3]})
+ df
+
+ ser = pd.Series(
+ ["a", "b", "c", "d", "e", "f"],
+ index=pd.MultiIndex.from_arrays(
+ [["A", "B", "C"] * 2, [1, 2, 3, 4, 5, 6]], names=["Let", "Num"]
+ ),
+ )
+ ser
+
+ result = pd.merge(df, ser.reset_index(), on=['Let', 'Num'])
+
+
Here is another example with duplicate join keys in DataFrames:
.. ipython:: python
| - [x] closes #12550
| https://api.github.com/repos/pandas-dev/pandas/pulls/32068 | 2020-02-18T00:05:32Z | 2020-02-27T21:42:40Z | 2020-02-27T21:42:39Z | 2020-03-02T11:41:50Z |
Backport PR #32064 on branch 1.0.x (DOC: pin gitdb2) | diff --git a/environment.yml b/environment.yml
index e244350a0bea0..0d624c3c716a0 100644
--- a/environment.yml
+++ b/environment.yml
@@ -26,6 +26,7 @@ dependencies:
# documentation
- gitpython # obtain contributors from git for whatsnew
+ - gitdb2=2.0.6 # GH-32060
- sphinx
- numpydoc>=0.9.0
diff --git a/requirements-dev.txt b/requirements-dev.txt
index 017e6258d9941..b10ea0c54b96c 100644
--- a/requirements-dev.txt
+++ b/requirements-dev.txt
@@ -15,6 +15,7 @@ isort
mypy==0.730
pycodestyle
gitpython
+gitdb2==2.0.6
sphinx
numpydoc>=0.9.0
nbconvert>=5.4.1
| Backport PR #32064: DOC: pin gitdb2 | https://api.github.com/repos/pandas-dev/pandas/pulls/32066 | 2020-02-17T21:35:32Z | 2020-02-17T22:57:28Z | 2020-02-17T22:57:27Z | 2020-02-17T22:57:28Z |
DOC: Use container directives instead of raw html for the doc "cards" | diff --git a/doc/source/_static/css/getting_started.css b/doc/source/_static/css/getting_started.css
index bb24761cdb159..58d633245937d 100644
--- a/doc/source/_static/css/getting_started.css
+++ b/doc/source/_static/css/getting_started.css
@@ -66,6 +66,7 @@
}
/* reference to user guide */
+
.gs-torefguide {
align-items: center;
font-size: 0.9rem;
@@ -129,69 +130,6 @@ ul.task-bullet > li > p:first-child {
padding-left: 0.75rem;
}
-/* Getting started index page */
-
-.intro-card {
- background:#FFF;
- border-radius:0;
- padding: 30px 10px 10px 10px;
- margin: 10px 0px;
-}
-
-.intro-card .card-text {
- margin:20px 0px;
- /*min-height: 150px; */
-}
-
-.intro-card .card-img-top {
- margin: 10px;
-}
-
-.install-block {
- padding-bottom: 30px;
-}
-
-.install-card .card-header {
- border: none;
- background-color:white;
- color: #150458;
- font-size: 1.1rem;
- font-weight: bold;
- padding: 1rem 1rem 0rem 1rem;
-}
-
-.install-card .card-footer {
- border: none;
- background-color:white;
-}
-
-.install-card pre {
- margin: 0 1em 1em 1em;
-}
-
-.custom-button {
- background-color:#DCDCDC;
- border: none;
- color: #484848;
- text-align: center;
- text-decoration: none;
- display: inline-block;
- font-size: 0.9rem;
- border-radius: 0.5rem;
- max-width: 120px;
- padding: 0.5rem 0rem;
-}
-
-.custom-button a {
- color: #484848;
-}
-
-.custom-button p {
- margin-top: 0;
- margin-bottom: 0rem;
- color: #484848;
-}
-
/* intro to tutorial collapsed cards */
.tutorial-accordion {
diff --git a/doc/source/_static/css/pandas.css b/doc/source/_static/css/pandas.css
index 43cd631890330..6ecae296a237e 100644
--- a/doc/source/_static/css/pandas.css
+++ b/doc/source/_static/css/pandas.css
@@ -1,15 +1,30 @@
/* Getting started index page */
.intro-card {
- background: #fff;
- border-radius: 0;
- padding: 30px 10px 10px 10px;
+ background:#FFF;
+ border-radius:0;
+ padding: 10px 10px 10px 10px;
margin: 10px 0px;
}
+.intro-card .card-title {
+ color: #150458;
+ font-size: 1.1rem;
+ font-weight: bold;
+}
+
.intro-card .card-text {
margin: 20px 0px;
- /*min-height: 150px; */
+}
+
+.intro-card .card-img-top {
+ margin: 20px 10px 10px 10px;
+}
+
+.intro-card .card-footer {
+ border: none;
+ background-color:white;
+ padding: 0rem 1.25rem;
}
.custom-button {
@@ -23,6 +38,7 @@
border-radius: 0.5rem;
max-width: 220px;
padding: 0.5rem 0rem;
+ width: 100%
}
.custom-button a {
@@ -33,4 +49,4 @@
margin-top: 0;
margin-bottom: 0rem;
color: #484848;
-}
+}
\ No newline at end of file
diff --git a/doc/source/conf.py b/doc/source/conf.py
index a95cd4ab696f7..4936238e129c6 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -255,6 +255,9 @@
# Additional templates that should be rendered to pages, maps page names to
# template names.
+# Do not make scaled images a link
+html_scaled_image_link = False
+
# Add redirect for previously existing API pages
# each item is like `(from_old, to_new)`
# To redirect a class and all its methods, see below
diff --git a/doc/source/getting_started/index.rst b/doc/source/getting_started/index.rst
index a2f8f79f22ae4..1551b62aa1b8a 100644
--- a/doc/source/getting_started/index.rst
+++ b/doc/source/getting_started/index.rst
@@ -11,82 +11,62 @@ Installation
Before you can use pandas, you’ll need to get it installed.
-.. raw:: html
+.. container:: container
- <div class="container">
- <div class="row">
- <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 d-flex install-block">
- <div class="card install-card shadow w-100">
- <div class="card-header">
- Working with conda?
- </div>
- <div class="card-body">
- <p class="card-text">
+ .. container:: row
-Pandas is part of the `Anaconda <http://docs.continuum.io/anaconda/>`__ distribution and can be
-installed with Anaconda or Miniconda:
+ .. container:: col-lg-6 col-md-6 col-sm-12 col-xs-12 d-flex install-block
-.. raw:: html
+ .. container:: card intro-card shadow w-100
- </p>
- </div>
- <div class="card-footer text-muted">
+ .. container:: card-body
-.. code-block:: bash
+ .. container:: card-title
- conda install pandas
+ Working with conda?
-.. raw:: html
+ Pandas is part of the `Anaconda <http://docs.continuum.io/anaconda/>`_ distribution and can be
+ installed with Anaconda or Miniconda:
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 d-flex install-block">
- <div class="card install-card shadow w-100">
- <div class="card-header">
- Prefer pip?
- </div>
- <div class="card-body">
- <p class="card-text">
+ .. container:: card-footer text-muted
-Pandas can be installed via pip from `PyPI <https://pypi.org/project/pandas>`__.
+ .. code-block:: bash
-.. raw:: html
+ conda install pandas
- </p>
- </div>
- <div class="card-footer text-muted">
+ .. container:: col-lg-6 col-md-6 col-sm-12 col-xs-12 d-flex install-block
-.. code-block:: bash
+ .. container:: card intro-card shadow w-100
- pip install pandas
+ .. container:: card-body
-.. raw:: html
+ .. container:: card-title
- </div>
- </div>
- </div>
- <div class="col-12 d-flex install-block">
- <div class="card install-card shadow w-100">
- <div class="card-header">
- In-depth instructions?
- </div>
- <div class="card-body">
- <p class="card-text">Installing a specific version?
- Installing from source?
- Check the advanced installation page.</p>
+ Prefer pip?
-.. container:: custom-button
+ Pandas can be installed via pip from `PyPI <https://pypi.org/project/pandas>`__.
- :ref:`Learn more <install>`
+ .. container:: card-footer text-muted
-.. raw:: html
+ .. code-block:: bash
- </div>
- </div>
- </div>
- </div>
- </div>
+ pip install pandas
+
+ .. container:: col-12 d-flex install-block
+
+ .. container:: card intro-card shadow w-100
+
+ .. container:: card-body
+
+ .. container:: card-title
+
+ In-depth instructions?
+
+ Installing a specific version? Installing from source? Check the advanced installation page.
+
+ .. container:: custom-button
+
+ :ref:`Learn more <install>`
.. _gentle_intro:
@@ -572,81 +552,84 @@ Currently working with other software for data manipulation in a tabular format?
data operations and know *what* to do with your tabular data, but lacking the syntax to execute these operations. Get to know
the pandas syntax by looking for equivalents from the software you already know:
-.. raw:: html
+.. container:: container
- <div class="container">
- <div class="row">
- <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
- <div class="card text-center intro-card shadow">
- <img src="../_static/logo_r.svg" class="card-img-top" alt="R project logo" height="72">
- <div class="card-body flex-fill">
- <p class="card-text">The <a href="https://www.r-project.org/">R programming language</a> provides the <code>data.frame</code> data structure and multiple packages,
- such as <a href="https://www.tidyverse.org/">tidyverse</a> use and extend <code>data.frame</code>s for convenient data handling
- functionalities similar to pandas.</p>
+ .. container:: row
-.. container:: custom-button
+ .. container:: col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex
- :ref:`Learn more <compare_with_r>`
+ .. container:: card text-center intro-card shadow
-.. raw:: html
+ .. image:: ../_static/logo_r.svg
+ :class: card-img-top
+ :height: 72px
+ :alt: R project logo
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
- <div class="card text-center intro-card shadow">
- <img src="../_static/logo_sql.svg" class="card-img-top" alt="SQL logo" height="72">
- <div class="card-body flex-fill">
- <p class="card-text">Already familiar to <code>SELECT</code>, <code>GROUP BY</code>, <code>JOIN</code>,...?
- Most of these SQL manipulations do have equivalents in pandas.</p>
+ .. container:: card-body flex-fill
-.. container:: custom-button
+ The `R programming language <https://www.r-project.org/>`_ provides the ``data.frame`` data
+ structure and multiple packages, such as `tidyverse <https://www.tidyverse.org/>`_ use and
+ extend ``data.frame`` s for convenient data handling functionalities similar to pandas.
- :ref:`Learn more <compare_with_sql>`
+ .. container:: custom-button
-.. raw:: html
+ :ref:`Learn more <compare_with_r>`
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
- <div class="card text-center intro-card shadow">
- <img src="../_static/logo_stata.svg" class="card-img-top" alt="STATA logo" height="52">
- <div class="card-body flex-fill">
- <p class="card-text">The <code>data set</code> included in the
- <a href="https://en.wikipedia.org/wiki/Stata">STATA</a> statistical software suite corresponds
- to the pandas <code>data.frame</code>. Many of the operations known from STATA have an equivalent
- in pandas.</p>
+ .. container:: col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex
-.. container:: custom-button
+ .. container:: card text-center intro-card shadow
- :ref:`Learn more <compare_with_stata>`
+ .. image:: ../_static/logo_sql.svg
+ :class: card-img-top
+ :height: 72px
+ :alt: SQL logo
-.. raw:: html
+ .. container:: card-body flex-fill
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
- <div class="card text-center intro-card shadow">
- <img src="../_static/logo_sas.svg" class="card-img-top" alt="SAS logo" height="52">
- <div class="card-body flex-fill">
- <p class="card-text">The <a href="https://en.wikipedia.org/wiki/SAS_(software)">SAS</a> statistical software suite
- also provides the <code>data set</code> corresponding to the pandas <code>data.frame</code>.
- Also vectorized operations, filtering, string processing operations,... from SAS have similar
- functions in pandas.</p>
+ Already familiar to ``SELECT``, ``GROUP BY``, ``JOIN``,...?
+ Most of these SQL manipulations do have equivalents in pandas.
-.. container:: custom-button
+ .. container:: custom-button
- :ref:`Learn more <compare_with_sas>`
+ :ref:`Learn more <compare_with_sql>`
-.. raw:: html
+ .. container:: col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex
- </div>
- </div>
- </div>
- </div>
- </div>
+ .. container:: card text-center intro-card shadow
+
+ .. image:: ../_static/logo_stata.svg
+ :class: card-img-top
+ :height: 52px
+ :alt: Stata logo
+
+ .. container:: card-body flex-fill
+
+ The ``data set`` included in the `STATA <https://en.wikipedia.org/wiki/Stata>`_ statistical software
+ suite corresponds to the pandas ``data.frame``. Many of the operations known from STATA have an equivalent
+ in pandas.
+
+ .. container:: custom-button
+
+ :ref:`Learn more <compare_with_stata>`
+
+ .. container:: col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex
+
+ .. container:: card text-center intro-card shadow
+
+ .. image:: ../_static/logo_sas.svg
+ :class: card-img-top
+ :height: 52px
+ :alt: SAS logo
+
+ .. container:: card-body flex-fill
+
+ The `SAS statistical software suite <https://en.wikipedia.org/wiki/SAS_(software)>`_
+ provides the ``data set`` corresponding to the pandas ``data.frame``. Also vectorized operations,
+ filtering, string processing operations,... from SAS have similar functions in pandas.
+
+ .. container:: custom-button
+
+ :ref:`Learn more <compare_with_sas>`
Community tutorials
-------------------
diff --git a/doc/source/index.rst.template b/doc/source/index.rst.template
index 7eb25790f6a7a..11968af4f7539 100644
--- a/doc/source/index.rst.template
+++ b/doc/source/index.rst.template
@@ -23,82 +23,100 @@ pandas documentation
easy-to-use data structures and data analysis tools for the `Python <https://www.python.org/>`__
programming language.
-.. raw:: html
-
- <div class="container">
- <div class="row">
- <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
- <div class="card text-center intro-card shadow">
- <img src="_static/index_getting_started.svg" class="card-img-top" alt="getting started with pandas action icon" height="52">
- <div class="card-body flex-fill">
- <h5 class="card-title">Getting started</h5>
- <p class="card-text">New to <em>pandas</em>? Check out the getting started guides. They
- contain an introduction to <em>pandas'</em> main concepts and links to additional tutorials.</p>
-
-.. container:: custom-button
-
- :ref:`To the getting started guides<getting_started>`
-
-.. raw:: html
-
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
- <div class="card text-center intro-card shadow">
- <img src="_static/index_user_guide.svg" class="card-img-top" alt="pandas user guide action icon" height="52">
- <div class="card-body flex-fill">
- <h5 class="card-title">User guide</h5>
- <p class="card-text">The user guide provides in-depth information on the
- key concepts of pandas with useful background information and explanation.</p>
-
-.. container:: custom-button
-
- :ref:`To the user guide<user_guide>`
-
-.. raw:: html
-
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
- <div class="card text-center intro-card shadow">
- <img src="_static/index_api.svg" class="card-img-top" alt="api of pandas action icon" height="52">
- <div class="card-body flex-fill">
- <h5 class="card-title">API reference</h5>
- <p class="card-text">The reference guide contains a detailed description of
- the pandas API. The reference describes how the methods work and which parameters can
- be used. It assumes that you have an understanding of the key concepts.</p>
-
-.. container:: custom-button
-
- :ref:`To the reference guide<api>`
-
-.. raw:: html
-
- </div>
- </div>
- </div>
- <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
- <div class="card text-center intro-card shadow">
- <img src="_static/index_contribute.svg" class="card-img-top" alt="contribute to pandas action icon" height="52">
- <div class="card-body flex-fill">
- <h5 class="card-title">Developer guide</h5>
- <p class="card-text">Saw a typo in the documentation? Want to improve
- existing functionalities? The contributing guidelines will guide
- you through the process of improving pandas.</p>
+.. container:: container
+
+ .. container:: row
+
+ .. container:: col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex
+
+ .. container:: card text-center intro-card shadow
+
+ .. image:: _static/index_getting_started.svg
+ :class: card-img-top
+ :height: 52px
+ :alt: getting started with pandas action icon
+
+ .. container:: card-body flex-fill
+
+ .. container:: card-title
+
+ Getting started
+
+ New to *pandas*? Check out the getting started guides. They
+ contain an introduction to *pandas'* main concepts and links to
+ additional tutorials.
+
+ .. container:: custom-button
+
+ :ref:`To the getting started guides<getting_started>`
+
+ .. container:: col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex
+
+ .. container:: card text-center intro-card shadow
+
+ .. image:: _static/index_user_guide.svg
+ :class: card-img-top
+ :height: 52px
+ :alt: pandas user guide action icon
+
+ .. container:: card-body flex-fill
+
+ .. container:: card-title
+
+ User guide
+
+ The user guide provides in-depth information on the key concepts
+ of pandas with useful background information and explanation.
-.. container:: custom-button
+ .. container:: custom-button
- :ref:`To the development guide<development>`
+ :ref:`To the user guide<user_guide>`
+
+ .. container:: col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex
+
+ .. container:: card text-center intro-card shadow
+
+ .. image:: _static/index_api.svg
+ :class: card-img-top
+ :height: 52px
+ :alt: api of pandas action icon
+
+ .. container:: card-body flex-fill
+
+ .. container:: card-title
+
+ API reference
+
+ The reference guide contains a detailed description of the pandas API. The reference
+ describes how the methods work and which parameters can be used. It assumes that
+ you have an understanding of the key concepts.
+
+ .. container:: custom-button
+
+ :ref:`To the reference guide<api>`
+
+ .. container:: col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex
+
+ .. container:: card text-center intro-card shadow
+
+ .. image:: _static/index_contribute.svg
+ :class: card-img-top
+ :height: 52px
+ :alt: contribute to pandas action icon
+
+ .. container:: card-body flex-fill
+
+ .. container:: card-title
+
+ Developer guide
+
+ Saw a typo in the documentation? Want to improve
+ existing functionalities? The contributing guidelines will guide
+ you through the process of improving pandas.
-.. raw:: html
+ .. container:: custom-button
- </div>
- </div>
- </div>
- </div>
- </div>
+ :ref:`To the development guide<development>`
{% if single_doc and single_doc.endswith('.rst') -%}
| - [ ] closes #xxxx
- [ ] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
The PR is a follow up of #31156 and #31148 translating the raw html to docutils/sphinx directives, making it more _readable_.
Furthermore, it fixes the redundant css in `pandas.css` versus `getting_started.css` by removing the `install-card` class and merging it with the existing `intro-card` class.
__Note:__ The setup required an [adjustment to the theme](https://github.com/pandas-dev/pydata-bootstrap-sphinx-theme/pull/92) to overcome the usage of the `container` class by both docutils and bootstrap. | https://api.github.com/repos/pandas-dev/pandas/pulls/32065 | 2020-02-17T19:12:24Z | 2020-05-25T08:54:50Z | null | 2020-05-25T08:54:51Z |
DOC: pin gitdb2 | diff --git a/environment.yml b/environment.yml
index 5f1184e921119..cbdaf8e6c4217 100644
--- a/environment.yml
+++ b/environment.yml
@@ -26,6 +26,7 @@ dependencies:
# documentation
- gitpython # obtain contributors from git for whatsnew
+ - gitdb2=2.0.6 # GH-32060
- sphinx
# documentation (jupyter notebooks)
diff --git a/requirements-dev.txt b/requirements-dev.txt
index 08cbef2c7fc6b..a469cbdd93ceb 100644
--- a/requirements-dev.txt
+++ b/requirements-dev.txt
@@ -15,6 +15,7 @@ isort
mypy==0.730
pycodestyle
gitpython
+gitdb2==2.0.6
sphinx
nbconvert>=5.4.1
nbsphinx
| ref #32060 | https://api.github.com/repos/pandas-dev/pandas/pulls/32064 | 2020-02-17T18:44:41Z | 2020-02-17T21:35:22Z | 2020-02-17T21:35:22Z | 2020-02-17T21:35:25Z |
CLN: GH29547 replace old string formatting | diff --git a/pandas/tests/tslibs/test_parsing.py b/pandas/tests/tslibs/test_parsing.py
index c452d5b12ce01..1ba7832c47e6c 100644
--- a/pandas/tests/tslibs/test_parsing.py
+++ b/pandas/tests/tslibs/test_parsing.py
@@ -42,9 +42,9 @@ def test_parse_time_quarter_with_dash(dashed, normal):
@pytest.mark.parametrize("dashed", ["-2Q1992", "2-Q1992", "4-4Q1992"])
def test_parse_time_quarter_with_dash_error(dashed):
- msg = "Unknown datetime string format, unable to parse: {dashed}"
+ msg = f"Unknown datetime string format, unable to parse: {dashed}"
- with pytest.raises(parsing.DateParseError, match=msg.format(dashed=dashed)):
+ with pytest.raises(parsing.DateParseError, match=msg):
parse_time_string(dashed)
@@ -115,12 +115,12 @@ def test_parsers_quarter_invalid(date_str):
if date_str == "6Q-20":
msg = (
"Incorrect quarterly string is given, quarter "
- "must be between 1 and 4: {date_str}"
+ f"must be between 1 and 4: {date_str}"
)
else:
- msg = "Unknown datetime string format, unable to parse: {date_str}"
+ msg = f"Unknown datetime string format, unable to parse: {date_str}"
- with pytest.raises(ValueError, match=msg.format(date_str=date_str)):
+ with pytest.raises(ValueError, match=msg):
parsing.parse_time_string(date_str)
| Hi there! I've added some missed f-strings to:
* tests/tslibs
* tests/tseries
- [x] tests passed
- [x] passes `black pandas`
Thank you.
| https://api.github.com/repos/pandas-dev/pandas/pulls/32063 | 2020-02-17T17:06:14Z | 2020-02-18T11:56:22Z | 2020-02-18T11:56:21Z | 2020-02-18T15:18:19Z |
Backport PR #31734 on branch 1.0.x (BUG: list-like to_replace on Categorical.replace is ignored or crash) | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index 0c012e5c1417b..805f87b63eef8 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -29,6 +29,7 @@ Bug fixes
**Categorical**
- Fixed bug where :meth:`Categorical.from_codes` improperly raised a ``ValueError`` when passed nullable integer codes. (:issue:`31779`)
+- Bug in :class:`Categorical` that would ignore or crash when calling :meth:`Series.replace` with a list-like ``to_replace`` (:issue:`31720`)
**I/O**
diff --git a/pandas/_testing.py b/pandas/_testing.py
index 1fdc5d478aaf6..ca378e5ce8f77 100644
--- a/pandas/_testing.py
+++ b/pandas/_testing.py
@@ -1056,6 +1056,7 @@ def assert_series_equal(
check_exact=False,
check_datetimelike_compat=False,
check_categorical=True,
+ check_category_order=True,
obj="Series",
):
"""
@@ -1090,6 +1091,10 @@ def assert_series_equal(
Compare datetime-like which is comparable ignoring dtype.
check_categorical : bool, default True
Whether to compare internal Categorical exactly.
+ check_category_order : bool, default True
+ Whether to compare category order of internal Categoricals
+
+ .. versionadded:: 1.0.2
obj : str, default 'Series'
Specify object name being compared, internally used to show appropriate
assertion message.
@@ -1192,7 +1197,12 @@ def assert_series_equal(
if check_categorical:
if is_categorical_dtype(left) or is_categorical_dtype(right):
- assert_categorical_equal(left.values, right.values, obj=f"{obj} category")
+ assert_categorical_equal(
+ left.values,
+ right.values,
+ obj=f"{obj} category",
+ check_category_order=check_category_order,
+ )
# This could be refactored to use the NDFrame.equals method
diff --git a/pandas/core/arrays/categorical.py b/pandas/core/arrays/categorical.py
index 52d9df0c2d508..d8a2fbdd58382 100644
--- a/pandas/core/arrays/categorical.py
+++ b/pandas/core/arrays/categorical.py
@@ -2447,18 +2447,30 @@ def replace(self, to_replace, value, inplace: bool = False):
"""
inplace = validate_bool_kwarg(inplace, "inplace")
cat = self if inplace else self.copy()
- if to_replace in cat.categories:
- if isna(value):
- cat.remove_categories(to_replace, inplace=True)
- else:
+
+ # build a dict of (to replace -> value) pairs
+ if is_list_like(to_replace):
+ # if to_replace is list-like and value is scalar
+ replace_dict = {replace_value: value for replace_value in to_replace}
+ else:
+ # if both to_replace and value are scalar
+ replace_dict = {to_replace: value}
+
+ # other cases, like if both to_replace and value are list-like or if
+ # to_replace is a dict, are handled separately in NDFrame
+ for replace_value, new_value in replace_dict.items():
+ if replace_value in cat.categories:
+ if isna(new_value):
+ cat.remove_categories(replace_value, inplace=True)
+ continue
categories = cat.categories.tolist()
- index = categories.index(to_replace)
- if value in cat.categories:
- value_index = categories.index(value)
+ index = categories.index(replace_value)
+ if new_value in cat.categories:
+ value_index = categories.index(new_value)
cat._codes[cat._codes == index] = value_index
- cat.remove_categories(to_replace, inplace=True)
+ cat.remove_categories(replace_value, inplace=True)
else:
- categories[index] = value
+ categories[index] = new_value
cat.rename_categories(categories, inplace=True)
if not inplace:
return cat
diff --git a/pandas/tests/arrays/categorical/test_replace.py b/pandas/tests/arrays/categorical/test_replace.py
new file mode 100644
index 0000000000000..52530123bd52f
--- /dev/null
+++ b/pandas/tests/arrays/categorical/test_replace.py
@@ -0,0 +1,48 @@
+import pytest
+
+import pandas as pd
+import pandas._testing as tm
+
+
+@pytest.mark.parametrize(
+ "to_replace,value,expected,check_types,check_categorical",
+ [
+ # one-to-one
+ (1, 2, [2, 2, 3], True, True),
+ (1, 4, [4, 2, 3], True, True),
+ (4, 1, [1, 2, 3], True, True),
+ (5, 6, [1, 2, 3], True, True),
+ # many-to-one
+ ([1], 2, [2, 2, 3], True, True),
+ ([1, 2], 3, [3, 3, 3], True, True),
+ ([1, 2], 4, [4, 4, 3], True, True),
+ ((1, 2, 4), 5, [5, 5, 3], True, True),
+ ((5, 6), 2, [1, 2, 3], True, True),
+ # many-to-many, handled outside of Categorical and results in separate dtype
+ ([1], [2], [2, 2, 3], False, False),
+ ([1, 4], [5, 2], [5, 2, 3], False, False),
+ # check_categorical sorts categories, which crashes on mixed dtypes
+ (3, "4", [1, 2, "4"], True, False),
+ ([1, 2, "3"], "5", ["5", "5", 3], True, False),
+ ],
+)
+def test_replace(to_replace, value, expected, check_types, check_categorical):
+ # GH 31720
+ s = pd.Series([1, 2, 3], dtype="category")
+ result = s.replace(to_replace, value)
+ expected = pd.Series(expected, dtype="category")
+ s.replace(to_replace, value, inplace=True)
+ tm.assert_series_equal(
+ expected,
+ result,
+ check_dtype=check_types,
+ check_categorical=check_categorical,
+ check_category_order=False,
+ )
+ tm.assert_series_equal(
+ expected,
+ s,
+ check_dtype=check_types,
+ check_categorical=check_categorical,
+ check_category_order=False,
+ )
| Backport PR #31734: BUG: list-like to_replace on Categorical.replace is ignored or crash | https://api.github.com/repos/pandas-dev/pandas/pulls/32062 | 2020-02-17T17:00:05Z | 2020-02-19T07:32:30Z | 2020-02-19T07:32:30Z | 2020-02-19T07:32:30Z |
Backport PR #32025 and #32031 silence numpy-dev failures | diff --git a/pandas/__init__.py b/pandas/__init__.py
index 491bcb21f245d..6eda468eed23a 100644
--- a/pandas/__init__.py
+++ b/pandas/__init__.py
@@ -25,6 +25,7 @@
_np_version_under1p16,
_np_version_under1p17,
_np_version_under1p18,
+ _is_numpy_dev,
)
try:
diff --git a/pandas/tests/api/test_api.py b/pandas/tests/api/test_api.py
index 406d5f055797d..5aab5b814bae7 100644
--- a/pandas/tests/api/test_api.py
+++ b/pandas/tests/api/test_api.py
@@ -198,6 +198,7 @@ class TestPDApi(Base):
"_np_version_under1p16",
"_np_version_under1p17",
"_np_version_under1p18",
+ "_is_numpy_dev",
"_testing",
"_tslib",
"_typing",
diff --git a/pandas/tests/frame/test_cumulative.py b/pandas/tests/frame/test_cumulative.py
index b545d6aa8afd3..486cbfb2761e0 100644
--- a/pandas/tests/frame/test_cumulative.py
+++ b/pandas/tests/frame/test_cumulative.py
@@ -7,8 +7,9 @@
"""
import numpy as np
+import pytest
-from pandas import DataFrame, Series
+from pandas import DataFrame, Series, _is_numpy_dev
import pandas._testing as tm
@@ -73,6 +74,11 @@ def test_cumprod(self, datetime_frame):
df.cumprod(0)
df.cumprod(1)
+ @pytest.mark.xfail(
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
+ )
def test_cummin(self, datetime_frame):
datetime_frame.loc[5:10, 0] = np.nan
datetime_frame.loc[10:15, 1] = np.nan
@@ -96,6 +102,11 @@ def test_cummin(self, datetime_frame):
cummin_xs = datetime_frame.cummin(axis=1)
assert np.shape(cummin_xs) == np.shape(datetime_frame)
+ @pytest.mark.xfail(
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
+ )
def test_cummax(self, datetime_frame):
datetime_frame.loc[5:10, 0] = np.nan
datetime_frame.loc[10:15, 1] = np.nan
diff --git a/pandas/tests/groupby/test_function.py b/pandas/tests/groupby/test_function.py
index 97cf1af1d2e9e..087b1286151d7 100644
--- a/pandas/tests/groupby/test_function.py
+++ b/pandas/tests/groupby/test_function.py
@@ -17,6 +17,7 @@
NaT,
Series,
Timestamp,
+ _is_numpy_dev,
date_range,
isna,
)
@@ -685,6 +686,11 @@ def test_numpy_compat(func):
getattr(g, func)(foo=1)
+@pytest.mark.xfail(
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
+)
def test_cummin_cummax():
# GH 15048
num_types = [np.int32, np.int64, np.float32, np.float64]
diff --git a/pandas/tests/scalar/timedelta/test_arithmetic.py b/pandas/tests/scalar/timedelta/test_arithmetic.py
index 6a9ef86c11292..555b47c8dc0fc 100644
--- a/pandas/tests/scalar/timedelta/test_arithmetic.py
+++ b/pandas/tests/scalar/timedelta/test_arithmetic.py
@@ -8,7 +8,7 @@
import pytest
import pandas as pd
-from pandas import NaT, Timedelta, Timestamp, offsets
+from pandas import NaT, Timedelta, Timestamp, _is_numpy_dev, offsets
import pandas._testing as tm
from pandas.core import ops
@@ -377,7 +377,21 @@ def test_td_div_numeric_scalar(self):
assert isinstance(result, Timedelta)
assert result == Timedelta(days=2)
- @pytest.mark.parametrize("nan", [np.nan, np.float64("NaN"), float("nan")])
+ @pytest.mark.parametrize(
+ "nan",
+ [
+ np.nan,
+ pytest.param(
+ np.float64("NaN"),
+ marks=pytest.mark.xfail(
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
+ ),
+ ),
+ float("nan"),
+ ],
+ )
def test_td_div_nan(self, nan):
# np.float64('NaN') has a 'dtype' attr, avoid treating as array
td = Timedelta(10, unit="d")
diff --git a/pandas/tests/series/test_cumulative.py b/pandas/tests/series/test_cumulative.py
index 885b5bf0476f2..0cb1c038478f5 100644
--- a/pandas/tests/series/test_cumulative.py
+++ b/pandas/tests/series/test_cumulative.py
@@ -11,6 +11,7 @@
import pytest
import pandas as pd
+from pandas import _is_numpy_dev
import pandas._testing as tm
@@ -37,6 +38,11 @@ def test_cumsum(self, datetime_series):
def test_cumprod(self, datetime_series):
_check_accum_op("cumprod", datetime_series)
+ @pytest.mark.xfail(
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
+ )
def test_cummin(self, datetime_series):
tm.assert_numpy_array_equal(
datetime_series.cummin().values,
@@ -49,6 +55,11 @@ def test_cummin(self, datetime_series):
tm.assert_series_equal(result, expected)
+ @pytest.mark.xfail(
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
+ )
def test_cummax(self, datetime_series):
tm.assert_numpy_array_equal(
datetime_series.cummax().values,
| https://api.github.com/repos/pandas-dev/pandas/pulls/32057 | 2020-02-17T13:20:18Z | 2020-02-17T22:57:40Z | 2020-02-17T22:57:40Z | 2020-02-18T10:54:15Z | |
REGR: read_pickle fallback to encoding=latin_1 upon a UnicodeDecodeError | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index c9031ac1ae9fe..57ed6adf667c8 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -19,6 +19,7 @@ Fixed regressions
- Fixed regression in :meth:`Series.align` when ``other`` is a DataFrame and ``method`` is not None (:issue:`31785`)
- Fixed regression in :meth:`pandas.core.groupby.RollingGroupby.apply` where the ``raw`` parameter was ignored (:issue:`31754`)
- Fixed regression in :meth:`rolling(..).corr() <pandas.core.window.Rolling.corr>` when using a time offset (:issue:`31789`)
+- Fixed regression where :func:`read_pickle` raised a ``UnicodeDecodeError`` when reading a py27 pickle with :class:`MultiIndex` column (:issue:`31988`).
- Fixed regression in :class:`DataFrame` arithmetic operations with mis-matched columns (:issue:`31623`)
-
diff --git a/pandas/io/pickle.py b/pandas/io/pickle.py
index e51f24b551f31..4e731b8ecca11 100644
--- a/pandas/io/pickle.py
+++ b/pandas/io/pickle.py
@@ -171,21 +171,22 @@ def read_pickle(
# 1) try standard library Pickle
# 2) try pickle_compat (older pandas version) to handle subclass changes
-
- excs_to_catch = (AttributeError, ImportError, ModuleNotFoundError)
+ # 3) try pickle_compat with latin-1 encoding upon a UnicodeDecodeError
try:
- with warnings.catch_warnings(record=True):
- # We want to silence any warnings about, e.g. moved modules.
- warnings.simplefilter("ignore", Warning)
- return pickle.load(f)
- except excs_to_catch:
- # e.g.
- # "No module named 'pandas.core.sparse.series'"
- # "Can't get attribute '__nat_unpickle' on <module 'pandas._libs.tslib"
- return pc.load(f, encoding=None)
+ excs_to_catch = (AttributeError, ImportError, ModuleNotFoundError)
+ try:
+ with warnings.catch_warnings(record=True):
+ # We want to silence any warnings about, e.g. moved modules.
+ warnings.simplefilter("ignore", Warning)
+ return pickle.load(f)
+ except excs_to_catch:
+ # e.g.
+ # "No module named 'pandas.core.sparse.series'"
+ # "Can't get attribute '__nat_unpickle' on <module 'pandas._libs.tslib"
+ return pc.load(f, encoding=None)
except UnicodeDecodeError:
- # e.g. can occur for files written in py27; see GH#28645
+ # e.g. can occur for files written in py27; see GH#28645 and GH#31988
return pc.load(f, encoding="latin-1")
finally:
f.close()
diff --git a/pandas/tests/io/data/pickle/test_mi_py27.pkl b/pandas/tests/io/data/pickle/test_mi_py27.pkl
new file mode 100644
index 0000000000000..89021dd828108
Binary files /dev/null and b/pandas/tests/io/data/pickle/test_mi_py27.pkl differ
diff --git a/pandas/tests/io/test_pickle.py b/pandas/tests/io/test_pickle.py
index 78b630bb5ada1..584a545769c4c 100644
--- a/pandas/tests/io/test_pickle.py
+++ b/pandas/tests/io/test_pickle.py
@@ -382,14 +382,23 @@ def test_read(self, protocol, get_random_path):
tm.assert_frame_equal(df, df2)
-def test_unicode_decode_error(datapath):
+@pytest.mark.parametrize(
+ ["pickle_file", "excols"],
+ [
+ ("test_py27.pkl", pd.Index(["a", "b", "c"])),
+ (
+ "test_mi_py27.pkl",
+ pd.MultiIndex.from_arrays([["a", "b", "c"], ["A", "B", "C"]]),
+ ),
+ ],
+)
+def test_unicode_decode_error(datapath, pickle_file, excols):
# pickle file written with py27, should be readable without raising
- # UnicodeDecodeError, see GH#28645
- path = datapath("io", "data", "pickle", "test_py27.pkl")
+ # UnicodeDecodeError, see GH#28645 and GH#31988
+ path = datapath("io", "data", "pickle", pickle_file)
df = pd.read_pickle(path)
# just test the columns are correct since the values are random
- excols = pd.Index(["a", "b", "c"])
tm.assert_index_equal(df.columns, excols)
| When a reading a pickle with MultiIndex columns generated in py27
`pickle_compat.load()` with `enconding=None` would throw an UnicodeDecodeError
when reading a pickle created in py27. Now, `read_pickle` catches that exception and
fallback to use `latin-1` explicitly.
- [x] closes #31988
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32055 | 2020-02-17T12:56:42Z | 2020-02-21T14:52:24Z | 2020-02-21T14:52:24Z | 2020-02-21T14:52:39Z |
[#16737] Index type for Series with empty data | diff --git a/doc/source/user_guide/missing_data.rst b/doc/source/user_guide/missing_data.rst
index 2e68a0598bb71..45e35b78eb390 100644
--- a/doc/source/user_guide/missing_data.rst
+++ b/doc/source/user_guide/missing_data.rst
@@ -190,7 +190,7 @@ The sum of an empty or all-NA Series or column of a DataFrame is 0.
pd.Series([np.nan]).sum()
- pd.Series([], dtype="float64").sum()
+ pd.Series([], dtype="float64", index=[]).sum()
The product of an empty or all-NA Series or column of a DataFrame is 1.
@@ -198,7 +198,7 @@ The product of an empty or all-NA Series or column of a DataFrame is 1.
pd.Series([np.nan]).prod()
- pd.Series([], dtype="float64").prod()
+ pd.Series([], dtype="float64", index=[]).prod()
NA values in GroupBy
diff --git a/doc/source/whatsnew/v1.1.0.rst b/doc/source/whatsnew/v1.1.0.rst
index 07849702c646d..3d733bb3352f2 100644
--- a/doc/source/whatsnew/v1.1.0.rst
+++ b/doc/source/whatsnew/v1.1.0.rst
@@ -406,6 +406,7 @@ Deprecations
arguments (:issue:`27573`).
- :func:`pandas.api.types.is_categorical` is deprecated and will be removed in a future version; use `:func:pandas.api.types.is_categorical_dtype` instead (:issue:`33385`)
+- ``Series([])`` will raise a `DeprecationWarning` regarding its index. The default index type will change from :class:`RangeIndex` to :class:`Index` in a future version, matching the behaviour of ``Series()`` (:issue:`16737`)
.. ---------------------------------------------------------------------------
diff --git a/pandas/core/algorithms.py b/pandas/core/algorithms.py
index e6967630b97ac..f551953fff862 100644
--- a/pandas/core/algorithms.py
+++ b/pandas/core/algorithms.py
@@ -53,7 +53,11 @@
)
from pandas.core.dtypes.missing import isna, na_value_for_dtype
-from pandas.core.construction import array, extract_array
+from pandas.core.construction import (
+ array,
+ create_series_with_explicit_index,
+ extract_array,
+)
from pandas.core.indexers import validate_indices
if TYPE_CHECKING:
@@ -835,7 +839,7 @@ def mode(values, dropna: bool = True) -> "Series":
warn(f"Unable to sort modes: {err}")
result = _reconstruct_data(result, original.dtype, original)
- return Series(result)
+ return create_series_with_explicit_index(result)
def rank(
diff --git a/pandas/core/apply.py b/pandas/core/apply.py
index a013434491589..ba27e11eea4f0 100644
--- a/pandas/core/apply.py
+++ b/pandas/core/apply.py
@@ -16,7 +16,10 @@
)
from pandas.core.dtypes.generic import ABCSeries
-from pandas.core.construction import create_series_with_explicit_dtype
+from pandas.core.construction import (
+ create_series_with_explicit_dtype,
+ create_series_with_explicit_index,
+)
if TYPE_CHECKING:
from pandas import DataFrame, Series, Index
@@ -202,7 +205,7 @@ def apply_empty_result(self):
if not should_reduce:
try:
- r = self.f(Series([], dtype=np.float64))
+ r = self.f(create_series_with_explicit_index([], dtype=np.float64))
except Exception:
pass
else:
@@ -210,7 +213,7 @@ def apply_empty_result(self):
if should_reduce:
if len(self.agg_axis):
- r = self.f(Series([], dtype=np.float64))
+ r = self.f(create_series_with_explicit_index([], dtype=np.float64))
else:
r = np.nan
diff --git a/pandas/core/construction.py b/pandas/core/construction.py
index 2d60ad9ba50bf..fbc02f9e76bc9 100644
--- a/pandas/core/construction.py
+++ b/pandas/core/construction.py
@@ -621,10 +621,63 @@ def create_series_with_explicit_dtype(
-------
Series
"""
- from pandas.core.series import Series
+ from pandas import RangeIndex
if is_empty_data(data) and dtype is None:
dtype = dtype_if_empty
+
+ return create_series_with_explicit_index(
+ data=data,
+ index=index,
+ dtype=dtype,
+ name=name,
+ copy=copy,
+ fastpath=fastpath,
+ index_if_empty=RangeIndex(0), # non-breaking yet
+ )
+
+
+def create_series_with_explicit_index(
+ data: Any = None,
+ index: Optional[Union[ArrayLike, "Index"]] = None,
+ dtype: Optional[Dtype] = None,
+ name: Optional[str] = None,
+ copy: bool = False,
+ fastpath: bool = False,
+ index_if_empty: Optional["Index"] = None,
+) -> "Series":
+ """
+ Helper to pass an explicit index type when instantiating an Series where
+ data is list-like and empty.
+
+ This silences a DeprecationWarning described in GitHub-16737.
+
+ Parameters
+ ----------
+ data : Mirrored from Series.__init__
+ index : Mirrored from Series.__init__
+ dtype : Mirrored from Series.__init__
+ name : Mirrored from Series.__init__
+ copy : Mirrored from Series.__init__
+ fastpath : Mirrored from Series.__init__
+ index_if_empty : instance of (Index, RangeIndex)
+ This index type will be passed explicitly when Series is initialised
+ with `data` being list-like and empty.
+
+ Returns
+ -------
+ Series
+ """
+ from pandas import Index, Series # noqa: F811
+
+ # to avoid circular imports
+ if index_if_empty is None:
+ index_if_empty = Index([])
+
+ # dict's are handled separately in Series.__init__
+ is_relevant_type = is_list_like(data) and not isinstance(data, dict)
+ if index is None and is_relevant_type and len(data) == 0:
+ index = index_if_empty
return Series(
data=data, index=index, dtype=dtype, name=name, copy=copy, fastpath=fastpath
)
diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py
index 5cad76fd18c58..7ef479fd7ccbc 100644
--- a/pandas/core/indexes/base.py
+++ b/pandas/core/indexes/base.py
@@ -71,6 +71,7 @@
from pandas.core.arrays.datetimes import tz_to_dtype, validate_tz_from_dtype
from pandas.core.base import IndexOpsMixin, PandasObject
import pandas.core.common as com
+from pandas.core.construction import create_series_with_explicit_index
from pandas.core.indexers import deprecate_ndim_indexing
from pandas.core.indexes.frozen import FrozenList
import pandas.core.missing as missing
@@ -142,9 +143,7 @@ def index_arithmetic_method(self, other):
if isinstance(other, (ABCSeries, ABCDataFrame, ABCTimedeltaIndex)):
return NotImplemented
- from pandas import Series
-
- result = op(Series(self), other)
+ result = op(create_series_with_explicit_index(self), other)
if isinstance(result, tuple):
return (Index(result[0]), Index(result[1]))
return Index(result)
diff --git a/pandas/core/series.py b/pandas/core/series.py
index 9ef865a964123..1dbd2eba8179e 100644
--- a/pandas/core/series.py
+++ b/pandas/core/series.py
@@ -308,7 +308,18 @@ def __init__(
if index is None:
if not is_list_like(data):
data = [data]
- index = ibase.default_index(len(data))
+
+ n = len(data)
+ if n == 0:
+ # gh-16737
+ warnings.warn(
+ "The default index type for empty data will be 'Index' "
+ "instead of 'RangeIndex' in a future version. "
+ "Specify an index explicitly to silence this warning.",
+ DeprecationWarning,
+ stacklevel=2,
+ )
+ index = ibase.default_index(n)
elif is_list_like(data):
# a scalar numpy array is list-like but doesn't
diff --git a/pandas/core/strings.py b/pandas/core/strings.py
index 76b851d8ac923..1f0681e0f1190 100644
--- a/pandas/core/strings.py
+++ b/pandas/core/strings.py
@@ -36,7 +36,7 @@
from pandas.core.algorithms import take_1d
from pandas.core.base import NoNewAttributesMixin
-from pandas.core.construction import extract_array
+from pandas.core.construction import create_series_with_explicit_index, extract_array
if TYPE_CHECKING:
from pandas.arrays import StringArray
@@ -2180,7 +2180,7 @@ def _wrap_result(
returns_string=True,
):
- from pandas import Index, Series, MultiIndex
+ from pandas import Index, MultiIndex
# for category, we do the stuff on the categories, so blow it up
# to the full series again
@@ -2190,7 +2190,9 @@ def _wrap_result(
if use_codes and self._is_categorical:
# if self._orig is a CategoricalIndex, there is no .cat-accessor
result = take_1d(
- result, Series(self._orig, copy=False).cat.codes, fill_value=fill_value
+ result,
+ create_series_with_explicit_index(self._orig, copy=False).cat.codes,
+ fill_value=fill_value,
)
if not hasattr(result, "ndim") or not hasattr(result, "dtype"):
diff --git a/pandas/core/tools/datetimes.py b/pandas/core/tools/datetimes.py
index 207c5cc98449a..25e5de2d1b1c6 100644
--- a/pandas/core/tools/datetimes.py
+++ b/pandas/core/tools/datetimes.py
@@ -41,6 +41,7 @@
from pandas.core import algorithms
from pandas.core.algorithms import unique
from pandas.core.arrays.datetimes import tz_to_dtype
+from pandas.core.construction import create_series_with_explicit_index
# ---------------------------------------------------------------------
# types used in annotations
@@ -764,9 +765,10 @@ def to_datetime(
if errors == "raise":
raise
# ... otherwise, continue without the cache.
- from pandas import Series
- cache_array = Series([], dtype=object) # just an empty array
+ cache_array = create_series_with_explicit_index(
+ [], dtype=object
+ ) # just an empty array
if not cache_array.empty:
result = _convert_and_box_cache(arg, cache_array)
else:
diff --git a/pandas/io/parsers.py b/pandas/io/parsers.py
index 2df81ba0aa51a..f685b01179282 100644
--- a/pandas/io/parsers.py
+++ b/pandas/io/parsers.py
@@ -53,6 +53,7 @@
from pandas.core import algorithms
from pandas.core.arrays import Categorical
+from pandas.core.construction import create_series_with_explicit_index
from pandas.core.frame import DataFrame
from pandas.core.indexes.api import (
Index,
@@ -60,7 +61,6 @@
RangeIndex,
ensure_index_from_sequences,
)
-from pandas.core.series import Series
from pandas.core.tools import datetimes as tools
from pandas.io.common import (
@@ -3494,14 +3494,20 @@ def _get_empty_meta(columns, index_col, index_names, dtype=None):
if (index_col is None or index_col is False) or index_names is None:
index = Index([])
else:
- data = [Series([], dtype=dtype[name]) for name in index_names]
+ data = [
+ create_series_with_explicit_index([], dtype=dtype[name])
+ for name in index_names
+ ]
index = ensure_index_from_sequences(data, names=index_names)
index_col.sort()
for i, n in enumerate(index_col):
columns.pop(n - i)
- col_dict = {col_name: Series([], dtype=dtype[col_name]) for col_name in columns}
+ col_dict = {
+ col_name: create_series_with_explicit_index([], dtype=dtype[col_name])
+ for col_name in columns
+ }
return index, columns, col_dict
diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py
index 311d8d0d55341..7a16cc8d32e3e 100644
--- a/pandas/io/pytables.py
+++ b/pandas/io/pytables.py
@@ -51,6 +51,7 @@
from pandas.core.arrays import Categorical, DatetimeArray, PeriodArray
import pandas.core.common as com
from pandas.core.computation.pytables import PyTablesExpr, maybe_expression
+from pandas.core.construction import create_series_with_explicit_index
from pandas.core.indexes.api import ensure_index
from pandas.io.common import stringify_path
@@ -3313,7 +3314,7 @@ def write_metadata(self, key: str, values: np.ndarray):
key : str
values : ndarray
"""
- values = Series(values)
+ values = create_series_with_explicit_index(values)
self.parent.put(
self._get_metadata_path(key),
values,
@@ -4051,7 +4052,9 @@ def read_column(
encoding=self.encoding,
errors=self.errors,
)
- return Series(_set_tz(col_values[1], a.tz), name=column)
+ return create_series_with_explicit_index(
+ _set_tz(col_values[1], a.tz), name=column
+ )
raise KeyError(f"column [{column}] not found in the table")
diff --git a/pandas/tests/arrays/boolean/test_reduction.py b/pandas/tests/arrays/boolean/test_reduction.py
index a5c18a25f8e16..2c4cbaa0d9536 100644
--- a/pandas/tests/arrays/boolean/test_reduction.py
+++ b/pandas/tests/arrays/boolean/test_reduction.py
@@ -2,6 +2,7 @@
import pytest
import pandas as pd
+from pandas.core.construction import create_series_with_explicit_index
@pytest.fixture
@@ -31,7 +32,7 @@ def test_any_all(values, exp_any, exp_all, exp_any_noskip, exp_all_noskip):
exp_any_noskip = pd.NA if exp_any_noskip is pd.NA else np.bool_(exp_any_noskip)
exp_all_noskip = pd.NA if exp_all_noskip is pd.NA else np.bool_(exp_all_noskip)
- for con in [pd.array, pd.Series]:
+ for con in [pd.array, create_series_with_explicit_index]:
a = con(values, dtype="boolean")
assert a.any() is exp_any
assert a.all() is exp_all
diff --git a/pandas/tests/arrays/integer/test_function.py b/pandas/tests/arrays/integer/test_function.py
index bdf902d1aca62..937684465e47c 100644
--- a/pandas/tests/arrays/integer/test_function.py
+++ b/pandas/tests/arrays/integer/test_function.py
@@ -4,6 +4,7 @@
import pandas as pd
import pandas._testing as tm
from pandas.core.arrays import integer_array
+from pandas.core.construction import create_series_with_explicit_index
@pytest.mark.parametrize("ufunc", [np.abs, np.sign])
@@ -105,7 +106,7 @@ def test_value_counts_na():
def test_value_counts_empty():
# https://github.com/pandas-dev/pandas/issues/33317
- s = pd.Series([], dtype="Int64")
+ s = create_series_with_explicit_index([], dtype="Int64")
result = s.value_counts()
# TODO: The dtype of the index seems wrong (it's int64 for non-empty)
idx = pd.Index([], dtype="object")
diff --git a/pandas/tests/base/test_unique.py b/pandas/tests/base/test_unique.py
index c6225c9b5ca64..7df2f8e8df7fe 100644
--- a/pandas/tests/base/test_unique.py
+++ b/pandas/tests/base/test_unique.py
@@ -7,6 +7,7 @@
import pandas as pd
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.tests.base.common import allow_na_ops
@@ -94,7 +95,9 @@ def test_nunique_null(null_obj, index_or_series_obj):
else:
values[0:2] = null_obj
- klass = type(obj)
+ klass = (
+ create_series_with_explicit_index if isinstance(obj, pd.Series) else type(obj)
+ )
repeated_values = np.repeat(values, range(1, len(values) + 1))
obj = klass(repeated_values, dtype=obj.dtype)
diff --git a/pandas/tests/base/test_value_counts.py b/pandas/tests/base/test_value_counts.py
index d45feaff68dde..5ee30d367dfa8 100644
--- a/pandas/tests/base/test_value_counts.py
+++ b/pandas/tests/base/test_value_counts.py
@@ -21,6 +21,7 @@
TimedeltaIndex,
)
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.tests.base.common import allow_na_ops
@@ -180,7 +181,7 @@ def test_value_counts_bins(index_or_series):
assert s.nunique() == 3
s = klass({}) if klass is dict else klass({}, dtype=object)
- expected = Series([], dtype=np.int64)
+ expected = create_series_with_explicit_index([], dtype=np.int64)
tm.assert_series_equal(s.value_counts(), expected, check_index_type=False)
# returned dtype differs depending on original
if isinstance(s, Index):
diff --git a/pandas/tests/dtypes/test_common.py b/pandas/tests/dtypes/test_common.py
index b9c8f3a8dd494..5d8215afb7f7e 100644
--- a/pandas/tests/dtypes/test_common.py
+++ b/pandas/tests/dtypes/test_common.py
@@ -20,6 +20,7 @@
import pandas as pd
import pandas._testing as tm
from pandas.arrays import SparseArray
+from pandas.core.construction import create_series_with_explicit_index
# EA & Actual Dtypes
@@ -236,7 +237,9 @@ def test_is_timedelta64_dtype():
assert not com.is_timedelta64_dtype("NO DATE")
assert com.is_timedelta64_dtype(np.timedelta64)
- assert com.is_timedelta64_dtype(pd.Series([], dtype="timedelta64[ns]"))
+ assert com.is_timedelta64_dtype(
+ create_series_with_explicit_index([], dtype="timedelta64[ns]")
+ )
assert com.is_timedelta64_dtype(pd.to_timedelta(["0 days", "1 days"]))
@@ -499,7 +502,9 @@ def test_needs_i8_conversion():
assert not com.needs_i8_conversion(np.array(["a", "b"]))
assert com.needs_i8_conversion(np.datetime64)
- assert com.needs_i8_conversion(pd.Series([], dtype="timedelta64[ns]"))
+ assert com.needs_i8_conversion(
+ create_series_with_explicit_index([], dtype="timedelta64[ns]")
+ )
assert com.needs_i8_conversion(pd.DatetimeIndex(["2000"], tz="US/Eastern"))
@@ -567,7 +572,7 @@ def test_is_extension_type(check_scipy):
assert com.is_extension_type(pd.DatetimeIndex(["2000"], tz="US/Eastern"))
dtype = DatetimeTZDtype("ns", tz="US/Eastern")
- s = pd.Series([], dtype=dtype)
+ s = create_series_with_explicit_index([], dtype=dtype)
assert com.is_extension_type(s)
if check_scipy:
@@ -596,7 +601,7 @@ def test_is_extension_array_dtype(check_scipy):
assert com.is_extension_array_dtype(pd.DatetimeIndex(["2000"], tz="US/Eastern"))
dtype = DatetimeTZDtype("ns", tz="US/Eastern")
- s = pd.Series([], dtype=dtype)
+ s = create_series_with_explicit_index([], dtype=dtype)
assert com.is_extension_array_dtype(s)
if check_scipy:
diff --git a/pandas/tests/dtypes/test_concat.py b/pandas/tests/dtypes/test_concat.py
index 1fbbd3356ae13..584d1b3bb6d59 100644
--- a/pandas/tests/dtypes/test_concat.py
+++ b/pandas/tests/dtypes/test_concat.py
@@ -5,6 +5,7 @@
import pandas as pd
from pandas import DatetimeIndex, Period, PeriodIndex, Series, TimedeltaIndex
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
@pytest.mark.parametrize(
@@ -83,7 +84,7 @@ def test_get_dtype_kinds_period(to_concat, expected):
def test_concat_mismatched_categoricals_with_empty():
# concat_compat behavior on series._values should match pd.concat on series
ser1 = Series(["a", "b", "c"], dtype="category")
- ser2 = Series([], dtype="category")
+ ser2 = create_series_with_explicit_index([], dtype="category")
result = _concat.concat_compat([ser1._values, ser2._values])
expected = pd.concat([ser1, ser2])._values
diff --git a/pandas/tests/dtypes/test_inference.py b/pandas/tests/dtypes/test_inference.py
index 8c0580b7cf047..505aeda4acbcf 100644
--- a/pandas/tests/dtypes/test_inference.py
+++ b/pandas/tests/dtypes/test_inference.py
@@ -52,6 +52,10 @@
)
import pandas._testing as tm
from pandas.core.arrays import IntegerArray
+from pandas.core.construction import (
+ create_series_with_explicit_dtype,
+ create_series_with_explicit_index,
+)
@pytest.fixture(params=[True, False], ids=str)
@@ -77,9 +81,9 @@ def coerce(request):
((x for x in [1, 2]), True, "generator"),
((_ for _ in []), True, "generator-empty"),
(Series([1]), True, "Series"),
- (Series([], dtype=object), True, "Series-empty"),
+ (create_series_with_explicit_dtype([], dtype=object), True, "Series-empty"),
(Series(["a"]).str, True, "StringMethods"),
- (Series([], dtype="O").str, True, "StringMethods-empty"),
+ (create_series_with_explicit_dtype([], dtype="O").str, True, "StringMethods-empty"),
(Index([1]), True, "Index"),
(Index([]), True, "Index-empty"),
(DataFrame([[1]]), True, "DataFrame"),
@@ -138,7 +142,7 @@ def __getitem__(self):
def test_is_array_like():
- assert inference.is_array_like(Series([], dtype=object))
+ assert inference.is_array_like(create_series_with_explicit_index([], dtype=object))
assert inference.is_array_like(Series([1, 2]))
assert inference.is_array_like(np.array(["a", "b"]))
assert inference.is_array_like(Index(["2016-01-01"]))
@@ -164,7 +168,7 @@ class DtypeList(list):
{"a": 1},
{1, "a"},
Series([1]),
- Series([], dtype=object),
+ create_series_with_explicit_index([], dtype=object),
Series(["a"]).str,
(x for x in range(5)),
],
diff --git a/pandas/tests/extension/base/missing.py b/pandas/tests/extension/base/missing.py
index 2393d2edcd2c6..1049edac328e7 100644
--- a/pandas/tests/extension/base/missing.py
+++ b/pandas/tests/extension/base/missing.py
@@ -19,7 +19,7 @@ def test_isna(self, data_missing):
# GH 21189
result = pd.Series(data_missing).drop([0, 1]).isna()
- expected = pd.Series([], dtype=bool)
+ expected = pd.Series([], dtype=bool, index=pd.RangeIndex(0))
self.assert_series_equal(result, expected)
def test_dropna_array(self, data_missing):
diff --git a/pandas/tests/extension/test_common.py b/pandas/tests/extension/test_common.py
index e43650c291200..bdb49d2f86a0c 100644
--- a/pandas/tests/extension/test_common.py
+++ b/pandas/tests/extension/test_common.py
@@ -7,6 +7,7 @@
import pandas as pd
import pandas._testing as tm
from pandas.core.arrays import ExtensionArray
+from pandas.core.construction import create_series_with_explicit_index
class DummyDtype(dtypes.ExtensionDtype):
@@ -40,7 +41,7 @@ class TestExtensionArrayDtype:
[
pd.Categorical([]),
pd.Categorical([]).dtype,
- pd.Series(pd.Categorical([])),
+ create_series_with_explicit_index(pd.Categorical([])),
DummyDtype(),
DummyArray(np.array([1, 2])),
],
@@ -48,7 +49,9 @@ class TestExtensionArrayDtype:
def test_is_extension_array_dtype(self, values):
assert is_extension_array_dtype(values)
- @pytest.mark.parametrize("values", [np.array([]), pd.Series(np.array([]))])
+ @pytest.mark.parametrize(
+ "values", [np.array([]), create_series_with_explicit_index(np.array([]))]
+ )
def test_is_not_extension_array_dtype(self, values):
assert not is_extension_array_dtype(values)
diff --git a/pandas/tests/extension/test_sparse.py b/pandas/tests/extension/test_sparse.py
index 694bbee59606f..a71dec28b1e29 100644
--- a/pandas/tests/extension/test_sparse.py
+++ b/pandas/tests/extension/test_sparse.py
@@ -187,7 +187,7 @@ def test_isna(self, data_missing):
# GH 21189
result = pd.Series(data_missing).drop([0, 1]).isna()
- expected = pd.Series([], dtype=expected_dtype)
+ expected = pd.Series([], dtype=expected_dtype, index=pd.RangeIndex(0))
self.assert_series_equal(result, expected)
def test_fillna_limit_pad(self, data_missing):
diff --git a/pandas/tests/frame/methods/test_replace.py b/pandas/tests/frame/methods/test_replace.py
index a9fb686d5bc50..140b7aafb64e4 100644
--- a/pandas/tests/frame/methods/test_replace.py
+++ b/pandas/tests/frame/methods/test_replace.py
@@ -9,6 +9,7 @@
import pandas as pd
from pandas import DataFrame, Index, Series, Timestamp, date_range
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
@pytest.fixture
@@ -1251,7 +1252,9 @@ def test_replace_with_empty_dictlike(self, mix_abc):
# GH 15289
df = DataFrame(mix_abc)
tm.assert_frame_equal(df, df.replace({}))
- tm.assert_frame_equal(df, df.replace(Series([], dtype=object)))
+ tm.assert_frame_equal(
+ df, df.replace(create_series_with_explicit_index([], dtype=object))
+ )
tm.assert_frame_equal(df, df.replace({"b": {}}))
tm.assert_frame_equal(df, df.replace(Series({"b": {}})))
diff --git a/pandas/tests/frame/methods/test_value_counts.py b/pandas/tests/frame/methods/test_value_counts.py
index c409b0bbe6fa9..4b2e8148c2ddb 100644
--- a/pandas/tests/frame/methods/test_value_counts.py
+++ b/pandas/tests/frame/methods/test_value_counts.py
@@ -88,7 +88,7 @@ def test_data_frame_value_counts_empty():
df_no_cols = pd.DataFrame()
result = df_no_cols.value_counts()
- expected = pd.Series([], dtype=np.int64)
+ expected = pd.Series([], dtype=np.int64, index=pd.RangeIndex(0))
tm.assert_series_equal(result, expected)
@@ -97,6 +97,6 @@ def test_data_frame_value_counts_empty_normalize():
df_no_cols = pd.DataFrame()
result = df_no_cols.value_counts(normalize=True)
- expected = pd.Series([], dtype=np.float64)
+ expected = pd.Series([], dtype=np.float64, index=pd.RangeIndex(0))
tm.assert_series_equal(result, expected)
diff --git a/pandas/tests/frame/test_arithmetic.py b/pandas/tests/frame/test_arithmetic.py
index d929d3e030508..a93796d9d974b 100644
--- a/pandas/tests/frame/test_arithmetic.py
+++ b/pandas/tests/frame/test_arithmetic.py
@@ -11,6 +11,7 @@
from pandas import DataFrame, MultiIndex, Series
import pandas._testing as tm
import pandas.core.common as com
+from pandas.core.construction import create_series_with_explicit_index
from pandas.tests.frame.common import _check_mixed_float, _check_mixed_int
# -------------------------------------------------------------------
@@ -522,7 +523,7 @@ def test_arith_flex_series(self, simple_frame):
def test_arith_flex_zero_len_raises(self):
# GH 19522 passing fill_value to frame flex arith methods should
# raise even in the zero-length special cases
- ser_len0 = pd.Series([], dtype=object)
+ ser_len0 = create_series_with_explicit_index([], dtype=object)
df_len0 = pd.DataFrame(columns=["A", "B"])
df = pd.DataFrame([[1, 2], [3, 4]], columns=["A", "B"])
diff --git a/pandas/tests/frame/test_constructors.py b/pandas/tests/frame/test_constructors.py
index baac87755c6d2..fcfd32500d875 100644
--- a/pandas/tests/frame/test_constructors.py
+++ b/pandas/tests/frame/test_constructors.py
@@ -30,7 +30,10 @@
)
import pandas._testing as tm
from pandas.arrays import IntervalArray, PeriodArray, SparseArray
-from pandas.core.construction import create_series_with_explicit_dtype
+from pandas.core.construction import (
+ create_series_with_explicit_dtype,
+ create_series_with_explicit_index,
+)
MIXED_FLOAT_DTYPES = ["float16", "float32", "float64"]
MIXED_INT_DTYPES = [
@@ -1542,7 +1545,7 @@ def test_constructor_Series_named(self):
DataFrame(s, columns=[1, 2])
# #2234
- a = Series([], name="x", dtype=object)
+ a = create_series_with_explicit_index([], name="x", dtype=object)
df = DataFrame(a)
assert df.columns[0] == "x"
diff --git a/pandas/tests/generic/test_generic.py b/pandas/tests/generic/test_generic.py
index 05588ead54be4..1b7cd347f7b31 100644
--- a/pandas/tests/generic/test_generic.py
+++ b/pandas/tests/generic/test_generic.py
@@ -11,6 +11,7 @@
from pandas import DataFrame, MultiIndex, Series, date_range
import pandas._testing as tm
import pandas.core.common as com
+from pandas.core.construction import create_series_with_explicit_index
# ----------------------------------------------------------------------
# Generic types test cases
@@ -54,7 +55,9 @@ def _construct(self, shape, value=None, dtype=None, **kwargs):
arr = np.repeat(arr, new_shape).reshape(shape)
else:
arr = np.random.randn(*shape)
- return self._typ(arr, dtype=dtype, **kwargs)
+
+ typ = create_series_with_explicit_index if self._typ is Series else self._typ
+ return typ(arr, dtype=dtype, **kwargs)
def _compare(self, result, expected):
self._comparator(result, expected)
@@ -680,7 +683,9 @@ def test_squeeze(self):
tm.assert_series_equal(df.squeeze(), df["A"])
# don't fail with 0 length dimensions GH11229 & GH8999
- empty_series = Series([], name="five", dtype=np.float64)
+ empty_series = create_series_with_explicit_index(
+ [], name="five", dtype=np.float64
+ )
empty_frame = DataFrame([empty_series])
tm.assert_series_equal(empty_series, empty_series.squeeze())
tm.assert_series_equal(empty_series, empty_frame.squeeze())
diff --git a/pandas/tests/generic/test_to_xarray.py b/pandas/tests/generic/test_to_xarray.py
index 2fde96a1c8f89..19b2ef6343811 100644
--- a/pandas/tests/generic/test_to_xarray.py
+++ b/pandas/tests/generic/test_to_xarray.py
@@ -6,6 +6,7 @@
import pandas as pd
from pandas import DataFrame, Series
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
class TestDataFrameToXArray:
@@ -115,7 +116,7 @@ def test_to_xarray_index_types(self, indices):
def test_to_xarray(self):
from xarray import DataArray
- s = Series([], dtype=object)
+ s = create_series_with_explicit_index([], dtype=object)
s.index.name = "foo"
result = s.to_xarray()
assert len(result) == 0
diff --git a/pandas/tests/groupby/test_categorical.py b/pandas/tests/groupby/test_categorical.py
index 8e4a7141875bb..de96056b5bd93 100644
--- a/pandas/tests/groupby/test_categorical.py
+++ b/pandas/tests/groupby/test_categorical.py
@@ -16,6 +16,7 @@
qcut,
)
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
def cartesian_product_for_groupers(result, args, names):
@@ -792,7 +793,7 @@ def test_groupby_empty_with_category():
result = df.groupby("A").first()["B"]
expected = pd.Series(
pd.Categorical([], categories=["test", "train"]),
- index=pd.Series([], dtype="object", name="A"),
+ index=create_series_with_explicit_index([], dtype="object", name="A"),
name="B",
)
tm.assert_series_equal(result, expected)
diff --git a/pandas/tests/groupby/test_grouping.py b/pandas/tests/groupby/test_grouping.py
index efcd22f9c0c82..895a21ccff18e 100644
--- a/pandas/tests/groupby/test_grouping.py
+++ b/pandas/tests/groupby/test_grouping.py
@@ -14,6 +14,7 @@
date_range,
)
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.core.groupby.grouper import Grouping
# selection
@@ -637,11 +638,12 @@ def test_evaluate_with_empty_groups(self, func, expected):
def test_groupby_empty(self):
# https://github.com/pandas-dev/pandas/issues/27190
- s = pd.Series([], name="name", dtype="float64")
+ s = create_series_with_explicit_index([], name="name", dtype="float64")
gr = s.groupby([])
result = gr.mean()
- tm.assert_series_equal(result, s)
+ expected = pd.Series([], name="name", dtype="float64", index=pd.RangeIndex(0))
+ tm.assert_series_equal(result, expected)
# check group properties
assert len(gr.grouper.groupings) == 1
diff --git a/pandas/tests/indexes/common.py b/pandas/tests/indexes/common.py
index fd23e95106ab0..126339c260ea5 100644
--- a/pandas/tests/indexes/common.py
+++ b/pandas/tests/indexes/common.py
@@ -25,6 +25,7 @@
isna,
)
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.core.indexes.base import InvalidIndexError
from pandas.core.indexes.datetimelike import DatetimeIndexOpsMixin
@@ -429,7 +430,10 @@ def test_intersection_base(self, indices):
return
# GH 10149
- cases = [klass(second.values) for klass in [np.array, Series, list]]
+ cases = [
+ klass(second.values)
+ for klass in [np.array, create_series_with_explicit_index, list]
+ ]
for case in cases:
result = first.intersection(case)
assert tm.equalContents(result, second)
@@ -452,7 +456,10 @@ def test_union_base(self, indices):
return
# GH 10149
- cases = [klass(second.values) for klass in [np.array, Series, list]]
+ cases = [
+ klass(second.values)
+ for klass in [np.array, create_series_with_explicit_index, list]
+ ]
for case in cases:
if not isinstance(indices, CategoricalIndex):
result = first.union(case)
@@ -474,7 +481,10 @@ def test_difference_base(self, sort, indices):
assert tm.equalContents(result, answer)
# GH 10149
- cases = [klass(second.values) for klass in [np.array, Series, list]]
+ cases = [
+ klass(second.values)
+ for klass in [np.array, create_series_with_explicit_index, list]
+ ]
for case in cases:
if isinstance(indices, (DatetimeIndex, TimedeltaIndex)):
assert type(result) == type(answer)
@@ -564,7 +574,7 @@ def test_equals(self, indices):
if indices.nlevels == 1:
# do not test MultiIndex
- assert not indices.equals(Series(indices))
+ assert not indices.equals(create_series_with_explicit_index(indices))
def test_equals_op(self):
# GH9947, GH10637
diff --git a/pandas/tests/indexes/datetimes/test_formats.py b/pandas/tests/indexes/datetimes/test_formats.py
index f34019e06fd5f..424c80a409ffd 100644
--- a/pandas/tests/indexes/datetimes/test_formats.py
+++ b/pandas/tests/indexes/datetimes/test_formats.py
@@ -6,8 +6,9 @@
import pytz
import pandas as pd
-from pandas import DatetimeIndex, Series
+from pandas import DatetimeIndex
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
def test_to_native_types():
@@ -168,7 +169,7 @@ def test_dti_representation_to_series(self):
[idx1, idx2, idx3, idx4, idx5, idx6, idx7],
[exp1, exp2, exp3, exp4, exp5, exp6, exp7],
):
- result = repr(Series(idx))
+ result = repr(create_series_with_explicit_index(idx))
assert result == expected
def test_dti_summary(self):
diff --git a/pandas/tests/indexes/period/test_formats.py b/pandas/tests/indexes/period/test_formats.py
index 5db373a9f07ae..bdfdb6928449e 100644
--- a/pandas/tests/indexes/period/test_formats.py
+++ b/pandas/tests/indexes/period/test_formats.py
@@ -4,6 +4,7 @@
import pandas as pd
from pandas import PeriodIndex
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
def test_to_native_types():
@@ -160,7 +161,7 @@ def test_representation_to_series(self):
[idx1, idx2, idx3, idx4, idx5, idx6, idx7, idx8, idx9],
[exp1, exp2, exp3, exp4, exp5, exp6, exp7, exp8, exp9],
):
- result = repr(pd.Series(idx))
+ result = repr(create_series_with_explicit_index(idx))
assert result == expected
def test_summary(self):
diff --git a/pandas/tests/indexes/period/test_period.py b/pandas/tests/indexes/period/test_period.py
index 0ce10fb8779a1..0d9c0b1d899f3 100644
--- a/pandas/tests/indexes/period/test_period.py
+++ b/pandas/tests/indexes/period/test_period.py
@@ -18,6 +18,7 @@
period_range,
)
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from ..datetimelike import DatetimeLike
@@ -262,7 +263,7 @@ def _check_all_fields(self, periodindex):
]
periods = list(periodindex)
- s = pd.Series(periodindex)
+ s = create_series_with_explicit_index(periodindex)
for field in fields:
field_idx = getattr(periodindex, field)
diff --git a/pandas/tests/indexes/timedeltas/test_formats.py b/pandas/tests/indexes/timedeltas/test_formats.py
index 1dfc5b5305008..6076fa67361ed 100644
--- a/pandas/tests/indexes/timedeltas/test_formats.py
+++ b/pandas/tests/indexes/timedeltas/test_formats.py
@@ -2,6 +2,7 @@
import pandas as pd
from pandas import TimedeltaIndex
+from pandas.core.construction import create_series_with_explicit_index
class TestTimedeltaIndexRendering:
@@ -62,7 +63,7 @@ def test_representation_to_series(self):
for idx, expected in zip(
[idx1, idx2, idx3, idx4, idx5], [exp1, exp2, exp3, exp4, exp5]
):
- result = repr(pd.Series(idx))
+ result = repr(create_series_with_explicit_index(idx))
assert result == expected
def test_summary(self):
diff --git a/pandas/tests/indexing/multiindex/test_loc.py b/pandas/tests/indexing/multiindex/test_loc.py
index b7802d9b8fe0c..cd59b3b087299 100644
--- a/pandas/tests/indexing/multiindex/test_loc.py
+++ b/pandas/tests/indexing/multiindex/test_loc.py
@@ -4,6 +4,7 @@
import pandas as pd
from pandas import DataFrame, Index, MultiIndex, Series
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.core.indexing import IndexingError
@@ -46,7 +47,7 @@ def test_loc_getitem_series(self):
result = x.loc[y1]
tm.assert_series_equal(result, expected)
- empty = Series(data=[], dtype=np.float64)
+ empty = create_series_with_explicit_index(data=[], dtype=np.float64)
expected = Series(
[],
index=MultiIndex(levels=index.levels, codes=[[], []], dtype=np.float64),
diff --git a/pandas/tests/indexing/test_partial.py b/pandas/tests/indexing/test_partial.py
index 2e691c6fd76d8..9d6ab4314c867 100644
--- a/pandas/tests/indexing/test_partial.py
+++ b/pandas/tests/indexing/test_partial.py
@@ -10,6 +10,7 @@
import pandas as pd
from pandas import DataFrame, Index, Series, date_range
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
class TestPartialSetting:
@@ -401,14 +402,14 @@ def test_partial_set_empty_frame(self):
def f():
df = DataFrame(index=Index([], dtype="object"))
- df["foo"] = Series([], dtype="object")
+ df["foo"] = create_series_with_explicit_index([], dtype="object")
return df
tm.assert_frame_equal(f(), expected)
def f():
df = DataFrame()
- df["foo"] = Series(df.index)
+ df["foo"] = create_series_with_explicit_index(df.index)
return df
tm.assert_frame_equal(f(), expected)
@@ -432,7 +433,9 @@ def f():
def f():
df = DataFrame(index=Index([], dtype="int64"))
- df["foo"] = Series(np.arange(len(df)), dtype="float64")
+ df["foo"] = create_series_with_explicit_index(
+ np.arange(len(df)), dtype="float64"
+ )
return df
tm.assert_frame_equal(f(), expected)
diff --git a/pandas/tests/io/parser/test_dtypes.py b/pandas/tests/io/parser/test_dtypes.py
index e68dcb3aa577e..12f03c3704c6c 100644
--- a/pandas/tests/io/parser/test_dtypes.py
+++ b/pandas/tests/io/parser/test_dtypes.py
@@ -13,8 +13,9 @@
from pandas.core.dtypes.dtypes import CategoricalDtype
import pandas as pd
-from pandas import Categorical, DataFrame, Index, MultiIndex, Series, Timestamp, concat
+from pandas import Categorical, DataFrame, Index, MultiIndex, Timestamp, concat
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
@pytest.mark.parametrize("dtype", [str, object])
@@ -432,7 +433,10 @@ def test_empty_with_dup_column_pass_dtype_by_indexes(all_parsers):
# see gh-9424
parser = all_parsers
expected = concat(
- [Series([], name="one", dtype="u1"), Series([], name="one.1", dtype="f")],
+ [
+ create_series_with_explicit_index([], name="one", dtype="u1"),
+ create_series_with_explicit_index([], name="one.1", dtype="f"),
+ ],
axis=1,
)
expected.index = expected.index.astype(object)
@@ -446,7 +450,10 @@ def test_empty_with_dup_column_pass_dtype_by_indexes_raises(all_parsers):
# see gh-9424
parser = all_parsers
expected = concat(
- [Series([], name="one", dtype="u1"), Series([], name="one.1", dtype="f")],
+ [
+ create_series_with_explicit_index([], name="one", dtype="u1"),
+ create_series_with_explicit_index([], name="one.1", dtype="f"),
+ ],
axis=1,
)
expected.index = expected.index.astype(object)
@@ -502,8 +509,8 @@ def test_dtype_with_converters(all_parsers):
"timedelta64[ns]",
DataFrame(
{
- "a": Series([], dtype="timedelta64[ns]"),
- "b": Series([], dtype="timedelta64[ns]"),
+ "a": create_series_with_explicit_index([], dtype="timedelta64[ns]"),
+ "b": create_series_with_explicit_index([], dtype="timedelta64[ns]"),
},
index=[],
),
@@ -511,21 +518,30 @@ def test_dtype_with_converters(all_parsers):
(
dict(a=np.int64, b=np.int32),
DataFrame(
- {"a": Series([], dtype=np.int64), "b": Series([], dtype=np.int32)},
+ {
+ "a": create_series_with_explicit_index([], dtype=np.int64),
+ "b": create_series_with_explicit_index([], dtype=np.int32),
+ },
index=[],
),
),
(
{0: np.int64, 1: np.int32},
DataFrame(
- {"a": Series([], dtype=np.int64), "b": Series([], dtype=np.int32)},
+ {
+ "a": create_series_with_explicit_index([], dtype=np.int64),
+ "b": create_series_with_explicit_index([], dtype=np.int32),
+ },
index=[],
),
),
(
{"a": np.int64, 1: np.int32},
DataFrame(
- {"a": Series([], dtype=np.int64), "b": Series([], dtype=np.int32)},
+ {
+ "a": create_series_with_explicit_index([], dtype=np.int64),
+ "b": create_series_with_explicit_index([], dtype=np.int32),
+ },
index=[],
),
),
diff --git a/pandas/tests/io/parser/test_unsupported.py b/pandas/tests/io/parser/test_unsupported.py
index 267fae760398a..ba0b318bfe524 100644
--- a/pandas/tests/io/parser/test_unsupported.py
+++ b/pandas/tests/io/parser/test_unsupported.py
@@ -55,7 +55,10 @@ def test_c_engine(self):
read_csv(StringIO(data), sep=r"\s")
with tm.assert_produces_warning(parsers.ParserWarning):
read_csv(StringIO(data), sep="\t", quotechar=chr(128))
- with tm.assert_produces_warning(parsers.ParserWarning):
+ with tm.assert_produces_warning(
+ parsers.ParserWarning, raise_on_extra_warnings=False
+ ):
+ # Additionally raises DeprecationWarning: gh-16737
read_csv(StringIO(data), skipfooter=1)
text = """ A B C D E
diff --git a/pandas/tests/reductions/test_reductions.py b/pandas/tests/reductions/test_reductions.py
index 235aa8e4aa922..ca26035bb87a8 100644
--- a/pandas/tests/reductions/test_reductions.py
+++ b/pandas/tests/reductions/test_reductions.py
@@ -23,6 +23,7 @@
)
import pandas._testing as tm
from pandas.core import nanops
+from pandas.core.construction import create_series_with_explicit_index
def get_objs():
@@ -78,6 +79,7 @@ def test_ops(self, opname, obj):
def test_nanminmax(self, opname, dtype, val, index_or_series):
# GH#7261
klass = index_or_series
+ klass = create_series_with_explicit_index if klass is Series else klass
if dtype in ["Int64", "boolean"] and klass == pd.Index:
pytest.skip("EAs can't yet be stored in an index")
@@ -137,6 +139,7 @@ def test_nanargminmax(self, opname, index_or_series):
@pytest.mark.parametrize("dtype", ["M8[ns]", "datetime64[ns, UTC]"])
def test_nanops_empty_object(self, opname, index_or_series, dtype):
klass = index_or_series
+ klass = create_series_with_explicit_index if klass is Series else klass
arg_op = "arg" + opname if klass is Index else "idx" + opname
obj = klass([], dtype=dtype)
@@ -566,7 +569,7 @@ def test_empty(self, method, unit, use_bottleneck, dtype):
with pd.option_context("use_bottleneck", use_bottleneck):
# GH#9422 / GH#18921
# Entirely empty
- s = Series([], dtype=dtype)
+ s = create_series_with_explicit_index([], dtype=dtype)
# NA by default
result = getattr(s, method)()
assert result == unit
@@ -690,7 +693,7 @@ def test_ops_consistency_on_empty(self, method):
assert pd.isna(result)
# timedelta64[ns]
- tdser = Series([], dtype="m8[ns]")
+ tdser = create_series_with_explicit_index([], dtype="m8[ns]")
if method == "var":
msg = "|".join(
[
@@ -740,10 +743,16 @@ def test_sum_overflow(self, use_bottleneck):
def test_empty_timeseries_reductions_return_nat(self):
# covers GH#11245
for dtype in ("m8[ns]", "m8[ns]", "M8[ns]", "M8[ns, UTC]"):
- assert Series([], dtype=dtype).min() is pd.NaT
- assert Series([], dtype=dtype).max() is pd.NaT
- assert Series([], dtype=dtype).min(skipna=False) is pd.NaT
- assert Series([], dtype=dtype).max(skipna=False) is pd.NaT
+ assert create_series_with_explicit_index([], dtype=dtype).min() is pd.NaT
+ assert create_series_with_explicit_index([], dtype=dtype).max() is pd.NaT
+ assert (
+ create_series_with_explicit_index([], dtype=dtype).min(skipna=False)
+ is pd.NaT
+ )
+ assert (
+ create_series_with_explicit_index([], dtype=dtype).max(skipna=False)
+ is pd.NaT
+ )
def test_numpy_argmin(self):
# See GH#16830
@@ -962,7 +971,7 @@ def test_timedelta64_analytics(self):
@pytest.mark.parametrize(
"test_input,error_type",
[
- (pd.Series([], dtype="float64"), ValueError),
+ (create_series_with_explicit_index([], dtype="float64"), ValueError),
# For strings, or any Series with dtype 'O'
(pd.Series(["foo", "bar", "baz"]), TypeError),
(pd.Series([(1,), (2,)]), TypeError),
@@ -1128,10 +1137,13 @@ class TestSeriesMode:
@pytest.mark.parametrize(
"dropna, expected",
- [(True, Series([], dtype=np.float64)), (False, Series([], dtype=np.float64))],
+ [
+ (True, create_series_with_explicit_index([], dtype=np.float64)),
+ (False, create_series_with_explicit_index([], dtype=np.float64)),
+ ],
)
def test_mode_empty(self, dropna, expected):
- s = Series([], dtype=np.float64)
+ s = create_series_with_explicit_index([], dtype=np.float64)
result = s.mode(dropna)
tm.assert_series_equal(result, expected)
diff --git a/pandas/tests/resample/test_base.py b/pandas/tests/resample/test_base.py
index 6384c5f19c898..94025cf16043c 100644
--- a/pandas/tests/resample/test_base.py
+++ b/pandas/tests/resample/test_base.py
@@ -6,6 +6,7 @@
import pandas as pd
from pandas import DataFrame, Series
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.core.groupby.groupby import DataError
from pandas.core.groupby.grouper import Grouper
from pandas.core.indexes.datetimes import date_range
@@ -136,7 +137,7 @@ def test_resample_empty_dataframe(empty_frame_dti, freq, resample_method):
expected = df.copy()
else:
# GH14962
- expected = Series([], dtype=object)
+ expected = create_series_with_explicit_index([], dtype=object)
expected.index = _asfreq_compat(df.index, freq)
diff --git a/pandas/tests/reshape/test_concat.py b/pandas/tests/reshape/test_concat.py
index bccae2c4c2772..cb41a1403444c 100644
--- a/pandas/tests/reshape/test_concat.py
+++ b/pandas/tests/reshape/test_concat.py
@@ -29,7 +29,10 @@
)
import pandas._testing as tm
from pandas.core.arrays import SparseArray
-from pandas.core.construction import create_series_with_explicit_dtype
+from pandas.core.construction import (
+ create_series_with_explicit_dtype,
+ create_series_with_explicit_index,
+)
from pandas.tests.extension.decimal import to_decimal
@@ -724,7 +727,7 @@ def test_concat_categorical_coercion_nan(self):
def test_concat_categorical_empty(self):
# GH 13524
- s1 = pd.Series([], dtype="category")
+ s1 = create_series_with_explicit_index([], dtype="category")
s2 = pd.Series([1, 2], dtype="category")
tm.assert_series_equal(pd.concat([s1, s2], ignore_index=True), s2)
@@ -733,22 +736,24 @@ def test_concat_categorical_empty(self):
tm.assert_series_equal(pd.concat([s2, s1], ignore_index=True), s2)
tm.assert_series_equal(s2.append(s1, ignore_index=True), s2)
- s1 = pd.Series([], dtype="category")
- s2 = pd.Series([], dtype="category")
+ s1 = create_series_with_explicit_index([], dtype="category")
+ s2 = create_series_with_explicit_index([], dtype="category")
+ expected = pd.Series([], dtype="category", index=pd.RangeIndex(0))
- tm.assert_series_equal(pd.concat([s1, s2], ignore_index=True), s2)
- tm.assert_series_equal(s1.append(s2, ignore_index=True), s2)
+ tm.assert_series_equal(pd.concat([s1, s2], ignore_index=True), expected)
+ tm.assert_series_equal(s1.append(s2, ignore_index=True), expected)
- s1 = pd.Series([], dtype="category")
- s2 = pd.Series([], dtype="object")
+ s1 = create_series_with_explicit_index([], dtype="category")
+ s2 = create_series_with_explicit_index([], dtype="object")
+ expected = pd.Series([], dtype="object", index=pd.RangeIndex(0))
# different dtype => not-category
- tm.assert_series_equal(pd.concat([s1, s2], ignore_index=True), s2)
- tm.assert_series_equal(s1.append(s2, ignore_index=True), s2)
- tm.assert_series_equal(pd.concat([s2, s1], ignore_index=True), s2)
- tm.assert_series_equal(s2.append(s1, ignore_index=True), s2)
+ tm.assert_series_equal(pd.concat([s1, s2], ignore_index=True), expected)
+ tm.assert_series_equal(s1.append(s2, ignore_index=True), expected)
+ tm.assert_series_equal(pd.concat([s2, s1], ignore_index=True), expected)
+ tm.assert_series_equal(s2.append(s1, ignore_index=True), expected)
- s1 = pd.Series([], dtype="category")
+ s1 = create_series_with_explicit_index([], dtype="category")
s2 = pd.Series([np.nan, np.nan])
# empty Series is ignored
@@ -2195,17 +2200,20 @@ def test_concat_empty_series(self):
def test_concat_empty_series_timelike(self, tz, values):
# GH 18447
- first = Series([], dtype="M8[ns]").dt.tz_localize(tz)
+ first = create_series_with_explicit_index([], dtype="M8[ns]").dt.tz_localize(tz)
dtype = None if values else np.float64
- second = Series(values, dtype=dtype)
+ second = create_series_with_explicit_index(values, dtype=dtype)
+ result = concat([first, second], axis=1)
expected = DataFrame(
{
- 0: pd.Series([pd.NaT] * len(values), dtype="M8[ns]").dt.tz_localize(tz),
+ 0: create_series_with_explicit_index(
+ [pd.NaT] * len(values), dtype="M8[ns]"
+ ).dt.tz_localize(tz),
1: values,
- }
+ },
)
- result = concat([first, second], axis=1)
+ expected.index = expected.index.astype(object)
tm.assert_frame_equal(result, expected)
def test_default_index(self):
@@ -2595,7 +2603,7 @@ def test_concat_empty_and_non_empty_frame_regression():
def test_concat_empty_and_non_empty_series_regression():
# GH 18187 regression test
s1 = pd.Series([1])
- s2 = pd.Series([], dtype=object)
+ s2 = create_series_with_explicit_index([], dtype=object)
expected = s1
result = pd.concat([s1, s2])
diff --git a/pandas/tests/series/indexing/test_boolean.py b/pandas/tests/series/indexing/test_boolean.py
index e2b71b1f2f412..6d7196535d230 100644
--- a/pandas/tests/series/indexing/test_boolean.py
+++ b/pandas/tests/series/indexing/test_boolean.py
@@ -3,6 +3,7 @@
from pandas import Index, Series
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.core.indexing import IndexingError
from pandas.tseries.offsets import BDay
@@ -20,7 +21,7 @@ def test_getitem_boolean(string_series):
def test_getitem_boolean_empty():
- s = Series([], dtype=np.int64)
+ s = create_series_with_explicit_index([], dtype=np.int64)
s.index.name = "index_name"
s = s[s.isna()]
assert s.index.name == "index_name"
@@ -30,7 +31,7 @@ def test_getitem_boolean_empty():
# indexing with empty series
s = Series(["A", "B"])
expected = Series(dtype=object, index=Index([], dtype="int64"))
- result = s[Series([], dtype=object)]
+ result = s[create_series_with_explicit_index([], dtype=object)]
tm.assert_series_equal(result, expected)
# invalid because of the boolean indexer
@@ -40,7 +41,7 @@ def test_getitem_boolean_empty():
r"the boolean Series and of the indexed object do not match"
)
with pytest.raises(IndexingError, match=msg):
- s[Series([], dtype=bool)]
+ s[create_series_with_explicit_index([], dtype=bool)]
with pytest.raises(IndexingError, match=msg):
s[Series([True], dtype=bool)]
diff --git a/pandas/tests/series/indexing/test_indexing.py b/pandas/tests/series/indexing/test_indexing.py
index c2b5117d395f9..bc88e783cc232 100644
--- a/pandas/tests/series/indexing/test_indexing.py
+++ b/pandas/tests/series/indexing/test_indexing.py
@@ -10,6 +10,7 @@
import pandas as pd
from pandas import Categorical, DataFrame, MultiIndex, Series, Timedelta, Timestamp
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.tseries.offsets import BDay
@@ -160,7 +161,7 @@ def test_getitem_out_of_bounds(datetime_series):
# GH #917
# With a RangeIndex, an int key gives a KeyError
- s = Series([], dtype=object)
+ s = Series([], index=pd.RangeIndex(0), dtype=object)
with pytest.raises(KeyError, match="-1"):
s[-1]
@@ -617,7 +618,7 @@ def test_setitem_na():
def test_timedelta_assignment():
# GH 8209
- s = Series([], dtype=object)
+ s = create_series_with_explicit_index([], dtype=object)
s.loc["B"] = timedelta(1)
tm.assert_series_equal(s, Series(Timedelta("1 days"), index=["B"]))
diff --git a/pandas/tests/series/methods/test_drop_duplicates.py b/pandas/tests/series/methods/test_drop_duplicates.py
index a4532ebb3d8c5..255f92d8cf449 100644
--- a/pandas/tests/series/methods/test_drop_duplicates.py
+++ b/pandas/tests/series/methods/test_drop_duplicates.py
@@ -3,6 +3,7 @@
from pandas import Categorical, Series
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
@pytest.mark.parametrize(
@@ -46,8 +47,8 @@ def test_drop_duplicates_bool(keep, expected):
@pytest.mark.parametrize("values", [[], list(range(5))])
def test_drop_duplicates_no_duplicates(any_numpy_dtype, keep, values):
- tc = Series(values, dtype=np.dtype(any_numpy_dtype))
- expected = Series([False] * len(tc), dtype="bool")
+ tc = create_series_with_explicit_index(values, dtype=np.dtype(any_numpy_dtype))
+ expected = create_series_with_explicit_index([False] * len(tc), dtype="bool")
if tc.dtype == "bool":
# 0 -> False and 1-> True
diff --git a/pandas/tests/series/methods/test_interpolate.py b/pandas/tests/series/methods/test_interpolate.py
index 6844225a81a8f..b924d15c6bf16 100644
--- a/pandas/tests/series/methods/test_interpolate.py
+++ b/pandas/tests/series/methods/test_interpolate.py
@@ -169,7 +169,7 @@ def test_interpolate_corners(self, kwargs):
s = Series([np.nan, np.nan])
tm.assert_series_equal(s.interpolate(**kwargs), s)
- s = Series([], dtype=object).interpolate()
+ s = Series([], dtype=object, index=pd.RangeIndex(0)).interpolate()
tm.assert_series_equal(s.interpolate(**kwargs), s)
def test_interpolate_index_values(self):
diff --git a/pandas/tests/series/methods/test_quantile.py b/pandas/tests/series/methods/test_quantile.py
index 79f50afca658f..3c4372b6fb58e 100644
--- a/pandas/tests/series/methods/test_quantile.py
+++ b/pandas/tests/series/methods/test_quantile.py
@@ -6,6 +6,7 @@
import pandas as pd
from pandas import Index, Series
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.core.indexes.datetimes import Timestamp
@@ -104,7 +105,7 @@ def test_quantile_nan(self):
assert result == expected
# all nan/empty
- s1 = Series([], dtype=object)
+ s1 = create_series_with_explicit_index([], dtype=object)
cases = [s1, Series([np.nan, np.nan])]
for s in cases:
@@ -163,8 +164,12 @@ def test_quantile_box(self, case):
def test_datetime_timedelta_quantiles(self):
# covers #9694
- assert pd.isna(Series([], dtype="M8[ns]").quantile(0.5))
- assert pd.isna(Series([], dtype="m8[ns]").quantile(0.5))
+ assert pd.isna(
+ create_series_with_explicit_index([], dtype="M8[ns]").quantile(0.5)
+ )
+ assert pd.isna(
+ create_series_with_explicit_index([], dtype="m8[ns]").quantile(0.5)
+ )
def test_quantile_nat(self):
res = Series([pd.NaT, pd.NaT]).quantile(0.5)
@@ -186,7 +191,7 @@ def test_quantile_sparse(self, values, dtype):
def test_quantile_empty(self):
# floats
- s = Series([], dtype="float64")
+ s = create_series_with_explicit_index([], dtype="float64")
res = s.quantile(0.5)
assert np.isnan(res)
@@ -196,7 +201,7 @@ def test_quantile_empty(self):
tm.assert_series_equal(res, exp)
# int
- s = Series([], dtype="int64")
+ s = create_series_with_explicit_index([], dtype="int64")
res = s.quantile(0.5)
assert np.isnan(res)
@@ -206,7 +211,7 @@ def test_quantile_empty(self):
tm.assert_series_equal(res, exp)
# datetime
- s = Series([], dtype="datetime64[ns]")
+ s = create_series_with_explicit_index([], dtype="datetime64[ns]")
res = s.quantile(0.5)
assert res is pd.NaT
diff --git a/pandas/tests/series/test_apply.py b/pandas/tests/series/test_apply.py
index 0661828814888..5c16de0a512c4 100644
--- a/pandas/tests/series/test_apply.py
+++ b/pandas/tests/series/test_apply.py
@@ -10,6 +10,7 @@
from pandas import DataFrame, Index, Series, isna
import pandas._testing as tm
from pandas.core.base import SpecificationError
+from pandas.core.construction import create_series_with_explicit_index
class TestSeriesApply:
@@ -519,7 +520,7 @@ def test_map_empty(self, indices):
if isinstance(indices, ABCMultiIndex):
pytest.skip("Initializing a Series from a MultiIndex is not supported")
- s = Series(indices)
+ s = create_series_with_explicit_index(indices)
result = s.map({})
expected = pd.Series(np.nan, index=s.index)
diff --git a/pandas/tests/series/test_combine_concat.py b/pandas/tests/series/test_combine_concat.py
index 0766bfc37d7ca..c409b274b6964 100644
--- a/pandas/tests/series/test_combine_concat.py
+++ b/pandas/tests/series/test_combine_concat.py
@@ -3,6 +3,7 @@
import pandas as pd
from pandas import Series
+from pandas.core.construction import create_series_with_explicit_index
class TestSeriesConcat:
@@ -94,7 +95,10 @@ def test_concat_empty_series_dtype_category_with_array(self):
# GH 18515
assert (
pd.concat(
- [Series(np.array([]), dtype="category"), Series(dtype="float64")]
+ [
+ create_series_with_explicit_index(np.array([]), dtype="category"),
+ Series(dtype="float64"),
+ ]
).dtype
== "float64"
)
diff --git a/pandas/tests/series/test_constructors.py b/pandas/tests/series/test_constructors.py
index effb324298c95..6d0b7691b664f 100644
--- a/pandas/tests/series/test_constructors.py
+++ b/pandas/tests/series/test_constructors.py
@@ -28,6 +28,7 @@
)
import pandas._testing as tm
from pandas.core.arrays import IntervalArray, period_array
+from pandas.core.construction import create_series_with_explicit_index
class TestSeriesConstructors:
@@ -134,12 +135,21 @@ def test_constructor_empty(self, input_class):
# With explicit dtype:
empty = Series(dtype="float64")
- empty2 = Series(input_class(), dtype="float64")
+
+ if input_class is list:
+ with tm.assert_produces_warning(DeprecationWarning, check_stacklevel=False):
+ empty2 = Series(input_class(), dtype="float64")
+ else:
+ empty2 = Series(input_class(), dtype="float64")
tm.assert_series_equal(empty, empty2, check_index_type=False)
# GH 18515 : with dtype=category:
empty = Series(dtype="category")
- empty2 = Series(input_class(), dtype="category")
+ if input_class is list:
+ with tm.assert_produces_warning(DeprecationWarning, check_stacklevel=False):
+ empty2 = Series(input_class(), dtype="category")
+ else:
+ empty2 = Series(input_class(), dtype="category")
tm.assert_series_equal(empty, empty2, check_index_type=False)
if input_class is not list:
@@ -1391,7 +1401,7 @@ def test_constructor_generic_timestamp_no_frequency(self, dtype):
msg = "dtype has no unit. Please pass in"
with pytest.raises(ValueError, match=msg):
- Series([], dtype=dtype)
+ create_series_with_explicit_index([], dtype=dtype)
@pytest.mark.parametrize(
"dtype,msg",
@@ -1404,7 +1414,7 @@ def test_constructor_generic_timestamp_bad_frequency(self, dtype, msg):
# see gh-15524, gh-15987
with pytest.raises(TypeError, match=msg):
- Series([], dtype=dtype)
+ create_series_with_explicit_index([], dtype=dtype)
@pytest.mark.parametrize("dtype", [None, "uint8", "category"])
def test_constructor_range_dtype(self, dtype):
diff --git a/pandas/tests/series/test_dtypes.py b/pandas/tests/series/test_dtypes.py
index 05e708e575a64..1d02f24ea6455 100644
--- a/pandas/tests/series/test_dtypes.py
+++ b/pandas/tests/series/test_dtypes.py
@@ -21,6 +21,7 @@
date_range,
)
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
class TestSeriesDtypes:
@@ -404,9 +405,9 @@ def test_astype_empty_constructor_equality(self, dtype):
"M",
"m", # Generic timestamps raise a ValueError. Already tested.
):
- init_empty = Series([], dtype=dtype)
+ init_empty = create_series_with_explicit_index([], dtype=dtype)
with tm.assert_produces_warning(DeprecationWarning, check_stacklevel=False):
- as_type_empty = Series([]).astype(dtype)
+ as_type_empty = create_series_with_explicit_index([]).astype(dtype)
tm.assert_series_equal(init_empty, as_type_empty)
def test_arg_for_errors_in_astype(self):
diff --git a/pandas/tests/series/test_duplicates.py b/pandas/tests/series/test_duplicates.py
index 89181a08819b1..50ad0e329851e 100644
--- a/pandas/tests/series/test_duplicates.py
+++ b/pandas/tests/series/test_duplicates.py
@@ -3,7 +3,10 @@
from pandas import Categorical, Series
import pandas._testing as tm
-from pandas.core.construction import create_series_with_explicit_dtype
+from pandas.core.construction import (
+ create_series_with_explicit_dtype,
+ create_series_with_explicit_index,
+)
def test_nunique():
@@ -15,7 +18,7 @@ def test_nunique():
assert result == 11
# GH 18051
- s = Series(Categorical([]))
+ s = create_series_with_explicit_index(Categorical([]))
assert s.nunique() == 0
s = Series(Categorical([np.nan]))
assert s.nunique() == 0
@@ -46,7 +49,7 @@ def test_unique():
tm.assert_numpy_array_equal(result, expected)
# GH 18051
- s = Series(Categorical([]))
+ s = create_series_with_explicit_index(Categorical([]))
tm.assert_categorical_equal(s.unique(), Categorical([]))
s = Series(Categorical([np.nan]))
tm.assert_categorical_equal(s.unique(), Categorical([np.nan]))
diff --git a/pandas/tests/series/test_missing.py b/pandas/tests/series/test_missing.py
index 9e9b93a499487..76272f5aaa988 100644
--- a/pandas/tests/series/test_missing.py
+++ b/pandas/tests/series/test_missing.py
@@ -20,6 +20,7 @@
isna,
)
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
class TestSeriesMissingData:
@@ -562,7 +563,7 @@ def test_fillna(self, datetime_series):
tm.assert_series_equal(result, expected)
result = s1.fillna({})
tm.assert_series_equal(result, s1)
- result = s1.fillna(Series((), dtype=object))
+ result = s1.fillna(create_series_with_explicit_index((), dtype=object))
tm.assert_series_equal(result, s1)
result = s2.fillna(s1)
tm.assert_series_equal(result, s2)
@@ -677,7 +678,7 @@ def test_timedelta64_nan(self):
# tm.assert_series_equal(selector, expected)
def test_dropna_empty(self):
- s = Series([], dtype=object)
+ s = create_series_with_explicit_index([], dtype=object)
assert len(s.dropna()) == 0
s.dropna(inplace=True)
diff --git a/pandas/tests/series/test_operators.py b/pandas/tests/series/test_operators.py
index 1340f514e31ce..d5277efc3971c 100644
--- a/pandas/tests/series/test_operators.py
+++ b/pandas/tests/series/test_operators.py
@@ -8,6 +8,7 @@
from pandas import DataFrame, Index, Series, bdate_range
import pandas._testing as tm
from pandas.core import ops
+from pandas.core.construction import create_series_with_explicit_index
class TestSeriesLogicalOps:
@@ -32,7 +33,7 @@ def test_logical_operators_bool_dtype_with_empty(self):
s_tft = Series([True, False, True], index=index)
s_fff = Series([False, False, False], index=index)
- s_empty = Series([], dtype=object)
+ s_empty = create_series_with_explicit_index([], dtype=object)
res = s_tft & s_empty
expected = s_fff
@@ -407,7 +408,7 @@ def test_logical_ops_label_based(self):
# filling
# vs empty
- empty = Series([], dtype=object)
+ empty = create_series_with_explicit_index([], dtype=object)
result = a & empty.copy()
expected = Series([False, False, False], list("bca"))
diff --git a/pandas/tests/series/test_repr.py b/pandas/tests/series/test_repr.py
index 77f942a9e32ec..a21a4eaa4fa6b 100644
--- a/pandas/tests/series/test_repr.py
+++ b/pandas/tests/series/test_repr.py
@@ -16,6 +16,7 @@
timedelta_range,
)
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
class TestSeriesRepr:
@@ -124,10 +125,10 @@ def test_repr(self, datetime_series, string_series, object_series):
assert "a\n" not in repr(ser)
# with empty series (#4651)
- s = Series([], dtype=np.int64, name="foo")
+ s = create_series_with_explicit_index([], dtype=np.int64, name="foo")
assert repr(s) == "Series([], Name: foo, dtype: int64)"
- s = Series([], dtype=np.int64, name=None)
+ s = create_series_with_explicit_index([], dtype=np.int64, name=None)
assert repr(s) == "Series([], dtype: int64)"
def test_tidy_repr(self):
diff --git a/pandas/tests/test_algos.py b/pandas/tests/test_algos.py
index 5f904241da485..579869762f4d6 100644
--- a/pandas/tests/test_algos.py
+++ b/pandas/tests/test_algos.py
@@ -34,6 +34,7 @@
import pandas.core.algorithms as algos
from pandas.core.arrays import DatetimeArray
import pandas.core.common as com
+from pandas.core.construction import create_series_with_explicit_index
class TestFactorize:
@@ -2171,7 +2172,7 @@ def test_int64_add_overflow():
class TestMode:
def test_no_mode(self):
- exp = Series([], dtype=np.float64)
+ exp = create_series_with_explicit_index([], dtype=np.float64)
tm.assert_series_equal(algos.mode([]), exp)
def test_mode_single(self):
diff --git a/pandas/tests/test_register_accessor.py b/pandas/tests/test_register_accessor.py
index d839936f731a3..d8062a6fdcfeb 100644
--- a/pandas/tests/test_register_accessor.py
+++ b/pandas/tests/test_register_accessor.py
@@ -4,6 +4,10 @@
import pandas as pd
import pandas._testing as tm
+from pandas.core.construction import (
+ create_series_with_explicit_dtype,
+ create_series_with_explicit_index,
+)
@contextlib.contextmanager
@@ -46,7 +50,8 @@ def test_register(obj, registrar):
with ensure_removed(obj, "mine"):
before = set(dir(obj))
registrar("mine")(MyAccessor)
- o = obj([]) if obj is not pd.Series else obj([], dtype=object)
+ klass = create_series_with_explicit_dtype if obj is pd.Series else obj
+ o = klass([])
assert o.mine.prop == "item"
after = set(dir(obj))
assert (before ^ after) == {"mine"}
@@ -90,4 +95,4 @@ def __init__(self, data):
raise AttributeError("whoops")
with pytest.raises(AttributeError, match="whoops"):
- pd.Series([], dtype=object).bad
+ create_series_with_explicit_index([], dtype=object).bad
diff --git a/pandas/tests/test_strings.py b/pandas/tests/test_strings.py
index 6260d13524da3..63a57dd559ff2 100644
--- a/pandas/tests/test_strings.py
+++ b/pandas/tests/test_strings.py
@@ -10,6 +10,7 @@
import pandas as pd
from pandas import DataFrame, Index, MultiIndex, Series, concat, isna, notna
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
import pandas.core.strings as strings
@@ -207,6 +208,7 @@ def test_api_mi_raises(self):
def test_api_per_dtype(self, index_or_series, dtype, any_skipna_inferred_dtype):
# one instance of parametrized fixture
box = index_or_series
+ box = create_series_with_explicit_index if box is Series else box
inferred_dtype, values = any_skipna_inferred_dtype
if dtype == "category" and len(values) and values[1] is pd.NA:
@@ -252,6 +254,7 @@ def test_api_per_method(
# just that the methods work on the specified (inferred) dtypes,
# and raise on all others
box = index_or_series
+ box = create_series_with_explicit_index if box is Series else box
# one instance of each parametrized fixture
inferred_dtype, values = any_allowed_skipna_inferred_dtype
@@ -351,7 +354,7 @@ def test_iter(self):
assert s.dropna().values.item() == "l"
def test_iter_empty(self):
- ds = Series([], dtype=object)
+ ds = create_series_with_explicit_index([], dtype=object)
i, s = 100, 1
diff --git a/pandas/tests/tools/test_to_numeric.py b/pandas/tests/tools/test_to_numeric.py
index 263887a8ea36e..ba905b8afafa5 100644
--- a/pandas/tests/tools/test_to_numeric.py
+++ b/pandas/tests/tools/test_to_numeric.py
@@ -7,6 +7,7 @@
import pandas as pd
from pandas import DataFrame, Index, Series, to_numeric
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
@pytest.fixture(params=[None, "ignore", "raise", "coerce"])
@@ -54,10 +55,10 @@ def transform_assert_equal(request):
)
def test_empty(input_kwargs, result_kwargs):
# see gh-16302
- ser = Series([], dtype=object)
+ ser = create_series_with_explicit_index([], dtype=object)
result = to_numeric(ser, **input_kwargs)
- expected = Series([], **result_kwargs)
+ expected = create_series_with_explicit_index([], **result_kwargs)
tm.assert_series_equal(result, expected)
diff --git a/pandas/tests/util/test_hashing.py b/pandas/tests/util/test_hashing.py
index ff29df39e1871..6d3fb66eb29e4 100644
--- a/pandas/tests/util/test_hashing.py
+++ b/pandas/tests/util/test_hashing.py
@@ -4,6 +4,7 @@
import pandas as pd
from pandas import DataFrame, Index, MultiIndex, Series
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.core.util.hashing import hash_tuples
from pandas.util import hash_array, hash_pandas_object
@@ -178,7 +179,12 @@ def test_hash_pandas_object2(series, index):
@pytest.mark.parametrize(
- "obj", [Series([], dtype="float64"), Series([], dtype="object"), Index([])]
+ "obj",
+ [
+ create_series_with_explicit_index([], dtype="float64"),
+ create_series_with_explicit_index([], dtype="object"),
+ Index([]),
+ ],
)
def test_hash_pandas_empty_object(obj, index):
# These are by-definition the same with
diff --git a/pandas/tests/window/common.py b/pandas/tests/window/common.py
index 6aeada3152dbb..69c5e10b46280 100644
--- a/pandas/tests/window/common.py
+++ b/pandas/tests/window/common.py
@@ -5,6 +5,7 @@
from pandas import DataFrame, Series, bdate_range, notna
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
N, K = 100, 10
@@ -375,7 +376,7 @@ def check_binary_ew_min_periods(name, min_periods, A, B):
assert not np.isnan(result.values[11:]).any()
# check series of length 0
- empty = Series([], dtype=np.float64)
+ empty = create_series_with_explicit_index([], dtype=np.float64)
result = ew_func(empty, empty, 50, name=name, min_periods=min_periods)
tm.assert_series_equal(result, empty)
diff --git a/pandas/tests/window/moments/test_moments_ewm.py b/pandas/tests/window/moments/test_moments_ewm.py
index 599761259e041..c068ddbe5d82f 100644
--- a/pandas/tests/window/moments/test_moments_ewm.py
+++ b/pandas/tests/window/moments/test_moments_ewm.py
@@ -5,6 +5,7 @@
import pandas as pd
from pandas import DataFrame, Series, concat
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.tests.window.common import (
Base,
ConsistencyBase,
@@ -205,7 +206,7 @@ def test_ewm_domain_checks(self):
@pytest.mark.parametrize("method", ["mean", "vol", "var"])
def test_ew_empty_series(self, method):
- vals = pd.Series([], dtype=np.float64)
+ vals = create_series_with_explicit_index([], dtype=np.float64)
ewm = vals.ewm(3)
result = getattr(ewm, method)()
diff --git a/pandas/tests/window/moments/test_moments_expanding.py b/pandas/tests/window/moments/test_moments_expanding.py
index 9dfaecee9caeb..444e2b7d00443 100644
--- a/pandas/tests/window/moments/test_moments_expanding.py
+++ b/pandas/tests/window/moments/test_moments_expanding.py
@@ -6,6 +6,7 @@
from pandas import DataFrame, Index, MultiIndex, Series, isna, notna
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.tests.window.common import ConsistencyBase
@@ -209,7 +210,7 @@ def expanding_mean(x, min_periods=1):
def test_expanding_apply_empty_series(self, engine_and_raw):
engine, raw = engine_and_raw
- ser = Series([], dtype=np.float64)
+ ser = create_series_with_explicit_index([], dtype=np.float64)
tm.assert_series_equal(
ser, ser.expanding().apply(lambda x: x.mean(), raw=raw, engine=engine)
)
diff --git a/pandas/tests/window/moments/test_moments_rolling.py b/pandas/tests/window/moments/test_moments_rolling.py
index 3c5352fcd997d..c57bb4b9dd49e 100644
--- a/pandas/tests/window/moments/test_moments_rolling.py
+++ b/pandas/tests/window/moments/test_moments_rolling.py
@@ -11,6 +11,7 @@
import pandas as pd
from pandas import DataFrame, DatetimeIndex, Index, Series, isna, notna
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
from pandas.core.window.common import _flex_binary_moment
from pandas.tests.window.common import Base, ConsistencyBase
@@ -108,7 +109,7 @@ def test_cmov_window_corner(self):
assert np.isnan(result).all()
# empty
- vals = pd.Series([], dtype=object)
+ vals = create_series_with_explicit_index([], dtype=object)
result = vals.rolling(5, center=True, win_type="boxcar").mean()
assert len(result) == 0
diff --git a/pandas/tests/window/test_apply.py b/pandas/tests/window/test_apply.py
index 7132e64c1191c..66823488c9d90 100644
--- a/pandas/tests/window/test_apply.py
+++ b/pandas/tests/window/test_apply.py
@@ -5,6 +5,7 @@
from pandas import DataFrame, Series, Timestamp, date_range
import pandas._testing as tm
+from pandas.core.construction import create_series_with_explicit_index
@pytest.mark.parametrize("bad_raw", [None, 1, 0])
@@ -53,7 +54,7 @@ def f(x):
def test_rolling_apply(engine_and_raw):
engine, raw = engine_and_raw
- expected = Series([], dtype="float64")
+ expected = create_series_with_explicit_index([], dtype="float64")
result = expected.rolling(10).apply(lambda x: x.mean(), engine=engine, raw=raw)
tm.assert_series_equal(result, expected)
| - [x] closes #16737
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
---------------------------------
I picked up all the notes from #16737 where it was suggested to use `Index` over `RangeIndex` for empty data.
| https://api.github.com/repos/pandas-dev/pandas/pulls/32053 | 2020-02-17T12:08:01Z | 2020-09-10T18:57:11Z | null | 2020-09-10T18:57:12Z |
Backport PR #31156 on branch 1.0.x (DOC: Update of the 'getting started' pages in the sphinx section of the documentation) | diff --git a/doc/data/air_quality_long.csv b/doc/data/air_quality_long.csv
new file mode 100644
index 0000000000000..6225d65d8e276
--- /dev/null
+++ b/doc/data/air_quality_long.csv
@@ -0,0 +1,5273 @@
+city,country,date.utc,location,parameter,value,unit
+Antwerpen,BE,2019-06-18 06:00:00+00:00,BETR801,pm25,18.0,µg/m³
+Antwerpen,BE,2019-06-17 08:00:00+00:00,BETR801,pm25,6.5,µg/m³
+Antwerpen,BE,2019-06-17 07:00:00+00:00,BETR801,pm25,18.5,µg/m³
+Antwerpen,BE,2019-06-17 06:00:00+00:00,BETR801,pm25,16.0,µg/m³
+Antwerpen,BE,2019-06-17 05:00:00+00:00,BETR801,pm25,7.5,µg/m³
+Antwerpen,BE,2019-06-17 04:00:00+00:00,BETR801,pm25,7.5,µg/m³
+Antwerpen,BE,2019-06-17 03:00:00+00:00,BETR801,pm25,7.0,µg/m³
+Antwerpen,BE,2019-06-17 02:00:00+00:00,BETR801,pm25,7.0,µg/m³
+Antwerpen,BE,2019-06-17 01:00:00+00:00,BETR801,pm25,8.0,µg/m³
+Antwerpen,BE,2019-06-16 01:00:00+00:00,BETR801,pm25,15.0,µg/m³
+Antwerpen,BE,2019-06-15 01:00:00+00:00,BETR801,pm25,11.0,µg/m³
+Antwerpen,BE,2019-06-14 09:00:00+00:00,BETR801,pm25,12.0,µg/m³
+Antwerpen,BE,2019-06-13 01:00:00+00:00,BETR801,pm25,3.0,µg/m³
+Antwerpen,BE,2019-06-12 01:00:00+00:00,BETR801,pm25,16.0,µg/m³
+Antwerpen,BE,2019-06-11 01:00:00+00:00,BETR801,pm25,3.5,µg/m³
+Antwerpen,BE,2019-06-10 01:00:00+00:00,BETR801,pm25,8.5,µg/m³
+Antwerpen,BE,2019-06-09 01:00:00+00:00,BETR801,pm25,6.0,µg/m³
+Antwerpen,BE,2019-06-08 01:00:00+00:00,BETR801,pm25,6.5,µg/m³
+Antwerpen,BE,2019-06-06 01:00:00+00:00,BETR801,pm25,6.5,µg/m³
+Antwerpen,BE,2019-06-05 01:00:00+00:00,BETR801,pm25,11.0,µg/m³
+Antwerpen,BE,2019-06-04 01:00:00+00:00,BETR801,pm25,10.5,µg/m³
+Antwerpen,BE,2019-06-03 01:00:00+00:00,BETR801,pm25,12.5,µg/m³
+Antwerpen,BE,2019-06-02 01:00:00+00:00,BETR801,pm25,19.0,µg/m³
+Antwerpen,BE,2019-06-01 01:00:00+00:00,BETR801,pm25,9.0,µg/m³
+Antwerpen,BE,2019-05-31 01:00:00+00:00,BETR801,pm25,6.0,µg/m³
+Antwerpen,BE,2019-05-30 01:00:00+00:00,BETR801,pm25,5.0,µg/m³
+Antwerpen,BE,2019-05-29 01:00:00+00:00,BETR801,pm25,5.5,µg/m³
+Antwerpen,BE,2019-05-28 01:00:00+00:00,BETR801,pm25,7.0,µg/m³
+Antwerpen,BE,2019-05-27 01:00:00+00:00,BETR801,pm25,7.5,µg/m³
+Antwerpen,BE,2019-05-26 01:00:00+00:00,BETR801,pm25,26.5,µg/m³
+Antwerpen,BE,2019-05-25 01:00:00+00:00,BETR801,pm25,10.0,µg/m³
+Antwerpen,BE,2019-05-24 01:00:00+00:00,BETR801,pm25,13.0,µg/m³
+Antwerpen,BE,2019-05-23 01:00:00+00:00,BETR801,pm25,7.5,µg/m³
+Antwerpen,BE,2019-05-22 01:00:00+00:00,BETR801,pm25,15.5,µg/m³
+Antwerpen,BE,2019-05-21 01:00:00+00:00,BETR801,pm25,20.5,µg/m³
+Antwerpen,BE,2019-05-20 17:00:00+00:00,BETR801,pm25,18.5,µg/m³
+Antwerpen,BE,2019-05-20 16:00:00+00:00,BETR801,pm25,17.0,µg/m³
+Antwerpen,BE,2019-05-20 15:00:00+00:00,BETR801,pm25,18.5,µg/m³
+Antwerpen,BE,2019-05-20 14:00:00+00:00,BETR801,pm25,14.5,µg/m³
+Antwerpen,BE,2019-05-20 13:00:00+00:00,BETR801,pm25,17.0,µg/m³
+Antwerpen,BE,2019-05-20 12:00:00+00:00,BETR801,pm25,17.5,µg/m³
+Antwerpen,BE,2019-05-20 11:00:00+00:00,BETR801,pm25,13.5,µg/m³
+Antwerpen,BE,2019-05-20 10:00:00+00:00,BETR801,pm25,10.5,µg/m³
+Antwerpen,BE,2019-05-20 09:00:00+00:00,BETR801,pm25,13.5,µg/m³
+Antwerpen,BE,2019-05-20 08:00:00+00:00,BETR801,pm25,19.5,µg/m³
+Antwerpen,BE,2019-05-20 07:00:00+00:00,BETR801,pm25,23.5,µg/m³
+Antwerpen,BE,2019-05-20 06:00:00+00:00,BETR801,pm25,22.0,µg/m³
+Antwerpen,BE,2019-05-20 05:00:00+00:00,BETR801,pm25,25.0,µg/m³
+Antwerpen,BE,2019-05-20 04:00:00+00:00,BETR801,pm25,24.5,µg/m³
+Antwerpen,BE,2019-05-20 03:00:00+00:00,BETR801,pm25,15.0,µg/m³
+Antwerpen,BE,2019-05-20 02:00:00+00:00,BETR801,pm25,18.5,µg/m³
+Antwerpen,BE,2019-05-20 01:00:00+00:00,BETR801,pm25,28.0,µg/m³
+Antwerpen,BE,2019-05-19 21:00:00+00:00,BETR801,pm25,35.5,µg/m³
+Antwerpen,BE,2019-05-19 20:00:00+00:00,BETR801,pm25,40.0,µg/m³
+Antwerpen,BE,2019-05-19 19:00:00+00:00,BETR801,pm25,43.5,µg/m³
+Antwerpen,BE,2019-05-19 18:00:00+00:00,BETR801,pm25,35.0,µg/m³
+Antwerpen,BE,2019-05-19 17:00:00+00:00,BETR801,pm25,34.0,µg/m³
+Antwerpen,BE,2019-05-19 16:00:00+00:00,BETR801,pm25,36.5,µg/m³
+Antwerpen,BE,2019-05-19 15:00:00+00:00,BETR801,pm25,44.0,µg/m³
+Antwerpen,BE,2019-05-19 14:00:00+00:00,BETR801,pm25,43.5,µg/m³
+Antwerpen,BE,2019-05-19 13:00:00+00:00,BETR801,pm25,46.0,µg/m³
+Antwerpen,BE,2019-05-19 12:00:00+00:00,BETR801,pm25,43.0,µg/m³
+Antwerpen,BE,2019-05-19 11:00:00+00:00,BETR801,pm25,41.0,µg/m³
+Antwerpen,BE,2019-05-19 10:00:00+00:00,BETR801,pm25,41.5,µg/m³
+Antwerpen,BE,2019-05-19 09:00:00+00:00,BETR801,pm25,42.5,µg/m³
+Antwerpen,BE,2019-05-19 08:00:00+00:00,BETR801,pm25,51.5,µg/m³
+Antwerpen,BE,2019-05-19 07:00:00+00:00,BETR801,pm25,56.0,µg/m³
+Antwerpen,BE,2019-05-19 06:00:00+00:00,BETR801,pm25,58.5,µg/m³
+Antwerpen,BE,2019-05-19 05:00:00+00:00,BETR801,pm25,60.0,µg/m³
+Antwerpen,BE,2019-05-19 04:00:00+00:00,BETR801,pm25,56.5,µg/m³
+Antwerpen,BE,2019-05-19 03:00:00+00:00,BETR801,pm25,52.5,µg/m³
+Antwerpen,BE,2019-05-19 02:00:00+00:00,BETR801,pm25,51.5,µg/m³
+Antwerpen,BE,2019-05-19 01:00:00+00:00,BETR801,pm25,52.0,µg/m³
+Antwerpen,BE,2019-05-19 00:00:00+00:00,BETR801,pm25,49.5,µg/m³
+Antwerpen,BE,2019-05-18 23:00:00+00:00,BETR801,pm25,45.5,µg/m³
+Antwerpen,BE,2019-05-18 22:00:00+00:00,BETR801,pm25,42.0,µg/m³
+Antwerpen,BE,2019-05-18 21:00:00+00:00,BETR801,pm25,40.5,µg/m³
+Antwerpen,BE,2019-05-18 20:00:00+00:00,BETR801,pm25,41.0,µg/m³
+Antwerpen,BE,2019-05-18 19:00:00+00:00,BETR801,pm25,36.5,µg/m³
+Antwerpen,BE,2019-05-18 18:00:00+00:00,BETR801,pm25,37.0,µg/m³
+Antwerpen,BE,2019-05-18 01:00:00+00:00,BETR801,pm25,24.0,µg/m³
+Antwerpen,BE,2019-05-17 01:00:00+00:00,BETR801,pm25,13.5,µg/m³
+Antwerpen,BE,2019-05-16 01:00:00+00:00,BETR801,pm25,11.0,µg/m³
+Antwerpen,BE,2019-05-15 02:00:00+00:00,BETR801,pm25,12.5,µg/m³
+Antwerpen,BE,2019-05-15 01:00:00+00:00,BETR801,pm25,13.0,µg/m³
+Antwerpen,BE,2019-05-14 02:00:00+00:00,BETR801,pm25,4.0,µg/m³
+Antwerpen,BE,2019-05-14 01:00:00+00:00,BETR801,pm25,4.0,µg/m³
+Antwerpen,BE,2019-05-13 02:00:00+00:00,BETR801,pm25,5.5,µg/m³
+Antwerpen,BE,2019-05-13 01:00:00+00:00,BETR801,pm25,5.0,µg/m³
+Antwerpen,BE,2019-05-12 02:00:00+00:00,BETR801,pm25,6.0,µg/m³
+Antwerpen,BE,2019-05-12 01:00:00+00:00,BETR801,pm25,6.0,µg/m³
+Antwerpen,BE,2019-05-11 02:00:00+00:00,BETR801,pm25,19.5,µg/m³
+Antwerpen,BE,2019-05-11 01:00:00+00:00,BETR801,pm25,17.0,µg/m³
+Antwerpen,BE,2019-05-10 02:00:00+00:00,BETR801,pm25,13.5,µg/m³
+Antwerpen,BE,2019-05-10 01:00:00+00:00,BETR801,pm25,11.5,µg/m³
+Antwerpen,BE,2019-05-09 02:00:00+00:00,BETR801,pm25,3.5,µg/m³
+Antwerpen,BE,2019-05-09 01:00:00+00:00,BETR801,pm25,4.5,µg/m³
+Antwerpen,BE,2019-05-08 02:00:00+00:00,BETR801,pm25,14.0,µg/m³
+Antwerpen,BE,2019-05-08 01:00:00+00:00,BETR801,pm25,14.5,µg/m³
+Antwerpen,BE,2019-05-07 02:00:00+00:00,BETR801,pm25,14.0,µg/m³
+Antwerpen,BE,2019-05-07 01:00:00+00:00,BETR801,pm25,12.5,µg/m³
+Antwerpen,BE,2019-05-06 02:00:00+00:00,BETR801,pm25,10.5,µg/m³
+Antwerpen,BE,2019-05-06 01:00:00+00:00,BETR801,pm25,10.0,µg/m³
+Antwerpen,BE,2019-05-05 02:00:00+00:00,BETR801,pm25,3.0,µg/m³
+Antwerpen,BE,2019-05-05 01:00:00+00:00,BETR801,pm25,5.0,µg/m³
+Antwerpen,BE,2019-05-04 02:00:00+00:00,BETR801,pm25,4.5,µg/m³
+Antwerpen,BE,2019-05-04 01:00:00+00:00,BETR801,pm25,4.0,µg/m³
+Antwerpen,BE,2019-05-03 02:00:00+00:00,BETR801,pm25,9.5,µg/m³
+Antwerpen,BE,2019-05-03 01:00:00+00:00,BETR801,pm25,8.5,µg/m³
+Antwerpen,BE,2019-05-02 02:00:00+00:00,BETR801,pm25,45.5,µg/m³
+Antwerpen,BE,2019-05-02 01:00:00+00:00,BETR801,pm25,46.0,µg/m³
+Antwerpen,BE,2019-05-01 02:00:00+00:00,BETR801,pm25,28.5,µg/m³
+Antwerpen,BE,2019-05-01 01:00:00+00:00,BETR801,pm25,34.5,µg/m³
+Antwerpen,BE,2019-04-30 02:00:00+00:00,BETR801,pm25,13.5,µg/m³
+Antwerpen,BE,2019-04-30 01:00:00+00:00,BETR801,pm25,18.5,µg/m³
+Antwerpen,BE,2019-04-29 02:00:00+00:00,BETR801,pm25,14.5,µg/m³
+Antwerpen,BE,2019-04-29 01:00:00+00:00,BETR801,pm25,14.0,µg/m³
+Antwerpen,BE,2019-04-28 02:00:00+00:00,BETR801,pm25,4.5,µg/m³
+Antwerpen,BE,2019-04-28 01:00:00+00:00,BETR801,pm25,6.5,µg/m³
+Antwerpen,BE,2019-04-27 02:00:00+00:00,BETR801,pm25,7.0,µg/m³
+Antwerpen,BE,2019-04-27 01:00:00+00:00,BETR801,pm25,6.5,µg/m³
+Antwerpen,BE,2019-04-26 02:00:00+00:00,BETR801,pm25,4.0,µg/m³
+Antwerpen,BE,2019-04-26 01:00:00+00:00,BETR801,pm25,4.5,µg/m³
+Antwerpen,BE,2019-04-25 02:00:00+00:00,BETR801,pm25,3.0,µg/m³
+Antwerpen,BE,2019-04-25 01:00:00+00:00,BETR801,pm25,3.0,µg/m³
+Antwerpen,BE,2019-04-24 02:00:00+00:00,BETR801,pm25,19.0,µg/m³
+Antwerpen,BE,2019-04-24 01:00:00+00:00,BETR801,pm25,19.0,µg/m³
+Antwerpen,BE,2019-04-23 02:00:00+00:00,BETR801,pm25,9.0,µg/m³
+Antwerpen,BE,2019-04-23 01:00:00+00:00,BETR801,pm25,9.0,µg/m³
+Antwerpen,BE,2019-04-22 02:00:00+00:00,BETR801,pm25,36.5,µg/m³
+Antwerpen,BE,2019-04-22 01:00:00+00:00,BETR801,pm25,32.5,µg/m³
+Antwerpen,BE,2019-04-21 02:00:00+00:00,BETR801,pm25,26.5,µg/m³
+Antwerpen,BE,2019-04-21 01:00:00+00:00,BETR801,pm25,27.5,µg/m³
+Antwerpen,BE,2019-04-20 02:00:00+00:00,BETR801,pm25,20.0,µg/m³
+Antwerpen,BE,2019-04-20 01:00:00+00:00,BETR801,pm25,20.0,µg/m³
+Antwerpen,BE,2019-04-19 01:00:00+00:00,BETR801,pm25,20.0,µg/m³
+Antwerpen,BE,2019-04-18 02:00:00+00:00,BETR801,pm25,26.5,µg/m³
+Antwerpen,BE,2019-04-18 01:00:00+00:00,BETR801,pm25,25.0,µg/m³
+Antwerpen,BE,2019-04-17 03:00:00+00:00,BETR801,pm25,9.0,µg/m³
+Antwerpen,BE,2019-04-17 02:00:00+00:00,BETR801,pm25,8.5,µg/m³
+Antwerpen,BE,2019-04-17 01:00:00+00:00,BETR801,pm25,8.0,µg/m³
+Antwerpen,BE,2019-04-16 02:00:00+00:00,BETR801,pm25,23.0,µg/m³
+Antwerpen,BE,2019-04-16 01:00:00+00:00,BETR801,pm25,24.0,µg/m³
+Antwerpen,BE,2019-04-15 15:00:00+00:00,BETR801,pm25,26.5,µg/m³
+Antwerpen,BE,2019-04-15 14:00:00+00:00,BETR801,pm25,25.5,µg/m³
+Antwerpen,BE,2019-04-15 13:00:00+00:00,BETR801,pm25,26.5,µg/m³
+Antwerpen,BE,2019-04-15 12:00:00+00:00,BETR801,pm25,26.5,µg/m³
+Antwerpen,BE,2019-04-15 11:00:00+00:00,BETR801,pm25,26.0,µg/m³
+Antwerpen,BE,2019-04-15 10:00:00+00:00,BETR801,pm25,26.0,µg/m³
+Antwerpen,BE,2019-04-15 09:00:00+00:00,BETR801,pm25,21.5,µg/m³
+Antwerpen,BE,2019-04-15 08:00:00+00:00,BETR801,pm25,24.0,µg/m³
+Antwerpen,BE,2019-04-15 07:00:00+00:00,BETR801,pm25,24.0,µg/m³
+Antwerpen,BE,2019-04-15 06:00:00+00:00,BETR801,pm25,23.0,µg/m³
+Antwerpen,BE,2019-04-15 05:00:00+00:00,BETR801,pm25,23.0,µg/m³
+Antwerpen,BE,2019-04-15 04:00:00+00:00,BETR801,pm25,23.5,µg/m³
+Antwerpen,BE,2019-04-15 03:00:00+00:00,BETR801,pm25,24.5,µg/m³
+Antwerpen,BE,2019-04-15 02:00:00+00:00,BETR801,pm25,24.5,µg/m³
+Antwerpen,BE,2019-04-15 01:00:00+00:00,BETR801,pm25,25.5,µg/m³
+Antwerpen,BE,2019-04-12 02:00:00+00:00,BETR801,pm25,22.0,µg/m³
+Antwerpen,BE,2019-04-12 01:00:00+00:00,BETR801,pm25,22.0,µg/m³
+Antwerpen,BE,2019-04-11 02:00:00+00:00,BETR801,pm25,10.0,µg/m³
+Antwerpen,BE,2019-04-11 01:00:00+00:00,BETR801,pm25,9.0,µg/m³
+Antwerpen,BE,2019-04-10 02:00:00+00:00,BETR801,pm25,26.0,µg/m³
+Antwerpen,BE,2019-04-10 01:00:00+00:00,BETR801,pm25,24.5,µg/m³
+Antwerpen,BE,2019-04-09 13:00:00+00:00,BETR801,pm25,38.0,µg/m³
+Antwerpen,BE,2019-04-09 12:00:00+00:00,BETR801,pm25,41.5,µg/m³
+Antwerpen,BE,2019-04-09 11:00:00+00:00,BETR801,pm25,45.0,µg/m³
+Antwerpen,BE,2019-04-09 10:00:00+00:00,BETR801,pm25,44.5,µg/m³
+Antwerpen,BE,2019-04-09 09:00:00+00:00,BETR801,pm25,43.0,µg/m³
+Antwerpen,BE,2019-04-09 08:00:00+00:00,BETR801,pm25,44.0,µg/m³
+Antwerpen,BE,2019-04-09 07:00:00+00:00,BETR801,pm25,46.5,µg/m³
+Antwerpen,BE,2019-04-09 06:00:00+00:00,BETR801,pm25,52.5,µg/m³
+Antwerpen,BE,2019-04-09 05:00:00+00:00,BETR801,pm25,68.0,µg/m³
+Antwerpen,BE,2019-04-09 04:00:00+00:00,BETR801,pm25,83.5,µg/m³
+Antwerpen,BE,2019-04-09 03:00:00+00:00,BETR801,pm25,99.0,µg/m³
+Antwerpen,BE,2019-04-09 02:00:00+00:00,BETR801,pm25,91.5,µg/m³
+Antwerpen,BE,2019-04-09 01:00:00+00:00,BETR801,pm25,76.0,µg/m³
+London,GB,2019-06-21 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-20 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-20 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-20 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-19 13:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-06-19 12:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-06-19 11:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-06-19 00:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-06-18 23:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-06-18 22:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-06-18 21:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-18 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 04:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 03:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 02:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 01:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 20:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 18:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 17:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 16:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-15 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 22:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 20:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 18:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 17:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 16:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 12:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 04:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-14 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-14 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 12:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-13 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-13 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 09:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-13 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 04:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 12:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 18:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 17:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 16:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 12:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-08 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-08 04:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-08 03:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-08 02:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-08 00:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-07 23:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-07 21:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-07 20:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-07 19:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-07 18:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 17:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 16:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 15:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 14:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 13:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 12:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-06-07 11:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-06-07 10:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-06-07 09:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-06-07 08:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-06-07 07:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-06-07 06:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-06-07 05:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-06-07 04:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-06-07 03:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-07 02:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-07 01:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-07 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 22:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 20:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-06 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-06 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-05 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-05 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-05 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-05 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 04:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-05 03:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-05 02:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-05 01:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 00:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 23:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 22:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-04 21:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-04 20:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-04 19:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-04 18:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-04 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 04:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 06:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-01 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 12:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 04:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 03:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 02:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 01:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 22:00:00+00:00,London Westminster,pm25,5.0,µg/m³
+London,GB,2019-05-31 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 20:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 18:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 17:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 16:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 06:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 06:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-29 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-29 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-29 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-29 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-29 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 04:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 03:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 02:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 01:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 22:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 20:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 18:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 17:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 16:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 12:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 04:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 03:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 02:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 01:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-25 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-25 22:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-25 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-25 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-25 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-25 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-25 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-25 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 04:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 03:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-25 02:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-25 01:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-25 00:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-24 23:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-24 22:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-24 21:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 20:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 19:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 18:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 06:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 06:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 10:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-21 09:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-21 08:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-21 07:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-21 06:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-21 05:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-21 04:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-21 03:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-21 02:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-21 01:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-21 00:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 23:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 22:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 21:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 20:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 19:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 18:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 17:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-20 16:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-20 15:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 14:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 13:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 12:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 11:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 10:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-20 09:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 08:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-20 07:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-20 06:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-20 05:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-20 04:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-20 03:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-20 02:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-20 01:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-20 00:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 23:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 22:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 21:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 20:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 19:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 18:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 17:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 16:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 15:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 14:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 13:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 12:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 11:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 10:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 09:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 08:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 07:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 06:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 05:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-19 04:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-19 03:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-19 02:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-19 01:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-19 00:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 23:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 22:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 21:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 20:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 19:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 18:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 17:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 16:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 15:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 14:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 13:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 12:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 11:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 10:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 09:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-18 08:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-18 07:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-18 06:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-18 05:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-18 04:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-18 03:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-18 02:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-18 01:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-18 00:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-17 23:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-17 22:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-17 21:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-17 20:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-17 19:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-17 18:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 17:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 16:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 15:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 08:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 07:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 06:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 05:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 04:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 03:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 02:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 01:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-17 00:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-16 23:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-16 22:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-16 21:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-16 20:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-16 19:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-16 18:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-16 17:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-16 16:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-16 15:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-16 14:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-16 13:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 12:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 11:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 10:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 09:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 08:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 07:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 06:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 05:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 04:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 03:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 02:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-16 01:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-16 00:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-15 23:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-15 22:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-15 21:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-15 20:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-15 19:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-15 18:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-15 17:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-15 16:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-15 15:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-15 14:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-15 13:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-15 12:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-15 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-15 10:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-15 09:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-15 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 04:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 03:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 02:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 00:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-14 23:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-14 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-14 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-14 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-14 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-14 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-14 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-13 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-13 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-13 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-13 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-13 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-13 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-13 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-12 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-12 22:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 21:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 20:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 19:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 18:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 13:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-12 12:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-12 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-12 10:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-12 09:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-12 08:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-12 07:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-12 06:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-12 05:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-12 04:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-12 03:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-12 02:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-12 01:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-12 00:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-11 23:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-11 22:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 21:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 20:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 19:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 18:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 17:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 16:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 15:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-11 09:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 08:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 07:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 06:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-11 05:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-11 04:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-11 03:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-11 02:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-11 01:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-11 00:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-10 23:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-10 22:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-10 21:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-10 20:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-10 19:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-10 18:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 17:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 16:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 15:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 14:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 13:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 12:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 11:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 10:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-10 09:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 08:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 07:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 06:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 05:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 04:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 03:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 02:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 01:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-10 00:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-09 23:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-09 22:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-09 21:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-09 20:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 19:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 18:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 17:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 16:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 15:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 14:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 13:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 12:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 04:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 03:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 02:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 00:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 23:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 21:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 20:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 19:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 18:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 14:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 13:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 12:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 10:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 09:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 08:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 07:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 06:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 05:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 04:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-08 03:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-08 02:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 01:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 00:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 23:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 21:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 20:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 19:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-07 18:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-07 17:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 16:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 15:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 14:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 13:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 12:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 10:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 09:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 08:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-07 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-07 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-07 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-07 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-07 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-06 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-06 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-06 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-06 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-06 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-06 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-06 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-06 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-06 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-06 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-06 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-06 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-06 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-06 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-06 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-06 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-06 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-06 06:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-06 05:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-06 04:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-06 03:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-06 02:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-06 01:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-06 00:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-05 23:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-05 22:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-05 21:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-05 20:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-05 19:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-05 18:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-05 17:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-05 16:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-05 15:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-05 14:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-05 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-05 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-05 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-05 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-05 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-05 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-05 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-05 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-05 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-05 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-05 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-05 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-05 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-05 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-04 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-04 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-04 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-04 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-04 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-04 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-04 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-04 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-04 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-04 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-04 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-04 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-04 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-04 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-04 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-04 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-04 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-04 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-04 05:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-04 04:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-04 03:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-04 02:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-04 01:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-04 00:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 23:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 22:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 21:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 20:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 19:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 18:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 17:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 16:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 15:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 14:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 13:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-03 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-03 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-03 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-03 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-03 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-03 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-03 06:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-03 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-03 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-03 03:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-03 02:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-03 01:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-03 00:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-02 23:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-02 22:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-02 21:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-02 20:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-02 19:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-02 18:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-02 17:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-02 16:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-02 15:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-02 14:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-02 13:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-02 12:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-02 11:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-02 10:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-02 09:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-02 08:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-02 07:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-02 06:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-02 05:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-02 04:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-02 03:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-02 02:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-02 01:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-02 00:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-01 23:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-01 22:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-01 21:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-01 20:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-01 19:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-01 18:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-01 17:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-01 16:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-01 15:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-01 14:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-01 13:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-01 12:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-01 11:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-01 10:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-01 09:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-01 08:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-01 07:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-01 06:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-01 05:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-01 04:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-01 03:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-01 00:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-04-30 23:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-04-30 22:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 21:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 20:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 19:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 18:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 17:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 16:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 15:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 14:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 13:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 12:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 11:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 10:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 09:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-30 08:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-04-30 07:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-04-30 06:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-04-30 05:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-04-30 04:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-04-30 03:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-04-30 02:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-04-30 01:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-04-30 00:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-04-29 23:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-29 22:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-29 21:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-29 20:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-29 19:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-29 18:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-29 17:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-29 16:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-29 15:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-29 14:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-29 13:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-29 12:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-29 11:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-29 10:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-29 09:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-29 08:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-29 07:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-29 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-04-29 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-04-29 04:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-04-29 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-04-29 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-04-29 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-04-29 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-04-28 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-04-28 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-04-28 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-04-28 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-28 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-28 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-28 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-28 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-28 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-04-28 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-04-28 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-28 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-28 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-28 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-28 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-27 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-26 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-04-25 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-04-25 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-04-25 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-04-25 07:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-25 06:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-25 05:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-25 04:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-04-25 03:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-04-25 02:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-04-25 00:00:00+00:00,London Westminster,pm25,21.0,µg/m³
+London,GB,2019-04-24 23:00:00+00:00,London Westminster,pm25,22.0,µg/m³
+London,GB,2019-04-24 22:00:00+00:00,London Westminster,pm25,23.0,µg/m³
+London,GB,2019-04-24 21:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-24 20:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-24 19:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-24 18:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-24 17:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-24 16:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-24 15:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-24 14:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-24 13:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-24 12:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-24 11:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-24 10:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-24 09:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-24 08:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-24 07:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-24 06:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-24 05:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-24 04:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-24 03:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-24 02:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-24 00:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-23 23:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-23 22:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-23 21:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-23 20:00:00+00:00,London Westminster,pm25,30.0,µg/m³
+London,GB,2019-04-23 19:00:00+00:00,London Westminster,pm25,32.0,µg/m³
+London,GB,2019-04-23 18:00:00+00:00,London Westminster,pm25,33.0,µg/m³
+London,GB,2019-04-23 17:00:00+00:00,London Westminster,pm25,33.0,µg/m³
+London,GB,2019-04-23 16:00:00+00:00,London Westminster,pm25,34.0,µg/m³
+London,GB,2019-04-23 15:00:00+00:00,London Westminster,pm25,35.0,µg/m³
+London,GB,2019-04-23 14:00:00+00:00,London Westminster,pm25,35.0,µg/m³
+London,GB,2019-04-23 13:00:00+00:00,London Westminster,pm25,34.0,µg/m³
+London,GB,2019-04-23 12:00:00+00:00,London Westminster,pm25,34.0,µg/m³
+London,GB,2019-04-23 11:00:00+00:00,London Westminster,pm25,35.0,µg/m³
+London,GB,2019-04-23 10:00:00+00:00,London Westminster,pm25,35.0,µg/m³
+London,GB,2019-04-23 09:00:00+00:00,London Westminster,pm25,36.0,µg/m³
+London,GB,2019-04-23 08:00:00+00:00,London Westminster,pm25,37.0,µg/m³
+London,GB,2019-04-23 07:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-23 06:00:00+00:00,London Westminster,pm25,40.0,µg/m³
+London,GB,2019-04-23 05:00:00+00:00,London Westminster,pm25,41.0,µg/m³
+London,GB,2019-04-23 04:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-23 03:00:00+00:00,London Westminster,pm25,44.0,µg/m³
+London,GB,2019-04-23 02:00:00+00:00,London Westminster,pm25,45.0,µg/m³
+London,GB,2019-04-23 01:00:00+00:00,London Westminster,pm25,45.0,µg/m³
+London,GB,2019-04-23 00:00:00+00:00,London Westminster,pm25,45.0,µg/m³
+London,GB,2019-04-22 23:00:00+00:00,London Westminster,pm25,44.0,µg/m³
+London,GB,2019-04-22 22:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-22 21:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-22 20:00:00+00:00,London Westminster,pm25,42.0,µg/m³
+London,GB,2019-04-22 19:00:00+00:00,London Westminster,pm25,41.0,µg/m³
+London,GB,2019-04-22 18:00:00+00:00,London Westminster,pm25,40.0,µg/m³
+London,GB,2019-04-22 17:00:00+00:00,London Westminster,pm25,39.0,µg/m³
+London,GB,2019-04-22 16:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-22 15:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-22 14:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-22 13:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-22 12:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-22 11:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-22 10:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-22 09:00:00+00:00,London Westminster,pm25,37.0,µg/m³
+London,GB,2019-04-22 08:00:00+00:00,London Westminster,pm25,37.0,µg/m³
+London,GB,2019-04-22 07:00:00+00:00,London Westminster,pm25,36.0,µg/m³
+London,GB,2019-04-22 06:00:00+00:00,London Westminster,pm25,35.0,µg/m³
+London,GB,2019-04-22 05:00:00+00:00,London Westminster,pm25,33.0,µg/m³
+London,GB,2019-04-22 04:00:00+00:00,London Westminster,pm25,32.0,µg/m³
+London,GB,2019-04-22 03:00:00+00:00,London Westminster,pm25,30.0,µg/m³
+London,GB,2019-04-22 02:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-22 01:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-22 00:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-21 23:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-21 22:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-21 21:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-21 20:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-21 19:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-21 18:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-21 17:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-21 16:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-21 15:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-21 14:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-21 13:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-21 12:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-21 11:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-21 10:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-21 09:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-21 08:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-21 07:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-21 06:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-21 05:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-21 04:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-21 03:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-21 02:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-21 01:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-21 00:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-20 23:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-20 22:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-20 21:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-20 20:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-20 19:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-20 18:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-20 17:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-20 16:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-20 15:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-20 14:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-20 13:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-20 12:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-20 11:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-20 10:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-20 09:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-20 08:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-20 07:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-20 06:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-20 05:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-20 04:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-20 03:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-20 02:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-20 01:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-20 00:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-19 23:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-19 22:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-19 21:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-19 20:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-19 19:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-19 18:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-19 17:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-19 16:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-19 15:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-19 14:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-19 13:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-19 12:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-19 11:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-19 10:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-19 09:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-19 08:00:00+00:00,London Westminster,pm25,30.0,µg/m³
+London,GB,2019-04-19 07:00:00+00:00,London Westminster,pm25,30.0,µg/m³
+London,GB,2019-04-19 06:00:00+00:00,London Westminster,pm25,31.0,µg/m³
+London,GB,2019-04-19 05:00:00+00:00,London Westminster,pm25,32.0,µg/m³
+London,GB,2019-04-19 04:00:00+00:00,London Westminster,pm25,34.0,µg/m³
+London,GB,2019-04-19 03:00:00+00:00,London Westminster,pm25,35.0,µg/m³
+London,GB,2019-04-19 02:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-19 00:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-18 23:00:00+00:00,London Westminster,pm25,45.0,µg/m³
+London,GB,2019-04-18 22:00:00+00:00,London Westminster,pm25,47.0,µg/m³
+London,GB,2019-04-18 21:00:00+00:00,London Westminster,pm25,49.0,µg/m³
+London,GB,2019-04-18 20:00:00+00:00,London Westminster,pm25,50.0,µg/m³
+London,GB,2019-04-18 19:00:00+00:00,London Westminster,pm25,51.0,µg/m³
+London,GB,2019-04-18 18:00:00+00:00,London Westminster,pm25,51.0,µg/m³
+London,GB,2019-04-18 17:00:00+00:00,London Westminster,pm25,51.0,µg/m³
+London,GB,2019-04-18 16:00:00+00:00,London Westminster,pm25,52.0,µg/m³
+London,GB,2019-04-18 15:00:00+00:00,London Westminster,pm25,53.0,µg/m³
+London,GB,2019-04-18 14:00:00+00:00,London Westminster,pm25,53.0,µg/m³
+London,GB,2019-04-18 13:00:00+00:00,London Westminster,pm25,53.0,µg/m³
+London,GB,2019-04-18 12:00:00+00:00,London Westminster,pm25,54.0,µg/m³
+London,GB,2019-04-18 11:00:00+00:00,London Westminster,pm25,55.0,µg/m³
+London,GB,2019-04-18 10:00:00+00:00,London Westminster,pm25,55.0,µg/m³
+London,GB,2019-04-18 09:00:00+00:00,London Westminster,pm25,55.0,µg/m³
+London,GB,2019-04-18 08:00:00+00:00,London Westminster,pm25,55.0,µg/m³
+London,GB,2019-04-18 07:00:00+00:00,London Westminster,pm25,55.0,µg/m³
+London,GB,2019-04-18 06:00:00+00:00,London Westminster,pm25,54.0,µg/m³
+London,GB,2019-04-18 05:00:00+00:00,London Westminster,pm25,53.0,µg/m³
+London,GB,2019-04-18 04:00:00+00:00,London Westminster,pm25,52.0,µg/m³
+London,GB,2019-04-18 03:00:00+00:00,London Westminster,pm25,50.0,µg/m³
+London,GB,2019-04-18 02:00:00+00:00,London Westminster,pm25,48.0,µg/m³
+London,GB,2019-04-18 01:00:00+00:00,London Westminster,pm25,46.0,µg/m³
+London,GB,2019-04-18 00:00:00+00:00,London Westminster,pm25,44.0,µg/m³
+London,GB,2019-04-17 23:00:00+00:00,London Westminster,pm25,42.0,µg/m³
+London,GB,2019-04-17 22:00:00+00:00,London Westminster,pm25,41.0,µg/m³
+London,GB,2019-04-17 21:00:00+00:00,London Westminster,pm25,40.0,µg/m³
+London,GB,2019-04-17 20:00:00+00:00,London Westminster,pm25,39.0,µg/m³
+London,GB,2019-04-17 19:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-17 18:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-17 17:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-17 16:00:00+00:00,London Westminster,pm25,37.0,µg/m³
+London,GB,2019-04-17 15:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-17 14:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-17 13:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-17 12:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-17 11:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-17 10:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-17 09:00:00+00:00,London Westminster,pm25,39.0,µg/m³
+London,GB,2019-04-17 08:00:00+00:00,London Westminster,pm25,39.0,µg/m³
+London,GB,2019-04-17 07:00:00+00:00,London Westminster,pm25,40.0,µg/m³
+London,GB,2019-04-17 06:00:00+00:00,London Westminster,pm25,40.0,µg/m³
+London,GB,2019-04-17 05:00:00+00:00,London Westminster,pm25,41.0,µg/m³
+London,GB,2019-04-17 04:00:00+00:00,London Westminster,pm25,42.0,µg/m³
+London,GB,2019-04-17 03:00:00+00:00,London Westminster,pm25,42.0,µg/m³
+London,GB,2019-04-17 02:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-17 00:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-16 23:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-16 22:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-16 21:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-16 20:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-16 19:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-16 18:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-16 17:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-16 15:00:00+00:00,London Westminster,pm25,41.0,µg/m³
+London,GB,2019-04-16 14:00:00+00:00,London Westminster,pm25,41.0,µg/m³
+London,GB,2019-04-16 13:00:00+00:00,London Westminster,pm25,41.0,µg/m³
+London,GB,2019-04-16 12:00:00+00:00,London Westminster,pm25,40.0,µg/m³
+London,GB,2019-04-16 11:00:00+00:00,London Westminster,pm25,40.0,µg/m³
+London,GB,2019-04-16 10:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-16 09:00:00+00:00,London Westminster,pm25,37.0,µg/m³
+London,GB,2019-04-16 08:00:00+00:00,London Westminster,pm25,36.0,µg/m³
+London,GB,2019-04-16 07:00:00+00:00,London Westminster,pm25,36.0,µg/m³
+London,GB,2019-04-16 06:00:00+00:00,London Westminster,pm25,35.0,µg/m³
+London,GB,2019-04-16 05:00:00+00:00,London Westminster,pm25,34.0,µg/m³
+London,GB,2019-04-16 04:00:00+00:00,London Westminster,pm25,32.0,µg/m³
+London,GB,2019-04-16 03:00:00+00:00,London Westminster,pm25,32.0,µg/m³
+London,GB,2019-04-16 02:00:00+00:00,London Westminster,pm25,31.0,µg/m³
+London,GB,2019-04-16 00:00:00+00:00,London Westminster,pm25,30.0,µg/m³
+London,GB,2019-04-15 23:00:00+00:00,London Westminster,pm25,30.0,µg/m³
+London,GB,2019-04-15 22:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-15 21:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-15 20:00:00+00:00,London Westminster,pm25,30.0,µg/m³
+London,GB,2019-04-15 19:00:00+00:00,London Westminster,pm25,30.0,µg/m³
+London,GB,2019-04-15 18:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-15 17:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-15 16:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-15 15:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-15 14:00:00+00:00,London Westminster,pm25,28.0,µg/m³
+London,GB,2019-04-15 13:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-15 12:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-15 11:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-15 10:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-15 09:00:00+00:00,London Westminster,pm25,25.0,µg/m³
+London,GB,2019-04-15 08:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-15 07:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-15 06:00:00+00:00,London Westminster,pm25,23.0,µg/m³
+London,GB,2019-04-15 05:00:00+00:00,London Westminster,pm25,22.0,µg/m³
+London,GB,2019-04-15 04:00:00+00:00,London Westminster,pm25,22.0,µg/m³
+London,GB,2019-04-15 03:00:00+00:00,London Westminster,pm25,21.0,µg/m³
+London,GB,2019-04-15 02:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-04-15 01:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-15 00:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-04-14 23:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-04-14 22:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-04-14 21:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-04-14 20:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-14 19:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-14 18:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-14 17:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-14 16:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-14 15:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-14 14:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-14 13:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-14 12:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-14 11:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-14 10:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-14 09:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-14 08:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-14 07:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-14 06:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-14 05:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-14 04:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-14 03:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-14 02:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-14 01:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-14 00:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-13 23:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 22:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 21:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 20:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 19:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 18:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 17:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 16:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-13 15:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-13 14:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-13 13:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-13 12:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-13 11:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-13 10:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-13 09:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-13 08:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 07:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 06:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 05:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 04:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 03:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 02:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 01:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-13 00:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 23:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 22:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 21:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 20:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 19:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 18:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 17:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 16:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 15:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 14:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 13:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-12 12:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-12 11:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-12 10:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-12 09:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-12 08:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-12 07:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-12 06:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-12 05:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-12 04:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-12 03:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-12 00:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-11 23:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-11 22:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 21:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 20:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 19:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 18:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 17:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 16:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 15:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 14:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 13:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-04-11 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-04-11 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-04-11 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-04-11 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-04-11 07:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 06:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 05:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 04:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-04-11 03:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-11 02:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-11 00:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-04-10 23:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-10 22:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-04-10 21:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-10 20:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-10 19:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-10 18:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-10 17:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-04-10 16:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-10 15:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-04-10 14:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-04-10 13:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-04-10 12:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-04-10 11:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-04-10 10:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-04-10 09:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-04-10 08:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-04-10 07:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-04-10 06:00:00+00:00,London Westminster,pm25,21.0,µg/m³
+London,GB,2019-04-10 05:00:00+00:00,London Westminster,pm25,22.0,µg/m³
+London,GB,2019-04-10 04:00:00+00:00,London Westminster,pm25,24.0,µg/m³
+London,GB,2019-04-10 03:00:00+00:00,London Westminster,pm25,26.0,µg/m³
+London,GB,2019-04-10 02:00:00+00:00,London Westminster,pm25,27.0,µg/m³
+London,GB,2019-04-10 01:00:00+00:00,London Westminster,pm25,29.0,µg/m³
+London,GB,2019-04-10 00:00:00+00:00,London Westminster,pm25,30.0,µg/m³
+London,GB,2019-04-09 23:00:00+00:00,London Westminster,pm25,32.0,µg/m³
+London,GB,2019-04-09 22:00:00+00:00,London Westminster,pm25,34.0,µg/m³
+London,GB,2019-04-09 21:00:00+00:00,London Westminster,pm25,35.0,µg/m³
+London,GB,2019-04-09 20:00:00+00:00,London Westminster,pm25,36.0,µg/m³
+London,GB,2019-04-09 19:00:00+00:00,London Westminster,pm25,37.0,µg/m³
+London,GB,2019-04-09 18:00:00+00:00,London Westminster,pm25,38.0,µg/m³
+London,GB,2019-04-09 17:00:00+00:00,London Westminster,pm25,39.0,µg/m³
+London,GB,2019-04-09 16:00:00+00:00,London Westminster,pm25,39.0,µg/m³
+London,GB,2019-04-09 15:00:00+00:00,London Westminster,pm25,40.0,µg/m³
+London,GB,2019-04-09 14:00:00+00:00,London Westminster,pm25,41.0,µg/m³
+London,GB,2019-04-09 13:00:00+00:00,London Westminster,pm25,41.0,µg/m³
+London,GB,2019-04-09 12:00:00+00:00,London Westminster,pm25,42.0,µg/m³
+London,GB,2019-04-09 11:00:00+00:00,London Westminster,pm25,42.0,µg/m³
+London,GB,2019-04-09 10:00:00+00:00,London Westminster,pm25,42.0,µg/m³
+London,GB,2019-04-09 09:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-09 08:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-09 07:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-09 06:00:00+00:00,London Westminster,pm25,44.0,µg/m³
+London,GB,2019-04-09 05:00:00+00:00,London Westminster,pm25,44.0,µg/m³
+London,GB,2019-04-09 04:00:00+00:00,London Westminster,pm25,43.0,µg/m³
+London,GB,2019-04-09 03:00:00+00:00,London Westminster,pm25,42.0,µg/m³
+London,GB,2019-04-09 02:00:00+00:00,London Westminster,pm25,42.0,µg/m³
+Paris,FR,2019-06-21 00:00:00+00:00,FR04014,no2,20.0,µg/m³
+Paris,FR,2019-06-20 23:00:00+00:00,FR04014,no2,21.8,µg/m³
+Paris,FR,2019-06-20 22:00:00+00:00,FR04014,no2,26.5,µg/m³
+Paris,FR,2019-06-20 21:00:00+00:00,FR04014,no2,24.9,µg/m³
+Paris,FR,2019-06-20 20:00:00+00:00,FR04014,no2,21.4,µg/m³
+Paris,FR,2019-06-20 19:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-06-20 18:00:00+00:00,FR04014,no2,23.9,µg/m³
+Paris,FR,2019-06-20 17:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-06-20 16:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-06-20 15:00:00+00:00,FR04014,no2,19.3,µg/m³
+Paris,FR,2019-06-20 14:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-06-20 13:00:00+00:00,FR04014,no2,19.4,µg/m³
+Paris,FR,2019-06-19 10:00:00+00:00,FR04014,no2,26.6,µg/m³
+Paris,FR,2019-06-19 09:00:00+00:00,FR04014,no2,27.3,µg/m³
+Paris,FR,2019-06-18 22:00:00+00:00,FR04014,no2,39.3,µg/m³
+Paris,FR,2019-06-18 21:00:00+00:00,FR04014,no2,23.1,µg/m³
+Paris,FR,2019-06-18 20:00:00+00:00,FR04014,no2,17.0,µg/m³
+Paris,FR,2019-06-18 19:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-06-18 08:00:00+00:00,FR04014,no2,49.6,µg/m³
+Paris,FR,2019-06-18 07:00:00+00:00,FR04014,no2,52.6,µg/m³
+Paris,FR,2019-06-18 06:00:00+00:00,FR04014,no2,51.4,µg/m³
+Paris,FR,2019-06-18 05:00:00+00:00,FR04014,no2,33.8,µg/m³
+Paris,FR,2019-06-18 04:00:00+00:00,FR04014,no2,26.5,µg/m³
+Paris,FR,2019-06-18 03:00:00+00:00,FR04014,no2,45.5,µg/m³
+Paris,FR,2019-06-18 02:00:00+00:00,FR04014,no2,39.8,µg/m³
+Paris,FR,2019-06-18 01:00:00+00:00,FR04014,no2,60.1,µg/m³
+Paris,FR,2019-06-18 00:00:00+00:00,FR04014,no2,66.2,µg/m³
+Paris,FR,2019-06-17 23:00:00+00:00,FR04014,no2,73.3,µg/m³
+Paris,FR,2019-06-17 22:00:00+00:00,FR04014,no2,51.0,µg/m³
+Paris,FR,2019-06-17 21:00:00+00:00,FR04014,no2,38.3,µg/m³
+Paris,FR,2019-06-17 20:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-06-17 19:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-06-17 18:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-06-17 17:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-06-17 16:00:00+00:00,FR04014,no2,11.9,µg/m³
+Paris,FR,2019-06-17 15:00:00+00:00,FR04014,no2,13.1,µg/m³
+Paris,FR,2019-06-17 14:00:00+00:00,FR04014,no2,11.5,µg/m³
+Paris,FR,2019-06-17 13:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-06-17 12:00:00+00:00,FR04014,no2,10.1,µg/m³
+Paris,FR,2019-06-17 11:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-06-17 10:00:00+00:00,FR04014,no2,16.0,µg/m³
+Paris,FR,2019-06-17 09:00:00+00:00,FR04014,no2,30.4,µg/m³
+Paris,FR,2019-06-17 08:00:00+00:00,FR04014,no2,51.6,µg/m³
+Paris,FR,2019-06-17 07:00:00+00:00,FR04014,no2,54.4,µg/m³
+Paris,FR,2019-06-17 06:00:00+00:00,FR04014,no2,52.3,µg/m³
+Paris,FR,2019-06-17 05:00:00+00:00,FR04014,no2,44.8,µg/m³
+Paris,FR,2019-06-17 04:00:00+00:00,FR04014,no2,45.7,µg/m³
+Paris,FR,2019-06-17 03:00:00+00:00,FR04014,no2,49.1,µg/m³
+Paris,FR,2019-06-17 02:00:00+00:00,FR04014,no2,53.1,µg/m³
+Paris,FR,2019-06-17 01:00:00+00:00,FR04014,no2,58.8,µg/m³
+Paris,FR,2019-06-17 00:00:00+00:00,FR04014,no2,69.3,µg/m³
+Paris,FR,2019-06-16 23:00:00+00:00,FR04014,no2,67.3,µg/m³
+Paris,FR,2019-06-16 22:00:00+00:00,FR04014,no2,56.6,µg/m³
+Paris,FR,2019-06-16 21:00:00+00:00,FR04014,no2,42.7,µg/m³
+Paris,FR,2019-06-16 20:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-06-16 19:00:00+00:00,FR04014,no2,14.4,µg/m³
+Paris,FR,2019-06-16 18:00:00+00:00,FR04014,no2,12.3,µg/m³
+Paris,FR,2019-06-16 17:00:00+00:00,FR04014,no2,11.8,µg/m³
+Paris,FR,2019-06-16 16:00:00+00:00,FR04014,no2,9.2,µg/m³
+Paris,FR,2019-06-16 15:00:00+00:00,FR04014,no2,8.4,µg/m³
+Paris,FR,2019-06-16 14:00:00+00:00,FR04014,no2,8.1,µg/m³
+Paris,FR,2019-06-16 13:00:00+00:00,FR04014,no2,8.7,µg/m³
+Paris,FR,2019-06-16 12:00:00+00:00,FR04014,no2,11.2,µg/m³
+Paris,FR,2019-06-16 11:00:00+00:00,FR04014,no2,12.9,µg/m³
+Paris,FR,2019-06-16 10:00:00+00:00,FR04014,no2,8.7,µg/m³
+Paris,FR,2019-06-16 09:00:00+00:00,FR04014,no2,9.4,µg/m³
+Paris,FR,2019-06-16 08:00:00+00:00,FR04014,no2,9.9,µg/m³
+Paris,FR,2019-06-16 07:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-06-16 06:00:00+00:00,FR04014,no2,11.6,µg/m³
+Paris,FR,2019-06-16 05:00:00+00:00,FR04014,no2,14.0,µg/m³
+Paris,FR,2019-06-16 04:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-16 03:00:00+00:00,FR04014,no2,11.2,µg/m³
+Paris,FR,2019-06-16 02:00:00+00:00,FR04014,no2,11.4,µg/m³
+Paris,FR,2019-06-16 01:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-06-16 00:00:00+00:00,FR04014,no2,16.5,µg/m³
+Paris,FR,2019-06-15 23:00:00+00:00,FR04014,no2,22.6,µg/m³
+Paris,FR,2019-06-15 22:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-06-15 21:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-06-15 20:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-06-15 19:00:00+00:00,FR04014,no2,14.2,µg/m³
+Paris,FR,2019-06-15 18:00:00+00:00,FR04014,no2,14.0,µg/m³
+Paris,FR,2019-06-15 17:00:00+00:00,FR04014,no2,11.1,µg/m³
+Paris,FR,2019-06-15 16:00:00+00:00,FR04014,no2,10.7,µg/m³
+Paris,FR,2019-06-15 15:00:00+00:00,FR04014,no2,10.5,µg/m³
+Paris,FR,2019-06-15 14:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-06-15 13:00:00+00:00,FR04014,no2,9.0,µg/m³
+Paris,FR,2019-06-15 12:00:00+00:00,FR04014,no2,9.4,µg/m³
+Paris,FR,2019-06-15 11:00:00+00:00,FR04014,no2,11.1,µg/m³
+Paris,FR,2019-06-15 10:00:00+00:00,FR04014,no2,12.1,µg/m³
+Paris,FR,2019-06-15 09:00:00+00:00,FR04014,no2,14.0,µg/m³
+Paris,FR,2019-06-15 08:00:00+00:00,FR04014,no2,17.6,µg/m³
+Paris,FR,2019-06-15 07:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-06-15 06:00:00+00:00,FR04014,no2,35.8,µg/m³
+Paris,FR,2019-06-15 02:00:00+00:00,FR04014,no2,33.9,µg/m³
+Paris,FR,2019-06-15 01:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-06-15 00:00:00+00:00,FR04014,no2,29.6,µg/m³
+Paris,FR,2019-06-14 23:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-06-14 22:00:00+00:00,FR04014,no2,35.3,µg/m³
+Paris,FR,2019-06-14 21:00:00+00:00,FR04014,no2,55.0,µg/m³
+Paris,FR,2019-06-14 20:00:00+00:00,FR04014,no2,41.9,µg/m³
+Paris,FR,2019-06-14 19:00:00+00:00,FR04014,no2,25.0,µg/m³
+Paris,FR,2019-06-14 18:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-06-14 17:00:00+00:00,FR04014,no2,16.6,µg/m³
+Paris,FR,2019-06-14 16:00:00+00:00,FR04014,no2,18.9,µg/m³
+Paris,FR,2019-06-14 15:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-06-14 14:00:00+00:00,FR04014,no2,14.2,µg/m³
+Paris,FR,2019-06-14 13:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-06-14 12:00:00+00:00,FR04014,no2,17.1,µg/m³
+Paris,FR,2019-06-14 11:00:00+00:00,FR04014,no2,21.8,µg/m³
+Paris,FR,2019-06-14 10:00:00+00:00,FR04014,no2,25.1,µg/m³
+Paris,FR,2019-06-14 09:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-06-14 08:00:00+00:00,FR04014,no2,34.3,µg/m³
+Paris,FR,2019-06-14 07:00:00+00:00,FR04014,no2,51.5,µg/m³
+Paris,FR,2019-06-14 06:00:00+00:00,FR04014,no2,64.3,µg/m³
+Paris,FR,2019-06-14 05:00:00+00:00,FR04014,no2,49.3,µg/m³
+Paris,FR,2019-06-14 04:00:00+00:00,FR04014,no2,37.9,µg/m³
+Paris,FR,2019-06-14 03:00:00+00:00,FR04014,no2,48.5,µg/m³
+Paris,FR,2019-06-14 02:00:00+00:00,FR04014,no2,66.6,µg/m³
+Paris,FR,2019-06-14 01:00:00+00:00,FR04014,no2,68.1,µg/m³
+Paris,FR,2019-06-14 00:00:00+00:00,FR04014,no2,74.2,µg/m³
+Paris,FR,2019-06-13 23:00:00+00:00,FR04014,no2,78.3,µg/m³
+Paris,FR,2019-06-13 22:00:00+00:00,FR04014,no2,77.9,µg/m³
+Paris,FR,2019-06-13 21:00:00+00:00,FR04014,no2,58.8,µg/m³
+Paris,FR,2019-06-13 20:00:00+00:00,FR04014,no2,31.5,µg/m³
+Paris,FR,2019-06-13 19:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-06-13 18:00:00+00:00,FR04014,no2,24.0,µg/m³
+Paris,FR,2019-06-13 17:00:00+00:00,FR04014,no2,38.2,µg/m³
+Paris,FR,2019-06-13 16:00:00+00:00,FR04014,no2,36.1,µg/m³
+Paris,FR,2019-06-13 15:00:00+00:00,FR04014,no2,28.8,µg/m³
+Paris,FR,2019-06-13 14:00:00+00:00,FR04014,no2,19.4,µg/m³
+Paris,FR,2019-06-13 13:00:00+00:00,FR04014,no2,18.2,µg/m³
+Paris,FR,2019-06-13 12:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-06-13 11:00:00+00:00,FR04014,no2,22.7,µg/m³
+Paris,FR,2019-06-13 10:00:00+00:00,FR04014,no2,24.5,µg/m³
+Paris,FR,2019-06-13 09:00:00+00:00,FR04014,no2,30.2,µg/m³
+Paris,FR,2019-06-13 08:00:00+00:00,FR04014,no2,35.3,µg/m³
+Paris,FR,2019-06-13 07:00:00+00:00,FR04014,no2,40.9,µg/m³
+Paris,FR,2019-06-13 06:00:00+00:00,FR04014,no2,39.8,µg/m³
+Paris,FR,2019-06-13 05:00:00+00:00,FR04014,no2,37.0,µg/m³
+Paris,FR,2019-06-13 04:00:00+00:00,FR04014,no2,24.6,µg/m³
+Paris,FR,2019-06-13 03:00:00+00:00,FR04014,no2,18.8,µg/m³
+Paris,FR,2019-06-13 02:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-06-13 01:00:00+00:00,FR04014,no2,18.7,µg/m³
+Paris,FR,2019-06-13 00:00:00+00:00,FR04014,no2,20.0,µg/m³
+Paris,FR,2019-06-12 23:00:00+00:00,FR04014,no2,26.9,µg/m³
+Paris,FR,2019-06-12 22:00:00+00:00,FR04014,no2,25.6,µg/m³
+Paris,FR,2019-06-12 21:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-06-12 20:00:00+00:00,FR04014,no2,29.2,µg/m³
+Paris,FR,2019-06-12 19:00:00+00:00,FR04014,no2,23.4,µg/m³
+Paris,FR,2019-06-12 18:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-06-12 17:00:00+00:00,FR04014,no2,24.2,µg/m³
+Paris,FR,2019-06-12 16:00:00+00:00,FR04014,no2,23.6,µg/m³
+Paris,FR,2019-06-12 15:00:00+00:00,FR04014,no2,16.8,µg/m³
+Paris,FR,2019-06-12 14:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-06-12 13:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-06-12 12:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-06-12 11:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-06-12 10:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-06-12 09:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-06-12 08:00:00+00:00,FR04014,no2,35.5,µg/m³
+Paris,FR,2019-06-12 07:00:00+00:00,FR04014,no2,44.4,µg/m³
+Paris,FR,2019-06-12 06:00:00+00:00,FR04014,no2,38.4,µg/m³
+Paris,FR,2019-06-12 05:00:00+00:00,FR04014,no2,42.7,µg/m³
+Paris,FR,2019-06-12 04:00:00+00:00,FR04014,no2,44.9,µg/m³
+Paris,FR,2019-06-12 03:00:00+00:00,FR04014,no2,36.3,µg/m³
+Paris,FR,2019-06-12 02:00:00+00:00,FR04014,no2,34.7,µg/m³
+Paris,FR,2019-06-12 01:00:00+00:00,FR04014,no2,41.9,µg/m³
+Paris,FR,2019-06-12 00:00:00+00:00,FR04014,no2,37.2,µg/m³
+Paris,FR,2019-06-11 23:00:00+00:00,FR04014,no2,41.5,µg/m³
+Paris,FR,2019-06-11 22:00:00+00:00,FR04014,no2,59.4,µg/m³
+Paris,FR,2019-06-11 21:00:00+00:00,FR04014,no2,54.1,µg/m³
+Paris,FR,2019-06-11 20:00:00+00:00,FR04014,no2,42.7,µg/m³
+Paris,FR,2019-06-11 19:00:00+00:00,FR04014,no2,36.1,µg/m³
+Paris,FR,2019-06-11 18:00:00+00:00,FR04014,no2,44.6,µg/m³
+Paris,FR,2019-06-11 17:00:00+00:00,FR04014,no2,35.5,µg/m³
+Paris,FR,2019-06-11 16:00:00+00:00,FR04014,no2,22.6,µg/m³
+Paris,FR,2019-06-11 15:00:00+00:00,FR04014,no2,19.8,µg/m³
+Paris,FR,2019-06-11 14:00:00+00:00,FR04014,no2,16.6,µg/m³
+Paris,FR,2019-06-11 13:00:00+00:00,FR04014,no2,13.1,µg/m³
+Paris,FR,2019-06-11 12:00:00+00:00,FR04014,no2,12.6,µg/m³
+Paris,FR,2019-06-11 11:00:00+00:00,FR04014,no2,17.3,µg/m³
+Paris,FR,2019-06-11 10:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-06-11 09:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-06-11 08:00:00+00:00,FR04014,no2,43.6,µg/m³
+Paris,FR,2019-06-11 07:00:00+00:00,FR04014,no2,58.0,µg/m³
+Paris,FR,2019-06-11 06:00:00+00:00,FR04014,no2,55.4,µg/m³
+Paris,FR,2019-06-11 05:00:00+00:00,FR04014,no2,58.7,µg/m³
+Paris,FR,2019-06-11 04:00:00+00:00,FR04014,no2,52.7,µg/m³
+Paris,FR,2019-06-11 03:00:00+00:00,FR04014,no2,32.3,µg/m³
+Paris,FR,2019-06-11 02:00:00+00:00,FR04014,no2,29.6,µg/m³
+Paris,FR,2019-06-11 01:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-06-11 00:00:00+00:00,FR04014,no2,19.6,µg/m³
+Paris,FR,2019-06-10 23:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-06-10 22:00:00+00:00,FR04014,no2,24.8,µg/m³
+Paris,FR,2019-06-10 21:00:00+00:00,FR04014,no2,23.5,µg/m³
+Paris,FR,2019-06-10 20:00:00+00:00,FR04014,no2,22.6,µg/m³
+Paris,FR,2019-06-10 19:00:00+00:00,FR04014,no2,22.3,µg/m³
+Paris,FR,2019-06-10 18:00:00+00:00,FR04014,no2,18.4,µg/m³
+Paris,FR,2019-06-10 17:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-06-10 16:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-06-10 15:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-10 14:00:00+00:00,FR04014,no2,9.5,µg/m³
+Paris,FR,2019-06-10 13:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-06-10 12:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-10 11:00:00+00:00,FR04014,no2,12.2,µg/m³
+Paris,FR,2019-06-10 10:00:00+00:00,FR04014,no2,14.1,µg/m³
+Paris,FR,2019-06-10 09:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-06-10 08:00:00+00:00,FR04014,no2,16.9,µg/m³
+Paris,FR,2019-06-10 07:00:00+00:00,FR04014,no2,23.0,µg/m³
+Paris,FR,2019-06-10 06:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-06-10 05:00:00+00:00,FR04014,no2,21.3,µg/m³
+Paris,FR,2019-06-10 04:00:00+00:00,FR04014,no2,13.7,µg/m³
+Paris,FR,2019-06-10 03:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-06-10 02:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-06-10 01:00:00+00:00,FR04014,no2,19.3,µg/m³
+Paris,FR,2019-06-10 00:00:00+00:00,FR04014,no2,28.1,µg/m³
+Paris,FR,2019-06-09 23:00:00+00:00,FR04014,no2,39.9,µg/m³
+Paris,FR,2019-06-09 22:00:00+00:00,FR04014,no2,37.1,µg/m³
+Paris,FR,2019-06-09 21:00:00+00:00,FR04014,no2,30.9,µg/m³
+Paris,FR,2019-06-09 20:00:00+00:00,FR04014,no2,33.2,µg/m³
+Paris,FR,2019-06-09 19:00:00+00:00,FR04014,no2,30.6,µg/m³
+Paris,FR,2019-06-09 18:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-06-09 17:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-06-09 16:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-06-09 15:00:00+00:00,FR04014,no2,7.2,µg/m³
+Paris,FR,2019-06-09 14:00:00+00:00,FR04014,no2,7.9,µg/m³
+Paris,FR,2019-06-09 13:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-06-09 12:00:00+00:00,FR04014,no2,14.6,µg/m³
+Paris,FR,2019-06-09 11:00:00+00:00,FR04014,no2,14.6,µg/m³
+Paris,FR,2019-06-09 10:00:00+00:00,FR04014,no2,16.6,µg/m³
+Paris,FR,2019-06-09 09:00:00+00:00,FR04014,no2,25.0,µg/m³
+Paris,FR,2019-06-09 08:00:00+00:00,FR04014,no2,30.2,µg/m³
+Paris,FR,2019-06-09 07:00:00+00:00,FR04014,no2,32.7,µg/m³
+Paris,FR,2019-06-09 06:00:00+00:00,FR04014,no2,36.7,µg/m³
+Paris,FR,2019-06-09 05:00:00+00:00,FR04014,no2,42.2,µg/m³
+Paris,FR,2019-06-09 04:00:00+00:00,FR04014,no2,43.0,µg/m³
+Paris,FR,2019-06-09 03:00:00+00:00,FR04014,no2,51.5,µg/m³
+Paris,FR,2019-06-09 02:00:00+00:00,FR04014,no2,51.2,µg/m³
+Paris,FR,2019-06-09 01:00:00+00:00,FR04014,no2,41.0,µg/m³
+Paris,FR,2019-06-09 00:00:00+00:00,FR04014,no2,55.9,µg/m³
+Paris,FR,2019-06-08 23:00:00+00:00,FR04014,no2,47.0,µg/m³
+Paris,FR,2019-06-08 22:00:00+00:00,FR04014,no2,34.8,µg/m³
+Paris,FR,2019-06-08 21:00:00+00:00,FR04014,no2,36.7,µg/m³
+Paris,FR,2019-06-08 18:00:00+00:00,FR04014,no2,22.0,µg/m³
+Paris,FR,2019-06-08 17:00:00+00:00,FR04014,no2,14.8,µg/m³
+Paris,FR,2019-06-08 16:00:00+00:00,FR04014,no2,14.1,µg/m³
+Paris,FR,2019-06-08 15:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-08 14:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-06-08 13:00:00+00:00,FR04014,no2,11.1,µg/m³
+Paris,FR,2019-06-08 12:00:00+00:00,FR04014,no2,9.2,µg/m³
+Paris,FR,2019-06-08 11:00:00+00:00,FR04014,no2,10.4,µg/m³
+Paris,FR,2019-06-08 10:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-06-08 09:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-08 08:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-06-08 07:00:00+00:00,FR04014,no2,14.0,µg/m³
+Paris,FR,2019-06-08 06:00:00+00:00,FR04014,no2,13.8,µg/m³
+Paris,FR,2019-06-08 05:00:00+00:00,FR04014,no2,14.1,µg/m³
+Paris,FR,2019-06-08 04:00:00+00:00,FR04014,no2,10.7,µg/m³
+Paris,FR,2019-06-08 03:00:00+00:00,FR04014,no2,9.8,µg/m³
+Paris,FR,2019-06-08 02:00:00+00:00,FR04014,no2,8.4,µg/m³
+Paris,FR,2019-06-08 01:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-06-08 00:00:00+00:00,FR04014,no2,11.3,µg/m³
+Paris,FR,2019-06-07 23:00:00+00:00,FR04014,no2,14.4,µg/m³
+Paris,FR,2019-06-07 22:00:00+00:00,FR04014,no2,14.7,µg/m³
+Paris,FR,2019-06-07 21:00:00+00:00,FR04014,no2,16.3,µg/m³
+Paris,FR,2019-06-07 20:00:00+00:00,FR04014,no2,19.4,µg/m³
+Paris,FR,2019-06-07 19:00:00+00:00,FR04014,no2,19.9,µg/m³
+Paris,FR,2019-06-07 18:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-06-07 17:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-06-07 16:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-06-07 15:00:00+00:00,FR04014,no2,15.6,µg/m³
+Paris,FR,2019-06-07 14:00:00+00:00,FR04014,no2,13.1,µg/m³
+Paris,FR,2019-06-07 13:00:00+00:00,FR04014,no2,15.0,µg/m³
+Paris,FR,2019-06-07 12:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-06-07 11:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-06-07 10:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-06-07 09:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-06-07 08:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-06-07 07:00:00+00:00,FR04014,no2,23.0,µg/m³
+Paris,FR,2019-06-07 06:00:00+00:00,FR04014,no2,28.9,µg/m³
+Paris,FR,2019-06-06 14:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-06-06 13:00:00+00:00,FR04014,no2,16.0,µg/m³
+Paris,FR,2019-06-06 12:00:00+00:00,FR04014,no2,16.5,µg/m³
+Paris,FR,2019-06-06 11:00:00+00:00,FR04014,no2,16.4,µg/m³
+Paris,FR,2019-06-06 10:00:00+00:00,FR04014,no2,21.2,µg/m³
+Paris,FR,2019-06-06 09:00:00+00:00,FR04014,no2,26.0,µg/m³
+Paris,FR,2019-06-06 08:00:00+00:00,FR04014,no2,36.0,µg/m³
+Paris,FR,2019-06-06 07:00:00+00:00,FR04014,no2,43.1,µg/m³
+Paris,FR,2019-06-06 06:00:00+00:00,FR04014,no2,40.5,µg/m³
+Paris,FR,2019-06-06 05:00:00+00:00,FR04014,no2,40.3,µg/m³
+Paris,FR,2019-06-06 04:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-06-06 03:00:00+00:00,FR04014,no2,19.2,µg/m³
+Paris,FR,2019-06-06 02:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-06-06 01:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-06-06 00:00:00+00:00,FR04014,no2,23.8,µg/m³
+Paris,FR,2019-06-05 23:00:00+00:00,FR04014,no2,31.8,µg/m³
+Paris,FR,2019-06-05 22:00:00+00:00,FR04014,no2,30.3,µg/m³
+Paris,FR,2019-06-05 21:00:00+00:00,FR04014,no2,33.7,µg/m³
+Paris,FR,2019-06-05 20:00:00+00:00,FR04014,no2,37.5,µg/m³
+Paris,FR,2019-06-05 19:00:00+00:00,FR04014,no2,37.8,µg/m³
+Paris,FR,2019-06-05 18:00:00+00:00,FR04014,no2,40.8,µg/m³
+Paris,FR,2019-06-05 17:00:00+00:00,FR04014,no2,48.8,µg/m³
+Paris,FR,2019-06-05 16:00:00+00:00,FR04014,no2,37.9,µg/m³
+Paris,FR,2019-06-05 15:00:00+00:00,FR04014,no2,53.5,µg/m³
+Paris,FR,2019-06-05 14:00:00+00:00,FR04014,no2,38.3,µg/m³
+Paris,FR,2019-06-05 13:00:00+00:00,FR04014,no2,33.6,µg/m³
+Paris,FR,2019-06-05 12:00:00+00:00,FR04014,no2,47.2,µg/m³
+Paris,FR,2019-06-05 11:00:00+00:00,FR04014,no2,59.0,µg/m³
+Paris,FR,2019-06-05 10:00:00+00:00,FR04014,no2,42.1,µg/m³
+Paris,FR,2019-06-05 09:00:00+00:00,FR04014,no2,36.8,µg/m³
+Paris,FR,2019-06-05 08:00:00+00:00,FR04014,no2,35.3,µg/m³
+Paris,FR,2019-06-05 07:00:00+00:00,FR04014,no2,36.9,µg/m³
+Paris,FR,2019-06-05 06:00:00+00:00,FR04014,no2,35.8,µg/m³
+Paris,FR,2019-06-05 05:00:00+00:00,FR04014,no2,39.2,µg/m³
+Paris,FR,2019-06-05 04:00:00+00:00,FR04014,no2,24.5,µg/m³
+Paris,FR,2019-06-05 03:00:00+00:00,FR04014,no2,16.2,µg/m³
+Paris,FR,2019-06-05 02:00:00+00:00,FR04014,no2,12.4,µg/m³
+Paris,FR,2019-06-05 01:00:00+00:00,FR04014,no2,10.8,µg/m³
+Paris,FR,2019-06-05 00:00:00+00:00,FR04014,no2,15.7,µg/m³
+Paris,FR,2019-06-04 23:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-06-04 22:00:00+00:00,FR04014,no2,33.5,µg/m³
+Paris,FR,2019-06-04 21:00:00+00:00,FR04014,no2,26.3,µg/m³
+Paris,FR,2019-06-04 20:00:00+00:00,FR04014,no2,16.9,µg/m³
+Paris,FR,2019-06-04 19:00:00+00:00,FR04014,no2,17.0,µg/m³
+Paris,FR,2019-06-04 18:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-06-04 17:00:00+00:00,FR04014,no2,23.4,µg/m³
+Paris,FR,2019-06-04 16:00:00+00:00,FR04014,no2,26.3,µg/m³
+Paris,FR,2019-06-04 15:00:00+00:00,FR04014,no2,21.5,µg/m³
+Paris,FR,2019-06-04 14:00:00+00:00,FR04014,no2,18.1,µg/m³
+Paris,FR,2019-06-04 13:00:00+00:00,FR04014,no2,17.4,µg/m³
+Paris,FR,2019-06-04 12:00:00+00:00,FR04014,no2,17.7,µg/m³
+Paris,FR,2019-06-04 11:00:00+00:00,FR04014,no2,19.6,µg/m³
+Paris,FR,2019-06-04 10:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-06-04 09:00:00+00:00,FR04014,no2,38.5,µg/m³
+Paris,FR,2019-06-04 08:00:00+00:00,FR04014,no2,50.8,µg/m³
+Paris,FR,2019-06-04 07:00:00+00:00,FR04014,no2,53.5,µg/m³
+Paris,FR,2019-06-04 06:00:00+00:00,FR04014,no2,47.7,µg/m³
+Paris,FR,2019-06-04 05:00:00+00:00,FR04014,no2,36.5,µg/m³
+Paris,FR,2019-06-04 04:00:00+00:00,FR04014,no2,28.8,µg/m³
+Paris,FR,2019-06-04 03:00:00+00:00,FR04014,no2,41.6,µg/m³
+Paris,FR,2019-06-04 02:00:00+00:00,FR04014,no2,35.0,µg/m³
+Paris,FR,2019-06-04 01:00:00+00:00,FR04014,no2,43.9,µg/m³
+Paris,FR,2019-06-04 00:00:00+00:00,FR04014,no2,52.4,µg/m³
+Paris,FR,2019-06-03 23:00:00+00:00,FR04014,no2,44.6,µg/m³
+Paris,FR,2019-06-03 22:00:00+00:00,FR04014,no2,30.5,µg/m³
+Paris,FR,2019-06-03 21:00:00+00:00,FR04014,no2,31.1,µg/m³
+Paris,FR,2019-06-03 20:00:00+00:00,FR04014,no2,33.0,µg/m³
+Paris,FR,2019-06-03 19:00:00+00:00,FR04014,no2,28.9,µg/m³
+Paris,FR,2019-06-03 18:00:00+00:00,FR04014,no2,23.1,µg/m³
+Paris,FR,2019-06-03 17:00:00+00:00,FR04014,no2,24.4,µg/m³
+Paris,FR,2019-06-03 16:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-06-03 15:00:00+00:00,FR04014,no2,24.8,µg/m³
+Paris,FR,2019-06-03 14:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-06-03 13:00:00+00:00,FR04014,no2,25.8,µg/m³
+Paris,FR,2019-06-03 12:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-06-03 11:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-06-03 10:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-06-03 09:00:00+00:00,FR04014,no2,46.0,µg/m³
+Paris,FR,2019-06-03 08:00:00+00:00,FR04014,no2,43.9,µg/m³
+Paris,FR,2019-06-03 07:00:00+00:00,FR04014,no2,50.0,µg/m³
+Paris,FR,2019-06-03 06:00:00+00:00,FR04014,no2,44.1,µg/m³
+Paris,FR,2019-06-03 05:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-06-03 04:00:00+00:00,FR04014,no2,11.4,µg/m³
+Paris,FR,2019-06-03 03:00:00+00:00,FR04014,no2,9.8,µg/m³
+Paris,FR,2019-06-03 02:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-03 01:00:00+00:00,FR04014,no2,11.8,µg/m³
+Paris,FR,2019-06-03 00:00:00+00:00,FR04014,no2,15.7,µg/m³
+Paris,FR,2019-06-02 23:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-06-02 22:00:00+00:00,FR04014,no2,27.6,µg/m³
+Paris,FR,2019-06-02 21:00:00+00:00,FR04014,no2,36.9,µg/m³
+Paris,FR,2019-06-02 20:00:00+00:00,FR04014,no2,40.9,µg/m³
+Paris,FR,2019-06-02 19:00:00+00:00,FR04014,no2,25.8,µg/m³
+Paris,FR,2019-06-02 18:00:00+00:00,FR04014,no2,15.6,µg/m³
+Paris,FR,2019-06-02 17:00:00+00:00,FR04014,no2,14.4,µg/m³
+Paris,FR,2019-06-02 16:00:00+00:00,FR04014,no2,14.4,µg/m³
+Paris,FR,2019-06-02 15:00:00+00:00,FR04014,no2,13.9,µg/m³
+Paris,FR,2019-06-02 14:00:00+00:00,FR04014,no2,15.0,µg/m³
+Paris,FR,2019-06-02 13:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-06-02 12:00:00+00:00,FR04014,no2,11.5,µg/m³
+Paris,FR,2019-06-02 11:00:00+00:00,FR04014,no2,13.1,µg/m³
+Paris,FR,2019-06-02 10:00:00+00:00,FR04014,no2,18.1,µg/m³
+Paris,FR,2019-06-02 09:00:00+00:00,FR04014,no2,21.0,µg/m³
+Paris,FR,2019-06-02 08:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-06-02 07:00:00+00:00,FR04014,no2,18.1,µg/m³
+Paris,FR,2019-06-02 06:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-06-02 05:00:00+00:00,FR04014,no2,37.2,µg/m³
+Paris,FR,2019-06-02 04:00:00+00:00,FR04014,no2,24.5,µg/m³
+Paris,FR,2019-06-02 03:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-06-02 02:00:00+00:00,FR04014,no2,39.2,µg/m³
+Paris,FR,2019-06-02 01:00:00+00:00,FR04014,no2,38.2,µg/m³
+Paris,FR,2019-06-02 00:00:00+00:00,FR04014,no2,38.1,µg/m³
+Paris,FR,2019-06-01 23:00:00+00:00,FR04014,no2,32.7,µg/m³
+Paris,FR,2019-06-01 22:00:00+00:00,FR04014,no2,48.1,µg/m³
+Paris,FR,2019-06-01 21:00:00+00:00,FR04014,no2,49.4,µg/m³
+Paris,FR,2019-06-01 20:00:00+00:00,FR04014,no2,43.6,µg/m³
+Paris,FR,2019-06-01 19:00:00+00:00,FR04014,no2,24.6,µg/m³
+Paris,FR,2019-06-01 18:00:00+00:00,FR04014,no2,14.5,µg/m³
+Paris,FR,2019-06-01 17:00:00+00:00,FR04014,no2,11.8,µg/m³
+Paris,FR,2019-06-01 16:00:00+00:00,FR04014,no2,11.8,µg/m³
+Paris,FR,2019-06-01 15:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-06-01 14:00:00+00:00,FR04014,no2,10.0,µg/m³
+Paris,FR,2019-06-01 13:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-06-01 12:00:00+00:00,FR04014,no2,10.4,µg/m³
+Paris,FR,2019-06-01 11:00:00+00:00,FR04014,no2,12.2,µg/m³
+Paris,FR,2019-06-01 10:00:00+00:00,FR04014,no2,13.8,µg/m³
+Paris,FR,2019-06-01 09:00:00+00:00,FR04014,no2,23.9,µg/m³
+Paris,FR,2019-06-01 08:00:00+00:00,FR04014,no2,33.3,µg/m³
+Paris,FR,2019-06-01 07:00:00+00:00,FR04014,no2,46.4,µg/m³
+Paris,FR,2019-06-01 06:00:00+00:00,FR04014,no2,44.6,µg/m³
+Paris,FR,2019-06-01 02:00:00+00:00,FR04014,no2,68.1,µg/m³
+Paris,FR,2019-06-01 01:00:00+00:00,FR04014,no2,74.8,µg/m³
+Paris,FR,2019-06-01 00:00:00+00:00,FR04014,no2,84.7,µg/m³
+Paris,FR,2019-05-31 23:00:00+00:00,FR04014,no2,81.7,µg/m³
+Paris,FR,2019-05-31 22:00:00+00:00,FR04014,no2,68.0,µg/m³
+Paris,FR,2019-05-31 21:00:00+00:00,FR04014,no2,60.2,µg/m³
+Paris,FR,2019-05-31 20:00:00+00:00,FR04014,no2,37.0,µg/m³
+Paris,FR,2019-05-31 19:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-05-31 18:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-05-31 17:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-05-31 16:00:00+00:00,FR04014,no2,16.3,µg/m³
+Paris,FR,2019-05-31 15:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-05-31 14:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-05-31 13:00:00+00:00,FR04014,no2,13.8,µg/m³
+Paris,FR,2019-05-31 12:00:00+00:00,FR04014,no2,13.3,µg/m³
+Paris,FR,2019-05-31 11:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-05-31 10:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-05-31 09:00:00+00:00,FR04014,no2,19.6,µg/m³
+Paris,FR,2019-05-31 08:00:00+00:00,FR04014,no2,36.6,µg/m³
+Paris,FR,2019-05-31 07:00:00+00:00,FR04014,no2,47.4,µg/m³
+Paris,FR,2019-05-31 06:00:00+00:00,FR04014,no2,38.6,µg/m³
+Paris,FR,2019-05-31 05:00:00+00:00,FR04014,no2,37.2,µg/m³
+Paris,FR,2019-05-31 04:00:00+00:00,FR04014,no2,31.1,µg/m³
+Paris,FR,2019-05-31 03:00:00+00:00,FR04014,no2,40.1,µg/m³
+Paris,FR,2019-05-31 02:00:00+00:00,FR04014,no2,44.1,µg/m³
+Paris,FR,2019-05-31 01:00:00+00:00,FR04014,no2,36.9,µg/m³
+Paris,FR,2019-05-31 00:00:00+00:00,FR04014,no2,27.2,µg/m³
+Paris,FR,2019-05-30 23:00:00+00:00,FR04014,no2,29.6,µg/m³
+Paris,FR,2019-05-30 22:00:00+00:00,FR04014,no2,27.0,µg/m³
+Paris,FR,2019-05-30 21:00:00+00:00,FR04014,no2,26.9,µg/m³
+Paris,FR,2019-05-30 20:00:00+00:00,FR04014,no2,21.9,µg/m³
+Paris,FR,2019-05-30 19:00:00+00:00,FR04014,no2,22.9,µg/m³
+Paris,FR,2019-05-30 18:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-30 17:00:00+00:00,FR04014,no2,20.4,µg/m³
+Paris,FR,2019-05-30 16:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-05-30 15:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-05-30 14:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-05-30 13:00:00+00:00,FR04014,no2,16.1,µg/m³
+Paris,FR,2019-05-30 12:00:00+00:00,FR04014,no2,14.2,µg/m³
+Paris,FR,2019-05-30 11:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-05-30 10:00:00+00:00,FR04014,no2,13.8,µg/m³
+Paris,FR,2019-05-30 09:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-05-30 08:00:00+00:00,FR04014,no2,16.7,µg/m³
+Paris,FR,2019-05-30 07:00:00+00:00,FR04014,no2,18.3,µg/m³
+Paris,FR,2019-05-30 06:00:00+00:00,FR04014,no2,13.3,µg/m³
+Paris,FR,2019-05-30 05:00:00+00:00,FR04014,no2,12.2,µg/m³
+Paris,FR,2019-05-30 04:00:00+00:00,FR04014,no2,10.4,µg/m³
+Paris,FR,2019-05-30 03:00:00+00:00,FR04014,no2,10.6,µg/m³
+Paris,FR,2019-05-30 02:00:00+00:00,FR04014,no2,9.4,µg/m³
+Paris,FR,2019-05-30 01:00:00+00:00,FR04014,no2,12.4,µg/m³
+Paris,FR,2019-05-30 00:00:00+00:00,FR04014,no2,19.4,µg/m³
+Paris,FR,2019-05-29 23:00:00+00:00,FR04014,no2,19.9,µg/m³
+Paris,FR,2019-05-29 22:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-05-29 21:00:00+00:00,FR04014,no2,16.9,µg/m³
+Paris,FR,2019-05-29 20:00:00+00:00,FR04014,no2,20.8,µg/m³
+Paris,FR,2019-05-29 19:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-05-29 18:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-05-29 17:00:00+00:00,FR04014,no2,22.9,µg/m³
+Paris,FR,2019-05-29 16:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-05-29 15:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-05-29 14:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-05-29 13:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-05-29 12:00:00+00:00,FR04014,no2,13.2,µg/m³
+Paris,FR,2019-05-29 11:00:00+00:00,FR04014,no2,22.0,µg/m³
+Paris,FR,2019-05-29 10:00:00+00:00,FR04014,no2,30.7,µg/m³
+Paris,FR,2019-05-29 09:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-05-29 08:00:00+00:00,FR04014,no2,45.7,µg/m³
+Paris,FR,2019-05-29 07:00:00+00:00,FR04014,no2,50.5,µg/m³
+Paris,FR,2019-05-29 06:00:00+00:00,FR04014,no2,46.5,µg/m³
+Paris,FR,2019-05-29 05:00:00+00:00,FR04014,no2,36.7,µg/m³
+Paris,FR,2019-05-29 04:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-05-29 03:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-05-29 02:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-05-29 01:00:00+00:00,FR04014,no2,21.6,µg/m³
+Paris,FR,2019-05-29 00:00:00+00:00,FR04014,no2,23.4,µg/m³
+Paris,FR,2019-05-28 23:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-05-28 22:00:00+00:00,FR04014,no2,20.2,µg/m³
+Paris,FR,2019-05-28 21:00:00+00:00,FR04014,no2,20.4,µg/m³
+Paris,FR,2019-05-28 20:00:00+00:00,FR04014,no2,20.4,µg/m³
+Paris,FR,2019-05-28 19:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-05-28 18:00:00+00:00,FR04014,no2,16.2,µg/m³
+Paris,FR,2019-05-28 17:00:00+00:00,FR04014,no2,20.8,µg/m³
+Paris,FR,2019-05-28 16:00:00+00:00,FR04014,no2,26.5,µg/m³
+Paris,FR,2019-05-28 15:00:00+00:00,FR04014,no2,25.0,µg/m³
+Paris,FR,2019-05-28 14:00:00+00:00,FR04014,no2,18.8,µg/m³
+Paris,FR,2019-05-28 13:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-05-28 12:00:00+00:00,FR04014,no2,24.8,µg/m³
+Paris,FR,2019-05-28 11:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-05-28 10:00:00+00:00,FR04014,no2,21.6,µg/m³
+Paris,FR,2019-05-28 09:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-28 08:00:00+00:00,FR04014,no2,31.2,µg/m³
+Paris,FR,2019-05-28 07:00:00+00:00,FR04014,no2,33.8,µg/m³
+Paris,FR,2019-05-28 06:00:00+00:00,FR04014,no2,28.8,µg/m³
+Paris,FR,2019-05-28 05:00:00+00:00,FR04014,no2,19.9,µg/m³
+Paris,FR,2019-05-28 04:00:00+00:00,FR04014,no2,8.9,µg/m³
+Paris,FR,2019-05-28 03:00:00+00:00,FR04014,no2,6.1,µg/m³
+Paris,FR,2019-05-28 02:00:00+00:00,FR04014,no2,6.4,µg/m³
+Paris,FR,2019-05-28 01:00:00+00:00,FR04014,no2,8.2,µg/m³
+Paris,FR,2019-05-28 00:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-05-27 23:00:00+00:00,FR04014,no2,22.6,µg/m³
+Paris,FR,2019-05-27 22:00:00+00:00,FR04014,no2,19.9,µg/m³
+Paris,FR,2019-05-27 21:00:00+00:00,FR04014,no2,18.8,µg/m³
+Paris,FR,2019-05-27 20:00:00+00:00,FR04014,no2,22.3,µg/m³
+Paris,FR,2019-05-27 19:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-27 18:00:00+00:00,FR04014,no2,25.6,µg/m³
+Paris,FR,2019-05-27 17:00:00+00:00,FR04014,no2,22.9,µg/m³
+Paris,FR,2019-05-27 16:00:00+00:00,FR04014,no2,23.6,µg/m³
+Paris,FR,2019-05-27 15:00:00+00:00,FR04014,no2,25.6,µg/m³
+Paris,FR,2019-05-27 14:00:00+00:00,FR04014,no2,17.3,µg/m³
+Paris,FR,2019-05-27 13:00:00+00:00,FR04014,no2,17.5,µg/m³
+Paris,FR,2019-05-27 12:00:00+00:00,FR04014,no2,17.3,µg/m³
+Paris,FR,2019-05-27 11:00:00+00:00,FR04014,no2,19.3,µg/m³
+Paris,FR,2019-05-27 10:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-05-27 09:00:00+00:00,FR04014,no2,31.4,µg/m³
+Paris,FR,2019-05-27 08:00:00+00:00,FR04014,no2,34.2,µg/m³
+Paris,FR,2019-05-27 07:00:00+00:00,FR04014,no2,29.5,µg/m³
+Paris,FR,2019-05-27 06:00:00+00:00,FR04014,no2,29.1,µg/m³
+Paris,FR,2019-05-27 05:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-05-27 04:00:00+00:00,FR04014,no2,6.5,µg/m³
+Paris,FR,2019-05-27 03:00:00+00:00,FR04014,no2,4.8,µg/m³
+Paris,FR,2019-05-27 02:00:00+00:00,FR04014,no2,5.9,µg/m³
+Paris,FR,2019-05-27 01:00:00+00:00,FR04014,no2,7.1,µg/m³
+Paris,FR,2019-05-27 00:00:00+00:00,FR04014,no2,9.5,µg/m³
+Paris,FR,2019-05-26 23:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-05-26 22:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-05-26 21:00:00+00:00,FR04014,no2,16.1,µg/m³
+Paris,FR,2019-05-26 20:00:00+00:00,FR04014,no2,16.6,µg/m³
+Paris,FR,2019-05-26 19:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-05-26 18:00:00+00:00,FR04014,no2,22.8,µg/m³
+Paris,FR,2019-05-26 17:00:00+00:00,FR04014,no2,17.3,µg/m³
+Paris,FR,2019-05-26 16:00:00+00:00,FR04014,no2,17.1,µg/m³
+Paris,FR,2019-05-26 15:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-05-26 14:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-05-26 13:00:00+00:00,FR04014,no2,12.5,µg/m³
+Paris,FR,2019-05-26 12:00:00+00:00,FR04014,no2,11.5,µg/m³
+Paris,FR,2019-05-26 11:00:00+00:00,FR04014,no2,13.3,µg/m³
+Paris,FR,2019-05-26 10:00:00+00:00,FR04014,no2,11.3,µg/m³
+Paris,FR,2019-05-26 09:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-05-26 08:00:00+00:00,FR04014,no2,11.0,µg/m³
+Paris,FR,2019-05-26 07:00:00+00:00,FR04014,no2,13.4,µg/m³
+Paris,FR,2019-05-26 06:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-05-26 05:00:00+00:00,FR04014,no2,16.8,µg/m³
+Paris,FR,2019-05-26 04:00:00+00:00,FR04014,no2,22.3,µg/m³
+Paris,FR,2019-05-26 03:00:00+00:00,FR04014,no2,22.9,µg/m³
+Paris,FR,2019-05-26 02:00:00+00:00,FR04014,no2,23.4,µg/m³
+Paris,FR,2019-05-26 01:00:00+00:00,FR04014,no2,49.8,µg/m³
+Paris,FR,2019-05-26 00:00:00+00:00,FR04014,no2,67.0,µg/m³
+Paris,FR,2019-05-25 23:00:00+00:00,FR04014,no2,70.2,µg/m³
+Paris,FR,2019-05-25 22:00:00+00:00,FR04014,no2,63.9,µg/m³
+Paris,FR,2019-05-25 21:00:00+00:00,FR04014,no2,39.5,µg/m³
+Paris,FR,2019-05-25 20:00:00+00:00,FR04014,no2,43.6,µg/m³
+Paris,FR,2019-05-25 19:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-25 18:00:00+00:00,FR04014,no2,30.4,µg/m³
+Paris,FR,2019-05-25 17:00:00+00:00,FR04014,no2,20.6,µg/m³
+Paris,FR,2019-05-25 16:00:00+00:00,FR04014,no2,31.9,µg/m³
+Paris,FR,2019-05-25 15:00:00+00:00,FR04014,no2,30.0,µg/m³
+Paris,FR,2019-05-25 14:00:00+00:00,FR04014,no2,23.6,µg/m³
+Paris,FR,2019-05-25 13:00:00+00:00,FR04014,no2,26.1,µg/m³
+Paris,FR,2019-05-25 12:00:00+00:00,FR04014,no2,18.6,µg/m³
+Paris,FR,2019-05-25 11:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-05-25 10:00:00+00:00,FR04014,no2,26.3,µg/m³
+Paris,FR,2019-05-25 09:00:00+00:00,FR04014,no2,33.6,µg/m³
+Paris,FR,2019-05-25 08:00:00+00:00,FR04014,no2,44.5,µg/m³
+Paris,FR,2019-05-25 07:00:00+00:00,FR04014,no2,42.1,µg/m³
+Paris,FR,2019-05-25 06:00:00+00:00,FR04014,no2,36.9,µg/m³
+Paris,FR,2019-05-25 02:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-05-25 01:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-05-25 00:00:00+00:00,FR04014,no2,17.4,µg/m³
+Paris,FR,2019-05-24 23:00:00+00:00,FR04014,no2,16.5,µg/m³
+Paris,FR,2019-05-24 22:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-05-24 21:00:00+00:00,FR04014,no2,18.1,µg/m³
+Paris,FR,2019-05-24 20:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-05-24 19:00:00+00:00,FR04014,no2,21.9,µg/m³
+Paris,FR,2019-05-24 18:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-05-24 17:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-05-24 16:00:00+00:00,FR04014,no2,27.3,µg/m³
+Paris,FR,2019-05-24 15:00:00+00:00,FR04014,no2,22.7,µg/m³
+Paris,FR,2019-05-24 14:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-05-24 13:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-24 12:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-05-24 11:00:00+00:00,FR04014,no2,40.6,µg/m³
+Paris,FR,2019-05-24 10:00:00+00:00,FR04014,no2,28.6,µg/m³
+Paris,FR,2019-05-24 09:00:00+00:00,FR04014,no2,37.9,µg/m³
+Paris,FR,2019-05-24 08:00:00+00:00,FR04014,no2,45.9,µg/m³
+Paris,FR,2019-05-24 07:00:00+00:00,FR04014,no2,54.8,µg/m³
+Paris,FR,2019-05-24 06:00:00+00:00,FR04014,no2,40.7,µg/m³
+Paris,FR,2019-05-24 05:00:00+00:00,FR04014,no2,35.9,µg/m³
+Paris,FR,2019-05-24 04:00:00+00:00,FR04014,no2,28.1,µg/m³
+Paris,FR,2019-05-24 03:00:00+00:00,FR04014,no2,19.4,µg/m³
+Paris,FR,2019-05-24 02:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-05-24 01:00:00+00:00,FR04014,no2,28.8,µg/m³
+Paris,FR,2019-05-24 00:00:00+00:00,FR04014,no2,32.8,µg/m³
+Paris,FR,2019-05-23 23:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-05-23 22:00:00+00:00,FR04014,no2,61.9,µg/m³
+Paris,FR,2019-05-23 21:00:00+00:00,FR04014,no2,47.0,µg/m³
+Paris,FR,2019-05-23 20:00:00+00:00,FR04014,no2,33.8,µg/m³
+Paris,FR,2019-05-23 19:00:00+00:00,FR04014,no2,28.0,µg/m³
+Paris,FR,2019-05-23 18:00:00+00:00,FR04014,no2,23.5,µg/m³
+Paris,FR,2019-05-23 17:00:00+00:00,FR04014,no2,22.7,µg/m³
+Paris,FR,2019-05-23 16:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-05-23 15:00:00+00:00,FR04014,no2,17.5,µg/m³
+Paris,FR,2019-05-23 14:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-05-23 13:00:00+00:00,FR04014,no2,21.2,µg/m³
+Paris,FR,2019-05-23 12:00:00+00:00,FR04014,no2,16.4,µg/m³
+Paris,FR,2019-05-23 11:00:00+00:00,FR04014,no2,17.0,µg/m³
+Paris,FR,2019-05-23 10:00:00+00:00,FR04014,no2,28.3,µg/m³
+Paris,FR,2019-05-23 09:00:00+00:00,FR04014,no2,79.4,µg/m³
+Paris,FR,2019-05-23 08:00:00+00:00,FR04014,no2,97.0,µg/m³
+Paris,FR,2019-05-23 07:00:00+00:00,FR04014,no2,91.8,µg/m³
+Paris,FR,2019-05-23 06:00:00+00:00,FR04014,no2,79.6,µg/m³
+Paris,FR,2019-05-23 05:00:00+00:00,FR04014,no2,68.7,µg/m³
+Paris,FR,2019-05-23 04:00:00+00:00,FR04014,no2,71.9,µg/m³
+Paris,FR,2019-05-23 03:00:00+00:00,FR04014,no2,76.8,µg/m³
+Paris,FR,2019-05-23 02:00:00+00:00,FR04014,no2,66.6,µg/m³
+Paris,FR,2019-05-23 01:00:00+00:00,FR04014,no2,53.1,µg/m³
+Paris,FR,2019-05-23 00:00:00+00:00,FR04014,no2,53.3,µg/m³
+Paris,FR,2019-05-22 23:00:00+00:00,FR04014,no2,62.1,µg/m³
+Paris,FR,2019-05-22 22:00:00+00:00,FR04014,no2,29.8,µg/m³
+Paris,FR,2019-05-22 21:00:00+00:00,FR04014,no2,37.7,µg/m³
+Paris,FR,2019-05-22 20:00:00+00:00,FR04014,no2,44.9,µg/m³
+Paris,FR,2019-05-22 19:00:00+00:00,FR04014,no2,36.2,µg/m³
+Paris,FR,2019-05-22 18:00:00+00:00,FR04014,no2,34.1,µg/m³
+Paris,FR,2019-05-22 17:00:00+00:00,FR04014,no2,36.1,µg/m³
+Paris,FR,2019-05-22 16:00:00+00:00,FR04014,no2,34.9,µg/m³
+Paris,FR,2019-05-22 15:00:00+00:00,FR04014,no2,33.2,µg/m³
+Paris,FR,2019-05-22 14:00:00+00:00,FR04014,no2,40.0,µg/m³
+Paris,FR,2019-05-22 13:00:00+00:00,FR04014,no2,38.5,µg/m³
+Paris,FR,2019-05-22 12:00:00+00:00,FR04014,no2,42.2,µg/m³
+Paris,FR,2019-05-22 11:00:00+00:00,FR04014,no2,42.6,µg/m³
+Paris,FR,2019-05-22 10:00:00+00:00,FR04014,no2,57.8,µg/m³
+Paris,FR,2019-05-22 09:00:00+00:00,FR04014,no2,63.1,µg/m³
+Paris,FR,2019-05-22 08:00:00+00:00,FR04014,no2,70.8,µg/m³
+Paris,FR,2019-05-22 07:00:00+00:00,FR04014,no2,75.4,µg/m³
+Paris,FR,2019-05-22 06:00:00+00:00,FR04014,no2,75.7,µg/m³
+Paris,FR,2019-05-22 05:00:00+00:00,FR04014,no2,45.1,µg/m³
+Paris,FR,2019-05-22 04:00:00+00:00,FR04014,no2,33.7,µg/m³
+Paris,FR,2019-05-22 03:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-05-22 02:00:00+00:00,FR04014,no2,19.2,µg/m³
+Paris,FR,2019-05-22 01:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-05-22 00:00:00+00:00,FR04014,no2,27.1,µg/m³
+Paris,FR,2019-05-21 23:00:00+00:00,FR04014,no2,29.5,µg/m³
+Paris,FR,2019-05-21 22:00:00+00:00,FR04014,no2,33.2,µg/m³
+Paris,FR,2019-05-21 21:00:00+00:00,FR04014,no2,43.0,µg/m³
+Paris,FR,2019-05-21 20:00:00+00:00,FR04014,no2,40.8,µg/m³
+Paris,FR,2019-05-21 19:00:00+00:00,FR04014,no2,50.0,µg/m³
+Paris,FR,2019-05-21 18:00:00+00:00,FR04014,no2,54.3,µg/m³
+Paris,FR,2019-05-21 17:00:00+00:00,FR04014,no2,75.0,µg/m³
+Paris,FR,2019-05-21 16:00:00+00:00,FR04014,no2,42.3,µg/m³
+Paris,FR,2019-05-21 15:00:00+00:00,FR04014,no2,36.6,µg/m³
+Paris,FR,2019-05-21 14:00:00+00:00,FR04014,no2,47.8,µg/m³
+Paris,FR,2019-05-21 13:00:00+00:00,FR04014,no2,49.7,µg/m³
+Paris,FR,2019-05-21 12:00:00+00:00,FR04014,no2,30.5,µg/m³
+Paris,FR,2019-05-21 11:00:00+00:00,FR04014,no2,25.5,µg/m³
+Paris,FR,2019-05-21 10:00:00+00:00,FR04014,no2,30.4,µg/m³
+Paris,FR,2019-05-21 09:00:00+00:00,FR04014,no2,48.1,µg/m³
+Paris,FR,2019-05-21 08:00:00+00:00,FR04014,no2,54.2,µg/m³
+Paris,FR,2019-05-21 07:00:00+00:00,FR04014,no2,56.0,µg/m³
+Paris,FR,2019-05-21 06:00:00+00:00,FR04014,no2,62.6,µg/m³
+Paris,FR,2019-05-21 05:00:00+00:00,FR04014,no2,38.0,µg/m³
+Paris,FR,2019-05-21 04:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-05-21 03:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-05-21 02:00:00+00:00,FR04014,no2,17.7,µg/m³
+Paris,FR,2019-05-21 01:00:00+00:00,FR04014,no2,16.3,µg/m³
+Paris,FR,2019-05-21 00:00:00+00:00,FR04014,no2,16.9,µg/m³
+Paris,FR,2019-05-20 23:00:00+00:00,FR04014,no2,19.6,µg/m³
+Paris,FR,2019-05-20 22:00:00+00:00,FR04014,no2,20.7,µg/m³
+Paris,FR,2019-05-20 21:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-05-20 20:00:00+00:00,FR04014,no2,21.6,µg/m³
+Paris,FR,2019-05-20 19:00:00+00:00,FR04014,no2,21.3,µg/m³
+Paris,FR,2019-05-20 18:00:00+00:00,FR04014,no2,32.2,µg/m³
+Paris,FR,2019-05-20 17:00:00+00:00,FR04014,no2,24.6,µg/m³
+Paris,FR,2019-05-20 16:00:00+00:00,FR04014,no2,32.4,µg/m³
+Paris,FR,2019-05-20 15:00:00+00:00,FR04014,no2,26.5,µg/m³
+Paris,FR,2019-05-20 14:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-05-20 13:00:00+00:00,FR04014,no2,23.7,µg/m³
+Paris,FR,2019-05-20 12:00:00+00:00,FR04014,no2,23.8,µg/m³
+Paris,FR,2019-05-20 11:00:00+00:00,FR04014,no2,35.4,µg/m³
+Paris,FR,2019-05-20 10:00:00+00:00,FR04014,no2,43.9,µg/m³
+Paris,FR,2019-05-20 09:00:00+00:00,FR04014,no2,45.5,µg/m³
+Paris,FR,2019-05-20 08:00:00+00:00,FR04014,no2,46.1,µg/m³
+Paris,FR,2019-05-20 07:00:00+00:00,FR04014,no2,46.9,µg/m³
+Paris,FR,2019-05-20 06:00:00+00:00,FR04014,no2,40.1,µg/m³
+Paris,FR,2019-05-20 05:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-05-20 04:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-05-20 03:00:00+00:00,FR04014,no2,12.6,µg/m³
+Paris,FR,2019-05-20 02:00:00+00:00,FR04014,no2,12.1,µg/m³
+Paris,FR,2019-05-20 01:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-05-20 00:00:00+00:00,FR04014,no2,16.4,µg/m³
+Paris,FR,2019-05-19 23:00:00+00:00,FR04014,no2,18.8,µg/m³
+Paris,FR,2019-05-19 22:00:00+00:00,FR04014,no2,22.2,µg/m³
+Paris,FR,2019-05-19 21:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-05-19 20:00:00+00:00,FR04014,no2,35.6,µg/m³
+Paris,FR,2019-05-19 19:00:00+00:00,FR04014,no2,51.2,µg/m³
+Paris,FR,2019-05-19 18:00:00+00:00,FR04014,no2,32.7,µg/m³
+Paris,FR,2019-05-19 17:00:00+00:00,FR04014,no2,33.9,µg/m³
+Paris,FR,2019-05-19 16:00:00+00:00,FR04014,no2,32.5,µg/m³
+Paris,FR,2019-05-19 15:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-05-19 14:00:00+00:00,FR04014,no2,23.8,µg/m³
+Paris,FR,2019-05-19 13:00:00+00:00,FR04014,no2,21.0,µg/m³
+Paris,FR,2019-05-19 12:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-05-19 11:00:00+00:00,FR04014,no2,32.6,µg/m³
+Paris,FR,2019-05-19 10:00:00+00:00,FR04014,no2,31.0,µg/m³
+Paris,FR,2019-05-19 09:00:00+00:00,FR04014,no2,33.0,µg/m³
+Paris,FR,2019-05-19 08:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-05-19 07:00:00+00:00,FR04014,no2,32.4,µg/m³
+Paris,FR,2019-05-19 06:00:00+00:00,FR04014,no2,31.1,µg/m³
+Paris,FR,2019-05-19 05:00:00+00:00,FR04014,no2,40.9,µg/m³
+Paris,FR,2019-05-19 04:00:00+00:00,FR04014,no2,39.4,µg/m³
+Paris,FR,2019-05-19 03:00:00+00:00,FR04014,no2,36.4,µg/m³
+Paris,FR,2019-05-19 02:00:00+00:00,FR04014,no2,38.1,µg/m³
+Paris,FR,2019-05-19 01:00:00+00:00,FR04014,no2,34.9,µg/m³
+Paris,FR,2019-05-19 00:00:00+00:00,FR04014,no2,49.6,µg/m³
+Paris,FR,2019-05-18 23:00:00+00:00,FR04014,no2,50.2,µg/m³
+Paris,FR,2019-05-18 22:00:00+00:00,FR04014,no2,62.5,µg/m³
+Paris,FR,2019-05-18 21:00:00+00:00,FR04014,no2,59.3,µg/m³
+Paris,FR,2019-05-18 20:00:00+00:00,FR04014,no2,36.2,µg/m³
+Paris,FR,2019-05-18 19:00:00+00:00,FR04014,no2,67.5,µg/m³
+Paris,FR,2019-05-18 18:00:00+00:00,FR04014,no2,14.5,µg/m³
+Paris,FR,2019-05-18 17:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-05-18 16:00:00+00:00,FR04014,no2,14.6,µg/m³
+Paris,FR,2019-05-18 15:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-05-18 14:00:00+00:00,FR04014,no2,11.8,µg/m³
+Paris,FR,2019-05-18 13:00:00+00:00,FR04014,no2,10.5,µg/m³
+Paris,FR,2019-05-18 12:00:00+00:00,FR04014,no2,12.9,µg/m³
+Paris,FR,2019-05-18 11:00:00+00:00,FR04014,no2,17.5,µg/m³
+Paris,FR,2019-05-18 10:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-05-18 09:00:00+00:00,FR04014,no2,21.1,µg/m³
+Paris,FR,2019-05-18 08:00:00+00:00,FR04014,no2,20.4,µg/m³
+Paris,FR,2019-05-18 07:00:00+00:00,FR04014,no2,27.4,µg/m³
+Paris,FR,2019-05-18 06:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-18 05:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-05-18 04:00:00+00:00,FR04014,no2,16.6,µg/m³
+Paris,FR,2019-05-18 03:00:00+00:00,FR04014,no2,16.1,µg/m³
+Paris,FR,2019-05-18 02:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-05-18 01:00:00+00:00,FR04014,no2,37.4,µg/m³
+Paris,FR,2019-05-18 00:00:00+00:00,FR04014,no2,31.5,µg/m³
+Paris,FR,2019-05-17 23:00:00+00:00,FR04014,no2,34.1,µg/m³
+Paris,FR,2019-05-17 22:00:00+00:00,FR04014,no2,28.2,µg/m³
+Paris,FR,2019-05-17 21:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-17 20:00:00+00:00,FR04014,no2,23.5,µg/m³
+Paris,FR,2019-05-17 19:00:00+00:00,FR04014,no2,24.7,µg/m³
+Paris,FR,2019-05-17 18:00:00+00:00,FR04014,no2,33.6,µg/m³
+Paris,FR,2019-05-17 17:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-05-17 16:00:00+00:00,FR04014,no2,20.7,µg/m³
+Paris,FR,2019-05-17 15:00:00+00:00,FR04014,no2,22.2,µg/m³
+Paris,FR,2019-05-17 14:00:00+00:00,FR04014,no2,27.0,µg/m³
+Paris,FR,2019-05-17 13:00:00+00:00,FR04014,no2,37.9,µg/m³
+Paris,FR,2019-05-17 12:00:00+00:00,FR04014,no2,46.5,µg/m³
+Paris,FR,2019-05-17 11:00:00+00:00,FR04014,no2,43.1,µg/m³
+Paris,FR,2019-05-17 10:00:00+00:00,FR04014,no2,51.5,µg/m³
+Paris,FR,2019-05-17 09:00:00+00:00,FR04014,no2,60.5,µg/m³
+Paris,FR,2019-05-17 08:00:00+00:00,FR04014,no2,57.5,µg/m³
+Paris,FR,2019-05-17 07:00:00+00:00,FR04014,no2,55.0,µg/m³
+Paris,FR,2019-05-17 06:00:00+00:00,FR04014,no2,46.3,µg/m³
+Paris,FR,2019-05-17 05:00:00+00:00,FR04014,no2,34.0,µg/m³
+Paris,FR,2019-05-17 04:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-05-17 03:00:00+00:00,FR04014,no2,26.6,µg/m³
+Paris,FR,2019-05-17 02:00:00+00:00,FR04014,no2,24.6,µg/m³
+Paris,FR,2019-05-17 01:00:00+00:00,FR04014,no2,26.1,µg/m³
+Paris,FR,2019-05-17 00:00:00+00:00,FR04014,no2,46.3,µg/m³
+Paris,FR,2019-05-16 23:00:00+00:00,FR04014,no2,43.7,µg/m³
+Paris,FR,2019-05-16 22:00:00+00:00,FR04014,no2,37.1,µg/m³
+Paris,FR,2019-05-16 21:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-16 20:00:00+00:00,FR04014,no2,24.8,µg/m³
+Paris,FR,2019-05-16 19:00:00+00:00,FR04014,no2,14.4,µg/m³
+Paris,FR,2019-05-16 18:00:00+00:00,FR04014,no2,15.9,µg/m³
+Paris,FR,2019-05-16 17:00:00+00:00,FR04014,no2,13.5,µg/m³
+Paris,FR,2019-05-16 16:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-05-16 15:00:00+00:00,FR04014,no2,10.1,µg/m³
+Paris,FR,2019-05-16 14:00:00+00:00,FR04014,no2,8.1,µg/m³
+Paris,FR,2019-05-16 13:00:00+00:00,FR04014,no2,8.5,µg/m³
+Paris,FR,2019-05-16 12:00:00+00:00,FR04014,no2,9.2,µg/m³
+Paris,FR,2019-05-16 11:00:00+00:00,FR04014,no2,10.5,µg/m³
+Paris,FR,2019-05-16 10:00:00+00:00,FR04014,no2,13.5,µg/m³
+Paris,FR,2019-05-16 09:00:00+00:00,FR04014,no2,29.5,µg/m³
+Paris,FR,2019-05-16 08:00:00+00:00,FR04014,no2,39.4,µg/m³
+Paris,FR,2019-05-16 07:00:00+00:00,FR04014,no2,40.0,µg/m³
+Paris,FR,2019-05-16 05:00:00+00:00,FR04014,no2,52.6,µg/m³
+Paris,FR,2019-05-16 04:00:00+00:00,FR04014,no2,37.0,µg/m³
+Paris,FR,2019-05-16 03:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-05-16 02:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-05-16 01:00:00+00:00,FR04014,no2,26.0,µg/m³
+Paris,FR,2019-05-16 00:00:00+00:00,FR04014,no2,27.4,µg/m³
+Paris,FR,2019-05-15 23:00:00+00:00,FR04014,no2,30.9,µg/m³
+Paris,FR,2019-05-15 22:00:00+00:00,FR04014,no2,44.1,µg/m³
+Paris,FR,2019-05-15 21:00:00+00:00,FR04014,no2,36.0,µg/m³
+Paris,FR,2019-05-15 20:00:00+00:00,FR04014,no2,30.1,µg/m³
+Paris,FR,2019-05-15 19:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-05-15 18:00:00+00:00,FR04014,no2,16.5,µg/m³
+Paris,FR,2019-05-15 17:00:00+00:00,FR04014,no2,12.9,µg/m³
+Paris,FR,2019-05-15 16:00:00+00:00,FR04014,no2,12.2,µg/m³
+Paris,FR,2019-05-15 15:00:00+00:00,FR04014,no2,12.9,µg/m³
+Paris,FR,2019-05-15 14:00:00+00:00,FR04014,no2,11.9,µg/m³
+Paris,FR,2019-05-15 13:00:00+00:00,FR04014,no2,10.0,µg/m³
+Paris,FR,2019-05-15 12:00:00+00:00,FR04014,no2,9.4,µg/m³
+Paris,FR,2019-05-15 11:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-05-15 10:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-05-15 09:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-05-15 08:00:00+00:00,FR04014,no2,25.7,µg/m³
+Paris,FR,2019-05-15 07:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-05-15 06:00:00+00:00,FR04014,no2,48.1,µg/m³
+Paris,FR,2019-05-15 05:00:00+00:00,FR04014,no2,46.5,µg/m³
+Paris,FR,2019-05-15 04:00:00+00:00,FR04014,no2,28.9,µg/m³
+Paris,FR,2019-05-15 03:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-05-15 02:00:00+00:00,FR04014,no2,16.8,µg/m³
+Paris,FR,2019-05-15 01:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-05-15 00:00:00+00:00,FR04014,no2,18.8,µg/m³
+Paris,FR,2019-05-14 23:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-14 22:00:00+00:00,FR04014,no2,30.9,µg/m³
+Paris,FR,2019-05-14 21:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-05-14 20:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-05-14 19:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-05-14 18:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-05-14 17:00:00+00:00,FR04014,no2,17.7,µg/m³
+Paris,FR,2019-05-14 16:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-05-14 15:00:00+00:00,FR04014,no2,13.4,µg/m³
+Paris,FR,2019-05-14 14:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-05-14 13:00:00+00:00,FR04014,no2,11.0,µg/m³
+Paris,FR,2019-05-14 12:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-05-14 11:00:00+00:00,FR04014,no2,11.3,µg/m³
+Paris,FR,2019-05-14 10:00:00+00:00,FR04014,no2,12.9,µg/m³
+Paris,FR,2019-05-14 09:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-05-14 08:00:00+00:00,FR04014,no2,28.8,µg/m³
+Paris,FR,2019-05-14 07:00:00+00:00,FR04014,no2,41.3,µg/m³
+Paris,FR,2019-05-14 06:00:00+00:00,FR04014,no2,46.1,µg/m³
+Paris,FR,2019-05-14 05:00:00+00:00,FR04014,no2,38.6,µg/m³
+Paris,FR,2019-05-14 04:00:00+00:00,FR04014,no2,31.6,µg/m³
+Paris,FR,2019-05-14 03:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-14 02:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-05-14 01:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-05-14 00:00:00+00:00,FR04014,no2,20.9,µg/m³
+Paris,FR,2019-05-13 23:00:00+00:00,FR04014,no2,22.8,µg/m³
+Paris,FR,2019-05-13 22:00:00+00:00,FR04014,no2,27.3,µg/m³
+Paris,FR,2019-05-13 21:00:00+00:00,FR04014,no2,30.4,µg/m³
+Paris,FR,2019-05-13 20:00:00+00:00,FR04014,no2,28.3,µg/m³
+Paris,FR,2019-05-13 19:00:00+00:00,FR04014,no2,23.9,µg/m³
+Paris,FR,2019-05-13 18:00:00+00:00,FR04014,no2,15.5,µg/m³
+Paris,FR,2019-05-13 17:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-05-13 16:00:00+00:00,FR04014,no2,12.1,µg/m³
+Paris,FR,2019-05-13 15:00:00+00:00,FR04014,no2,10.6,µg/m³
+Paris,FR,2019-05-13 14:00:00+00:00,FR04014,no2,10.7,µg/m³
+Paris,FR,2019-05-13 13:00:00+00:00,FR04014,no2,10.1,µg/m³
+Paris,FR,2019-05-13 12:00:00+00:00,FR04014,no2,9.2,µg/m³
+Paris,FR,2019-05-13 11:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-05-13 10:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-05-13 09:00:00+00:00,FR04014,no2,20.6,µg/m³
+Paris,FR,2019-05-13 08:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-05-13 07:00:00+00:00,FR04014,no2,41.0,µg/m³
+Paris,FR,2019-05-13 06:00:00+00:00,FR04014,no2,45.2,µg/m³
+Paris,FR,2019-05-13 05:00:00+00:00,FR04014,no2,38.3,µg/m³
+Paris,FR,2019-05-13 04:00:00+00:00,FR04014,no2,25.1,µg/m³
+Paris,FR,2019-05-13 03:00:00+00:00,FR04014,no2,18.9,µg/m³
+Paris,FR,2019-05-13 02:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-05-13 01:00:00+00:00,FR04014,no2,18.9,µg/m³
+Paris,FR,2019-05-13 00:00:00+00:00,FR04014,no2,25.0,µg/m³
+Paris,FR,2019-05-12 23:00:00+00:00,FR04014,no2,32.5,µg/m³
+Paris,FR,2019-05-12 22:00:00+00:00,FR04014,no2,46.5,µg/m³
+Paris,FR,2019-05-12 21:00:00+00:00,FR04014,no2,34.2,µg/m³
+Paris,FR,2019-05-12 20:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-05-12 19:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-05-12 18:00:00+00:00,FR04014,no2,18.2,µg/m³
+Paris,FR,2019-05-12 17:00:00+00:00,FR04014,no2,13.9,µg/m³
+Paris,FR,2019-05-12 16:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-05-12 15:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-05-12 14:00:00+00:00,FR04014,no2,9.1,µg/m³
+Paris,FR,2019-05-12 13:00:00+00:00,FR04014,no2,8.7,µg/m³
+Paris,FR,2019-05-12 12:00:00+00:00,FR04014,no2,10.9,µg/m³
+Paris,FR,2019-05-12 11:00:00+00:00,FR04014,no2,11.4,µg/m³
+Paris,FR,2019-05-12 10:00:00+00:00,FR04014,no2,11.4,µg/m³
+Paris,FR,2019-05-12 09:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-05-12 08:00:00+00:00,FR04014,no2,14.6,µg/m³
+Paris,FR,2019-05-12 07:00:00+00:00,FR04014,no2,15.9,µg/m³
+Paris,FR,2019-05-12 06:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-05-12 05:00:00+00:00,FR04014,no2,19.2,µg/m³
+Paris,FR,2019-05-12 04:00:00+00:00,FR04014,no2,16.2,µg/m³
+Paris,FR,2019-05-12 03:00:00+00:00,FR04014,no2,16.0,µg/m³
+Paris,FR,2019-05-12 02:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-05-12 01:00:00+00:00,FR04014,no2,19.2,µg/m³
+Paris,FR,2019-05-12 00:00:00+00:00,FR04014,no2,22.8,µg/m³
+Paris,FR,2019-05-11 23:00:00+00:00,FR04014,no2,26.4,µg/m³
+Paris,FR,2019-05-11 22:00:00+00:00,FR04014,no2,27.7,µg/m³
+Paris,FR,2019-05-11 21:00:00+00:00,FR04014,no2,21.1,µg/m³
+Paris,FR,2019-05-11 20:00:00+00:00,FR04014,no2,24.2,µg/m³
+Paris,FR,2019-05-11 19:00:00+00:00,FR04014,no2,31.2,µg/m³
+Paris,FR,2019-05-11 18:00:00+00:00,FR04014,no2,33.1,µg/m³
+Paris,FR,2019-05-11 17:00:00+00:00,FR04014,no2,32.0,µg/m³
+Paris,FR,2019-05-11 16:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-05-11 15:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-05-11 14:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-05-11 13:00:00+00:00,FR04014,no2,30.8,µg/m³
+Paris,FR,2019-05-11 12:00:00+00:00,FR04014,no2,30.2,µg/m³
+Paris,FR,2019-05-11 11:00:00+00:00,FR04014,no2,33.2,µg/m³
+Paris,FR,2019-05-11 10:00:00+00:00,FR04014,no2,36.8,µg/m³
+Paris,FR,2019-05-11 09:00:00+00:00,FR04014,no2,35.7,µg/m³
+Paris,FR,2019-05-11 08:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-05-11 07:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-05-11 06:00:00+00:00,FR04014,no2,28.9,µg/m³
+Paris,FR,2019-05-11 02:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-05-11 01:00:00+00:00,FR04014,no2,15.5,µg/m³
+Paris,FR,2019-05-11 00:00:00+00:00,FR04014,no2,24.8,µg/m³
+Paris,FR,2019-05-10 23:00:00+00:00,FR04014,no2,26.0,µg/m³
+Paris,FR,2019-05-10 22:00:00+00:00,FR04014,no2,28.1,µg/m³
+Paris,FR,2019-05-10 21:00:00+00:00,FR04014,no2,37.0,µg/m³
+Paris,FR,2019-05-10 20:00:00+00:00,FR04014,no2,43.6,µg/m³
+Paris,FR,2019-05-10 19:00:00+00:00,FR04014,no2,39.3,µg/m³
+Paris,FR,2019-05-10 18:00:00+00:00,FR04014,no2,33.4,µg/m³
+Paris,FR,2019-05-10 17:00:00+00:00,FR04014,no2,37.8,µg/m³
+Paris,FR,2019-05-10 16:00:00+00:00,FR04014,no2,30.8,µg/m³
+Paris,FR,2019-05-10 15:00:00+00:00,FR04014,no2,29.6,µg/m³
+Paris,FR,2019-05-10 14:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-05-10 13:00:00+00:00,FR04014,no2,22.0,µg/m³
+Paris,FR,2019-05-10 12:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-05-10 11:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-05-10 10:00:00+00:00,FR04014,no2,35.1,µg/m³
+Paris,FR,2019-05-10 09:00:00+00:00,FR04014,no2,53.4,µg/m³
+Paris,FR,2019-05-10 08:00:00+00:00,FR04014,no2,60.7,µg/m³
+Paris,FR,2019-05-10 07:00:00+00:00,FR04014,no2,57.3,µg/m³
+Paris,FR,2019-05-10 06:00:00+00:00,FR04014,no2,47.4,µg/m³
+Paris,FR,2019-05-10 05:00:00+00:00,FR04014,no2,37.8,µg/m³
+Paris,FR,2019-05-10 04:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-05-10 03:00:00+00:00,FR04014,no2,15.0,µg/m³
+Paris,FR,2019-05-10 02:00:00+00:00,FR04014,no2,14.1,µg/m³
+Paris,FR,2019-05-10 01:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-05-10 00:00:00+00:00,FR04014,no2,22.7,µg/m³
+Paris,FR,2019-05-09 23:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-05-09 22:00:00+00:00,FR04014,no2,29.7,µg/m³
+Paris,FR,2019-05-09 21:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-05-09 20:00:00+00:00,FR04014,no2,29.2,µg/m³
+Paris,FR,2019-05-09 19:00:00+00:00,FR04014,no2,23.8,µg/m³
+Paris,FR,2019-05-09 18:00:00+00:00,FR04014,no2,24.4,µg/m³
+Paris,FR,2019-05-09 17:00:00+00:00,FR04014,no2,29.9,µg/m³
+Paris,FR,2019-05-09 16:00:00+00:00,FR04014,no2,27.0,µg/m³
+Paris,FR,2019-05-09 15:00:00+00:00,FR04014,no2,23.9,µg/m³
+Paris,FR,2019-05-09 14:00:00+00:00,FR04014,no2,24.6,µg/m³
+Paris,FR,2019-05-09 13:00:00+00:00,FR04014,no2,21.3,µg/m³
+Paris,FR,2019-05-09 12:00:00+00:00,FR04014,no2,35.1,µg/m³
+Paris,FR,2019-05-09 11:00:00+00:00,FR04014,no2,34.2,µg/m³
+Paris,FR,2019-05-09 10:00:00+00:00,FR04014,no2,43.1,µg/m³
+Paris,FR,2019-05-09 09:00:00+00:00,FR04014,no2,32.3,µg/m³
+Paris,FR,2019-05-09 08:00:00+00:00,FR04014,no2,32.2,µg/m³
+Paris,FR,2019-05-09 07:00:00+00:00,FR04014,no2,49.0,µg/m³
+Paris,FR,2019-05-09 06:00:00+00:00,FR04014,no2,50.7,µg/m³
+Paris,FR,2019-05-09 05:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-05-09 04:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-05-09 03:00:00+00:00,FR04014,no2,10.4,µg/m³
+Paris,FR,2019-05-09 02:00:00+00:00,FR04014,no2,10.0,µg/m³
+Paris,FR,2019-05-09 01:00:00+00:00,FR04014,no2,10.6,µg/m³
+Paris,FR,2019-05-09 00:00:00+00:00,FR04014,no2,14.7,µg/m³
+Paris,FR,2019-05-08 23:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-05-08 22:00:00+00:00,FR04014,no2,32.2,µg/m³
+Paris,FR,2019-05-08 21:00:00+00:00,FR04014,no2,48.9,µg/m³
+Paris,FR,2019-05-08 20:00:00+00:00,FR04014,no2,38.3,µg/m³
+Paris,FR,2019-05-08 19:00:00+00:00,FR04014,no2,41.3,µg/m³
+Paris,FR,2019-05-08 18:00:00+00:00,FR04014,no2,27.8,µg/m³
+Paris,FR,2019-05-08 17:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-05-08 16:00:00+00:00,FR04014,no2,38.6,µg/m³
+Paris,FR,2019-05-08 15:00:00+00:00,FR04014,no2,26.0,µg/m³
+Paris,FR,2019-05-08 14:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-05-08 13:00:00+00:00,FR04014,no2,14.3,µg/m³
+Paris,FR,2019-05-08 12:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-05-08 11:00:00+00:00,FR04014,no2,21.4,µg/m³
+Paris,FR,2019-05-08 10:00:00+00:00,FR04014,no2,33.4,µg/m³
+Paris,FR,2019-05-08 09:00:00+00:00,FR04014,no2,19.7,µg/m³
+Paris,FR,2019-05-08 08:00:00+00:00,FR04014,no2,17.0,µg/m³
+Paris,FR,2019-05-08 07:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-05-08 06:00:00+00:00,FR04014,no2,21.7,µg/m³
+Paris,FR,2019-05-08 05:00:00+00:00,FR04014,no2,19.3,µg/m³
+Paris,FR,2019-05-08 04:00:00+00:00,FR04014,no2,15.5,µg/m³
+Paris,FR,2019-05-08 03:00:00+00:00,FR04014,no2,13.5,µg/m³
+Paris,FR,2019-05-08 02:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-05-08 01:00:00+00:00,FR04014,no2,19.6,µg/m³
+Paris,FR,2019-05-08 00:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-07 23:00:00+00:00,FR04014,no2,34.0,µg/m³
+Paris,FR,2019-05-07 22:00:00+00:00,FR04014,no2,35.8,µg/m³
+Paris,FR,2019-05-07 21:00:00+00:00,FR04014,no2,33.9,µg/m³
+Paris,FR,2019-05-07 20:00:00+00:00,FR04014,no2,36.2,µg/m³
+Paris,FR,2019-05-07 19:00:00+00:00,FR04014,no2,26.8,µg/m³
+Paris,FR,2019-05-07 18:00:00+00:00,FR04014,no2,21.4,µg/m³
+Paris,FR,2019-05-07 17:00:00+00:00,FR04014,no2,22.3,µg/m³
+Paris,FR,2019-05-07 16:00:00+00:00,FR04014,no2,18.2,µg/m³
+Paris,FR,2019-05-07 15:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-05-07 14:00:00+00:00,FR04014,no2,11.0,µg/m³
+Paris,FR,2019-05-07 13:00:00+00:00,FR04014,no2,13.2,µg/m³
+Paris,FR,2019-05-07 12:00:00+00:00,FR04014,no2,10.6,µg/m³
+Paris,FR,2019-05-07 11:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-05-07 10:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-05-07 09:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-05-07 08:00:00+00:00,FR04014,no2,56.0,µg/m³
+Paris,FR,2019-05-07 07:00:00+00:00,FR04014,no2,67.9,µg/m³
+Paris,FR,2019-05-07 06:00:00+00:00,FR04014,no2,77.7,µg/m³
+Paris,FR,2019-05-07 05:00:00+00:00,FR04014,no2,72.4,µg/m³
+Paris,FR,2019-05-07 04:00:00+00:00,FR04014,no2,61.9,µg/m³
+Paris,FR,2019-05-07 03:00:00+00:00,FR04014,no2,50.4,µg/m³
+Paris,FR,2019-05-07 02:00:00+00:00,FR04014,no2,27.7,µg/m³
+Paris,FR,2019-05-07 01:00:00+00:00,FR04014,no2,25.0,µg/m³
+Paris,FR,2019-05-07 00:00:00+00:00,FR04014,no2,47.2,µg/m³
+Paris,FR,2019-05-06 23:00:00+00:00,FR04014,no2,53.1,µg/m³
+Paris,FR,2019-05-06 22:00:00+00:00,FR04014,no2,46.5,µg/m³
+Paris,FR,2019-05-06 21:00:00+00:00,FR04014,no2,37.2,µg/m³
+Paris,FR,2019-05-06 20:00:00+00:00,FR04014,no2,35.9,µg/m³
+Paris,FR,2019-05-06 19:00:00+00:00,FR04014,no2,33.7,µg/m³
+Paris,FR,2019-05-06 18:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-05-06 17:00:00+00:00,FR04014,no2,32.7,µg/m³
+Paris,FR,2019-05-06 16:00:00+00:00,FR04014,no2,38.4,µg/m³
+Paris,FR,2019-05-06 15:00:00+00:00,FR04014,no2,39.3,µg/m³
+Paris,FR,2019-05-06 14:00:00+00:00,FR04014,no2,37.8,µg/m³
+Paris,FR,2019-05-06 13:00:00+00:00,FR04014,no2,38.6,µg/m³
+Paris,FR,2019-05-06 12:00:00+00:00,FR04014,no2,42.1,µg/m³
+Paris,FR,2019-05-06 11:00:00+00:00,FR04014,no2,44.3,µg/m³
+Paris,FR,2019-05-06 10:00:00+00:00,FR04014,no2,42.4,µg/m³
+Paris,FR,2019-05-06 09:00:00+00:00,FR04014,no2,44.2,µg/m³
+Paris,FR,2019-05-06 08:00:00+00:00,FR04014,no2,52.5,µg/m³
+Paris,FR,2019-05-06 07:00:00+00:00,FR04014,no2,68.9,µg/m³
+Paris,FR,2019-05-06 06:00:00+00:00,FR04014,no2,62.4,µg/m³
+Paris,FR,2019-05-06 05:00:00+00:00,FR04014,no2,56.7,µg/m³
+Paris,FR,2019-05-06 04:00:00+00:00,FR04014,no2,36.0,µg/m³
+Paris,FR,2019-05-06 03:00:00+00:00,FR04014,no2,26.5,µg/m³
+Paris,FR,2019-05-06 02:00:00+00:00,FR04014,no2,25.1,µg/m³
+Paris,FR,2019-05-06 01:00:00+00:00,FR04014,no2,26.6,µg/m³
+Paris,FR,2019-05-06 00:00:00+00:00,FR04014,no2,26.8,µg/m³
+Paris,FR,2019-05-05 23:00:00+00:00,FR04014,no2,26.4,µg/m³
+Paris,FR,2019-05-05 22:00:00+00:00,FR04014,no2,28.6,µg/m³
+Paris,FR,2019-05-05 21:00:00+00:00,FR04014,no2,25.8,µg/m³
+Paris,FR,2019-05-05 20:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-05-05 19:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-05 18:00:00+00:00,FR04014,no2,20.4,µg/m³
+Paris,FR,2019-05-05 17:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-05-05 16:00:00+00:00,FR04014,no2,16.9,µg/m³
+Paris,FR,2019-05-05 15:00:00+00:00,FR04014,no2,16.8,µg/m³
+Paris,FR,2019-05-05 14:00:00+00:00,FR04014,no2,17.6,µg/m³
+Paris,FR,2019-05-05 13:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-05-05 12:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-05-05 11:00:00+00:00,FR04014,no2,11.1,µg/m³
+Paris,FR,2019-05-05 10:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-05-05 09:00:00+00:00,FR04014,no2,11.6,µg/m³
+Paris,FR,2019-05-05 08:00:00+00:00,FR04014,no2,16.6,µg/m³
+Paris,FR,2019-05-05 07:00:00+00:00,FR04014,no2,21.9,µg/m³
+Paris,FR,2019-05-05 06:00:00+00:00,FR04014,no2,26.4,µg/m³
+Paris,FR,2019-05-05 05:00:00+00:00,FR04014,no2,29.2,µg/m³
+Paris,FR,2019-05-05 04:00:00+00:00,FR04014,no2,26.1,µg/m³
+Paris,FR,2019-05-05 03:00:00+00:00,FR04014,no2,22.7,µg/m³
+Paris,FR,2019-05-05 02:00:00+00:00,FR04014,no2,27.2,µg/m³
+Paris,FR,2019-05-05 01:00:00+00:00,FR04014,no2,25.7,µg/m³
+Paris,FR,2019-05-05 00:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-04 23:00:00+00:00,FR04014,no2,25.8,µg/m³
+Paris,FR,2019-05-04 22:00:00+00:00,FR04014,no2,23.9,µg/m³
+Paris,FR,2019-05-04 21:00:00+00:00,FR04014,no2,27.1,µg/m³
+Paris,FR,2019-05-04 20:00:00+00:00,FR04014,no2,33.1,µg/m³
+Paris,FR,2019-05-04 19:00:00+00:00,FR04014,no2,26.8,µg/m³
+Paris,FR,2019-05-04 18:00:00+00:00,FR04014,no2,16.7,µg/m³
+Paris,FR,2019-05-04 17:00:00+00:00,FR04014,no2,18.2,µg/m³
+Paris,FR,2019-05-04 16:00:00+00:00,FR04014,no2,13.2,µg/m³
+Paris,FR,2019-05-04 15:00:00+00:00,FR04014,no2,17.7,µg/m³
+Paris,FR,2019-05-04 14:00:00+00:00,FR04014,no2,17.1,µg/m³
+Paris,FR,2019-05-04 13:00:00+00:00,FR04014,no2,16.5,µg/m³
+Paris,FR,2019-05-04 12:00:00+00:00,FR04014,no2,21.0,µg/m³
+Paris,FR,2019-05-04 11:00:00+00:00,FR04014,no2,24.4,µg/m³
+Paris,FR,2019-05-04 10:00:00+00:00,FR04014,no2,25.8,µg/m³
+Paris,FR,2019-05-04 09:00:00+00:00,FR04014,no2,26.1,µg/m³
+Paris,FR,2019-05-04 08:00:00+00:00,FR04014,no2,22.5,µg/m³
+Paris,FR,2019-05-04 07:00:00+00:00,FR04014,no2,20.8,µg/m³
+Paris,FR,2019-05-04 06:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-05-04 05:00:00+00:00,FR04014,no2,21.9,µg/m³
+Paris,FR,2019-05-04 04:00:00+00:00,FR04014,no2,20.0,µg/m³
+Paris,FR,2019-05-04 03:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-05-04 02:00:00+00:00,FR04014,no2,22.3,µg/m³
+Paris,FR,2019-05-04 01:00:00+00:00,FR04014,no2,22.2,µg/m³
+Paris,FR,2019-05-04 00:00:00+00:00,FR04014,no2,29.7,µg/m³
+Paris,FR,2019-05-03 23:00:00+00:00,FR04014,no2,31.3,µg/m³
+Paris,FR,2019-05-03 22:00:00+00:00,FR04014,no2,43.2,µg/m³
+Paris,FR,2019-05-03 21:00:00+00:00,FR04014,no2,31.8,µg/m³
+Paris,FR,2019-05-03 20:00:00+00:00,FR04014,no2,24.6,µg/m³
+Paris,FR,2019-05-03 19:00:00+00:00,FR04014,no2,37.2,µg/m³
+Paris,FR,2019-05-03 18:00:00+00:00,FR04014,no2,59.6,µg/m³
+Paris,FR,2019-05-03 17:00:00+00:00,FR04014,no2,46.5,µg/m³
+Paris,FR,2019-05-03 16:00:00+00:00,FR04014,no2,33.0,µg/m³
+Paris,FR,2019-05-03 15:00:00+00:00,FR04014,no2,29.2,µg/m³
+Paris,FR,2019-05-03 14:00:00+00:00,FR04014,no2,36.0,µg/m³
+Paris,FR,2019-05-03 13:00:00+00:00,FR04014,no2,38.1,µg/m³
+Paris,FR,2019-05-03 12:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-05-03 11:00:00+00:00,FR04014,no2,38.2,µg/m³
+Paris,FR,2019-05-03 10:00:00+00:00,FR04014,no2,46.3,µg/m³
+Paris,FR,2019-05-03 09:00:00+00:00,FR04014,no2,39.8,µg/m³
+Paris,FR,2019-05-03 08:00:00+00:00,FR04014,no2,46.4,µg/m³
+Paris,FR,2019-05-03 07:00:00+00:00,FR04014,no2,48.1,µg/m³
+Paris,FR,2019-05-03 06:00:00+00:00,FR04014,no2,45.1,µg/m³
+Paris,FR,2019-05-03 05:00:00+00:00,FR04014,no2,32.8,µg/m³
+Paris,FR,2019-05-03 04:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-05-03 03:00:00+00:00,FR04014,no2,17.6,µg/m³
+Paris,FR,2019-05-03 02:00:00+00:00,FR04014,no2,17.5,µg/m³
+Paris,FR,2019-05-03 01:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-05-03 00:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-05-02 23:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-05-02 22:00:00+00:00,FR04014,no2,31.1,µg/m³
+Paris,FR,2019-05-02 21:00:00+00:00,FR04014,no2,31.0,µg/m³
+Paris,FR,2019-05-02 20:00:00+00:00,FR04014,no2,28.6,µg/m³
+Paris,FR,2019-05-02 19:00:00+00:00,FR04014,no2,30.7,µg/m³
+Paris,FR,2019-05-02 18:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-05-02 17:00:00+00:00,FR04014,no2,29.9,µg/m³
+Paris,FR,2019-05-02 16:00:00+00:00,FR04014,no2,36.7,µg/m³
+Paris,FR,2019-05-02 15:00:00+00:00,FR04014,no2,41.4,µg/m³
+Paris,FR,2019-05-02 14:00:00+00:00,FR04014,no2,36.3,µg/m³
+Paris,FR,2019-05-02 13:00:00+00:00,FR04014,no2,38.3,µg/m³
+Paris,FR,2019-05-02 12:00:00+00:00,FR04014,no2,37.0,µg/m³
+Paris,FR,2019-05-02 11:00:00+00:00,FR04014,no2,32.6,µg/m³
+Paris,FR,2019-05-02 10:00:00+00:00,FR04014,no2,38.1,µg/m³
+Paris,FR,2019-05-02 09:00:00+00:00,FR04014,no2,43.6,µg/m³
+Paris,FR,2019-05-02 08:00:00+00:00,FR04014,no2,55.5,µg/m³
+Paris,FR,2019-05-02 07:00:00+00:00,FR04014,no2,51.0,µg/m³
+Paris,FR,2019-05-02 06:00:00+00:00,FR04014,no2,49.4,µg/m³
+Paris,FR,2019-05-02 05:00:00+00:00,FR04014,no2,35.8,µg/m³
+Paris,FR,2019-05-02 04:00:00+00:00,FR04014,no2,17.5,µg/m³
+Paris,FR,2019-05-02 03:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-05-02 02:00:00+00:00,FR04014,no2,13.2,µg/m³
+Paris,FR,2019-05-02 01:00:00+00:00,FR04014,no2,16.3,µg/m³
+Paris,FR,2019-05-02 00:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-05-01 23:00:00+00:00,FR04014,no2,22.7,µg/m³
+Paris,FR,2019-05-01 22:00:00+00:00,FR04014,no2,23.8,µg/m³
+Paris,FR,2019-05-01 21:00:00+00:00,FR04014,no2,24.4,µg/m³
+Paris,FR,2019-05-01 20:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-05-01 19:00:00+00:00,FR04014,no2,22.3,µg/m³
+Paris,FR,2019-05-01 18:00:00+00:00,FR04014,no2,23.0,µg/m³
+Paris,FR,2019-05-01 17:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-05-01 16:00:00+00:00,FR04014,no2,21.0,µg/m³
+Paris,FR,2019-05-01 15:00:00+00:00,FR04014,no2,24.4,µg/m³
+Paris,FR,2019-05-01 14:00:00+00:00,FR04014,no2,20.6,µg/m³
+Paris,FR,2019-05-01 13:00:00+00:00,FR04014,no2,22.5,µg/m³
+Paris,FR,2019-05-01 12:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-05-01 11:00:00+00:00,FR04014,no2,28.2,µg/m³
+Paris,FR,2019-05-01 10:00:00+00:00,FR04014,no2,33.3,µg/m³
+Paris,FR,2019-05-01 09:00:00+00:00,FR04014,no2,33.5,µg/m³
+Paris,FR,2019-05-01 08:00:00+00:00,FR04014,no2,33.5,µg/m³
+Paris,FR,2019-05-01 07:00:00+00:00,FR04014,no2,37.8,µg/m³
+Paris,FR,2019-05-01 06:00:00+00:00,FR04014,no2,33.4,µg/m³
+Paris,FR,2019-05-01 05:00:00+00:00,FR04014,no2,28.5,µg/m³
+Paris,FR,2019-05-01 04:00:00+00:00,FR04014,no2,24.9,µg/m³
+Paris,FR,2019-05-01 03:00:00+00:00,FR04014,no2,23.1,µg/m³
+Paris,FR,2019-05-01 02:00:00+00:00,FR04014,no2,26.1,µg/m³
+Paris,FR,2019-05-01 01:00:00+00:00,FR04014,no2,31.2,µg/m³
+Paris,FR,2019-05-01 00:00:00+00:00,FR04014,no2,37.8,µg/m³
+Paris,FR,2019-04-30 23:00:00+00:00,FR04014,no2,43.6,µg/m³
+Paris,FR,2019-04-30 22:00:00+00:00,FR04014,no2,41.3,µg/m³
+Paris,FR,2019-04-30 21:00:00+00:00,FR04014,no2,42.8,µg/m³
+Paris,FR,2019-04-30 20:00:00+00:00,FR04014,no2,39.6,µg/m³
+Paris,FR,2019-04-30 19:00:00+00:00,FR04014,no2,36.8,µg/m³
+Paris,FR,2019-04-30 18:00:00+00:00,FR04014,no2,27.2,µg/m³
+Paris,FR,2019-04-30 17:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-04-30 16:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-04-30 15:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-04-30 14:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-04-30 13:00:00+00:00,FR04014,no2,24.2,µg/m³
+Paris,FR,2019-04-30 12:00:00+00:00,FR04014,no2,21.5,µg/m³
+Paris,FR,2019-04-30 11:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-04-30 10:00:00+00:00,FR04014,no2,33.7,µg/m³
+Paris,FR,2019-04-30 09:00:00+00:00,FR04014,no2,37.0,µg/m³
+Paris,FR,2019-04-30 08:00:00+00:00,FR04014,no2,45.1,µg/m³
+Paris,FR,2019-04-30 07:00:00+00:00,FR04014,no2,44.1,µg/m³
+Paris,FR,2019-04-30 06:00:00+00:00,FR04014,no2,51.5,µg/m³
+Paris,FR,2019-04-30 05:00:00+00:00,FR04014,no2,37.3,µg/m³
+Paris,FR,2019-04-30 04:00:00+00:00,FR04014,no2,30.8,µg/m³
+Paris,FR,2019-04-30 03:00:00+00:00,FR04014,no2,23.9,µg/m³
+Paris,FR,2019-04-30 02:00:00+00:00,FR04014,no2,22.8,µg/m³
+Paris,FR,2019-04-30 01:00:00+00:00,FR04014,no2,26.1,µg/m³
+Paris,FR,2019-04-30 00:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-04-29 23:00:00+00:00,FR04014,no2,34.3,µg/m³
+Paris,FR,2019-04-29 22:00:00+00:00,FR04014,no2,33.7,µg/m³
+Paris,FR,2019-04-29 21:00:00+00:00,FR04014,no2,31.6,µg/m³
+Paris,FR,2019-04-29 20:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-04-29 19:00:00+00:00,FR04014,no2,21.9,µg/m³
+Paris,FR,2019-04-29 18:00:00+00:00,FR04014,no2,23.9,µg/m³
+Paris,FR,2019-04-29 17:00:00+00:00,FR04014,no2,21.4,µg/m³
+Paris,FR,2019-04-29 16:00:00+00:00,FR04014,no2,15.9,µg/m³
+Paris,FR,2019-04-29 15:00:00+00:00,FR04014,no2,15.0,µg/m³
+Paris,FR,2019-04-29 14:00:00+00:00,FR04014,no2,15.7,µg/m³
+Paris,FR,2019-04-29 13:00:00+00:00,FR04014,no2,14.3,µg/m³
+Paris,FR,2019-04-29 12:00:00+00:00,FR04014,no2,19.9,µg/m³
+Paris,FR,2019-04-29 11:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-04-29 10:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-04-29 09:00:00+00:00,FR04014,no2,28.5,µg/m³
+Paris,FR,2019-04-29 08:00:00+00:00,FR04014,no2,39.1,µg/m³
+Paris,FR,2019-04-29 07:00:00+00:00,FR04014,no2,45.4,µg/m³
+Paris,FR,2019-04-29 06:00:00+00:00,FR04014,no2,52.6,µg/m³
+Paris,FR,2019-04-29 05:00:00+00:00,FR04014,no2,39.3,µg/m³
+Paris,FR,2019-04-29 04:00:00+00:00,FR04014,no2,36.1,µg/m³
+Paris,FR,2019-04-29 03:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-04-29 02:00:00+00:00,FR04014,no2,34.9,µg/m³
+Paris,FR,2019-04-29 01:00:00+00:00,FR04014,no2,25.5,µg/m³
+Paris,FR,2019-04-29 00:00:00+00:00,FR04014,no2,26.2,µg/m³
+Paris,FR,2019-04-28 23:00:00+00:00,FR04014,no2,29.8,µg/m³
+Paris,FR,2019-04-28 22:00:00+00:00,FR04014,no2,27.1,µg/m³
+Paris,FR,2019-04-28 21:00:00+00:00,FR04014,no2,33.2,µg/m³
+Paris,FR,2019-04-28 20:00:00+00:00,FR04014,no2,39.3,µg/m³
+Paris,FR,2019-04-28 19:00:00+00:00,FR04014,no2,32.3,µg/m³
+Paris,FR,2019-04-28 18:00:00+00:00,FR04014,no2,31.2,µg/m³
+Paris,FR,2019-04-28 17:00:00+00:00,FR04014,no2,23.7,µg/m³
+Paris,FR,2019-04-28 16:00:00+00:00,FR04014,no2,22.0,µg/m³
+Paris,FR,2019-04-28 15:00:00+00:00,FR04014,no2,22.7,µg/m³
+Paris,FR,2019-04-28 14:00:00+00:00,FR04014,no2,18.4,µg/m³
+Paris,FR,2019-04-28 13:00:00+00:00,FR04014,no2,19.8,µg/m³
+Paris,FR,2019-04-28 12:00:00+00:00,FR04014,no2,20.7,µg/m³
+Paris,FR,2019-04-28 11:00:00+00:00,FR04014,no2,17.7,µg/m³
+Paris,FR,2019-04-28 10:00:00+00:00,FR04014,no2,14.0,µg/m³
+Paris,FR,2019-04-28 09:00:00+00:00,FR04014,no2,13.5,µg/m³
+Paris,FR,2019-04-28 08:00:00+00:00,FR04014,no2,17.7,µg/m³
+Paris,FR,2019-04-28 07:00:00+00:00,FR04014,no2,15.9,µg/m³
+Paris,FR,2019-04-28 06:00:00+00:00,FR04014,no2,13.6,µg/m³
+Paris,FR,2019-04-28 05:00:00+00:00,FR04014,no2,12.7,µg/m³
+Paris,FR,2019-04-28 04:00:00+00:00,FR04014,no2,11.1,µg/m³
+Paris,FR,2019-04-28 03:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-04-28 02:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-04-28 01:00:00+00:00,FR04014,no2,12.3,µg/m³
+Paris,FR,2019-04-28 00:00:00+00:00,FR04014,no2,14.8,µg/m³
+Paris,FR,2019-04-27 23:00:00+00:00,FR04014,no2,18.7,µg/m³
+Paris,FR,2019-04-27 22:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-04-27 21:00:00+00:00,FR04014,no2,16.7,µg/m³
+Paris,FR,2019-04-27 20:00:00+00:00,FR04014,no2,21.0,µg/m³
+Paris,FR,2019-04-27 19:00:00+00:00,FR04014,no2,17.1,µg/m³
+Paris,FR,2019-04-27 18:00:00+00:00,FR04014,no2,18.2,µg/m³
+Paris,FR,2019-04-27 17:00:00+00:00,FR04014,no2,16.9,µg/m³
+Paris,FR,2019-04-27 16:00:00+00:00,FR04014,no2,18.6,µg/m³
+Paris,FR,2019-04-27 15:00:00+00:00,FR04014,no2,13.7,µg/m³
+Paris,FR,2019-04-27 14:00:00+00:00,FR04014,no2,13.4,µg/m³
+Paris,FR,2019-04-27 13:00:00+00:00,FR04014,no2,13.9,µg/m³
+Paris,FR,2019-04-27 12:00:00+00:00,FR04014,no2,11.0,µg/m³
+Paris,FR,2019-04-27 11:00:00+00:00,FR04014,no2,12.3,µg/m³
+Paris,FR,2019-04-27 10:00:00+00:00,FR04014,no2,10.9,µg/m³
+Paris,FR,2019-04-27 09:00:00+00:00,FR04014,no2,11.9,µg/m³
+Paris,FR,2019-04-27 08:00:00+00:00,FR04014,no2,14.5,µg/m³
+Paris,FR,2019-04-27 07:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-04-27 06:00:00+00:00,FR04014,no2,17.5,µg/m³
+Paris,FR,2019-04-27 05:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-04-27 04:00:00+00:00,FR04014,no2,12.2,µg/m³
+Paris,FR,2019-04-27 03:00:00+00:00,FR04014,no2,10.4,µg/m³
+Paris,FR,2019-04-27 02:00:00+00:00,FR04014,no2,8.6,µg/m³
+Paris,FR,2019-04-27 01:00:00+00:00,FR04014,no2,9.3,µg/m³
+Paris,FR,2019-04-27 00:00:00+00:00,FR04014,no2,10.8,µg/m³
+Paris,FR,2019-04-26 23:00:00+00:00,FR04014,no2,19.3,µg/m³
+Paris,FR,2019-04-26 22:00:00+00:00,FR04014,no2,20.7,µg/m³
+Paris,FR,2019-04-26 21:00:00+00:00,FR04014,no2,34.8,µg/m³
+Paris,FR,2019-04-26 20:00:00+00:00,FR04014,no2,38.7,µg/m³
+Paris,FR,2019-04-26 19:00:00+00:00,FR04014,no2,27.0,µg/m³
+Paris,FR,2019-04-26 18:00:00+00:00,FR04014,no2,20.8,µg/m³
+Paris,FR,2019-04-26 17:00:00+00:00,FR04014,no2,20.2,µg/m³
+Paris,FR,2019-04-26 16:00:00+00:00,FR04014,no2,18.6,µg/m³
+Paris,FR,2019-04-26 15:00:00+00:00,FR04014,no2,21.6,µg/m³
+Paris,FR,2019-04-26 14:00:00+00:00,FR04014,no2,18.6,µg/m³
+Paris,FR,2019-04-26 13:00:00+00:00,FR04014,no2,20.7,µg/m³
+Paris,FR,2019-04-26 12:00:00+00:00,FR04014,no2,27.2,µg/m³
+Paris,FR,2019-04-26 11:00:00+00:00,FR04014,no2,23.6,µg/m³
+Paris,FR,2019-04-26 10:00:00+00:00,FR04014,no2,22.2,µg/m³
+Paris,FR,2019-04-26 09:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-04-26 08:00:00+00:00,FR04014,no2,35.3,µg/m³
+Paris,FR,2019-04-26 07:00:00+00:00,FR04014,no2,47.2,µg/m³
+Paris,FR,2019-04-26 06:00:00+00:00,FR04014,no2,61.8,µg/m³
+Paris,FR,2019-04-26 05:00:00+00:00,FR04014,no2,70.9,µg/m³
+Paris,FR,2019-04-26 04:00:00+00:00,FR04014,no2,58.3,µg/m³
+Paris,FR,2019-04-26 03:00:00+00:00,FR04014,no2,32.7,µg/m³
+Paris,FR,2019-04-26 02:00:00+00:00,FR04014,no2,27.8,µg/m³
+Paris,FR,2019-04-26 01:00:00+00:00,FR04014,no2,21.6,µg/m³
+Paris,FR,2019-04-26 00:00:00+00:00,FR04014,no2,25.1,µg/m³
+Paris,FR,2019-04-25 23:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-04-25 22:00:00+00:00,FR04014,no2,31.0,µg/m³
+Paris,FR,2019-04-25 21:00:00+00:00,FR04014,no2,26.4,µg/m³
+Paris,FR,2019-04-25 20:00:00+00:00,FR04014,no2,26.8,µg/m³
+Paris,FR,2019-04-25 19:00:00+00:00,FR04014,no2,27.0,µg/m³
+Paris,FR,2019-04-25 18:00:00+00:00,FR04014,no2,26.3,µg/m³
+Paris,FR,2019-04-25 17:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-04-25 16:00:00+00:00,FR04014,no2,19.9,µg/m³
+Paris,FR,2019-04-25 15:00:00+00:00,FR04014,no2,19.3,µg/m³
+Paris,FR,2019-04-25 14:00:00+00:00,FR04014,no2,21.2,µg/m³
+Paris,FR,2019-04-25 13:00:00+00:00,FR04014,no2,27.3,µg/m³
+Paris,FR,2019-04-25 12:00:00+00:00,FR04014,no2,29.1,µg/m³
+Paris,FR,2019-04-25 11:00:00+00:00,FR04014,no2,37.0,µg/m³
+Paris,FR,2019-04-25 10:00:00+00:00,FR04014,no2,45.1,µg/m³
+Paris,FR,2019-04-25 09:00:00+00:00,FR04014,no2,41.6,µg/m³
+Paris,FR,2019-04-25 08:00:00+00:00,FR04014,no2,37.6,µg/m³
+Paris,FR,2019-04-25 07:00:00+00:00,FR04014,no2,33.8,µg/m³
+Paris,FR,2019-04-25 06:00:00+00:00,FR04014,no2,26.6,µg/m³
+Paris,FR,2019-04-25 05:00:00+00:00,FR04014,no2,21.6,µg/m³
+Paris,FR,2019-04-25 04:00:00+00:00,FR04014,no2,16.7,µg/m³
+Paris,FR,2019-04-25 03:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-04-25 02:00:00+00:00,FR04014,no2,14.8,µg/m³
+Paris,FR,2019-04-25 01:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-04-25 00:00:00+00:00,FR04014,no2,23.1,µg/m³
+Paris,FR,2019-04-24 23:00:00+00:00,FR04014,no2,27.4,µg/m³
+Paris,FR,2019-04-24 22:00:00+00:00,FR04014,no2,36.0,µg/m³
+Paris,FR,2019-04-24 21:00:00+00:00,FR04014,no2,40.3,µg/m³
+Paris,FR,2019-04-24 20:00:00+00:00,FR04014,no2,41.0,µg/m³
+Paris,FR,2019-04-24 19:00:00+00:00,FR04014,no2,30.7,µg/m³
+Paris,FR,2019-04-24 18:00:00+00:00,FR04014,no2,22.5,µg/m³
+Paris,FR,2019-04-24 17:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-04-24 16:00:00+00:00,FR04014,no2,31.3,µg/m³
+Paris,FR,2019-04-24 15:00:00+00:00,FR04014,no2,26.5,µg/m³
+Paris,FR,2019-04-24 14:00:00+00:00,FR04014,no2,26.6,µg/m³
+Paris,FR,2019-04-24 13:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-04-24 12:00:00+00:00,FR04014,no2,26.4,µg/m³
+Paris,FR,2019-04-24 11:00:00+00:00,FR04014,no2,22.4,µg/m³
+Paris,FR,2019-04-24 10:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-04-24 09:00:00+00:00,FR04014,no2,24.2,µg/m³
+Paris,FR,2019-04-24 08:00:00+00:00,FR04014,no2,23.8,µg/m³
+Paris,FR,2019-04-24 07:00:00+00:00,FR04014,no2,33.0,µg/m³
+Paris,FR,2019-04-24 06:00:00+00:00,FR04014,no2,36.1,µg/m³
+Paris,FR,2019-04-24 05:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-04-24 04:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-04-24 03:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-04-24 02:00:00+00:00,FR04014,no2,21.2,µg/m³
+Paris,FR,2019-04-24 01:00:00+00:00,FR04014,no2,26.4,µg/m³
+Paris,FR,2019-04-24 00:00:00+00:00,FR04014,no2,43.8,µg/m³
+Paris,FR,2019-04-23 23:00:00+00:00,FR04014,no2,48.8,µg/m³
+Paris,FR,2019-04-23 22:00:00+00:00,FR04014,no2,47.0,µg/m³
+Paris,FR,2019-04-23 21:00:00+00:00,FR04014,no2,41.2,µg/m³
+Paris,FR,2019-04-23 20:00:00+00:00,FR04014,no2,38.1,µg/m³
+Paris,FR,2019-04-23 19:00:00+00:00,FR04014,no2,33.7,µg/m³
+Paris,FR,2019-04-23 18:00:00+00:00,FR04014,no2,33.0,µg/m³
+Paris,FR,2019-04-23 17:00:00+00:00,FR04014,no2,35.7,µg/m³
+Paris,FR,2019-04-23 16:00:00+00:00,FR04014,no2,52.9,µg/m³
+Paris,FR,2019-04-23 15:00:00+00:00,FR04014,no2,44.5,µg/m³
+Paris,FR,2019-04-23 14:00:00+00:00,FR04014,no2,48.8,µg/m³
+Paris,FR,2019-04-23 13:00:00+00:00,FR04014,no2,53.2,µg/m³
+Paris,FR,2019-04-23 12:00:00+00:00,FR04014,no2,54.1,µg/m³
+Paris,FR,2019-04-23 11:00:00+00:00,FR04014,no2,51.8,µg/m³
+Paris,FR,2019-04-23 10:00:00+00:00,FR04014,no2,47.9,µg/m³
+Paris,FR,2019-04-23 09:00:00+00:00,FR04014,no2,51.9,µg/m³
+Paris,FR,2019-04-23 08:00:00+00:00,FR04014,no2,60.7,µg/m³
+Paris,FR,2019-04-23 07:00:00+00:00,FR04014,no2,86.0,µg/m³
+Paris,FR,2019-04-23 06:00:00+00:00,FR04014,no2,74.7,µg/m³
+Paris,FR,2019-04-23 05:00:00+00:00,FR04014,no2,49.2,µg/m³
+Paris,FR,2019-04-23 04:00:00+00:00,FR04014,no2,37.2,µg/m³
+Paris,FR,2019-04-23 03:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-04-23 02:00:00+00:00,FR04014,no2,32.4,µg/m³
+Paris,FR,2019-04-23 01:00:00+00:00,FR04014,no2,29.2,µg/m³
+Paris,FR,2019-04-23 00:00:00+00:00,FR04014,no2,35.7,µg/m³
+Paris,FR,2019-04-22 23:00:00+00:00,FR04014,no2,45.6,µg/m³
+Paris,FR,2019-04-22 22:00:00+00:00,FR04014,no2,44.5,µg/m³
+Paris,FR,2019-04-22 21:00:00+00:00,FR04014,no2,38.4,µg/m³
+Paris,FR,2019-04-22 20:00:00+00:00,FR04014,no2,31.4,µg/m³
+Paris,FR,2019-04-22 19:00:00+00:00,FR04014,no2,26.1,µg/m³
+Paris,FR,2019-04-22 18:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-04-22 17:00:00+00:00,FR04014,no2,12.9,µg/m³
+Paris,FR,2019-04-22 16:00:00+00:00,FR04014,no2,13.9,µg/m³
+Paris,FR,2019-04-22 15:00:00+00:00,FR04014,no2,11.9,µg/m³
+Paris,FR,2019-04-22 14:00:00+00:00,FR04014,no2,8.9,µg/m³
+Paris,FR,2019-04-22 13:00:00+00:00,FR04014,no2,15.9,µg/m³
+Paris,FR,2019-04-22 12:00:00+00:00,FR04014,no2,18.2,µg/m³
+Paris,FR,2019-04-22 11:00:00+00:00,FR04014,no2,29.2,µg/m³
+Paris,FR,2019-04-22 10:00:00+00:00,FR04014,no2,43.5,µg/m³
+Paris,FR,2019-04-22 09:00:00+00:00,FR04014,no2,44.4,µg/m³
+Paris,FR,2019-04-22 08:00:00+00:00,FR04014,no2,63.7,µg/m³
+Paris,FR,2019-04-22 07:00:00+00:00,FR04014,no2,51.4,µg/m³
+Paris,FR,2019-04-22 06:00:00+00:00,FR04014,no2,65.7,µg/m³
+Paris,FR,2019-04-22 05:00:00+00:00,FR04014,no2,69.8,µg/m³
+Paris,FR,2019-04-22 04:00:00+00:00,FR04014,no2,80.2,µg/m³
+Paris,FR,2019-04-22 03:00:00+00:00,FR04014,no2,87.9,µg/m³
+Paris,FR,2019-04-22 02:00:00+00:00,FR04014,no2,88.7,µg/m³
+Paris,FR,2019-04-22 01:00:00+00:00,FR04014,no2,99.0,µg/m³
+Paris,FR,2019-04-22 00:00:00+00:00,FR04014,no2,116.4,µg/m³
+Paris,FR,2019-04-21 23:00:00+00:00,FR04014,no2,105.2,µg/m³
+Paris,FR,2019-04-21 22:00:00+00:00,FR04014,no2,117.2,µg/m³
+Paris,FR,2019-04-21 21:00:00+00:00,FR04014,no2,101.1,µg/m³
+Paris,FR,2019-04-21 20:00:00+00:00,FR04014,no2,75.6,µg/m³
+Paris,FR,2019-04-21 19:00:00+00:00,FR04014,no2,45.6,µg/m³
+Paris,FR,2019-04-21 18:00:00+00:00,FR04014,no2,20.8,µg/m³
+Paris,FR,2019-04-21 17:00:00+00:00,FR04014,no2,15.6,µg/m³
+Paris,FR,2019-04-21 16:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-04-21 15:00:00+00:00,FR04014,no2,9.4,µg/m³
+Paris,FR,2019-04-21 14:00:00+00:00,FR04014,no2,9.3,µg/m³
+Paris,FR,2019-04-21 13:00:00+00:00,FR04014,no2,9.8,µg/m³
+Paris,FR,2019-04-21 12:00:00+00:00,FR04014,no2,12.1,µg/m³
+Paris,FR,2019-04-21 11:00:00+00:00,FR04014,no2,15.7,µg/m³
+Paris,FR,2019-04-21 10:00:00+00:00,FR04014,no2,15.6,µg/m³
+Paris,FR,2019-04-21 09:00:00+00:00,FR04014,no2,21.5,µg/m³
+Paris,FR,2019-04-21 08:00:00+00:00,FR04014,no2,39.3,µg/m³
+Paris,FR,2019-04-21 07:00:00+00:00,FR04014,no2,33.8,µg/m³
+Paris,FR,2019-04-21 06:00:00+00:00,FR04014,no2,34.0,µg/m³
+Paris,FR,2019-04-21 05:00:00+00:00,FR04014,no2,28.8,µg/m³
+Paris,FR,2019-04-21 04:00:00+00:00,FR04014,no2,24.9,µg/m³
+Paris,FR,2019-04-21 03:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-04-21 02:00:00+00:00,FR04014,no2,28.7,µg/m³
+Paris,FR,2019-04-21 01:00:00+00:00,FR04014,no2,38.2,µg/m³
+Paris,FR,2019-04-21 00:00:00+00:00,FR04014,no2,40.5,µg/m³
+Paris,FR,2019-04-20 23:00:00+00:00,FR04014,no2,49.2,µg/m³
+Paris,FR,2019-04-20 22:00:00+00:00,FR04014,no2,52.8,µg/m³
+Paris,FR,2019-04-20 21:00:00+00:00,FR04014,no2,52.9,µg/m³
+Paris,FR,2019-04-20 20:00:00+00:00,FR04014,no2,39.2,µg/m³
+Paris,FR,2019-04-20 19:00:00+00:00,FR04014,no2,22.9,µg/m³
+Paris,FR,2019-04-20 18:00:00+00:00,FR04014,no2,14.8,µg/m³
+Paris,FR,2019-04-20 17:00:00+00:00,FR04014,no2,16.2,µg/m³
+Paris,FR,2019-04-20 16:00:00+00:00,FR04014,no2,12.7,µg/m³
+Paris,FR,2019-04-20 15:00:00+00:00,FR04014,no2,10.0,µg/m³
+Paris,FR,2019-04-20 14:00:00+00:00,FR04014,no2,9.8,µg/m³
+Paris,FR,2019-04-20 13:00:00+00:00,FR04014,no2,10.4,µg/m³
+Paris,FR,2019-04-20 12:00:00+00:00,FR04014,no2,14.6,µg/m³
+Paris,FR,2019-04-20 11:00:00+00:00,FR04014,no2,28.6,µg/m³
+Paris,FR,2019-04-20 10:00:00+00:00,FR04014,no2,39.8,µg/m³
+Paris,FR,2019-04-20 09:00:00+00:00,FR04014,no2,44.0,µg/m³
+Paris,FR,2019-04-20 08:00:00+00:00,FR04014,no2,46.3,µg/m³
+Paris,FR,2019-04-20 07:00:00+00:00,FR04014,no2,64.5,µg/m³
+Paris,FR,2019-04-20 06:00:00+00:00,FR04014,no2,67.1,µg/m³
+Paris,FR,2019-04-20 05:00:00+00:00,FR04014,no2,45.9,µg/m³
+Paris,FR,2019-04-20 04:00:00+00:00,FR04014,no2,31.5,µg/m³
+Paris,FR,2019-04-20 03:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-04-20 02:00:00+00:00,FR04014,no2,12.7,µg/m³
+Paris,FR,2019-04-20 01:00:00+00:00,FR04014,no2,14.5,µg/m³
+Paris,FR,2019-04-20 00:00:00+00:00,FR04014,no2,21.0,µg/m³
+Paris,FR,2019-04-19 23:00:00+00:00,FR04014,no2,70.2,µg/m³
+Paris,FR,2019-04-19 22:00:00+00:00,FR04014,no2,90.4,µg/m³
+Paris,FR,2019-04-19 21:00:00+00:00,FR04014,no2,96.9,µg/m³
+Paris,FR,2019-04-19 20:00:00+00:00,FR04014,no2,78.4,µg/m³
+Paris,FR,2019-04-19 19:00:00+00:00,FR04014,no2,34.1,µg/m³
+Paris,FR,2019-04-19 18:00:00+00:00,FR04014,no2,20.2,µg/m³
+Paris,FR,2019-04-19 17:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-04-19 16:00:00+00:00,FR04014,no2,14.6,µg/m³
+Paris,FR,2019-04-19 15:00:00+00:00,FR04014,no2,13.4,µg/m³
+Paris,FR,2019-04-19 14:00:00+00:00,FR04014,no2,14.6,µg/m³
+Paris,FR,2019-04-19 13:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-04-19 12:00:00+00:00,FR04014,no2,19.8,µg/m³
+Paris,FR,2019-04-19 11:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-04-19 10:00:00+00:00,FR04014,no2,51.3,µg/m³
+Paris,FR,2019-04-19 09:00:00+00:00,FR04014,no2,56.3,µg/m³
+Paris,FR,2019-04-19 08:00:00+00:00,FR04014,no2,61.4,µg/m³
+Paris,FR,2019-04-19 07:00:00+00:00,FR04014,no2,86.5,µg/m³
+Paris,FR,2019-04-19 06:00:00+00:00,FR04014,no2,89.3,µg/m³
+Paris,FR,2019-04-19 05:00:00+00:00,FR04014,no2,58.1,µg/m³
+Paris,FR,2019-04-19 04:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-04-19 03:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-04-19 02:00:00+00:00,FR04014,no2,21.8,µg/m³
+Paris,FR,2019-04-19 01:00:00+00:00,FR04014,no2,17.1,µg/m³
+Paris,FR,2019-04-19 00:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-04-18 23:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-04-18 22:00:00+00:00,FR04014,no2,41.2,µg/m³
+Paris,FR,2019-04-18 21:00:00+00:00,FR04014,no2,52.7,µg/m³
+Paris,FR,2019-04-18 20:00:00+00:00,FR04014,no2,43.8,µg/m³
+Paris,FR,2019-04-18 19:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-04-18 18:00:00+00:00,FR04014,no2,20.8,µg/m³
+Paris,FR,2019-04-18 17:00:00+00:00,FR04014,no2,16.0,µg/m³
+Paris,FR,2019-04-18 16:00:00+00:00,FR04014,no2,14.2,µg/m³
+Paris,FR,2019-04-18 15:00:00+00:00,FR04014,no2,11.4,µg/m³
+Paris,FR,2019-04-18 14:00:00+00:00,FR04014,no2,12.1,µg/m³
+Paris,FR,2019-04-18 13:00:00+00:00,FR04014,no2,11.3,µg/m³
+Paris,FR,2019-04-18 12:00:00+00:00,FR04014,no2,12.7,µg/m³
+Paris,FR,2019-04-18 11:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-04-18 10:00:00+00:00,FR04014,no2,21.9,µg/m³
+Paris,FR,2019-04-18 09:00:00+00:00,FR04014,no2,33.9,µg/m³
+Paris,FR,2019-04-18 08:00:00+00:00,FR04014,no2,41.9,µg/m³
+Paris,FR,2019-04-18 07:00:00+00:00,FR04014,no2,43.8,µg/m³
+Paris,FR,2019-04-18 06:00:00+00:00,FR04014,no2,47.2,µg/m³
+Paris,FR,2019-04-18 05:00:00+00:00,FR04014,no2,39.8,µg/m³
+Paris,FR,2019-04-18 04:00:00+00:00,FR04014,no2,21.8,µg/m³
+Paris,FR,2019-04-18 03:00:00+00:00,FR04014,no2,17.6,µg/m³
+Paris,FR,2019-04-18 02:00:00+00:00,FR04014,no2,16.4,µg/m³
+Paris,FR,2019-04-18 01:00:00+00:00,FR04014,no2,18.9,µg/m³
+Paris,FR,2019-04-18 00:00:00+00:00,FR04014,no2,21.6,µg/m³
+Paris,FR,2019-04-17 23:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-04-17 22:00:00+00:00,FR04014,no2,24.7,µg/m³
+Paris,FR,2019-04-17 21:00:00+00:00,FR04014,no2,37.3,µg/m³
+Paris,FR,2019-04-17 20:00:00+00:00,FR04014,no2,41.2,µg/m³
+Paris,FR,2019-04-17 19:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-04-17 18:00:00+00:00,FR04014,no2,17.4,µg/m³
+Paris,FR,2019-04-17 17:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-04-17 16:00:00+00:00,FR04014,no2,13.8,µg/m³
+Paris,FR,2019-04-17 15:00:00+00:00,FR04014,no2,12.1,µg/m³
+Paris,FR,2019-04-17 14:00:00+00:00,FR04014,no2,13.2,µg/m³
+Paris,FR,2019-04-17 13:00:00+00:00,FR04014,no2,11.9,µg/m³
+Paris,FR,2019-04-17 12:00:00+00:00,FR04014,no2,15.8,µg/m³
+Paris,FR,2019-04-17 11:00:00+00:00,FR04014,no2,23.6,µg/m³
+Paris,FR,2019-04-17 10:00:00+00:00,FR04014,no2,46.9,µg/m³
+Paris,FR,2019-04-17 09:00:00+00:00,FR04014,no2,69.3,µg/m³
+Paris,FR,2019-04-17 08:00:00+00:00,FR04014,no2,72.7,µg/m³
+Paris,FR,2019-04-17 07:00:00+00:00,FR04014,no2,70.4,µg/m³
+Paris,FR,2019-04-17 06:00:00+00:00,FR04014,no2,72.9,µg/m³
+Paris,FR,2019-04-17 05:00:00+00:00,FR04014,no2,67.3,µg/m³
+Paris,FR,2019-04-17 04:00:00+00:00,FR04014,no2,65.5,µg/m³
+Paris,FR,2019-04-17 03:00:00+00:00,FR04014,no2,62.5,µg/m³
+Paris,FR,2019-04-17 02:00:00+00:00,FR04014,no2,47.0,µg/m³
+Paris,FR,2019-04-17 01:00:00+00:00,FR04014,no2,30.7,µg/m³
+Paris,FR,2019-04-17 00:00:00+00:00,FR04014,no2,27.3,µg/m³
+Paris,FR,2019-04-16 23:00:00+00:00,FR04014,no2,34.4,µg/m³
+Paris,FR,2019-04-16 22:00:00+00:00,FR04014,no2,30.9,µg/m³
+Paris,FR,2019-04-16 21:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-04-16 20:00:00+00:00,FR04014,no2,28.3,µg/m³
+Paris,FR,2019-04-16 19:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-04-16 18:00:00+00:00,FR04014,no2,39.4,µg/m³
+Paris,FR,2019-04-16 17:00:00+00:00,FR04014,no2,44.0,µg/m³
+Paris,FR,2019-04-16 16:00:00+00:00,FR04014,no2,38.1,µg/m³
+Paris,FR,2019-04-16 15:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-04-16 14:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-04-16 13:00:00+00:00,FR04014,no2,36.3,µg/m³
+Paris,FR,2019-04-16 12:00:00+00:00,FR04014,no2,40.8,µg/m³
+Paris,FR,2019-04-16 11:00:00+00:00,FR04014,no2,38.8,µg/m³
+Paris,FR,2019-04-16 10:00:00+00:00,FR04014,no2,47.1,µg/m³
+Paris,FR,2019-04-16 09:00:00+00:00,FR04014,no2,57.5,µg/m³
+Paris,FR,2019-04-16 08:00:00+00:00,FR04014,no2,58.8,µg/m³
+Paris,FR,2019-04-16 07:00:00+00:00,FR04014,no2,72.0,µg/m³
+Paris,FR,2019-04-16 06:00:00+00:00,FR04014,no2,79.0,µg/m³
+Paris,FR,2019-04-16 05:00:00+00:00,FR04014,no2,76.9,µg/m³
+Paris,FR,2019-04-16 04:00:00+00:00,FR04014,no2,60.1,µg/m³
+Paris,FR,2019-04-16 03:00:00+00:00,FR04014,no2,34.6,µg/m³
+Paris,FR,2019-04-16 02:00:00+00:00,FR04014,no2,34.2,µg/m³
+Paris,FR,2019-04-16 01:00:00+00:00,FR04014,no2,36.8,µg/m³
+Paris,FR,2019-04-16 00:00:00+00:00,FR04014,no2,29.7,µg/m³
+Paris,FR,2019-04-15 23:00:00+00:00,FR04014,no2,26.9,µg/m³
+Paris,FR,2019-04-15 22:00:00+00:00,FR04014,no2,29.9,µg/m³
+Paris,FR,2019-04-15 21:00:00+00:00,FR04014,no2,33.5,µg/m³
+Paris,FR,2019-04-15 20:00:00+00:00,FR04014,no2,40.9,µg/m³
+Paris,FR,2019-04-15 19:00:00+00:00,FR04014,no2,32.4,µg/m³
+Paris,FR,2019-04-15 18:00:00+00:00,FR04014,no2,21.4,µg/m³
+Paris,FR,2019-04-15 17:00:00+00:00,FR04014,no2,15.5,µg/m³
+Paris,FR,2019-04-15 16:00:00+00:00,FR04014,no2,14.3,µg/m³
+Paris,FR,2019-04-15 15:00:00+00:00,FR04014,no2,13.4,µg/m³
+Paris,FR,2019-04-15 14:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-04-15 13:00:00+00:00,FR04014,no2,13.1,µg/m³
+Paris,FR,2019-04-15 12:00:00+00:00,FR04014,no2,13.4,µg/m³
+Paris,FR,2019-04-15 11:00:00+00:00,FR04014,no2,13.6,µg/m³
+Paris,FR,2019-04-15 10:00:00+00:00,FR04014,no2,17.4,µg/m³
+Paris,FR,2019-04-15 09:00:00+00:00,FR04014,no2,28.0,µg/m³
+Paris,FR,2019-04-15 08:00:00+00:00,FR04014,no2,53.9,µg/m³
+Paris,FR,2019-04-15 07:00:00+00:00,FR04014,no2,61.2,µg/m³
+Paris,FR,2019-04-15 06:00:00+00:00,FR04014,no2,67.3,µg/m³
+Paris,FR,2019-04-15 05:00:00+00:00,FR04014,no2,52.9,µg/m³
+Paris,FR,2019-04-15 04:00:00+00:00,FR04014,no2,33.2,µg/m³
+Paris,FR,2019-04-15 03:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-04-15 02:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-04-15 01:00:00+00:00,FR04014,no2,28.1,µg/m³
+Paris,FR,2019-04-15 00:00:00+00:00,FR04014,no2,29.5,µg/m³
+Paris,FR,2019-04-14 23:00:00+00:00,FR04014,no2,29.6,µg/m³
+Paris,FR,2019-04-14 22:00:00+00:00,FR04014,no2,35.1,µg/m³
+Paris,FR,2019-04-14 21:00:00+00:00,FR04014,no2,34.4,µg/m³
+Paris,FR,2019-04-14 20:00:00+00:00,FR04014,no2,29.7,µg/m³
+Paris,FR,2019-04-14 19:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-04-14 18:00:00+00:00,FR04014,no2,21.5,µg/m³
+Paris,FR,2019-04-14 17:00:00+00:00,FR04014,no2,16.1,µg/m³
+Paris,FR,2019-04-14 16:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-04-14 15:00:00+00:00,FR04014,no2,14.2,µg/m³
+Paris,FR,2019-04-14 14:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-04-14 13:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-04-14 12:00:00+00:00,FR04014,no2,17.5,µg/m³
+Paris,FR,2019-04-14 11:00:00+00:00,FR04014,no2,19.7,µg/m³
+Paris,FR,2019-04-14 10:00:00+00:00,FR04014,no2,17.3,µg/m³
+Paris,FR,2019-04-14 09:00:00+00:00,FR04014,no2,33.9,µg/m³
+Paris,FR,2019-04-14 08:00:00+00:00,FR04014,no2,38.3,µg/m³
+Paris,FR,2019-04-14 07:00:00+00:00,FR04014,no2,34.1,µg/m³
+Paris,FR,2019-04-14 06:00:00+00:00,FR04014,no2,33.6,µg/m³
+Paris,FR,2019-04-14 05:00:00+00:00,FR04014,no2,30.6,µg/m³
+Paris,FR,2019-04-14 04:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-04-14 03:00:00+00:00,FR04014,no2,33.3,µg/m³
+Paris,FR,2019-04-14 02:00:00+00:00,FR04014,no2,36.8,µg/m³
+Paris,FR,2019-04-14 01:00:00+00:00,FR04014,no2,37.9,µg/m³
+Paris,FR,2019-04-14 00:00:00+00:00,FR04014,no2,41.1,µg/m³
+Paris,FR,2019-04-13 23:00:00+00:00,FR04014,no2,47.8,µg/m³
+Paris,FR,2019-04-13 22:00:00+00:00,FR04014,no2,47.0,µg/m³
+Paris,FR,2019-04-13 21:00:00+00:00,FR04014,no2,43.8,µg/m³
+Paris,FR,2019-04-13 20:00:00+00:00,FR04014,no2,38.4,µg/m³
+Paris,FR,2019-04-13 19:00:00+00:00,FR04014,no2,29.2,µg/m³
+Paris,FR,2019-04-13 18:00:00+00:00,FR04014,no2,21.1,µg/m³
+Paris,FR,2019-04-13 17:00:00+00:00,FR04014,no2,17.3,µg/m³
+Paris,FR,2019-04-13 16:00:00+00:00,FR04014,no2,16.2,µg/m³
+Paris,FR,2019-04-13 15:00:00+00:00,FR04014,no2,17.4,µg/m³
+Paris,FR,2019-04-13 14:00:00+00:00,FR04014,no2,16.3,µg/m³
+Paris,FR,2019-04-13 13:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-04-13 12:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-04-13 11:00:00+00:00,FR04014,no2,16.4,µg/m³
+Paris,FR,2019-04-13 10:00:00+00:00,FR04014,no2,18.3,µg/m³
+Paris,FR,2019-04-13 09:00:00+00:00,FR04014,no2,24.9,µg/m³
+Paris,FR,2019-04-13 08:00:00+00:00,FR04014,no2,35.2,µg/m³
+Paris,FR,2019-04-13 07:00:00+00:00,FR04014,no2,38.2,µg/m³
+Paris,FR,2019-04-13 06:00:00+00:00,FR04014,no2,44.3,µg/m³
+Paris,FR,2019-04-13 05:00:00+00:00,FR04014,no2,38.7,µg/m³
+Paris,FR,2019-04-13 04:00:00+00:00,FR04014,no2,31.9,µg/m³
+Paris,FR,2019-04-13 03:00:00+00:00,FR04014,no2,35.2,µg/m³
+Paris,FR,2019-04-13 02:00:00+00:00,FR04014,no2,38.9,µg/m³
+Paris,FR,2019-04-13 01:00:00+00:00,FR04014,no2,38.9,µg/m³
+Paris,FR,2019-04-13 00:00:00+00:00,FR04014,no2,46.5,µg/m³
+Paris,FR,2019-04-12 23:00:00+00:00,FR04014,no2,40.0,µg/m³
+Paris,FR,2019-04-12 22:00:00+00:00,FR04014,no2,42.4,µg/m³
+Paris,FR,2019-04-12 21:00:00+00:00,FR04014,no2,41.6,µg/m³
+Paris,FR,2019-04-12 20:00:00+00:00,FR04014,no2,32.8,µg/m³
+Paris,FR,2019-04-12 19:00:00+00:00,FR04014,no2,29.2,µg/m³
+Paris,FR,2019-04-12 18:00:00+00:00,FR04014,no2,26.2,µg/m³
+Paris,FR,2019-04-12 17:00:00+00:00,FR04014,no2,25.9,µg/m³
+Paris,FR,2019-04-12 16:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-04-12 15:00:00+00:00,FR04014,no2,21.9,µg/m³
+Paris,FR,2019-04-12 14:00:00+00:00,FR04014,no2,21.8,µg/m³
+Paris,FR,2019-04-12 13:00:00+00:00,FR04014,no2,21.8,µg/m³
+Paris,FR,2019-04-12 12:00:00+00:00,FR04014,no2,18.6,µg/m³
+Paris,FR,2019-04-12 11:00:00+00:00,FR04014,no2,17.3,µg/m³
+Paris,FR,2019-04-12 10:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-04-12 09:00:00+00:00,FR04014,no2,36.5,µg/m³
+Paris,FR,2019-04-12 08:00:00+00:00,FR04014,no2,44.3,µg/m³
+Paris,FR,2019-04-12 07:00:00+00:00,FR04014,no2,48.3,µg/m³
+Paris,FR,2019-04-12 06:00:00+00:00,FR04014,no2,52.6,µg/m³
+Paris,FR,2019-04-12 05:00:00+00:00,FR04014,no2,39.0,µg/m³
+Paris,FR,2019-04-12 04:00:00+00:00,FR04014,no2,28.9,µg/m³
+Paris,FR,2019-04-12 03:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-04-12 02:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-04-12 01:00:00+00:00,FR04014,no2,22.6,µg/m³
+Paris,FR,2019-04-12 00:00:00+00:00,FR04014,no2,25.7,µg/m³
+Paris,FR,2019-04-11 23:00:00+00:00,FR04014,no2,35.3,µg/m³
+Paris,FR,2019-04-11 22:00:00+00:00,FR04014,no2,42.6,µg/m³
+Paris,FR,2019-04-11 21:00:00+00:00,FR04014,no2,40.7,µg/m³
+Paris,FR,2019-04-11 20:00:00+00:00,FR04014,no2,36.3,µg/m³
+Paris,FR,2019-04-11 19:00:00+00:00,FR04014,no2,31.4,µg/m³
+Paris,FR,2019-04-11 18:00:00+00:00,FR04014,no2,26.8,µg/m³
+Paris,FR,2019-04-11 17:00:00+00:00,FR04014,no2,20.9,µg/m³
+Paris,FR,2019-04-11 16:00:00+00:00,FR04014,no2,21.0,µg/m³
+Paris,FR,2019-04-11 15:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-04-11 14:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-04-11 13:00:00+00:00,FR04014,no2,18.8,µg/m³
+Paris,FR,2019-04-11 12:00:00+00:00,FR04014,no2,18.2,µg/m³
+Paris,FR,2019-04-11 11:00:00+00:00,FR04014,no2,25.4,µg/m³
+Paris,FR,2019-04-11 10:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-04-11 09:00:00+00:00,FR04014,no2,37.8,µg/m³
+Paris,FR,2019-04-11 08:00:00+00:00,FR04014,no2,43.2,µg/m³
+Paris,FR,2019-04-11 07:00:00+00:00,FR04014,no2,44.3,µg/m³
+Paris,FR,2019-04-11 06:00:00+00:00,FR04014,no2,45.7,µg/m³
+Paris,FR,2019-04-11 05:00:00+00:00,FR04014,no2,35.1,µg/m³
+Paris,FR,2019-04-11 04:00:00+00:00,FR04014,no2,25.8,µg/m³
+Paris,FR,2019-04-11 03:00:00+00:00,FR04014,no2,23.6,µg/m³
+Paris,FR,2019-04-11 02:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-04-11 01:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-04-11 00:00:00+00:00,FR04014,no2,27.4,µg/m³
+Paris,FR,2019-04-10 23:00:00+00:00,FR04014,no2,31.3,µg/m³
+Paris,FR,2019-04-10 22:00:00+00:00,FR04014,no2,33.7,µg/m³
+Paris,FR,2019-04-10 21:00:00+00:00,FR04014,no2,35.1,µg/m³
+Paris,FR,2019-04-10 20:00:00+00:00,FR04014,no2,33.8,µg/m³
+Paris,FR,2019-04-10 19:00:00+00:00,FR04014,no2,38.1,µg/m³
+Paris,FR,2019-04-10 18:00:00+00:00,FR04014,no2,47.0,µg/m³
+Paris,FR,2019-04-10 17:00:00+00:00,FR04014,no2,46.0,µg/m³
+Paris,FR,2019-04-10 16:00:00+00:00,FR04014,no2,36.2,µg/m³
+Paris,FR,2019-04-10 15:00:00+00:00,FR04014,no2,32.3,µg/m³
+Paris,FR,2019-04-10 14:00:00+00:00,FR04014,no2,26.2,µg/m³
+Paris,FR,2019-04-10 13:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-04-10 12:00:00+00:00,FR04014,no2,31.8,µg/m³
+Paris,FR,2019-04-10 11:00:00+00:00,FR04014,no2,34.4,µg/m³
+Paris,FR,2019-04-10 10:00:00+00:00,FR04014,no2,36.9,µg/m³
+Paris,FR,2019-04-10 09:00:00+00:00,FR04014,no2,41.1,µg/m³
+Paris,FR,2019-04-10 08:00:00+00:00,FR04014,no2,45.2,µg/m³
+Paris,FR,2019-04-10 07:00:00+00:00,FR04014,no2,48.5,µg/m³
+Paris,FR,2019-04-10 06:00:00+00:00,FR04014,no2,40.6,µg/m³
+Paris,FR,2019-04-10 05:00:00+00:00,FR04014,no2,26.2,µg/m³
+Paris,FR,2019-04-10 04:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-04-10 03:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-04-10 02:00:00+00:00,FR04014,no2,18.6,µg/m³
+Paris,FR,2019-04-10 01:00:00+00:00,FR04014,no2,26.1,µg/m³
+Paris,FR,2019-04-10 00:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-04-09 23:00:00+00:00,FR04014,no2,29.2,µg/m³
+Paris,FR,2019-04-09 22:00:00+00:00,FR04014,no2,32.7,µg/m³
+Paris,FR,2019-04-09 21:00:00+00:00,FR04014,no2,36.9,µg/m³
+Paris,FR,2019-04-09 20:00:00+00:00,FR04014,no2,39.9,µg/m³
+Paris,FR,2019-04-09 19:00:00+00:00,FR04014,no2,48.7,µg/m³
+Paris,FR,2019-04-09 18:00:00+00:00,FR04014,no2,38.6,µg/m³
+Paris,FR,2019-04-09 17:00:00+00:00,FR04014,no2,31.2,µg/m³
+Paris,FR,2019-04-09 16:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-04-09 15:00:00+00:00,FR04014,no2,24.2,µg/m³
+Paris,FR,2019-04-09 14:00:00+00:00,FR04014,no2,25.6,µg/m³
+Paris,FR,2019-04-09 13:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-04-09 12:00:00+00:00,FR04014,no2,30.6,µg/m³
+Paris,FR,2019-04-09 11:00:00+00:00,FR04014,no2,37.8,µg/m³
+Paris,FR,2019-04-09 10:00:00+00:00,FR04014,no2,67.1,µg/m³
+Paris,FR,2019-04-09 09:00:00+00:00,FR04014,no2,66.5,µg/m³
+Paris,FR,2019-04-09 08:00:00+00:00,FR04014,no2,69.5,µg/m³
+Paris,FR,2019-04-09 07:00:00+00:00,FR04014,no2,68.0,µg/m³
+Paris,FR,2019-04-09 06:00:00+00:00,FR04014,no2,66.9,µg/m³
+Paris,FR,2019-04-09 05:00:00+00:00,FR04014,no2,59.5,µg/m³
+Paris,FR,2019-04-09 04:00:00+00:00,FR04014,no2,48.5,µg/m³
+Paris,FR,2019-04-09 03:00:00+00:00,FR04014,no2,34.2,µg/m³
+Paris,FR,2019-04-09 02:00:00+00:00,FR04014,no2,27.4,µg/m³
+Paris,FR,2019-04-09 01:00:00+00:00,FR04014,no2,24.4,µg/m³
+Antwerpen,BE,2019-06-17 08:00:00+00:00,BETR801,no2,41.0,µg/m³
+Antwerpen,BE,2019-06-17 07:00:00+00:00,BETR801,no2,45.0,µg/m³
+Antwerpen,BE,2019-06-17 06:00:00+00:00,BETR801,no2,43.5,µg/m³
+Antwerpen,BE,2019-06-17 05:00:00+00:00,BETR801,no2,42.5,µg/m³
+Antwerpen,BE,2019-06-17 04:00:00+00:00,BETR801,no2,39.5,µg/m³
+Antwerpen,BE,2019-06-17 03:00:00+00:00,BETR801,no2,36.0,µg/m³
+Antwerpen,BE,2019-06-17 02:00:00+00:00,BETR801,no2,35.5,µg/m³
+Antwerpen,BE,2019-06-17 01:00:00+00:00,BETR801,no2,42.0,µg/m³
+Antwerpen,BE,2019-06-16 01:00:00+00:00,BETR801,no2,42.5,µg/m³
+Antwerpen,BE,2019-06-15 01:00:00+00:00,BETR801,no2,17.5,µg/m³
+Antwerpen,BE,2019-06-14 09:00:00+00:00,BETR801,no2,36.5,µg/m³
+Antwerpen,BE,2019-06-13 01:00:00+00:00,BETR801,no2,28.5,µg/m³
+Antwerpen,BE,2019-06-12 01:00:00+00:00,BETR801,no2,21.0,µg/m³
+Antwerpen,BE,2019-06-11 01:00:00+00:00,BETR801,no2,7.5,µg/m³
+Antwerpen,BE,2019-06-10 01:00:00+00:00,BETR801,no2,18.5,µg/m³
+Antwerpen,BE,2019-06-09 01:00:00+00:00,BETR801,no2,10.0,µg/m³
+Antwerpen,BE,2019-06-05 01:00:00+00:00,BETR801,no2,15.0,µg/m³
+Antwerpen,BE,2019-06-01 01:00:00+00:00,BETR801,no2,52.5,µg/m³
+Antwerpen,BE,2019-05-31 01:00:00+00:00,BETR801,no2,9.0,µg/m³
+Antwerpen,BE,2019-05-30 01:00:00+00:00,BETR801,no2,7.5,µg/m³
+Antwerpen,BE,2019-05-29 01:00:00+00:00,BETR801,no2,21.0,µg/m³
+Antwerpen,BE,2019-05-28 01:00:00+00:00,BETR801,no2,11.0,µg/m³
+Antwerpen,BE,2019-05-27 01:00:00+00:00,BETR801,no2,10.5,µg/m³
+Antwerpen,BE,2019-05-26 01:00:00+00:00,BETR801,no2,53.0,µg/m³
+Antwerpen,BE,2019-05-25 01:00:00+00:00,BETR801,no2,29.0,µg/m³
+Antwerpen,BE,2019-05-24 01:00:00+00:00,BETR801,no2,74.5,µg/m³
+Antwerpen,BE,2019-05-23 01:00:00+00:00,BETR801,no2,60.5,µg/m³
+Antwerpen,BE,2019-05-22 01:00:00+00:00,BETR801,no2,20.5,µg/m³
+Antwerpen,BE,2019-05-21 01:00:00+00:00,BETR801,no2,15.5,µg/m³
+Antwerpen,BE,2019-05-20 15:00:00+00:00,BETR801,no2,25.5,µg/m³
+Antwerpen,BE,2019-05-20 14:00:00+00:00,BETR801,no2,24.5,µg/m³
+Antwerpen,BE,2019-05-20 13:00:00+00:00,BETR801,no2,32.0,µg/m³
+Antwerpen,BE,2019-05-20 12:00:00+00:00,BETR801,no2,34.5,µg/m³
+Antwerpen,BE,2019-05-20 11:00:00+00:00,BETR801,no2,25.0,µg/m³
+Antwerpen,BE,2019-05-20 10:00:00+00:00,BETR801,no2,25.0,µg/m³
+Antwerpen,BE,2019-05-20 09:00:00+00:00,BETR801,no2,30.5,µg/m³
+Antwerpen,BE,2019-05-20 08:00:00+00:00,BETR801,no2,40.0,µg/m³
+Antwerpen,BE,2019-05-20 07:00:00+00:00,BETR801,no2,38.0,µg/m³
+Antwerpen,BE,2019-05-20 06:00:00+00:00,BETR801,no2,26.0,µg/m³
+Antwerpen,BE,2019-05-20 05:00:00+00:00,BETR801,no2,20.0,µg/m³
+Antwerpen,BE,2019-05-20 04:00:00+00:00,BETR801,no2,14.0,µg/m³
+Antwerpen,BE,2019-05-20 03:00:00+00:00,BETR801,no2,9.0,µg/m³
+Antwerpen,BE,2019-05-20 02:00:00+00:00,BETR801,no2,10.5,µg/m³
+Antwerpen,BE,2019-05-20 01:00:00+00:00,BETR801,no2,17.0,µg/m³
+Antwerpen,BE,2019-05-20 00:00:00+00:00,BETR801,no2,26.0,µg/m³
+Antwerpen,BE,2019-05-19 23:00:00+00:00,BETR801,no2,16.5,µg/m³
+Antwerpen,BE,2019-05-19 22:00:00+00:00,BETR801,no2,18.5,µg/m³
+Antwerpen,BE,2019-05-19 21:00:00+00:00,BETR801,no2,12.5,µg/m³
+Antwerpen,BE,2019-05-19 20:00:00+00:00,BETR801,no2,15.0,µg/m³
+Antwerpen,BE,2019-05-19 19:00:00+00:00,BETR801,no2,26.0,µg/m³
+Antwerpen,BE,2019-05-19 18:00:00+00:00,BETR801,no2,15.5,µg/m³
+Antwerpen,BE,2019-05-19 17:00:00+00:00,BETR801,no2,18.5,µg/m³
+Antwerpen,BE,2019-05-19 16:00:00+00:00,BETR801,no2,17.5,µg/m³
+Antwerpen,BE,2019-05-19 15:00:00+00:00,BETR801,no2,33.0,µg/m³
+Antwerpen,BE,2019-05-19 14:00:00+00:00,BETR801,no2,23.0,µg/m³
+Antwerpen,BE,2019-05-19 13:00:00+00:00,BETR801,no2,14.5,µg/m³
+Antwerpen,BE,2019-05-19 12:00:00+00:00,BETR801,no2,16.0,µg/m³
+Antwerpen,BE,2019-05-19 11:00:00+00:00,BETR801,no2,17.0,µg/m³
+Antwerpen,BE,2019-05-19 10:00:00+00:00,BETR801,no2,17.5,µg/m³
+Antwerpen,BE,2019-05-19 09:00:00+00:00,BETR801,no2,16.0,µg/m³
+Antwerpen,BE,2019-05-19 08:00:00+00:00,BETR801,no2,23.5,µg/m³
+Antwerpen,BE,2019-05-19 07:00:00+00:00,BETR801,no2,30.0,µg/m³
+Antwerpen,BE,2019-05-19 06:00:00+00:00,BETR801,no2,30.5,µg/m³
+Antwerpen,BE,2019-05-19 05:00:00+00:00,BETR801,no2,26.0,µg/m³
+Antwerpen,BE,2019-05-19 04:00:00+00:00,BETR801,no2,21.0,µg/m³
+Antwerpen,BE,2019-05-19 03:00:00+00:00,BETR801,no2,19.0,µg/m³
+Antwerpen,BE,2019-05-19 02:00:00+00:00,BETR801,no2,19.0,µg/m³
+Antwerpen,BE,2019-05-19 01:00:00+00:00,BETR801,no2,22.5,µg/m³
+Antwerpen,BE,2019-05-19 00:00:00+00:00,BETR801,no2,23.5,µg/m³
+Antwerpen,BE,2019-05-18 23:00:00+00:00,BETR801,no2,29.5,µg/m³
+Antwerpen,BE,2019-05-18 22:00:00+00:00,BETR801,no2,34.5,µg/m³
+Antwerpen,BE,2019-05-18 21:00:00+00:00,BETR801,no2,39.0,µg/m³
+Antwerpen,BE,2019-05-18 20:00:00+00:00,BETR801,no2,40.0,µg/m³
+Antwerpen,BE,2019-05-18 19:00:00+00:00,BETR801,no2,35.5,µg/m³
+Antwerpen,BE,2019-05-18 18:00:00+00:00,BETR801,no2,35.5,µg/m³
+Antwerpen,BE,2019-05-18 01:00:00+00:00,BETR801,no2,41.5,µg/m³
+Antwerpen,BE,2019-05-16 01:00:00+00:00,BETR801,no2,28.0,µg/m³
+Antwerpen,BE,2019-05-15 02:00:00+00:00,BETR801,no2,22.5,µg/m³
+Antwerpen,BE,2019-05-15 01:00:00+00:00,BETR801,no2,25.5,µg/m³
+Antwerpen,BE,2019-05-14 02:00:00+00:00,BETR801,no2,11.5,µg/m³
+Antwerpen,BE,2019-05-14 01:00:00+00:00,BETR801,no2,14.5,µg/m³
+Antwerpen,BE,2019-05-13 02:00:00+00:00,BETR801,no2,14.5,µg/m³
+Antwerpen,BE,2019-05-13 01:00:00+00:00,BETR801,no2,14.5,µg/m³
+Antwerpen,BE,2019-05-12 02:00:00+00:00,BETR801,no2,20.0,µg/m³
+Antwerpen,BE,2019-05-12 01:00:00+00:00,BETR801,no2,17.5,µg/m³
+Antwerpen,BE,2019-05-11 02:00:00+00:00,BETR801,no2,21.0,µg/m³
+Antwerpen,BE,2019-05-11 01:00:00+00:00,BETR801,no2,26.5,µg/m³
+Antwerpen,BE,2019-05-10 02:00:00+00:00,BETR801,no2,11.5,µg/m³
+Antwerpen,BE,2019-05-10 01:00:00+00:00,BETR801,no2,10.5,µg/m³
+Antwerpen,BE,2019-05-09 02:00:00+00:00,BETR801,no2,20.5,µg/m³
+Antwerpen,BE,2019-05-09 01:00:00+00:00,BETR801,no2,20.0,µg/m³
+Antwerpen,BE,2019-05-08 02:00:00+00:00,BETR801,no2,20.5,µg/m³
+Antwerpen,BE,2019-05-08 01:00:00+00:00,BETR801,no2,23.0,µg/m³
+Antwerpen,BE,2019-05-07 02:00:00+00:00,BETR801,no2,45.0,µg/m³
+Antwerpen,BE,2019-05-07 01:00:00+00:00,BETR801,no2,50.5,µg/m³
+Antwerpen,BE,2019-05-06 02:00:00+00:00,BETR801,no2,27.0,µg/m³
+Antwerpen,BE,2019-05-06 01:00:00+00:00,BETR801,no2,30.0,µg/m³
+Antwerpen,BE,2019-05-05 02:00:00+00:00,BETR801,no2,13.0,µg/m³
+Antwerpen,BE,2019-05-05 01:00:00+00:00,BETR801,no2,18.0,µg/m³
+Antwerpen,BE,2019-05-04 02:00:00+00:00,BETR801,no2,9.5,µg/m³
+Antwerpen,BE,2019-05-04 01:00:00+00:00,BETR801,no2,8.5,µg/m³
+Antwerpen,BE,2019-05-03 02:00:00+00:00,BETR801,no2,25.5,µg/m³
+Antwerpen,BE,2019-05-03 01:00:00+00:00,BETR801,no2,14.0,µg/m³
+Antwerpen,BE,2019-05-02 02:00:00+00:00,BETR801,no2,36.5,µg/m³
+Antwerpen,BE,2019-05-02 01:00:00+00:00,BETR801,no2,31.0,µg/m³
+Antwerpen,BE,2019-05-01 02:00:00+00:00,BETR801,no2,12.0,µg/m³
+Antwerpen,BE,2019-05-01 01:00:00+00:00,BETR801,no2,12.5,µg/m³
+Antwerpen,BE,2019-04-30 02:00:00+00:00,BETR801,no2,9.0,µg/m³
+Antwerpen,BE,2019-04-30 01:00:00+00:00,BETR801,no2,15.0,µg/m³
+Antwerpen,BE,2019-04-29 02:00:00+00:00,BETR801,no2,52.5,µg/m³
+Antwerpen,BE,2019-04-29 01:00:00+00:00,BETR801,no2,72.5,µg/m³
+Antwerpen,BE,2019-04-28 02:00:00+00:00,BETR801,no2,10.5,µg/m³
+Antwerpen,BE,2019-04-28 01:00:00+00:00,BETR801,no2,8.5,µg/m³
+Antwerpen,BE,2019-04-27 02:00:00+00:00,BETR801,no2,14.0,µg/m³
+Antwerpen,BE,2019-04-27 01:00:00+00:00,BETR801,no2,22.0,µg/m³
+Antwerpen,BE,2019-04-26 02:00:00+00:00,BETR801,no2,15.0,µg/m³
+Antwerpen,BE,2019-04-26 01:00:00+00:00,BETR801,no2,25.5,µg/m³
+Antwerpen,BE,2019-04-25 02:00:00+00:00,BETR801,no2,12.0,µg/m³
+Antwerpen,BE,2019-04-25 01:00:00+00:00,BETR801,no2,13.0,µg/m³
+Antwerpen,BE,2019-04-22 01:00:00+00:00,BETR801,no2,24.5,µg/m³
+Antwerpen,BE,2019-04-21 02:00:00+00:00,BETR801,no2,15.0,µg/m³
+Antwerpen,BE,2019-04-21 01:00:00+00:00,BETR801,no2,18.0,µg/m³
+Antwerpen,BE,2019-04-19 01:00:00+00:00,BETR801,no2,25.0,µg/m³
+Antwerpen,BE,2019-04-18 02:00:00+00:00,BETR801,no2,35.0,µg/m³
+Antwerpen,BE,2019-04-17 03:00:00+00:00,BETR801,no2,38.5,µg/m³
+Antwerpen,BE,2019-04-17 02:00:00+00:00,BETR801,no2,33.0,µg/m³
+Antwerpen,BE,2019-04-17 01:00:00+00:00,BETR801,no2,33.0,µg/m³
+Antwerpen,BE,2019-04-16 02:00:00+00:00,BETR801,no2,21.5,µg/m³
+Antwerpen,BE,2019-04-16 01:00:00+00:00,BETR801,no2,27.5,µg/m³
+Antwerpen,BE,2019-04-15 15:00:00+00:00,BETR801,no2,32.0,µg/m³
+Antwerpen,BE,2019-04-15 14:00:00+00:00,BETR801,no2,28.0,µg/m³
+Antwerpen,BE,2019-04-15 13:00:00+00:00,BETR801,no2,31.0,µg/m³
+Antwerpen,BE,2019-04-15 12:00:00+00:00,BETR801,no2,29.5,µg/m³
+Antwerpen,BE,2019-04-15 11:00:00+00:00,BETR801,no2,25.0,µg/m³
+Antwerpen,BE,2019-04-15 10:00:00+00:00,BETR801,no2,25.0,µg/m³
+Antwerpen,BE,2019-04-15 09:00:00+00:00,BETR801,no2,29.5,µg/m³
+Antwerpen,BE,2019-04-15 08:00:00+00:00,BETR801,no2,43.5,µg/m³
+Antwerpen,BE,2019-04-15 07:00:00+00:00,BETR801,no2,54.0,µg/m³
+Antwerpen,BE,2019-04-15 06:00:00+00:00,BETR801,no2,64.0,µg/m³
+Antwerpen,BE,2019-04-15 05:00:00+00:00,BETR801,no2,63.0,µg/m³
+Antwerpen,BE,2019-04-15 04:00:00+00:00,BETR801,no2,49.0,µg/m³
+Antwerpen,BE,2019-04-15 03:00:00+00:00,BETR801,no2,36.5,µg/m³
+Antwerpen,BE,2019-04-15 02:00:00+00:00,BETR801,no2,32.0,µg/m³
+Antwerpen,BE,2019-04-15 01:00:00+00:00,BETR801,no2,30.5,µg/m³
+Antwerpen,BE,2019-04-12 02:00:00+00:00,BETR801,no2,22.5,µg/m³
+Antwerpen,BE,2019-04-12 01:00:00+00:00,BETR801,no2,25.0,µg/m³
+Antwerpen,BE,2019-04-11 02:00:00+00:00,BETR801,no2,14.0,µg/m³
+Antwerpen,BE,2019-04-11 01:00:00+00:00,BETR801,no2,13.5,µg/m³
+Antwerpen,BE,2019-04-10 02:00:00+00:00,BETR801,no2,11.5,µg/m³
+Antwerpen,BE,2019-04-10 01:00:00+00:00,BETR801,no2,13.5,µg/m³
+Antwerpen,BE,2019-04-09 13:00:00+00:00,BETR801,no2,27.5,µg/m³
+Antwerpen,BE,2019-04-09 12:00:00+00:00,BETR801,no2,30.0,µg/m³
+Antwerpen,BE,2019-04-09 11:00:00+00:00,BETR801,no2,28.5,µg/m³
+Antwerpen,BE,2019-04-09 10:00:00+00:00,BETR801,no2,33.5,µg/m³
+Antwerpen,BE,2019-04-09 09:00:00+00:00,BETR801,no2,35.0,µg/m³
+Antwerpen,BE,2019-04-09 08:00:00+00:00,BETR801,no2,39.0,µg/m³
+Antwerpen,BE,2019-04-09 07:00:00+00:00,BETR801,no2,38.5,µg/m³
+Antwerpen,BE,2019-04-09 06:00:00+00:00,BETR801,no2,50.0,µg/m³
+Antwerpen,BE,2019-04-09 05:00:00+00:00,BETR801,no2,46.5,µg/m³
+Antwerpen,BE,2019-04-09 04:00:00+00:00,BETR801,no2,34.5,µg/m³
+Antwerpen,BE,2019-04-09 03:00:00+00:00,BETR801,no2,54.5,µg/m³
+Antwerpen,BE,2019-04-09 02:00:00+00:00,BETR801,no2,53.5,µg/m³
+Antwerpen,BE,2019-04-09 01:00:00+00:00,BETR801,no2,22.5,µg/m³
+London,GB,2019-06-17 11:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-17 10:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-17 09:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-17 08:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-17 07:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-17 06:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-17 05:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-17 04:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-17 03:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-17 02:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-17 01:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-17 00:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-16 23:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-16 21:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-16 20:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-16 19:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-16 18:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-16 17:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-06-16 16:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-06-16 15:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-16 14:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-16 13:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-16 12:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-16 11:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-16 10:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-16 09:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-16 08:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-16 07:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-16 06:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-16 05:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-16 04:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-16 03:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-16 02:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-16 01:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-16 00:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-15 23:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-15 22:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-15 21:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-15 20:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-15 19:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-15 18:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-15 17:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-15 16:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-15 15:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-15 14:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-15 13:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-15 12:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-15 11:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-15 10:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-15 09:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-15 08:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-15 07:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-15 06:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-15 05:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-15 04:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-15 00:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 21:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-14 20:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 19:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 18:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-14 17:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 16:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-14 15:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-14 14:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-14 13:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-14 12:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-14 11:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-14 10:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-14 09:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-14 08:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-14 07:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-14 06:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-14 05:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-14 04:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-14 03:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-14 02:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-14 00:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-13 23:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-13 22:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-13 21:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-13 20:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-13 19:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-13 18:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-13 17:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-13 16:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-13 15:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-13 14:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-13 13:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-13 12:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-13 11:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-13 10:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-13 09:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-13 08:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-13 07:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-13 06:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-13 05:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-13 04:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-13 03:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-13 02:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-13 00:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-06-12 23:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-12 21:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-06-12 20:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-06-12 19:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-12 18:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-06-12 17:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-06-12 16:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-06-12 15:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-06-12 14:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-12 13:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-12 12:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-12 11:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-12 10:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-12 09:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-12 08:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-12 07:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-12 06:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-12 05:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-06-12 04:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-06-12 03:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-12 00:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-11 23:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-11 22:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-11 21:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-11 20:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-11 19:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-06-11 18:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-11 17:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-06-11 16:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-11 15:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-11 14:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-11 13:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-11 12:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-11 11:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-11 10:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-11 09:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-11 08:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-11 07:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-11 06:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-11 05:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-11 04:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-11 03:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-11 02:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-11 01:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-11 00:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-10 23:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-10 22:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-10 21:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-10 20:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-10 19:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-10 18:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-10 17:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-10 16:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-10 15:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-06-10 14:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-06-10 13:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-06-10 12:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-06-10 11:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-06-10 10:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-06-10 09:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-06-10 08:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-10 07:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-10 06:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-10 05:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-10 04:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-10 03:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-10 02:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-10 01:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-10 00:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-09 23:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-09 21:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-09 20:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-09 19:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-09 18:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-09 17:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-09 16:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-09 15:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-09 14:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-09 13:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-09 12:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-09 11:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-09 10:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-06-09 09:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-09 08:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-09 07:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-09 06:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-09 05:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-09 04:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-09 03:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-09 02:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-09 01:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-09 00:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-08 23:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-08 21:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-08 20:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-08 19:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-08 18:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-08 17:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-08 16:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-08 15:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-08 14:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-08 13:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-08 12:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-08 11:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-08 10:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-08 09:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-06-08 08:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-08 07:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-08 06:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-06-08 05:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-08 04:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-08 03:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-08 02:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-08 00:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-07 23:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-07 21:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-07 20:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-07 19:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-07 18:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-07 17:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-07 16:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-07 15:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-07 14:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-07 13:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-07 12:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-07 11:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-07 10:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-07 09:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-07 08:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-07 07:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-07 06:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-07 05:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-07 04:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-07 03:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-07 02:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-07 01:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-07 00:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-06 23:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-06 22:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-06 21:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-06 20:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-06 19:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-06 18:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-06 17:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-06 16:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-06 15:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-06 14:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-06 13:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-06 12:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-06 11:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-06 10:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-06 09:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-06 08:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-06 07:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-06 06:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-06 05:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-06 04:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-06 03:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-06 02:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-06 00:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-05 23:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-05 22:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-05 21:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 20:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 19:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 18:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 17:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 16:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 15:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-05 14:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-05 13:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-05 12:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-06-05 11:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-05 10:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-05 09:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-05 08:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-05 07:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-05 06:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-06-05 05:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-05 04:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-05 03:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-05 02:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-05 01:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-05 00:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-04 23:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-04 22:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-04 21:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-04 20:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-04 19:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-04 18:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-06-04 17:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-06-04 16:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-06-04 15:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-06-04 14:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-04 13:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-06-04 12:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-04 11:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-04 10:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-04 09:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-04 08:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-04 07:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-04 06:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-04 05:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-04 04:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-04 03:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-04 02:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-04 01:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-04 00:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-03 23:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-03 22:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-03 21:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-03 20:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-03 19:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-03 18:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-03 17:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-03 16:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-03 15:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-03 14:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-03 13:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-03 12:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-03 11:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-03 10:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-03 09:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-03 08:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-03 07:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-03 06:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-03 05:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-03 04:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-03 03:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-03 02:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-03 01:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-03 00:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-02 23:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-02 22:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-02 21:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-02 20:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 19:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-06-02 18:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-06-02 17:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 16:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 15:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-02 14:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-02 13:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-06-02 12:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-02 11:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-02 10:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-02 09:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 08:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-06-02 07:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 06:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 05:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-06-02 04:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-06-02 03:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-06-02 02:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-06-02 01:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-06-02 00:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-06-01 23:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-06-01 22:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-06-01 21:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-06-01 20:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-06-01 19:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-06-01 18:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-01 17:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-01 16:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-01 15:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-01 14:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-01 13:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-01 12:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-01 11:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-01 10:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-01 09:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-06-01 08:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-01 07:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-06-01 06:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-01 05:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-01 04:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-01 03:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-01 02:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-01 01:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-01 00:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-31 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-31 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-31 21:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-31 20:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-31 19:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-31 18:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-31 17:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-31 16:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-31 15:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-31 14:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-31 13:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-31 12:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-31 11:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-31 10:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-31 09:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-31 08:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-05-31 07:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-05-31 06:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-05-31 05:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-05-31 04:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-05-31 03:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-05-31 02:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-05-31 01:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-31 00:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-30 23:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-30 22:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-30 21:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-30 20:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-30 19:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-30 18:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-30 17:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-30 16:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-30 15:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-30 14:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-30 13:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-30 12:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-30 11:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-05-30 10:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-05-30 09:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-30 08:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-05-30 07:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-05-30 06:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-05-30 05:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-05-30 04:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-05-30 03:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-05-30 02:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-05-30 01:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-05-30 00:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-05-29 23:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 22:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 21:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-05-29 20:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-05-29 19:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 18:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 17:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 16:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-05-29 15:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 14:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-29 13:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-05-29 12:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-29 11:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-29 10:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-29 09:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-29 08:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-29 07:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-29 06:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-29 05:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-29 04:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-29 03:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-29 02:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-29 01:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-29 00:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-28 23:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-28 21:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-28 20:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-28 19:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-28 18:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-28 17:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-28 16:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-28 15:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-28 14:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-28 13:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-28 12:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-28 11:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-28 10:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-28 09:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-28 08:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-28 07:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-28 06:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-28 05:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-28 04:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-28 03:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-28 02:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-28 01:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-28 00:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-27 23:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-27 22:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-27 21:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-27 20:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-27 19:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-27 18:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-27 17:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-27 16:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-27 15:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-27 14:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-27 13:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-27 12:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-27 11:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-27 10:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-27 09:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-27 08:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-27 07:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-27 06:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-27 05:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-27 04:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-27 03:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-27 02:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-27 01:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-27 00:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 21:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-26 20:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-26 19:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 18:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-26 17:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 16:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-26 15:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 14:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-26 13:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-26 12:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-26 11:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-26 10:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-26 09:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-26 08:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-26 07:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-26 06:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-26 05:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-26 04:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-26 03:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 02:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 01:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-26 00:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-25 23:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-25 22:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-25 21:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-05-25 20:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-05-25 19:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-05-25 18:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-05-25 17:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-05-25 16:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-05-25 15:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-25 14:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-25 13:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-25 12:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-25 11:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-25 10:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-25 09:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-25 08:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-25 07:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-25 06:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-25 05:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-25 04:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-25 03:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-25 02:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-25 01:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-25 00:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-24 23:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-24 22:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-24 21:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-24 20:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-05-24 19:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-05-24 18:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-05-24 17:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-05-24 16:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-05-24 15:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-05-24 14:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-24 13:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-24 12:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-24 11:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-24 10:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-24 09:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-24 08:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-24 07:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-24 06:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-24 05:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-24 04:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-24 03:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-24 02:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-24 00:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-23 23:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-23 22:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-23 21:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-05-23 20:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-05-23 19:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-05-23 18:00:00+00:00,London Westminster,no2,54.0,µg/m³
+London,GB,2019-05-23 17:00:00+00:00,London Westminster,no2,60.0,µg/m³
+London,GB,2019-05-23 16:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-05-23 15:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-23 14:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-23 13:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-23 12:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-23 11:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-23 10:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-23 09:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-23 08:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-23 07:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-23 06:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-23 05:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-23 04:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-23 03:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-23 02:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-23 01:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-23 00:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-22 23:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-22 22:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-22 21:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-22 20:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-22 19:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-22 18:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-22 17:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-22 16:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-22 15:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-22 14:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-22 13:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-22 12:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-22 11:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-22 10:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-22 09:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-22 08:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-22 07:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-22 06:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-22 05:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-22 04:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-22 03:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-22 02:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-22 01:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-22 00:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-21 23:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-21 22:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-21 21:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-21 20:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-21 19:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-05-21 18:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-21 17:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-21 16:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-21 15:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-21 14:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-21 13:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-21 12:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-21 11:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-21 10:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-21 09:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-21 08:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-21 07:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-21 06:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-21 05:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-21 04:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-21 03:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-21 02:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-21 01:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-21 00:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-20 23:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-05-20 22:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-05-20 21:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-20 20:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 19:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 18:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-20 17:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-20 16:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-20 15:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 14:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 13:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-20 12:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-20 11:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-20 10:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-20 09:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-20 08:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-20 07:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-20 06:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-20 05:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-20 04:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-20 03:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 02:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 01:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-20 00:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-19 23:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-19 22:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-19 21:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-19 20:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-19 19:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-19 18:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-19 17:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-19 16:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-19 15:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-19 14:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-19 13:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-19 12:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-19 11:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-19 10:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-19 09:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-19 08:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-19 07:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-19 06:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-19 05:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-19 04:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-19 03:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-19 02:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-19 01:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-19 00:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-18 23:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-05-18 22:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-05-18 21:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-05-18 20:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-18 19:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-18 18:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-05-18 17:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-05-18 16:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-18 15:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-18 14:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-18 13:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-18 12:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-18 11:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-18 10:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-18 09:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-18 08:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-18 07:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-18 06:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-18 05:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-18 04:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-18 03:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-18 02:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-18 01:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-18 00:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-17 23:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-17 22:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-17 21:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-17 20:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-17 19:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-17 18:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-17 17:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-17 16:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-17 15:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-17 14:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-17 13:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-17 12:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-17 11:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-17 10:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-17 09:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-17 08:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-17 07:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-17 06:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-17 05:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-17 04:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-17 03:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-17 02:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-17 01:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-17 00:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-16 23:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-16 22:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-16 21:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-16 20:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-16 19:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-16 18:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-16 17:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-16 16:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-16 15:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-16 14:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-16 13:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-16 12:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-16 11:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-16 10:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-16 09:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-16 08:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-16 07:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-16 06:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-16 05:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-16 04:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-16 03:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-16 02:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-16 01:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-16 00:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 23:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 22:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 21:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-15 20:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-15 19:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 18:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-15 17:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 16:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-15 15:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-15 14:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-15 13:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-15 12:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-15 11:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-15 10:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-15 09:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-15 08:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-15 07:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 06:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 05:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-15 04:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-15 03:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-15 02:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-15 00:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-14 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-14 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-14 21:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-14 20:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-14 19:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-14 18:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-14 17:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-14 16:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-14 15:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-14 14:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-14 13:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-14 12:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-14 11:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-14 10:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-14 09:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-14 08:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-14 07:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-14 06:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-14 05:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-14 04:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-14 03:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-14 02:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-14 01:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-14 00:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-13 23:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 22:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 21:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 20:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 19:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 18:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-13 17:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-13 16:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-13 15:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-13 14:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-13 13:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-13 12:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-13 11:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-13 10:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-13 09:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-13 08:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 07:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-13 06:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-13 05:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-13 04:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-13 03:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-13 02:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-13 01:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-13 00:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 23:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 22:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 21:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-12 20:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 19:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 18:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 17:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-12 16:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-12 15:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 14:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-12 13:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-12 12:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-12 11:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-12 10:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-12 09:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-12 08:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-12 07:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-05-12 06:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-12 05:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-12 04:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-12 03:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-12 02:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-12 01:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-12 00:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-11 23:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-11 22:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-11 21:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-11 20:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-11 19:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-11 18:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-11 17:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-11 16:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-11 15:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-11 09:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-11 08:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-11 07:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-11 06:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-11 05:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-11 04:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-11 03:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-11 02:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-11 01:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-11 00:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-10 23:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-10 22:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-10 21:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-10 20:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-10 19:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-10 18:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-10 17:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-10 16:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-10 15:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-10 14:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-10 13:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-10 12:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-10 11:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-10 10:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-10 09:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-10 08:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-10 07:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-10 06:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-10 05:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-05-10 04:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-05-10 03:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-05-10 02:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-05-10 01:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-05-10 00:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-05-09 23:00:00+00:00,London Westminster,no2,59.0,µg/m³
+London,GB,2019-05-09 22:00:00+00:00,London Westminster,no2,59.0,µg/m³
+London,GB,2019-05-09 21:00:00+00:00,London Westminster,no2,65.0,µg/m³
+London,GB,2019-05-09 20:00:00+00:00,London Westminster,no2,59.0,µg/m³
+London,GB,2019-05-09 19:00:00+00:00,London Westminster,no2,62.0,µg/m³
+London,GB,2019-05-09 18:00:00+00:00,London Westminster,no2,58.0,µg/m³
+London,GB,2019-05-09 17:00:00+00:00,London Westminster,no2,60.0,µg/m³
+London,GB,2019-05-09 16:00:00+00:00,London Westminster,no2,67.0,µg/m³
+London,GB,2019-05-09 15:00:00+00:00,London Westminster,no2,97.0,µg/m³
+London,GB,2019-05-09 14:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-09 13:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-09 12:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-09 11:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-09 10:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-09 09:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-09 08:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-09 07:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-09 06:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-09 05:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-09 04:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-09 03:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-09 02:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-09 00:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-08 23:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-08 21:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-08 20:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-08 19:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-08 18:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-05-08 17:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-08 16:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-08 15:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-08 14:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-08 13:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-08 12:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-08 11:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-08 10:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-08 09:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-08 08:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-08 07:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-08 06:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-08 05:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-08 04:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-08 03:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-08 02:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-08 01:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-08 00:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-07 23:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-07 21:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-07 20:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-07 19:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-07 18:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-07 17:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-07 16:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-07 15:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-07 14:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-07 13:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-07 12:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-07 11:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-07 10:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-07 09:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-07 08:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-07 07:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-07 06:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-07 04:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-07 03:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-07 02:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-07 01:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-06 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-06 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-06 21:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-06 20:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-06 19:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-06 18:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-06 17:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-06 16:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-06 15:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-06 14:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-06 13:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-06 12:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-06 11:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-06 10:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-06 09:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-06 08:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-06 07:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-06 06:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-06 05:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-06 04:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-06 03:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-06 02:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-06 01:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-06 00:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-05 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-05 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-05 21:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-05 20:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-05 19:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-05 18:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-05 17:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-05 16:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-05 15:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-05 14:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-05 13:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-05 12:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-05 11:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-05 10:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-05 09:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-05 08:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-05 07:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-05 06:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-05 05:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-05 04:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-05 03:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-05 02:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-05 01:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-05 00:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-04 23:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-04 22:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-04 21:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-04 20:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-04 19:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-04 18:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-04 17:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-04 16:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-04 15:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-04 14:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-04 13:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-04 12:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-04 11:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-04 10:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-04 09:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-04 08:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-04 07:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-04 06:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-04 05:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-04 04:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-04 03:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-04 02:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-04 01:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-04 00:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-03 23:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-03 22:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-03 21:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-03 20:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-03 19:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-03 18:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-03 17:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-03 16:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-03 15:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-03 14:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-03 13:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-03 12:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-03 11:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-05-03 10:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-05-03 09:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-05-03 08:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-03 07:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-03 06:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-03 05:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-03 04:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-03 03:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-03 02:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-03 01:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-03 00:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-02 23:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-05-02 22:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-05-02 21:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-05-02 20:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-05-02 19:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-05-02 18:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-02 17:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-02 16:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-02 15:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-02 14:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-02 13:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-02 12:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-02 11:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-02 10:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-02 09:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-02 08:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-02 07:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-02 06:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-02 05:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-02 04:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-02 03:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-02 02:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-02 01:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-02 00:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-01 23:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-01 22:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-01 21:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-01 20:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-01 19:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-01 18:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-01 17:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-01 16:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-01 15:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-01 14:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-01 13:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-01 12:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-01 11:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-01 10:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-01 09:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-01 08:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-01 07:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-01 06:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-01 05:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-01 04:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-01 03:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-01 00:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-04-30 23:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-30 22:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-30 21:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-04-30 20:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-04-30 19:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-04-30 18:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-04-30 17:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-30 16:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-30 15:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-30 14:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-30 13:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-30 12:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-30 11:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-04-30 10:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-30 09:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-30 08:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-30 07:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-30 06:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-30 05:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-30 04:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-30 03:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-30 02:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-30 01:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-04-30 00:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-04-29 23:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-29 22:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-29 21:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-29 20:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-29 19:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-29 18:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-29 17:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-04-29 16:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-29 15:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-04-29 14:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-04-29 13:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-29 12:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-29 11:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-04-29 10:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-29 09:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-04-29 08:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-29 07:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-29 06:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-04-29 05:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-29 04:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-29 03:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-29 02:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-29 01:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-29 00:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-28 23:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-04-28 22:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-04-28 21:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-28 20:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-28 19:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-28 18:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-28 17:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-28 16:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-28 15:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-28 14:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-28 13:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-28 12:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-28 11:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-28 10:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-04-28 09:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-04-27 13:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-04-27 12:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-04-27 11:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-04-27 10:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-04-27 09:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-04-27 08:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-04-27 07:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-04-27 06:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-04-27 05:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-04-27 04:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-04-27 03:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-04-27 02:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-04-27 00:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-04-26 23:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-04-26 22:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-04-26 21:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-04-26 20:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-04-26 19:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-04-26 18:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-04-26 17:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-04-26 16:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-04-26 15:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-04-26 14:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-04-26 13:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-04-26 12:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-04-26 11:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-04-26 10:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-26 09:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-26 08:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-26 07:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-26 06:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-04-26 05:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-26 04:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-26 03:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-26 02:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-26 01:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-26 00:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-25 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-25 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-25 21:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-04-25 20:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-25 19:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-04-25 18:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-04-25 17:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-04-25 16:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-04-25 15:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-04-25 14:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-04-25 13:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-04-25 12:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-25 11:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-25 10:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-25 09:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-25 08:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-25 07:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-25 06:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-25 05:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-04-25 04:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-04-25 03:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-04-25 02:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-04-25 00:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-24 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-24 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-24 21:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-24 20:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-24 19:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-24 18:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-24 17:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-24 16:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-24 15:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-24 14:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-24 13:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-24 12:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-24 11:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-24 10:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-24 09:00:00+00:00,London Westminster,no2,59.0,µg/m³
+London,GB,2019-04-24 08:00:00+00:00,London Westminster,no2,54.0,µg/m³
+London,GB,2019-04-24 07:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-24 06:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-24 05:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-24 04:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-24 03:00:00+00:00,London Westminster,no2,60.0,µg/m³
+London,GB,2019-04-24 02:00:00+00:00,London Westminster,no2,60.0,µg/m³
+London,GB,2019-04-24 00:00:00+00:00,London Westminster,no2,55.0,µg/m³
+London,GB,2019-04-23 23:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-23 22:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-23 21:00:00+00:00,London Westminster,no2,55.0,µg/m³
+London,GB,2019-04-23 20:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-23 19:00:00+00:00,London Westminster,no2,48.0,µg/m³
+London,GB,2019-04-23 18:00:00+00:00,London Westminster,no2,55.0,µg/m³
+London,GB,2019-04-23 17:00:00+00:00,London Westminster,no2,62.0,µg/m³
+London,GB,2019-04-23 16:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-23 15:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-23 14:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-23 13:00:00+00:00,London Westminster,no2,54.0,µg/m³
+London,GB,2019-04-23 12:00:00+00:00,London Westminster,no2,67.0,µg/m³
+London,GB,2019-04-23 11:00:00+00:00,London Westminster,no2,67.0,µg/m³
+London,GB,2019-04-23 10:00:00+00:00,London Westminster,no2,63.0,µg/m³
+London,GB,2019-04-23 09:00:00+00:00,London Westminster,no2,61.0,µg/m³
+London,GB,2019-04-23 08:00:00+00:00,London Westminster,no2,63.0,µg/m³
+London,GB,2019-04-23 07:00:00+00:00,London Westminster,no2,62.0,µg/m³
+London,GB,2019-04-23 06:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-23 05:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-23 04:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-23 03:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-04-23 02:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-04-23 01:00:00+00:00,London Westminster,no2,75.0,µg/m³
+London,GB,2019-04-23 00:00:00+00:00,London Westminster,no2,75.0,µg/m³
+London,GB,2019-04-22 23:00:00+00:00,London Westminster,no2,84.0,µg/m³
+London,GB,2019-04-22 22:00:00+00:00,London Westminster,no2,84.0,µg/m³
+London,GB,2019-04-22 21:00:00+00:00,London Westminster,no2,73.0,µg/m³
+London,GB,2019-04-22 20:00:00+00:00,London Westminster,no2,66.0,µg/m³
+London,GB,2019-04-22 19:00:00+00:00,London Westminster,no2,66.0,µg/m³
+London,GB,2019-04-22 18:00:00+00:00,London Westminster,no2,64.0,µg/m³
+London,GB,2019-04-22 17:00:00+00:00,London Westminster,no2,57.0,µg/m³
+London,GB,2019-04-22 16:00:00+00:00,London Westminster,no2,57.0,µg/m³
+London,GB,2019-04-22 15:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-22 14:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-22 13:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-22 12:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-22 11:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-04-22 10:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-04-22 09:00:00+00:00,London Westminster,no2,48.0,µg/m³
+London,GB,2019-04-22 08:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-22 07:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-22 06:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-04-22 05:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-22 04:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-22 03:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-22 02:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-22 01:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-22 00:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-21 23:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-21 22:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-21 21:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-04-21 20:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-21 19:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-21 18:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-04-21 17:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-21 16:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-21 15:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-04-21 14:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-21 13:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-21 12:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-21 11:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-21 10:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-21 09:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-04-21 08:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-21 07:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-21 06:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-04-21 05:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-21 04:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-21 03:00:00+00:00,London Westminster,no2,57.0,µg/m³
+London,GB,2019-04-21 02:00:00+00:00,London Westminster,no2,57.0,µg/m³
+London,GB,2019-04-21 01:00:00+00:00,London Westminster,no2,54.0,µg/m³
+London,GB,2019-04-21 00:00:00+00:00,London Westminster,no2,54.0,µg/m³
+London,GB,2019-04-20 23:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-20 22:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-20 21:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-20 20:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-04-20 19:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-20 18:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-20 17:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-04-20 16:00:00+00:00,London Westminster,no2,48.0,µg/m³
+London,GB,2019-04-20 15:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-20 14:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-20 13:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-20 12:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-04-20 11:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-20 10:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-20 09:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-20 08:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-20 07:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-20 06:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-20 05:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-04-20 04:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-04-20 03:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-04-20 02:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-04-20 01:00:00+00:00,London Westminster,no2,59.0,µg/m³
+London,GB,2019-04-20 00:00:00+00:00,London Westminster,no2,59.0,µg/m³
+London,GB,2019-04-19 23:00:00+00:00,London Westminster,no2,77.0,µg/m³
+London,GB,2019-04-19 22:00:00+00:00,London Westminster,no2,77.0,µg/m³
+London,GB,2019-04-19 21:00:00+00:00,London Westminster,no2,57.0,µg/m³
+London,GB,2019-04-19 20:00:00+00:00,London Westminster,no2,58.0,µg/m³
+London,GB,2019-04-19 19:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-19 18:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-04-19 17:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-04-19 16:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-04-19 15:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-04-19 14:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-04-19 13:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-04-19 12:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-04-19 11:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-19 10:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-04-19 09:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-19 08:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-04-19 07:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-19 06:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-04-19 05:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-04-19 04:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-04-19 03:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-19 02:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-19 00:00:00+00:00,London Westminster,no2,58.0,µg/m³
+London,GB,2019-04-18 23:00:00+00:00,London Westminster,no2,61.0,µg/m³
+London,GB,2019-04-18 22:00:00+00:00,London Westminster,no2,61.0,µg/m³
+London,GB,2019-04-18 21:00:00+00:00,London Westminster,no2,60.0,µg/m³
+London,GB,2019-04-18 20:00:00+00:00,London Westminster,no2,69.0,µg/m³
+London,GB,2019-04-18 19:00:00+00:00,London Westminster,no2,63.0,µg/m³
+London,GB,2019-04-18 18:00:00+00:00,London Westminster,no2,63.0,µg/m³
+London,GB,2019-04-18 17:00:00+00:00,London Westminster,no2,56.0,µg/m³
+London,GB,2019-04-18 16:00:00+00:00,London Westminster,no2,57.0,µg/m³
+London,GB,2019-04-18 15:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-04-18 14:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-18 13:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-04-18 12:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-04-18 11:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-18 10:00:00+00:00,London Westminster,no2,56.0,µg/m³
+London,GB,2019-04-18 09:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-18 08:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-18 07:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-18 06:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-04-18 05:00:00+00:00,London Westminster,no2,55.0,µg/m³
+London,GB,2019-04-18 04:00:00+00:00,London Westminster,no2,55.0,µg/m³
+London,GB,2019-04-18 03:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-18 02:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-18 01:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-18 00:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-17 23:00:00+00:00,London Westminster,no2,55.0,µg/m³
+London,GB,2019-04-17 22:00:00+00:00,London Westminster,no2,55.0,µg/m³
+London,GB,2019-04-17 21:00:00+00:00,London Westminster,no2,54.0,µg/m³
+London,GB,2019-04-17 20:00:00+00:00,London Westminster,no2,60.0,µg/m³
+London,GB,2019-04-17 19:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-17 18:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-17 17:00:00+00:00,London Westminster,no2,54.0,µg/m³
+London,GB,2019-04-17 16:00:00+00:00,London Westminster,no2,57.0,µg/m³
+London,GB,2019-04-17 15:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-17 14:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-04-17 13:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-17 12:00:00+00:00,London Westminster,no2,60.0,µg/m³
+London,GB,2019-04-17 11:00:00+00:00,London Westminster,no2,67.0,µg/m³
+London,GB,2019-04-17 10:00:00+00:00,London Westminster,no2,56.0,µg/m³
+London,GB,2019-04-17 09:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-17 08:00:00+00:00,London Westminster,no2,48.0,µg/m³
+London,GB,2019-04-17 07:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-04-17 06:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-04-17 05:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-17 04:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-17 03:00:00+00:00,London Westminster,no2,72.0,µg/m³
+London,GB,2019-04-17 02:00:00+00:00,London Westminster,no2,72.0,µg/m³
+London,GB,2019-04-17 00:00:00+00:00,London Westminster,no2,71.0,µg/m³
+London,GB,2019-04-16 23:00:00+00:00,London Westminster,no2,81.0,µg/m³
+London,GB,2019-04-16 22:00:00+00:00,London Westminster,no2,81.0,µg/m³
+London,GB,2019-04-16 21:00:00+00:00,London Westminster,no2,84.0,µg/m³
+London,GB,2019-04-16 20:00:00+00:00,London Westminster,no2,83.0,µg/m³
+London,GB,2019-04-16 19:00:00+00:00,London Westminster,no2,76.0,µg/m³
+London,GB,2019-04-16 18:00:00+00:00,London Westminster,no2,70.0,µg/m³
+London,GB,2019-04-16 17:00:00+00:00,London Westminster,no2,65.0,µg/m³
+London,GB,2019-04-16 15:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-04-16 14:00:00+00:00,London Westminster,no2,57.0,µg/m³
+London,GB,2019-04-16 13:00:00+00:00,London Westminster,no2,63.0,µg/m³
+London,GB,2019-04-16 12:00:00+00:00,London Westminster,no2,75.0,µg/m³
+London,GB,2019-04-16 11:00:00+00:00,London Westminster,no2,79.0,µg/m³
+London,GB,2019-04-16 10:00:00+00:00,London Westminster,no2,70.0,µg/m³
+London,GB,2019-04-16 09:00:00+00:00,London Westminster,no2,66.0,µg/m³
+London,GB,2019-04-16 08:00:00+00:00,London Westminster,no2,59.0,µg/m³
+London,GB,2019-04-16 07:00:00+00:00,London Westminster,no2,55.0,µg/m³
+London,GB,2019-04-16 06:00:00+00:00,London Westminster,no2,54.0,µg/m³
+London,GB,2019-04-16 05:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-16 04:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-16 03:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-16 02:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-16 00:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-15 23:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-04-15 22:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-04-15 21:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-04-15 20:00:00+00:00,London Westminster,no2,48.0,µg/m³
+London,GB,2019-04-15 19:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-15 18:00:00+00:00,London Westminster,no2,48.0,µg/m³
+London,GB,2019-04-15 17:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-04-15 16:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-15 15:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-04-15 14:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-04-15 13:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-15 12:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-15 11:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-15 10:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-04-15 09:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-04-15 08:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-15 07:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-15 06:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-15 05:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-15 04:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-15 03:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-04-15 02:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-04-15 01:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-15 00:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-14 23:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-04-14 22:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-04-14 21:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-14 20:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-14 19:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-14 18:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-14 17:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-14 16:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-04-14 15:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-04-14 14:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-04-14 13:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-14 12:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-14 11:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-14 10:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-04-14 09:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-14 08:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-04-14 07:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-14 06:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-04-14 05:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-04-14 04:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-04-14 03:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-14 02:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-14 01:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-14 00:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-13 23:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-04-13 22:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-04-13 21:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-13 20:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-13 19:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-04-13 18:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-04-13 17:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-13 16:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-13 15:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-13 14:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-13 13:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-13 12:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-13 11:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-04-13 10:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-13 09:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-13 08:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-04-13 07:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-04-13 06:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-13 05:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-13 04:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-13 03:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-13 02:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-13 01:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-13 00:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-12 23:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-12 22:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-12 21:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-12 20:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-04-12 19:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-12 18:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-12 17:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-12 16:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-04-12 15:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-04-12 14:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-12 13:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-12 12:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-04-12 11:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-12 10:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-12 09:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-12 08:00:00+00:00,London Westminster,no2,57.0,µg/m³
+London,GB,2019-04-12 07:00:00+00:00,London Westminster,no2,55.0,µg/m³
+London,GB,2019-04-12 06:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-12 05:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-12 04:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-12 03:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-12 00:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-11 23:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-04-11 22:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-04-11 21:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-11 20:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-11 19:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-04-11 18:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-04-11 17:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-11 16:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-11 15:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-11 14:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-11 13:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-04-11 12:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-11 11:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-11 10:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-11 09:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-11 08:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-11 07:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-04-11 06:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-04-11 05:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-11 04:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-11 03:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-11 02:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-04-11 00:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-10 23:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-10 22:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-10 21:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-10 20:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-10 19:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-04-10 18:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-10 17:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-04-10 16:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-04-10 15:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-10 14:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-04-10 13:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-04-10 12:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-10 11:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-04-10 10:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-04-10 09:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-04-10 08:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-10 07:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-10 06:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-10 05:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-10 04:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-04-10 03:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-10 02:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-04-10 01:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-04-10 00:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-04-09 23:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-09 22:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-04-09 21:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-09 20:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-04-09 19:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-09 18:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-04-09 17:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-04-09 16:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-04-09 15:00:00+00:00,London Westminster,no2,59.0,µg/m³
+London,GB,2019-04-09 14:00:00+00:00,London Westminster,no2,58.0,µg/m³
+London,GB,2019-04-09 13:00:00+00:00,London Westminster,no2,56.0,µg/m³
+London,GB,2019-04-09 12:00:00+00:00,London Westminster,no2,55.0,µg/m³
+London,GB,2019-04-09 11:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-09 10:00:00+00:00,London Westminster,no2,50.0,µg/m³
+London,GB,2019-04-09 09:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-04-09 08:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-04-09 07:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-04-09 06:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-09 05:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-09 04:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-04-09 03:00:00+00:00,London Westminster,no2,67.0,µg/m³
+London,GB,2019-04-09 02:00:00+00:00,London Westminster,no2,67.0,µg/m³
diff --git a/doc/data/air_quality_no2.csv b/doc/data/air_quality_no2.csv
new file mode 100644
index 0000000000000..7fa879f7c7e78
--- /dev/null
+++ b/doc/data/air_quality_no2.csv
@@ -0,0 +1,1036 @@
+datetime,station_antwerp,station_paris,station_london
+2019-05-07 02:00:00,,,23.0
+2019-05-07 03:00:00,50.5,25.0,19.0
+2019-05-07 04:00:00,45.0,27.7,19.0
+2019-05-07 05:00:00,,50.4,16.0
+2019-05-07 06:00:00,,61.9,
+2019-05-07 07:00:00,,72.4,26.0
+2019-05-07 08:00:00,,77.7,32.0
+2019-05-07 09:00:00,,67.9,32.0
+2019-05-07 10:00:00,,56.0,28.0
+2019-05-07 11:00:00,,34.5,21.0
+2019-05-07 12:00:00,,20.1,21.0
+2019-05-07 13:00:00,,13.0,18.0
+2019-05-07 14:00:00,,10.6,20.0
+2019-05-07 15:00:00,,13.2,18.0
+2019-05-07 16:00:00,,11.0,20.0
+2019-05-07 17:00:00,,11.7,20.0
+2019-05-07 18:00:00,,18.2,21.0
+2019-05-07 19:00:00,,22.3,20.0
+2019-05-07 20:00:00,,21.4,20.0
+2019-05-07 21:00:00,,26.8,24.0
+2019-05-07 22:00:00,,36.2,24.0
+2019-05-07 23:00:00,,33.9,
+2019-05-08 00:00:00,,35.8,24.0
+2019-05-08 01:00:00,,34.0,19.0
+2019-05-08 02:00:00,,22.1,19.0
+2019-05-08 03:00:00,23.0,19.6,20.0
+2019-05-08 04:00:00,20.5,15.3,20.0
+2019-05-08 05:00:00,,13.5,19.0
+2019-05-08 06:00:00,,15.5,19.0
+2019-05-08 07:00:00,,19.3,29.0
+2019-05-08 08:00:00,,21.7,34.0
+2019-05-08 09:00:00,,19.5,36.0
+2019-05-08 10:00:00,,17.0,33.0
+2019-05-08 11:00:00,,19.7,28.0
+2019-05-08 12:00:00,,33.4,27.0
+2019-05-08 13:00:00,,21.4,26.0
+2019-05-08 14:00:00,,15.1,26.0
+2019-05-08 15:00:00,,14.3,24.0
+2019-05-08 16:00:00,,25.3,27.0
+2019-05-08 17:00:00,,26.0,28.0
+2019-05-08 18:00:00,,38.6,31.0
+2019-05-08 19:00:00,,29.3,40.0
+2019-05-08 20:00:00,,27.8,25.0
+2019-05-08 21:00:00,,41.3,29.0
+2019-05-08 22:00:00,,38.3,26.0
+2019-05-08 23:00:00,,48.9,
+2019-05-09 00:00:00,,32.2,25.0
+2019-05-09 01:00:00,,25.2,30.0
+2019-05-09 02:00:00,,14.7,
+2019-05-09 03:00:00,20.0,10.6,31.0
+2019-05-09 04:00:00,20.5,10.0,31.0
+2019-05-09 05:00:00,,10.4,33.0
+2019-05-09 06:00:00,,15.3,33.0
+2019-05-09 07:00:00,,34.5,33.0
+2019-05-09 08:00:00,,50.7,33.0
+2019-05-09 09:00:00,,49.0,35.0
+2019-05-09 10:00:00,,32.2,36.0
+2019-05-09 11:00:00,,32.3,28.0
+2019-05-09 12:00:00,,43.1,27.0
+2019-05-09 13:00:00,,34.2,30.0
+2019-05-09 14:00:00,,35.1,27.0
+2019-05-09 15:00:00,,21.3,34.0
+2019-05-09 16:00:00,,24.6,97.0
+2019-05-09 17:00:00,,23.9,67.0
+2019-05-09 18:00:00,,27.0,60.0
+2019-05-09 19:00:00,,29.9,58.0
+2019-05-09 20:00:00,,24.4,62.0
+2019-05-09 21:00:00,,23.8,59.0
+2019-05-09 22:00:00,,29.2,65.0
+2019-05-09 23:00:00,,34.5,59.0
+2019-05-10 00:00:00,,29.7,59.0
+2019-05-10 01:00:00,,26.7,52.0
+2019-05-10 02:00:00,,22.7,52.0
+2019-05-10 03:00:00,10.5,19.1,41.0
+2019-05-10 04:00:00,11.5,14.1,41.0
+2019-05-10 05:00:00,,15.0,40.0
+2019-05-10 06:00:00,,20.5,40.0
+2019-05-10 07:00:00,,37.8,39.0
+2019-05-10 08:00:00,,47.4,36.0
+2019-05-10 09:00:00,,57.3,39.0
+2019-05-10 10:00:00,,60.7,34.0
+2019-05-10 11:00:00,,53.4,31.0
+2019-05-10 12:00:00,,35.1,29.0
+2019-05-10 13:00:00,,23.2,28.0
+2019-05-10 14:00:00,,25.3,26.0
+2019-05-10 15:00:00,,22.0,25.0
+2019-05-10 16:00:00,,29.3,25.0
+2019-05-10 17:00:00,,29.6,24.0
+2019-05-10 18:00:00,,30.8,26.0
+2019-05-10 19:00:00,,37.8,26.0
+2019-05-10 20:00:00,,33.4,29.0
+2019-05-10 21:00:00,,39.3,29.0
+2019-05-10 22:00:00,,43.6,29.0
+2019-05-10 23:00:00,,37.0,31.0
+2019-05-11 00:00:00,,28.1,31.0
+2019-05-11 01:00:00,,26.0,27.0
+2019-05-11 02:00:00,,24.8,27.0
+2019-05-11 03:00:00,26.5,15.5,32.0
+2019-05-11 04:00:00,21.0,14.9,32.0
+2019-05-11 05:00:00,,,35.0
+2019-05-11 06:00:00,,,35.0
+2019-05-11 07:00:00,,,30.0
+2019-05-11 08:00:00,,28.9,30.0
+2019-05-11 09:00:00,,29.0,27.0
+2019-05-11 10:00:00,,32.1,30.0
+2019-05-11 11:00:00,,35.7,
+2019-05-11 12:00:00,,36.8,
+2019-05-11 13:00:00,,33.2,
+2019-05-11 14:00:00,,30.2,
+2019-05-11 15:00:00,,30.8,
+2019-05-11 16:00:00,,17.8,28.0
+2019-05-11 17:00:00,,18.0,26.0
+2019-05-11 18:00:00,,19.5,28.0
+2019-05-11 19:00:00,,32.0,31.0
+2019-05-11 20:00:00,,33.1,33.0
+2019-05-11 21:00:00,,31.2,33.0
+2019-05-11 22:00:00,,24.2,34.0
+2019-05-11 23:00:00,,21.1,37.0
+2019-05-12 00:00:00,,27.7,37.0
+2019-05-12 01:00:00,,26.4,35.0
+2019-05-12 02:00:00,,22.8,35.0
+2019-05-12 03:00:00,17.5,19.2,38.0
+2019-05-12 04:00:00,20.0,17.2,38.0
+2019-05-12 05:00:00,,16.0,36.0
+2019-05-12 06:00:00,,16.2,36.0
+2019-05-12 07:00:00,,19.2,38.0
+2019-05-12 08:00:00,,20.1,44.0
+2019-05-12 09:00:00,,15.9,32.0
+2019-05-12 10:00:00,,14.6,26.0
+2019-05-12 11:00:00,,11.7,26.0
+2019-05-12 12:00:00,,11.4,21.0
+2019-05-12 13:00:00,,11.4,20.0
+2019-05-12 14:00:00,,10.9,19.0
+2019-05-12 15:00:00,,8.7,21.0
+2019-05-12 16:00:00,,9.1,22.0
+2019-05-12 17:00:00,,9.6,23.0
+2019-05-12 18:00:00,,11.7,24.0
+2019-05-12 19:00:00,,13.9,22.0
+2019-05-12 20:00:00,,18.2,22.0
+2019-05-12 21:00:00,,19.5,22.0
+2019-05-12 22:00:00,,24.1,21.0
+2019-05-12 23:00:00,,34.2,22.0
+2019-05-13 00:00:00,,46.5,22.0
+2019-05-13 01:00:00,,32.5,22.0
+2019-05-13 02:00:00,,25.0,22.0
+2019-05-13 03:00:00,14.5,18.9,24.0
+2019-05-13 04:00:00,14.5,18.5,24.0
+2019-05-13 05:00:00,,18.9,33.0
+2019-05-13 06:00:00,,25.1,33.0
+2019-05-13 07:00:00,,38.3,39.0
+2019-05-13 08:00:00,,45.2,39.0
+2019-05-13 09:00:00,,41.0,31.0
+2019-05-13 10:00:00,,32.1,29.0
+2019-05-13 11:00:00,,20.6,27.0
+2019-05-13 12:00:00,,12.8,26.0
+2019-05-13 13:00:00,,9.6,24.0
+2019-05-13 14:00:00,,9.2,25.0
+2019-05-13 15:00:00,,10.1,26.0
+2019-05-13 16:00:00,,10.7,28.0
+2019-05-13 17:00:00,,10.6,29.0
+2019-05-13 18:00:00,,12.1,30.0
+2019-05-13 19:00:00,,13.0,30.0
+2019-05-13 20:00:00,,15.5,31.0
+2019-05-13 21:00:00,,23.9,31.0
+2019-05-13 22:00:00,,28.3,31.0
+2019-05-13 23:00:00,,30.4,31.0
+2019-05-14 00:00:00,,27.3,31.0
+2019-05-14 01:00:00,,22.8,23.0
+2019-05-14 02:00:00,,20.9,23.0
+2019-05-14 03:00:00,14.5,19.1,26.0
+2019-05-14 04:00:00,11.5,19.0,26.0
+2019-05-14 05:00:00,,22.1,30.0
+2019-05-14 06:00:00,,31.6,30.0
+2019-05-14 07:00:00,,38.6,33.0
+2019-05-14 08:00:00,,46.1,34.0
+2019-05-14 09:00:00,,41.3,33.0
+2019-05-14 10:00:00,,28.8,30.0
+2019-05-14 11:00:00,,19.0,31.0
+2019-05-14 12:00:00,,12.9,27.0
+2019-05-14 13:00:00,,11.3,25.0
+2019-05-14 14:00:00,,10.2,25.0
+2019-05-14 15:00:00,,11.0,25.0
+2019-05-14 16:00:00,,15.2,29.0
+2019-05-14 17:00:00,,13.4,32.0
+2019-05-14 18:00:00,,15.3,33.0
+2019-05-14 19:00:00,,17.7,30.0
+2019-05-14 20:00:00,,17.9,28.0
+2019-05-14 21:00:00,,23.3,27.0
+2019-05-14 22:00:00,,28.4,25.0
+2019-05-14 23:00:00,,29.0,26.0
+2019-05-15 00:00:00,,30.9,26.0
+2019-05-15 01:00:00,,24.3,22.0
+2019-05-15 02:00:00,,18.8,
+2019-05-15 03:00:00,25.5,17.2,22.0
+2019-05-15 04:00:00,22.5,16.8,22.0
+2019-05-15 05:00:00,,17.9,25.0
+2019-05-15 06:00:00,,28.9,25.0
+2019-05-15 07:00:00,,46.5,33.0
+2019-05-15 08:00:00,,48.1,33.0
+2019-05-15 09:00:00,,32.1,34.0
+2019-05-15 10:00:00,,25.7,35.0
+2019-05-15 11:00:00,,0.0,36.0
+2019-05-15 12:00:00,,0.0,35.0
+2019-05-15 13:00:00,,0.0,30.0
+2019-05-15 14:00:00,,9.4,31.0
+2019-05-15 15:00:00,,10.0,30.0
+2019-05-15 16:00:00,,11.9,38.0
+2019-05-15 17:00:00,,12.9,38.0
+2019-05-15 18:00:00,,12.2,33.0
+2019-05-15 19:00:00,,12.9,35.0
+2019-05-15 20:00:00,,16.5,33.0
+2019-05-15 21:00:00,,20.3,31.0
+2019-05-15 22:00:00,,30.1,32.0
+2019-05-15 23:00:00,,36.0,33.0
+2019-05-16 00:00:00,,44.1,33.0
+2019-05-16 01:00:00,,30.9,33.0
+2019-05-16 02:00:00,,27.4,33.0
+2019-05-16 03:00:00,28.0,26.0,28.0
+2019-05-16 04:00:00,,26.7,28.0
+2019-05-16 05:00:00,,27.9,26.0
+2019-05-16 06:00:00,,37.0,26.0
+2019-05-16 07:00:00,,52.6,33.0
+2019-05-16 08:00:00,,,34.0
+2019-05-16 09:00:00,,40.0,33.0
+2019-05-16 10:00:00,,39.4,32.0
+2019-05-16 11:00:00,,29.5,31.0
+2019-05-16 12:00:00,,13.5,33.0
+2019-05-16 13:00:00,,10.5,30.0
+2019-05-16 14:00:00,,9.2,27.0
+2019-05-16 15:00:00,,8.5,27.0
+2019-05-16 16:00:00,,8.1,26.0
+2019-05-16 17:00:00,,10.1,29.0
+2019-05-16 18:00:00,,10.3,30.0
+2019-05-16 19:00:00,,13.5,25.0
+2019-05-16 20:00:00,,15.9,27.0
+2019-05-16 21:00:00,,14.4,26.0
+2019-05-16 22:00:00,,24.8,25.0
+2019-05-16 23:00:00,,24.3,25.0
+2019-05-17 00:00:00,,37.1,25.0
+2019-05-17 01:00:00,,43.7,23.0
+2019-05-17 02:00:00,,46.3,23.0
+2019-05-17 03:00:00,,26.1,21.0
+2019-05-17 04:00:00,,24.6,21.0
+2019-05-17 05:00:00,,26.6,21.0
+2019-05-17 06:00:00,,28.4,21.0
+2019-05-17 07:00:00,,34.0,25.0
+2019-05-17 08:00:00,,46.3,27.0
+2019-05-17 09:00:00,,55.0,27.0
+2019-05-17 10:00:00,,57.5,29.0
+2019-05-17 11:00:00,,60.5,30.0
+2019-05-17 12:00:00,,51.5,30.0
+2019-05-17 13:00:00,,43.1,30.0
+2019-05-17 14:00:00,,46.5,29.0
+2019-05-17 15:00:00,,37.9,31.0
+2019-05-17 16:00:00,,27.0,32.0
+2019-05-17 17:00:00,,22.2,30.0
+2019-05-17 18:00:00,,20.7,29.0
+2019-05-17 19:00:00,,27.9,31.0
+2019-05-17 20:00:00,,33.6,36.0
+2019-05-17 21:00:00,,24.7,36.0
+2019-05-17 22:00:00,,23.5,36.0
+2019-05-17 23:00:00,,24.3,35.0
+2019-05-18 00:00:00,,28.2,35.0
+2019-05-18 01:00:00,,34.1,31.0
+2019-05-18 02:00:00,,31.5,31.0
+2019-05-18 03:00:00,41.5,37.4,31.0
+2019-05-18 04:00:00,,29.0,31.0
+2019-05-18 05:00:00,,16.1,29.0
+2019-05-18 06:00:00,,16.6,29.0
+2019-05-18 07:00:00,,20.1,27.0
+2019-05-18 08:00:00,,22.1,29.0
+2019-05-18 09:00:00,,27.4,35.0
+2019-05-18 10:00:00,,20.4,32.0
+2019-05-18 11:00:00,,21.1,35.0
+2019-05-18 12:00:00,,24.1,34.0
+2019-05-18 13:00:00,,17.5,38.0
+2019-05-18 14:00:00,,12.9,29.0
+2019-05-18 15:00:00,,10.5,27.0
+2019-05-18 16:00:00,,11.8,28.0
+2019-05-18 17:00:00,,13.0,30.0
+2019-05-18 18:00:00,,14.6,42.0
+2019-05-18 19:00:00,,12.8,42.0
+2019-05-18 20:00:00,35.5,14.5,36.0
+2019-05-18 21:00:00,35.5,67.5,35.0
+2019-05-18 22:00:00,40.0,36.2,41.0
+2019-05-18 23:00:00,39.0,59.3,46.0
+2019-05-19 00:00:00,34.5,62.5,46.0
+2019-05-19 01:00:00,29.5,50.2,49.0
+2019-05-19 02:00:00,23.5,49.6,49.0
+2019-05-19 03:00:00,22.5,34.9,49.0
+2019-05-19 04:00:00,19.0,38.1,49.0
+2019-05-19 05:00:00,19.0,36.4,49.0
+2019-05-19 06:00:00,21.0,39.4,49.0
+2019-05-19 07:00:00,26.0,40.9,38.0
+2019-05-19 08:00:00,30.5,31.1,36.0
+2019-05-19 09:00:00,30.0,32.4,33.0
+2019-05-19 10:00:00,23.5,31.7,30.0
+2019-05-19 11:00:00,16.0,33.0,27.0
+2019-05-19 12:00:00,17.5,31.0,28.0
+2019-05-19 13:00:00,17.0,32.6,25.0
+2019-05-19 14:00:00,16.0,27.9,27.0
+2019-05-19 15:00:00,14.5,21.0,31.0
+2019-05-19 16:00:00,23.0,23.8,29.0
+2019-05-19 17:00:00,33.0,31.7,28.0
+2019-05-19 18:00:00,17.5,32.5,27.0
+2019-05-19 19:00:00,18.5,33.9,29.0
+2019-05-19 20:00:00,15.5,32.7,30.0
+2019-05-19 21:00:00,26.0,51.2,32.0
+2019-05-19 22:00:00,15.0,35.6,32.0
+2019-05-19 23:00:00,12.5,23.2,32.0
+2019-05-20 00:00:00,18.5,22.2,32.0
+2019-05-20 01:00:00,16.5,18.8,28.0
+2019-05-20 02:00:00,26.0,16.4,28.0
+2019-05-20 03:00:00,17.0,12.8,32.0
+2019-05-20 04:00:00,10.5,12.1,32.0
+2019-05-20 05:00:00,9.0,12.6,26.0
+2019-05-20 06:00:00,14.0,14.9,26.0
+2019-05-20 07:00:00,20.0,25.2,31.0
+2019-05-20 08:00:00,26.0,40.1,31.0
+2019-05-20 09:00:00,38.0,46.9,29.0
+2019-05-20 10:00:00,40.0,46.1,29.0
+2019-05-20 11:00:00,30.5,45.5,28.0
+2019-05-20 12:00:00,25.0,43.9,28.0
+2019-05-20 13:00:00,25.0,35.4,28.0
+2019-05-20 14:00:00,34.5,23.8,29.0
+2019-05-20 15:00:00,32.0,23.7,32.0
+2019-05-20 16:00:00,24.5,27.5,32.0
+2019-05-20 17:00:00,25.5,26.5,29.0
+2019-05-20 18:00:00,,32.4,30.0
+2019-05-20 19:00:00,,24.6,33.0
+2019-05-20 20:00:00,,32.2,32.0
+2019-05-20 21:00:00,,21.3,32.0
+2019-05-20 22:00:00,,21.6,34.0
+2019-05-20 23:00:00,,20.3,47.0
+2019-05-21 00:00:00,,20.7,47.0
+2019-05-21 01:00:00,,19.6,35.0
+2019-05-21 02:00:00,,16.9,35.0
+2019-05-21 03:00:00,15.5,16.3,26.0
+2019-05-21 04:00:00,,17.7,26.0
+2019-05-21 05:00:00,,17.9,23.0
+2019-05-21 06:00:00,,18.5,23.0
+2019-05-21 07:00:00,,38.0,30.0
+2019-05-21 08:00:00,,62.6,27.0
+2019-05-21 09:00:00,,56.0,28.0
+2019-05-21 10:00:00,,54.2,29.0
+2019-05-21 11:00:00,,48.1,29.0
+2019-05-21 12:00:00,,30.4,26.0
+2019-05-21 13:00:00,,25.5,26.0
+2019-05-21 14:00:00,,30.5,28.0
+2019-05-21 15:00:00,,49.7,33.0
+2019-05-21 16:00:00,,47.8,34.0
+2019-05-21 17:00:00,,36.6,34.0
+2019-05-21 18:00:00,,42.3,37.0
+2019-05-21 19:00:00,,75.0,35.0
+2019-05-21 20:00:00,,54.3,40.0
+2019-05-21 21:00:00,,50.0,38.0
+2019-05-21 22:00:00,,40.8,33.0
+2019-05-21 23:00:00,,43.0,33.0
+2019-05-22 00:00:00,,33.2,33.0
+2019-05-22 01:00:00,,29.5,30.0
+2019-05-22 02:00:00,,27.1,30.0
+2019-05-22 03:00:00,20.5,27.9,27.0
+2019-05-22 04:00:00,,19.2,27.0
+2019-05-22 05:00:00,,25.2,21.0
+2019-05-22 06:00:00,,33.7,21.0
+2019-05-22 07:00:00,,45.1,28.0
+2019-05-22 08:00:00,,75.7,29.0
+2019-05-22 09:00:00,,75.4,31.0
+2019-05-22 10:00:00,,70.8,31.0
+2019-05-22 11:00:00,,63.1,31.0
+2019-05-22 12:00:00,,57.8,28.0
+2019-05-22 13:00:00,,42.6,25.0
+2019-05-22 14:00:00,,42.2,25.0
+2019-05-22 15:00:00,,38.5,28.0
+2019-05-22 16:00:00,,40.0,30.0
+2019-05-22 17:00:00,,33.2,32.0
+2019-05-22 18:00:00,,34.9,34.0
+2019-05-22 19:00:00,,36.1,34.0
+2019-05-22 20:00:00,,34.1,33.0
+2019-05-22 21:00:00,,36.2,33.0
+2019-05-22 22:00:00,,44.9,31.0
+2019-05-22 23:00:00,,37.7,32.0
+2019-05-23 00:00:00,,29.8,32.0
+2019-05-23 01:00:00,,62.1,23.0
+2019-05-23 02:00:00,,53.3,23.0
+2019-05-23 03:00:00,60.5,53.1,20.0
+2019-05-23 04:00:00,,66.6,20.0
+2019-05-23 05:00:00,,76.8,19.0
+2019-05-23 06:00:00,,71.9,19.0
+2019-05-23 07:00:00,,68.7,24.0
+2019-05-23 08:00:00,,79.6,26.0
+2019-05-23 09:00:00,,91.8,25.0
+2019-05-23 10:00:00,,97.0,23.0
+2019-05-23 11:00:00,,79.4,25.0
+2019-05-23 12:00:00,,28.3,24.0
+2019-05-23 13:00:00,,17.0,25.0
+2019-05-23 14:00:00,,16.4,28.0
+2019-05-23 15:00:00,,21.2,34.0
+2019-05-23 16:00:00,,17.2,38.0
+2019-05-23 17:00:00,,17.5,53.0
+2019-05-23 18:00:00,,17.8,60.0
+2019-05-23 19:00:00,,22.7,54.0
+2019-05-23 20:00:00,,23.5,51.0
+2019-05-23 21:00:00,,28.0,45.0
+2019-05-23 22:00:00,,33.8,44.0
+2019-05-23 23:00:00,,47.0,39.0
+2019-05-24 00:00:00,,61.9,39.0
+2019-05-24 01:00:00,,23.2,31.0
+2019-05-24 02:00:00,,32.8,
+2019-05-24 03:00:00,74.5,28.8,31.0
+2019-05-24 04:00:00,,28.4,31.0
+2019-05-24 05:00:00,,19.4,23.0
+2019-05-24 06:00:00,,28.1,23.0
+2019-05-24 07:00:00,,35.9,29.0
+2019-05-24 08:00:00,,40.7,28.0
+2019-05-24 09:00:00,,54.8,26.0
+2019-05-24 10:00:00,,45.9,24.0
+2019-05-24 11:00:00,,37.9,23.0
+2019-05-24 12:00:00,,28.6,26.0
+2019-05-24 13:00:00,,40.6,29.0
+2019-05-24 14:00:00,,29.3,33.0
+2019-05-24 15:00:00,,24.3,39.0
+2019-05-24 16:00:00,,20.5,40.0
+2019-05-24 17:00:00,,22.7,43.0
+2019-05-24 18:00:00,,27.3,46.0
+2019-05-24 19:00:00,,25.2,46.0
+2019-05-24 20:00:00,,23.3,44.0
+2019-05-24 21:00:00,,21.9,42.0
+2019-05-24 22:00:00,,31.7,38.0
+2019-05-24 23:00:00,,18.1,39.0
+2019-05-25 00:00:00,,18.0,39.0
+2019-05-25 01:00:00,,16.5,32.0
+2019-05-25 02:00:00,,17.4,32.0
+2019-05-25 03:00:00,29.0,12.8,25.0
+2019-05-25 04:00:00,,20.3,25.0
+2019-05-25 05:00:00,,,21.0
+2019-05-25 06:00:00,,,21.0
+2019-05-25 07:00:00,,,22.0
+2019-05-25 08:00:00,,36.9,22.0
+2019-05-25 09:00:00,,42.1,23.0
+2019-05-25 10:00:00,,44.5,23.0
+2019-05-25 11:00:00,,33.6,21.0
+2019-05-25 12:00:00,,26.3,23.0
+2019-05-25 13:00:00,,19.5,24.0
+2019-05-25 14:00:00,,18.6,26.0
+2019-05-25 15:00:00,,26.1,31.0
+2019-05-25 16:00:00,,23.6,37.0
+2019-05-25 17:00:00,,30.0,42.0
+2019-05-25 18:00:00,,31.9,46.0
+2019-05-25 19:00:00,,20.6,47.0
+2019-05-25 20:00:00,,30.4,47.0
+2019-05-25 21:00:00,,22.1,44.0
+2019-05-25 22:00:00,,43.6,41.0
+2019-05-25 23:00:00,,39.5,36.0
+2019-05-26 00:00:00,,63.9,36.0
+2019-05-26 01:00:00,,70.2,32.0
+2019-05-26 02:00:00,,67.0,32.0
+2019-05-26 03:00:00,53.0,49.8,26.0
+2019-05-26 04:00:00,,23.4,26.0
+2019-05-26 05:00:00,,22.9,20.0
+2019-05-26 06:00:00,,22.3,20.0
+2019-05-26 07:00:00,,16.8,17.0
+2019-05-26 08:00:00,,15.1,17.0
+2019-05-26 09:00:00,,13.4,15.0
+2019-05-26 10:00:00,,11.0,15.0
+2019-05-26 11:00:00,,10.3,16.0
+2019-05-26 12:00:00,,11.3,17.0
+2019-05-26 13:00:00,,13.3,21.0
+2019-05-26 14:00:00,,11.5,24.0
+2019-05-26 15:00:00,,12.5,25.0
+2019-05-26 16:00:00,,15.3,26.0
+2019-05-26 17:00:00,,11.7,27.0
+2019-05-26 18:00:00,,17.1,26.0
+2019-05-26 19:00:00,,17.3,28.0
+2019-05-26 20:00:00,,22.8,26.0
+2019-05-26 21:00:00,,17.8,25.0
+2019-05-26 22:00:00,,16.6,27.0
+2019-05-26 23:00:00,,16.1,26.0
+2019-05-27 00:00:00,,15.2,26.0
+2019-05-27 01:00:00,,10.3,26.0
+2019-05-27 02:00:00,,9.5,26.0
+2019-05-27 03:00:00,10.5,7.1,24.0
+2019-05-27 04:00:00,,5.9,24.0
+2019-05-27 05:00:00,,4.8,19.0
+2019-05-27 06:00:00,,6.5,19.0
+2019-05-27 07:00:00,,20.3,18.0
+2019-05-27 08:00:00,,29.1,18.0
+2019-05-27 09:00:00,,29.5,18.0
+2019-05-27 10:00:00,,34.2,18.0
+2019-05-27 11:00:00,,31.4,16.0
+2019-05-27 12:00:00,,23.3,17.0
+2019-05-27 13:00:00,,19.3,17.0
+2019-05-27 14:00:00,,17.3,20.0
+2019-05-27 15:00:00,,17.5,20.0
+2019-05-27 16:00:00,,17.3,22.0
+2019-05-27 17:00:00,,25.6,22.0
+2019-05-27 18:00:00,,23.6,22.0
+2019-05-27 19:00:00,,22.9,22.0
+2019-05-27 20:00:00,,25.6,22.0
+2019-05-27 21:00:00,,22.1,23.0
+2019-05-27 22:00:00,,22.3,20.0
+2019-05-27 23:00:00,,18.8,19.0
+2019-05-28 00:00:00,,19.9,19.0
+2019-05-28 01:00:00,,22.6,16.0
+2019-05-28 02:00:00,,15.4,16.0
+2019-05-28 03:00:00,11.0,8.2,16.0
+2019-05-28 04:00:00,,6.4,16.0
+2019-05-28 05:00:00,,6.1,15.0
+2019-05-28 06:00:00,,8.9,15.0
+2019-05-28 07:00:00,,19.9,19.0
+2019-05-28 08:00:00,,28.8,20.0
+2019-05-28 09:00:00,,33.8,20.0
+2019-05-28 10:00:00,,31.2,20.0
+2019-05-28 11:00:00,,24.3,21.0
+2019-05-28 12:00:00,,21.6,21.0
+2019-05-28 13:00:00,,20.5,28.0
+2019-05-28 14:00:00,,24.8,27.0
+2019-05-28 15:00:00,,18.5,29.0
+2019-05-28 16:00:00,,18.8,30.0
+2019-05-28 17:00:00,,25.0,27.0
+2019-05-28 18:00:00,,26.5,25.0
+2019-05-28 19:00:00,,20.8,29.0
+2019-05-28 20:00:00,,16.2,29.0
+2019-05-28 21:00:00,,18.5,29.0
+2019-05-28 22:00:00,,20.4,31.0
+2019-05-28 23:00:00,,20.4,
+2019-05-29 00:00:00,,20.2,25.0
+2019-05-29 01:00:00,,25.3,26.0
+2019-05-29 02:00:00,,23.4,26.0
+2019-05-29 03:00:00,21.0,21.6,23.0
+2019-05-29 04:00:00,,19.0,23.0
+2019-05-29 05:00:00,,20.3,21.0
+2019-05-29 06:00:00,,24.1,21.0
+2019-05-29 07:00:00,,36.7,24.0
+2019-05-29 08:00:00,,46.5,22.0
+2019-05-29 09:00:00,,50.5,21.0
+2019-05-29 10:00:00,,45.7,18.0
+2019-05-29 11:00:00,,34.5,18.0
+2019-05-29 12:00:00,,30.7,18.0
+2019-05-29 13:00:00,,22.0,20.0
+2019-05-29 14:00:00,,13.2,13.0
+2019-05-29 15:00:00,,17.8,15.0
+2019-05-29 16:00:00,,0.0,5.0
+2019-05-29 17:00:00,,0.0,3.0
+2019-05-29 18:00:00,,20.1,5.0
+2019-05-29 19:00:00,,22.9,5.0
+2019-05-29 20:00:00,,25.3,5.0
+2019-05-29 21:00:00,,24.1,6.0
+2019-05-29 22:00:00,,20.8,6.0
+2019-05-29 23:00:00,,16.9,5.0
+2019-05-30 00:00:00,,19.0,5.0
+2019-05-30 01:00:00,,19.9,1.0
+2019-05-30 02:00:00,,19.4,1.0
+2019-05-30 03:00:00,7.5,12.4,0.0
+2019-05-30 04:00:00,,9.4,0.0
+2019-05-30 05:00:00,,10.6,0.0
+2019-05-30 06:00:00,,10.4,0.0
+2019-05-30 07:00:00,,12.2,0.0
+2019-05-30 08:00:00,,13.3,2.0
+2019-05-30 09:00:00,,18.3,3.0
+2019-05-30 10:00:00,,16.7,5.0
+2019-05-30 11:00:00,,15.1,9.0
+2019-05-30 12:00:00,,13.8,13.0
+2019-05-30 13:00:00,,14.9,17.0
+2019-05-30 14:00:00,,14.2,20.0
+2019-05-30 15:00:00,,16.1,22.0
+2019-05-30 16:00:00,,14.9,22.0
+2019-05-30 17:00:00,,13.0,27.0
+2019-05-30 18:00:00,,12.8,30.0
+2019-05-30 19:00:00,,20.4,28.0
+2019-05-30 20:00:00,,22.1,28.0
+2019-05-30 21:00:00,,22.9,27.0
+2019-05-30 22:00:00,,21.9,27.0
+2019-05-30 23:00:00,,26.9,23.0
+2019-05-31 00:00:00,,27.0,23.0
+2019-05-31 01:00:00,,29.6,18.0
+2019-05-31 02:00:00,,27.2,18.0
+2019-05-31 03:00:00,9.0,36.9,12.0
+2019-05-31 04:00:00,,44.1,12.0
+2019-05-31 05:00:00,,40.1,9.0
+2019-05-31 06:00:00,,31.1,9.0
+2019-05-31 07:00:00,,37.2,8.0
+2019-05-31 08:00:00,,38.6,9.0
+2019-05-31 09:00:00,,47.4,8.0
+2019-05-31 10:00:00,,36.6,37.0
+2019-05-31 11:00:00,,19.6,15.0
+2019-05-31 12:00:00,,17.2,16.0
+2019-05-31 13:00:00,,15.1,18.0
+2019-05-31 14:00:00,,13.3,21.0
+2019-05-31 15:00:00,,13.8,21.0
+2019-05-31 16:00:00,,15.4,24.0
+2019-05-31 17:00:00,,15.4,26.0
+2019-05-31 18:00:00,,16.3,26.0
+2019-05-31 19:00:00,,20.5,29.0
+2019-05-31 20:00:00,,25.2,33.0
+2019-05-31 21:00:00,,23.3,33.0
+2019-05-31 22:00:00,,37.0,31.0
+2019-05-31 23:00:00,,60.2,26.0
+2019-06-01 00:00:00,,68.0,26.0
+2019-06-01 01:00:00,,81.7,22.0
+2019-06-01 02:00:00,,84.7,22.0
+2019-06-01 03:00:00,52.5,74.8,16.0
+2019-06-01 04:00:00,,68.1,16.0
+2019-06-01 05:00:00,,,11.0
+2019-06-01 06:00:00,,,11.0
+2019-06-01 07:00:00,,,4.0
+2019-06-01 08:00:00,,44.6,2.0
+2019-06-01 09:00:00,,46.4,8.0
+2019-06-01 10:00:00,,33.3,9.0
+2019-06-01 11:00:00,,23.9,12.0
+2019-06-01 12:00:00,,13.8,19.0
+2019-06-01 13:00:00,,12.2,28.0
+2019-06-01 14:00:00,,10.4,33.0
+2019-06-01 15:00:00,,10.2,36.0
+2019-06-01 16:00:00,,10.0,33.0
+2019-06-01 17:00:00,,10.2,31.0
+2019-06-01 18:00:00,,11.8,32.0
+2019-06-01 19:00:00,,11.8,36.0
+2019-06-01 20:00:00,,14.5,38.0
+2019-06-01 21:00:00,,24.6,41.0
+2019-06-01 22:00:00,,43.6,44.0
+2019-06-01 23:00:00,,49.4,52.0
+2019-06-02 00:00:00,,48.1,52.0
+2019-06-02 01:00:00,,32.7,44.0
+2019-06-02 02:00:00,,38.1,44.0
+2019-06-02 03:00:00,,38.2,43.0
+2019-06-02 04:00:00,,39.2,43.0
+2019-06-02 05:00:00,,23.2,37.0
+2019-06-02 06:00:00,,24.5,37.0
+2019-06-02 07:00:00,,37.2,32.0
+2019-06-02 08:00:00,,24.1,32.0
+2019-06-02 09:00:00,,18.1,30.0
+2019-06-02 10:00:00,,19.5,32.0
+2019-06-02 11:00:00,,21.0,35.0
+2019-06-02 12:00:00,,18.1,36.0
+2019-06-02 13:00:00,,13.1,35.0
+2019-06-02 14:00:00,,11.5,34.0
+2019-06-02 15:00:00,,13.0,36.0
+2019-06-02 16:00:00,,15.0,33.0
+2019-06-02 17:00:00,,13.9,32.0
+2019-06-02 18:00:00,,14.4,32.0
+2019-06-02 19:00:00,,14.4,34.0
+2019-06-02 20:00:00,,15.6,34.0
+2019-06-02 21:00:00,,25.8,32.0
+2019-06-02 22:00:00,,40.9,28.0
+2019-06-02 23:00:00,,36.9,27.0
+2019-06-03 00:00:00,,27.6,27.0
+2019-06-03 01:00:00,,17.9,21.0
+2019-06-03 02:00:00,,15.7,21.0
+2019-06-03 03:00:00,,11.8,11.0
+2019-06-03 04:00:00,,11.7,11.0
+2019-06-03 05:00:00,,9.8,3.0
+2019-06-03 06:00:00,,11.4,3.0
+2019-06-03 07:00:00,,29.0,5.0
+2019-06-03 08:00:00,,44.1,6.0
+2019-06-03 09:00:00,,50.0,7.0
+2019-06-03 10:00:00,,43.9,5.0
+2019-06-03 11:00:00,,46.0,11.0
+2019-06-03 12:00:00,,31.7,16.0
+2019-06-03 13:00:00,,27.5,14.0
+2019-06-03 14:00:00,,22.1,15.0
+2019-06-03 15:00:00,,25.8,17.0
+2019-06-03 16:00:00,,23.2,21.0
+2019-06-03 17:00:00,,24.8,22.0
+2019-06-03 18:00:00,,25.3,24.0
+2019-06-03 19:00:00,,24.4,24.0
+2019-06-03 20:00:00,,23.1,23.0
+2019-06-03 21:00:00,,28.9,20.0
+2019-06-03 22:00:00,,33.0,20.0
+2019-06-03 23:00:00,,31.1,17.0
+2019-06-04 00:00:00,,30.5,17.0
+2019-06-04 01:00:00,,44.6,12.0
+2019-06-04 02:00:00,,52.4,12.0
+2019-06-04 03:00:00,,43.9,8.0
+2019-06-04 04:00:00,,35.0,8.0
+2019-06-04 05:00:00,,41.6,5.0
+2019-06-04 06:00:00,,28.8,5.0
+2019-06-04 07:00:00,,36.5,14.0
+2019-06-04 08:00:00,,47.7,18.0
+2019-06-04 09:00:00,,53.5,22.0
+2019-06-04 10:00:00,,50.8,35.0
+2019-06-04 11:00:00,,38.5,31.0
+2019-06-04 12:00:00,,23.3,32.0
+2019-06-04 13:00:00,,19.6,35.0
+2019-06-04 14:00:00,,17.7,37.0
+2019-06-04 15:00:00,,17.4,36.0
+2019-06-04 16:00:00,,18.1,38.0
+2019-06-04 17:00:00,,21.5,38.0
+2019-06-04 18:00:00,,26.3,40.0
+2019-06-04 19:00:00,,23.4,29.0
+2019-06-04 20:00:00,,25.2,20.0
+2019-06-04 21:00:00,,17.0,18.0
+2019-06-04 22:00:00,,16.9,17.0
+2019-06-04 23:00:00,,26.3,17.0
+2019-06-05 00:00:00,,33.5,17.0
+2019-06-05 01:00:00,,17.8,13.0
+2019-06-05 02:00:00,,15.7,13.0
+2019-06-05 03:00:00,15.0,10.8,4.0
+2019-06-05 04:00:00,,12.4,4.0
+2019-06-05 05:00:00,,16.2,6.0
+2019-06-05 06:00:00,,24.5,6.0
+2019-06-05 07:00:00,,39.2,2.0
+2019-06-05 08:00:00,,35.8,1.0
+2019-06-05 09:00:00,,36.9,0.0
+2019-06-05 10:00:00,,35.3,0.0
+2019-06-05 11:00:00,,36.8,5.0
+2019-06-05 12:00:00,,42.1,7.0
+2019-06-05 13:00:00,,59.0,9.0
+2019-06-05 14:00:00,,47.2,14.0
+2019-06-05 15:00:00,,33.6,20.0
+2019-06-05 16:00:00,,38.3,20.0
+2019-06-05 17:00:00,,53.5,19.0
+2019-06-05 18:00:00,,37.9,19.0
+2019-06-05 19:00:00,,48.8,19.0
+2019-06-05 20:00:00,,40.8,19.0
+2019-06-05 21:00:00,,37.8,19.0
+2019-06-05 22:00:00,,37.5,19.0
+2019-06-05 23:00:00,,33.7,17.0
+2019-06-06 00:00:00,,30.3,17.0
+2019-06-06 01:00:00,,31.8,8.0
+2019-06-06 02:00:00,,23.8,
+2019-06-06 03:00:00,,18.0,4.0
+2019-06-06 04:00:00,,15.2,4.0
+2019-06-06 05:00:00,,19.2,0.0
+2019-06-06 06:00:00,,28.4,0.0
+2019-06-06 07:00:00,,40.3,1.0
+2019-06-06 08:00:00,,40.5,3.0
+2019-06-06 09:00:00,,43.1,0.0
+2019-06-06 10:00:00,,36.0,1.0
+2019-06-06 11:00:00,,26.0,7.0
+2019-06-06 12:00:00,,21.2,7.0
+2019-06-06 13:00:00,,16.4,12.0
+2019-06-06 14:00:00,,16.5,10.0
+2019-06-06 15:00:00,,16.0,11.0
+2019-06-06 16:00:00,,15.1,16.0
+2019-06-06 17:00:00,,,22.0
+2019-06-06 18:00:00,,,24.0
+2019-06-06 19:00:00,,,24.0
+2019-06-06 20:00:00,,,24.0
+2019-06-06 21:00:00,,,22.0
+2019-06-06 22:00:00,,,24.0
+2019-06-06 23:00:00,,,21.0
+2019-06-07 00:00:00,,,21.0
+2019-06-07 01:00:00,,,23.0
+2019-06-07 02:00:00,,,23.0
+2019-06-07 03:00:00,,,27.0
+2019-06-07 04:00:00,,,27.0
+2019-06-07 05:00:00,,,23.0
+2019-06-07 06:00:00,,,23.0
+2019-06-07 07:00:00,,,25.0
+2019-06-07 08:00:00,,28.9,23.0
+2019-06-07 09:00:00,,23.0,24.0
+2019-06-07 10:00:00,,29.3,25.0
+2019-06-07 11:00:00,,34.5,23.0
+2019-06-07 12:00:00,,32.1,25.0
+2019-06-07 13:00:00,,26.7,27.0
+2019-06-07 14:00:00,,17.8,20.0
+2019-06-07 15:00:00,,15.0,15.0
+2019-06-07 16:00:00,,13.1,15.0
+2019-06-07 17:00:00,,15.6,21.0
+2019-06-07 18:00:00,,19.5,24.0
+2019-06-07 19:00:00,,19.5,27.0
+2019-06-07 20:00:00,,19.1,35.0
+2019-06-07 21:00:00,,19.9,36.0
+2019-06-07 22:00:00,,19.4,35.0
+2019-06-07 23:00:00,,16.3,
+2019-06-08 00:00:00,,14.7,33.0
+2019-06-08 01:00:00,,14.4,28.0
+2019-06-08 02:00:00,,11.3,
+2019-06-08 03:00:00,,9.6,7.0
+2019-06-08 04:00:00,,8.4,7.0
+2019-06-08 05:00:00,,9.8,3.0
+2019-06-08 06:00:00,,10.7,3.0
+2019-06-08 07:00:00,,14.1,2.0
+2019-06-08 08:00:00,,13.8,3.0
+2019-06-08 09:00:00,,14.0,4.0
+2019-06-08 10:00:00,,13.0,2.0
+2019-06-08 11:00:00,,11.7,3.0
+2019-06-08 12:00:00,,10.3,4.0
+2019-06-08 13:00:00,,10.4,8.0
+2019-06-08 14:00:00,,9.2,10.0
+2019-06-08 15:00:00,,11.1,13.0
+2019-06-08 16:00:00,,10.3,17.0
+2019-06-08 17:00:00,,11.7,19.0
+2019-06-08 18:00:00,,14.1,20.0
+2019-06-08 19:00:00,,14.8,20.0
+2019-06-08 20:00:00,,22.0,19.0
+2019-06-08 21:00:00,,,17.0
+2019-06-08 22:00:00,,,16.0
+2019-06-08 23:00:00,,36.7,
+2019-06-09 00:00:00,,34.8,20.0
+2019-06-09 01:00:00,,47.0,10.0
+2019-06-09 02:00:00,,55.9,10.0
+2019-06-09 03:00:00,10.0,41.0,7.0
+2019-06-09 04:00:00,,51.2,7.0
+2019-06-09 05:00:00,,51.5,1.0
+2019-06-09 06:00:00,,43.0,1.0
+2019-06-09 07:00:00,,42.2,5.0
+2019-06-09 08:00:00,,36.7,1.0
+2019-06-09 09:00:00,,32.7,0.0
+2019-06-09 10:00:00,,30.2,0.0
+2019-06-09 11:00:00,,25.0,2.0
+2019-06-09 12:00:00,,16.6,5.0
+2019-06-09 13:00:00,,14.6,8.0
+2019-06-09 14:00:00,,14.6,13.0
+2019-06-09 15:00:00,,10.2,17.0
+2019-06-09 16:00:00,,7.9,19.0
+2019-06-09 17:00:00,,7.2,24.0
+2019-06-09 18:00:00,,10.3,26.0
+2019-06-09 19:00:00,,13.0,20.0
+2019-06-09 20:00:00,,19.5,21.0
+2019-06-09 21:00:00,,30.6,21.0
+2019-06-09 22:00:00,,33.2,22.0
+2019-06-09 23:00:00,,30.9,
+2019-06-10 00:00:00,,37.1,24.0
+2019-06-10 01:00:00,,39.9,21.0
+2019-06-10 02:00:00,,28.1,21.0
+2019-06-10 03:00:00,18.5,19.3,25.0
+2019-06-10 04:00:00,,17.8,25.0
+2019-06-10 05:00:00,,18.0,24.0
+2019-06-10 06:00:00,,13.7,24.0
+2019-06-10 07:00:00,,21.3,24.0
+2019-06-10 08:00:00,,26.7,22.0
+2019-06-10 09:00:00,,23.0,27.0
+2019-06-10 10:00:00,,16.9,34.0
+2019-06-10 11:00:00,,18.5,45.0
+2019-06-10 12:00:00,,14.1,41.0
+2019-06-10 13:00:00,,12.2,45.0
+2019-06-10 14:00:00,,11.7,51.0
+2019-06-10 15:00:00,,9.6,40.0
+2019-06-10 16:00:00,,9.5,40.0
+2019-06-10 17:00:00,,11.7,31.0
+2019-06-10 18:00:00,,15.1,28.0
+2019-06-10 19:00:00,,19.1,26.0
+2019-06-10 20:00:00,,18.4,25.0
+2019-06-10 21:00:00,,22.3,26.0
+2019-06-10 22:00:00,,22.6,24.0
+2019-06-10 23:00:00,,23.5,23.0
+2019-06-11 00:00:00,,24.8,23.0
+2019-06-11 01:00:00,,24.1,15.0
+2019-06-11 02:00:00,,19.6,15.0
+2019-06-11 03:00:00,7.5,19.1,16.0
+2019-06-11 04:00:00,,29.6,16.0
+2019-06-11 05:00:00,,32.3,13.0
+2019-06-11 06:00:00,,52.7,13.0
+2019-06-11 07:00:00,,58.7,17.0
+2019-06-11 08:00:00,,55.4,18.0
+2019-06-11 09:00:00,,58.0,21.0
+2019-06-11 10:00:00,,43.6,23.0
+2019-06-11 11:00:00,,31.7,22.0
+2019-06-11 12:00:00,,22.1,22.0
+2019-06-11 13:00:00,,17.3,23.0
+2019-06-11 14:00:00,,12.6,26.0
+2019-06-11 15:00:00,,13.1,35.0
+2019-06-11 16:00:00,,16.6,31.0
+2019-06-11 17:00:00,,19.8,31.0
+2019-06-11 18:00:00,,22.6,30.0
+2019-06-11 19:00:00,,35.5,31.0
+2019-06-11 20:00:00,,44.6,30.0
+2019-06-11 21:00:00,,36.1,22.0
+2019-06-11 22:00:00,,42.7,22.0
+2019-06-11 23:00:00,,54.1,20.0
+2019-06-12 00:00:00,,59.4,20.0
+2019-06-12 01:00:00,,41.5,15.0
+2019-06-12 02:00:00,,37.2,
+2019-06-12 03:00:00,21.0,41.9,
+2019-06-12 04:00:00,,34.7,11.0
+2019-06-12 05:00:00,,36.3,9.0
+2019-06-12 06:00:00,,44.9,9.0
+2019-06-12 07:00:00,,42.7,12.0
+2019-06-12 08:00:00,,38.4,17.0
+2019-06-12 09:00:00,,44.4,20.0
+2019-06-12 10:00:00,,35.5,22.0
+2019-06-12 11:00:00,,26.7,25.0
+2019-06-12 12:00:00,,0.0,35.0
+2019-06-12 13:00:00,,0.0,33.0
+2019-06-12 14:00:00,,15.4,33.0
+2019-06-12 15:00:00,,17.9,35.0
+2019-06-12 16:00:00,,20.3,42.0
+2019-06-12 17:00:00,,16.8,45.0
+2019-06-12 18:00:00,,23.6,43.0
+2019-06-12 19:00:00,,24.2,45.0
+2019-06-12 20:00:00,,25.3,33.0
+2019-06-12 21:00:00,,23.4,41.0
+2019-06-12 22:00:00,,29.2,43.0
+2019-06-12 23:00:00,,29.3,
+2019-06-13 00:00:00,,25.6,35.0
+2019-06-13 01:00:00,,26.9,29.0
+2019-06-13 02:00:00,,20.0,
+2019-06-13 03:00:00,28.5,18.7,26.0
+2019-06-13 04:00:00,,18.0,26.0
+2019-06-13 05:00:00,,18.8,16.0
+2019-06-13 06:00:00,,24.6,16.0
+2019-06-13 07:00:00,,37.0,19.0
+2019-06-13 08:00:00,,39.8,21.0
+2019-06-13 09:00:00,,40.9,19.0
+2019-06-13 10:00:00,,35.3,16.0
+2019-06-13 11:00:00,,30.2,18.0
+2019-06-13 12:00:00,,24.5,19.0
+2019-06-13 13:00:00,,22.7,19.0
+2019-06-13 14:00:00,,17.9,16.0
+2019-06-13 15:00:00,,18.2,15.0
+2019-06-13 16:00:00,,19.4,13.0
+2019-06-13 17:00:00,,28.8,11.0
+2019-06-13 18:00:00,,36.1,15.0
+2019-06-13 19:00:00,,38.2,14.0
+2019-06-13 20:00:00,,24.0,13.0
+2019-06-13 21:00:00,,27.5,14.0
+2019-06-13 22:00:00,,31.5,15.0
+2019-06-13 23:00:00,,58.8,15.0
+2019-06-14 00:00:00,,77.9,15.0
+2019-06-14 01:00:00,,78.3,13.0
+2019-06-14 02:00:00,,74.2,
+2019-06-14 03:00:00,,68.1,8.0
+2019-06-14 04:00:00,,66.6,8.0
+2019-06-14 05:00:00,,48.5,6.0
+2019-06-14 06:00:00,,37.9,6.0
+2019-06-14 07:00:00,,49.3,13.0
+2019-06-14 08:00:00,,64.3,11.0
+2019-06-14 09:00:00,,51.5,11.0
+2019-06-14 10:00:00,,34.3,14.0
+2019-06-14 11:00:00,36.5,27.9,13.0
+2019-06-14 12:00:00,,25.1,13.0
+2019-06-14 13:00:00,,21.8,15.0
+2019-06-14 14:00:00,,17.1,16.0
+2019-06-14 15:00:00,,15.4,22.0
+2019-06-14 16:00:00,,14.2,25.0
+2019-06-14 17:00:00,,15.2,25.0
+2019-06-14 18:00:00,,18.9,26.0
+2019-06-14 19:00:00,,16.6,27.0
+2019-06-14 20:00:00,,19.0,26.0
+2019-06-14 21:00:00,,25.0,26.0
+2019-06-14 22:00:00,,41.9,25.0
+2019-06-14 23:00:00,,55.0,26.0
+2019-06-15 00:00:00,,35.3,26.0
+2019-06-15 01:00:00,,32.1,26.0
+2019-06-15 02:00:00,,29.6,
+2019-06-15 03:00:00,17.5,29.0,
+2019-06-15 04:00:00,,33.9,
+2019-06-15 05:00:00,,,10.0
+2019-06-15 06:00:00,,,10.0
+2019-06-15 07:00:00,,,13.0
+2019-06-15 08:00:00,,35.8,13.0
+2019-06-15 09:00:00,,24.1,8.0
+2019-06-15 10:00:00,,17.6,8.0
+2019-06-15 11:00:00,,14.0,12.0
+2019-06-15 12:00:00,,12.1,14.0
+2019-06-15 13:00:00,,11.1,13.0
+2019-06-15 14:00:00,,9.4,18.0
+2019-06-15 15:00:00,,9.0,17.0
+2019-06-15 16:00:00,,9.6,18.0
+2019-06-15 17:00:00,,10.5,18.0
+2019-06-15 18:00:00,,10.7,20.0
+2019-06-15 19:00:00,,11.1,22.0
+2019-06-15 20:00:00,,14.0,22.0
+2019-06-15 21:00:00,,14.2,21.0
+2019-06-15 22:00:00,,15.2,20.0
+2019-06-15 23:00:00,,17.2,19.0
+2019-06-16 00:00:00,,20.1,19.0
+2019-06-16 01:00:00,,22.6,15.0
+2019-06-16 02:00:00,,16.5,15.0
+2019-06-16 03:00:00,42.5,12.8,12.0
+2019-06-16 04:00:00,,11.4,12.0
+2019-06-16 05:00:00,,11.2,10.0
+2019-06-16 06:00:00,,11.7,10.0
+2019-06-16 07:00:00,,14.0,8.0
+2019-06-16 08:00:00,,11.6,5.0
+2019-06-16 09:00:00,,10.2,4.0
+2019-06-16 10:00:00,,9.9,5.0
+2019-06-16 11:00:00,,9.4,6.0
+2019-06-16 12:00:00,,8.7,6.0
+2019-06-16 13:00:00,,12.9,10.0
+2019-06-16 14:00:00,,11.2,16.0
+2019-06-16 15:00:00,,8.7,23.0
+2019-06-16 16:00:00,,8.1,26.0
+2019-06-16 17:00:00,,8.4,29.0
+2019-06-16 18:00:00,,9.2,29.0
+2019-06-16 19:00:00,,11.8,28.0
+2019-06-16 20:00:00,,12.3,28.0
+2019-06-16 21:00:00,,14.4,27.0
+2019-06-16 22:00:00,,23.3,25.0
+2019-06-16 23:00:00,,42.7,
+2019-06-17 00:00:00,,56.6,23.0
+2019-06-17 01:00:00,,67.3,17.0
+2019-06-17 02:00:00,,69.3,17.0
+2019-06-17 03:00:00,42.0,58.8,14.0
+2019-06-17 04:00:00,35.5,53.1,14.0
+2019-06-17 05:00:00,36.0,49.1,11.0
+2019-06-17 06:00:00,39.5,45.7,11.0
+2019-06-17 07:00:00,42.5,44.8,12.0
+2019-06-17 08:00:00,43.5,52.3,13.0
+2019-06-17 09:00:00,45.0,54.4,13.0
+2019-06-17 10:00:00,41.0,51.6,11.0
+2019-06-17 11:00:00,,30.4,11.0
+2019-06-17 12:00:00,,16.0,11.0
+2019-06-17 13:00:00,,15.2,
+2019-06-17 14:00:00,,10.1,
+2019-06-17 15:00:00,,9.6,
+2019-06-17 16:00:00,,11.5,
+2019-06-17 17:00:00,,13.1,
+2019-06-17 18:00:00,,11.9,
+2019-06-17 19:00:00,,14.9,
+2019-06-17 20:00:00,,15.4,
+2019-06-17 21:00:00,,15.2,
+2019-06-17 22:00:00,,20.5,
+2019-06-17 23:00:00,,38.3,
+2019-06-18 00:00:00,,51.0,
+2019-06-18 01:00:00,,73.3,
+2019-06-18 02:00:00,,66.2,
+2019-06-18 03:00:00,,60.1,
+2019-06-18 04:00:00,,39.8,
+2019-06-18 05:00:00,,45.5,
+2019-06-18 06:00:00,,26.5,
+2019-06-18 07:00:00,,33.8,
+2019-06-18 08:00:00,,51.4,
+2019-06-18 09:00:00,,52.6,
+2019-06-18 10:00:00,,49.6,
+2019-06-18 21:00:00,,15.3,
+2019-06-18 22:00:00,,17.0,
+2019-06-18 23:00:00,,23.1,
+2019-06-19 00:00:00,,39.3,
+2019-06-19 11:00:00,,27.3,
+2019-06-19 12:00:00,,26.6,
+2019-06-20 15:00:00,,19.4,
+2019-06-20 16:00:00,,20.1,
+2019-06-20 17:00:00,,19.3,
+2019-06-20 18:00:00,,19.0,
+2019-06-20 19:00:00,,23.2,
+2019-06-20 20:00:00,,23.9,
+2019-06-20 21:00:00,,25.3,
+2019-06-20 22:00:00,,21.4,
+2019-06-20 23:00:00,,24.9,
+2019-06-21 00:00:00,,26.5,
+2019-06-21 01:00:00,,21.8,
+2019-06-21 02:00:00,,20.0,
diff --git a/doc/data/air_quality_no2_long.csv b/doc/data/air_quality_no2_long.csv
new file mode 100644
index 0000000000000..5d959370b7d48
--- /dev/null
+++ b/doc/data/air_quality_no2_long.csv
@@ -0,0 +1,2069 @@
+city,country,date.utc,location,parameter,value,unit
+Paris,FR,2019-06-21 00:00:00+00:00,FR04014,no2,20.0,µg/m³
+Paris,FR,2019-06-20 23:00:00+00:00,FR04014,no2,21.8,µg/m³
+Paris,FR,2019-06-20 22:00:00+00:00,FR04014,no2,26.5,µg/m³
+Paris,FR,2019-06-20 21:00:00+00:00,FR04014,no2,24.9,µg/m³
+Paris,FR,2019-06-20 20:00:00+00:00,FR04014,no2,21.4,µg/m³
+Paris,FR,2019-06-20 19:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-06-20 18:00:00+00:00,FR04014,no2,23.9,µg/m³
+Paris,FR,2019-06-20 17:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-06-20 16:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-06-20 15:00:00+00:00,FR04014,no2,19.3,µg/m³
+Paris,FR,2019-06-20 14:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-06-20 13:00:00+00:00,FR04014,no2,19.4,µg/m³
+Paris,FR,2019-06-19 10:00:00+00:00,FR04014,no2,26.6,µg/m³
+Paris,FR,2019-06-19 09:00:00+00:00,FR04014,no2,27.3,µg/m³
+Paris,FR,2019-06-18 22:00:00+00:00,FR04014,no2,39.3,µg/m³
+Paris,FR,2019-06-18 21:00:00+00:00,FR04014,no2,23.1,µg/m³
+Paris,FR,2019-06-18 20:00:00+00:00,FR04014,no2,17.0,µg/m³
+Paris,FR,2019-06-18 19:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-06-18 08:00:00+00:00,FR04014,no2,49.6,µg/m³
+Paris,FR,2019-06-18 07:00:00+00:00,FR04014,no2,52.6,µg/m³
+Paris,FR,2019-06-18 06:00:00+00:00,FR04014,no2,51.4,µg/m³
+Paris,FR,2019-06-18 05:00:00+00:00,FR04014,no2,33.8,µg/m³
+Paris,FR,2019-06-18 04:00:00+00:00,FR04014,no2,26.5,µg/m³
+Paris,FR,2019-06-18 03:00:00+00:00,FR04014,no2,45.5,µg/m³
+Paris,FR,2019-06-18 02:00:00+00:00,FR04014,no2,39.8,µg/m³
+Paris,FR,2019-06-18 01:00:00+00:00,FR04014,no2,60.1,µg/m³
+Paris,FR,2019-06-18 00:00:00+00:00,FR04014,no2,66.2,µg/m³
+Paris,FR,2019-06-17 23:00:00+00:00,FR04014,no2,73.3,µg/m³
+Paris,FR,2019-06-17 22:00:00+00:00,FR04014,no2,51.0,µg/m³
+Paris,FR,2019-06-17 21:00:00+00:00,FR04014,no2,38.3,µg/m³
+Paris,FR,2019-06-17 20:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-06-17 19:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-06-17 18:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-06-17 17:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-06-17 16:00:00+00:00,FR04014,no2,11.9,µg/m³
+Paris,FR,2019-06-17 15:00:00+00:00,FR04014,no2,13.1,µg/m³
+Paris,FR,2019-06-17 14:00:00+00:00,FR04014,no2,11.5,µg/m³
+Paris,FR,2019-06-17 13:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-06-17 12:00:00+00:00,FR04014,no2,10.1,µg/m³
+Paris,FR,2019-06-17 11:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-06-17 10:00:00+00:00,FR04014,no2,16.0,µg/m³
+Paris,FR,2019-06-17 09:00:00+00:00,FR04014,no2,30.4,µg/m³
+Paris,FR,2019-06-17 08:00:00+00:00,FR04014,no2,51.6,µg/m³
+Paris,FR,2019-06-17 07:00:00+00:00,FR04014,no2,54.4,µg/m³
+Paris,FR,2019-06-17 06:00:00+00:00,FR04014,no2,52.3,µg/m³
+Paris,FR,2019-06-17 05:00:00+00:00,FR04014,no2,44.8,µg/m³
+Paris,FR,2019-06-17 04:00:00+00:00,FR04014,no2,45.7,µg/m³
+Paris,FR,2019-06-17 03:00:00+00:00,FR04014,no2,49.1,µg/m³
+Paris,FR,2019-06-17 02:00:00+00:00,FR04014,no2,53.1,µg/m³
+Paris,FR,2019-06-17 01:00:00+00:00,FR04014,no2,58.8,µg/m³
+Paris,FR,2019-06-17 00:00:00+00:00,FR04014,no2,69.3,µg/m³
+Paris,FR,2019-06-16 23:00:00+00:00,FR04014,no2,67.3,µg/m³
+Paris,FR,2019-06-16 22:00:00+00:00,FR04014,no2,56.6,µg/m³
+Paris,FR,2019-06-16 21:00:00+00:00,FR04014,no2,42.7,µg/m³
+Paris,FR,2019-06-16 20:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-06-16 19:00:00+00:00,FR04014,no2,14.4,µg/m³
+Paris,FR,2019-06-16 18:00:00+00:00,FR04014,no2,12.3,µg/m³
+Paris,FR,2019-06-16 17:00:00+00:00,FR04014,no2,11.8,µg/m³
+Paris,FR,2019-06-16 16:00:00+00:00,FR04014,no2,9.2,µg/m³
+Paris,FR,2019-06-16 15:00:00+00:00,FR04014,no2,8.4,µg/m³
+Paris,FR,2019-06-16 14:00:00+00:00,FR04014,no2,8.1,µg/m³
+Paris,FR,2019-06-16 13:00:00+00:00,FR04014,no2,8.7,µg/m³
+Paris,FR,2019-06-16 12:00:00+00:00,FR04014,no2,11.2,µg/m³
+Paris,FR,2019-06-16 11:00:00+00:00,FR04014,no2,12.9,µg/m³
+Paris,FR,2019-06-16 10:00:00+00:00,FR04014,no2,8.7,µg/m³
+Paris,FR,2019-06-16 09:00:00+00:00,FR04014,no2,9.4,µg/m³
+Paris,FR,2019-06-16 08:00:00+00:00,FR04014,no2,9.9,µg/m³
+Paris,FR,2019-06-16 07:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-06-16 06:00:00+00:00,FR04014,no2,11.6,µg/m³
+Paris,FR,2019-06-16 05:00:00+00:00,FR04014,no2,14.0,µg/m³
+Paris,FR,2019-06-16 04:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-16 03:00:00+00:00,FR04014,no2,11.2,µg/m³
+Paris,FR,2019-06-16 02:00:00+00:00,FR04014,no2,11.4,µg/m³
+Paris,FR,2019-06-16 01:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-06-16 00:00:00+00:00,FR04014,no2,16.5,µg/m³
+Paris,FR,2019-06-15 23:00:00+00:00,FR04014,no2,22.6,µg/m³
+Paris,FR,2019-06-15 22:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-06-15 21:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-06-15 20:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-06-15 19:00:00+00:00,FR04014,no2,14.2,µg/m³
+Paris,FR,2019-06-15 18:00:00+00:00,FR04014,no2,14.0,µg/m³
+Paris,FR,2019-06-15 17:00:00+00:00,FR04014,no2,11.1,µg/m³
+Paris,FR,2019-06-15 16:00:00+00:00,FR04014,no2,10.7,µg/m³
+Paris,FR,2019-06-15 15:00:00+00:00,FR04014,no2,10.5,µg/m³
+Paris,FR,2019-06-15 14:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-06-15 13:00:00+00:00,FR04014,no2,9.0,µg/m³
+Paris,FR,2019-06-15 12:00:00+00:00,FR04014,no2,9.4,µg/m³
+Paris,FR,2019-06-15 11:00:00+00:00,FR04014,no2,11.1,µg/m³
+Paris,FR,2019-06-15 10:00:00+00:00,FR04014,no2,12.1,µg/m³
+Paris,FR,2019-06-15 09:00:00+00:00,FR04014,no2,14.0,µg/m³
+Paris,FR,2019-06-15 08:00:00+00:00,FR04014,no2,17.6,µg/m³
+Paris,FR,2019-06-15 07:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-06-15 06:00:00+00:00,FR04014,no2,35.8,µg/m³
+Paris,FR,2019-06-15 02:00:00+00:00,FR04014,no2,33.9,µg/m³
+Paris,FR,2019-06-15 01:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-06-15 00:00:00+00:00,FR04014,no2,29.6,µg/m³
+Paris,FR,2019-06-14 23:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-06-14 22:00:00+00:00,FR04014,no2,35.3,µg/m³
+Paris,FR,2019-06-14 21:00:00+00:00,FR04014,no2,55.0,µg/m³
+Paris,FR,2019-06-14 20:00:00+00:00,FR04014,no2,41.9,µg/m³
+Paris,FR,2019-06-14 19:00:00+00:00,FR04014,no2,25.0,µg/m³
+Paris,FR,2019-06-14 18:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-06-14 17:00:00+00:00,FR04014,no2,16.6,µg/m³
+Paris,FR,2019-06-14 16:00:00+00:00,FR04014,no2,18.9,µg/m³
+Paris,FR,2019-06-14 15:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-06-14 14:00:00+00:00,FR04014,no2,14.2,µg/m³
+Paris,FR,2019-06-14 13:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-06-14 12:00:00+00:00,FR04014,no2,17.1,µg/m³
+Paris,FR,2019-06-14 11:00:00+00:00,FR04014,no2,21.8,µg/m³
+Paris,FR,2019-06-14 10:00:00+00:00,FR04014,no2,25.1,µg/m³
+Paris,FR,2019-06-14 09:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-06-14 08:00:00+00:00,FR04014,no2,34.3,µg/m³
+Paris,FR,2019-06-14 07:00:00+00:00,FR04014,no2,51.5,µg/m³
+Paris,FR,2019-06-14 06:00:00+00:00,FR04014,no2,64.3,µg/m³
+Paris,FR,2019-06-14 05:00:00+00:00,FR04014,no2,49.3,µg/m³
+Paris,FR,2019-06-14 04:00:00+00:00,FR04014,no2,37.9,µg/m³
+Paris,FR,2019-06-14 03:00:00+00:00,FR04014,no2,48.5,µg/m³
+Paris,FR,2019-06-14 02:00:00+00:00,FR04014,no2,66.6,µg/m³
+Paris,FR,2019-06-14 01:00:00+00:00,FR04014,no2,68.1,µg/m³
+Paris,FR,2019-06-14 00:00:00+00:00,FR04014,no2,74.2,µg/m³
+Paris,FR,2019-06-13 23:00:00+00:00,FR04014,no2,78.3,µg/m³
+Paris,FR,2019-06-13 22:00:00+00:00,FR04014,no2,77.9,µg/m³
+Paris,FR,2019-06-13 21:00:00+00:00,FR04014,no2,58.8,µg/m³
+Paris,FR,2019-06-13 20:00:00+00:00,FR04014,no2,31.5,µg/m³
+Paris,FR,2019-06-13 19:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-06-13 18:00:00+00:00,FR04014,no2,24.0,µg/m³
+Paris,FR,2019-06-13 17:00:00+00:00,FR04014,no2,38.2,µg/m³
+Paris,FR,2019-06-13 16:00:00+00:00,FR04014,no2,36.1,µg/m³
+Paris,FR,2019-06-13 15:00:00+00:00,FR04014,no2,28.8,µg/m³
+Paris,FR,2019-06-13 14:00:00+00:00,FR04014,no2,19.4,µg/m³
+Paris,FR,2019-06-13 13:00:00+00:00,FR04014,no2,18.2,µg/m³
+Paris,FR,2019-06-13 12:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-06-13 11:00:00+00:00,FR04014,no2,22.7,µg/m³
+Paris,FR,2019-06-13 10:00:00+00:00,FR04014,no2,24.5,µg/m³
+Paris,FR,2019-06-13 09:00:00+00:00,FR04014,no2,30.2,µg/m³
+Paris,FR,2019-06-13 08:00:00+00:00,FR04014,no2,35.3,µg/m³
+Paris,FR,2019-06-13 07:00:00+00:00,FR04014,no2,40.9,µg/m³
+Paris,FR,2019-06-13 06:00:00+00:00,FR04014,no2,39.8,µg/m³
+Paris,FR,2019-06-13 05:00:00+00:00,FR04014,no2,37.0,µg/m³
+Paris,FR,2019-06-13 04:00:00+00:00,FR04014,no2,24.6,µg/m³
+Paris,FR,2019-06-13 03:00:00+00:00,FR04014,no2,18.8,µg/m³
+Paris,FR,2019-06-13 02:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-06-13 01:00:00+00:00,FR04014,no2,18.7,µg/m³
+Paris,FR,2019-06-13 00:00:00+00:00,FR04014,no2,20.0,µg/m³
+Paris,FR,2019-06-12 23:00:00+00:00,FR04014,no2,26.9,µg/m³
+Paris,FR,2019-06-12 22:00:00+00:00,FR04014,no2,25.6,µg/m³
+Paris,FR,2019-06-12 21:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-06-12 20:00:00+00:00,FR04014,no2,29.2,µg/m³
+Paris,FR,2019-06-12 19:00:00+00:00,FR04014,no2,23.4,µg/m³
+Paris,FR,2019-06-12 18:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-06-12 17:00:00+00:00,FR04014,no2,24.2,µg/m³
+Paris,FR,2019-06-12 16:00:00+00:00,FR04014,no2,23.6,µg/m³
+Paris,FR,2019-06-12 15:00:00+00:00,FR04014,no2,16.8,µg/m³
+Paris,FR,2019-06-12 14:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-06-12 13:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-06-12 12:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-06-12 11:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-06-12 10:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-06-12 09:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-06-12 08:00:00+00:00,FR04014,no2,35.5,µg/m³
+Paris,FR,2019-06-12 07:00:00+00:00,FR04014,no2,44.4,µg/m³
+Paris,FR,2019-06-12 06:00:00+00:00,FR04014,no2,38.4,µg/m³
+Paris,FR,2019-06-12 05:00:00+00:00,FR04014,no2,42.7,µg/m³
+Paris,FR,2019-06-12 04:00:00+00:00,FR04014,no2,44.9,µg/m³
+Paris,FR,2019-06-12 03:00:00+00:00,FR04014,no2,36.3,µg/m³
+Paris,FR,2019-06-12 02:00:00+00:00,FR04014,no2,34.7,µg/m³
+Paris,FR,2019-06-12 01:00:00+00:00,FR04014,no2,41.9,µg/m³
+Paris,FR,2019-06-12 00:00:00+00:00,FR04014,no2,37.2,µg/m³
+Paris,FR,2019-06-11 23:00:00+00:00,FR04014,no2,41.5,µg/m³
+Paris,FR,2019-06-11 22:00:00+00:00,FR04014,no2,59.4,µg/m³
+Paris,FR,2019-06-11 21:00:00+00:00,FR04014,no2,54.1,µg/m³
+Paris,FR,2019-06-11 20:00:00+00:00,FR04014,no2,42.7,µg/m³
+Paris,FR,2019-06-11 19:00:00+00:00,FR04014,no2,36.1,µg/m³
+Paris,FR,2019-06-11 18:00:00+00:00,FR04014,no2,44.6,µg/m³
+Paris,FR,2019-06-11 17:00:00+00:00,FR04014,no2,35.5,µg/m³
+Paris,FR,2019-06-11 16:00:00+00:00,FR04014,no2,22.6,µg/m³
+Paris,FR,2019-06-11 15:00:00+00:00,FR04014,no2,19.8,µg/m³
+Paris,FR,2019-06-11 14:00:00+00:00,FR04014,no2,16.6,µg/m³
+Paris,FR,2019-06-11 13:00:00+00:00,FR04014,no2,13.1,µg/m³
+Paris,FR,2019-06-11 12:00:00+00:00,FR04014,no2,12.6,µg/m³
+Paris,FR,2019-06-11 11:00:00+00:00,FR04014,no2,17.3,µg/m³
+Paris,FR,2019-06-11 10:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-06-11 09:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-06-11 08:00:00+00:00,FR04014,no2,43.6,µg/m³
+Paris,FR,2019-06-11 07:00:00+00:00,FR04014,no2,58.0,µg/m³
+Paris,FR,2019-06-11 06:00:00+00:00,FR04014,no2,55.4,µg/m³
+Paris,FR,2019-06-11 05:00:00+00:00,FR04014,no2,58.7,µg/m³
+Paris,FR,2019-06-11 04:00:00+00:00,FR04014,no2,52.7,µg/m³
+Paris,FR,2019-06-11 03:00:00+00:00,FR04014,no2,32.3,µg/m³
+Paris,FR,2019-06-11 02:00:00+00:00,FR04014,no2,29.6,µg/m³
+Paris,FR,2019-06-11 01:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-06-11 00:00:00+00:00,FR04014,no2,19.6,µg/m³
+Paris,FR,2019-06-10 23:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-06-10 22:00:00+00:00,FR04014,no2,24.8,µg/m³
+Paris,FR,2019-06-10 21:00:00+00:00,FR04014,no2,23.5,µg/m³
+Paris,FR,2019-06-10 20:00:00+00:00,FR04014,no2,22.6,µg/m³
+Paris,FR,2019-06-10 19:00:00+00:00,FR04014,no2,22.3,µg/m³
+Paris,FR,2019-06-10 18:00:00+00:00,FR04014,no2,18.4,µg/m³
+Paris,FR,2019-06-10 17:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-06-10 16:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-06-10 15:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-10 14:00:00+00:00,FR04014,no2,9.5,µg/m³
+Paris,FR,2019-06-10 13:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-06-10 12:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-10 11:00:00+00:00,FR04014,no2,12.2,µg/m³
+Paris,FR,2019-06-10 10:00:00+00:00,FR04014,no2,14.1,µg/m³
+Paris,FR,2019-06-10 09:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-06-10 08:00:00+00:00,FR04014,no2,16.9,µg/m³
+Paris,FR,2019-06-10 07:00:00+00:00,FR04014,no2,23.0,µg/m³
+Paris,FR,2019-06-10 06:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-06-10 05:00:00+00:00,FR04014,no2,21.3,µg/m³
+Paris,FR,2019-06-10 04:00:00+00:00,FR04014,no2,13.7,µg/m³
+Paris,FR,2019-06-10 03:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-06-10 02:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-06-10 01:00:00+00:00,FR04014,no2,19.3,µg/m³
+Paris,FR,2019-06-10 00:00:00+00:00,FR04014,no2,28.1,µg/m³
+Paris,FR,2019-06-09 23:00:00+00:00,FR04014,no2,39.9,µg/m³
+Paris,FR,2019-06-09 22:00:00+00:00,FR04014,no2,37.1,µg/m³
+Paris,FR,2019-06-09 21:00:00+00:00,FR04014,no2,30.9,µg/m³
+Paris,FR,2019-06-09 20:00:00+00:00,FR04014,no2,33.2,µg/m³
+Paris,FR,2019-06-09 19:00:00+00:00,FR04014,no2,30.6,µg/m³
+Paris,FR,2019-06-09 18:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-06-09 17:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-06-09 16:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-06-09 15:00:00+00:00,FR04014,no2,7.2,µg/m³
+Paris,FR,2019-06-09 14:00:00+00:00,FR04014,no2,7.9,µg/m³
+Paris,FR,2019-06-09 13:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-06-09 12:00:00+00:00,FR04014,no2,14.6,µg/m³
+Paris,FR,2019-06-09 11:00:00+00:00,FR04014,no2,14.6,µg/m³
+Paris,FR,2019-06-09 10:00:00+00:00,FR04014,no2,16.6,µg/m³
+Paris,FR,2019-06-09 09:00:00+00:00,FR04014,no2,25.0,µg/m³
+Paris,FR,2019-06-09 08:00:00+00:00,FR04014,no2,30.2,µg/m³
+Paris,FR,2019-06-09 07:00:00+00:00,FR04014,no2,32.7,µg/m³
+Paris,FR,2019-06-09 06:00:00+00:00,FR04014,no2,36.7,µg/m³
+Paris,FR,2019-06-09 05:00:00+00:00,FR04014,no2,42.2,µg/m³
+Paris,FR,2019-06-09 04:00:00+00:00,FR04014,no2,43.0,µg/m³
+Paris,FR,2019-06-09 03:00:00+00:00,FR04014,no2,51.5,µg/m³
+Paris,FR,2019-06-09 02:00:00+00:00,FR04014,no2,51.2,µg/m³
+Paris,FR,2019-06-09 01:00:00+00:00,FR04014,no2,41.0,µg/m³
+Paris,FR,2019-06-09 00:00:00+00:00,FR04014,no2,55.9,µg/m³
+Paris,FR,2019-06-08 23:00:00+00:00,FR04014,no2,47.0,µg/m³
+Paris,FR,2019-06-08 22:00:00+00:00,FR04014,no2,34.8,µg/m³
+Paris,FR,2019-06-08 21:00:00+00:00,FR04014,no2,36.7,µg/m³
+Paris,FR,2019-06-08 18:00:00+00:00,FR04014,no2,22.0,µg/m³
+Paris,FR,2019-06-08 17:00:00+00:00,FR04014,no2,14.8,µg/m³
+Paris,FR,2019-06-08 16:00:00+00:00,FR04014,no2,14.1,µg/m³
+Paris,FR,2019-06-08 15:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-08 14:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-06-08 13:00:00+00:00,FR04014,no2,11.1,µg/m³
+Paris,FR,2019-06-08 12:00:00+00:00,FR04014,no2,9.2,µg/m³
+Paris,FR,2019-06-08 11:00:00+00:00,FR04014,no2,10.4,µg/m³
+Paris,FR,2019-06-08 10:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-06-08 09:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-08 08:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-06-08 07:00:00+00:00,FR04014,no2,14.0,µg/m³
+Paris,FR,2019-06-08 06:00:00+00:00,FR04014,no2,13.8,µg/m³
+Paris,FR,2019-06-08 05:00:00+00:00,FR04014,no2,14.1,µg/m³
+Paris,FR,2019-06-08 04:00:00+00:00,FR04014,no2,10.7,µg/m³
+Paris,FR,2019-06-08 03:00:00+00:00,FR04014,no2,9.8,µg/m³
+Paris,FR,2019-06-08 02:00:00+00:00,FR04014,no2,8.4,µg/m³
+Paris,FR,2019-06-08 01:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-06-08 00:00:00+00:00,FR04014,no2,11.3,µg/m³
+Paris,FR,2019-06-07 23:00:00+00:00,FR04014,no2,14.4,µg/m³
+Paris,FR,2019-06-07 22:00:00+00:00,FR04014,no2,14.7,µg/m³
+Paris,FR,2019-06-07 21:00:00+00:00,FR04014,no2,16.3,µg/m³
+Paris,FR,2019-06-07 20:00:00+00:00,FR04014,no2,19.4,µg/m³
+Paris,FR,2019-06-07 19:00:00+00:00,FR04014,no2,19.9,µg/m³
+Paris,FR,2019-06-07 18:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-06-07 17:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-06-07 16:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-06-07 15:00:00+00:00,FR04014,no2,15.6,µg/m³
+Paris,FR,2019-06-07 14:00:00+00:00,FR04014,no2,13.1,µg/m³
+Paris,FR,2019-06-07 13:00:00+00:00,FR04014,no2,15.0,µg/m³
+Paris,FR,2019-06-07 12:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-06-07 11:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-06-07 10:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-06-07 09:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-06-07 08:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-06-07 07:00:00+00:00,FR04014,no2,23.0,µg/m³
+Paris,FR,2019-06-07 06:00:00+00:00,FR04014,no2,28.9,µg/m³
+Paris,FR,2019-06-06 14:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-06-06 13:00:00+00:00,FR04014,no2,16.0,µg/m³
+Paris,FR,2019-06-06 12:00:00+00:00,FR04014,no2,16.5,µg/m³
+Paris,FR,2019-06-06 11:00:00+00:00,FR04014,no2,16.4,µg/m³
+Paris,FR,2019-06-06 10:00:00+00:00,FR04014,no2,21.2,µg/m³
+Paris,FR,2019-06-06 09:00:00+00:00,FR04014,no2,26.0,µg/m³
+Paris,FR,2019-06-06 08:00:00+00:00,FR04014,no2,36.0,µg/m³
+Paris,FR,2019-06-06 07:00:00+00:00,FR04014,no2,43.1,µg/m³
+Paris,FR,2019-06-06 06:00:00+00:00,FR04014,no2,40.5,µg/m³
+Paris,FR,2019-06-06 05:00:00+00:00,FR04014,no2,40.3,µg/m³
+Paris,FR,2019-06-06 04:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-06-06 03:00:00+00:00,FR04014,no2,19.2,µg/m³
+Paris,FR,2019-06-06 02:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-06-06 01:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-06-06 00:00:00+00:00,FR04014,no2,23.8,µg/m³
+Paris,FR,2019-06-05 23:00:00+00:00,FR04014,no2,31.8,µg/m³
+Paris,FR,2019-06-05 22:00:00+00:00,FR04014,no2,30.3,µg/m³
+Paris,FR,2019-06-05 21:00:00+00:00,FR04014,no2,33.7,µg/m³
+Paris,FR,2019-06-05 20:00:00+00:00,FR04014,no2,37.5,µg/m³
+Paris,FR,2019-06-05 19:00:00+00:00,FR04014,no2,37.8,µg/m³
+Paris,FR,2019-06-05 18:00:00+00:00,FR04014,no2,40.8,µg/m³
+Paris,FR,2019-06-05 17:00:00+00:00,FR04014,no2,48.8,µg/m³
+Paris,FR,2019-06-05 16:00:00+00:00,FR04014,no2,37.9,µg/m³
+Paris,FR,2019-06-05 15:00:00+00:00,FR04014,no2,53.5,µg/m³
+Paris,FR,2019-06-05 14:00:00+00:00,FR04014,no2,38.3,µg/m³
+Paris,FR,2019-06-05 13:00:00+00:00,FR04014,no2,33.6,µg/m³
+Paris,FR,2019-06-05 12:00:00+00:00,FR04014,no2,47.2,µg/m³
+Paris,FR,2019-06-05 11:00:00+00:00,FR04014,no2,59.0,µg/m³
+Paris,FR,2019-06-05 10:00:00+00:00,FR04014,no2,42.1,µg/m³
+Paris,FR,2019-06-05 09:00:00+00:00,FR04014,no2,36.8,µg/m³
+Paris,FR,2019-06-05 08:00:00+00:00,FR04014,no2,35.3,µg/m³
+Paris,FR,2019-06-05 07:00:00+00:00,FR04014,no2,36.9,µg/m³
+Paris,FR,2019-06-05 06:00:00+00:00,FR04014,no2,35.8,µg/m³
+Paris,FR,2019-06-05 05:00:00+00:00,FR04014,no2,39.2,µg/m³
+Paris,FR,2019-06-05 04:00:00+00:00,FR04014,no2,24.5,µg/m³
+Paris,FR,2019-06-05 03:00:00+00:00,FR04014,no2,16.2,µg/m³
+Paris,FR,2019-06-05 02:00:00+00:00,FR04014,no2,12.4,µg/m³
+Paris,FR,2019-06-05 01:00:00+00:00,FR04014,no2,10.8,µg/m³
+Paris,FR,2019-06-05 00:00:00+00:00,FR04014,no2,15.7,µg/m³
+Paris,FR,2019-06-04 23:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-06-04 22:00:00+00:00,FR04014,no2,33.5,µg/m³
+Paris,FR,2019-06-04 21:00:00+00:00,FR04014,no2,26.3,µg/m³
+Paris,FR,2019-06-04 20:00:00+00:00,FR04014,no2,16.9,µg/m³
+Paris,FR,2019-06-04 19:00:00+00:00,FR04014,no2,17.0,µg/m³
+Paris,FR,2019-06-04 18:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-06-04 17:00:00+00:00,FR04014,no2,23.4,µg/m³
+Paris,FR,2019-06-04 16:00:00+00:00,FR04014,no2,26.3,µg/m³
+Paris,FR,2019-06-04 15:00:00+00:00,FR04014,no2,21.5,µg/m³
+Paris,FR,2019-06-04 14:00:00+00:00,FR04014,no2,18.1,µg/m³
+Paris,FR,2019-06-04 13:00:00+00:00,FR04014,no2,17.4,µg/m³
+Paris,FR,2019-06-04 12:00:00+00:00,FR04014,no2,17.7,µg/m³
+Paris,FR,2019-06-04 11:00:00+00:00,FR04014,no2,19.6,µg/m³
+Paris,FR,2019-06-04 10:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-06-04 09:00:00+00:00,FR04014,no2,38.5,µg/m³
+Paris,FR,2019-06-04 08:00:00+00:00,FR04014,no2,50.8,µg/m³
+Paris,FR,2019-06-04 07:00:00+00:00,FR04014,no2,53.5,µg/m³
+Paris,FR,2019-06-04 06:00:00+00:00,FR04014,no2,47.7,µg/m³
+Paris,FR,2019-06-04 05:00:00+00:00,FR04014,no2,36.5,µg/m³
+Paris,FR,2019-06-04 04:00:00+00:00,FR04014,no2,28.8,µg/m³
+Paris,FR,2019-06-04 03:00:00+00:00,FR04014,no2,41.6,µg/m³
+Paris,FR,2019-06-04 02:00:00+00:00,FR04014,no2,35.0,µg/m³
+Paris,FR,2019-06-04 01:00:00+00:00,FR04014,no2,43.9,µg/m³
+Paris,FR,2019-06-04 00:00:00+00:00,FR04014,no2,52.4,µg/m³
+Paris,FR,2019-06-03 23:00:00+00:00,FR04014,no2,44.6,µg/m³
+Paris,FR,2019-06-03 22:00:00+00:00,FR04014,no2,30.5,µg/m³
+Paris,FR,2019-06-03 21:00:00+00:00,FR04014,no2,31.1,µg/m³
+Paris,FR,2019-06-03 20:00:00+00:00,FR04014,no2,33.0,µg/m³
+Paris,FR,2019-06-03 19:00:00+00:00,FR04014,no2,28.9,µg/m³
+Paris,FR,2019-06-03 18:00:00+00:00,FR04014,no2,23.1,µg/m³
+Paris,FR,2019-06-03 17:00:00+00:00,FR04014,no2,24.4,µg/m³
+Paris,FR,2019-06-03 16:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-06-03 15:00:00+00:00,FR04014,no2,24.8,µg/m³
+Paris,FR,2019-06-03 14:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-06-03 13:00:00+00:00,FR04014,no2,25.8,µg/m³
+Paris,FR,2019-06-03 12:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-06-03 11:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-06-03 10:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-06-03 09:00:00+00:00,FR04014,no2,46.0,µg/m³
+Paris,FR,2019-06-03 08:00:00+00:00,FR04014,no2,43.9,µg/m³
+Paris,FR,2019-06-03 07:00:00+00:00,FR04014,no2,50.0,µg/m³
+Paris,FR,2019-06-03 06:00:00+00:00,FR04014,no2,44.1,µg/m³
+Paris,FR,2019-06-03 05:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-06-03 04:00:00+00:00,FR04014,no2,11.4,µg/m³
+Paris,FR,2019-06-03 03:00:00+00:00,FR04014,no2,9.8,µg/m³
+Paris,FR,2019-06-03 02:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-06-03 01:00:00+00:00,FR04014,no2,11.8,µg/m³
+Paris,FR,2019-06-03 00:00:00+00:00,FR04014,no2,15.7,µg/m³
+Paris,FR,2019-06-02 23:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-06-02 22:00:00+00:00,FR04014,no2,27.6,µg/m³
+Paris,FR,2019-06-02 21:00:00+00:00,FR04014,no2,36.9,µg/m³
+Paris,FR,2019-06-02 20:00:00+00:00,FR04014,no2,40.9,µg/m³
+Paris,FR,2019-06-02 19:00:00+00:00,FR04014,no2,25.8,µg/m³
+Paris,FR,2019-06-02 18:00:00+00:00,FR04014,no2,15.6,µg/m³
+Paris,FR,2019-06-02 17:00:00+00:00,FR04014,no2,14.4,µg/m³
+Paris,FR,2019-06-02 16:00:00+00:00,FR04014,no2,14.4,µg/m³
+Paris,FR,2019-06-02 15:00:00+00:00,FR04014,no2,13.9,µg/m³
+Paris,FR,2019-06-02 14:00:00+00:00,FR04014,no2,15.0,µg/m³
+Paris,FR,2019-06-02 13:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-06-02 12:00:00+00:00,FR04014,no2,11.5,µg/m³
+Paris,FR,2019-06-02 11:00:00+00:00,FR04014,no2,13.1,µg/m³
+Paris,FR,2019-06-02 10:00:00+00:00,FR04014,no2,18.1,µg/m³
+Paris,FR,2019-06-02 09:00:00+00:00,FR04014,no2,21.0,µg/m³
+Paris,FR,2019-06-02 08:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-06-02 07:00:00+00:00,FR04014,no2,18.1,µg/m³
+Paris,FR,2019-06-02 06:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-06-02 05:00:00+00:00,FR04014,no2,37.2,µg/m³
+Paris,FR,2019-06-02 04:00:00+00:00,FR04014,no2,24.5,µg/m³
+Paris,FR,2019-06-02 03:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-06-02 02:00:00+00:00,FR04014,no2,39.2,µg/m³
+Paris,FR,2019-06-02 01:00:00+00:00,FR04014,no2,38.2,µg/m³
+Paris,FR,2019-06-02 00:00:00+00:00,FR04014,no2,38.1,µg/m³
+Paris,FR,2019-06-01 23:00:00+00:00,FR04014,no2,32.7,µg/m³
+Paris,FR,2019-06-01 22:00:00+00:00,FR04014,no2,48.1,µg/m³
+Paris,FR,2019-06-01 21:00:00+00:00,FR04014,no2,49.4,µg/m³
+Paris,FR,2019-06-01 20:00:00+00:00,FR04014,no2,43.6,µg/m³
+Paris,FR,2019-06-01 19:00:00+00:00,FR04014,no2,24.6,µg/m³
+Paris,FR,2019-06-01 18:00:00+00:00,FR04014,no2,14.5,µg/m³
+Paris,FR,2019-06-01 17:00:00+00:00,FR04014,no2,11.8,µg/m³
+Paris,FR,2019-06-01 16:00:00+00:00,FR04014,no2,11.8,µg/m³
+Paris,FR,2019-06-01 15:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-06-01 14:00:00+00:00,FR04014,no2,10.0,µg/m³
+Paris,FR,2019-06-01 13:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-06-01 12:00:00+00:00,FR04014,no2,10.4,µg/m³
+Paris,FR,2019-06-01 11:00:00+00:00,FR04014,no2,12.2,µg/m³
+Paris,FR,2019-06-01 10:00:00+00:00,FR04014,no2,13.8,µg/m³
+Paris,FR,2019-06-01 09:00:00+00:00,FR04014,no2,23.9,µg/m³
+Paris,FR,2019-06-01 08:00:00+00:00,FR04014,no2,33.3,µg/m³
+Paris,FR,2019-06-01 07:00:00+00:00,FR04014,no2,46.4,µg/m³
+Paris,FR,2019-06-01 06:00:00+00:00,FR04014,no2,44.6,µg/m³
+Paris,FR,2019-06-01 02:00:00+00:00,FR04014,no2,68.1,µg/m³
+Paris,FR,2019-06-01 01:00:00+00:00,FR04014,no2,74.8,µg/m³
+Paris,FR,2019-06-01 00:00:00+00:00,FR04014,no2,84.7,µg/m³
+Paris,FR,2019-05-31 23:00:00+00:00,FR04014,no2,81.7,µg/m³
+Paris,FR,2019-05-31 22:00:00+00:00,FR04014,no2,68.0,µg/m³
+Paris,FR,2019-05-31 21:00:00+00:00,FR04014,no2,60.2,µg/m³
+Paris,FR,2019-05-31 20:00:00+00:00,FR04014,no2,37.0,µg/m³
+Paris,FR,2019-05-31 19:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-05-31 18:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-05-31 17:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-05-31 16:00:00+00:00,FR04014,no2,16.3,µg/m³
+Paris,FR,2019-05-31 15:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-05-31 14:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-05-31 13:00:00+00:00,FR04014,no2,13.8,µg/m³
+Paris,FR,2019-05-31 12:00:00+00:00,FR04014,no2,13.3,µg/m³
+Paris,FR,2019-05-31 11:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-05-31 10:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-05-31 09:00:00+00:00,FR04014,no2,19.6,µg/m³
+Paris,FR,2019-05-31 08:00:00+00:00,FR04014,no2,36.6,µg/m³
+Paris,FR,2019-05-31 07:00:00+00:00,FR04014,no2,47.4,µg/m³
+Paris,FR,2019-05-31 06:00:00+00:00,FR04014,no2,38.6,µg/m³
+Paris,FR,2019-05-31 05:00:00+00:00,FR04014,no2,37.2,µg/m³
+Paris,FR,2019-05-31 04:00:00+00:00,FR04014,no2,31.1,µg/m³
+Paris,FR,2019-05-31 03:00:00+00:00,FR04014,no2,40.1,µg/m³
+Paris,FR,2019-05-31 02:00:00+00:00,FR04014,no2,44.1,µg/m³
+Paris,FR,2019-05-31 01:00:00+00:00,FR04014,no2,36.9,µg/m³
+Paris,FR,2019-05-31 00:00:00+00:00,FR04014,no2,27.2,µg/m³
+Paris,FR,2019-05-30 23:00:00+00:00,FR04014,no2,29.6,µg/m³
+Paris,FR,2019-05-30 22:00:00+00:00,FR04014,no2,27.0,µg/m³
+Paris,FR,2019-05-30 21:00:00+00:00,FR04014,no2,26.9,µg/m³
+Paris,FR,2019-05-30 20:00:00+00:00,FR04014,no2,21.9,µg/m³
+Paris,FR,2019-05-30 19:00:00+00:00,FR04014,no2,22.9,µg/m³
+Paris,FR,2019-05-30 18:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-30 17:00:00+00:00,FR04014,no2,20.4,µg/m³
+Paris,FR,2019-05-30 16:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-05-30 15:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-05-30 14:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-05-30 13:00:00+00:00,FR04014,no2,16.1,µg/m³
+Paris,FR,2019-05-30 12:00:00+00:00,FR04014,no2,14.2,µg/m³
+Paris,FR,2019-05-30 11:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-05-30 10:00:00+00:00,FR04014,no2,13.8,µg/m³
+Paris,FR,2019-05-30 09:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-05-30 08:00:00+00:00,FR04014,no2,16.7,µg/m³
+Paris,FR,2019-05-30 07:00:00+00:00,FR04014,no2,18.3,µg/m³
+Paris,FR,2019-05-30 06:00:00+00:00,FR04014,no2,13.3,µg/m³
+Paris,FR,2019-05-30 05:00:00+00:00,FR04014,no2,12.2,µg/m³
+Paris,FR,2019-05-30 04:00:00+00:00,FR04014,no2,10.4,µg/m³
+Paris,FR,2019-05-30 03:00:00+00:00,FR04014,no2,10.6,µg/m³
+Paris,FR,2019-05-30 02:00:00+00:00,FR04014,no2,9.4,µg/m³
+Paris,FR,2019-05-30 01:00:00+00:00,FR04014,no2,12.4,µg/m³
+Paris,FR,2019-05-30 00:00:00+00:00,FR04014,no2,19.4,µg/m³
+Paris,FR,2019-05-29 23:00:00+00:00,FR04014,no2,19.9,µg/m³
+Paris,FR,2019-05-29 22:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-05-29 21:00:00+00:00,FR04014,no2,16.9,µg/m³
+Paris,FR,2019-05-29 20:00:00+00:00,FR04014,no2,20.8,µg/m³
+Paris,FR,2019-05-29 19:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-05-29 18:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-05-29 17:00:00+00:00,FR04014,no2,22.9,µg/m³
+Paris,FR,2019-05-29 16:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-05-29 15:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-05-29 14:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-05-29 13:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-05-29 12:00:00+00:00,FR04014,no2,13.2,µg/m³
+Paris,FR,2019-05-29 11:00:00+00:00,FR04014,no2,22.0,µg/m³
+Paris,FR,2019-05-29 10:00:00+00:00,FR04014,no2,30.7,µg/m³
+Paris,FR,2019-05-29 09:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-05-29 08:00:00+00:00,FR04014,no2,45.7,µg/m³
+Paris,FR,2019-05-29 07:00:00+00:00,FR04014,no2,50.5,µg/m³
+Paris,FR,2019-05-29 06:00:00+00:00,FR04014,no2,46.5,µg/m³
+Paris,FR,2019-05-29 05:00:00+00:00,FR04014,no2,36.7,µg/m³
+Paris,FR,2019-05-29 04:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-05-29 03:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-05-29 02:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-05-29 01:00:00+00:00,FR04014,no2,21.6,µg/m³
+Paris,FR,2019-05-29 00:00:00+00:00,FR04014,no2,23.4,µg/m³
+Paris,FR,2019-05-28 23:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-05-28 22:00:00+00:00,FR04014,no2,20.2,µg/m³
+Paris,FR,2019-05-28 21:00:00+00:00,FR04014,no2,20.4,µg/m³
+Paris,FR,2019-05-28 20:00:00+00:00,FR04014,no2,20.4,µg/m³
+Paris,FR,2019-05-28 19:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-05-28 18:00:00+00:00,FR04014,no2,16.2,µg/m³
+Paris,FR,2019-05-28 17:00:00+00:00,FR04014,no2,20.8,µg/m³
+Paris,FR,2019-05-28 16:00:00+00:00,FR04014,no2,26.5,µg/m³
+Paris,FR,2019-05-28 15:00:00+00:00,FR04014,no2,25.0,µg/m³
+Paris,FR,2019-05-28 14:00:00+00:00,FR04014,no2,18.8,µg/m³
+Paris,FR,2019-05-28 13:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-05-28 12:00:00+00:00,FR04014,no2,24.8,µg/m³
+Paris,FR,2019-05-28 11:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-05-28 10:00:00+00:00,FR04014,no2,21.6,µg/m³
+Paris,FR,2019-05-28 09:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-28 08:00:00+00:00,FR04014,no2,31.2,µg/m³
+Paris,FR,2019-05-28 07:00:00+00:00,FR04014,no2,33.8,µg/m³
+Paris,FR,2019-05-28 06:00:00+00:00,FR04014,no2,28.8,µg/m³
+Paris,FR,2019-05-28 05:00:00+00:00,FR04014,no2,19.9,µg/m³
+Paris,FR,2019-05-28 04:00:00+00:00,FR04014,no2,8.9,µg/m³
+Paris,FR,2019-05-28 03:00:00+00:00,FR04014,no2,6.1,µg/m³
+Paris,FR,2019-05-28 02:00:00+00:00,FR04014,no2,6.4,µg/m³
+Paris,FR,2019-05-28 01:00:00+00:00,FR04014,no2,8.2,µg/m³
+Paris,FR,2019-05-28 00:00:00+00:00,FR04014,no2,15.4,µg/m³
+Paris,FR,2019-05-27 23:00:00+00:00,FR04014,no2,22.6,µg/m³
+Paris,FR,2019-05-27 22:00:00+00:00,FR04014,no2,19.9,µg/m³
+Paris,FR,2019-05-27 21:00:00+00:00,FR04014,no2,18.8,µg/m³
+Paris,FR,2019-05-27 20:00:00+00:00,FR04014,no2,22.3,µg/m³
+Paris,FR,2019-05-27 19:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-27 18:00:00+00:00,FR04014,no2,25.6,µg/m³
+Paris,FR,2019-05-27 17:00:00+00:00,FR04014,no2,22.9,µg/m³
+Paris,FR,2019-05-27 16:00:00+00:00,FR04014,no2,23.6,µg/m³
+Paris,FR,2019-05-27 15:00:00+00:00,FR04014,no2,25.6,µg/m³
+Paris,FR,2019-05-27 14:00:00+00:00,FR04014,no2,17.3,µg/m³
+Paris,FR,2019-05-27 13:00:00+00:00,FR04014,no2,17.5,µg/m³
+Paris,FR,2019-05-27 12:00:00+00:00,FR04014,no2,17.3,µg/m³
+Paris,FR,2019-05-27 11:00:00+00:00,FR04014,no2,19.3,µg/m³
+Paris,FR,2019-05-27 10:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-05-27 09:00:00+00:00,FR04014,no2,31.4,µg/m³
+Paris,FR,2019-05-27 08:00:00+00:00,FR04014,no2,34.2,µg/m³
+Paris,FR,2019-05-27 07:00:00+00:00,FR04014,no2,29.5,µg/m³
+Paris,FR,2019-05-27 06:00:00+00:00,FR04014,no2,29.1,µg/m³
+Paris,FR,2019-05-27 05:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-05-27 04:00:00+00:00,FR04014,no2,6.5,µg/m³
+Paris,FR,2019-05-27 03:00:00+00:00,FR04014,no2,4.8,µg/m³
+Paris,FR,2019-05-27 02:00:00+00:00,FR04014,no2,5.9,µg/m³
+Paris,FR,2019-05-27 01:00:00+00:00,FR04014,no2,7.1,µg/m³
+Paris,FR,2019-05-27 00:00:00+00:00,FR04014,no2,9.5,µg/m³
+Paris,FR,2019-05-26 23:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-05-26 22:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-05-26 21:00:00+00:00,FR04014,no2,16.1,µg/m³
+Paris,FR,2019-05-26 20:00:00+00:00,FR04014,no2,16.6,µg/m³
+Paris,FR,2019-05-26 19:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-05-26 18:00:00+00:00,FR04014,no2,22.8,µg/m³
+Paris,FR,2019-05-26 17:00:00+00:00,FR04014,no2,17.3,µg/m³
+Paris,FR,2019-05-26 16:00:00+00:00,FR04014,no2,17.1,µg/m³
+Paris,FR,2019-05-26 15:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-05-26 14:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-05-26 13:00:00+00:00,FR04014,no2,12.5,µg/m³
+Paris,FR,2019-05-26 12:00:00+00:00,FR04014,no2,11.5,µg/m³
+Paris,FR,2019-05-26 11:00:00+00:00,FR04014,no2,13.3,µg/m³
+Paris,FR,2019-05-26 10:00:00+00:00,FR04014,no2,11.3,µg/m³
+Paris,FR,2019-05-26 09:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-05-26 08:00:00+00:00,FR04014,no2,11.0,µg/m³
+Paris,FR,2019-05-26 07:00:00+00:00,FR04014,no2,13.4,µg/m³
+Paris,FR,2019-05-26 06:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-05-26 05:00:00+00:00,FR04014,no2,16.8,µg/m³
+Paris,FR,2019-05-26 04:00:00+00:00,FR04014,no2,22.3,µg/m³
+Paris,FR,2019-05-26 03:00:00+00:00,FR04014,no2,22.9,µg/m³
+Paris,FR,2019-05-26 02:00:00+00:00,FR04014,no2,23.4,µg/m³
+Paris,FR,2019-05-26 01:00:00+00:00,FR04014,no2,49.8,µg/m³
+Paris,FR,2019-05-26 00:00:00+00:00,FR04014,no2,67.0,µg/m³
+Paris,FR,2019-05-25 23:00:00+00:00,FR04014,no2,70.2,µg/m³
+Paris,FR,2019-05-25 22:00:00+00:00,FR04014,no2,63.9,µg/m³
+Paris,FR,2019-05-25 21:00:00+00:00,FR04014,no2,39.5,µg/m³
+Paris,FR,2019-05-25 20:00:00+00:00,FR04014,no2,43.6,µg/m³
+Paris,FR,2019-05-25 19:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-25 18:00:00+00:00,FR04014,no2,30.4,µg/m³
+Paris,FR,2019-05-25 17:00:00+00:00,FR04014,no2,20.6,µg/m³
+Paris,FR,2019-05-25 16:00:00+00:00,FR04014,no2,31.9,µg/m³
+Paris,FR,2019-05-25 15:00:00+00:00,FR04014,no2,30.0,µg/m³
+Paris,FR,2019-05-25 14:00:00+00:00,FR04014,no2,23.6,µg/m³
+Paris,FR,2019-05-25 13:00:00+00:00,FR04014,no2,26.1,µg/m³
+Paris,FR,2019-05-25 12:00:00+00:00,FR04014,no2,18.6,µg/m³
+Paris,FR,2019-05-25 11:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-05-25 10:00:00+00:00,FR04014,no2,26.3,µg/m³
+Paris,FR,2019-05-25 09:00:00+00:00,FR04014,no2,33.6,µg/m³
+Paris,FR,2019-05-25 08:00:00+00:00,FR04014,no2,44.5,µg/m³
+Paris,FR,2019-05-25 07:00:00+00:00,FR04014,no2,42.1,µg/m³
+Paris,FR,2019-05-25 06:00:00+00:00,FR04014,no2,36.9,µg/m³
+Paris,FR,2019-05-25 02:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-05-25 01:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-05-25 00:00:00+00:00,FR04014,no2,17.4,µg/m³
+Paris,FR,2019-05-24 23:00:00+00:00,FR04014,no2,16.5,µg/m³
+Paris,FR,2019-05-24 22:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-05-24 21:00:00+00:00,FR04014,no2,18.1,µg/m³
+Paris,FR,2019-05-24 20:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-05-24 19:00:00+00:00,FR04014,no2,21.9,µg/m³
+Paris,FR,2019-05-24 18:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-05-24 17:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-05-24 16:00:00+00:00,FR04014,no2,27.3,µg/m³
+Paris,FR,2019-05-24 15:00:00+00:00,FR04014,no2,22.7,µg/m³
+Paris,FR,2019-05-24 14:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-05-24 13:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-24 12:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-05-24 11:00:00+00:00,FR04014,no2,40.6,µg/m³
+Paris,FR,2019-05-24 10:00:00+00:00,FR04014,no2,28.6,µg/m³
+Paris,FR,2019-05-24 09:00:00+00:00,FR04014,no2,37.9,µg/m³
+Paris,FR,2019-05-24 08:00:00+00:00,FR04014,no2,45.9,µg/m³
+Paris,FR,2019-05-24 07:00:00+00:00,FR04014,no2,54.8,µg/m³
+Paris,FR,2019-05-24 06:00:00+00:00,FR04014,no2,40.7,µg/m³
+Paris,FR,2019-05-24 05:00:00+00:00,FR04014,no2,35.9,µg/m³
+Paris,FR,2019-05-24 04:00:00+00:00,FR04014,no2,28.1,µg/m³
+Paris,FR,2019-05-24 03:00:00+00:00,FR04014,no2,19.4,µg/m³
+Paris,FR,2019-05-24 02:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-05-24 01:00:00+00:00,FR04014,no2,28.8,µg/m³
+Paris,FR,2019-05-24 00:00:00+00:00,FR04014,no2,32.8,µg/m³
+Paris,FR,2019-05-23 23:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-05-23 22:00:00+00:00,FR04014,no2,61.9,µg/m³
+Paris,FR,2019-05-23 21:00:00+00:00,FR04014,no2,47.0,µg/m³
+Paris,FR,2019-05-23 20:00:00+00:00,FR04014,no2,33.8,µg/m³
+Paris,FR,2019-05-23 19:00:00+00:00,FR04014,no2,28.0,µg/m³
+Paris,FR,2019-05-23 18:00:00+00:00,FR04014,no2,23.5,µg/m³
+Paris,FR,2019-05-23 17:00:00+00:00,FR04014,no2,22.7,µg/m³
+Paris,FR,2019-05-23 16:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-05-23 15:00:00+00:00,FR04014,no2,17.5,µg/m³
+Paris,FR,2019-05-23 14:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-05-23 13:00:00+00:00,FR04014,no2,21.2,µg/m³
+Paris,FR,2019-05-23 12:00:00+00:00,FR04014,no2,16.4,µg/m³
+Paris,FR,2019-05-23 11:00:00+00:00,FR04014,no2,17.0,µg/m³
+Paris,FR,2019-05-23 10:00:00+00:00,FR04014,no2,28.3,µg/m³
+Paris,FR,2019-05-23 09:00:00+00:00,FR04014,no2,79.4,µg/m³
+Paris,FR,2019-05-23 08:00:00+00:00,FR04014,no2,97.0,µg/m³
+Paris,FR,2019-05-23 07:00:00+00:00,FR04014,no2,91.8,µg/m³
+Paris,FR,2019-05-23 06:00:00+00:00,FR04014,no2,79.6,µg/m³
+Paris,FR,2019-05-23 05:00:00+00:00,FR04014,no2,68.7,µg/m³
+Paris,FR,2019-05-23 04:00:00+00:00,FR04014,no2,71.9,µg/m³
+Paris,FR,2019-05-23 03:00:00+00:00,FR04014,no2,76.8,µg/m³
+Paris,FR,2019-05-23 02:00:00+00:00,FR04014,no2,66.6,µg/m³
+Paris,FR,2019-05-23 01:00:00+00:00,FR04014,no2,53.1,µg/m³
+Paris,FR,2019-05-23 00:00:00+00:00,FR04014,no2,53.3,µg/m³
+Paris,FR,2019-05-22 23:00:00+00:00,FR04014,no2,62.1,µg/m³
+Paris,FR,2019-05-22 22:00:00+00:00,FR04014,no2,29.8,µg/m³
+Paris,FR,2019-05-22 21:00:00+00:00,FR04014,no2,37.7,µg/m³
+Paris,FR,2019-05-22 20:00:00+00:00,FR04014,no2,44.9,µg/m³
+Paris,FR,2019-05-22 19:00:00+00:00,FR04014,no2,36.2,µg/m³
+Paris,FR,2019-05-22 18:00:00+00:00,FR04014,no2,34.1,µg/m³
+Paris,FR,2019-05-22 17:00:00+00:00,FR04014,no2,36.1,µg/m³
+Paris,FR,2019-05-22 16:00:00+00:00,FR04014,no2,34.9,µg/m³
+Paris,FR,2019-05-22 15:00:00+00:00,FR04014,no2,33.2,µg/m³
+Paris,FR,2019-05-22 14:00:00+00:00,FR04014,no2,40.0,µg/m³
+Paris,FR,2019-05-22 13:00:00+00:00,FR04014,no2,38.5,µg/m³
+Paris,FR,2019-05-22 12:00:00+00:00,FR04014,no2,42.2,µg/m³
+Paris,FR,2019-05-22 11:00:00+00:00,FR04014,no2,42.6,µg/m³
+Paris,FR,2019-05-22 10:00:00+00:00,FR04014,no2,57.8,µg/m³
+Paris,FR,2019-05-22 09:00:00+00:00,FR04014,no2,63.1,µg/m³
+Paris,FR,2019-05-22 08:00:00+00:00,FR04014,no2,70.8,µg/m³
+Paris,FR,2019-05-22 07:00:00+00:00,FR04014,no2,75.4,µg/m³
+Paris,FR,2019-05-22 06:00:00+00:00,FR04014,no2,75.7,µg/m³
+Paris,FR,2019-05-22 05:00:00+00:00,FR04014,no2,45.1,µg/m³
+Paris,FR,2019-05-22 04:00:00+00:00,FR04014,no2,33.7,µg/m³
+Paris,FR,2019-05-22 03:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-05-22 02:00:00+00:00,FR04014,no2,19.2,µg/m³
+Paris,FR,2019-05-22 01:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-05-22 00:00:00+00:00,FR04014,no2,27.1,µg/m³
+Paris,FR,2019-05-21 23:00:00+00:00,FR04014,no2,29.5,µg/m³
+Paris,FR,2019-05-21 22:00:00+00:00,FR04014,no2,33.2,µg/m³
+Paris,FR,2019-05-21 21:00:00+00:00,FR04014,no2,43.0,µg/m³
+Paris,FR,2019-05-21 20:00:00+00:00,FR04014,no2,40.8,µg/m³
+Paris,FR,2019-05-21 19:00:00+00:00,FR04014,no2,50.0,µg/m³
+Paris,FR,2019-05-21 18:00:00+00:00,FR04014,no2,54.3,µg/m³
+Paris,FR,2019-05-21 17:00:00+00:00,FR04014,no2,75.0,µg/m³
+Paris,FR,2019-05-21 16:00:00+00:00,FR04014,no2,42.3,µg/m³
+Paris,FR,2019-05-21 15:00:00+00:00,FR04014,no2,36.6,µg/m³
+Paris,FR,2019-05-21 14:00:00+00:00,FR04014,no2,47.8,µg/m³
+Paris,FR,2019-05-21 13:00:00+00:00,FR04014,no2,49.7,µg/m³
+Paris,FR,2019-05-21 12:00:00+00:00,FR04014,no2,30.5,µg/m³
+Paris,FR,2019-05-21 11:00:00+00:00,FR04014,no2,25.5,µg/m³
+Paris,FR,2019-05-21 10:00:00+00:00,FR04014,no2,30.4,µg/m³
+Paris,FR,2019-05-21 09:00:00+00:00,FR04014,no2,48.1,µg/m³
+Paris,FR,2019-05-21 08:00:00+00:00,FR04014,no2,54.2,µg/m³
+Paris,FR,2019-05-21 07:00:00+00:00,FR04014,no2,56.0,µg/m³
+Paris,FR,2019-05-21 06:00:00+00:00,FR04014,no2,62.6,µg/m³
+Paris,FR,2019-05-21 05:00:00+00:00,FR04014,no2,38.0,µg/m³
+Paris,FR,2019-05-21 04:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-05-21 03:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-05-21 02:00:00+00:00,FR04014,no2,17.7,µg/m³
+Paris,FR,2019-05-21 01:00:00+00:00,FR04014,no2,16.3,µg/m³
+Paris,FR,2019-05-21 00:00:00+00:00,FR04014,no2,16.9,µg/m³
+Paris,FR,2019-05-20 23:00:00+00:00,FR04014,no2,19.6,µg/m³
+Paris,FR,2019-05-20 22:00:00+00:00,FR04014,no2,20.7,µg/m³
+Paris,FR,2019-05-20 21:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-05-20 20:00:00+00:00,FR04014,no2,21.6,µg/m³
+Paris,FR,2019-05-20 19:00:00+00:00,FR04014,no2,21.3,µg/m³
+Paris,FR,2019-05-20 18:00:00+00:00,FR04014,no2,32.2,µg/m³
+Paris,FR,2019-05-20 17:00:00+00:00,FR04014,no2,24.6,µg/m³
+Paris,FR,2019-05-20 16:00:00+00:00,FR04014,no2,32.4,µg/m³
+Paris,FR,2019-05-20 15:00:00+00:00,FR04014,no2,26.5,µg/m³
+Paris,FR,2019-05-20 14:00:00+00:00,FR04014,no2,27.5,µg/m³
+Paris,FR,2019-05-20 13:00:00+00:00,FR04014,no2,23.7,µg/m³
+Paris,FR,2019-05-20 12:00:00+00:00,FR04014,no2,23.8,µg/m³
+Paris,FR,2019-05-20 11:00:00+00:00,FR04014,no2,35.4,µg/m³
+Paris,FR,2019-05-20 10:00:00+00:00,FR04014,no2,43.9,µg/m³
+Paris,FR,2019-05-20 09:00:00+00:00,FR04014,no2,45.5,µg/m³
+Paris,FR,2019-05-20 08:00:00+00:00,FR04014,no2,46.1,µg/m³
+Paris,FR,2019-05-20 07:00:00+00:00,FR04014,no2,46.9,µg/m³
+Paris,FR,2019-05-20 06:00:00+00:00,FR04014,no2,40.1,µg/m³
+Paris,FR,2019-05-20 05:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-05-20 04:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-05-20 03:00:00+00:00,FR04014,no2,12.6,µg/m³
+Paris,FR,2019-05-20 02:00:00+00:00,FR04014,no2,12.1,µg/m³
+Paris,FR,2019-05-20 01:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-05-20 00:00:00+00:00,FR04014,no2,16.4,µg/m³
+Paris,FR,2019-05-19 23:00:00+00:00,FR04014,no2,18.8,µg/m³
+Paris,FR,2019-05-19 22:00:00+00:00,FR04014,no2,22.2,µg/m³
+Paris,FR,2019-05-19 21:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-05-19 20:00:00+00:00,FR04014,no2,35.6,µg/m³
+Paris,FR,2019-05-19 19:00:00+00:00,FR04014,no2,51.2,µg/m³
+Paris,FR,2019-05-19 18:00:00+00:00,FR04014,no2,32.7,µg/m³
+Paris,FR,2019-05-19 17:00:00+00:00,FR04014,no2,33.9,µg/m³
+Paris,FR,2019-05-19 16:00:00+00:00,FR04014,no2,32.5,µg/m³
+Paris,FR,2019-05-19 15:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-05-19 14:00:00+00:00,FR04014,no2,23.8,µg/m³
+Paris,FR,2019-05-19 13:00:00+00:00,FR04014,no2,21.0,µg/m³
+Paris,FR,2019-05-19 12:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-05-19 11:00:00+00:00,FR04014,no2,32.6,µg/m³
+Paris,FR,2019-05-19 10:00:00+00:00,FR04014,no2,31.0,µg/m³
+Paris,FR,2019-05-19 09:00:00+00:00,FR04014,no2,33.0,µg/m³
+Paris,FR,2019-05-19 08:00:00+00:00,FR04014,no2,31.7,µg/m³
+Paris,FR,2019-05-19 07:00:00+00:00,FR04014,no2,32.4,µg/m³
+Paris,FR,2019-05-19 06:00:00+00:00,FR04014,no2,31.1,µg/m³
+Paris,FR,2019-05-19 05:00:00+00:00,FR04014,no2,40.9,µg/m³
+Paris,FR,2019-05-19 04:00:00+00:00,FR04014,no2,39.4,µg/m³
+Paris,FR,2019-05-19 03:00:00+00:00,FR04014,no2,36.4,µg/m³
+Paris,FR,2019-05-19 02:00:00+00:00,FR04014,no2,38.1,µg/m³
+Paris,FR,2019-05-19 01:00:00+00:00,FR04014,no2,34.9,µg/m³
+Paris,FR,2019-05-19 00:00:00+00:00,FR04014,no2,49.6,µg/m³
+Paris,FR,2019-05-18 23:00:00+00:00,FR04014,no2,50.2,µg/m³
+Paris,FR,2019-05-18 22:00:00+00:00,FR04014,no2,62.5,µg/m³
+Paris,FR,2019-05-18 21:00:00+00:00,FR04014,no2,59.3,µg/m³
+Paris,FR,2019-05-18 20:00:00+00:00,FR04014,no2,36.2,µg/m³
+Paris,FR,2019-05-18 19:00:00+00:00,FR04014,no2,67.5,µg/m³
+Paris,FR,2019-05-18 18:00:00+00:00,FR04014,no2,14.5,µg/m³
+Paris,FR,2019-05-18 17:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-05-18 16:00:00+00:00,FR04014,no2,14.6,µg/m³
+Paris,FR,2019-05-18 15:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-05-18 14:00:00+00:00,FR04014,no2,11.8,µg/m³
+Paris,FR,2019-05-18 13:00:00+00:00,FR04014,no2,10.5,µg/m³
+Paris,FR,2019-05-18 12:00:00+00:00,FR04014,no2,12.9,µg/m³
+Paris,FR,2019-05-18 11:00:00+00:00,FR04014,no2,17.5,µg/m³
+Paris,FR,2019-05-18 10:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-05-18 09:00:00+00:00,FR04014,no2,21.1,µg/m³
+Paris,FR,2019-05-18 08:00:00+00:00,FR04014,no2,20.4,µg/m³
+Paris,FR,2019-05-18 07:00:00+00:00,FR04014,no2,27.4,µg/m³
+Paris,FR,2019-05-18 06:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-18 05:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-05-18 04:00:00+00:00,FR04014,no2,16.6,µg/m³
+Paris,FR,2019-05-18 03:00:00+00:00,FR04014,no2,16.1,µg/m³
+Paris,FR,2019-05-18 02:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-05-18 01:00:00+00:00,FR04014,no2,37.4,µg/m³
+Paris,FR,2019-05-18 00:00:00+00:00,FR04014,no2,31.5,µg/m³
+Paris,FR,2019-05-17 23:00:00+00:00,FR04014,no2,34.1,µg/m³
+Paris,FR,2019-05-17 22:00:00+00:00,FR04014,no2,28.2,µg/m³
+Paris,FR,2019-05-17 21:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-17 20:00:00+00:00,FR04014,no2,23.5,µg/m³
+Paris,FR,2019-05-17 19:00:00+00:00,FR04014,no2,24.7,µg/m³
+Paris,FR,2019-05-17 18:00:00+00:00,FR04014,no2,33.6,µg/m³
+Paris,FR,2019-05-17 17:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-05-17 16:00:00+00:00,FR04014,no2,20.7,µg/m³
+Paris,FR,2019-05-17 15:00:00+00:00,FR04014,no2,22.2,µg/m³
+Paris,FR,2019-05-17 14:00:00+00:00,FR04014,no2,27.0,µg/m³
+Paris,FR,2019-05-17 13:00:00+00:00,FR04014,no2,37.9,µg/m³
+Paris,FR,2019-05-17 12:00:00+00:00,FR04014,no2,46.5,µg/m³
+Paris,FR,2019-05-17 11:00:00+00:00,FR04014,no2,43.1,µg/m³
+Paris,FR,2019-05-17 10:00:00+00:00,FR04014,no2,51.5,µg/m³
+Paris,FR,2019-05-17 09:00:00+00:00,FR04014,no2,60.5,µg/m³
+Paris,FR,2019-05-17 08:00:00+00:00,FR04014,no2,57.5,µg/m³
+Paris,FR,2019-05-17 07:00:00+00:00,FR04014,no2,55.0,µg/m³
+Paris,FR,2019-05-17 06:00:00+00:00,FR04014,no2,46.3,µg/m³
+Paris,FR,2019-05-17 05:00:00+00:00,FR04014,no2,34.0,µg/m³
+Paris,FR,2019-05-17 04:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-05-17 03:00:00+00:00,FR04014,no2,26.6,µg/m³
+Paris,FR,2019-05-17 02:00:00+00:00,FR04014,no2,24.6,µg/m³
+Paris,FR,2019-05-17 01:00:00+00:00,FR04014,no2,26.1,µg/m³
+Paris,FR,2019-05-17 00:00:00+00:00,FR04014,no2,46.3,µg/m³
+Paris,FR,2019-05-16 23:00:00+00:00,FR04014,no2,43.7,µg/m³
+Paris,FR,2019-05-16 22:00:00+00:00,FR04014,no2,37.1,µg/m³
+Paris,FR,2019-05-16 21:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-16 20:00:00+00:00,FR04014,no2,24.8,µg/m³
+Paris,FR,2019-05-16 19:00:00+00:00,FR04014,no2,14.4,µg/m³
+Paris,FR,2019-05-16 18:00:00+00:00,FR04014,no2,15.9,µg/m³
+Paris,FR,2019-05-16 17:00:00+00:00,FR04014,no2,13.5,µg/m³
+Paris,FR,2019-05-16 16:00:00+00:00,FR04014,no2,10.3,µg/m³
+Paris,FR,2019-05-16 15:00:00+00:00,FR04014,no2,10.1,µg/m³
+Paris,FR,2019-05-16 14:00:00+00:00,FR04014,no2,8.1,µg/m³
+Paris,FR,2019-05-16 13:00:00+00:00,FR04014,no2,8.5,µg/m³
+Paris,FR,2019-05-16 12:00:00+00:00,FR04014,no2,9.2,µg/m³
+Paris,FR,2019-05-16 11:00:00+00:00,FR04014,no2,10.5,µg/m³
+Paris,FR,2019-05-16 10:00:00+00:00,FR04014,no2,13.5,µg/m³
+Paris,FR,2019-05-16 09:00:00+00:00,FR04014,no2,29.5,µg/m³
+Paris,FR,2019-05-16 08:00:00+00:00,FR04014,no2,39.4,µg/m³
+Paris,FR,2019-05-16 07:00:00+00:00,FR04014,no2,40.0,µg/m³
+Paris,FR,2019-05-16 05:00:00+00:00,FR04014,no2,52.6,µg/m³
+Paris,FR,2019-05-16 04:00:00+00:00,FR04014,no2,37.0,µg/m³
+Paris,FR,2019-05-16 03:00:00+00:00,FR04014,no2,27.9,µg/m³
+Paris,FR,2019-05-16 02:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-05-16 01:00:00+00:00,FR04014,no2,26.0,µg/m³
+Paris,FR,2019-05-16 00:00:00+00:00,FR04014,no2,27.4,µg/m³
+Paris,FR,2019-05-15 23:00:00+00:00,FR04014,no2,30.9,µg/m³
+Paris,FR,2019-05-15 22:00:00+00:00,FR04014,no2,44.1,µg/m³
+Paris,FR,2019-05-15 21:00:00+00:00,FR04014,no2,36.0,µg/m³
+Paris,FR,2019-05-15 20:00:00+00:00,FR04014,no2,30.1,µg/m³
+Paris,FR,2019-05-15 19:00:00+00:00,FR04014,no2,20.3,µg/m³
+Paris,FR,2019-05-15 18:00:00+00:00,FR04014,no2,16.5,µg/m³
+Paris,FR,2019-05-15 17:00:00+00:00,FR04014,no2,12.9,µg/m³
+Paris,FR,2019-05-15 16:00:00+00:00,FR04014,no2,12.2,µg/m³
+Paris,FR,2019-05-15 15:00:00+00:00,FR04014,no2,12.9,µg/m³
+Paris,FR,2019-05-15 14:00:00+00:00,FR04014,no2,11.9,µg/m³
+Paris,FR,2019-05-15 13:00:00+00:00,FR04014,no2,10.0,µg/m³
+Paris,FR,2019-05-15 12:00:00+00:00,FR04014,no2,9.4,µg/m³
+Paris,FR,2019-05-15 11:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-05-15 10:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-05-15 09:00:00+00:00,FR04014,no2,0.0,µg/m³
+Paris,FR,2019-05-15 08:00:00+00:00,FR04014,no2,25.7,µg/m³
+Paris,FR,2019-05-15 07:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-05-15 06:00:00+00:00,FR04014,no2,48.1,µg/m³
+Paris,FR,2019-05-15 05:00:00+00:00,FR04014,no2,46.5,µg/m³
+Paris,FR,2019-05-15 04:00:00+00:00,FR04014,no2,28.9,µg/m³
+Paris,FR,2019-05-15 03:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-05-15 02:00:00+00:00,FR04014,no2,16.8,µg/m³
+Paris,FR,2019-05-15 01:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-05-15 00:00:00+00:00,FR04014,no2,18.8,µg/m³
+Paris,FR,2019-05-14 23:00:00+00:00,FR04014,no2,24.3,µg/m³
+Paris,FR,2019-05-14 22:00:00+00:00,FR04014,no2,30.9,µg/m³
+Paris,FR,2019-05-14 21:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-05-14 20:00:00+00:00,FR04014,no2,28.4,µg/m³
+Paris,FR,2019-05-14 19:00:00+00:00,FR04014,no2,23.3,µg/m³
+Paris,FR,2019-05-14 18:00:00+00:00,FR04014,no2,17.9,µg/m³
+Paris,FR,2019-05-14 17:00:00+00:00,FR04014,no2,17.7,µg/m³
+Paris,FR,2019-05-14 16:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-05-14 15:00:00+00:00,FR04014,no2,13.4,µg/m³
+Paris,FR,2019-05-14 14:00:00+00:00,FR04014,no2,15.2,µg/m³
+Paris,FR,2019-05-14 13:00:00+00:00,FR04014,no2,11.0,µg/m³
+Paris,FR,2019-05-14 12:00:00+00:00,FR04014,no2,10.2,µg/m³
+Paris,FR,2019-05-14 11:00:00+00:00,FR04014,no2,11.3,µg/m³
+Paris,FR,2019-05-14 10:00:00+00:00,FR04014,no2,12.9,µg/m³
+Paris,FR,2019-05-14 09:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-05-14 08:00:00+00:00,FR04014,no2,28.8,µg/m³
+Paris,FR,2019-05-14 07:00:00+00:00,FR04014,no2,41.3,µg/m³
+Paris,FR,2019-05-14 06:00:00+00:00,FR04014,no2,46.1,µg/m³
+Paris,FR,2019-05-14 05:00:00+00:00,FR04014,no2,38.6,µg/m³
+Paris,FR,2019-05-14 04:00:00+00:00,FR04014,no2,31.6,µg/m³
+Paris,FR,2019-05-14 03:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-14 02:00:00+00:00,FR04014,no2,19.0,µg/m³
+Paris,FR,2019-05-14 01:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-05-14 00:00:00+00:00,FR04014,no2,20.9,µg/m³
+Paris,FR,2019-05-13 23:00:00+00:00,FR04014,no2,22.8,µg/m³
+Paris,FR,2019-05-13 22:00:00+00:00,FR04014,no2,27.3,µg/m³
+Paris,FR,2019-05-13 21:00:00+00:00,FR04014,no2,30.4,µg/m³
+Paris,FR,2019-05-13 20:00:00+00:00,FR04014,no2,28.3,µg/m³
+Paris,FR,2019-05-13 19:00:00+00:00,FR04014,no2,23.9,µg/m³
+Paris,FR,2019-05-13 18:00:00+00:00,FR04014,no2,15.5,µg/m³
+Paris,FR,2019-05-13 17:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-05-13 16:00:00+00:00,FR04014,no2,12.1,µg/m³
+Paris,FR,2019-05-13 15:00:00+00:00,FR04014,no2,10.6,µg/m³
+Paris,FR,2019-05-13 14:00:00+00:00,FR04014,no2,10.7,µg/m³
+Paris,FR,2019-05-13 13:00:00+00:00,FR04014,no2,10.1,µg/m³
+Paris,FR,2019-05-13 12:00:00+00:00,FR04014,no2,9.2,µg/m³
+Paris,FR,2019-05-13 11:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-05-13 10:00:00+00:00,FR04014,no2,12.8,µg/m³
+Paris,FR,2019-05-13 09:00:00+00:00,FR04014,no2,20.6,µg/m³
+Paris,FR,2019-05-13 08:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-05-13 07:00:00+00:00,FR04014,no2,41.0,µg/m³
+Paris,FR,2019-05-13 06:00:00+00:00,FR04014,no2,45.2,µg/m³
+Paris,FR,2019-05-13 05:00:00+00:00,FR04014,no2,38.3,µg/m³
+Paris,FR,2019-05-13 04:00:00+00:00,FR04014,no2,25.1,µg/m³
+Paris,FR,2019-05-13 03:00:00+00:00,FR04014,no2,18.9,µg/m³
+Paris,FR,2019-05-13 02:00:00+00:00,FR04014,no2,18.5,µg/m³
+Paris,FR,2019-05-13 01:00:00+00:00,FR04014,no2,18.9,µg/m³
+Paris,FR,2019-05-13 00:00:00+00:00,FR04014,no2,25.0,µg/m³
+Paris,FR,2019-05-12 23:00:00+00:00,FR04014,no2,32.5,µg/m³
+Paris,FR,2019-05-12 22:00:00+00:00,FR04014,no2,46.5,µg/m³
+Paris,FR,2019-05-12 21:00:00+00:00,FR04014,no2,34.2,µg/m³
+Paris,FR,2019-05-12 20:00:00+00:00,FR04014,no2,24.1,µg/m³
+Paris,FR,2019-05-12 19:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-05-12 18:00:00+00:00,FR04014,no2,18.2,µg/m³
+Paris,FR,2019-05-12 17:00:00+00:00,FR04014,no2,13.9,µg/m³
+Paris,FR,2019-05-12 16:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-05-12 15:00:00+00:00,FR04014,no2,9.6,µg/m³
+Paris,FR,2019-05-12 14:00:00+00:00,FR04014,no2,9.1,µg/m³
+Paris,FR,2019-05-12 13:00:00+00:00,FR04014,no2,8.7,µg/m³
+Paris,FR,2019-05-12 12:00:00+00:00,FR04014,no2,10.9,µg/m³
+Paris,FR,2019-05-12 11:00:00+00:00,FR04014,no2,11.4,µg/m³
+Paris,FR,2019-05-12 10:00:00+00:00,FR04014,no2,11.4,µg/m³
+Paris,FR,2019-05-12 09:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-05-12 08:00:00+00:00,FR04014,no2,14.6,µg/m³
+Paris,FR,2019-05-12 07:00:00+00:00,FR04014,no2,15.9,µg/m³
+Paris,FR,2019-05-12 06:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-05-12 05:00:00+00:00,FR04014,no2,19.2,µg/m³
+Paris,FR,2019-05-12 04:00:00+00:00,FR04014,no2,16.2,µg/m³
+Paris,FR,2019-05-12 03:00:00+00:00,FR04014,no2,16.0,µg/m³
+Paris,FR,2019-05-12 02:00:00+00:00,FR04014,no2,17.2,µg/m³
+Paris,FR,2019-05-12 01:00:00+00:00,FR04014,no2,19.2,µg/m³
+Paris,FR,2019-05-12 00:00:00+00:00,FR04014,no2,22.8,µg/m³
+Paris,FR,2019-05-11 23:00:00+00:00,FR04014,no2,26.4,µg/m³
+Paris,FR,2019-05-11 22:00:00+00:00,FR04014,no2,27.7,µg/m³
+Paris,FR,2019-05-11 21:00:00+00:00,FR04014,no2,21.1,µg/m³
+Paris,FR,2019-05-11 20:00:00+00:00,FR04014,no2,24.2,µg/m³
+Paris,FR,2019-05-11 19:00:00+00:00,FR04014,no2,31.2,µg/m³
+Paris,FR,2019-05-11 18:00:00+00:00,FR04014,no2,33.1,µg/m³
+Paris,FR,2019-05-11 17:00:00+00:00,FR04014,no2,32.0,µg/m³
+Paris,FR,2019-05-11 16:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-05-11 15:00:00+00:00,FR04014,no2,18.0,µg/m³
+Paris,FR,2019-05-11 14:00:00+00:00,FR04014,no2,17.8,µg/m³
+Paris,FR,2019-05-11 13:00:00+00:00,FR04014,no2,30.8,µg/m³
+Paris,FR,2019-05-11 12:00:00+00:00,FR04014,no2,30.2,µg/m³
+Paris,FR,2019-05-11 11:00:00+00:00,FR04014,no2,33.2,µg/m³
+Paris,FR,2019-05-11 10:00:00+00:00,FR04014,no2,36.8,µg/m³
+Paris,FR,2019-05-11 09:00:00+00:00,FR04014,no2,35.7,µg/m³
+Paris,FR,2019-05-11 08:00:00+00:00,FR04014,no2,32.1,µg/m³
+Paris,FR,2019-05-11 07:00:00+00:00,FR04014,no2,29.0,µg/m³
+Paris,FR,2019-05-11 06:00:00+00:00,FR04014,no2,28.9,µg/m³
+Paris,FR,2019-05-11 02:00:00+00:00,FR04014,no2,14.9,µg/m³
+Paris,FR,2019-05-11 01:00:00+00:00,FR04014,no2,15.5,µg/m³
+Paris,FR,2019-05-11 00:00:00+00:00,FR04014,no2,24.8,µg/m³
+Paris,FR,2019-05-10 23:00:00+00:00,FR04014,no2,26.0,µg/m³
+Paris,FR,2019-05-10 22:00:00+00:00,FR04014,no2,28.1,µg/m³
+Paris,FR,2019-05-10 21:00:00+00:00,FR04014,no2,37.0,µg/m³
+Paris,FR,2019-05-10 20:00:00+00:00,FR04014,no2,43.6,µg/m³
+Paris,FR,2019-05-10 19:00:00+00:00,FR04014,no2,39.3,µg/m³
+Paris,FR,2019-05-10 18:00:00+00:00,FR04014,no2,33.4,µg/m³
+Paris,FR,2019-05-10 17:00:00+00:00,FR04014,no2,37.8,µg/m³
+Paris,FR,2019-05-10 16:00:00+00:00,FR04014,no2,30.8,µg/m³
+Paris,FR,2019-05-10 15:00:00+00:00,FR04014,no2,29.6,µg/m³
+Paris,FR,2019-05-10 14:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-05-10 13:00:00+00:00,FR04014,no2,22.0,µg/m³
+Paris,FR,2019-05-10 12:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-05-10 11:00:00+00:00,FR04014,no2,23.2,µg/m³
+Paris,FR,2019-05-10 10:00:00+00:00,FR04014,no2,35.1,µg/m³
+Paris,FR,2019-05-10 09:00:00+00:00,FR04014,no2,53.4,µg/m³
+Paris,FR,2019-05-10 08:00:00+00:00,FR04014,no2,60.7,µg/m³
+Paris,FR,2019-05-10 07:00:00+00:00,FR04014,no2,57.3,µg/m³
+Paris,FR,2019-05-10 06:00:00+00:00,FR04014,no2,47.4,µg/m³
+Paris,FR,2019-05-10 05:00:00+00:00,FR04014,no2,37.8,µg/m³
+Paris,FR,2019-05-10 04:00:00+00:00,FR04014,no2,20.5,µg/m³
+Paris,FR,2019-05-10 03:00:00+00:00,FR04014,no2,15.0,µg/m³
+Paris,FR,2019-05-10 02:00:00+00:00,FR04014,no2,14.1,µg/m³
+Paris,FR,2019-05-10 01:00:00+00:00,FR04014,no2,19.1,µg/m³
+Paris,FR,2019-05-10 00:00:00+00:00,FR04014,no2,22.7,µg/m³
+Paris,FR,2019-05-09 23:00:00+00:00,FR04014,no2,26.7,µg/m³
+Paris,FR,2019-05-09 22:00:00+00:00,FR04014,no2,29.7,µg/m³
+Paris,FR,2019-05-09 21:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-05-09 20:00:00+00:00,FR04014,no2,29.2,µg/m³
+Paris,FR,2019-05-09 19:00:00+00:00,FR04014,no2,23.8,µg/m³
+Paris,FR,2019-05-09 18:00:00+00:00,FR04014,no2,24.4,µg/m³
+Paris,FR,2019-05-09 17:00:00+00:00,FR04014,no2,29.9,µg/m³
+Paris,FR,2019-05-09 16:00:00+00:00,FR04014,no2,27.0,µg/m³
+Paris,FR,2019-05-09 15:00:00+00:00,FR04014,no2,23.9,µg/m³
+Paris,FR,2019-05-09 14:00:00+00:00,FR04014,no2,24.6,µg/m³
+Paris,FR,2019-05-09 13:00:00+00:00,FR04014,no2,21.3,µg/m³
+Paris,FR,2019-05-09 12:00:00+00:00,FR04014,no2,35.1,µg/m³
+Paris,FR,2019-05-09 11:00:00+00:00,FR04014,no2,34.2,µg/m³
+Paris,FR,2019-05-09 10:00:00+00:00,FR04014,no2,43.1,µg/m³
+Paris,FR,2019-05-09 09:00:00+00:00,FR04014,no2,32.3,µg/m³
+Paris,FR,2019-05-09 08:00:00+00:00,FR04014,no2,32.2,µg/m³
+Paris,FR,2019-05-09 07:00:00+00:00,FR04014,no2,49.0,µg/m³
+Paris,FR,2019-05-09 06:00:00+00:00,FR04014,no2,50.7,µg/m³
+Paris,FR,2019-05-09 05:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-05-09 04:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-05-09 03:00:00+00:00,FR04014,no2,10.4,µg/m³
+Paris,FR,2019-05-09 02:00:00+00:00,FR04014,no2,10.0,µg/m³
+Paris,FR,2019-05-09 01:00:00+00:00,FR04014,no2,10.6,µg/m³
+Paris,FR,2019-05-09 00:00:00+00:00,FR04014,no2,14.7,µg/m³
+Paris,FR,2019-05-08 23:00:00+00:00,FR04014,no2,25.2,µg/m³
+Paris,FR,2019-05-08 22:00:00+00:00,FR04014,no2,32.2,µg/m³
+Paris,FR,2019-05-08 21:00:00+00:00,FR04014,no2,48.9,µg/m³
+Paris,FR,2019-05-08 20:00:00+00:00,FR04014,no2,38.3,µg/m³
+Paris,FR,2019-05-08 19:00:00+00:00,FR04014,no2,41.3,µg/m³
+Paris,FR,2019-05-08 18:00:00+00:00,FR04014,no2,27.8,µg/m³
+Paris,FR,2019-05-08 17:00:00+00:00,FR04014,no2,29.3,µg/m³
+Paris,FR,2019-05-08 16:00:00+00:00,FR04014,no2,38.6,µg/m³
+Paris,FR,2019-05-08 15:00:00+00:00,FR04014,no2,26.0,µg/m³
+Paris,FR,2019-05-08 14:00:00+00:00,FR04014,no2,25.3,µg/m³
+Paris,FR,2019-05-08 13:00:00+00:00,FR04014,no2,14.3,µg/m³
+Paris,FR,2019-05-08 12:00:00+00:00,FR04014,no2,15.1,µg/m³
+Paris,FR,2019-05-08 11:00:00+00:00,FR04014,no2,21.4,µg/m³
+Paris,FR,2019-05-08 10:00:00+00:00,FR04014,no2,33.4,µg/m³
+Paris,FR,2019-05-08 09:00:00+00:00,FR04014,no2,19.7,µg/m³
+Paris,FR,2019-05-08 08:00:00+00:00,FR04014,no2,17.0,µg/m³
+Paris,FR,2019-05-08 07:00:00+00:00,FR04014,no2,19.5,µg/m³
+Paris,FR,2019-05-08 06:00:00+00:00,FR04014,no2,21.7,µg/m³
+Paris,FR,2019-05-08 05:00:00+00:00,FR04014,no2,19.3,µg/m³
+Paris,FR,2019-05-08 04:00:00+00:00,FR04014,no2,15.5,µg/m³
+Paris,FR,2019-05-08 03:00:00+00:00,FR04014,no2,13.5,µg/m³
+Paris,FR,2019-05-08 02:00:00+00:00,FR04014,no2,15.3,µg/m³
+Paris,FR,2019-05-08 01:00:00+00:00,FR04014,no2,19.6,µg/m³
+Paris,FR,2019-05-08 00:00:00+00:00,FR04014,no2,22.1,µg/m³
+Paris,FR,2019-05-07 23:00:00+00:00,FR04014,no2,34.0,µg/m³
+Paris,FR,2019-05-07 22:00:00+00:00,FR04014,no2,35.8,µg/m³
+Paris,FR,2019-05-07 21:00:00+00:00,FR04014,no2,33.9,µg/m³
+Paris,FR,2019-05-07 20:00:00+00:00,FR04014,no2,36.2,µg/m³
+Paris,FR,2019-05-07 19:00:00+00:00,FR04014,no2,26.8,µg/m³
+Paris,FR,2019-05-07 18:00:00+00:00,FR04014,no2,21.4,µg/m³
+Paris,FR,2019-05-07 17:00:00+00:00,FR04014,no2,22.3,µg/m³
+Paris,FR,2019-05-07 16:00:00+00:00,FR04014,no2,18.2,µg/m³
+Paris,FR,2019-05-07 15:00:00+00:00,FR04014,no2,11.7,µg/m³
+Paris,FR,2019-05-07 14:00:00+00:00,FR04014,no2,11.0,µg/m³
+Paris,FR,2019-05-07 13:00:00+00:00,FR04014,no2,13.2,µg/m³
+Paris,FR,2019-05-07 12:00:00+00:00,FR04014,no2,10.6,µg/m³
+Paris,FR,2019-05-07 11:00:00+00:00,FR04014,no2,13.0,µg/m³
+Paris,FR,2019-05-07 10:00:00+00:00,FR04014,no2,20.1,µg/m³
+Paris,FR,2019-05-07 09:00:00+00:00,FR04014,no2,34.5,µg/m³
+Paris,FR,2019-05-07 08:00:00+00:00,FR04014,no2,56.0,µg/m³
+Paris,FR,2019-05-07 07:00:00+00:00,FR04014,no2,67.9,µg/m³
+Paris,FR,2019-05-07 06:00:00+00:00,FR04014,no2,77.7,µg/m³
+Paris,FR,2019-05-07 05:00:00+00:00,FR04014,no2,72.4,µg/m³
+Paris,FR,2019-05-07 04:00:00+00:00,FR04014,no2,61.9,µg/m³
+Paris,FR,2019-05-07 03:00:00+00:00,FR04014,no2,50.4,µg/m³
+Paris,FR,2019-05-07 02:00:00+00:00,FR04014,no2,27.7,µg/m³
+Paris,FR,2019-05-07 01:00:00+00:00,FR04014,no2,25.0,µg/m³
+Antwerpen,BE,2019-06-17 08:00:00+00:00,BETR801,no2,41.0,µg/m³
+Antwerpen,BE,2019-06-17 07:00:00+00:00,BETR801,no2,45.0,µg/m³
+Antwerpen,BE,2019-06-17 06:00:00+00:00,BETR801,no2,43.5,µg/m³
+Antwerpen,BE,2019-06-17 05:00:00+00:00,BETR801,no2,42.5,µg/m³
+Antwerpen,BE,2019-06-17 04:00:00+00:00,BETR801,no2,39.5,µg/m³
+Antwerpen,BE,2019-06-17 03:00:00+00:00,BETR801,no2,36.0,µg/m³
+Antwerpen,BE,2019-06-17 02:00:00+00:00,BETR801,no2,35.5,µg/m³
+Antwerpen,BE,2019-06-17 01:00:00+00:00,BETR801,no2,42.0,µg/m³
+Antwerpen,BE,2019-06-16 01:00:00+00:00,BETR801,no2,42.5,µg/m³
+Antwerpen,BE,2019-06-15 01:00:00+00:00,BETR801,no2,17.5,µg/m³
+Antwerpen,BE,2019-06-14 09:00:00+00:00,BETR801,no2,36.5,µg/m³
+Antwerpen,BE,2019-06-13 01:00:00+00:00,BETR801,no2,28.5,µg/m³
+Antwerpen,BE,2019-06-12 01:00:00+00:00,BETR801,no2,21.0,µg/m³
+Antwerpen,BE,2019-06-11 01:00:00+00:00,BETR801,no2,7.5,µg/m³
+Antwerpen,BE,2019-06-10 01:00:00+00:00,BETR801,no2,18.5,µg/m³
+Antwerpen,BE,2019-06-09 01:00:00+00:00,BETR801,no2,10.0,µg/m³
+Antwerpen,BE,2019-06-05 01:00:00+00:00,BETR801,no2,15.0,µg/m³
+Antwerpen,BE,2019-06-01 01:00:00+00:00,BETR801,no2,52.5,µg/m³
+Antwerpen,BE,2019-05-31 01:00:00+00:00,BETR801,no2,9.0,µg/m³
+Antwerpen,BE,2019-05-30 01:00:00+00:00,BETR801,no2,7.5,µg/m³
+Antwerpen,BE,2019-05-29 01:00:00+00:00,BETR801,no2,21.0,µg/m³
+Antwerpen,BE,2019-05-28 01:00:00+00:00,BETR801,no2,11.0,µg/m³
+Antwerpen,BE,2019-05-27 01:00:00+00:00,BETR801,no2,10.5,µg/m³
+Antwerpen,BE,2019-05-26 01:00:00+00:00,BETR801,no2,53.0,µg/m³
+Antwerpen,BE,2019-05-25 01:00:00+00:00,BETR801,no2,29.0,µg/m³
+Antwerpen,BE,2019-05-24 01:00:00+00:00,BETR801,no2,74.5,µg/m³
+Antwerpen,BE,2019-05-23 01:00:00+00:00,BETR801,no2,60.5,µg/m³
+Antwerpen,BE,2019-05-22 01:00:00+00:00,BETR801,no2,20.5,µg/m³
+Antwerpen,BE,2019-05-21 01:00:00+00:00,BETR801,no2,15.5,µg/m³
+Antwerpen,BE,2019-05-20 15:00:00+00:00,BETR801,no2,25.5,µg/m³
+Antwerpen,BE,2019-05-20 14:00:00+00:00,BETR801,no2,24.5,µg/m³
+Antwerpen,BE,2019-05-20 13:00:00+00:00,BETR801,no2,32.0,µg/m³
+Antwerpen,BE,2019-05-20 12:00:00+00:00,BETR801,no2,34.5,µg/m³
+Antwerpen,BE,2019-05-20 11:00:00+00:00,BETR801,no2,25.0,µg/m³
+Antwerpen,BE,2019-05-20 10:00:00+00:00,BETR801,no2,25.0,µg/m³
+Antwerpen,BE,2019-05-20 09:00:00+00:00,BETR801,no2,30.5,µg/m³
+Antwerpen,BE,2019-05-20 08:00:00+00:00,BETR801,no2,40.0,µg/m³
+Antwerpen,BE,2019-05-20 07:00:00+00:00,BETR801,no2,38.0,µg/m³
+Antwerpen,BE,2019-05-20 06:00:00+00:00,BETR801,no2,26.0,µg/m³
+Antwerpen,BE,2019-05-20 05:00:00+00:00,BETR801,no2,20.0,µg/m³
+Antwerpen,BE,2019-05-20 04:00:00+00:00,BETR801,no2,14.0,µg/m³
+Antwerpen,BE,2019-05-20 03:00:00+00:00,BETR801,no2,9.0,µg/m³
+Antwerpen,BE,2019-05-20 02:00:00+00:00,BETR801,no2,10.5,µg/m³
+Antwerpen,BE,2019-05-20 01:00:00+00:00,BETR801,no2,17.0,µg/m³
+Antwerpen,BE,2019-05-20 00:00:00+00:00,BETR801,no2,26.0,µg/m³
+Antwerpen,BE,2019-05-19 23:00:00+00:00,BETR801,no2,16.5,µg/m³
+Antwerpen,BE,2019-05-19 22:00:00+00:00,BETR801,no2,18.5,µg/m³
+Antwerpen,BE,2019-05-19 21:00:00+00:00,BETR801,no2,12.5,µg/m³
+Antwerpen,BE,2019-05-19 20:00:00+00:00,BETR801,no2,15.0,µg/m³
+Antwerpen,BE,2019-05-19 19:00:00+00:00,BETR801,no2,26.0,µg/m³
+Antwerpen,BE,2019-05-19 18:00:00+00:00,BETR801,no2,15.5,µg/m³
+Antwerpen,BE,2019-05-19 17:00:00+00:00,BETR801,no2,18.5,µg/m³
+Antwerpen,BE,2019-05-19 16:00:00+00:00,BETR801,no2,17.5,µg/m³
+Antwerpen,BE,2019-05-19 15:00:00+00:00,BETR801,no2,33.0,µg/m³
+Antwerpen,BE,2019-05-19 14:00:00+00:00,BETR801,no2,23.0,µg/m³
+Antwerpen,BE,2019-05-19 13:00:00+00:00,BETR801,no2,14.5,µg/m³
+Antwerpen,BE,2019-05-19 12:00:00+00:00,BETR801,no2,16.0,µg/m³
+Antwerpen,BE,2019-05-19 11:00:00+00:00,BETR801,no2,17.0,µg/m³
+Antwerpen,BE,2019-05-19 10:00:00+00:00,BETR801,no2,17.5,µg/m³
+Antwerpen,BE,2019-05-19 09:00:00+00:00,BETR801,no2,16.0,µg/m³
+Antwerpen,BE,2019-05-19 08:00:00+00:00,BETR801,no2,23.5,µg/m³
+Antwerpen,BE,2019-05-19 07:00:00+00:00,BETR801,no2,30.0,µg/m³
+Antwerpen,BE,2019-05-19 06:00:00+00:00,BETR801,no2,30.5,µg/m³
+Antwerpen,BE,2019-05-19 05:00:00+00:00,BETR801,no2,26.0,µg/m³
+Antwerpen,BE,2019-05-19 04:00:00+00:00,BETR801,no2,21.0,µg/m³
+Antwerpen,BE,2019-05-19 03:00:00+00:00,BETR801,no2,19.0,µg/m³
+Antwerpen,BE,2019-05-19 02:00:00+00:00,BETR801,no2,19.0,µg/m³
+Antwerpen,BE,2019-05-19 01:00:00+00:00,BETR801,no2,22.5,µg/m³
+Antwerpen,BE,2019-05-19 00:00:00+00:00,BETR801,no2,23.5,µg/m³
+Antwerpen,BE,2019-05-18 23:00:00+00:00,BETR801,no2,29.5,µg/m³
+Antwerpen,BE,2019-05-18 22:00:00+00:00,BETR801,no2,34.5,µg/m³
+Antwerpen,BE,2019-05-18 21:00:00+00:00,BETR801,no2,39.0,µg/m³
+Antwerpen,BE,2019-05-18 20:00:00+00:00,BETR801,no2,40.0,µg/m³
+Antwerpen,BE,2019-05-18 19:00:00+00:00,BETR801,no2,35.5,µg/m³
+Antwerpen,BE,2019-05-18 18:00:00+00:00,BETR801,no2,35.5,µg/m³
+Antwerpen,BE,2019-05-18 01:00:00+00:00,BETR801,no2,41.5,µg/m³
+Antwerpen,BE,2019-05-16 01:00:00+00:00,BETR801,no2,28.0,µg/m³
+Antwerpen,BE,2019-05-15 02:00:00+00:00,BETR801,no2,22.5,µg/m³
+Antwerpen,BE,2019-05-15 01:00:00+00:00,BETR801,no2,25.5,µg/m³
+Antwerpen,BE,2019-05-14 02:00:00+00:00,BETR801,no2,11.5,µg/m³
+Antwerpen,BE,2019-05-14 01:00:00+00:00,BETR801,no2,14.5,µg/m³
+Antwerpen,BE,2019-05-13 02:00:00+00:00,BETR801,no2,14.5,µg/m³
+Antwerpen,BE,2019-05-13 01:00:00+00:00,BETR801,no2,14.5,µg/m³
+Antwerpen,BE,2019-05-12 02:00:00+00:00,BETR801,no2,20.0,µg/m³
+Antwerpen,BE,2019-05-12 01:00:00+00:00,BETR801,no2,17.5,µg/m³
+Antwerpen,BE,2019-05-11 02:00:00+00:00,BETR801,no2,21.0,µg/m³
+Antwerpen,BE,2019-05-11 01:00:00+00:00,BETR801,no2,26.5,µg/m³
+Antwerpen,BE,2019-05-10 02:00:00+00:00,BETR801,no2,11.5,µg/m³
+Antwerpen,BE,2019-05-10 01:00:00+00:00,BETR801,no2,10.5,µg/m³
+Antwerpen,BE,2019-05-09 02:00:00+00:00,BETR801,no2,20.5,µg/m³
+Antwerpen,BE,2019-05-09 01:00:00+00:00,BETR801,no2,20.0,µg/m³
+Antwerpen,BE,2019-05-08 02:00:00+00:00,BETR801,no2,20.5,µg/m³
+Antwerpen,BE,2019-05-08 01:00:00+00:00,BETR801,no2,23.0,µg/m³
+Antwerpen,BE,2019-05-07 02:00:00+00:00,BETR801,no2,45.0,µg/m³
+Antwerpen,BE,2019-05-07 01:00:00+00:00,BETR801,no2,50.5,µg/m³
+London,GB,2019-06-17 11:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-17 10:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-17 09:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-17 08:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-17 07:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-17 06:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-17 05:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-17 04:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-17 03:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-17 02:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-17 01:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-17 00:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-16 23:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-16 21:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-16 20:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-16 19:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-16 18:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-16 17:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-06-16 16:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-06-16 15:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-16 14:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-16 13:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-16 12:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-16 11:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-16 10:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-16 09:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-16 08:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-16 07:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-16 06:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-16 05:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-16 04:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-16 03:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-16 02:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-16 01:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-16 00:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-15 23:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-15 22:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-15 21:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-15 20:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-15 19:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-15 18:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-15 17:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-15 16:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-15 15:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-15 14:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-15 13:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-15 12:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-15 11:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-15 10:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-15 09:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-15 08:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-15 07:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-15 06:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-15 05:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-15 04:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-15 00:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 21:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-14 20:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 19:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 18:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-14 17:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-14 16:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-14 15:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-14 14:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-14 13:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-14 12:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-14 11:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-14 10:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-14 09:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-14 08:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-14 07:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-14 06:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-14 05:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-14 04:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-14 03:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-14 02:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-14 00:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-13 23:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-13 22:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-13 21:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-13 20:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-13 19:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-13 18:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-13 17:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-13 16:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-13 15:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-13 14:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-13 13:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-13 12:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-13 11:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-13 10:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-13 09:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-13 08:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-13 07:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-13 06:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-13 05:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-13 04:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-13 03:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-13 02:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-13 00:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-06-12 23:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-12 21:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-06-12 20:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-06-12 19:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-12 18:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-06-12 17:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-06-12 16:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-06-12 15:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-06-12 14:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-12 13:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-12 12:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-12 11:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-12 10:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-12 09:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-12 08:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-12 07:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-12 06:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-12 05:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-06-12 04:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-06-12 03:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-12 00:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-11 23:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-11 22:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-11 21:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-11 20:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-11 19:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-06-11 18:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-11 17:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-06-11 16:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-11 15:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-11 14:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-11 13:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-11 12:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-11 11:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-11 10:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-11 09:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-11 08:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-11 07:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-11 06:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-11 05:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-11 04:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-11 03:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-11 02:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-11 01:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-11 00:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-10 23:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-10 22:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-10 21:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-10 20:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-10 19:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-10 18:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-10 17:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-10 16:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-10 15:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-06-10 14:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-06-10 13:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-06-10 12:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-06-10 11:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-06-10 10:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-06-10 09:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-06-10 08:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-10 07:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-10 06:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-10 05:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-10 04:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-10 03:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-10 02:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-10 01:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-10 00:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-09 23:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-09 21:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-09 20:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-09 19:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-09 18:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-09 17:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-06-09 16:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-09 15:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-09 14:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-09 13:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-09 12:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-09 11:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-09 10:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-06-09 09:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-09 08:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-09 07:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-09 06:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-09 05:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-09 04:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-09 03:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-09 02:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-09 01:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-09 00:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-08 23:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-08 21:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-08 20:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-08 19:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-08 18:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-08 17:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-08 16:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-08 15:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-08 14:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-08 13:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-08 12:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-08 11:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-08 10:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-08 09:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-06-08 08:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-08 07:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-08 06:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-06-08 05:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-08 04:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-08 03:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-08 02:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-08 00:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-07 23:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-07 21:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-07 20:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-07 19:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-07 18:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-07 17:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-07 16:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-07 15:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-07 14:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-07 13:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-07 12:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-07 11:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-07 10:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-07 09:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-07 08:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-07 07:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-07 06:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-06-07 05:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-07 04:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-07 03:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-07 02:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-07 01:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-07 00:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-06 23:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-06 22:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-06 21:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-06 20:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-06 19:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-06 18:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-06 17:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-06 16:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-06 15:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-06 14:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-06 13:00:00+00:00,London Westminster,no2,10.0,µg/m³
+London,GB,2019-06-06 12:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-06 11:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-06 10:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-06 09:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-06 08:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-06 07:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-06 06:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-06 05:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-06 04:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-06 03:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-06 02:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-06 00:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-05 23:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-05 22:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-05 21:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 20:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 19:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 18:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 17:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 16:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-05 15:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-05 14:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-05 13:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-05 12:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-06-05 11:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-05 10:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-05 09:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-05 08:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-06-05 07:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-06-05 06:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-06-05 05:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-05 04:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-05 03:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-05 02:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-05 01:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-05 00:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-06-04 23:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-04 22:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-04 21:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-04 20:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-04 19:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-04 18:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-06-04 17:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-06-04 16:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-06-04 15:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-06-04 14:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-04 13:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-06-04 12:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-04 11:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-04 10:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-04 09:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-04 08:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-04 07:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-06-04 06:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-04 05:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-04 04:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-04 03:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-04 02:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-04 01:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-04 00:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-03 23:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-03 22:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-03 21:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-03 20:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-06-03 19:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-06-03 18:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-03 17:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-06-03 16:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-03 15:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-03 14:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-06-03 13:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-06-03 12:00:00+00:00,London Westminster,no2,14.0,µg/m³
+London,GB,2019-06-03 11:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-03 10:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-03 09:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-03 08:00:00+00:00,London Westminster,no2,7.0,µg/m³
+London,GB,2019-06-03 07:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-06-03 06:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-06-03 05:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-03 04:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-06-03 03:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-03 02:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-03 01:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-03 00:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-06-02 23:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-02 22:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-06-02 21:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-02 20:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 19:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-06-02 18:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-06-02 17:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 16:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 15:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-02 14:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-02 13:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-06-02 12:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-02 11:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-02 10:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-06-02 09:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 08:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-06-02 07:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 06:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-02 05:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-06-02 04:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-06-02 03:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-06-02 02:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-06-02 01:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-06-02 00:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-06-01 23:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-06-01 22:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-06-01 21:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-06-01 20:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-06-01 19:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-06-01 18:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-01 17:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-06-01 16:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-06-01 15:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-01 14:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-06-01 13:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-06-01 12:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-06-01 11:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-06-01 10:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-06-01 09:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-06-01 08:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-06-01 07:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-06-01 06:00:00+00:00,London Westminster,no2,4.0,µg/m³
+London,GB,2019-06-01 05:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-01 04:00:00+00:00,London Westminster,no2,11.0,µg/m³
+London,GB,2019-06-01 03:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-01 02:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-06-01 01:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-06-01 00:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-31 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-31 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-31 21:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-31 20:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-31 19:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-31 18:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-31 17:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-31 16:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-31 15:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-31 14:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-31 13:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-31 12:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-31 11:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-31 10:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-31 09:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-31 08:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-05-31 07:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-05-31 06:00:00+00:00,London Westminster,no2,8.0,µg/m³
+London,GB,2019-05-31 05:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-05-31 04:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-05-31 03:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-05-31 02:00:00+00:00,London Westminster,no2,12.0,µg/m³
+London,GB,2019-05-31 01:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-31 00:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-30 23:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-30 22:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-30 21:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-30 20:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-30 19:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-30 18:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-30 17:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-30 16:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-30 15:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-30 14:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-30 13:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-30 12:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-30 11:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-05-30 10:00:00+00:00,London Westminster,no2,9.0,µg/m³
+London,GB,2019-05-30 09:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-30 08:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-05-30 07:00:00+00:00,London Westminster,no2,2.0,µg/m³
+London,GB,2019-05-30 06:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-05-30 05:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-05-30 04:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-05-30 03:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-05-30 02:00:00+00:00,London Westminster,no2,0.0,µg/m³
+London,GB,2019-05-30 01:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-05-30 00:00:00+00:00,London Westminster,no2,1.0,µg/m³
+London,GB,2019-05-29 23:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 22:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 21:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-05-29 20:00:00+00:00,London Westminster,no2,6.0,µg/m³
+London,GB,2019-05-29 19:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 18:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 17:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 16:00:00+00:00,London Westminster,no2,3.0,µg/m³
+London,GB,2019-05-29 15:00:00+00:00,London Westminster,no2,5.0,µg/m³
+London,GB,2019-05-29 14:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-29 13:00:00+00:00,London Westminster,no2,13.0,µg/m³
+London,GB,2019-05-29 12:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-29 11:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-29 10:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-29 09:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-29 08:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-29 07:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-29 06:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-29 05:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-29 04:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-29 03:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-29 02:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-29 01:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-29 00:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-28 23:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-28 21:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-28 20:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-28 19:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-28 18:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-28 17:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-28 16:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-28 15:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-28 14:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-28 13:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-28 12:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-28 11:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-28 10:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-28 09:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-28 08:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-28 07:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-28 06:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-28 05:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-28 04:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-28 03:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-28 02:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-28 01:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-28 00:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-27 23:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-27 22:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-27 21:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-27 20:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-27 19:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-27 18:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-27 17:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-27 16:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-27 15:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-27 14:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-27 13:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-27 12:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-27 11:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-27 10:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-27 09:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-27 08:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-27 07:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-27 06:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-27 05:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-27 04:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-27 03:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-27 02:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-27 01:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-27 00:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 21:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-26 20:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-26 19:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 18:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-26 17:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 16:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-26 15:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 14:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-26 13:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-26 12:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-26 11:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-26 10:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-26 09:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-26 08:00:00+00:00,London Westminster,no2,15.0,µg/m³
+London,GB,2019-05-26 07:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-26 06:00:00+00:00,London Westminster,no2,17.0,µg/m³
+London,GB,2019-05-26 05:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-26 04:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-26 03:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 02:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-26 01:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-26 00:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-25 23:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-25 22:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-25 21:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-05-25 20:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-05-25 19:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-05-25 18:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-05-25 17:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-05-25 16:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-05-25 15:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-25 14:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-25 13:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-25 12:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-25 11:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-25 10:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-25 09:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-25 08:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-25 07:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-25 06:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-25 05:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-25 04:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-25 03:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-25 02:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-25 01:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-25 00:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-24 23:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-24 22:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-24 21:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-24 20:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-05-24 19:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-05-24 18:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-05-24 17:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-05-24 16:00:00+00:00,London Westminster,no2,43.0,µg/m³
+London,GB,2019-05-24 15:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-05-24 14:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-24 13:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-24 12:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-24 11:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-24 10:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-24 09:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-24 08:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-24 07:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-24 06:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-24 05:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-24 04:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-24 03:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-24 02:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-24 00:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-23 23:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-23 22:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-23 21:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-05-23 20:00:00+00:00,London Westminster,no2,45.0,µg/m³
+London,GB,2019-05-23 19:00:00+00:00,London Westminster,no2,51.0,µg/m³
+London,GB,2019-05-23 18:00:00+00:00,London Westminster,no2,54.0,µg/m³
+London,GB,2019-05-23 17:00:00+00:00,London Westminster,no2,60.0,µg/m³
+London,GB,2019-05-23 16:00:00+00:00,London Westminster,no2,53.0,µg/m³
+London,GB,2019-05-23 15:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-23 14:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-23 13:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-23 12:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-23 11:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-23 10:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-23 09:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-23 08:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-23 07:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-23 06:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-23 05:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-23 04:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-23 03:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-23 02:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-23 01:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-23 00:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-22 23:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-22 22:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-22 21:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-22 20:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-22 19:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-22 18:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-22 17:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-22 16:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-22 15:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-22 14:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-22 13:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-22 12:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-22 11:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-22 10:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-22 09:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-22 08:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-22 07:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-22 06:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-22 05:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-22 04:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-22 03:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-22 02:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-22 01:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-22 00:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-21 23:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-21 22:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-21 21:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-21 20:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-21 19:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-05-21 18:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-21 17:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-21 16:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-21 15:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-21 14:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-21 13:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-21 12:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-21 11:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-21 10:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-21 09:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-21 08:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-21 07:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-21 06:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-21 05:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-21 04:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-21 03:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-21 02:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-21 01:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-21 00:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-20 23:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-05-20 22:00:00+00:00,London Westminster,no2,47.0,µg/m³
+London,GB,2019-05-20 21:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-20 20:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 19:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 18:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-20 17:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-20 16:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-20 15:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 14:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 13:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-20 12:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-20 11:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-20 10:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-20 09:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-20 08:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-20 07:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-20 06:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-20 05:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-20 04:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-20 03:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 02:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-20 01:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-20 00:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-19 23:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-19 22:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-19 21:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-19 20:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-19 19:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-19 18:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-19 17:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-19 16:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-19 15:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-19 14:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-19 13:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-19 12:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-19 11:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-19 10:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-19 09:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-19 08:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-19 07:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-19 06:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-19 05:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-19 04:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-19 03:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-19 02:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-19 01:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-19 00:00:00+00:00,London Westminster,no2,49.0,µg/m³
+London,GB,2019-05-18 23:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-05-18 22:00:00+00:00,London Westminster,no2,46.0,µg/m³
+London,GB,2019-05-18 21:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-05-18 20:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-18 19:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-18 18:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-05-18 17:00:00+00:00,London Westminster,no2,42.0,µg/m³
+London,GB,2019-05-18 16:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-18 15:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-18 14:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-18 13:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-18 12:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-18 11:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-18 10:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-18 09:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-18 08:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-18 07:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-18 06:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-18 05:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-18 04:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-18 03:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-18 02:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-18 01:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-18 00:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-17 23:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-17 22:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-17 21:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-17 20:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-17 19:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-17 18:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-17 17:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-17 16:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-17 15:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-17 14:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-17 13:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-17 12:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-17 11:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-17 10:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-17 09:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-17 08:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-17 07:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-17 06:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-17 05:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-17 04:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-17 03:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-17 02:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-17 01:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-17 00:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-16 23:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-16 22:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-16 21:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-16 20:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-16 19:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-16 18:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-16 17:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-16 16:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-16 15:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-16 14:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-16 13:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-16 12:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-16 11:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-16 10:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-16 09:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-16 08:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-16 07:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-16 06:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-16 05:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-16 04:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-16 03:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-16 02:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-16 01:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-16 00:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 23:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 22:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 21:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-15 20:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-15 19:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 18:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-15 17:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 16:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-15 15:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-15 14:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-15 13:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-15 12:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-15 11:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-15 10:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-15 09:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-15 08:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-15 07:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 06:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-15 05:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-15 04:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-15 03:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-15 02:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-15 00:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-14 23:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-14 22:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-14 21:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-14 20:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-14 19:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-14 18:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-14 17:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-14 16:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-14 15:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-14 14:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-14 13:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-14 12:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-14 11:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-14 10:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-14 09:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-14 08:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-14 07:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-14 06:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-14 05:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-14 04:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-14 03:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-14 02:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-14 01:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-14 00:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-13 23:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 22:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 21:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 20:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 19:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 18:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-13 17:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-13 16:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-13 15:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-13 14:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-13 13:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-13 12:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-13 11:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-13 10:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-13 09:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-13 08:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-13 07:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-13 06:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-13 05:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-13 04:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-13 03:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-13 02:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-13 01:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-13 00:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 23:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 22:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 21:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-12 20:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 19:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 18:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 17:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-12 16:00:00+00:00,London Westminster,no2,23.0,µg/m³
+London,GB,2019-05-12 15:00:00+00:00,London Westminster,no2,22.0,µg/m³
+London,GB,2019-05-12 14:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-12 13:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-12 12:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-12 11:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-12 10:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-12 09:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-12 08:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-12 07:00:00+00:00,London Westminster,no2,44.0,µg/m³
+London,GB,2019-05-12 06:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-12 05:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-12 04:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-12 03:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-12 02:00:00+00:00,London Westminster,no2,38.0,µg/m³
+London,GB,2019-05-12 01:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-12 00:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-11 23:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-11 22:00:00+00:00,London Westminster,no2,37.0,µg/m³
+London,GB,2019-05-11 21:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-11 20:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-11 19:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-11 18:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-11 17:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-11 16:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-11 15:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-11 09:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-11 08:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-11 07:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-11 06:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-11 05:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-11 04:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-11 03:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-11 02:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-11 01:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-11 00:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-10 23:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-10 22:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-10 21:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-10 20:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-10 19:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-10 18:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-10 17:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-10 16:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-10 15:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-10 14:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-10 13:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-10 12:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-10 11:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-10 10:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-10 09:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-10 08:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-10 07:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-10 06:00:00+00:00,London Westminster,no2,39.0,µg/m³
+London,GB,2019-05-10 05:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-05-10 04:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-05-10 03:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-05-10 02:00:00+00:00,London Westminster,no2,41.0,µg/m³
+London,GB,2019-05-10 01:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-05-10 00:00:00+00:00,London Westminster,no2,52.0,µg/m³
+London,GB,2019-05-09 23:00:00+00:00,London Westminster,no2,59.0,µg/m³
+London,GB,2019-05-09 22:00:00+00:00,London Westminster,no2,59.0,µg/m³
+London,GB,2019-05-09 21:00:00+00:00,London Westminster,no2,65.0,µg/m³
+London,GB,2019-05-09 20:00:00+00:00,London Westminster,no2,59.0,µg/m³
+London,GB,2019-05-09 19:00:00+00:00,London Westminster,no2,62.0,µg/m³
+London,GB,2019-05-09 18:00:00+00:00,London Westminster,no2,58.0,µg/m³
+London,GB,2019-05-09 17:00:00+00:00,London Westminster,no2,60.0,µg/m³
+London,GB,2019-05-09 16:00:00+00:00,London Westminster,no2,67.0,µg/m³
+London,GB,2019-05-09 15:00:00+00:00,London Westminster,no2,97.0,µg/m³
+London,GB,2019-05-09 14:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-09 13:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-09 12:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-09 11:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-09 10:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-09 09:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-09 08:00:00+00:00,London Westminster,no2,35.0,µg/m³
+London,GB,2019-05-09 07:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-09 06:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-09 05:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-09 04:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-09 03:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-09 02:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-09 00:00:00+00:00,London Westminster,no2,30.0,µg/m³
+London,GB,2019-05-08 23:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-08 21:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-08 20:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-08 19:00:00+00:00,London Westminster,no2,25.0,µg/m³
+London,GB,2019-05-08 18:00:00+00:00,London Westminster,no2,40.0,µg/m³
+London,GB,2019-05-08 17:00:00+00:00,London Westminster,no2,31.0,µg/m³
+London,GB,2019-05-08 16:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-08 15:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-08 14:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-08 13:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-08 12:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-08 11:00:00+00:00,London Westminster,no2,27.0,µg/m³
+London,GB,2019-05-08 10:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-08 09:00:00+00:00,London Westminster,no2,33.0,µg/m³
+London,GB,2019-05-08 08:00:00+00:00,London Westminster,no2,36.0,µg/m³
+London,GB,2019-05-08 07:00:00+00:00,London Westminster,no2,34.0,µg/m³
+London,GB,2019-05-08 06:00:00+00:00,London Westminster,no2,29.0,µg/m³
+London,GB,2019-05-08 05:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-08 04:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-08 03:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-08 02:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-08 01:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-08 00:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-07 23:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-07 21:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-07 20:00:00+00:00,London Westminster,no2,24.0,µg/m³
+London,GB,2019-05-07 19:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-07 18:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-07 17:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-07 16:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-07 15:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-07 14:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-07 13:00:00+00:00,London Westminster,no2,20.0,µg/m³
+London,GB,2019-05-07 12:00:00+00:00,London Westminster,no2,18.0,µg/m³
+London,GB,2019-05-07 11:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-07 10:00:00+00:00,London Westminster,no2,21.0,µg/m³
+London,GB,2019-05-07 09:00:00+00:00,London Westminster,no2,28.0,µg/m³
+London,GB,2019-05-07 08:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-07 07:00:00+00:00,London Westminster,no2,32.0,µg/m³
+London,GB,2019-05-07 06:00:00+00:00,London Westminster,no2,26.0,µg/m³
+London,GB,2019-05-07 04:00:00+00:00,London Westminster,no2,16.0,µg/m³
+London,GB,2019-05-07 03:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-07 02:00:00+00:00,London Westminster,no2,19.0,µg/m³
+London,GB,2019-05-07 01:00:00+00:00,London Westminster,no2,23.0,µg/m³
diff --git a/doc/data/air_quality_parameters.csv b/doc/data/air_quality_parameters.csv
new file mode 100644
index 0000000000000..915f6300e43b8
--- /dev/null
+++ b/doc/data/air_quality_parameters.csv
@@ -0,0 +1,8 @@
+id,description,name
+bc,Black Carbon,BC
+co,Carbon Monoxide,CO
+no2,Nitrogen Dioxide,NO2
+o3,Ozone,O3
+pm10,Particulate matter less than 10 micrometers in diameter,PM10
+pm25,Particulate matter less than 2.5 micrometers in diameter,PM2.5
+so2,Sulfur Dioxide,SO2
diff --git a/doc/data/air_quality_pm25_long.csv b/doc/data/air_quality_pm25_long.csv
new file mode 100644
index 0000000000000..f74053c249339
--- /dev/null
+++ b/doc/data/air_quality_pm25_long.csv
@@ -0,0 +1,1111 @@
+city,country,date.utc,location,parameter,value,unit
+Antwerpen,BE,2019-06-18 06:00:00+00:00,BETR801,pm25,18.0,µg/m³
+Antwerpen,BE,2019-06-17 08:00:00+00:00,BETR801,pm25,6.5,µg/m³
+Antwerpen,BE,2019-06-17 07:00:00+00:00,BETR801,pm25,18.5,µg/m³
+Antwerpen,BE,2019-06-17 06:00:00+00:00,BETR801,pm25,16.0,µg/m³
+Antwerpen,BE,2019-06-17 05:00:00+00:00,BETR801,pm25,7.5,µg/m³
+Antwerpen,BE,2019-06-17 04:00:00+00:00,BETR801,pm25,7.5,µg/m³
+Antwerpen,BE,2019-06-17 03:00:00+00:00,BETR801,pm25,7.0,µg/m³
+Antwerpen,BE,2019-06-17 02:00:00+00:00,BETR801,pm25,7.0,µg/m³
+Antwerpen,BE,2019-06-17 01:00:00+00:00,BETR801,pm25,8.0,µg/m³
+Antwerpen,BE,2019-06-16 01:00:00+00:00,BETR801,pm25,15.0,µg/m³
+Antwerpen,BE,2019-06-15 01:00:00+00:00,BETR801,pm25,11.0,µg/m³
+Antwerpen,BE,2019-06-14 09:00:00+00:00,BETR801,pm25,12.0,µg/m³
+Antwerpen,BE,2019-06-13 01:00:00+00:00,BETR801,pm25,3.0,µg/m³
+Antwerpen,BE,2019-06-12 01:00:00+00:00,BETR801,pm25,16.0,µg/m³
+Antwerpen,BE,2019-06-11 01:00:00+00:00,BETR801,pm25,3.5,µg/m³
+Antwerpen,BE,2019-06-10 01:00:00+00:00,BETR801,pm25,8.5,µg/m³
+Antwerpen,BE,2019-06-09 01:00:00+00:00,BETR801,pm25,6.0,µg/m³
+Antwerpen,BE,2019-06-08 01:00:00+00:00,BETR801,pm25,6.5,µg/m³
+Antwerpen,BE,2019-06-06 01:00:00+00:00,BETR801,pm25,6.5,µg/m³
+Antwerpen,BE,2019-06-05 01:00:00+00:00,BETR801,pm25,11.0,µg/m³
+Antwerpen,BE,2019-06-04 01:00:00+00:00,BETR801,pm25,10.5,µg/m³
+Antwerpen,BE,2019-06-03 01:00:00+00:00,BETR801,pm25,12.5,µg/m³
+Antwerpen,BE,2019-06-02 01:00:00+00:00,BETR801,pm25,19.0,µg/m³
+Antwerpen,BE,2019-06-01 01:00:00+00:00,BETR801,pm25,9.0,µg/m³
+Antwerpen,BE,2019-05-31 01:00:00+00:00,BETR801,pm25,6.0,µg/m³
+Antwerpen,BE,2019-05-30 01:00:00+00:00,BETR801,pm25,5.0,µg/m³
+Antwerpen,BE,2019-05-29 01:00:00+00:00,BETR801,pm25,5.5,µg/m³
+Antwerpen,BE,2019-05-28 01:00:00+00:00,BETR801,pm25,7.0,µg/m³
+Antwerpen,BE,2019-05-27 01:00:00+00:00,BETR801,pm25,7.5,µg/m³
+Antwerpen,BE,2019-05-26 01:00:00+00:00,BETR801,pm25,26.5,µg/m³
+Antwerpen,BE,2019-05-25 01:00:00+00:00,BETR801,pm25,10.0,µg/m³
+Antwerpen,BE,2019-05-24 01:00:00+00:00,BETR801,pm25,13.0,µg/m³
+Antwerpen,BE,2019-05-23 01:00:00+00:00,BETR801,pm25,7.5,µg/m³
+Antwerpen,BE,2019-05-22 01:00:00+00:00,BETR801,pm25,15.5,µg/m³
+Antwerpen,BE,2019-05-21 01:00:00+00:00,BETR801,pm25,20.5,µg/m³
+Antwerpen,BE,2019-05-20 17:00:00+00:00,BETR801,pm25,18.5,µg/m³
+Antwerpen,BE,2019-05-20 16:00:00+00:00,BETR801,pm25,17.0,µg/m³
+Antwerpen,BE,2019-05-20 15:00:00+00:00,BETR801,pm25,18.5,µg/m³
+Antwerpen,BE,2019-05-20 14:00:00+00:00,BETR801,pm25,14.5,µg/m³
+Antwerpen,BE,2019-05-20 13:00:00+00:00,BETR801,pm25,17.0,µg/m³
+Antwerpen,BE,2019-05-20 12:00:00+00:00,BETR801,pm25,17.5,µg/m³
+Antwerpen,BE,2019-05-20 11:00:00+00:00,BETR801,pm25,13.5,µg/m³
+Antwerpen,BE,2019-05-20 10:00:00+00:00,BETR801,pm25,10.5,µg/m³
+Antwerpen,BE,2019-05-20 09:00:00+00:00,BETR801,pm25,13.5,µg/m³
+Antwerpen,BE,2019-05-20 08:00:00+00:00,BETR801,pm25,19.5,µg/m³
+Antwerpen,BE,2019-05-20 07:00:00+00:00,BETR801,pm25,23.5,µg/m³
+Antwerpen,BE,2019-05-20 06:00:00+00:00,BETR801,pm25,22.0,µg/m³
+Antwerpen,BE,2019-05-20 05:00:00+00:00,BETR801,pm25,25.0,µg/m³
+Antwerpen,BE,2019-05-20 04:00:00+00:00,BETR801,pm25,24.5,µg/m³
+Antwerpen,BE,2019-05-20 03:00:00+00:00,BETR801,pm25,15.0,µg/m³
+Antwerpen,BE,2019-05-20 02:00:00+00:00,BETR801,pm25,18.5,µg/m³
+Antwerpen,BE,2019-05-20 01:00:00+00:00,BETR801,pm25,28.0,µg/m³
+Antwerpen,BE,2019-05-19 21:00:00+00:00,BETR801,pm25,35.5,µg/m³
+Antwerpen,BE,2019-05-19 20:00:00+00:00,BETR801,pm25,40.0,µg/m³
+Antwerpen,BE,2019-05-19 19:00:00+00:00,BETR801,pm25,43.5,µg/m³
+Antwerpen,BE,2019-05-19 18:00:00+00:00,BETR801,pm25,35.0,µg/m³
+Antwerpen,BE,2019-05-19 17:00:00+00:00,BETR801,pm25,34.0,µg/m³
+Antwerpen,BE,2019-05-19 16:00:00+00:00,BETR801,pm25,36.5,µg/m³
+Antwerpen,BE,2019-05-19 15:00:00+00:00,BETR801,pm25,44.0,µg/m³
+Antwerpen,BE,2019-05-19 14:00:00+00:00,BETR801,pm25,43.5,µg/m³
+Antwerpen,BE,2019-05-19 13:00:00+00:00,BETR801,pm25,46.0,µg/m³
+Antwerpen,BE,2019-05-19 12:00:00+00:00,BETR801,pm25,43.0,µg/m³
+Antwerpen,BE,2019-05-19 11:00:00+00:00,BETR801,pm25,41.0,µg/m³
+Antwerpen,BE,2019-05-19 10:00:00+00:00,BETR801,pm25,41.5,µg/m³
+Antwerpen,BE,2019-05-19 09:00:00+00:00,BETR801,pm25,42.5,µg/m³
+Antwerpen,BE,2019-05-19 08:00:00+00:00,BETR801,pm25,51.5,µg/m³
+Antwerpen,BE,2019-05-19 07:00:00+00:00,BETR801,pm25,56.0,µg/m³
+Antwerpen,BE,2019-05-19 06:00:00+00:00,BETR801,pm25,58.5,µg/m³
+Antwerpen,BE,2019-05-19 05:00:00+00:00,BETR801,pm25,60.0,µg/m³
+Antwerpen,BE,2019-05-19 04:00:00+00:00,BETR801,pm25,56.5,µg/m³
+Antwerpen,BE,2019-05-19 03:00:00+00:00,BETR801,pm25,52.5,µg/m³
+Antwerpen,BE,2019-05-19 02:00:00+00:00,BETR801,pm25,51.5,µg/m³
+Antwerpen,BE,2019-05-19 01:00:00+00:00,BETR801,pm25,52.0,µg/m³
+Antwerpen,BE,2019-05-19 00:00:00+00:00,BETR801,pm25,49.5,µg/m³
+Antwerpen,BE,2019-05-18 23:00:00+00:00,BETR801,pm25,45.5,µg/m³
+Antwerpen,BE,2019-05-18 22:00:00+00:00,BETR801,pm25,42.0,µg/m³
+Antwerpen,BE,2019-05-18 21:00:00+00:00,BETR801,pm25,40.5,µg/m³
+Antwerpen,BE,2019-05-18 20:00:00+00:00,BETR801,pm25,41.0,µg/m³
+Antwerpen,BE,2019-05-18 19:00:00+00:00,BETR801,pm25,36.5,µg/m³
+Antwerpen,BE,2019-05-18 18:00:00+00:00,BETR801,pm25,37.0,µg/m³
+Antwerpen,BE,2019-05-18 01:00:00+00:00,BETR801,pm25,24.0,µg/m³
+Antwerpen,BE,2019-05-17 01:00:00+00:00,BETR801,pm25,13.5,µg/m³
+Antwerpen,BE,2019-05-16 01:00:00+00:00,BETR801,pm25,11.0,µg/m³
+Antwerpen,BE,2019-05-15 02:00:00+00:00,BETR801,pm25,12.5,µg/m³
+Antwerpen,BE,2019-05-15 01:00:00+00:00,BETR801,pm25,13.0,µg/m³
+Antwerpen,BE,2019-05-14 02:00:00+00:00,BETR801,pm25,4.0,µg/m³
+Antwerpen,BE,2019-05-14 01:00:00+00:00,BETR801,pm25,4.0,µg/m³
+Antwerpen,BE,2019-05-13 02:00:00+00:00,BETR801,pm25,5.5,µg/m³
+Antwerpen,BE,2019-05-13 01:00:00+00:00,BETR801,pm25,5.0,µg/m³
+Antwerpen,BE,2019-05-12 02:00:00+00:00,BETR801,pm25,6.0,µg/m³
+Antwerpen,BE,2019-05-12 01:00:00+00:00,BETR801,pm25,6.0,µg/m³
+Antwerpen,BE,2019-05-11 02:00:00+00:00,BETR801,pm25,19.5,µg/m³
+Antwerpen,BE,2019-05-11 01:00:00+00:00,BETR801,pm25,17.0,µg/m³
+Antwerpen,BE,2019-05-10 02:00:00+00:00,BETR801,pm25,13.5,µg/m³
+Antwerpen,BE,2019-05-10 01:00:00+00:00,BETR801,pm25,11.5,µg/m³
+Antwerpen,BE,2019-05-09 02:00:00+00:00,BETR801,pm25,3.5,µg/m³
+Antwerpen,BE,2019-05-09 01:00:00+00:00,BETR801,pm25,4.5,µg/m³
+Antwerpen,BE,2019-05-08 02:00:00+00:00,BETR801,pm25,14.0,µg/m³
+Antwerpen,BE,2019-05-08 01:00:00+00:00,BETR801,pm25,14.5,µg/m³
+Antwerpen,BE,2019-05-07 02:00:00+00:00,BETR801,pm25,14.0,µg/m³
+Antwerpen,BE,2019-05-07 01:00:00+00:00,BETR801,pm25,12.5,µg/m³
+London,GB,2019-06-21 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-20 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-20 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-20 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-20 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-19 13:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-06-19 12:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-06-19 11:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-06-19 00:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-06-18 23:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-06-18 22:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-06-18 21:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-18 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-18 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-17 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 04:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 03:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 02:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 01:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-17 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 20:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 18:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 17:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 16:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-16 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-16 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-15 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-15 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 22:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 20:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 18:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 17:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 16:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 12:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 04:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-14 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-14 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-14 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 12:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-13 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-13 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 09:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-13 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 04:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-13 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-13 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 12:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-12 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-12 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-11 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-11 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-10 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-10 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 18:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 17:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 16:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 12:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-09 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-09 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-08 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-08 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-08 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-08 04:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-08 03:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-08 02:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-08 00:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-07 23:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-07 21:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-07 20:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-07 19:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-06-07 18:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 17:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 16:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 15:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 14:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 13:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-06-07 12:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-06-07 11:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-06-07 10:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-06-07 09:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-06-07 08:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-06-07 07:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-06-07 06:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-06-07 05:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-06-07 04:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-06-07 03:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-07 02:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-07 01:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-07 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 22:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 20:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-06 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-06 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-06 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-06 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-05 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-05 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-05 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-05 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-05 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 04:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-05 03:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-05 02:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-05 01:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-05 00:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 23:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 22:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-04 21:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-04 20:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-04 19:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-04 18:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-06-04 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 04:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-04 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-04 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-03 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-03 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-06-02 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 06:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-02 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-06-01 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-06-01 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 12:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 04:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 03:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 02:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 01:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-06-01 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 22:00:00+00:00,London Westminster,pm25,5.0,µg/m³
+London,GB,2019-05-31 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 20:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 18:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 17:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 16:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-31 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-31 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-30 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 06:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-30 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 06:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-29 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-29 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-29 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-29 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-29 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-29 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-28 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-28 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-27 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 04:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 03:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 02:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 01:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-27 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 22:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 20:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 19:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 18:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 17:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 16:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 15:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 14:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 13:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 12:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 11:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 07:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 06:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 05:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 04:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 03:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 02:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 01:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-26 00:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-25 23:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-25 22:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-25 21:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-25 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-25 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-25 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-25 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-25 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-25 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 04:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-25 03:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-25 02:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-25 01:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-25 00:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-24 23:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-24 22:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-24 21:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 20:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 19:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 18:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-24 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 06:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-24 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 06:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-23 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 02:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-23 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 10:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 09:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 08:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-22 05:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-22 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-21 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-21 10:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-21 09:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-21 08:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-21 07:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-21 06:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-21 05:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-21 04:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-21 03:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-21 02:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-21 01:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-21 00:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 23:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 22:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 21:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 20:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 19:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 18:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-20 17:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-20 16:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-20 15:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 14:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 13:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 12:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 11:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 10:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-20 09:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-20 08:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-20 07:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-20 06:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-20 05:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-20 04:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-20 03:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-20 02:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-20 01:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-20 00:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 23:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 22:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 21:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 20:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 19:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 18:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 17:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 16:00:00+00:00,London Westminster,pm25,20.0,µg/m³
+London,GB,2019-05-19 15:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 14:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 13:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 12:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 11:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 10:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 09:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 08:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 07:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 06:00:00+00:00,London Westminster,pm25,19.0,µg/m³
+London,GB,2019-05-19 05:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-19 04:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-19 03:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-19 02:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-19 01:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-19 00:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 23:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 22:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 21:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 20:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 19:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 18:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 17:00:00+00:00,London Westminster,pm25,18.0,µg/m³
+London,GB,2019-05-18 16:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 15:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 14:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 13:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 12:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 11:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 10:00:00+00:00,London Westminster,pm25,17.0,µg/m³
+London,GB,2019-05-18 09:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-18 08:00:00+00:00,London Westminster,pm25,16.0,µg/m³
+London,GB,2019-05-18 07:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-18 06:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-18 05:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-18 04:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-18 03:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-18 02:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-18 01:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-18 00:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-17 23:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-17 22:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-17 21:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-17 20:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-17 19:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-17 18:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 17:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 16:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 15:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 13:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 12:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 11:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-17 08:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 07:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 06:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 05:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 04:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 03:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 02:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-17 01:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-17 00:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-16 23:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-16 22:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-16 21:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-16 20:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-16 19:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-16 18:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-16 17:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-16 16:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-16 15:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-16 14:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-16 13:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 12:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 11:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 10:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 09:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 08:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 07:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 06:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 05:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 04:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 03:00:00+00:00,London Westminster,pm25,15.0,µg/m³
+London,GB,2019-05-16 02:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-16 01:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-16 00:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-15 23:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-15 22:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-15 21:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-15 20:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-15 19:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-15 18:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-15 17:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-15 16:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-15 15:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-15 14:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-15 13:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-15 12:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-15 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-15 10:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-15 09:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-15 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 04:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 03:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 02:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-15 00:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-14 23:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-14 22:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 21:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 20:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 19:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 18:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 17:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 16:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 15:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 14:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 13:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 12:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 11:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 10:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 09:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 08:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 07:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-14 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-14 04:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-14 03:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-14 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-14 01:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-14 00:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 23:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 22:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 21:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 20:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 19:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 18:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 17:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 16:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 15:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 14:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 13:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 12:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 11:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 10:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-13 09:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-13 08:00:00+00:00,London Westminster,pm25,6.0,µg/m³
+London,GB,2019-05-13 07:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 06:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 05:00:00+00:00,London Westminster,pm25,7.0,µg/m³
+London,GB,2019-05-13 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-13 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-13 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-13 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-13 00:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-12 23:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-12 22:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 21:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 20:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 19:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 18:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 14:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-12 13:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-12 12:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-12 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-12 10:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-12 09:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-12 08:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-12 07:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-12 06:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-12 05:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-12 04:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-12 03:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-12 02:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-12 01:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-12 00:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-11 23:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-11 22:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 21:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 20:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 19:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 18:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 17:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 16:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 15:00:00+00:00,London Westminster,pm25,14.0,µg/m³
+London,GB,2019-05-11 09:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 08:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 07:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-11 06:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-11 05:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-11 04:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-11 03:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-11 02:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-11 01:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-11 00:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-10 23:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-10 22:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-10 21:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-10 20:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-10 19:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-10 18:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 17:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 16:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 15:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 14:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 13:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 12:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 11:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 10:00:00+00:00,London Westminster,pm25,13.0,µg/m³
+London,GB,2019-05-10 09:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 08:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 07:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 06:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 05:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 04:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 03:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 02:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-10 01:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-10 00:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-09 23:00:00+00:00,London Westminster,pm25,12.0,µg/m³
+London,GB,2019-05-09 22:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-09 21:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-09 20:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 19:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 18:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 17:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 16:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 15:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 14:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 13:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 12:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-09 10:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 09:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 08:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 05:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 04:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 03:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 02:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-09 00:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 23:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 21:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 20:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 19:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 18:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 17:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 16:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 15:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-08 14:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 13:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 12:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 10:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 09:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 08:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 07:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 06:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 05:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 04:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-08 03:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-08 02:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 01:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-08 00:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 23:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 21:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 20:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 19:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-07 18:00:00+00:00,London Westminster,pm25,11.0,µg/m³
+London,GB,2019-05-07 17:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 16:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 15:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 14:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 13:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 12:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 11:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 10:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 09:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 08:00:00+00:00,London Westminster,pm25,10.0,µg/m³
+London,GB,2019-05-07 07:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-07 06:00:00+00:00,London Westminster,pm25,9.0,µg/m³
+London,GB,2019-05-07 04:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-07 03:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-07 02:00:00+00:00,London Westminster,pm25,8.0,µg/m³
+London,GB,2019-05-07 01:00:00+00:00,London Westminster,pm25,8.0,µg/m³
diff --git a/doc/data/air_quality_stations.csv b/doc/data/air_quality_stations.csv
new file mode 100644
index 0000000000000..9ab1a377dcdae
--- /dev/null
+++ b/doc/data/air_quality_stations.csv
@@ -0,0 +1,67 @@
+location,coordinates.latitude,coordinates.longitude
+BELAL01,51.23619,4.38522
+BELHB23,51.1703,4.341
+BELLD01,51.10998,5.00486
+BELLD02,51.12038,5.02155
+BELR833,51.32766,4.36226
+BELSA04,51.31393,4.40387
+BELWZ02,51.1928,5.22153
+BETM802,51.26099,4.4244
+BETN016,51.23365,5.16398
+BETR801,51.20966,4.43182
+BETR802,51.20952,4.43179
+BETR803,51.22863,4.42845
+BETR805,51.20823,4.42156
+BETR811,51.2521,4.49136
+BETR815,51.2147,4.33221
+BETR817,51.17713,4.41795
+BETR820,51.32042,4.44481
+BETR822,51.26429,4.34128
+BETR831,51.3488,4.33971
+BETR834,51.092,4.3801
+BETR891,51.25581,4.38536
+BETR893,51.28138,4.38577
+BETR894,51.2835,4.3495
+BETR897,51.25011,4.3421
+FR04004,48.89167,2.34667
+FR04012,48.82778,2.3275
+FR04014,48.83724,2.3939
+FR04014,48.83722,2.3939
+FR04031,48.86887,2.31194
+FR04031,48.86889,2.31194
+FR04037,48.82861,2.36028
+FR04060,48.8572,2.2933
+FR04071,48.8564,2.33528
+FR04071,48.85639,2.33528
+FR04118,48.87027,2.3325
+FR04118,48.87029,2.3325
+FR04131,48.87333,2.33028
+FR04135,48.83795,2.40806
+FR04135,48.83796,2.40806
+FR04141,48.85278,2.36056
+FR04141,48.85279,2.36056
+FR04143,48.859,2.351
+FR04143,48.85944,2.35111
+FR04179,48.83038,2.26989
+FR04329,48.8386,2.41279
+FR04329,48.83862,2.41278
+Camden Kerbside,51.54421,-0.17527
+Ealing Horn Lane,51.51895,-0.26562
+Haringey Roadside,51.5993,-0.06822
+London Bexley,51.46603,0.18481
+London Bloomsbury,51.52229,-0.12589
+London Eltham,51.45258,0.07077
+London Haringey Priory Park South,51.58413,-0.12525
+London Harlington,51.48879,-0.44161
+London Harrow Stanmore,51.61733,-0.29878
+London Hillingdon,51.49633,-0.46086
+London Marylebone Road,51.52253,-0.15461
+London N. Kensington,51.52105,-0.21349
+London Teddington,51.42099,-0.33965
+London Teddington Bushy Park,51.42529,-0.34561
+London Westminster,51.49467,-0.13193
+Southend-on-Sea,51.5442,0.67841
+Southwark A2 Old Kent Road,51.4805,-0.05955
+Thurrock,51.47707,0.31797
+Tower Hamlets Roadside,51.52253,-0.04216
+Groton Fort Griswold,41.3536,-72.0789
diff --git a/doc/data/titanic.csv b/doc/data/titanic.csv
new file mode 100644
index 0000000000000..5cc466e97cf12
--- /dev/null
+++ b/doc/data/titanic.csv
@@ -0,0 +1,892 @@
+PassengerId,Survived,Pclass,Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked
+1,0,3,"Braund, Mr. Owen Harris",male,22,1,0,A/5 21171,7.25,,S
+2,1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)",female,38,1,0,PC 17599,71.2833,C85,C
+3,1,3,"Heikkinen, Miss. Laina",female,26,0,0,STON/O2. 3101282,7.925,,S
+4,1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)",female,35,1,0,113803,53.1,C123,S
+5,0,3,"Allen, Mr. William Henry",male,35,0,0,373450,8.05,,S
+6,0,3,"Moran, Mr. James",male,,0,0,330877,8.4583,,Q
+7,0,1,"McCarthy, Mr. Timothy J",male,54,0,0,17463,51.8625,E46,S
+8,0,3,"Palsson, Master. Gosta Leonard",male,2,3,1,349909,21.075,,S
+9,1,3,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)",female,27,0,2,347742,11.1333,,S
+10,1,2,"Nasser, Mrs. Nicholas (Adele Achem)",female,14,1,0,237736,30.0708,,C
+11,1,3,"Sandstrom, Miss. Marguerite Rut",female,4,1,1,PP 9549,16.7,G6,S
+12,1,1,"Bonnell, Miss. Elizabeth",female,58,0,0,113783,26.55,C103,S
+13,0,3,"Saundercock, Mr. William Henry",male,20,0,0,A/5. 2151,8.05,,S
+14,0,3,"Andersson, Mr. Anders Johan",male,39,1,5,347082,31.275,,S
+15,0,3,"Vestrom, Miss. Hulda Amanda Adolfina",female,14,0,0,350406,7.8542,,S
+16,1,2,"Hewlett, Mrs. (Mary D Kingcome) ",female,55,0,0,248706,16,,S
+17,0,3,"Rice, Master. Eugene",male,2,4,1,382652,29.125,,Q
+18,1,2,"Williams, Mr. Charles Eugene",male,,0,0,244373,13,,S
+19,0,3,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)",female,31,1,0,345763,18,,S
+20,1,3,"Masselmani, Mrs. Fatima",female,,0,0,2649,7.225,,C
+21,0,2,"Fynney, Mr. Joseph J",male,35,0,0,239865,26,,S
+22,1,2,"Beesley, Mr. Lawrence",male,34,0,0,248698,13,D56,S
+23,1,3,"McGowan, Miss. Anna ""Annie""",female,15,0,0,330923,8.0292,,Q
+24,1,1,"Sloper, Mr. William Thompson",male,28,0,0,113788,35.5,A6,S
+25,0,3,"Palsson, Miss. Torborg Danira",female,8,3,1,349909,21.075,,S
+26,1,3,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)",female,38,1,5,347077,31.3875,,S
+27,0,3,"Emir, Mr. Farred Chehab",male,,0,0,2631,7.225,,C
+28,0,1,"Fortune, Mr. Charles Alexander",male,19,3,2,19950,263,C23 C25 C27,S
+29,1,3,"O'Dwyer, Miss. Ellen ""Nellie""",female,,0,0,330959,7.8792,,Q
+30,0,3,"Todoroff, Mr. Lalio",male,,0,0,349216,7.8958,,S
+31,0,1,"Uruchurtu, Don. Manuel E",male,40,0,0,PC 17601,27.7208,,C
+32,1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)",female,,1,0,PC 17569,146.5208,B78,C
+33,1,3,"Glynn, Miss. Mary Agatha",female,,0,0,335677,7.75,,Q
+34,0,2,"Wheadon, Mr. Edward H",male,66,0,0,C.A. 24579,10.5,,S
+35,0,1,"Meyer, Mr. Edgar Joseph",male,28,1,0,PC 17604,82.1708,,C
+36,0,1,"Holverson, Mr. Alexander Oskar",male,42,1,0,113789,52,,S
+37,1,3,"Mamee, Mr. Hanna",male,,0,0,2677,7.2292,,C
+38,0,3,"Cann, Mr. Ernest Charles",male,21,0,0,A./5. 2152,8.05,,S
+39,0,3,"Vander Planke, Miss. Augusta Maria",female,18,2,0,345764,18,,S
+40,1,3,"Nicola-Yarred, Miss. Jamila",female,14,1,0,2651,11.2417,,C
+41,0,3,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)",female,40,1,0,7546,9.475,,S
+42,0,2,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)",female,27,1,0,11668,21,,S
+43,0,3,"Kraeff, Mr. Theodor",male,,0,0,349253,7.8958,,C
+44,1,2,"Laroche, Miss. Simonne Marie Anne Andree",female,3,1,2,SC/Paris 2123,41.5792,,C
+45,1,3,"Devaney, Miss. Margaret Delia",female,19,0,0,330958,7.8792,,Q
+46,0,3,"Rogers, Mr. William John",male,,0,0,S.C./A.4. 23567,8.05,,S
+47,0,3,"Lennon, Mr. Denis",male,,1,0,370371,15.5,,Q
+48,1,3,"O'Driscoll, Miss. Bridget",female,,0,0,14311,7.75,,Q
+49,0,3,"Samaan, Mr. Youssef",male,,2,0,2662,21.6792,,C
+50,0,3,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)",female,18,1,0,349237,17.8,,S
+51,0,3,"Panula, Master. Juha Niilo",male,7,4,1,3101295,39.6875,,S
+52,0,3,"Nosworthy, Mr. Richard Cater",male,21,0,0,A/4. 39886,7.8,,S
+53,1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)",female,49,1,0,PC 17572,76.7292,D33,C
+54,1,2,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)",female,29,1,0,2926,26,,S
+55,0,1,"Ostby, Mr. Engelhart Cornelius",male,65,0,1,113509,61.9792,B30,C
+56,1,1,"Woolner, Mr. Hugh",male,,0,0,19947,35.5,C52,S
+57,1,2,"Rugg, Miss. Emily",female,21,0,0,C.A. 31026,10.5,,S
+58,0,3,"Novel, Mr. Mansouer",male,28.5,0,0,2697,7.2292,,C
+59,1,2,"West, Miss. Constance Mirium",female,5,1,2,C.A. 34651,27.75,,S
+60,0,3,"Goodwin, Master. William Frederick",male,11,5,2,CA 2144,46.9,,S
+61,0,3,"Sirayanian, Mr. Orsen",male,22,0,0,2669,7.2292,,C
+62,1,1,"Icard, Miss. Amelie",female,38,0,0,113572,80,B28,
+63,0,1,"Harris, Mr. Henry Birkhardt",male,45,1,0,36973,83.475,C83,S
+64,0,3,"Skoog, Master. Harald",male,4,3,2,347088,27.9,,S
+65,0,1,"Stewart, Mr. Albert A",male,,0,0,PC 17605,27.7208,,C
+66,1,3,"Moubarek, Master. Gerios",male,,1,1,2661,15.2458,,C
+67,1,2,"Nye, Mrs. (Elizabeth Ramell)",female,29,0,0,C.A. 29395,10.5,F33,S
+68,0,3,"Crease, Mr. Ernest James",male,19,0,0,S.P. 3464,8.1583,,S
+69,1,3,"Andersson, Miss. Erna Alexandra",female,17,4,2,3101281,7.925,,S
+70,0,3,"Kink, Mr. Vincenz",male,26,2,0,315151,8.6625,,S
+71,0,2,"Jenkin, Mr. Stephen Curnow",male,32,0,0,C.A. 33111,10.5,,S
+72,0,3,"Goodwin, Miss. Lillian Amy",female,16,5,2,CA 2144,46.9,,S
+73,0,2,"Hood, Mr. Ambrose Jr",male,21,0,0,S.O.C. 14879,73.5,,S
+74,0,3,"Chronopoulos, Mr. Apostolos",male,26,1,0,2680,14.4542,,C
+75,1,3,"Bing, Mr. Lee",male,32,0,0,1601,56.4958,,S
+76,0,3,"Moen, Mr. Sigurd Hansen",male,25,0,0,348123,7.65,F G73,S
+77,0,3,"Staneff, Mr. Ivan",male,,0,0,349208,7.8958,,S
+78,0,3,"Moutal, Mr. Rahamin Haim",male,,0,0,374746,8.05,,S
+79,1,2,"Caldwell, Master. Alden Gates",male,0.83,0,2,248738,29,,S
+80,1,3,"Dowdell, Miss. Elizabeth",female,30,0,0,364516,12.475,,S
+81,0,3,"Waelens, Mr. Achille",male,22,0,0,345767,9,,S
+82,1,3,"Sheerlinck, Mr. Jan Baptist",male,29,0,0,345779,9.5,,S
+83,1,3,"McDermott, Miss. Brigdet Delia",female,,0,0,330932,7.7875,,Q
+84,0,1,"Carrau, Mr. Francisco M",male,28,0,0,113059,47.1,,S
+85,1,2,"Ilett, Miss. Bertha",female,17,0,0,SO/C 14885,10.5,,S
+86,1,3,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)",female,33,3,0,3101278,15.85,,S
+87,0,3,"Ford, Mr. William Neal",male,16,1,3,W./C. 6608,34.375,,S
+88,0,3,"Slocovski, Mr. Selman Francis",male,,0,0,SOTON/OQ 392086,8.05,,S
+89,1,1,"Fortune, Miss. Mabel Helen",female,23,3,2,19950,263,C23 C25 C27,S
+90,0,3,"Celotti, Mr. Francesco",male,24,0,0,343275,8.05,,S
+91,0,3,"Christmann, Mr. Emil",male,29,0,0,343276,8.05,,S
+92,0,3,"Andreasson, Mr. Paul Edvin",male,20,0,0,347466,7.8542,,S
+93,0,1,"Chaffee, Mr. Herbert Fuller",male,46,1,0,W.E.P. 5734,61.175,E31,S
+94,0,3,"Dean, Mr. Bertram Frank",male,26,1,2,C.A. 2315,20.575,,S
+95,0,3,"Coxon, Mr. Daniel",male,59,0,0,364500,7.25,,S
+96,0,3,"Shorney, Mr. Charles Joseph",male,,0,0,374910,8.05,,S
+97,0,1,"Goldschmidt, Mr. George B",male,71,0,0,PC 17754,34.6542,A5,C
+98,1,1,"Greenfield, Mr. William Bertram",male,23,0,1,PC 17759,63.3583,D10 D12,C
+99,1,2,"Doling, Mrs. John T (Ada Julia Bone)",female,34,0,1,231919,23,,S
+100,0,2,"Kantor, Mr. Sinai",male,34,1,0,244367,26,,S
+101,0,3,"Petranec, Miss. Matilda",female,28,0,0,349245,7.8958,,S
+102,0,3,"Petroff, Mr. Pastcho (""Pentcho"")",male,,0,0,349215,7.8958,,S
+103,0,1,"White, Mr. Richard Frasar",male,21,0,1,35281,77.2875,D26,S
+104,0,3,"Johansson, Mr. Gustaf Joel",male,33,0,0,7540,8.6542,,S
+105,0,3,"Gustafsson, Mr. Anders Vilhelm",male,37,2,0,3101276,7.925,,S
+106,0,3,"Mionoff, Mr. Stoytcho",male,28,0,0,349207,7.8958,,S
+107,1,3,"Salkjelsvik, Miss. Anna Kristine",female,21,0,0,343120,7.65,,S
+108,1,3,"Moss, Mr. Albert Johan",male,,0,0,312991,7.775,,S
+109,0,3,"Rekic, Mr. Tido",male,38,0,0,349249,7.8958,,S
+110,1,3,"Moran, Miss. Bertha",female,,1,0,371110,24.15,,Q
+111,0,1,"Porter, Mr. Walter Chamberlain",male,47,0,0,110465,52,C110,S
+112,0,3,"Zabour, Miss. Hileni",female,14.5,1,0,2665,14.4542,,C
+113,0,3,"Barton, Mr. David John",male,22,0,0,324669,8.05,,S
+114,0,3,"Jussila, Miss. Katriina",female,20,1,0,4136,9.825,,S
+115,0,3,"Attalah, Miss. Malake",female,17,0,0,2627,14.4583,,C
+116,0,3,"Pekoniemi, Mr. Edvard",male,21,0,0,STON/O 2. 3101294,7.925,,S
+117,0,3,"Connors, Mr. Patrick",male,70.5,0,0,370369,7.75,,Q
+118,0,2,"Turpin, Mr. William John Robert",male,29,1,0,11668,21,,S
+119,0,1,"Baxter, Mr. Quigg Edmond",male,24,0,1,PC 17558,247.5208,B58 B60,C
+120,0,3,"Andersson, Miss. Ellis Anna Maria",female,2,4,2,347082,31.275,,S
+121,0,2,"Hickman, Mr. Stanley George",male,21,2,0,S.O.C. 14879,73.5,,S
+122,0,3,"Moore, Mr. Leonard Charles",male,,0,0,A4. 54510,8.05,,S
+123,0,2,"Nasser, Mr. Nicholas",male,32.5,1,0,237736,30.0708,,C
+124,1,2,"Webber, Miss. Susan",female,32.5,0,0,27267,13,E101,S
+125,0,1,"White, Mr. Percival Wayland",male,54,0,1,35281,77.2875,D26,S
+126,1,3,"Nicola-Yarred, Master. Elias",male,12,1,0,2651,11.2417,,C
+127,0,3,"McMahon, Mr. Martin",male,,0,0,370372,7.75,,Q
+128,1,3,"Madsen, Mr. Fridtjof Arne",male,24,0,0,C 17369,7.1417,,S
+129,1,3,"Peter, Miss. Anna",female,,1,1,2668,22.3583,F E69,C
+130,0,3,"Ekstrom, Mr. Johan",male,45,0,0,347061,6.975,,S
+131,0,3,"Drazenoic, Mr. Jozef",male,33,0,0,349241,7.8958,,C
+132,0,3,"Coelho, Mr. Domingos Fernandeo",male,20,0,0,SOTON/O.Q. 3101307,7.05,,S
+133,0,3,"Robins, Mrs. Alexander A (Grace Charity Laury)",female,47,1,0,A/5. 3337,14.5,,S
+134,1,2,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)",female,29,1,0,228414,26,,S
+135,0,2,"Sobey, Mr. Samuel James Hayden",male,25,0,0,C.A. 29178,13,,S
+136,0,2,"Richard, Mr. Emile",male,23,0,0,SC/PARIS 2133,15.0458,,C
+137,1,1,"Newsom, Miss. Helen Monypeny",female,19,0,2,11752,26.2833,D47,S
+138,0,1,"Futrelle, Mr. Jacques Heath",male,37,1,0,113803,53.1,C123,S
+139,0,3,"Osen, Mr. Olaf Elon",male,16,0,0,7534,9.2167,,S
+140,0,1,"Giglio, Mr. Victor",male,24,0,0,PC 17593,79.2,B86,C
+141,0,3,"Boulos, Mrs. Joseph (Sultana)",female,,0,2,2678,15.2458,,C
+142,1,3,"Nysten, Miss. Anna Sofia",female,22,0,0,347081,7.75,,S
+143,1,3,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)",female,24,1,0,STON/O2. 3101279,15.85,,S
+144,0,3,"Burke, Mr. Jeremiah",male,19,0,0,365222,6.75,,Q
+145,0,2,"Andrew, Mr. Edgardo Samuel",male,18,0,0,231945,11.5,,S
+146,0,2,"Nicholls, Mr. Joseph Charles",male,19,1,1,C.A. 33112,36.75,,S
+147,1,3,"Andersson, Mr. August Edvard (""Wennerstrom"")",male,27,0,0,350043,7.7958,,S
+148,0,3,"Ford, Miss. Robina Maggie ""Ruby""",female,9,2,2,W./C. 6608,34.375,,S
+149,0,2,"Navratil, Mr. Michel (""Louis M Hoffman"")",male,36.5,0,2,230080,26,F2,S
+150,0,2,"Byles, Rev. Thomas Roussel Davids",male,42,0,0,244310,13,,S
+151,0,2,"Bateman, Rev. Robert James",male,51,0,0,S.O.P. 1166,12.525,,S
+152,1,1,"Pears, Mrs. Thomas (Edith Wearne)",female,22,1,0,113776,66.6,C2,S
+153,0,3,"Meo, Mr. Alfonzo",male,55.5,0,0,A.5. 11206,8.05,,S
+154,0,3,"van Billiard, Mr. Austin Blyler",male,40.5,0,2,A/5. 851,14.5,,S
+155,0,3,"Olsen, Mr. Ole Martin",male,,0,0,Fa 265302,7.3125,,S
+156,0,1,"Williams, Mr. Charles Duane",male,51,0,1,PC 17597,61.3792,,C
+157,1,3,"Gilnagh, Miss. Katherine ""Katie""",female,16,0,0,35851,7.7333,,Q
+158,0,3,"Corn, Mr. Harry",male,30,0,0,SOTON/OQ 392090,8.05,,S
+159,0,3,"Smiljanic, Mr. Mile",male,,0,0,315037,8.6625,,S
+160,0,3,"Sage, Master. Thomas Henry",male,,8,2,CA. 2343,69.55,,S
+161,0,3,"Cribb, Mr. John Hatfield",male,44,0,1,371362,16.1,,S
+162,1,2,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)",female,40,0,0,C.A. 33595,15.75,,S
+163,0,3,"Bengtsson, Mr. John Viktor",male,26,0,0,347068,7.775,,S
+164,0,3,"Calic, Mr. Jovo",male,17,0,0,315093,8.6625,,S
+165,0,3,"Panula, Master. Eino Viljami",male,1,4,1,3101295,39.6875,,S
+166,1,3,"Goldsmith, Master. Frank John William ""Frankie""",male,9,0,2,363291,20.525,,S
+167,1,1,"Chibnall, Mrs. (Edith Martha Bowerman)",female,,0,1,113505,55,E33,S
+168,0,3,"Skoog, Mrs. William (Anna Bernhardina Karlsson)",female,45,1,4,347088,27.9,,S
+169,0,1,"Baumann, Mr. John D",male,,0,0,PC 17318,25.925,,S
+170,0,3,"Ling, Mr. Lee",male,28,0,0,1601,56.4958,,S
+171,0,1,"Van der hoef, Mr. Wyckoff",male,61,0,0,111240,33.5,B19,S
+172,0,3,"Rice, Master. Arthur",male,4,4,1,382652,29.125,,Q
+173,1,3,"Johnson, Miss. Eleanor Ileen",female,1,1,1,347742,11.1333,,S
+174,0,3,"Sivola, Mr. Antti Wilhelm",male,21,0,0,STON/O 2. 3101280,7.925,,S
+175,0,1,"Smith, Mr. James Clinch",male,56,0,0,17764,30.6958,A7,C
+176,0,3,"Klasen, Mr. Klas Albin",male,18,1,1,350404,7.8542,,S
+177,0,3,"Lefebre, Master. Henry Forbes",male,,3,1,4133,25.4667,,S
+178,0,1,"Isham, Miss. Ann Elizabeth",female,50,0,0,PC 17595,28.7125,C49,C
+179,0,2,"Hale, Mr. Reginald",male,30,0,0,250653,13,,S
+180,0,3,"Leonard, Mr. Lionel",male,36,0,0,LINE,0,,S
+181,0,3,"Sage, Miss. Constance Gladys",female,,8,2,CA. 2343,69.55,,S
+182,0,2,"Pernot, Mr. Rene",male,,0,0,SC/PARIS 2131,15.05,,C
+183,0,3,"Asplund, Master. Clarence Gustaf Hugo",male,9,4,2,347077,31.3875,,S
+184,1,2,"Becker, Master. Richard F",male,1,2,1,230136,39,F4,S
+185,1,3,"Kink-Heilmann, Miss. Luise Gretchen",female,4,0,2,315153,22.025,,S
+186,0,1,"Rood, Mr. Hugh Roscoe",male,,0,0,113767,50,A32,S
+187,1,3,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)",female,,1,0,370365,15.5,,Q
+188,1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")",male,45,0,0,111428,26.55,,S
+189,0,3,"Bourke, Mr. John",male,40,1,1,364849,15.5,,Q
+190,0,3,"Turcin, Mr. Stjepan",male,36,0,0,349247,7.8958,,S
+191,1,2,"Pinsky, Mrs. (Rosa)",female,32,0,0,234604,13,,S
+192,0,2,"Carbines, Mr. William",male,19,0,0,28424,13,,S
+193,1,3,"Andersen-Jensen, Miss. Carla Christine Nielsine",female,19,1,0,350046,7.8542,,S
+194,1,2,"Navratil, Master. Michel M",male,3,1,1,230080,26,F2,S
+195,1,1,"Brown, Mrs. James Joseph (Margaret Tobin)",female,44,0,0,PC 17610,27.7208,B4,C
+196,1,1,"Lurette, Miss. Elise",female,58,0,0,PC 17569,146.5208,B80,C
+197,0,3,"Mernagh, Mr. Robert",male,,0,0,368703,7.75,,Q
+198,0,3,"Olsen, Mr. Karl Siegwart Andreas",male,42,0,1,4579,8.4042,,S
+199,1,3,"Madigan, Miss. Margaret ""Maggie""",female,,0,0,370370,7.75,,Q
+200,0,2,"Yrois, Miss. Henriette (""Mrs Harbeck"")",female,24,0,0,248747,13,,S
+201,0,3,"Vande Walle, Mr. Nestor Cyriel",male,28,0,0,345770,9.5,,S
+202,0,3,"Sage, Mr. Frederick",male,,8,2,CA. 2343,69.55,,S
+203,0,3,"Johanson, Mr. Jakob Alfred",male,34,0,0,3101264,6.4958,,S
+204,0,3,"Youseff, Mr. Gerious",male,45.5,0,0,2628,7.225,,C
+205,1,3,"Cohen, Mr. Gurshon ""Gus""",male,18,0,0,A/5 3540,8.05,,S
+206,0,3,"Strom, Miss. Telma Matilda",female,2,0,1,347054,10.4625,G6,S
+207,0,3,"Backstrom, Mr. Karl Alfred",male,32,1,0,3101278,15.85,,S
+208,1,3,"Albimona, Mr. Nassef Cassem",male,26,0,0,2699,18.7875,,C
+209,1,3,"Carr, Miss. Helen ""Ellen""",female,16,0,0,367231,7.75,,Q
+210,1,1,"Blank, Mr. Henry",male,40,0,0,112277,31,A31,C
+211,0,3,"Ali, Mr. Ahmed",male,24,0,0,SOTON/O.Q. 3101311,7.05,,S
+212,1,2,"Cameron, Miss. Clear Annie",female,35,0,0,F.C.C. 13528,21,,S
+213,0,3,"Perkin, Mr. John Henry",male,22,0,0,A/5 21174,7.25,,S
+214,0,2,"Givard, Mr. Hans Kristensen",male,30,0,0,250646,13,,S
+215,0,3,"Kiernan, Mr. Philip",male,,1,0,367229,7.75,,Q
+216,1,1,"Newell, Miss. Madeleine",female,31,1,0,35273,113.275,D36,C
+217,1,3,"Honkanen, Miss. Eliina",female,27,0,0,STON/O2. 3101283,7.925,,S
+218,0,2,"Jacobsohn, Mr. Sidney Samuel",male,42,1,0,243847,27,,S
+219,1,1,"Bazzani, Miss. Albina",female,32,0,0,11813,76.2917,D15,C
+220,0,2,"Harris, Mr. Walter",male,30,0,0,W/C 14208,10.5,,S
+221,1,3,"Sunderland, Mr. Victor Francis",male,16,0,0,SOTON/OQ 392089,8.05,,S
+222,0,2,"Bracken, Mr. James H",male,27,0,0,220367,13,,S
+223,0,3,"Green, Mr. George Henry",male,51,0,0,21440,8.05,,S
+224,0,3,"Nenkoff, Mr. Christo",male,,0,0,349234,7.8958,,S
+225,1,1,"Hoyt, Mr. Frederick Maxfield",male,38,1,0,19943,90,C93,S
+226,0,3,"Berglund, Mr. Karl Ivar Sven",male,22,0,0,PP 4348,9.35,,S
+227,1,2,"Mellors, Mr. William John",male,19,0,0,SW/PP 751,10.5,,S
+228,0,3,"Lovell, Mr. John Hall (""Henry"")",male,20.5,0,0,A/5 21173,7.25,,S
+229,0,2,"Fahlstrom, Mr. Arne Jonas",male,18,0,0,236171,13,,S
+230,0,3,"Lefebre, Miss. Mathilde",female,,3,1,4133,25.4667,,S
+231,1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)",female,35,1,0,36973,83.475,C83,S
+232,0,3,"Larsson, Mr. Bengt Edvin",male,29,0,0,347067,7.775,,S
+233,0,2,"Sjostedt, Mr. Ernst Adolf",male,59,0,0,237442,13.5,,S
+234,1,3,"Asplund, Miss. Lillian Gertrud",female,5,4,2,347077,31.3875,,S
+235,0,2,"Leyson, Mr. Robert William Norman",male,24,0,0,C.A. 29566,10.5,,S
+236,0,3,"Harknett, Miss. Alice Phoebe",female,,0,0,W./C. 6609,7.55,,S
+237,0,2,"Hold, Mr. Stephen",male,44,1,0,26707,26,,S
+238,1,2,"Collyer, Miss. Marjorie ""Lottie""",female,8,0,2,C.A. 31921,26.25,,S
+239,0,2,"Pengelly, Mr. Frederick William",male,19,0,0,28665,10.5,,S
+240,0,2,"Hunt, Mr. George Henry",male,33,0,0,SCO/W 1585,12.275,,S
+241,0,3,"Zabour, Miss. Thamine",female,,1,0,2665,14.4542,,C
+242,1,3,"Murphy, Miss. Katherine ""Kate""",female,,1,0,367230,15.5,,Q
+243,0,2,"Coleridge, Mr. Reginald Charles",male,29,0,0,W./C. 14263,10.5,,S
+244,0,3,"Maenpaa, Mr. Matti Alexanteri",male,22,0,0,STON/O 2. 3101275,7.125,,S
+245,0,3,"Attalah, Mr. Sleiman",male,30,0,0,2694,7.225,,C
+246,0,1,"Minahan, Dr. William Edward",male,44,2,0,19928,90,C78,Q
+247,0,3,"Lindahl, Miss. Agda Thorilda Viktoria",female,25,0,0,347071,7.775,,S
+248,1,2,"Hamalainen, Mrs. William (Anna)",female,24,0,2,250649,14.5,,S
+249,1,1,"Beckwith, Mr. Richard Leonard",male,37,1,1,11751,52.5542,D35,S
+250,0,2,"Carter, Rev. Ernest Courtenay",male,54,1,0,244252,26,,S
+251,0,3,"Reed, Mr. James George",male,,0,0,362316,7.25,,S
+252,0,3,"Strom, Mrs. Wilhelm (Elna Matilda Persson)",female,29,1,1,347054,10.4625,G6,S
+253,0,1,"Stead, Mr. William Thomas",male,62,0,0,113514,26.55,C87,S
+254,0,3,"Lobb, Mr. William Arthur",male,30,1,0,A/5. 3336,16.1,,S
+255,0,3,"Rosblom, Mrs. Viktor (Helena Wilhelmina)",female,41,0,2,370129,20.2125,,S
+256,1,3,"Touma, Mrs. Darwis (Hanne Youssef Razi)",female,29,0,2,2650,15.2458,,C
+257,1,1,"Thorne, Mrs. Gertrude Maybelle",female,,0,0,PC 17585,79.2,,C
+258,1,1,"Cherry, Miss. Gladys",female,30,0,0,110152,86.5,B77,S
+259,1,1,"Ward, Miss. Anna",female,35,0,0,PC 17755,512.3292,,C
+260,1,2,"Parrish, Mrs. (Lutie Davis)",female,50,0,1,230433,26,,S
+261,0,3,"Smith, Mr. Thomas",male,,0,0,384461,7.75,,Q
+262,1,3,"Asplund, Master. Edvin Rojj Felix",male,3,4,2,347077,31.3875,,S
+263,0,1,"Taussig, Mr. Emil",male,52,1,1,110413,79.65,E67,S
+264,0,1,"Harrison, Mr. William",male,40,0,0,112059,0,B94,S
+265,0,3,"Henry, Miss. Delia",female,,0,0,382649,7.75,,Q
+266,0,2,"Reeves, Mr. David",male,36,0,0,C.A. 17248,10.5,,S
+267,0,3,"Panula, Mr. Ernesti Arvid",male,16,4,1,3101295,39.6875,,S
+268,1,3,"Persson, Mr. Ernst Ulrik",male,25,1,0,347083,7.775,,S
+269,1,1,"Graham, Mrs. William Thompson (Edith Junkins)",female,58,0,1,PC 17582,153.4625,C125,S
+270,1,1,"Bissette, Miss. Amelia",female,35,0,0,PC 17760,135.6333,C99,S
+271,0,1,"Cairns, Mr. Alexander",male,,0,0,113798,31,,S
+272,1,3,"Tornquist, Mr. William Henry",male,25,0,0,LINE,0,,S
+273,1,2,"Mellinger, Mrs. (Elizabeth Anne Maidment)",female,41,0,1,250644,19.5,,S
+274,0,1,"Natsch, Mr. Charles H",male,37,0,1,PC 17596,29.7,C118,C
+275,1,3,"Healy, Miss. Hanora ""Nora""",female,,0,0,370375,7.75,,Q
+276,1,1,"Andrews, Miss. Kornelia Theodosia",female,63,1,0,13502,77.9583,D7,S
+277,0,3,"Lindblom, Miss. Augusta Charlotta",female,45,0,0,347073,7.75,,S
+278,0,2,"Parkes, Mr. Francis ""Frank""",male,,0,0,239853,0,,S
+279,0,3,"Rice, Master. Eric",male,7,4,1,382652,29.125,,Q
+280,1,3,"Abbott, Mrs. Stanton (Rosa Hunt)",female,35,1,1,C.A. 2673,20.25,,S
+281,0,3,"Duane, Mr. Frank",male,65,0,0,336439,7.75,,Q
+282,0,3,"Olsson, Mr. Nils Johan Goransson",male,28,0,0,347464,7.8542,,S
+283,0,3,"de Pelsmaeker, Mr. Alfons",male,16,0,0,345778,9.5,,S
+284,1,3,"Dorking, Mr. Edward Arthur",male,19,0,0,A/5. 10482,8.05,,S
+285,0,1,"Smith, Mr. Richard William",male,,0,0,113056,26,A19,S
+286,0,3,"Stankovic, Mr. Ivan",male,33,0,0,349239,8.6625,,C
+287,1,3,"de Mulder, Mr. Theodore",male,30,0,0,345774,9.5,,S
+288,0,3,"Naidenoff, Mr. Penko",male,22,0,0,349206,7.8958,,S
+289,1,2,"Hosono, Mr. Masabumi",male,42,0,0,237798,13,,S
+290,1,3,"Connolly, Miss. Kate",female,22,0,0,370373,7.75,,Q
+291,1,1,"Barber, Miss. Ellen ""Nellie""",female,26,0,0,19877,78.85,,S
+292,1,1,"Bishop, Mrs. Dickinson H (Helen Walton)",female,19,1,0,11967,91.0792,B49,C
+293,0,2,"Levy, Mr. Rene Jacques",male,36,0,0,SC/Paris 2163,12.875,D,C
+294,0,3,"Haas, Miss. Aloisia",female,24,0,0,349236,8.85,,S
+295,0,3,"Mineff, Mr. Ivan",male,24,0,0,349233,7.8958,,S
+296,0,1,"Lewy, Mr. Ervin G",male,,0,0,PC 17612,27.7208,,C
+297,0,3,"Hanna, Mr. Mansour",male,23.5,0,0,2693,7.2292,,C
+298,0,1,"Allison, Miss. Helen Loraine",female,2,1,2,113781,151.55,C22 C26,S
+299,1,1,"Saalfeld, Mr. Adolphe",male,,0,0,19988,30.5,C106,S
+300,1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)",female,50,0,1,PC 17558,247.5208,B58 B60,C
+301,1,3,"Kelly, Miss. Anna Katherine ""Annie Kate""",female,,0,0,9234,7.75,,Q
+302,1,3,"McCoy, Mr. Bernard",male,,2,0,367226,23.25,,Q
+303,0,3,"Johnson, Mr. William Cahoone Jr",male,19,0,0,LINE,0,,S
+304,1,2,"Keane, Miss. Nora A",female,,0,0,226593,12.35,E101,Q
+305,0,3,"Williams, Mr. Howard Hugh ""Harry""",male,,0,0,A/5 2466,8.05,,S
+306,1,1,"Allison, Master. Hudson Trevor",male,0.92,1,2,113781,151.55,C22 C26,S
+307,1,1,"Fleming, Miss. Margaret",female,,0,0,17421,110.8833,,C
+308,1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)",female,17,1,0,PC 17758,108.9,C65,C
+309,0,2,"Abelson, Mr. Samuel",male,30,1,0,P/PP 3381,24,,C
+310,1,1,"Francatelli, Miss. Laura Mabel",female,30,0,0,PC 17485,56.9292,E36,C
+311,1,1,"Hays, Miss. Margaret Bechstein",female,24,0,0,11767,83.1583,C54,C
+312,1,1,"Ryerson, Miss. Emily Borie",female,18,2,2,PC 17608,262.375,B57 B59 B63 B66,C
+313,0,2,"Lahtinen, Mrs. William (Anna Sylfven)",female,26,1,1,250651,26,,S
+314,0,3,"Hendekovic, Mr. Ignjac",male,28,0,0,349243,7.8958,,S
+315,0,2,"Hart, Mr. Benjamin",male,43,1,1,F.C.C. 13529,26.25,,S
+316,1,3,"Nilsson, Miss. Helmina Josefina",female,26,0,0,347470,7.8542,,S
+317,1,2,"Kantor, Mrs. Sinai (Miriam Sternin)",female,24,1,0,244367,26,,S
+318,0,2,"Moraweck, Dr. Ernest",male,54,0,0,29011,14,,S
+319,1,1,"Wick, Miss. Mary Natalie",female,31,0,2,36928,164.8667,C7,S
+320,1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)",female,40,1,1,16966,134.5,E34,C
+321,0,3,"Dennis, Mr. Samuel",male,22,0,0,A/5 21172,7.25,,S
+322,0,3,"Danoff, Mr. Yoto",male,27,0,0,349219,7.8958,,S
+323,1,2,"Slayter, Miss. Hilda Mary",female,30,0,0,234818,12.35,,Q
+324,1,2,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)",female,22,1,1,248738,29,,S
+325,0,3,"Sage, Mr. George John Jr",male,,8,2,CA. 2343,69.55,,S
+326,1,1,"Young, Miss. Marie Grice",female,36,0,0,PC 17760,135.6333,C32,C
+327,0,3,"Nysveen, Mr. Johan Hansen",male,61,0,0,345364,6.2375,,S
+328,1,2,"Ball, Mrs. (Ada E Hall)",female,36,0,0,28551,13,D,S
+329,1,3,"Goldsmith, Mrs. Frank John (Emily Alice Brown)",female,31,1,1,363291,20.525,,S
+330,1,1,"Hippach, Miss. Jean Gertrude",female,16,0,1,111361,57.9792,B18,C
+331,1,3,"McCoy, Miss. Agnes",female,,2,0,367226,23.25,,Q
+332,0,1,"Partner, Mr. Austen",male,45.5,0,0,113043,28.5,C124,S
+333,0,1,"Graham, Mr. George Edward",male,38,0,1,PC 17582,153.4625,C91,S
+334,0,3,"Vander Planke, Mr. Leo Edmondus",male,16,2,0,345764,18,,S
+335,1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)",female,,1,0,PC 17611,133.65,,S
+336,0,3,"Denkoff, Mr. Mitto",male,,0,0,349225,7.8958,,S
+337,0,1,"Pears, Mr. Thomas Clinton",male,29,1,0,113776,66.6,C2,S
+338,1,1,"Burns, Miss. Elizabeth Margaret",female,41,0,0,16966,134.5,E40,C
+339,1,3,"Dahl, Mr. Karl Edwart",male,45,0,0,7598,8.05,,S
+340,0,1,"Blackwell, Mr. Stephen Weart",male,45,0,0,113784,35.5,T,S
+341,1,2,"Navratil, Master. Edmond Roger",male,2,1,1,230080,26,F2,S
+342,1,1,"Fortune, Miss. Alice Elizabeth",female,24,3,2,19950,263,C23 C25 C27,S
+343,0,2,"Collander, Mr. Erik Gustaf",male,28,0,0,248740,13,,S
+344,0,2,"Sedgwick, Mr. Charles Frederick Waddington",male,25,0,0,244361,13,,S
+345,0,2,"Fox, Mr. Stanley Hubert",male,36,0,0,229236,13,,S
+346,1,2,"Brown, Miss. Amelia ""Mildred""",female,24,0,0,248733,13,F33,S
+347,1,2,"Smith, Miss. Marion Elsie",female,40,0,0,31418,13,,S
+348,1,3,"Davison, Mrs. Thomas Henry (Mary E Finck)",female,,1,0,386525,16.1,,S
+349,1,3,"Coutts, Master. William Loch ""William""",male,3,1,1,C.A. 37671,15.9,,S
+350,0,3,"Dimic, Mr. Jovan",male,42,0,0,315088,8.6625,,S
+351,0,3,"Odahl, Mr. Nils Martin",male,23,0,0,7267,9.225,,S
+352,0,1,"Williams-Lambert, Mr. Fletcher Fellows",male,,0,0,113510,35,C128,S
+353,0,3,"Elias, Mr. Tannous",male,15,1,1,2695,7.2292,,C
+354,0,3,"Arnold-Franchi, Mr. Josef",male,25,1,0,349237,17.8,,S
+355,0,3,"Yousif, Mr. Wazli",male,,0,0,2647,7.225,,C
+356,0,3,"Vanden Steen, Mr. Leo Peter",male,28,0,0,345783,9.5,,S
+357,1,1,"Bowerman, Miss. Elsie Edith",female,22,0,1,113505,55,E33,S
+358,0,2,"Funk, Miss. Annie Clemmer",female,38,0,0,237671,13,,S
+359,1,3,"McGovern, Miss. Mary",female,,0,0,330931,7.8792,,Q
+360,1,3,"Mockler, Miss. Helen Mary ""Ellie""",female,,0,0,330980,7.8792,,Q
+361,0,3,"Skoog, Mr. Wilhelm",male,40,1,4,347088,27.9,,S
+362,0,2,"del Carlo, Mr. Sebastiano",male,29,1,0,SC/PARIS 2167,27.7208,,C
+363,0,3,"Barbara, Mrs. (Catherine David)",female,45,0,1,2691,14.4542,,C
+364,0,3,"Asim, Mr. Adola",male,35,0,0,SOTON/O.Q. 3101310,7.05,,S
+365,0,3,"O'Brien, Mr. Thomas",male,,1,0,370365,15.5,,Q
+366,0,3,"Adahl, Mr. Mauritz Nils Martin",male,30,0,0,C 7076,7.25,,S
+367,1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)",female,60,1,0,110813,75.25,D37,C
+368,1,3,"Moussa, Mrs. (Mantoura Boulos)",female,,0,0,2626,7.2292,,C
+369,1,3,"Jermyn, Miss. Annie",female,,0,0,14313,7.75,,Q
+370,1,1,"Aubart, Mme. Leontine Pauline",female,24,0,0,PC 17477,69.3,B35,C
+371,1,1,"Harder, Mr. George Achilles",male,25,1,0,11765,55.4417,E50,C
+372,0,3,"Wiklund, Mr. Jakob Alfred",male,18,1,0,3101267,6.4958,,S
+373,0,3,"Beavan, Mr. William Thomas",male,19,0,0,323951,8.05,,S
+374,0,1,"Ringhini, Mr. Sante",male,22,0,0,PC 17760,135.6333,,C
+375,0,3,"Palsson, Miss. Stina Viola",female,3,3,1,349909,21.075,,S
+376,1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)",female,,1,0,PC 17604,82.1708,,C
+377,1,3,"Landergren, Miss. Aurora Adelia",female,22,0,0,C 7077,7.25,,S
+378,0,1,"Widener, Mr. Harry Elkins",male,27,0,2,113503,211.5,C82,C
+379,0,3,"Betros, Mr. Tannous",male,20,0,0,2648,4.0125,,C
+380,0,3,"Gustafsson, Mr. Karl Gideon",male,19,0,0,347069,7.775,,S
+381,1,1,"Bidois, Miss. Rosalie",female,42,0,0,PC 17757,227.525,,C
+382,1,3,"Nakid, Miss. Maria (""Mary"")",female,1,0,2,2653,15.7417,,C
+383,0,3,"Tikkanen, Mr. Juho",male,32,0,0,STON/O 2. 3101293,7.925,,S
+384,1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)",female,35,1,0,113789,52,,S
+385,0,3,"Plotcharsky, Mr. Vasil",male,,0,0,349227,7.8958,,S
+386,0,2,"Davies, Mr. Charles Henry",male,18,0,0,S.O.C. 14879,73.5,,S
+387,0,3,"Goodwin, Master. Sidney Leonard",male,1,5,2,CA 2144,46.9,,S
+388,1,2,"Buss, Miss. Kate",female,36,0,0,27849,13,,S
+389,0,3,"Sadlier, Mr. Matthew",male,,0,0,367655,7.7292,,Q
+390,1,2,"Lehmann, Miss. Bertha",female,17,0,0,SC 1748,12,,C
+391,1,1,"Carter, Mr. William Ernest",male,36,1,2,113760,120,B96 B98,S
+392,1,3,"Jansson, Mr. Carl Olof",male,21,0,0,350034,7.7958,,S
+393,0,3,"Gustafsson, Mr. Johan Birger",male,28,2,0,3101277,7.925,,S
+394,1,1,"Newell, Miss. Marjorie",female,23,1,0,35273,113.275,D36,C
+395,1,3,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)",female,24,0,2,PP 9549,16.7,G6,S
+396,0,3,"Johansson, Mr. Erik",male,22,0,0,350052,7.7958,,S
+397,0,3,"Olsson, Miss. Elina",female,31,0,0,350407,7.8542,,S
+398,0,2,"McKane, Mr. Peter David",male,46,0,0,28403,26,,S
+399,0,2,"Pain, Dr. Alfred",male,23,0,0,244278,10.5,,S
+400,1,2,"Trout, Mrs. William H (Jessie L)",female,28,0,0,240929,12.65,,S
+401,1,3,"Niskanen, Mr. Juha",male,39,0,0,STON/O 2. 3101289,7.925,,S
+402,0,3,"Adams, Mr. John",male,26,0,0,341826,8.05,,S
+403,0,3,"Jussila, Miss. Mari Aina",female,21,1,0,4137,9.825,,S
+404,0,3,"Hakkarainen, Mr. Pekka Pietari",male,28,1,0,STON/O2. 3101279,15.85,,S
+405,0,3,"Oreskovic, Miss. Marija",female,20,0,0,315096,8.6625,,S
+406,0,2,"Gale, Mr. Shadrach",male,34,1,0,28664,21,,S
+407,0,3,"Widegren, Mr. Carl/Charles Peter",male,51,0,0,347064,7.75,,S
+408,1,2,"Richards, Master. William Rowe",male,3,1,1,29106,18.75,,S
+409,0,3,"Birkeland, Mr. Hans Martin Monsen",male,21,0,0,312992,7.775,,S
+410,0,3,"Lefebre, Miss. Ida",female,,3,1,4133,25.4667,,S
+411,0,3,"Sdycoff, Mr. Todor",male,,0,0,349222,7.8958,,S
+412,0,3,"Hart, Mr. Henry",male,,0,0,394140,6.8583,,Q
+413,1,1,"Minahan, Miss. Daisy E",female,33,1,0,19928,90,C78,Q
+414,0,2,"Cunningham, Mr. Alfred Fleming",male,,0,0,239853,0,,S
+415,1,3,"Sundman, Mr. Johan Julian",male,44,0,0,STON/O 2. 3101269,7.925,,S
+416,0,3,"Meek, Mrs. Thomas (Annie Louise Rowley)",female,,0,0,343095,8.05,,S
+417,1,2,"Drew, Mrs. James Vivian (Lulu Thorne Christian)",female,34,1,1,28220,32.5,,S
+418,1,2,"Silven, Miss. Lyyli Karoliina",female,18,0,2,250652,13,,S
+419,0,2,"Matthews, Mr. William John",male,30,0,0,28228,13,,S
+420,0,3,"Van Impe, Miss. Catharina",female,10,0,2,345773,24.15,,S
+421,0,3,"Gheorgheff, Mr. Stanio",male,,0,0,349254,7.8958,,C
+422,0,3,"Charters, Mr. David",male,21,0,0,A/5. 13032,7.7333,,Q
+423,0,3,"Zimmerman, Mr. Leo",male,29,0,0,315082,7.875,,S
+424,0,3,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)",female,28,1,1,347080,14.4,,S
+425,0,3,"Rosblom, Mr. Viktor Richard",male,18,1,1,370129,20.2125,,S
+426,0,3,"Wiseman, Mr. Phillippe",male,,0,0,A/4. 34244,7.25,,S
+427,1,2,"Clarke, Mrs. Charles V (Ada Maria Winfield)",female,28,1,0,2003,26,,S
+428,1,2,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")",female,19,0,0,250655,26,,S
+429,0,3,"Flynn, Mr. James",male,,0,0,364851,7.75,,Q
+430,1,3,"Pickard, Mr. Berk (Berk Trembisky)",male,32,0,0,SOTON/O.Q. 392078,8.05,E10,S
+431,1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan",male,28,0,0,110564,26.55,C52,S
+432,1,3,"Thorneycroft, Mrs. Percival (Florence Kate White)",female,,1,0,376564,16.1,,S
+433,1,2,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)",female,42,1,0,SC/AH 3085,26,,S
+434,0,3,"Kallio, Mr. Nikolai Erland",male,17,0,0,STON/O 2. 3101274,7.125,,S
+435,0,1,"Silvey, Mr. William Baird",male,50,1,0,13507,55.9,E44,S
+436,1,1,"Carter, Miss. Lucile Polk",female,14,1,2,113760,120,B96 B98,S
+437,0,3,"Ford, Miss. Doolina Margaret ""Daisy""",female,21,2,2,W./C. 6608,34.375,,S
+438,1,2,"Richards, Mrs. Sidney (Emily Hocking)",female,24,2,3,29106,18.75,,S
+439,0,1,"Fortune, Mr. Mark",male,64,1,4,19950,263,C23 C25 C27,S
+440,0,2,"Kvillner, Mr. Johan Henrik Johannesson",male,31,0,0,C.A. 18723,10.5,,S
+441,1,2,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)",female,45,1,1,F.C.C. 13529,26.25,,S
+442,0,3,"Hampe, Mr. Leon",male,20,0,0,345769,9.5,,S
+443,0,3,"Petterson, Mr. Johan Emil",male,25,1,0,347076,7.775,,S
+444,1,2,"Reynaldo, Ms. Encarnacion",female,28,0,0,230434,13,,S
+445,1,3,"Johannesen-Bratthammer, Mr. Bernt",male,,0,0,65306,8.1125,,S
+446,1,1,"Dodge, Master. Washington",male,4,0,2,33638,81.8583,A34,S
+447,1,2,"Mellinger, Miss. Madeleine Violet",female,13,0,1,250644,19.5,,S
+448,1,1,"Seward, Mr. Frederic Kimber",male,34,0,0,113794,26.55,,S
+449,1,3,"Baclini, Miss. Marie Catherine",female,5,2,1,2666,19.2583,,C
+450,1,1,"Peuchen, Major. Arthur Godfrey",male,52,0,0,113786,30.5,C104,S
+451,0,2,"West, Mr. Edwy Arthur",male,36,1,2,C.A. 34651,27.75,,S
+452,0,3,"Hagland, Mr. Ingvald Olai Olsen",male,,1,0,65303,19.9667,,S
+453,0,1,"Foreman, Mr. Benjamin Laventall",male,30,0,0,113051,27.75,C111,C
+454,1,1,"Goldenberg, Mr. Samuel L",male,49,1,0,17453,89.1042,C92,C
+455,0,3,"Peduzzi, Mr. Joseph",male,,0,0,A/5 2817,8.05,,S
+456,1,3,"Jalsevac, Mr. Ivan",male,29,0,0,349240,7.8958,,C
+457,0,1,"Millet, Mr. Francis Davis",male,65,0,0,13509,26.55,E38,S
+458,1,1,"Kenyon, Mrs. Frederick R (Marion)",female,,1,0,17464,51.8625,D21,S
+459,1,2,"Toomey, Miss. Ellen",female,50,0,0,F.C.C. 13531,10.5,,S
+460,0,3,"O'Connor, Mr. Maurice",male,,0,0,371060,7.75,,Q
+461,1,1,"Anderson, Mr. Harry",male,48,0,0,19952,26.55,E12,S
+462,0,3,"Morley, Mr. William",male,34,0,0,364506,8.05,,S
+463,0,1,"Gee, Mr. Arthur H",male,47,0,0,111320,38.5,E63,S
+464,0,2,"Milling, Mr. Jacob Christian",male,48,0,0,234360,13,,S
+465,0,3,"Maisner, Mr. Simon",male,,0,0,A/S 2816,8.05,,S
+466,0,3,"Goncalves, Mr. Manuel Estanslas",male,38,0,0,SOTON/O.Q. 3101306,7.05,,S
+467,0,2,"Campbell, Mr. William",male,,0,0,239853,0,,S
+468,0,1,"Smart, Mr. John Montgomery",male,56,0,0,113792,26.55,,S
+469,0,3,"Scanlan, Mr. James",male,,0,0,36209,7.725,,Q
+470,1,3,"Baclini, Miss. Helene Barbara",female,0.75,2,1,2666,19.2583,,C
+471,0,3,"Keefe, Mr. Arthur",male,,0,0,323592,7.25,,S
+472,0,3,"Cacic, Mr. Luka",male,38,0,0,315089,8.6625,,S
+473,1,2,"West, Mrs. Edwy Arthur (Ada Mary Worth)",female,33,1,2,C.A. 34651,27.75,,S
+474,1,2,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)",female,23,0,0,SC/AH Basle 541,13.7917,D,C
+475,0,3,"Strandberg, Miss. Ida Sofia",female,22,0,0,7553,9.8375,,S
+476,0,1,"Clifford, Mr. George Quincy",male,,0,0,110465,52,A14,S
+477,0,2,"Renouf, Mr. Peter Henry",male,34,1,0,31027,21,,S
+478,0,3,"Braund, Mr. Lewis Richard",male,29,1,0,3460,7.0458,,S
+479,0,3,"Karlsson, Mr. Nils August",male,22,0,0,350060,7.5208,,S
+480,1,3,"Hirvonen, Miss. Hildur E",female,2,0,1,3101298,12.2875,,S
+481,0,3,"Goodwin, Master. Harold Victor",male,9,5,2,CA 2144,46.9,,S
+482,0,2,"Frost, Mr. Anthony Wood ""Archie""",male,,0,0,239854,0,,S
+483,0,3,"Rouse, Mr. Richard Henry",male,50,0,0,A/5 3594,8.05,,S
+484,1,3,"Turkula, Mrs. (Hedwig)",female,63,0,0,4134,9.5875,,S
+485,1,1,"Bishop, Mr. Dickinson H",male,25,1,0,11967,91.0792,B49,C
+486,0,3,"Lefebre, Miss. Jeannie",female,,3,1,4133,25.4667,,S
+487,1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)",female,35,1,0,19943,90,C93,S
+488,0,1,"Kent, Mr. Edward Austin",male,58,0,0,11771,29.7,B37,C
+489,0,3,"Somerton, Mr. Francis William",male,30,0,0,A.5. 18509,8.05,,S
+490,1,3,"Coutts, Master. Eden Leslie ""Neville""",male,9,1,1,C.A. 37671,15.9,,S
+491,0,3,"Hagland, Mr. Konrad Mathias Reiersen",male,,1,0,65304,19.9667,,S
+492,0,3,"Windelov, Mr. Einar",male,21,0,0,SOTON/OQ 3101317,7.25,,S
+493,0,1,"Molson, Mr. Harry Markland",male,55,0,0,113787,30.5,C30,S
+494,0,1,"Artagaveytia, Mr. Ramon",male,71,0,0,PC 17609,49.5042,,C
+495,0,3,"Stanley, Mr. Edward Roland",male,21,0,0,A/4 45380,8.05,,S
+496,0,3,"Yousseff, Mr. Gerious",male,,0,0,2627,14.4583,,C
+497,1,1,"Eustis, Miss. Elizabeth Mussey",female,54,1,0,36947,78.2667,D20,C
+498,0,3,"Shellard, Mr. Frederick William",male,,0,0,C.A. 6212,15.1,,S
+499,0,1,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)",female,25,1,2,113781,151.55,C22 C26,S
+500,0,3,"Svensson, Mr. Olof",male,24,0,0,350035,7.7958,,S
+501,0,3,"Calic, Mr. Petar",male,17,0,0,315086,8.6625,,S
+502,0,3,"Canavan, Miss. Mary",female,21,0,0,364846,7.75,,Q
+503,0,3,"O'Sullivan, Miss. Bridget Mary",female,,0,0,330909,7.6292,,Q
+504,0,3,"Laitinen, Miss. Kristina Sofia",female,37,0,0,4135,9.5875,,S
+505,1,1,"Maioni, Miss. Roberta",female,16,0,0,110152,86.5,B79,S
+506,0,1,"Penasco y Castellana, Mr. Victor de Satode",male,18,1,0,PC 17758,108.9,C65,C
+507,1,2,"Quick, Mrs. Frederick Charles (Jane Richards)",female,33,0,2,26360,26,,S
+508,1,1,"Bradley, Mr. George (""George Arthur Brayton"")",male,,0,0,111427,26.55,,S
+509,0,3,"Olsen, Mr. Henry Margido",male,28,0,0,C 4001,22.525,,S
+510,1,3,"Lang, Mr. Fang",male,26,0,0,1601,56.4958,,S
+511,1,3,"Daly, Mr. Eugene Patrick",male,29,0,0,382651,7.75,,Q
+512,0,3,"Webber, Mr. James",male,,0,0,SOTON/OQ 3101316,8.05,,S
+513,1,1,"McGough, Mr. James Robert",male,36,0,0,PC 17473,26.2875,E25,S
+514,1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)",female,54,1,0,PC 17603,59.4,,C
+515,0,3,"Coleff, Mr. Satio",male,24,0,0,349209,7.4958,,S
+516,0,1,"Walker, Mr. William Anderson",male,47,0,0,36967,34.0208,D46,S
+517,1,2,"Lemore, Mrs. (Amelia Milley)",female,34,0,0,C.A. 34260,10.5,F33,S
+518,0,3,"Ryan, Mr. Patrick",male,,0,0,371110,24.15,,Q
+519,1,2,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)",female,36,1,0,226875,26,,S
+520,0,3,"Pavlovic, Mr. Stefo",male,32,0,0,349242,7.8958,,S
+521,1,1,"Perreault, Miss. Anne",female,30,0,0,12749,93.5,B73,S
+522,0,3,"Vovk, Mr. Janko",male,22,0,0,349252,7.8958,,S
+523,0,3,"Lahoud, Mr. Sarkis",male,,0,0,2624,7.225,,C
+524,1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)",female,44,0,1,111361,57.9792,B18,C
+525,0,3,"Kassem, Mr. Fared",male,,0,0,2700,7.2292,,C
+526,0,3,"Farrell, Mr. James",male,40.5,0,0,367232,7.75,,Q
+527,1,2,"Ridsdale, Miss. Lucy",female,50,0,0,W./C. 14258,10.5,,S
+528,0,1,"Farthing, Mr. John",male,,0,0,PC 17483,221.7792,C95,S
+529,0,3,"Salonen, Mr. Johan Werner",male,39,0,0,3101296,7.925,,S
+530,0,2,"Hocking, Mr. Richard George",male,23,2,1,29104,11.5,,S
+531,1,2,"Quick, Miss. Phyllis May",female,2,1,1,26360,26,,S
+532,0,3,"Toufik, Mr. Nakli",male,,0,0,2641,7.2292,,C
+533,0,3,"Elias, Mr. Joseph Jr",male,17,1,1,2690,7.2292,,C
+534,1,3,"Peter, Mrs. Catherine (Catherine Rizk)",female,,0,2,2668,22.3583,,C
+535,0,3,"Cacic, Miss. Marija",female,30,0,0,315084,8.6625,,S
+536,1,2,"Hart, Miss. Eva Miriam",female,7,0,2,F.C.C. 13529,26.25,,S
+537,0,1,"Butt, Major. Archibald Willingham",male,45,0,0,113050,26.55,B38,S
+538,1,1,"LeRoy, Miss. Bertha",female,30,0,0,PC 17761,106.425,,C
+539,0,3,"Risien, Mr. Samuel Beard",male,,0,0,364498,14.5,,S
+540,1,1,"Frolicher, Miss. Hedwig Margaritha",female,22,0,2,13568,49.5,B39,C
+541,1,1,"Crosby, Miss. Harriet R",female,36,0,2,WE/P 5735,71,B22,S
+542,0,3,"Andersson, Miss. Ingeborg Constanzia",female,9,4,2,347082,31.275,,S
+543,0,3,"Andersson, Miss. Sigrid Elisabeth",female,11,4,2,347082,31.275,,S
+544,1,2,"Beane, Mr. Edward",male,32,1,0,2908,26,,S
+545,0,1,"Douglas, Mr. Walter Donald",male,50,1,0,PC 17761,106.425,C86,C
+546,0,1,"Nicholson, Mr. Arthur Ernest",male,64,0,0,693,26,,S
+547,1,2,"Beane, Mrs. Edward (Ethel Clarke)",female,19,1,0,2908,26,,S
+548,1,2,"Padro y Manent, Mr. Julian",male,,0,0,SC/PARIS 2146,13.8625,,C
+549,0,3,"Goldsmith, Mr. Frank John",male,33,1,1,363291,20.525,,S
+550,1,2,"Davies, Master. John Morgan Jr",male,8,1,1,C.A. 33112,36.75,,S
+551,1,1,"Thayer, Mr. John Borland Jr",male,17,0,2,17421,110.8833,C70,C
+552,0,2,"Sharp, Mr. Percival James R",male,27,0,0,244358,26,,S
+553,0,3,"O'Brien, Mr. Timothy",male,,0,0,330979,7.8292,,Q
+554,1,3,"Leeni, Mr. Fahim (""Philip Zenni"")",male,22,0,0,2620,7.225,,C
+555,1,3,"Ohman, Miss. Velin",female,22,0,0,347085,7.775,,S
+556,0,1,"Wright, Mr. George",male,62,0,0,113807,26.55,,S
+557,1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")",female,48,1,0,11755,39.6,A16,C
+558,0,1,"Robbins, Mr. Victor",male,,0,0,PC 17757,227.525,,C
+559,1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)",female,39,1,1,110413,79.65,E67,S
+560,1,3,"de Messemaeker, Mrs. Guillaume Joseph (Emma)",female,36,1,0,345572,17.4,,S
+561,0,3,"Morrow, Mr. Thomas Rowan",male,,0,0,372622,7.75,,Q
+562,0,3,"Sivic, Mr. Husein",male,40,0,0,349251,7.8958,,S
+563,0,2,"Norman, Mr. Robert Douglas",male,28,0,0,218629,13.5,,S
+564,0,3,"Simmons, Mr. John",male,,0,0,SOTON/OQ 392082,8.05,,S
+565,0,3,"Meanwell, Miss. (Marion Ogden)",female,,0,0,SOTON/O.Q. 392087,8.05,,S
+566,0,3,"Davies, Mr. Alfred J",male,24,2,0,A/4 48871,24.15,,S
+567,0,3,"Stoytcheff, Mr. Ilia",male,19,0,0,349205,7.8958,,S
+568,0,3,"Palsson, Mrs. Nils (Alma Cornelia Berglund)",female,29,0,4,349909,21.075,,S
+569,0,3,"Doharr, Mr. Tannous",male,,0,0,2686,7.2292,,C
+570,1,3,"Jonsson, Mr. Carl",male,32,0,0,350417,7.8542,,S
+571,1,2,"Harris, Mr. George",male,62,0,0,S.W./PP 752,10.5,,S
+572,1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)",female,53,2,0,11769,51.4792,C101,S
+573,1,1,"Flynn, Mr. John Irwin (""Irving"")",male,36,0,0,PC 17474,26.3875,E25,S
+574,1,3,"Kelly, Miss. Mary",female,,0,0,14312,7.75,,Q
+575,0,3,"Rush, Mr. Alfred George John",male,16,0,0,A/4. 20589,8.05,,S
+576,0,3,"Patchett, Mr. George",male,19,0,0,358585,14.5,,S
+577,1,2,"Garside, Miss. Ethel",female,34,0,0,243880,13,,S
+578,1,1,"Silvey, Mrs. William Baird (Alice Munger)",female,39,1,0,13507,55.9,E44,S
+579,0,3,"Caram, Mrs. Joseph (Maria Elias)",female,,1,0,2689,14.4583,,C
+580,1,3,"Jussila, Mr. Eiriik",male,32,0,0,STON/O 2. 3101286,7.925,,S
+581,1,2,"Christy, Miss. Julie Rachel",female,25,1,1,237789,30,,S
+582,1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)",female,39,1,1,17421,110.8833,C68,C
+583,0,2,"Downton, Mr. William James",male,54,0,0,28403,26,,S
+584,0,1,"Ross, Mr. John Hugo",male,36,0,0,13049,40.125,A10,C
+585,0,3,"Paulner, Mr. Uscher",male,,0,0,3411,8.7125,,C
+586,1,1,"Taussig, Miss. Ruth",female,18,0,2,110413,79.65,E68,S
+587,0,2,"Jarvis, Mr. John Denzil",male,47,0,0,237565,15,,S
+588,1,1,"Frolicher-Stehli, Mr. Maxmillian",male,60,1,1,13567,79.2,B41,C
+589,0,3,"Gilinski, Mr. Eliezer",male,22,0,0,14973,8.05,,S
+590,0,3,"Murdlin, Mr. Joseph",male,,0,0,A./5. 3235,8.05,,S
+591,0,3,"Rintamaki, Mr. Matti",male,35,0,0,STON/O 2. 3101273,7.125,,S
+592,1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)",female,52,1,0,36947,78.2667,D20,C
+593,0,3,"Elsbury, Mr. William James",male,47,0,0,A/5 3902,7.25,,S
+594,0,3,"Bourke, Miss. Mary",female,,0,2,364848,7.75,,Q
+595,0,2,"Chapman, Mr. John Henry",male,37,1,0,SC/AH 29037,26,,S
+596,0,3,"Van Impe, Mr. Jean Baptiste",male,36,1,1,345773,24.15,,S
+597,1,2,"Leitch, Miss. Jessie Wills",female,,0,0,248727,33,,S
+598,0,3,"Johnson, Mr. Alfred",male,49,0,0,LINE,0,,S
+599,0,3,"Boulos, Mr. Hanna",male,,0,0,2664,7.225,,C
+600,1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")",male,49,1,0,PC 17485,56.9292,A20,C
+601,1,2,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)",female,24,2,1,243847,27,,S
+602,0,3,"Slabenoff, Mr. Petco",male,,0,0,349214,7.8958,,S
+603,0,1,"Harrington, Mr. Charles H",male,,0,0,113796,42.4,,S
+604,0,3,"Torber, Mr. Ernst William",male,44,0,0,364511,8.05,,S
+605,1,1,"Homer, Mr. Harry (""Mr E Haven"")",male,35,0,0,111426,26.55,,C
+606,0,3,"Lindell, Mr. Edvard Bengtsson",male,36,1,0,349910,15.55,,S
+607,0,3,"Karaic, Mr. Milan",male,30,0,0,349246,7.8958,,S
+608,1,1,"Daniel, Mr. Robert Williams",male,27,0,0,113804,30.5,,S
+609,1,2,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)",female,22,1,2,SC/Paris 2123,41.5792,,C
+610,1,1,"Shutes, Miss. Elizabeth W",female,40,0,0,PC 17582,153.4625,C125,S
+611,0,3,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)",female,39,1,5,347082,31.275,,S
+612,0,3,"Jardin, Mr. Jose Neto",male,,0,0,SOTON/O.Q. 3101305,7.05,,S
+613,1,3,"Murphy, Miss. Margaret Jane",female,,1,0,367230,15.5,,Q
+614,0,3,"Horgan, Mr. John",male,,0,0,370377,7.75,,Q
+615,0,3,"Brocklebank, Mr. William Alfred",male,35,0,0,364512,8.05,,S
+616,1,2,"Herman, Miss. Alice",female,24,1,2,220845,65,,S
+617,0,3,"Danbom, Mr. Ernst Gilbert",male,34,1,1,347080,14.4,,S
+618,0,3,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)",female,26,1,0,A/5. 3336,16.1,,S
+619,1,2,"Becker, Miss. Marion Louise",female,4,2,1,230136,39,F4,S
+620,0,2,"Gavey, Mr. Lawrence",male,26,0,0,31028,10.5,,S
+621,0,3,"Yasbeck, Mr. Antoni",male,27,1,0,2659,14.4542,,C
+622,1,1,"Kimball, Mr. Edwin Nelson Jr",male,42,1,0,11753,52.5542,D19,S
+623,1,3,"Nakid, Mr. Sahid",male,20,1,1,2653,15.7417,,C
+624,0,3,"Hansen, Mr. Henry Damsgaard",male,21,0,0,350029,7.8542,,S
+625,0,3,"Bowen, Mr. David John ""Dai""",male,21,0,0,54636,16.1,,S
+626,0,1,"Sutton, Mr. Frederick",male,61,0,0,36963,32.3208,D50,S
+627,0,2,"Kirkland, Rev. Charles Leonard",male,57,0,0,219533,12.35,,Q
+628,1,1,"Longley, Miss. Gretchen Fiske",female,21,0,0,13502,77.9583,D9,S
+629,0,3,"Bostandyeff, Mr. Guentcho",male,26,0,0,349224,7.8958,,S
+630,0,3,"O'Connell, Mr. Patrick D",male,,0,0,334912,7.7333,,Q
+631,1,1,"Barkworth, Mr. Algernon Henry Wilson",male,80,0,0,27042,30,A23,S
+632,0,3,"Lundahl, Mr. Johan Svensson",male,51,0,0,347743,7.0542,,S
+633,1,1,"Stahelin-Maeglin, Dr. Max",male,32,0,0,13214,30.5,B50,C
+634,0,1,"Parr, Mr. William Henry Marsh",male,,0,0,112052,0,,S
+635,0,3,"Skoog, Miss. Mabel",female,9,3,2,347088,27.9,,S
+636,1,2,"Davis, Miss. Mary",female,28,0,0,237668,13,,S
+637,0,3,"Leinonen, Mr. Antti Gustaf",male,32,0,0,STON/O 2. 3101292,7.925,,S
+638,0,2,"Collyer, Mr. Harvey",male,31,1,1,C.A. 31921,26.25,,S
+639,0,3,"Panula, Mrs. Juha (Maria Emilia Ojala)",female,41,0,5,3101295,39.6875,,S
+640,0,3,"Thorneycroft, Mr. Percival",male,,1,0,376564,16.1,,S
+641,0,3,"Jensen, Mr. Hans Peder",male,20,0,0,350050,7.8542,,S
+642,1,1,"Sagesser, Mlle. Emma",female,24,0,0,PC 17477,69.3,B35,C
+643,0,3,"Skoog, Miss. Margit Elizabeth",female,2,3,2,347088,27.9,,S
+644,1,3,"Foo, Mr. Choong",male,,0,0,1601,56.4958,,S
+645,1,3,"Baclini, Miss. Eugenie",female,0.75,2,1,2666,19.2583,,C
+646,1,1,"Harper, Mr. Henry Sleeper",male,48,1,0,PC 17572,76.7292,D33,C
+647,0,3,"Cor, Mr. Liudevit",male,19,0,0,349231,7.8958,,S
+648,1,1,"Simonius-Blumer, Col. Oberst Alfons",male,56,0,0,13213,35.5,A26,C
+649,0,3,"Willey, Mr. Edward",male,,0,0,S.O./P.P. 751,7.55,,S
+650,1,3,"Stanley, Miss. Amy Zillah Elsie",female,23,0,0,CA. 2314,7.55,,S
+651,0,3,"Mitkoff, Mr. Mito",male,,0,0,349221,7.8958,,S
+652,1,2,"Doling, Miss. Elsie",female,18,0,1,231919,23,,S
+653,0,3,"Kalvik, Mr. Johannes Halvorsen",male,21,0,0,8475,8.4333,,S
+654,1,3,"O'Leary, Miss. Hanora ""Norah""",female,,0,0,330919,7.8292,,Q
+655,0,3,"Hegarty, Miss. Hanora ""Nora""",female,18,0,0,365226,6.75,,Q
+656,0,2,"Hickman, Mr. Leonard Mark",male,24,2,0,S.O.C. 14879,73.5,,S
+657,0,3,"Radeff, Mr. Alexander",male,,0,0,349223,7.8958,,S
+658,0,3,"Bourke, Mrs. John (Catherine)",female,32,1,1,364849,15.5,,Q
+659,0,2,"Eitemiller, Mr. George Floyd",male,23,0,0,29751,13,,S
+660,0,1,"Newell, Mr. Arthur Webster",male,58,0,2,35273,113.275,D48,C
+661,1,1,"Frauenthal, Dr. Henry William",male,50,2,0,PC 17611,133.65,,S
+662,0,3,"Badt, Mr. Mohamed",male,40,0,0,2623,7.225,,C
+663,0,1,"Colley, Mr. Edward Pomeroy",male,47,0,0,5727,25.5875,E58,S
+664,0,3,"Coleff, Mr. Peju",male,36,0,0,349210,7.4958,,S
+665,1,3,"Lindqvist, Mr. Eino William",male,20,1,0,STON/O 2. 3101285,7.925,,S
+666,0,2,"Hickman, Mr. Lewis",male,32,2,0,S.O.C. 14879,73.5,,S
+667,0,2,"Butler, Mr. Reginald Fenton",male,25,0,0,234686,13,,S
+668,0,3,"Rommetvedt, Mr. Knud Paust",male,,0,0,312993,7.775,,S
+669,0,3,"Cook, Mr. Jacob",male,43,0,0,A/5 3536,8.05,,S
+670,1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)",female,,1,0,19996,52,C126,S
+671,1,2,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)",female,40,1,1,29750,39,,S
+672,0,1,"Davidson, Mr. Thornton",male,31,1,0,F.C. 12750,52,B71,S
+673,0,2,"Mitchell, Mr. Henry Michael",male,70,0,0,C.A. 24580,10.5,,S
+674,1,2,"Wilhelms, Mr. Charles",male,31,0,0,244270,13,,S
+675,0,2,"Watson, Mr. Ennis Hastings",male,,0,0,239856,0,,S
+676,0,3,"Edvardsson, Mr. Gustaf Hjalmar",male,18,0,0,349912,7.775,,S
+677,0,3,"Sawyer, Mr. Frederick Charles",male,24.5,0,0,342826,8.05,,S
+678,1,3,"Turja, Miss. Anna Sofia",female,18,0,0,4138,9.8417,,S
+679,0,3,"Goodwin, Mrs. Frederick (Augusta Tyler)",female,43,1,6,CA 2144,46.9,,S
+680,1,1,"Cardeza, Mr. Thomas Drake Martinez",male,36,0,1,PC 17755,512.3292,B51 B53 B55,C
+681,0,3,"Peters, Miss. Katie",female,,0,0,330935,8.1375,,Q
+682,1,1,"Hassab, Mr. Hammad",male,27,0,0,PC 17572,76.7292,D49,C
+683,0,3,"Olsvigen, Mr. Thor Anderson",male,20,0,0,6563,9.225,,S
+684,0,3,"Goodwin, Mr. Charles Edward",male,14,5,2,CA 2144,46.9,,S
+685,0,2,"Brown, Mr. Thomas William Solomon",male,60,1,1,29750,39,,S
+686,0,2,"Laroche, Mr. Joseph Philippe Lemercier",male,25,1,2,SC/Paris 2123,41.5792,,C
+687,0,3,"Panula, Mr. Jaako Arnold",male,14,4,1,3101295,39.6875,,S
+688,0,3,"Dakic, Mr. Branko",male,19,0,0,349228,10.1708,,S
+689,0,3,"Fischer, Mr. Eberhard Thelander",male,18,0,0,350036,7.7958,,S
+690,1,1,"Madill, Miss. Georgette Alexandra",female,15,0,1,24160,211.3375,B5,S
+691,1,1,"Dick, Mr. Albert Adrian",male,31,1,0,17474,57,B20,S
+692,1,3,"Karun, Miss. Manca",female,4,0,1,349256,13.4167,,C
+693,1,3,"Lam, Mr. Ali",male,,0,0,1601,56.4958,,S
+694,0,3,"Saad, Mr. Khalil",male,25,0,0,2672,7.225,,C
+695,0,1,"Weir, Col. John",male,60,0,0,113800,26.55,,S
+696,0,2,"Chapman, Mr. Charles Henry",male,52,0,0,248731,13.5,,S
+697,0,3,"Kelly, Mr. James",male,44,0,0,363592,8.05,,S
+698,1,3,"Mullens, Miss. Katherine ""Katie""",female,,0,0,35852,7.7333,,Q
+699,0,1,"Thayer, Mr. John Borland",male,49,1,1,17421,110.8833,C68,C
+700,0,3,"Humblen, Mr. Adolf Mathias Nicolai Olsen",male,42,0,0,348121,7.65,F G63,S
+701,1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)",female,18,1,0,PC 17757,227.525,C62 C64,C
+702,1,1,"Silverthorne, Mr. Spencer Victor",male,35,0,0,PC 17475,26.2875,E24,S
+703,0,3,"Barbara, Miss. Saiide",female,18,0,1,2691,14.4542,,C
+704,0,3,"Gallagher, Mr. Martin",male,25,0,0,36864,7.7417,,Q
+705,0,3,"Hansen, Mr. Henrik Juul",male,26,1,0,350025,7.8542,,S
+706,0,2,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")",male,39,0,0,250655,26,,S
+707,1,2,"Kelly, Mrs. Florence ""Fannie""",female,45,0,0,223596,13.5,,S
+708,1,1,"Calderhead, Mr. Edward Pennington",male,42,0,0,PC 17476,26.2875,E24,S
+709,1,1,"Cleaver, Miss. Alice",female,22,0,0,113781,151.55,,S
+710,1,3,"Moubarek, Master. Halim Gonios (""William George"")",male,,1,1,2661,15.2458,,C
+711,1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")",female,24,0,0,PC 17482,49.5042,C90,C
+712,0,1,"Klaber, Mr. Herman",male,,0,0,113028,26.55,C124,S
+713,1,1,"Taylor, Mr. Elmer Zebley",male,48,1,0,19996,52,C126,S
+714,0,3,"Larsson, Mr. August Viktor",male,29,0,0,7545,9.4833,,S
+715,0,2,"Greenberg, Mr. Samuel",male,52,0,0,250647,13,,S
+716,0,3,"Soholt, Mr. Peter Andreas Lauritz Andersen",male,19,0,0,348124,7.65,F G73,S
+717,1,1,"Endres, Miss. Caroline Louise",female,38,0,0,PC 17757,227.525,C45,C
+718,1,2,"Troutt, Miss. Edwina Celia ""Winnie""",female,27,0,0,34218,10.5,E101,S
+719,0,3,"McEvoy, Mr. Michael",male,,0,0,36568,15.5,,Q
+720,0,3,"Johnson, Mr. Malkolm Joackim",male,33,0,0,347062,7.775,,S
+721,1,2,"Harper, Miss. Annie Jessie ""Nina""",female,6,0,1,248727,33,,S
+722,0,3,"Jensen, Mr. Svend Lauritz",male,17,1,0,350048,7.0542,,S
+723,0,2,"Gillespie, Mr. William Henry",male,34,0,0,12233,13,,S
+724,0,2,"Hodges, Mr. Henry Price",male,50,0,0,250643,13,,S
+725,1,1,"Chambers, Mr. Norman Campbell",male,27,1,0,113806,53.1,E8,S
+726,0,3,"Oreskovic, Mr. Luka",male,20,0,0,315094,8.6625,,S
+727,1,2,"Renouf, Mrs. Peter Henry (Lillian Jefferys)",female,30,3,0,31027,21,,S
+728,1,3,"Mannion, Miss. Margareth",female,,0,0,36866,7.7375,,Q
+729,0,2,"Bryhl, Mr. Kurt Arnold Gottfrid",male,25,1,0,236853,26,,S
+730,0,3,"Ilmakangas, Miss. Pieta Sofia",female,25,1,0,STON/O2. 3101271,7.925,,S
+731,1,1,"Allen, Miss. Elisabeth Walton",female,29,0,0,24160,211.3375,B5,S
+732,0,3,"Hassan, Mr. Houssein G N",male,11,0,0,2699,18.7875,,C
+733,0,2,"Knight, Mr. Robert J",male,,0,0,239855,0,,S
+734,0,2,"Berriman, Mr. William John",male,23,0,0,28425,13,,S
+735,0,2,"Troupiansky, Mr. Moses Aaron",male,23,0,0,233639,13,,S
+736,0,3,"Williams, Mr. Leslie",male,28.5,0,0,54636,16.1,,S
+737,0,3,"Ford, Mrs. Edward (Margaret Ann Watson)",female,48,1,3,W./C. 6608,34.375,,S
+738,1,1,"Lesurer, Mr. Gustave J",male,35,0,0,PC 17755,512.3292,B101,C
+739,0,3,"Ivanoff, Mr. Kanio",male,,0,0,349201,7.8958,,S
+740,0,3,"Nankoff, Mr. Minko",male,,0,0,349218,7.8958,,S
+741,1,1,"Hawksford, Mr. Walter James",male,,0,0,16988,30,D45,S
+742,0,1,"Cavendish, Mr. Tyrell William",male,36,1,0,19877,78.85,C46,S
+743,1,1,"Ryerson, Miss. Susan Parker ""Suzette""",female,21,2,2,PC 17608,262.375,B57 B59 B63 B66,C
+744,0,3,"McNamee, Mr. Neal",male,24,1,0,376566,16.1,,S
+745,1,3,"Stranden, Mr. Juho",male,31,0,0,STON/O 2. 3101288,7.925,,S
+746,0,1,"Crosby, Capt. Edward Gifford",male,70,1,1,WE/P 5735,71,B22,S
+747,0,3,"Abbott, Mr. Rossmore Edward",male,16,1,1,C.A. 2673,20.25,,S
+748,1,2,"Sinkkonen, Miss. Anna",female,30,0,0,250648,13,,S
+749,0,1,"Marvin, Mr. Daniel Warner",male,19,1,0,113773,53.1,D30,S
+750,0,3,"Connaghton, Mr. Michael",male,31,0,0,335097,7.75,,Q
+751,1,2,"Wells, Miss. Joan",female,4,1,1,29103,23,,S
+752,1,3,"Moor, Master. Meier",male,6,0,1,392096,12.475,E121,S
+753,0,3,"Vande Velde, Mr. Johannes Joseph",male,33,0,0,345780,9.5,,S
+754,0,3,"Jonkoff, Mr. Lalio",male,23,0,0,349204,7.8958,,S
+755,1,2,"Herman, Mrs. Samuel (Jane Laver)",female,48,1,2,220845,65,,S
+756,1,2,"Hamalainen, Master. Viljo",male,0.67,1,1,250649,14.5,,S
+757,0,3,"Carlsson, Mr. August Sigfrid",male,28,0,0,350042,7.7958,,S
+758,0,2,"Bailey, Mr. Percy Andrew",male,18,0,0,29108,11.5,,S
+759,0,3,"Theobald, Mr. Thomas Leonard",male,34,0,0,363294,8.05,,S
+760,1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)",female,33,0,0,110152,86.5,B77,S
+761,0,3,"Garfirth, Mr. John",male,,0,0,358585,14.5,,S
+762,0,3,"Nirva, Mr. Iisakki Antino Aijo",male,41,0,0,SOTON/O2 3101272,7.125,,S
+763,1,3,"Barah, Mr. Hanna Assi",male,20,0,0,2663,7.2292,,C
+764,1,1,"Carter, Mrs. William Ernest (Lucile Polk)",female,36,1,2,113760,120,B96 B98,S
+765,0,3,"Eklund, Mr. Hans Linus",male,16,0,0,347074,7.775,,S
+766,1,1,"Hogeboom, Mrs. John C (Anna Andrews)",female,51,1,0,13502,77.9583,D11,S
+767,0,1,"Brewe, Dr. Arthur Jackson",male,,0,0,112379,39.6,,C
+768,0,3,"Mangan, Miss. Mary",female,30.5,0,0,364850,7.75,,Q
+769,0,3,"Moran, Mr. Daniel J",male,,1,0,371110,24.15,,Q
+770,0,3,"Gronnestad, Mr. Daniel Danielsen",male,32,0,0,8471,8.3625,,S
+771,0,3,"Lievens, Mr. Rene Aime",male,24,0,0,345781,9.5,,S
+772,0,3,"Jensen, Mr. Niels Peder",male,48,0,0,350047,7.8542,,S
+773,0,2,"Mack, Mrs. (Mary)",female,57,0,0,S.O./P.P. 3,10.5,E77,S
+774,0,3,"Elias, Mr. Dibo",male,,0,0,2674,7.225,,C
+775,1,2,"Hocking, Mrs. Elizabeth (Eliza Needs)",female,54,1,3,29105,23,,S
+776,0,3,"Myhrman, Mr. Pehr Fabian Oliver Malkolm",male,18,0,0,347078,7.75,,S
+777,0,3,"Tobin, Mr. Roger",male,,0,0,383121,7.75,F38,Q
+778,1,3,"Emanuel, Miss. Virginia Ethel",female,5,0,0,364516,12.475,,S
+779,0,3,"Kilgannon, Mr. Thomas J",male,,0,0,36865,7.7375,,Q
+780,1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)",female,43,0,1,24160,211.3375,B3,S
+781,1,3,"Ayoub, Miss. Banoura",female,13,0,0,2687,7.2292,,C
+782,1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)",female,17,1,0,17474,57,B20,S
+783,0,1,"Long, Mr. Milton Clyde",male,29,0,0,113501,30,D6,S
+784,0,3,"Johnston, Mr. Andrew G",male,,1,2,W./C. 6607,23.45,,S
+785,0,3,"Ali, Mr. William",male,25,0,0,SOTON/O.Q. 3101312,7.05,,S
+786,0,3,"Harmer, Mr. Abraham (David Lishin)",male,25,0,0,374887,7.25,,S
+787,1,3,"Sjoblom, Miss. Anna Sofia",female,18,0,0,3101265,7.4958,,S
+788,0,3,"Rice, Master. George Hugh",male,8,4,1,382652,29.125,,Q
+789,1,3,"Dean, Master. Bertram Vere",male,1,1,2,C.A. 2315,20.575,,S
+790,0,1,"Guggenheim, Mr. Benjamin",male,46,0,0,PC 17593,79.2,B82 B84,C
+791,0,3,"Keane, Mr. Andrew ""Andy""",male,,0,0,12460,7.75,,Q
+792,0,2,"Gaskell, Mr. Alfred",male,16,0,0,239865,26,,S
+793,0,3,"Sage, Miss. Stella Anna",female,,8,2,CA. 2343,69.55,,S
+794,0,1,"Hoyt, Mr. William Fisher",male,,0,0,PC 17600,30.6958,,C
+795,0,3,"Dantcheff, Mr. Ristiu",male,25,0,0,349203,7.8958,,S
+796,0,2,"Otter, Mr. Richard",male,39,0,0,28213,13,,S
+797,1,1,"Leader, Dr. Alice (Farnham)",female,49,0,0,17465,25.9292,D17,S
+798,1,3,"Osman, Mrs. Mara",female,31,0,0,349244,8.6833,,S
+799,0,3,"Ibrahim Shawah, Mr. Yousseff",male,30,0,0,2685,7.2292,,C
+800,0,3,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)",female,30,1,1,345773,24.15,,S
+801,0,2,"Ponesell, Mr. Martin",male,34,0,0,250647,13,,S
+802,1,2,"Collyer, Mrs. Harvey (Charlotte Annie Tate)",female,31,1,1,C.A. 31921,26.25,,S
+803,1,1,"Carter, Master. William Thornton II",male,11,1,2,113760,120,B96 B98,S
+804,1,3,"Thomas, Master. Assad Alexander",male,0.42,0,1,2625,8.5167,,C
+805,1,3,"Hedman, Mr. Oskar Arvid",male,27,0,0,347089,6.975,,S
+806,0,3,"Johansson, Mr. Karl Johan",male,31,0,0,347063,7.775,,S
+807,0,1,"Andrews, Mr. Thomas Jr",male,39,0,0,112050,0,A36,S
+808,0,3,"Pettersson, Miss. Ellen Natalia",female,18,0,0,347087,7.775,,S
+809,0,2,"Meyer, Mr. August",male,39,0,0,248723,13,,S
+810,1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)",female,33,1,0,113806,53.1,E8,S
+811,0,3,"Alexander, Mr. William",male,26,0,0,3474,7.8875,,S
+812,0,3,"Lester, Mr. James",male,39,0,0,A/4 48871,24.15,,S
+813,0,2,"Slemen, Mr. Richard James",male,35,0,0,28206,10.5,,S
+814,0,3,"Andersson, Miss. Ebba Iris Alfrida",female,6,4,2,347082,31.275,,S
+815,0,3,"Tomlin, Mr. Ernest Portage",male,30.5,0,0,364499,8.05,,S
+816,0,1,"Fry, Mr. Richard",male,,0,0,112058,0,B102,S
+817,0,3,"Heininen, Miss. Wendla Maria",female,23,0,0,STON/O2. 3101290,7.925,,S
+818,0,2,"Mallet, Mr. Albert",male,31,1,1,S.C./PARIS 2079,37.0042,,C
+819,0,3,"Holm, Mr. John Fredrik Alexander",male,43,0,0,C 7075,6.45,,S
+820,0,3,"Skoog, Master. Karl Thorsten",male,10,3,2,347088,27.9,,S
+821,1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)",female,52,1,1,12749,93.5,B69,S
+822,1,3,"Lulic, Mr. Nikola",male,27,0,0,315098,8.6625,,S
+823,0,1,"Reuchlin, Jonkheer. John George",male,38,0,0,19972,0,,S
+824,1,3,"Moor, Mrs. (Beila)",female,27,0,1,392096,12.475,E121,S
+825,0,3,"Panula, Master. Urho Abraham",male,2,4,1,3101295,39.6875,,S
+826,0,3,"Flynn, Mr. John",male,,0,0,368323,6.95,,Q
+827,0,3,"Lam, Mr. Len",male,,0,0,1601,56.4958,,S
+828,1,2,"Mallet, Master. Andre",male,1,0,2,S.C./PARIS 2079,37.0042,,C
+829,1,3,"McCormack, Mr. Thomas Joseph",male,,0,0,367228,7.75,,Q
+830,1,1,"Stone, Mrs. George Nelson (Martha Evelyn)",female,62,0,0,113572,80,B28,
+831,1,3,"Yasbeck, Mrs. Antoni (Selini Alexander)",female,15,1,0,2659,14.4542,,C
+832,1,2,"Richards, Master. George Sibley",male,0.83,1,1,29106,18.75,,S
+833,0,3,"Saad, Mr. Amin",male,,0,0,2671,7.2292,,C
+834,0,3,"Augustsson, Mr. Albert",male,23,0,0,347468,7.8542,,S
+835,0,3,"Allum, Mr. Owen George",male,18,0,0,2223,8.3,,S
+836,1,1,"Compton, Miss. Sara Rebecca",female,39,1,1,PC 17756,83.1583,E49,C
+837,0,3,"Pasic, Mr. Jakob",male,21,0,0,315097,8.6625,,S
+838,0,3,"Sirota, Mr. Maurice",male,,0,0,392092,8.05,,S
+839,1,3,"Chip, Mr. Chang",male,32,0,0,1601,56.4958,,S
+840,1,1,"Marechal, Mr. Pierre",male,,0,0,11774,29.7,C47,C
+841,0,3,"Alhomaki, Mr. Ilmari Rudolf",male,20,0,0,SOTON/O2 3101287,7.925,,S
+842,0,2,"Mudd, Mr. Thomas Charles",male,16,0,0,S.O./P.P. 3,10.5,,S
+843,1,1,"Serepeca, Miss. Augusta",female,30,0,0,113798,31,,C
+844,0,3,"Lemberopolous, Mr. Peter L",male,34.5,0,0,2683,6.4375,,C
+845,0,3,"Culumovic, Mr. Jeso",male,17,0,0,315090,8.6625,,S
+846,0,3,"Abbing, Mr. Anthony",male,42,0,0,C.A. 5547,7.55,,S
+847,0,3,"Sage, Mr. Douglas Bullen",male,,8,2,CA. 2343,69.55,,S
+848,0,3,"Markoff, Mr. Marin",male,35,0,0,349213,7.8958,,C
+849,0,2,"Harper, Rev. John",male,28,0,1,248727,33,,S
+850,1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)",female,,1,0,17453,89.1042,C92,C
+851,0,3,"Andersson, Master. Sigvard Harald Elias",male,4,4,2,347082,31.275,,S
+852,0,3,"Svensson, Mr. Johan",male,74,0,0,347060,7.775,,S
+853,0,3,"Boulos, Miss. Nourelain",female,9,1,1,2678,15.2458,,C
+854,1,1,"Lines, Miss. Mary Conover",female,16,0,1,PC 17592,39.4,D28,S
+855,0,2,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)",female,44,1,0,244252,26,,S
+856,1,3,"Aks, Mrs. Sam (Leah Rosen)",female,18,0,1,392091,9.35,,S
+857,1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)",female,45,1,1,36928,164.8667,,S
+858,1,1,"Daly, Mr. Peter Denis ",male,51,0,0,113055,26.55,E17,S
+859,1,3,"Baclini, Mrs. Solomon (Latifa Qurban)",female,24,0,3,2666,19.2583,,C
+860,0,3,"Razi, Mr. Raihed",male,,0,0,2629,7.2292,,C
+861,0,3,"Hansen, Mr. Claus Peter",male,41,2,0,350026,14.1083,,S
+862,0,2,"Giles, Mr. Frederick Edward",male,21,1,0,28134,11.5,,S
+863,1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)",female,48,0,0,17466,25.9292,D17,S
+864,0,3,"Sage, Miss. Dorothy Edith ""Dolly""",female,,8,2,CA. 2343,69.55,,S
+865,0,2,"Gill, Mr. John William",male,24,0,0,233866,13,,S
+866,1,2,"Bystrom, Mrs. (Karolina)",female,42,0,0,236852,13,,S
+867,1,2,"Duran y More, Miss. Asuncion",female,27,1,0,SC/PARIS 2149,13.8583,,C
+868,0,1,"Roebling, Mr. Washington Augustus II",male,31,0,0,PC 17590,50.4958,A24,S
+869,0,3,"van Melkebeke, Mr. Philemon",male,,0,0,345777,9.5,,S
+870,1,3,"Johnson, Master. Harold Theodor",male,4,1,1,347742,11.1333,,S
+871,0,3,"Balkic, Mr. Cerin",male,26,0,0,349248,7.8958,,S
+872,1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)",female,47,1,1,11751,52.5542,D35,S
+873,0,1,"Carlsson, Mr. Frans Olof",male,33,0,0,695,5,B51 B53 B55,S
+874,0,3,"Vander Cruyssen, Mr. Victor",male,47,0,0,345765,9,,S
+875,1,2,"Abelson, Mrs. Samuel (Hannah Wizosky)",female,28,1,0,P/PP 3381,24,,C
+876,1,3,"Najib, Miss. Adele Kiamie ""Jane""",female,15,0,0,2667,7.225,,C
+877,0,3,"Gustafsson, Mr. Alfred Ossian",male,20,0,0,7534,9.8458,,S
+878,0,3,"Petroff, Mr. Nedelio",male,19,0,0,349212,7.8958,,S
+879,0,3,"Laleff, Mr. Kristo",male,,0,0,349217,7.8958,,S
+880,1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)",female,56,0,1,11767,83.1583,C50,C
+881,1,2,"Shelley, Mrs. William (Imanita Parrish Hall)",female,25,0,1,230433,26,,S
+882,0,3,"Markun, Mr. Johann",male,33,0,0,349257,7.8958,,S
+883,0,3,"Dahlberg, Miss. Gerda Ulrika",female,22,0,0,7552,10.5167,,S
+884,0,2,"Banfield, Mr. Frederick James",male,28,0,0,C.A./SOTON 34068,10.5,,S
+885,0,3,"Sutehall, Mr. Henry Jr",male,25,0,0,SOTON/OQ 392076,7.05,,S
+886,0,3,"Rice, Mrs. William (Margaret Norton)",female,39,0,5,382652,29.125,,Q
+887,0,2,"Montvila, Rev. Juozas",male,27,0,0,211536,13,,S
+888,1,1,"Graham, Miss. Margaret Edith",female,19,0,0,112053,30,B42,S
+889,0,3,"Johnston, Miss. Catherine Helen ""Carrie""",female,,1,2,W./C. 6607,23.45,,S
+890,1,1,"Behr, Mr. Karl Howell",male,26,0,0,111369,30,C148,C
+891,0,3,"Dooley, Mr. Patrick",male,32,0,0,370376,7.75,,Q
diff --git a/doc/source/_static/css/getting_started.css b/doc/source/_static/css/getting_started.css
new file mode 100644
index 0000000000000..bb24761cdb159
--- /dev/null
+++ b/doc/source/_static/css/getting_started.css
@@ -0,0 +1,251 @@
+/* Getting started pages */
+
+/* data intro */
+.gs-data {
+ font-size: 0.9rem;
+}
+
+.gs-data-title {
+ align-items: center;
+ font-size: 0.9rem;
+}
+
+.gs-data-title .badge {
+ margin: 10px;
+ padding: 5px;
+}
+
+.gs-data .badge {
+ cursor: pointer;
+ padding: 10px;
+ border: none;
+ text-align: left;
+ outline: none;
+ font-size: 12px;
+}
+
+.gs-data .btn {
+ background-color: grey;
+ border: none;
+}
+
+/* note/alert properties */
+
+.alert-heading {
+ font-size: 1.2rem;
+}
+
+/* callout properties */
+.gs-callout {
+ padding: 20px;
+ margin: 20px 0;
+ border: 1px solid #eee;
+ border-left-width: 5px;
+ border-radius: 3px;
+}
+.gs-callout h4 {
+ margin-top: 0;
+ margin-bottom: 5px;
+}
+.gs-callout p:last-child {
+ margin-bottom: 0;
+}
+.gs-callout code {
+ border-radius: 3px;
+}
+.gs-callout+.gs-callout {
+ margin-top: -5px;
+}
+.gs-callout-remember {
+ border-left-color: #f0ad4e;
+ align-items: center;
+ font-size: 1.2rem;
+}
+.gs-callout-remember h4 {
+ color: #f0ad4e;
+}
+
+/* reference to user guide */
+.gs-torefguide {
+ align-items: center;
+ font-size: 0.9rem;
+}
+
+.gs-torefguide .badge {
+ background-color: #130654;
+ margin: 10px 10px 10px 0px;
+ padding: 5px;
+}
+
+.gs-torefguide a {
+ margin-left: 5px;
+ color: #130654;
+ border-bottom: 1px solid #FFCA00f3;
+ box-shadow: 0px -10px 0px #FFCA00f3 inset;
+}
+
+.gs-torefguide p {
+ margin-top: 1rem;
+}
+
+.gs-torefguide a:hover {
+ margin-left: 5px;
+ color: grey;
+ text-decoration: none;
+ border-bottom: 1px solid #b2ff80f3;
+ box-shadow: 0px -10px 0px #b2ff80f3 inset;
+}
+
+/* question-task environment */
+
+ul.task-bullet, ol.custom-bullet{
+ list-style:none;
+ padding-left: 0;
+ margin-top: 2em;
+}
+
+ul.task-bullet > li:before {
+ content:"";
+ height:2em;
+ width:2em;
+ display:block;
+ float:left;
+ margin-left:-2em;
+ background-position:center;
+ background-repeat:no-repeat;
+ background-color: #130654;
+ border-radius: 50%;
+ background-size:100%;
+ background-image:url('../question_mark_noback.svg');
+ }
+
+ul.task-bullet > li {
+ border-left: 1px solid #130654;
+ padding-left:1em;
+}
+
+ul.task-bullet > li > p:first-child {
+ font-size: 1.1rem;
+ padding-left: 0.75rem;
+}
+
+/* Getting started index page */
+
+.intro-card {
+ background:#FFF;
+ border-radius:0;
+ padding: 30px 10px 10px 10px;
+ margin: 10px 0px;
+}
+
+.intro-card .card-text {
+ margin:20px 0px;
+ /*min-height: 150px; */
+}
+
+.intro-card .card-img-top {
+ margin: 10px;
+}
+
+.install-block {
+ padding-bottom: 30px;
+}
+
+.install-card .card-header {
+ border: none;
+ background-color:white;
+ color: #150458;
+ font-size: 1.1rem;
+ font-weight: bold;
+ padding: 1rem 1rem 0rem 1rem;
+}
+
+.install-card .card-footer {
+ border: none;
+ background-color:white;
+}
+
+.install-card pre {
+ margin: 0 1em 1em 1em;
+}
+
+.custom-button {
+ background-color:#DCDCDC;
+ border: none;
+ color: #484848;
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ font-size: 0.9rem;
+ border-radius: 0.5rem;
+ max-width: 120px;
+ padding: 0.5rem 0rem;
+}
+
+.custom-button a {
+ color: #484848;
+}
+
+.custom-button p {
+ margin-top: 0;
+ margin-bottom: 0rem;
+ color: #484848;
+}
+
+/* intro to tutorial collapsed cards */
+
+.tutorial-accordion {
+ margin-top: 20px;
+ margin-bottom: 20px;
+}
+
+.tutorial-card .card-header.card-link .btn {
+ margin-right: 12px;
+}
+
+.tutorial-card .card-header.card-link .btn:after {
+ content: "-";
+}
+
+.tutorial-card .card-header.card-link.collapsed .btn:after {
+ content: "+";
+}
+
+.tutorial-card-header-1 {
+ justify-content: space-between;
+ align-items: center;
+}
+
+.tutorial-card-header-2 {
+ justify-content: flex-start;
+ align-items: center;
+ font-size: 1.3rem;
+}
+
+.tutorial-card .card-header {
+ cursor: pointer;
+ background-color: white;
+}
+
+.tutorial-card .card-body {
+ background-color: #F0F0F0;
+}
+
+.tutorial-card .badge {
+ background-color: #130654;
+ margin: 10px 10px 10px 10px;
+ padding: 5px;
+}
+
+.tutorial-card .gs-badge-link p {
+ margin: 0px;
+}
+
+.tutorial-card .gs-badge-link a {
+ color: white;
+ text-decoration: none;
+}
+
+.tutorial-card .badge:hover {
+ background-color: grey;
+}
diff --git a/doc/source/_static/logo_r.svg b/doc/source/_static/logo_r.svg
new file mode 100644
index 0000000000000..389b03c113e0f
--- /dev/null
+++ b/doc/source/_static/logo_r.svg
@@ -0,0 +1,14 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid" width="724" height="561" viewBox="0 0 724 561">
+ <defs>
+ <linearGradient id="gradientFill-1" x1="0" x2="1" y1="0" y2="1" gradientUnits="objectBoundingBox" spreadMethod="pad">
+ <stop offset="0" stop-color="rgb(203,206,208)" stop-opacity="1"/>
+ <stop offset="1" stop-color="rgb(132,131,139)" stop-opacity="1"/>
+ </linearGradient>
+ <linearGradient id="gradientFill-2" x1="0" x2="1" y1="0" y2="1" gradientUnits="objectBoundingBox" spreadMethod="pad">
+ <stop offset="0" stop-color="rgb(39,109,195)" stop-opacity="1"/>
+ <stop offset="1" stop-color="rgb(22,92,170)" stop-opacity="1"/>
+ </linearGradient>
+ </defs>
+ <path d="M361.453,485.937 C162.329,485.937 0.906,377.828 0.906,244.469 C0.906,111.109 162.329,3.000 361.453,3.000 C560.578,3.000 722.000,111.109 722.000,244.469 C722.000,377.828 560.578,485.937 361.453,485.937 ZM416.641,97.406 C265.289,97.406 142.594,171.314 142.594,262.484 C142.594,353.654 265.289,427.562 416.641,427.562 C567.992,427.562 679.687,377.033 679.687,262.484 C679.687,147.971 567.992,97.406 416.641,97.406 Z" fill="url(#gradientFill-1)" fill-rule="evenodd"/>
+ <path d="M550.000,377.000 C550.000,377.000 571.822,383.585 584.500,390.000 C588.899,392.226 596.510,396.668 602.000,402.500 C607.378,408.212 610.000,414.000 610.000,414.000 L696.000,559.000 L557.000,559.062 L492.000,437.000 C492.000,437.000 478.690,414.131 470.500,407.500 C463.668,401.969 460.755,400.000 454.000,400.000 C449.298,400.000 420.974,400.000 420.974,400.000 L421.000,558.974 L298.000,559.026 L298.000,152.938 L545.000,152.938 C545.000,152.938 657.500,154.967 657.500,262.000 C657.500,369.033 550.000,377.000 550.000,377.000 ZM496.500,241.024 L422.037,240.976 L422.000,310.026 L496.500,310.002 C496.500,310.002 531.000,309.895 531.000,274.877 C531.000,239.155 496.500,241.024 496.500,241.024 Z" fill="url(#gradientFill-2)" fill-rule="evenodd"/>
+</svg>
diff --git a/doc/source/_static/logo_sas.svg b/doc/source/_static/logo_sas.svg
new file mode 100644
index 0000000000000..d14fa105d49d6
--- /dev/null
+++ b/doc/source/_static/logo_sas.svg
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) by Marsupilami -->
+<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="1024" height="420" viewBox="0 0 129.24898 53.067852" id="svg2320">
+ <defs id="defs2322"/>
+ <g transform="translate(-310.37551,-505.82825)" id="layer1">
+ <path d="M 18.46875,0 C 16.638866,-0.041377236 14.748438,0.1725 12.8125,0.65625 C 3.86,2.8925 -6.16125,14.40875 4.78125,27.6875 L 11.3125,35.59375 L 13.15625,37.84375 C 14.39375,39.315 16.41875,39.28875 17.90625,38.0625 C 19.40125,36.829998 19.82625,34.80875 18.59375,33.3125 C 18.592173,33.310397 18.071121,32.679752 17.84375,32.40625 L 17.875,32.40625 C 17.402936,31.838361 17.300473,31.743127 16.8125,31.15625 C 14.448752,28.313409 11.75,25.03125 11.75,25.03125 C 6.9987503,19.265 9.11875,12.14125 15.5625,8.09375 C 21.24,4.5275001 31.65875,5.80125 35.25,11.65625 C 32.988202,4.9805465 26.398246,0.17930136 18.46875,0 z M 19.78125,13.9375 C 18.937031,13.90875 18.055625,14.230625 17.3125,14.84375 C 15.815001,16.0775 15.39375,18.10125 16.625,19.59375 C 16.627499,19.597501 16.77625,19.7825 17.03125,20.09375 C 19.863614,23.496657 23.625,28.0625 23.625,28.0625 C 28.3775,33.82875 26.25625,40.92125 19.8125,44.96875 C 14.136251,48.53375 3.71625,47.2575 0.125,41.40625 C 2.90875,49.618751 12.23875,54.9875 22.5625,52.40625 C 31.5175,50.166248 41.53625,38.6825 30.59375,25.40625 L 22.9375,16.15625 L 22.0625,15.0625 C 21.44375,14.326875 20.625469,13.96625 19.78125,13.9375 z " transform="translate(310.37551,505.82825)" style="fill:#007cc2;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path2440"/>
+ <path d="M 53.53125,6.3125 C 47.8625,6.3125 41.374998,9.2362506 41.375,16.28125 C 41.375,22.9875 46.708752,24.869999 52,26.15625 C 57.355,27.4425 62.656249,28.187498 62.65625,32.65625 C 62.65625,37.05875 58.121251,37.875002 54.78125,37.875 C 50.3725,37.875 46.218751,36.27125 46.03125,31.125 L 40.6875,31.125 C 41,39.79375 47.161249,42.968749 54.46875,42.96875 C 61.085,42.96875 68.343749,40.27125 68.34375,31.9375 C 68.34375,25.16375 63.041251,23.25625 57.6875,21.96875 C 52.7125,20.6825 47.031249,20.00625 47.03125,15.875 C 47.03125,12.3525 50.75625,11.40625 53.96875,11.40625 C 57.49875,11.40625 61.151251,12.810001 61.53125,17.28125 L 66.875,17.28125 C 66.435,8.74625 60.712498,6.3125001 53.53125,6.3125 z M 84.40625,6.3125 C 77.159998,6.3125001 70.90625,9.3625 70.59375,18.03125 L 75.9375,18.03125 C 76.190003,12.883749 79.5275,11.40625 84.0625,11.40625 C 87.466253,11.40625 91.3125,12.20625 91.3125,17.21875 C 91.312501,21.553749 86.2975,21.155 80.375,22.375 C 74.833751,23.526251 69.34375,25.23 69.34375,33.15625 C 69.343748,40.133748 74.20125,42.96875 80.125,42.96875 C 84.656249,42.968749 88.6025,41.255 91.5625,37.53125 C 91.562499,41.322498 93.3525,42.96875 96.125,42.96875 C 97.823751,42.968749 98.9925,42.60875 99.9375,42 L 99.9375,37.53125 C 99.244997,37.802498 98.7525,37.875 98.3125,37.875 C 96.612501,37.875002 96.625,36.68 96.625,33.96875 L 96.625,15.9375 C 96.624998,7.7424996 90.265,6.3125 84.40625,6.3125 z M 112.40625,6.3125 C 106.7375,6.3125 100.25,9.2362506 100.25,16.28125 C 100.25,22.9875 105.61625,24.869999 110.90625,26.15625 C 116.2625,27.4425 121.5625,28.187498 121.5625,32.65625 C 121.5625,37.05875 117.02625,37.875002 113.6875,37.875 C 109.2775,37.875 105.125,36.27125 104.9375,31.125 L 99.5625,31.125 C 99.87625,39.79375 106.06875,42.968749 113.375,42.96875 C 119.9875,42.96875 127.21875,40.27125 127.21875,31.9375 C 127.21875,25.16375 121.91625,23.25625 116.5625,21.96875 C 111.58875,20.6825 105.9375,20.00625 105.9375,15.875 C 105.9375,12.3525 109.63125,11.40625 112.84375,11.40625 C 116.37,11.40625 120.025,12.810001 120.40625,17.28125 L 125.78125,17.28125 C 125.3425,8.74625 119.59,6.3125001 112.40625,6.3125 z M 91.25,24.0625 L 91.25,29.96875 C 91.25,33.1525 88.36875,37.875 81.3125,37.875 C 78.040002,37.875002 75,36.51375 75,32.71875 C 75.000003,28.452501 78.0375,27.115 81.5625,26.4375 C 85.15375,25.761251 89.1725,25.6875 91.25,24.0625 z M 38.21875,39.40625 C 37.088748,39.406249 36.125,40.28375 36.125,41.46875 C 36.125001,42.658749 37.08875,43.53125 38.21875,43.53125 C 39.338748,43.53125 40.28125,42.65875 40.28125,41.46875 C 40.281252,40.283749 39.33875,39.40625 38.21875,39.40625 z M 127.15625,39.40625 C 126.0225,39.406249 125.0625,40.285 125.0625,41.46875 C 125.0625,42.66 126.0225,43.53125 127.15625,43.53125 C 128.275,43.53125 129.25,42.66 129.25,41.46875 C 129.25,40.285 128.275,39.40625 127.15625,39.40625 z M 38.21875,39.75 C 39.146248,39.750002 39.875,40.49 39.875,41.46875 C 39.875,42.456249 39.14625,43.1875 38.21875,43.1875 C 37.273748,43.187501 36.53125,42.45625 36.53125,41.46875 C 36.53125,40.489999 37.27375,39.75 38.21875,39.75 z M 127.15625,39.75 C 128.08375,39.750002 128.84375,40.49125 128.84375,41.46875 C 128.84375,42.4575 128.08375,43.1875 127.15625,43.1875 C 126.21,43.187499 125.5,42.4575 125.5,41.46875 C 125.5,40.49125 126.21,39.75 127.15625,39.75 z M 37.40625,40.28125 L 37.40625,42.65625 L 37.78125,42.65625 L 37.78125,41.625 L 38.1875,41.625 L 38.8125,42.65625 L 39.21875,42.65625 L 38.53125,41.59375 C 38.88375,41.553751 39.15625,41.395 39.15625,40.96875 C 39.156251,40.49875 38.8775,40.28125 38.3125,40.28125 L 37.40625,40.28125 z M 126.375,40.28125 L 126.375,42.65625 L 126.71875,42.65625 L 126.71875,41.625 L 127.15625,41.625 L 127.78125,42.65625 L 128.1875,42.65625 L 127.5,41.59375 C 127.84625,41.554998 128.125,41.395 128.125,40.96875 C 128.125,40.49875 127.8425,40.28125 127.28125,40.28125 L 126.375,40.28125 z M 37.78125,40.59375 L 38.28125,40.59375 C 38.528749,40.593749 38.78125,40.6425 38.78125,40.9375 C 38.78125,41.300001 38.5275,41.3125 38.21875,41.3125 L 37.78125,41.3125 L 37.78125,40.59375 z M 126.71875,40.59375 L 127.21875,40.59375 C 127.47125,40.593749 127.75,40.64125 127.75,40.9375 C 127.75,41.300001 127.4625,41.3125 127.15625,41.3125 L 126.71875,41.3125 L 126.71875,40.59375 z " transform="translate(310.37551,505.82825)" style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path2448"/>
+ </g>
+<head xmlns=""/></svg>
\ No newline at end of file
diff --git a/doc/source/_static/logo_sql.svg b/doc/source/_static/logo_sql.svg
new file mode 100644
index 0000000000000..4a5b7d0b1b943
--- /dev/null
+++ b/doc/source/_static/logo_sql.svg
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generated by IcoMoon.io -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.1"
+ width="20.558033"
+ height="29.264381"
+ viewBox="0 0 20.558033 29.264382"
+ id="svg4"
+ sodipodi:docname="logo_sql.svg"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)">
+ <metadata
+ id="metadata10">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs8" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1871"
+ inkscape:window-height="1029"
+ id="namedview6"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:zoom="16.68772"
+ inkscape:cx="-2.295492"
+ inkscape:cy="16.594944"
+ inkscape:window-x="1649"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg4" />
+ <path
+ d="m 18.846017,1.608 c -0.497,-0.326 -1.193,-0.615 -2.069,-0.858 -1.742,-0.484 -4.05,-0.75 -6.498,-0.75 -2.4480004,0 -4.7560004,0.267 -6.4980004,0.75 -0.877,0.243 -1.573,0.532 -2.069,0.858 -0.619,0.407 -0.93299996,0.874 -0.93299996,1.391 v 12 c 0,0.517 0.31399996,0.985 0.93299996,1.391 0.497,0.326 1.193,0.615 2.069,0.858 1.742,0.484 4.05,0.75 6.4980004,0.75 2.448,0 4.756,-0.267 6.498,-0.751 0.877,-0.243 1.573,-0.532 2.069,-0.858 0.619,-0.406 0.933,-0.874 0.933,-1.391 v -12 c 0,-0.517 -0.314,-0.985 -0.933,-1.391 z M 4.0490166,1.713 c 1.658,-0.46 3.87,-0.714 6.2300004,-0.714 2.36,0 4.573,0.254 6.23,0.714 1.795,0.499 2.27,1.059 2.27,1.286 0,0.227 -0.474,0.787 -2.27,1.286 -1.658,0.46 -3.87,0.714 -6.23,0.714 -2.3600004,0 -4.5730004,-0.254 -6.2300004,-0.714 -1.795,-0.499 -2.27,-1.059 -2.27,-1.286 0,-0.227 0.474,-0.787 2.27,-1.286 z M 16.509017,16.285 c -1.658,0.46 -3.87,0.714 -6.23,0.714 -2.3600004,0 -4.5730004,-0.254 -6.2300004,-0.714 -1.795,-0.499 -2.27,-1.059 -2.27,-1.286 v -2.566 c 0.492,0.309 1.164,0.583 2.002,0.816 1.742,0.484 4.05,0.75 6.4980004,0.75 2.448,0 4.756,-0.267 6.498,-0.751 0.838,-0.233 1.511,-0.507 2.002,-0.816 v 2.566 c 0,0.227 -0.474,0.787 -2.27,1.286 z m 0,-4 c -1.658,0.46 -3.87,0.714 -6.23,0.714 -2.3600004,0 -4.5730004,-0.254 -6.2300004,-0.714 -1.795,-0.499 -2.27,-1.059 -2.27,-1.286 V 8.433 c 0.492,0.309 1.164,0.583 2.002,0.816 1.742,0.484 4.05,0.75 6.4980004,0.75 2.448,0 4.756,-0.267 6.498,-0.75 0.838,-0.233 1.511,-0.507 2.002,-0.816 v 2.566 c 0,0.227 -0.474,0.787 -2.27,1.286 z m 0,-4 c -1.658,0.46 -3.87,0.714 -6.23,0.714 -2.3600004,0 -4.5730004,-0.254 -6.2300004,-0.714 -1.795,-0.499 -2.27,-1.059 -2.27,-1.286 V 4.433 c 0.492,0.309 1.164,0.583 2.002,0.816 1.742,0.484 4.05,0.75 6.4980004,0.75 2.448,0 4.756,-0.267 6.498,-0.75 0.838,-0.233 1.511,-0.507 2.002,-0.816 v 2.566 c 0,0.227 -0.474,0.787 -2.27,1.286 z"
+ id="path2"
+ inkscape:connector-curvature="0"
+ style="fill:#000000" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:32.32878494px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
+ x="-0.71034926"
+ y="27.875254"
+ id="text819"><tspan
+ sodipodi:role="line"
+ id="tspan817"
+ x="-0.71034926"
+ y="27.875254"
+ style="font-size:10.77626133px;stroke-width:0.99999994">SQL</tspan></text>
+</svg>
diff --git a/doc/source/_static/logo_stata.svg b/doc/source/_static/logo_stata.svg
new file mode 100644
index 0000000000000..a6e3f1d221959
--- /dev/null
+++ b/doc/source/_static/logo_stata.svg
@@ -0,0 +1,17 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 415.27 95.89">
+ <defs>
+ <style>
+ .cls-1 {
+ fill: #135f90;
+ }
+ </style>
+ </defs>
+ <title>stata-logo-blue</title>
+ <g id="Foreground">
+ <path class="cls-1" d="M94.23,0l-8,21.31H29.3a8,8,0,0,0,0,16H64.93a29.3,29.3,0,0,1,0,58.6H0L8,74.58H64.93a8,8,0,1,0,0-16H29.3A29.3,29.3,0,0,1,29.3,0Z"/>
+ <polygon class="cls-1" points="259.9 0 251.91 21.31 278.55 21.31 278.55 95.89 299.86 95.89 299.86 21.31 321.16 21.31 329.15 0 259.9 0"/>
+ <path class="cls-1" d="M386,58.6H345a8,8,0,0,0,0,16h49v-16ZM366.31,37.29H394V29a8,8,0,0,0-8-7.65H323.69l8-21.31H386a29.3,29.3,0,0,1,29.3,29.3V95.89H345a29.3,29.3,0,0,1,0-58.6Z"/>
+ <path class="cls-1" d="M222.8,58.6h-41a8,8,0,1,0,0,16h48.95v-16ZM212.14,37.29H230.8V29a8,8,0,0,0-8-7.65H160.53l8-21.31H222.8a29.3,29.3,0,0,1,29.3,29.3V95.89H181.84a29.3,29.3,0,0,1,0-58.6Z"/>
+ <polygon class="cls-1" points="96.73 0 88.74 21.31 115.38 21.31 115.38 95.89 136.69 95.89 136.69 21.31 158 21.31 165.99 0 96.73 0"/>
+ </g>
+<head xmlns=""/></svg>
\ No newline at end of file
diff --git a/doc/source/_static/schemas/01_table_dataframe.svg b/doc/source/_static/schemas/01_table_dataframe.svg
new file mode 100644
index 0000000000000..9bd1c217b3ca2
--- /dev/null
+++ b/doc/source/_static/schemas/01_table_dataframe.svg
@@ -0,0 +1,262 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="143.19496mm"
+ height="104.30615mm"
+ viewBox="0 0 143.19496 104.30615"
+ version="1.1"
+ id="svg10280"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="01_table_dataframe.svg">
+ <defs
+ id="defs10274" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.7"
+ inkscape:cx="355.65317"
+ inkscape:cy="142.80245"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0" />
+ <metadata
+ id="metadata10277">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-22.613419,-96.097789)">
+ <g
+ id="g888"
+ transform="matrix(0.89990753,0,0,0.9,9.4364163,14.825088)"
+ style="stroke-width:1.11116815">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 23.647349,141.16281 H 48.53529 V 128.97485 H 23.647349 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 50.063339,127.4468 H 74.951291 V 115.25884 H 50.063339 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 50.063339,141.16281 H 74.951291 V 128.97485 H 50.063339 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 23.647339,153.86281 H 48.53529 V 141.67486 H 23.647339 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 50.063339,153.86281 H 74.951291 V 141.67486 H 50.063339 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 75.463341,127.4468 H 100.3513 V 115.25884 H 75.463341 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 75.463341,141.16281 H 100.3513 V 128.97485 H 75.463341 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 75.463341,153.86281 H 100.3513 V 141.67486 H 75.463341 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 23.647349,179.26284 H 48.53529 V 167.07487 H 23.647349 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 50.063339,179.26284 H 74.951291 V 167.07487 H 50.063339 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 75.463341,179.26284 H 100.3513 V 167.07487 H 75.463341 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 23.647349,191.96284 H 48.53529 V 179.77488 H 23.647349 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 50.063339,191.96284 H 74.951291 V 179.77488 H 50.063339 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 75.463341,191.96284 H 100.3513 V 179.77488 H 75.463341 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 100.86334,127.4468 h 24.88794 v -12.18796 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 100.86335,141.16281 h 24.88793 v -12.18796 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 100.86334,153.86281 h 24.88794 v -12.18795 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 100.86335,179.26284 h 24.88793 v -12.18797 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 100.86335,191.96284 h 24.88793 v -12.18796 h -24.88793 z" />
+ <g
+ id="g935"
+ style="stroke-width:1.11116815">
+ <path
+ d="M 23.647349,166.56283 H 48.53529 V 154.37487 H 23.647349 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 50.063339,166.56283 H 74.951291 V 154.37487 H 50.063339 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 75.463341,166.56283 H 100.3513 V 154.37487 H 75.463341 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 100.86335,166.56283 h 24.88793 v -12.18796 h -24.88793 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 126.26334,166.56283 h 24.88792 v -12.18796 h -24.88792 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-4"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 126.26333,127.4468 h 24.88793 v -12.18796 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 126.26334,141.16281 h 24.88792 v -12.18796 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 126.26333,153.86281 h 24.88793 v -12.18795 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 126.26334,179.26284 h 24.88792 v -12.18797 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56897205;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 126.26334,191.96284 h 24.88792 v -12.18796 h -24.88792 z" />
+ <text
+ id="text47247-9"
+ y="200.30403"
+ x="100.55013"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.29399657"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.29399657"
+ y="200.30403"
+ x="100.55013"
+ id="tspan47245-7"
+ sodipodi:role="line">column</tspan></text>
+ <text
+ id="text47247-1"
+ y="103.81308"
+ x="76.306671"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.29399657"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.29399657"
+ y="103.81308"
+ x="76.306671"
+ id="tspan47245-3"
+ sodipodi:role="line">DataFrame</tspan></text>
+ <rect
+ y="113.61689"
+ x="100.55073"
+ height="79.987907"
+ width="25.513165"
+ id="rect850"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.29399657;stroke-opacity:1" />
+ <rect
+ y="154.10715"
+ x="22.74571"
+ height="12.771029"
+ width="129.30719"
+ id="rect850-3"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.29399657;stroke-opacity:1" />
+ <text
+ id="text47247-9-6"
+ y="162.41847"
+ x="153.07187"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.29399657"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.29399657"
+ y="162.41847"
+ x="153.07187"
+ id="tspan47245-7-7"
+ sodipodi:role="line">row</tspan></text>
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/01_table_series.svg b/doc/source/_static/schemas/01_table_series.svg
new file mode 100644
index 0000000000000..d52c882f26868
--- /dev/null
+++ b/doc/source/_static/schemas/01_table_series.svg
@@ -0,0 +1,127 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="51.815998mm"
+ height="81.350258mm"
+ viewBox="0 0 51.815998 81.350261"
+ version="1.1"
+ id="svg10280"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="01_table_series.svg">
+ <defs
+ id="defs10274" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.1693488"
+ inkscape:cx="97.919996"
+ inkscape:cy="153.73277"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0" />
+ <metadata
+ id="metadata10277">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-79.092005,-111.90219)">
+ <g
+ id="g836"
+ transform="matrix(0.89900193,0,0,0.89968429,10.604797,15.293015)"
+ style="stroke-width:1.11192274">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-4"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56935841;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 79.348032,142.1964 H 104.23598 V 130.00844 H 79.348032 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56935841;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 105.76403,142.1964 h 24.88795 v -12.18796 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-90"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56935841;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 79.348029,154.8964 H 104.23598 V 142.70845 H 79.348029 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-4"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56935841;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 105.76403,154.8964 h 24.88795 v -12.18795 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56935841;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 79.348032,167.59641 H 104.23598 V 155.40846 H 79.348032 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56935841;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 105.76403,167.59641 h 24.88795 v -12.18795 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56935841;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 79.348032,180.29643 H 104.23598 V 168.10846 H 79.348032 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-8"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56935841;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 105.76403,180.29643 h 24.88795 v -12.18797 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-9"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56935841;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 79.348032,192.99642 H 104.23598 V 180.80847 H 79.348032 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56935841;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 105.76403,192.99642 h 24.88795 v -12.18795 h -24.88795 z" />
+ <text
+ id="text47247-1-3"
+ y="119.94304"
+ x="86.063171"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.29419622"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.29419622"
+ y="119.94304"
+ x="86.063171"
+ id="tspan47245-3-1"
+ sodipodi:role="line">Series</tspan></text>
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/01_table_spreadsheet.png b/doc/source/_static/schemas/01_table_spreadsheet.png
new file mode 100644
index 0000000000000..b3cf5a0245b9c
Binary files /dev/null and b/doc/source/_static/schemas/01_table_spreadsheet.png differ
diff --git a/doc/source/_static/schemas/02_io_readwrite.svg b/doc/source/_static/schemas/02_io_readwrite.svg
new file mode 100644
index 0000000000000..a99a6d731a6ad
--- /dev/null
+++ b/doc/source/_static/schemas/02_io_readwrite.svg
@@ -0,0 +1,1401 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="295.1355mm"
+ height="79.820137mm"
+ viewBox="0 0 295.1355 79.82014"
+ version="1.1"
+ id="svg11307"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="02_io_readwrite.svg">
+ <defs
+ id="defs11301">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-3"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-2"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <linearGradient
+ y2="120.7894"
+ x2="63.999699"
+ y1="7.0335999"
+ x1="63.999699"
+ gradientUnits="userSpaceOnUse"
+ id="SVGID_1_">
+ <stop
+ id="stop56586"
+ style="stop-color:#4387FD"
+ offset="0" />
+ <stop
+ id="stop56588"
+ style="stop-color:#4683EA"
+ offset="1" />
+ </linearGradient>
+ <clipPath
+ id="SVGID_2_">
+ <use
+ id="use56597"
+ style="overflow:visible"
+ xlink:href="#SVGID_6_"
+ x="0"
+ y="0"
+ width="100%"
+ height="100%" />
+ </clipPath>
+ <path
+ d="M 27.7908,115.2166 1.5403,69.7493 c -2.0541,-3.5578 -2.0541,-7.9412 0,-11.499 L 27.7908,12.7831 C 29.8449,9.2253 33.641,7.0336 37.7493,7.0336 h 52.501 c 4.1082,0 7.9044,2.1917 9.9585,5.7495 l 26.2505,45.4672 c 2.0541,3.5578 2.0541,7.9412 0,11.499 l -26.2505,45.4672 c -2.0541,3.5578 -5.8502,5.7495 -9.9585,5.7495 h -52.501 c -4.1083,1e-4 -7.9044,-2.1916 -9.9585,-5.7494 z"
+ id="path56636"
+ inkscape:connector-curvature="0" />
+ <linearGradient
+ y2="120.7894"
+ x2="63.999699"
+ y1="7.0335999"
+ x1="63.999699"
+ gradientUnits="userSpaceOnUse"
+ id="SVGID_1_-2">
+ <stop
+ id="stop56586-7"
+ style="stop-color:#4387FD"
+ offset="0" />
+ <stop
+ id="stop56588-0"
+ style="stop-color:#4683EA"
+ offset="1" />
+ </linearGradient>
+ <clipPath
+ id="SVGID_2_-9">
+ <use
+ id="use56597-3"
+ style="overflow:visible"
+ xlink:href="#SVGID_6_"
+ x="0"
+ y="0"
+ width="100%"
+ height="100%" />
+ </clipPath>
+ <path
+ inkscape:connector-curvature="0"
+ id="path12064-9"
+ d="M 27.7908,115.2166 1.5403,69.7493 c -2.0541,-3.5578 -2.0541,-7.9412 0,-11.499 L 27.7908,12.7831 C 29.8449,9.2253 33.641,7.0336 37.7493,7.0336 h 52.501 c 4.1082,0 7.9044,2.1917 9.9585,5.7495 l 26.2505,45.4672 c 2.0541,3.5578 2.0541,7.9412 0,11.499 l -26.2505,45.4672 c -2.0541,3.5578 -5.8502,5.7495 -9.9585,5.7495 h -52.501 c -4.1083,1e-4 -7.9044,-2.1916 -9.9585,-5.7494 z" />
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-0"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-9"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.49497475"
+ inkscape:cx="609.1577"
+ inkscape:cy="-5.1149931"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata11304">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(45.015806,-5.4401261)">
+ <g
+ id="g1332"
+ transform="matrix(0.89992508,0,0,0.89964684,10.262878,4.5510367)"
+ style="stroke-width:1.11137545">
+ <text
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ id="text47247-6"
+ y="37.291649"
+ x="25.401798"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.29405141"
+ y="37.291649"
+ x="25.401798"
+ id="tspan47245-1"
+ sodipodi:role="line">read_*</tspan></text>
+ <text
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ id="text47247-6-5"
+ y="37.229637"
+ x="158.19954"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.29405141"
+ y="37.229637"
+ x="158.19954"
+ id="tspan47245-1-5"
+ sodipodi:role="line">to_*</tspan></text>
+ <g
+ transform="matrix(0.87620685,0,0,0.87620685,-48.432527,-55.405379)"
+ id="g12198"
+ style="stroke-width:1.11137545">
+ <path
+ d="m 121.26405,115.97458 h 24.88794 v -12.18796 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-80"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 147.68004,102.25857 h 24.88795 V 90.070615 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 147.68004,115.97458 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 121.26404,128.67458 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 147.68004,128.67458 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-69"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 173.08004,102.25857 H 197.968 V 90.070615 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-21"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 173.08004,115.97458 H 197.968 v -12.18796 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 173.08004,128.67458 H 197.968 v -12.18796 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 121.26405,141.37459 h 24.88794 v -12.18796 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 147.68004,141.37459 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 173.08004,141.37459 H 197.968 v -12.18796 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 198.48005,141.37459 h 24.88794 v -12.18796 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 198.48004,102.25857 h 24.88795 V 90.070615 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-65"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 198.48005,115.97458 h 24.88794 v -12.18796 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-68"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 198.48004,128.67458 h 24.88795 v -12.18795 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56907815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-4"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(0.78210044,0,0,0.78210044,252.41915,32.616607)"
+ id="g13221-6"
+ style="stroke-width:1.11137545">
+ <g
+ id="g13046-0"
+ transform="translate(0,3.4017917)"
+ style="stroke-width:1.11137545">
+ <g
+ transform="matrix(0.76397361,0,0,0.76397361,301.89818,-142.00712)"
+ id="g57096-9-6"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -506.51101,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ id="rect55679-4-0-1-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -473.73325,144.95855 h -6.949 v -6.88219 z"
+ id="rect55701-3-7-2-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ x="-499.97018"
+ y="155.93517"
+ id="text55709-5-8-7-1"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-0-8"
+ x="-499.97018"
+ y="155.93517"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141">CSV</tspan></text>
+ <path
+ style="fill:#755075;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -506.27749,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ id="rect55679-1-7-9-9-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <g
+ transform="translate(-681.73064,244.47732)"
+ id="g56212-3-9"
+ style="stroke-width:1.11137545">
+ <rect
+ y="-83.565544"
+ x="179.92134"
+ width="23.273981"
+ style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37059268;stroke-opacity:1;marker:none"
+ id="rect2277-8-3-4-60-2"
+ height="2.2165694" />
+ <rect
+ y="-79.919731"
+ x="179.92134"
+ width="23.273981"
+ style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37059268;stroke-opacity:1;marker:none"
+ id="rect2277-8-3-4-6-6-0"
+ height="2.2165694" />
+ <rect
+ y="-76.273918"
+ x="179.92134"
+ width="23.273981"
+ style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37059268;stroke-opacity:1;marker:none"
+ id="rect2277-8-3-4-4-2-2"
+ height="2.2165694" />
+ <rect
+ y="-72.628105"
+ x="179.92134"
+ width="23.273981"
+ style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37059268;stroke-opacity:1;marker:none"
+ id="rect2277-8-3-4-5-6-3"
+ height="2.2165694" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.76397361,0,0,0.76397361,389.69361,-142.00712)"
+ id="g57123-7"
+ style="stroke-width:1.11137545">
+ <g
+ id="g56942-5"
+ style="stroke-width:1.11137545">
+ <path
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0"
+ id="rect55679-9"
+ d="m -584.13959,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="rect55701-2"
+ d="m -551.36183,144.95855 h -6.949 v -6.88219 z"
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686" />
+ <text
+ id="text55709-2"
+ y="155.93515"
+ x="-577.10522"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141"
+ y="155.93515"
+ x="-577.10522"
+ id="tspan55707-8"
+ sodipodi:role="line">XLS</tspan></text>
+ <g
+ id="g4140-9"
+ transform="matrix(0.15295911,0,0,0.15295911,-574.53339,160.91154)"
+ style="stroke-width:1.11137545">
+ <path
+ d="m 46.04,0 h 5.94 c 0,2.67 0,5.33 0,8 10.01,0 20.02,0.02 30.03,-0.03 1.69,0.07 3.55,-0.05 5.02,0.96 1.03,1.48 0.91,3.36 0.98,5.06 -0.05,17.36 -0.03,34.71 -0.02,52.06 -0.05,2.91 0.27,5.88 -0.34,8.75 -0.4,2.08 -2.9,2.13 -4.57,2.2 -10.36,0.03 -20.73,-0.02 -31.1,0 0,3 0,6 0,9 H 45.77 C 30.53,83.23 15.26,80.67 0,78 0,54.67 0,31.34 0,8.01 15.35,5.34 30.7,2.71 46.04,0 Z"
+ id="path10-9-7"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ <path
+ d="m 51.98,11 c 11,0 22,0 33,0 0,21 0,42 0,63 -11,0 -22,0 -33,0 0,-2 0,-4 0,-6 2.67,0 5.33,0 8,0 0,-2.33 0,-4.67 0,-7 -2.67,0 -5.33,0 -8,0 0,-1.33 0,-2.67 0,-4 2.67,0 5.33,0 8,0 0,-2.33 0,-4.67 0,-7 -2.67,0 -5.33,0 -8,0 0,-1.33 0,-2.67 0,-4 2.67,0 5.33,0 8,0 0,-2.33 0,-4.67 0,-7 -2.67,0 -5.33,0 -8,0 0,-1.33 0,-2.67 0,-4 2.67,0 5.33,0 8,0 0,-2.33 0,-4.67 0,-7 -2.67,0 -5.33,0 -8,0 0,-1.33 0,-2.67 0,-4 2.67,0 5.33,0 8,0 0,-2.33 0,-4.67 0,-7 -2.67,0 -5.33,0 -8,0 0,-2 0,-4 0,-6 z"
+ id="path48-1-3"
+ inkscape:connector-curvature="0"
+ style="fill:#ffffff;stroke-width:1.11137545" />
+ <path
+ d="m 63.98,17 c 4.67,0 9.33,0 14,0 0,2.33 0,4.67 0,7 -4.67,0 -9.33,0 -14,0 0,-2.33 0,-4.67 0,-7 z"
+ id="path58-2-6"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ <path
+ d="m 29.62,26.37 c 2.26,-0.16 4.53,-0.3 6.8,-0.41 -2.67,5.47 -5.35,10.94 -8.07,16.39 2.75,5.6 5.56,11.16 8.32,16.76 -2.41,-0.14 -4.81,-0.29 -7.22,-0.46 -1.7,-4.17 -3.77,-8.2 -4.99,-12.56 -1.36,4.06 -3.3,7.89 -4.86,11.87 -2.19,-0.03 -4.38,-0.12 -6.57,-0.21 2.57,-5.03 5.05,-10.1 7.7,-15.1 -2.25,-5.15 -4.72,-10.2 -7.04,-15.32 2.2,-0.13 4.4,-0.26 6.6,-0.38 1.49,3.91 3.12,7.77 4.35,11.78 1.32,-4.25 3.29,-8.25 4.98,-12.36 z"
+ id="path72-7-1"
+ inkscape:connector-curvature="0"
+ style="fill:#ffffff;stroke-width:1.11137545" />
+ <path
+ d="m 63.98,28 c 4.67,0 9.33,0 14,0 0,2.33 0,4.67 0,7 -4.67,0 -9.33,0 -14,0 0,-2.33 0,-4.67 0,-7 z"
+ id="path90-2"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ <path
+ d="m 63.98,39 c 4.67,0 9.33,0 14,0 0,2.33 0,4.67 0,7 -4.67,0 -9.33,0 -14,0 0,-2.33 0,-4.67 0,-7 z"
+ id="path108-9"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ <path
+ d="m 63.98,50 c 4.67,0 9.33,0 14,0 0,2.33 0,4.67 0,7 -4.67,0 -9.33,0 -14,0 0,-2.33 0,-4.67 0,-7 z"
+ id="path114-3"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ <path
+ d="m 63.98,61 c 4.67,0 9.33,0 14,0 0,2.33 0,4.67 0,7 -4.67,0 -9.33,0 -14,0 0,-2.33 0,-4.67 0,-7 z"
+ id="path120-1"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ </g>
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="rect55679-1-9"
+ d="m -583.90607,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ style="fill:#207245;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ transform="translate(32.905868,-67.171919)"
+ id="g12301-4"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.39916864;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -60.99023,30.65149 h 19.73249 l 5.23218,5.13176 v 25.6129 h -24.96467 z"
+ id="rect55679-5-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#6995f4;fill-opacity:1;stroke-width:0.01482968"
+ d="m -48.45626,58.61909 c -0.0716,-0.0731 -0.1361,-0.133 -0.14344,-0.133 -0.008,0 -0.0134,-0.009 -0.0134,-0.02 0,-0.0109 -0.009,-0.02 -0.02,-0.02 -0.011,0 -0.02,-0.009 -0.02,-0.02 0,-0.0109 -0.009,-0.02 -0.02,-0.02 -0.0109,0 -0.02,-0.009 -0.02,-0.02 0,-0.0109 -0.006,-0.02 -0.0134,-0.02 -0.008,0 -0.0134,-0.006 -0.0134,-0.0134 0,-0.008 -0.0331,-0.0461 -0.0733,-0.0862 -0.0403,-0.04 -0.0734,-0.0791 -0.0734,-0.0867 0,-0.008 -0.007,-0.014 -0.0145,-0.014 -0.0215,0 -0.0793,-0.0484 -0.0694,-0.0583 0.005,-0.005 7.7e-4,-0.009 -0.008,-0.009 -0.0162,0 -0.086,-0.0679 -0.1372,-0.13343 -0.0143,-0.0183 -0.0616,-0.0705 -0.10521,-0.11607 -0.0435,-0.0455 -0.0792,-0.0894 -0.0792,-0.0975 0,-0.009 -0.006,-0.0112 -0.0134,-0.007 -0.008,0.005 -0.0134,-7.6e-4 -0.0134,-0.0126 0,-0.0115 -0.009,-0.0208 -0.02,-0.0208 -0.0111,0 -0.02,-0.006 -0.02,-0.0134 0,-0.008 -0.006,-0.0134 -0.0141,-0.0134 -0.0157,0 -0.0926,-0.08 -0.0926,-0.0964 0,-0.006 -0.006,-0.0104 -0.0133,-0.0104 -0.0211,0 -0.0935,-0.0818 -0.0935,-0.10572 0,-0.023 0.11047,-0.13446 0.1333,-0.13446 0.008,0 0.0135,-0.009 0.0135,-0.02 0,-0.0111 0.006,-0.02 0.0128,-0.02 0.007,0 0.0594,-0.045 0.11617,-0.10007 0.0568,-0.0551 0.10848,-0.10008 0.11472,-0.10008 0.0137,0 0.0899,-0.0817 0.0899,-0.0964 0,-0.006 0.006,-0.0104 0.014,-0.0104 0.008,0 0.0292,-0.0164 0.0478,-0.0365 0.0186,-0.02 0.0484,-0.0461 0.0662,-0.0577 0.0178,-0.0117 0.0712,-0.0583 0.11856,-0.10364 0.0474,-0.0453 0.0924,-0.0824 0.0999,-0.0824 0.008,0 0.0138,-0.007 0.0138,-0.0143 0,-0.0185 0.0339,-0.0524 0.0524,-0.0524 0.008,0 0.0143,-0.009 0.0143,-0.02 0,-0.0111 0.006,-0.02 0.0134,-0.02 0.008,0 0.0539,-0.0405 0.10352,-0.0901 0.0496,-0.0496 0.12006,-0.11409 0.15669,-0.14344 0.0367,-0.0293 0.0686,-0.0579 0.071,-0.0633 0.002,-0.005 0.0129,-0.01 0.0234,-0.01 0.0105,0 0.0189,-0.006 0.0189,-0.0142 0,-0.014 0.0338,-0.0477 0.1495,-0.14964 0.15388,-0.13549 0.17813,-0.15569 0.18742,-0.15601 0.005,-2e-4 0.01,-0.007 0.01,-0.0147 0,-0.0185 0.0339,-0.0524 0.0524,-0.0524 0.008,0 0.0143,-0.009 0.0143,-0.02 0,-0.011 0.006,-0.02 0.0142,-0.02 0.008,0 0.0356,-0.0225 0.0617,-0.05 0.0261,-0.0276 0.0527,-0.0485 0.0591,-0.0468 0.006,0.002 0.0117,-0.003 0.0117,-0.0118 0,-0.015 0.0267,-0.0414 0.0974,-0.0961 0.0205,-0.0159 0.0686,-0.0603 0.10676,-0.0986 0.0382,-0.0383 0.0769,-0.0699 0.0861,-0.0701 0.009,-1.5e-4 0.0167,-0.006 0.0167,-0.0136 0,-0.008 0.012,-0.0254 0.0267,-0.0401 0.0147,-0.0147 0.0267,-0.0237 0.0267,-0.02 0,0.003 0.012,-0.005 0.0267,-0.02 0.0147,-0.0147 0.0267,-0.0327 0.0267,-0.04 0,-0.008 0.008,-0.0134 0.0168,-0.0134 0.009,0 0.0331,-0.015 0.0528,-0.0334 0.0198,-0.0183 0.0426,-0.0334 0.0507,-0.0334 0.008,0 0.0114,-0.005 0.008,-0.0119 -0.005,-0.007 0.008,-0.0219 0.0268,-0.0342 0.0455,-0.0298 0.0857,-0.0708 0.0857,-0.0873 0,-0.008 0.007,-0.0134 0.0144,-0.0134 0.008,0 0.05,-0.0361 0.0933,-0.08 0.0433,-0.044 0.0814,-0.08 0.0846,-0.08 0.003,0 0.0232,-0.0165 0.0445,-0.0367 0.0844,-0.0799 0.12162,-0.11009 0.13552,-0.11009 0.008,0 0.0145,-0.007 0.0145,-0.0143 0,-0.0185 0.0339,-0.0524 0.0524,-0.0524 0.008,0 0.0143,-0.009 0.0143,-0.02 0,-0.0111 0.006,-0.02 0.013,-0.02 0.007,0 0.0455,-0.0315 0.0852,-0.07 0.0806,-0.0782 0.15505,-0.14345 0.16376,-0.14345 0.003,0 0.0502,-0.045 0.10452,-0.10008 0.0543,-0.0551 0.10416,-0.10007 0.11073,-0.10007 0.007,0 0.0199,-0.015 0.0298,-0.0334 0.01,-0.0183 0.0226,-0.0334 0.0284,-0.0334 0.006,0 0.0374,-0.0255 0.0701,-0.0567 0.0808,-0.0772 0.17035,-0.15678 0.17609,-0.15678 0.002,0 0.0439,-0.039 0.0919,-0.0867 0.048,-0.0477 0.0935,-0.0867 0.10133,-0.0867 0.008,0 0.0105,-0.006 0.006,-0.0134 -0.005,-0.008 -0.002,-0.0134 0.005,-0.0134 0.0157,0 0.0761,-0.0506 0.17152,-0.14344 0.0396,-0.0385 0.0777,-0.0701 0.0848,-0.0701 0.007,0 0.0128,-0.007 0.0128,-0.0143 0,-0.0163 0.0332,-0.0524 0.048,-0.0524 0.0113,0 0.0189,-0.007 0.14815,-0.13125 0.0529,-0.051 0.0994,-0.0892 0.10342,-0.0852 0.005,0.005 0.008,-0.002 0.008,-0.0149 0,-0.0122 0.009,-0.0222 0.02,-0.0222 0.0111,0 0.02,-0.006 0.02,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.009 0.02,-0.02 0,-0.0109 0.006,-0.02 0.0134,-0.02 0.008,0 0.0134,-0.009 0.0134,-0.02 0,-0.011 0.008,-0.02 0.0169,-0.02 0.009,0 0.028,-0.015 0.0419,-0.0334 0.0137,-0.0183 0.0306,-0.0334 0.0375,-0.0334 0.017,0 0.0506,-0.0348 0.0506,-0.0524 0,-0.008 0.006,-0.0143 0.0134,-0.0143 0.008,0 0.0243,-0.0105 0.0377,-0.0234 0.0423,-0.0404 0.0956,-0.0834 0.10351,-0.0834 0.0113,0 0.11227,-0.11049 0.11227,-0.12284 0,-0.006 0.009,-0.0106 0.02,-0.0106 0.0111,0 0.02,-0.009 0.02,-0.02 0,-0.0111 0.009,-0.02 0.02,-0.02 0.0109,0 0.02,-0.006 0.02,-0.0125 0,-0.007 0.0106,-0.0158 0.0236,-0.0199 0.013,-0.005 0.0784,-0.0612 0.14534,-0.12689 0.0669,-0.0657 0.12534,-0.11573 0.1298,-0.11126 0.005,0.005 0.008,-0.002 0.008,-0.0141 0,-0.0122 0.009,-0.0222 0.02,-0.0222 0.0109,0 0.02,-0.009 0.02,-0.02 0,-0.0111 0.009,-0.02 0.0208,-0.02 0.0115,0 0.0171,-0.006 0.0126,-0.0134 -0.005,-0.008 7.6e-4,-0.0134 0.0126,-0.0134 0.0115,0 0.0208,-0.009 0.0208,-0.02 0,-0.011 0.005,-0.02 0.0121,-0.02 0.0116,0 0.054,-0.0324 0.10929,-0.0834 0.0139,-0.0128 0.0312,-0.0234 0.0386,-0.0234 0.008,0 0.0134,-0.009 0.0134,-0.02 0,-0.0111 0.006,-0.02 0.0134,-0.02 0.017,0 0.16013,-0.14365 0.16013,-0.16071 0,-0.007 0.007,-0.0127 0.0152,-0.0127 0.009,0 0.0403,-0.0255 0.0708,-0.0567 0.0306,-0.0312 0.0727,-0.0688 0.0937,-0.0834 0.021,-0.0147 0.0703,-0.0582 0.10963,-0.0967 0.0393,-0.0385 0.0739,-0.0701 0.0768,-0.0701 0.0109,0 0.0875,-0.0826 0.0875,-0.0944 0,-0.007 0.007,-0.0123 0.0149,-0.0123 0.009,0 0.039,-0.0241 0.0683,-0.0533 0.0293,-0.0293 0.0583,-0.0533 0.0644,-0.0533 0.006,0 0.0744,-0.0626 0.15188,-0.13903 0.0775,-0.0765 0.14089,-0.13535 0.14089,-0.13084 0,0.005 0.015,-0.0121 0.0334,-0.037 0.0183,-0.0248 0.0334,-0.0411 0.0334,-0.0361 0,0.009 0.0347,-0.0167 0.0739,-0.054 0.01,-0.009 0.024,-0.0167 0.0319,-0.0167 0.008,0 0.0143,-0.009 0.0143,-0.02 0,-0.0111 0.007,-0.02 0.0143,-0.02 0.0185,0 0.0524,-0.0339 0.0524,-0.0524 0,-0.008 0.009,-0.0143 0.02,-0.0143 0.0111,0 0.02,-0.009 0.02,-0.02 0,-0.0111 0.005,-0.0185 0.0105,-0.0167 0.006,0.002 0.0355,-0.0207 0.0662,-0.05 0.0823,-0.0786 0.10166,-0.0938 0.11416,-0.0898 0.006,0.002 0.008,-0.002 0.003,-0.009 -0.009,-0.0144 0.049,-0.0552 0.0785,-0.0552 0.0112,0 0.0205,0.006 0.0205,0.0134 0,0.008 0.009,0.0134 0.0205,0.0134 0.0112,0 0.0239,0.009 0.028,0.02 0.005,0.0111 0.0221,0.02 0.0396,0.02 0.0176,0 0.0319,0.006 0.0319,0.0125 0,0.007 0.0135,0.0167 0.03,0.0219 0.0165,0.005 0.0331,0.013 0.0368,0.0176 0.0107,0.0132 0.0581,0.0417 0.0834,0.0502 0.0128,0.005 0.0234,0.0131 0.0234,0.0196 0,0.007 0.0113,0.0118 0.025,0.0118 0.0138,0 0.0325,0.009 0.0417,0.02 0.009,0.0111 0.0272,0.02 0.0403,0.02 0.013,0 0.0271,0.009 0.0313,0.02 0.005,0.0111 0.0189,0.02 0.0327,0.02 0.0286,0 0.10484,0.0355 0.1164,0.0542 0.005,0.007 0.0193,0.0125 0.0337,0.0125 0.0142,0 0.0258,0.006 0.0258,0.0131 0,0.007 0.0151,0.0169 0.0334,0.0215 0.0183,0.005 0.0334,0.0137 0.0334,0.0203 0,0.007 0.0113,0.0119 0.025,0.0119 0.0137,0 0.0325,0.009 0.0417,0.02 0.009,0.0111 0.0279,0.02 0.0417,0.02 0.0138,0 0.025,0.006 0.025,0.0134 0,0.008 0.009,0.0134 0.0191,0.0134 0.0105,0 0.027,0.008 0.0367,0.0167 0.01,0.009 0.0416,0.0287 0.071,0.0434 0.0293,0.0147 0.0554,0.0312 0.0577,0.0367 0.002,0.005 0.0189,0.01 0.0367,0.01 0.0198,0 0.0323,0.008 0.0323,0.02 0,0.0109 0.007,0.02 0.0155,0.02 0.009,0 -0.01,0.024 -0.0406,0.0533 -0.0308,0.0293 -0.0618,0.0533 -0.0689,0.0533 -0.007,0 -0.0128,0.009 -0.0128,0.0205 0,0.0112 -0.009,0.0239 -0.02,0.0281 -0.0111,0.005 -0.02,0.016 -0.02,0.0263 0,0.0102 -0.007,0.0186 -0.0149,0.0186 -0.009,0 -0.0368,0.0251 -0.0633,0.056 -0.0597,0.0689 -0.17284,0.1842 -0.18074,0.1842 -0.006,0 -0.0879,0.0797 -0.0879,0.086 0,0.0121 -0.25327,0.26091 -0.26551,0.26091 -0.008,0 -0.0147,0.006 -0.0147,0.0142 0,0.008 -0.0315,0.0459 -0.0701,0.0846 -0.0385,0.0387 -0.10127,0.10436 -0.13943,0.1459 -0.0382,0.0416 -0.0757,0.0755 -0.0834,0.0755 -0.008,0 -0.0141,0.007 -0.0141,0.0143 0,0.0185 -0.034,0.0524 -0.0524,0.0524 -0.008,0 -0.0143,0.008 -0.0143,0.0162 0,0.0183 -0.1426,0.15729 -0.16133,0.15729 -0.007,0 -0.0122,0.009 -0.0122,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.018,0 -0.026,0.0158 -0.0215,0.0433 7.7e-4,0.005 -0.005,0.01 -0.0105,0.01 -0.007,0 -0.0623,0.0512 -0.12343,0.11381 -0.0612,0.0626 -0.19038,0.19416 -0.28704,0.29238 -0.0967,0.0982 -0.17223,0.1821 -0.16791,0.18641 0.005,0.005 7.6e-4,0.008 -0.007,0.008 -0.0184,0 -0.20301,0.1823 -0.20301,0.20044 0,0.007 -0.007,0.0131 -0.0143,0.0131 -0.0148,0 -0.0524,0.0326 -0.0524,0.0454 0,0.0128 -0.12034,0.12807 -0.13379,0.12807 -0.007,0 -0.013,0.006 -0.013,0.0134 0,0.008 -0.0241,0.0374 -0.0533,0.0667 -0.0293,0.0293 -0.0594,0.0533 -0.0667,0.0533 -0.008,0 -0.0134,0.006 -0.0134,0.0125 0,0.007 -0.0466,0.0601 -0.10342,0.11848 -0.0568,0.0584 -0.14023,0.14437 -0.18525,0.19113 -0.13555,0.1408 -0.24885,0.24535 -0.26166,0.24146 -0.007,-0.002 -0.009,0.002 -0.003,0.01 0.005,0.008 -0.034,0.0554 -0.0858,0.10662 -0.0517,0.0512 -0.0941,0.0994 -0.0941,0.10694 0,0.008 -0.008,0.0141 -0.0167,0.0143 -0.009,2.5e-4 -0.0527,0.04 -0.0967,0.0882 -0.1391,0.15243 -0.21768,0.22954 -0.22573,0.22151 -0.005,-0.005 -0.008,-7.7e-4 -0.008,0.008 0,0.009 -0.0355,0.0511 -0.0789,0.0945 -0.0434,0.0434 -0.0824,0.0754 -0.0867,0.0711 -0.005,-0.005 -0.008,7.6e-4 -0.008,0.0115 0,0.0224 -0.0474,0.0668 -0.0589,0.0552 -0.005,-0.005 -0.008,0.002 -0.008,0.0126 0,0.0112 -0.015,0.0317 -0.0334,0.0454 -0.0183,0.0137 -0.0334,0.0326 -0.0334,0.0419 0,0.009 -0.009,0.0169 -0.02,0.0169 -0.011,0 -0.02,0.009 -0.02,0.02 0,0.0111 -0.006,0.02 -0.0134,0.02 -0.0156,0 -0.16011,0.14299 -0.16011,0.15845 0,0.006 -0.015,0.0185 -0.0334,0.0283 -0.0183,0.01 -0.0334,0.0259 -0.0334,0.0356 0,0.01 -0.008,0.0177 -0.0177,0.0177 -0.01,0 -0.0257,0.015 -0.0356,0.0334 -0.01,0.0183 -0.0258,0.0334 -0.0356,0.0334 -0.01,0 -0.0177,0.007 -0.0177,0.0144 0,0.0186 -0.0817,0.10008 -0.0959,0.0957 -0.006,-0.002 -0.0109,0.003 -0.0109,0.011 0,0.0189 -0.0341,0.0524 -0.0533,0.0524 -0.009,0 -0.0113,0.006 -0.007,0.0134 0.005,0.008 -7.6e-4,0.017 -0.0121,0.0212 -0.0112,0.005 -0.024,0.0192 -0.0284,0.0332 -0.005,0.014 -0.0227,0.0291 -0.0405,0.0335 -0.0178,0.005 -0.0325,0.014 -0.0325,0.021 0,0.0173 -0.0347,0.051 -0.0524,0.051 -0.008,0 -0.0143,0.006 -0.0143,0.0142 0,0.0157 -0.0301,0.0497 -0.16559,0.18634 -0.0506,0.0512 -0.0973,0.093 -0.10342,0.093 -0.006,0 -0.0112,0.006 -0.0112,0.0142 0,0.008 -0.0211,0.0341 -0.0468,0.0583 -0.0257,0.0242 -0.0468,0.0421 -0.0468,0.0397 0,-0.002 -0.0271,0.0246 -0.06,0.0598 -0.0331,0.0353 -0.0601,0.0685 -0.0601,0.0738 0,0.013 -0.0355,0.0477 -0.049,0.0478 -0.006,5e-5 -0.024,0.0166 -0.0399,0.0367 -0.0481,0.0609 -0.13316,0.14999 -0.1431,0.14999 -0.0147,0 -0.0748,0.0639 -0.0748,0.0795 0,0.008 -0.009,0.014 -0.02,0.014 -0.0109,0 -0.02,0.009 -0.02,0.02 0,0.0111 -0.009,0.02 -0.0208,0.02 -0.0115,0 -0.0177,0.005 -0.0141,0.011 0.008,0.0122 -0.0382,0.0557 -0.0588,0.0557 -0.007,0 -0.0132,0.005 -0.0132,0.0121 0,0.017 -0.20964,0.22804 -0.22646,0.22804 -0.008,0 -0.0137,0.006 -0.0137,0.0142 0,0.008 -0.0451,0.0587 -0.10008,0.11299 -0.0551,0.0544 -0.10008,0.10498 -0.10008,0.11256 0,0.008 -0.009,0.0137 -0.02,0.0137 -0.0111,0 -0.02,0.005 -0.02,0.0105 0,0.0115 -0.0503,0.0642 -0.16561,0.17358 -0.041,0.0389 -0.0746,0.0743 -0.0746,0.0786 0,0.0131 -0.0788,0.0842 -0.0933,0.0842 -0.008,0 -0.0135,0.008 -0.0135,0.0167 -2e-5,0.009 -0.0361,0.0547 -0.0801,0.10128 -0.044,0.0465 -0.08,0.0818 -0.08,0.0783 0,-0.003 -0.051,0.0448 -0.11343,0.10739 -0.0624,0.0625 -0.11342,0.11572 -0.11342,0.11822 0,0.0121 -0.18633,0.19192 -0.19895,0.19192 -0.008,0 -0.0145,0.007 -0.0145,0.0151 0,0.009 -0.0211,0.0349 -0.0467,0.0591 -0.0257,0.0242 -0.0468,0.0504 -0.0468,0.0583 0,0.008 -0.009,0.0142 -0.02,0.0142 -0.0111,0 -0.02,0.009 -0.02,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.0396 -0.0608,-0.002 -0.1768,-0.12053 z m -1.54346,-1.58412 c -5.2e-4,-0.009 -0.0101,-0.0167 -0.0211,-0.0167 -0.011,0 -0.02,-0.009 -0.02,-0.02 0,-0.0111 -0.009,-0.02 -0.02,-0.02 -0.0111,0 -0.02,-0.005 -0.02,-0.011 0,-0.0142 -0.0729,-0.0958 -0.0855,-0.0958 -0.0148,0 -0.0478,-0.0362 -0.0478,-0.0524 0,-0.008 -0.006,-0.0143 -0.0139,-0.0143 -0.019,0 -0.06,-0.0412 -0.0708,-0.0713 -0.005,-0.0135 -0.0208,-0.0277 -0.0355,-0.0316 -0.0147,-0.003 -0.0267,-0.0111 -0.0267,-0.0161 0,-0.0131 -0.11633,-0.14283 -0.18547,-0.20691 -0.10595,-0.0982 -0.23492,-0.23707 -0.23152,-0.24927 0.002,-0.007 -0.002,-0.012 -0.0105,-0.012 -0.014,0 -0.093,-0.0749 -0.093,-0.0882 0,-0.0127 -0.0377,-0.0453 -0.0524,-0.0453 -0.008,0 -0.0143,-0.009 -0.0143,-0.0186 0,-0.0102 -0.0151,-0.0223 -0.0334,-0.027 -0.0183,-0.005 -0.0334,-0.0144 -0.0334,-0.0219 0,-0.008 -0.019,-0.0321 -0.0421,-0.0547 -0.0369,-0.0361 -0.0394,-0.0427 -0.02,-0.0536 0.0121,-0.007 0.0446,-0.0331 0.0722,-0.0584 0.0276,-0.0253 0.061,-0.0461 0.0743,-0.0461 0.0133,-5e-5 0.021,-0.005 0.0171,-0.0114 -0.003,-0.006 0.0149,-0.0287 0.0416,-0.05 0.0267,-0.0213 0.0561,-0.0462 0.0653,-0.0554 0.009,-0.009 0.0204,-0.0167 0.0249,-0.0167 0.0102,0 0.0419,-0.0257 0.0714,-0.0578 0.0123,-0.0134 0.0569,-0.0488 0.0991,-0.0787 0.0422,-0.0298 0.0767,-0.0594 0.0767,-0.0657 0,-0.006 0.006,-0.0114 0.0141,-0.0114 0.008,0 0.0356,-0.0211 0.0621,-0.0468 0.0264,-0.0257 0.0526,-0.0468 0.0581,-0.0468 0.005,0 0.0377,-0.0268 0.0713,-0.0595 0.0338,-0.0328 0.0613,-0.0558 0.0613,-0.051 0,0.005 0.015,-0.006 0.0334,-0.0228 0.0183,-0.0172 0.0334,-0.0277 0.0334,-0.0234 0,0.005 0.0253,-0.0156 0.0562,-0.0444 0.0308,-0.0288 0.0609,-0.0523 0.0667,-0.0523 0.006,0 0.0346,-0.0241 0.064,-0.0533 0.0293,-0.0293 0.0564,-0.0533 0.0602,-0.0533 0.006,0 0.0676,-0.0513 0.10754,-0.0901 0.009,-0.009 0.0236,-0.0167 0.0315,-0.0167 0.008,0 0.0143,-0.006 0.0143,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.009 0.02,-0.02 0,-0.0111 0.008,-0.02 0.0168,-0.02 0.009,0 0.0329,-0.015 0.0528,-0.0334 0.0198,-0.0183 0.0422,-0.0334 0.0499,-0.0334 0.008,0 0.014,-0.009 0.014,-0.02 0,-0.0111 0.006,-0.02 0.0139,-0.02 0.008,0 0.0389,-0.0241 0.0694,-0.0533 0.0306,-0.0293 0.0603,-0.0533 0.0661,-0.0533 0.006,0 0.0241,-0.0116 0.0406,-0.0259 0.0918,-0.0789 0.11089,-0.0942 0.11796,-0.0942 0.005,-10e-6 0.0339,-0.0241 0.0656,-0.0534 0.0318,-0.0293 0.0623,-0.0533 0.0679,-0.0533 0.005,0 0.0281,-0.0179 0.0502,-0.04 0.022,-0.022 0.0449,-0.0402 0.051,-0.0403 0.006,-1.4e-4 0.0253,-0.0152 0.0426,-0.0335 0.0173,-0.0183 0.0489,-0.0435 0.0701,-0.056 0.0212,-0.0125 0.0384,-0.0305 0.0384,-0.0399 0,-0.009 0.009,-0.0171 0.02,-0.0171 0.0111,0 0.02,-0.005 0.02,-0.0109 0,-0.006 0.0243,-0.0246 0.054,-0.0412 0.0297,-0.0167 0.0612,-0.0419 0.07,-0.0559 0.009,-0.014 0.0194,-0.0254 0.0238,-0.0254 0.005,0 0.0339,-0.0241 0.0658,-0.0533 0.0318,-0.0293 0.0652,-0.0533 0.0743,-0.0533 0.009,0 0.0203,-0.01 0.0248,-0.0219 0.005,-0.0121 0.0118,-0.0185 0.016,-0.0144 0.007,0.007 0.0423,-0.0224 0.14025,-0.11385 0.0137,-0.0128 0.031,-0.0234 0.0384,-0.0234 0.008,0 0.0134,-0.006 0.0134,-0.0134 0,-0.008 0.005,-0.0134 0.0123,-0.0134 0.007,0 0.0304,-0.0165 0.0526,-0.0367 0.0941,-0.0858 0.12369,-0.11009 0.13441,-0.11009 0.006,0 0.0148,-0.009 0.019,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0204,-0.006 0.0204,-0.0134 0,-0.008 0.006,-0.0134 0.0124,-0.0134 0.007,0 0.0347,-0.0211 0.0619,-0.0468 0.0272,-0.0257 0.0542,-0.0468 0.0599,-0.0468 0.006,0 0.0374,-0.027 0.0704,-0.06 0.0331,-0.0331 0.0643,-0.0601 0.0696,-0.0601 0.005,0 0.0235,-0.015 0.0404,-0.0334 0.017,-0.0183 0.0358,-0.0334 0.0417,-0.0334 0.006,0 0.027,-0.015 0.0468,-0.0334 0.0198,-0.0183 0.0422,-0.0334 0.0499,-0.0334 0.008,0 0.014,-0.009 0.014,-0.02 0,-0.0116 0.0121,-0.02 0.029,-0.02 0.0159,0 0.0251,-0.003 0.0205,-0.009 -0.008,-0.008 0.0462,-0.0583 0.0629,-0.0583 0.005,0 0.0319,-0.0241 0.0613,-0.0533 0.0293,-0.0293 0.0627,-0.0533 0.0742,-0.0533 0.0115,0 0.0171,-0.006 0.0126,-0.0134 -0.005,-0.008 7.6e-4,-0.0134 0.0126,-0.0134 0.0115,0 0.0208,-0.005 0.0208,-0.0111 0,-0.006 0.0328,-0.0346 0.0731,-0.0633 0.0403,-0.0289 0.0732,-0.0568 0.0734,-0.0624 1.5e-4,-0.005 0.007,-0.01 0.0143,-0.01 0.008,0 0.0279,-0.0151 0.0448,-0.0334 0.017,-0.0183 0.0438,-0.0334 0.0594,-0.0334 0.0157,0 0.027,-0.005 0.0251,-0.0105 -0.002,-0.006 0.0163,-0.0298 0.0405,-0.0533 0.046,-0.045 0.0963,-0.057 0.0963,-0.0229 0,0.0111 0.009,0.02 0.02,0.02 0.0111,0 0.02,0.005 0.02,0.0119 0,0.007 0.0105,0.0154 0.0234,0.0196 0.0267,0.009 0.0672,0.0343 0.0938,0.0587 0.01,0.009 0.0222,0.0167 0.0272,0.0167 0.005,1e-5 0.0265,0.015 0.0479,0.0334 0.0213,0.0183 0.0441,0.0333 0.0506,0.0333 0.007,0 0.0258,0.015 0.0428,0.0334 0.017,0.0183 0.0352,0.0334 0.0403,0.0334 0.005,0 0.0178,0.008 0.028,0.0167 0.0463,0.0415 0.0598,0.05 0.079,0.05 0.0113,0 0.0206,0.009 0.0206,0.02 0,0.0111 0.0114,0.02 0.0253,0.02 0.0139,0 0.0287,0.009 0.033,0.02 0.005,0.0111 0.0143,0.02 0.0225,0.02 0.0192,0 0.0528,0.0339 0.0528,0.0532 0,0.009 0.005,0.0118 0.0119,0.008 0.007,-0.005 0.0267,0.005 0.0449,0.0188 0.0183,0.0144 0.0369,0.0222 0.0416,0.0177 0.005,-0.005 0.009,0.002 0.009,0.0138 0,0.0122 0.007,0.0222 0.0143,0.0222 0.008,0 0.0227,0.008 0.0328,0.0167 0.0393,0.0352 0.0587,0.05 0.0656,0.05 0.007,0 0.0825,0.0551 0.16703,0.12109 0.0182,0.0141 0.0377,0.0257 0.0434,0.0257 0.006,0 -0.0201,0.03 -0.0576,0.0667 -0.0375,0.0367 -0.0736,0.0667 -0.0801,0.0667 -0.007,0 -0.012,0.006 -0.012,0.0134 0,0.008 -0.006,0.0134 -0.014,0.0134 -0.0147,0 -0.0859,0.0613 -0.18222,0.1568 -0.0315,0.0312 -0.0604,0.0567 -0.0644,0.0567 -0.005,0 -0.0362,0.03 -0.0718,0.0667 -0.0355,0.0367 -0.0714,0.0667 -0.0796,0.0667 -0.009,0 -0.015,0.009 -0.015,0.0208 0,0.0115 -0.005,0.0177 -0.0111,0.014 -0.006,-0.003 -0.0305,0.0109 -0.0542,0.0326 -0.0237,0.0216 -0.0488,0.0393 -0.0556,0.0393 -0.007,0 -0.0125,0.005 -0.0125,0.0123 0,0.0129 -0.077,0.0944 -0.0891,0.0944 -0.006,0 -0.0482,0.0377 -0.15182,0.13677 -0.0211,0.0203 -0.0419,0.0367 -0.0461,0.0367 -0.005,0 -0.021,0.0137 -0.0371,0.0305 -0.0162,0.0168 -0.0564,0.0511 -0.0894,0.0763 -0.0331,0.0251 -0.0791,0.0655 -0.10251,0.0896 -0.0234,0.0241 -0.0489,0.0438 -0.0567,0.0438 -0.008,0 -0.0142,0.009 -0.0142,0.02 0,0.0111 -0.008,0.02 -0.0177,0.02 -0.01,0 -0.0258,0.015 -0.0356,0.0334 -0.01,0.0183 -0.0236,0.0334 -0.0307,0.0334 -0.007,0 -0.0268,0.015 -0.0439,0.0334 -0.017,0.0183 -0.0376,0.0334 -0.0457,0.0334 -0.008,0 -0.0118,0.005 -0.008,0.0109 0.003,0.006 -0.0118,0.0219 -0.0343,0.0351 -0.0226,0.0134 -0.0636,0.0474 -0.0911,0.0759 -0.0276,0.0283 -0.0568,0.0516 -0.065,0.0516 -0.009,0 -0.0149,0.009 -0.0149,0.02 0,0.011 -0.005,0.02 -0.01,0.02 -0.0126,4e-5 -0.11046,0.0821 -0.18695,0.15674 -0.032,0.0312 -0.0636,0.0567 -0.0704,0.0567 -0.007,0 -0.0221,0.015 -0.034,0.0332 -0.012,0.0183 -0.0271,0.03 -0.0337,0.0259 -0.007,-0.005 -0.012,5.2e-4 -0.0122,0.0101 -1.5e-4,0.01 -0.03,0.0385 -0.0665,0.0642 -0.0364,0.0257 -0.0662,0.0512 -0.0665,0.0567 -1.5e-4,0.005 -0.009,0.01 -0.0203,0.01 -0.0111,0 -0.02,0.009 -0.02,0.02 0,0.0111 -0.007,0.02 -0.0143,0.02 -0.008,0 -0.0229,0.009 -0.0334,0.019 -0.0105,0.0105 -0.019,0.0255 -0.019,0.0334 0,0.008 -0.006,0.0143 -0.0138,0.0143 -0.008,0 -0.0305,0.0165 -0.0508,0.0367 -0.0463,0.0459 -0.14661,0.12862 -0.16316,0.13454 -0.007,0.002 -0.0125,0.0129 -0.0125,0.0234 0,0.0105 -0.009,0.0189 -0.02,0.0189 -0.0109,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0109,0 -0.02,0.008 -0.02,0.0177 0,0.01 -0.015,0.0257 -0.0334,0.0356 -0.0183,0.01 -0.0334,0.0262 -0.0334,0.0364 0,0.0102 -0.005,0.0155 -0.0109,0.0119 -0.006,-0.003 -0.0388,0.0199 -0.0729,0.0526 -0.0341,0.0326 -0.0671,0.0594 -0.0736,0.0594 -0.006,0 -0.0196,0.015 -0.0294,0.0334 -0.01,0.0183 -0.0231,0.0334 -0.0296,0.0334 -0.007,0 -0.0249,0.0137 -0.0411,0.0305 -0.0162,0.0168 -0.0562,0.0513 -0.0891,0.0767 -0.0328,0.0254 -0.0799,0.0658 -0.10455,0.0896 -0.0247,0.0239 -0.0503,0.0433 -0.057,0.0433 -0.007,0 -0.0122,0.009 -0.0122,0.02 0,0.011 -0.006,0.02 -0.0134,0.02 -0.008,0 -0.0389,0.024 -0.0701,0.0532 -0.0312,0.0292 -0.073,0.0682 -0.0929,0.0867 -0.0199,0.0185 -0.0424,0.0335 -0.05,0.0335 -0.008,0 -0.0139,0.009 -0.0139,0.02 0,0.0111 -0.008,0.02 -0.0169,0.02 -0.009,0 -0.0281,0.0151 -0.0419,0.0334 -0.0138,0.0183 -0.0301,0.0334 -0.0363,0.0334 -0.0116,0 -0.055,0.0364 -0.14677,0.12343 -0.029,0.0276 -0.0589,0.05 -0.0665,0.05 -0.008,0 -0.01,0.006 -0.005,0.0134 0.005,0.008 -7.7e-4,0.0134 -0.0126,0.0134 -0.0115,0 -0.0208,0.009 -0.0208,0.02 0,0.0111 -0.006,0.02 -0.0129,0.02 -0.007,0 -0.0439,0.03 -0.0818,0.0667 -0.0378,0.0368 -0.074,0.0667 -0.0805,0.0667 -0.006,0 -0.0449,0.0331 -0.0856,0.0734 -0.0406,0.0403 -0.0792,0.0733 -0.0856,0.0733 -0.006,0 -0.0147,0.008 -0.0184,0.0167 -0.005,0.0134 -0.007,0.0134 -0.008,0 z m -1.50221,-1.53083 c -0.022,-0.0251 -0.0475,-0.0461 -0.0567,-0.0464 -0.009,-2.6e-4 -0.0167,-0.01 -0.0167,-0.0206 0,-0.0111 -0.009,-0.02 -0.02,-0.02 -0.0111,0 -0.02,-0.007 -0.02,-0.0149 0,-0.009 -0.0751,-0.0894 -0.1668,-0.18044 -0.0917,-0.0911 -0.16679,-0.17146 -0.16679,-0.17862 0,-0.007 -0.008,-0.0131 -0.0167,-0.0132 -0.009,-5e-5 -0.0377,-0.0247 -0.0633,-0.0548 -0.0428,-0.0502 -0.15564,-0.1732 -0.18819,-0.20522 -0.12475,-0.12271 -0.19877,-0.19935 -0.19877,-0.20581 0,-0.009 0.043,-0.0335 0.0834,-0.0487 0.0128,-0.005 0.0234,-0.0141 0.0234,-0.0206 0,-0.007 0.006,-0.0118 0.014,-0.0118 0.008,0 0.0302,-0.0152 0.05,-0.0338 0.0199,-0.0186 0.0661,-0.053 0.10283,-0.0765 0.0368,-0.0235 0.0688,-0.0473 0.0711,-0.0529 0.002,-0.006 0.0123,-0.0103 0.0219,-0.0103 0.01,0 0.021,-0.009 0.0252,-0.02 0.005,-0.0109 0.0154,-0.02 0.0249,-0.02 0.009,0 0.0334,-0.015 0.0532,-0.0334 0.0198,-0.0183 0.0423,-0.0334 0.0499,-0.0334 0.008,0 0.014,-0.009 0.014,-0.0208 0,-0.0115 0.005,-0.0176 0.0117,-0.0135 0.007,0.005 0.032,-0.0105 0.0567,-0.0322 0.0248,-0.0216 0.0645,-0.05 0.0883,-0.0629 0.0239,-0.0129 0.0434,-0.0281 0.0434,-0.0338 0,-0.006 0.009,-0.0102 0.0189,-0.0102 0.0105,0 0.0209,-0.005 0.0234,-0.0101 0.006,-0.0135 0.11264,-0.0967 0.12407,-0.0967 0.005,0 0.0174,-0.008 0.0277,-0.0167 0.0442,-0.0396 0.0593,-0.05 0.0724,-0.05 0.008,0 0.014,-0.006 0.014,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.006 0.02,-0.0137 0,-0.008 0.015,-0.0193 0.0334,-0.0264 0.0183,-0.007 0.0334,-0.0188 0.0334,-0.0264 0,-0.008 0.009,-0.0137 0.02,-0.0137 0.0111,0 0.02,-0.006 0.02,-0.0134 0,-0.008 0.009,-0.0134 0.0204,-0.0134 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0111 0.013,-0.02 0.0194,-0.02 0.0112,0 0.0473,-0.0267 0.086,-0.0633 0.01,-0.009 0.024,-0.0167 0.0319,-0.0167 0.008,0 0.0143,-0.006 0.0143,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0109,0 0.02,-0.006 0.02,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.006,-0.0119 0.0139,-0.0119 0.0131,0 0.0282,-0.0105 0.0724,-0.05 0.0102,-0.009 0.025,-0.0167 0.0328,-0.0167 0.008,0 0.0143,-0.009 0.0143,-0.02 0,-0.011 0.009,-0.02 0.02,-0.02 0.0111,0 0.02,-0.006 0.02,-0.0125 0,-0.007 0.0131,-0.0166 0.029,-0.0216 0.0161,-0.005 0.0445,-0.0235 0.0633,-0.041 0.0189,-0.0175 0.0418,-0.0317 0.051,-0.0317 0.009,0 0.0169,-0.005 0.0169,-0.01 0,-0.005 0.0315,-0.031 0.07,-0.0567 0.0384,-0.0257 0.0849,-0.0602 0.10325,-0.0767 0.0387,-0.0348 0.0646,-0.0383 0.0755,-0.01 0.005,0.0111 0.0134,0.02 0.0205,0.02 0.0173,0 0.051,0.0346 0.051,0.0524 0,0.008 0.007,0.0143 0.0144,0.0143 0.008,0 0.0324,0.018 0.0544,0.0401 0.022,0.022 0.0453,0.04 0.0517,0.04 0.007,0 0.0574,0.045 0.11343,0.10008 0.0559,0.0551 0.10637,0.10008 0.11206,0.10008 0.006,0 0.0265,0.015 0.0463,0.0334 0.0198,0.0183 0.0417,0.0334 0.0487,0.0334 0.007,0 0.0127,0.009 0.0127,0.02 0,0.0111 0.006,0.02 0.0139,0.02 0.0149,0 0.0316,0.0125 0.0941,0.0701 0.0219,0.0202 0.0433,0.0367 0.0477,0.0367 0.005,0 0.0278,0.021 0.052,0.0468 0.0242,0.0257 0.0504,0.0468 0.0583,0.0468 0.008,0 0.0142,0.009 0.0142,0.02 0,0.011 0.006,0.02 0.014,0.02 0.008,0 0.0279,0.0135 0.0449,0.03 0.017,0.0165 0.0422,0.0367 0.056,0.0448 0.0215,0.0127 0.0225,0.0178 0.007,0.0367 -0.01,0.0121 -0.0264,0.0219 -0.0367,0.0219 -0.0101,0 -0.0184,0.009 -0.0184,0.02 0,0.0111 -0.005,0.02 -0.0119,0.02 -0.007,0 -0.0261,0.0149 -0.0434,0.0332 -0.0173,0.0183 -0.0377,0.0332 -0.0453,0.0334 -0.008,1.5e-4 -0.0362,0.0212 -0.0635,0.0469 -0.0272,0.0257 -0.054,0.0468 -0.0595,0.0468 -0.005,5e-5 -0.0292,0.0181 -0.0526,0.04 -0.0235,0.022 -0.049,0.04 -0.0567,0.04 -0.008,0 -0.0141,0.009 -0.0141,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.007,0.0134 -0.0143,0.0134 -0.008,0 -0.0227,0.008 -0.0329,0.0167 -0.04,0.0359 -0.0587,0.05 -0.0662,0.05 -0.009,0 -0.0213,0.01 -0.0764,0.0575 -0.0199,0.0174 -0.052,0.0431 -0.0711,0.0571 -0.0348,0.0255 -0.0786,0.0598 -0.1088,0.0853 -0.009,0.008 -0.0223,0.0136 -0.03,0.0136 -0.008,0 -0.014,0.009 -0.014,0.02 0,0.0111 -0.009,0.02 -0.0189,0.02 -0.0105,0 -0.0208,0.005 -0.0234,0.01 -0.008,0.0165 -0.11042,0.0902 -0.12121,0.0867 -0.005,-0.002 -0.01,0.006 -0.01,0.0167 0,0.0111 -0.008,0.02 -0.0169,0.02 -0.009,0 -0.0281,0.0151 -0.0419,0.0334 -0.0138,0.0183 -0.0334,0.0334 -0.0436,0.0334 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.0111 -0.0194,0.02 -0.0338,0.02 -0.0143,0 -0.0223,0.006 -0.0178,0.0134 0.005,0.008 9e-5,0.0134 -0.01,0.0134 -0.01,0 -0.0432,0.0241 -0.0736,0.0533 -0.0306,0.0293 -0.0618,0.0533 -0.0694,0.0533 -0.008,0 -0.0138,0.005 -0.0138,0.0111 0,0.006 -0.0285,0.0315 -0.0633,0.0565 -0.0348,0.0249 -0.0754,0.0581 -0.0901,0.0738 -0.0147,0.0157 -0.0402,0.0326 -0.0567,0.0378 -0.0165,0.005 -0.03,0.015 -0.03,0.0219 0,0.007 -0.006,0.0125 -0.014,0.0125 -0.008,0 -0.0301,0.015 -0.0499,0.0334 -0.0198,0.0183 -0.0469,0.0334 -0.0603,0.0334 -0.0134,0 -0.0212,0.005 -0.0175,0.0109 0.008,0.0122 -0.0382,0.0558 -0.0587,0.0558 -0.007,0 -0.0132,0.008 -0.0132,0.0171 0,0.009 -0.0191,0.0284 -0.0425,0.0422 -0.0397,0.0234 -0.0852,0.0588 -0.12519,0.0974 -0.0226,0.0219 -0.0198,0.023 -0.0659,-0.0297 z m -1.31892,-1.34259 c -0.0415,-0.0434 -0.0754,-0.0814 -0.0754,-0.0845 0,-0.0111 -0.0824,-0.0877 -0.0944,-0.0877 -0.007,0 -0.0123,-0.009 -0.0123,-0.02 0,-0.0111 -0.007,-0.02 -0.0143,-0.02 -0.0185,0 -0.0524,-0.0339 -0.0524,-0.0524 0,-0.008 -0.007,-0.0143 -0.0143,-0.0143 -0.0185,0 -0.0524,-0.0339 -0.0524,-0.0524 0,-0.008 -0.009,-0.0143 -0.02,-0.0143 -0.0111,0 -0.02,-0.009 -0.02,-0.02 0,-0.0111 -0.006,-0.02 -0.0138,-0.02 -0.014,0 -0.093,-0.075 -0.093,-0.0881 0,-0.0128 -0.0377,-0.0453 -0.0524,-0.0453 -0.008,0 -0.0143,-0.007 -0.0143,-0.0154 0,-0.017 -0.10466,-0.11804 -0.12232,-0.11804 -0.006,0 -0.0111,-0.007 -0.0111,-0.0144 0,-0.008 -0.0219,-0.0357 -0.0487,-0.0618 l -0.0487,-0.0474 0.0321,-0.0247 c 0.0177,-0.0135 0.039,-0.0248 0.0474,-0.0249 0.009,-1.5e-4 0.0187,-0.009 0.0229,-0.0203 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0204,-0.006 0.0204,-0.0134 0,-0.008 0.012,-0.0134 0.0267,-0.0134 0.0148,0 0.0267,-0.009 0.0267,-0.02 0,-0.0111 0.009,-0.02 0.0184,-0.02 0.0101,0 0.0254,-0.009 0.034,-0.0187 0.009,-0.0104 0.0363,-0.0286 0.0616,-0.0406 0.0254,-0.0121 0.0461,-0.0276 0.0461,-0.0346 0,-0.007 0.0144,-0.0128 0.0319,-0.0128 0.0176,0 0.0355,-0.009 0.0399,-0.0209 0.005,-0.0115 0.0141,-0.0171 0.0214,-0.0126 0.008,0.005 0.0135,-7.6e-4 0.0135,-0.0125 0,-0.0115 0.009,-0.0208 0.02,-0.0208 0.0111,0 0.02,-0.005 0.02,-0.0108 0,-0.006 0.0241,-0.0214 0.0534,-0.0343 0.0293,-0.0129 0.0609,-0.0306 0.0701,-0.0393 0.009,-0.009 0.0391,-0.0276 0.0667,-0.0421 0.0275,-0.0144 0.05,-0.031 0.05,-0.0367 0,-0.006 0.009,-0.0102 0.02,-0.0102 0.0111,0 0.02,-0.006 0.02,-0.0124 0,-0.007 0.0135,-0.0167 0.03,-0.0219 0.0165,-0.005 0.0432,-0.0236 0.0594,-0.0409 0.0162,-0.0173 0.0389,-0.0315 0.0504,-0.0315 0.0116,0 0.0243,-0.009 0.0283,-0.0189 0.005,-0.0104 0.0346,-0.0269 0.068,-0.0368 0.0334,-0.01 0.0636,-0.0254 0.0672,-0.0345 0.003,-0.009 0.0126,-0.0167 0.0201,-0.0167 0.008,0 0.0273,-0.0147 0.0439,-0.0326 0.0166,-0.0179 0.0328,-0.0299 0.0361,-0.0266 0.003,0.003 0.0169,-0.006 0.0302,-0.0208 0.0134,-0.0147 0.0322,-0.0268 0.0422,-0.0268 0.01,0 0.0179,-0.005 0.0179,-0.0102 0,-0.0102 0.0396,-0.0343 0.0834,-0.0509 0.0128,-0.005 0.0234,-0.0141 0.0234,-0.0206 0,-0.007 0.009,-0.0118 0.0205,-0.0118 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0111 0.0221,-0.02 0.0397,-0.02 0.0176,0 0.0319,-0.007 0.0319,-0.0152 0,-0.0205 0.0412,-0.0505 0.0701,-0.0511 0.0128,-2.6e-4 0.0234,-0.009 0.0234,-0.0205 0,-0.0111 0.0119,-0.02 0.0267,-0.02 0.0147,0 0.0267,-0.006 0.0267,-0.0134 0,-0.008 0.009,-0.0134 0.0205,-0.0134 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0109 0.0184,-0.02 0.0315,-0.02 0.0131,0 0.0273,-0.009 0.0315,-0.02 0.005,-0.0111 0.0141,-0.02 0.0218,-0.02 0.008,0 0.0432,-0.0196 0.0788,-0.0434 0.0356,-0.0239 0.0847,-0.0554 0.10912,-0.0701 0.0244,-0.0147 0.0552,-0.0332 0.0683,-0.0412 0.0132,-0.008 0.036,-0.0254 0.0507,-0.0388 0.0147,-0.0134 0.0268,-0.0196 0.0268,-0.0137 0,0.006 0.0159,-0.005 0.0354,-0.0249 0.0196,-0.0196 0.0495,-0.039 0.0667,-0.0433 0.0172,-0.005 0.0312,-0.0132 0.0312,-0.0198 0,-0.007 0.009,-0.0119 0.02,-0.0119 0.0109,0 0.02,-0.005 0.02,-0.0121 0,-0.007 0.0165,-0.0179 0.0368,-0.0253 0.0202,-0.007 0.0499,-0.0258 0.0662,-0.0413 0.0162,-0.0155 0.0381,-0.0282 0.0486,-0.0282 0.0105,0 0.0226,-0.009 0.0268,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0205,-0.006 0.0205,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0109,0 0.02,-0.006 0.02,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.009,-0.0119 0.02,-0.0119 0.0111,0 0.02,-0.006 0.02,-0.0124 0,-0.007 0.0129,-0.0165 0.0288,-0.0215 0.0158,-0.005 0.042,-0.0235 0.0582,-0.0409 0.0162,-0.0175 0.0433,-0.0318 0.0602,-0.0318 0.0169,0 0.0267,-0.005 0.0219,-0.009 -0.008,-0.008 0.0192,-0.0283 0.0711,-0.0531 0.0111,-0.005 0.0248,-0.0175 0.0306,-0.0272 0.006,-0.01 0.0218,-0.0177 0.0353,-0.0177 0.0135,0 0.0281,-0.009 0.0322,-0.02 0.005,-0.011 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0204,-0.005 0.0204,-0.0118 0,-0.007 0.0105,-0.0156 0.0234,-0.0203 0.0327,-0.0118 0.0797,-0.0403 0.11527,-0.0697 0.0432,-0.0357 0.078,-0.058 0.10491,-0.067 0.0128,-0.005 0.0234,-0.0124 0.0234,-0.018 0,-0.006 0.0105,-0.0138 0.0234,-0.0181 0.0313,-0.0105 0.0651,-0.0326 0.12631,-0.0827 0.009,-0.008 0.0261,-0.0183 0.0371,-0.0234 0.0111,-0.005 0.038,-0.021 0.0601,-0.035 0.022,-0.0141 0.0539,-0.026 0.0708,-0.0265 0.0171,-5.1e-4 0.0271,-0.007 0.0225,-0.0144 -0.005,-0.008 0.002,-0.0176 0.0159,-0.0226 0.0133,-0.005 0.0315,-0.0155 0.0404,-0.0233 0.0468,-0.0406 0.0578,-0.0474 0.0766,-0.0474 0.0113,0 0.0206,-0.005 0.0206,-0.0106 0,-0.006 0.0239,-0.0254 0.053,-0.0434 0.0292,-0.018 0.0532,-0.0371 0.0533,-0.0427 2.1e-4,-0.005 0.0118,-0.01 0.0256,-0.01 0.0138,0 0.0283,-0.008 0.0321,-0.0179 0.003,-0.01 0.0284,-0.0282 0.0548,-0.0406 0.0264,-0.0125 0.048,-0.0285 0.048,-0.0354 0,-0.007 0.009,-0.0127 0.02,-0.0127 0.0111,0 0.02,-0.005 0.02,-0.0102 0,-0.0102 0.0396,-0.0343 0.0834,-0.0509 0.0128,-0.005 0.0234,-0.0141 0.0234,-0.0206 0,-0.007 0.008,-0.0118 0.018,-0.0118 0.01,0 0.0354,-0.0151 0.0567,-0.0335 0.0213,-0.0184 0.0503,-0.0371 0.0645,-0.0417 0.0141,-0.005 0.0411,-0.0225 0.0599,-0.0399 0.0189,-0.0175 0.0418,-0.0317 0.051,-0.0317 0.009,0 0.0168,-0.005 0.0168,-0.0109 0,-0.006 0.027,-0.0245 0.06,-0.041 0.0331,-0.0165 0.06,-0.0342 0.06,-0.0392 0,-0.009 0.0109,-0.0163 0.10117,-0.0623 0.0287,-0.0147 0.0544,-0.0313 0.0568,-0.037 0.002,-0.006 0.028,-0.0223 0.0567,-0.037 0.0286,-0.0147 0.0521,-0.0325 0.0521,-0.0396 0,-0.007 0.0144,-0.0131 0.0319,-0.0131 0.0176,0 0.0354,-0.009 0.0397,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0205,-0.006 0.0205,-0.0134 0,-0.008 0.01,-0.0134 0.0219,-0.0134 0.012,0 0.0357,-0.015 0.0527,-0.0334 0.017,-0.0183 0.0404,-0.0334 0.052,-0.0334 0.0115,0 0.0244,-0.009 0.0287,-0.02 0.005,-0.0111 0.016,-0.02 0.0263,-0.02 0.0102,0 0.0186,-0.006 0.0186,-0.0124 0,-0.007 0.0135,-0.0167 0.03,-0.0219 0.0165,-0.005 0.0331,-0.0134 0.0367,-0.0182 0.0108,-0.0144 0.17561,-0.12104 0.1869,-0.12104 0.006,0 0.0139,-0.009 0.018,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0204,-0.006 0.0204,-0.0134 0,-0.008 0.009,-0.0134 0.021,-0.0134 0.0115,0 0.0299,-0.009 0.041,-0.02 0.011,-0.0111 0.0306,-0.02 0.0435,-0.02 0.0129,0 0.0307,-0.0135 0.0396,-0.03 0.009,-0.0165 0.0399,-0.0415 0.0689,-0.0555 0.029,-0.0141 0.0528,-0.0306 0.0528,-0.0368 0,-0.0247 0.0756,-0.009 0.10964,0.0222 0.0198,0.0183 0.0455,0.0334 0.057,0.0334 0.0115,0 0.0245,0.009 0.0286,0.02 0.005,0.011 0.016,0.02 0.0263,0.02 0.0102,0 0.0186,0.006 0.0186,0.0134 0,0.008 0.0144,0.0134 0.0319,0.0134 0.0176,0 0.0354,0.009 0.0397,0.02 0.005,0.0109 0.0169,0.02 0.028,0.02 0.0112,0 0.0204,0.006 0.0204,0.0131 0,0.007 0.015,0.0169 0.0333,0.0214 0.0183,0.005 0.0299,0.0137 0.026,0.0203 -0.005,0.007 -1.6e-4,0.0119 0.009,0.0119 0.009,0 0.054,0.0241 0.10054,0.0533 0.0465,0.0293 0.0902,0.0533 0.0971,0.0533 0.007,0 0.0145,0.005 0.017,0.01 0.007,0.0145 0.12964,0.0967 0.14494,0.0967 0.007,0 0.0129,0.006 0.0129,0.0134 0,0.008 0.0122,0.0134 0.0271,0.0134 0.0149,0 0.0306,0.009 0.0348,0.02 0.005,0.011 0.016,0.02 0.0263,0.02 0.0102,0 0.0186,0.006 0.0186,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.006 -0.02,0.0124 0,0.007 -0.0131,0.0166 -0.029,0.0217 -0.016,0.005 -0.0445,0.0234 -0.0633,0.041 -0.0189,0.0175 -0.039,0.0317 -0.0449,0.0317 -0.006,0 -0.0248,0.0151 -0.0417,0.0334 -0.017,0.0183 -0.0377,0.0334 -0.0461,0.0334 -0.009,0 -0.0151,0.006 -0.0151,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.009,0.0119 -0.02,0.0119 -0.0111,0 -0.02,0.009 -0.02,0.0184 0,0.0102 -0.0105,0.022 -0.0234,0.0263 -0.025,0.009 -0.0724,0.0368 -0.0834,0.05 -0.003,0.005 -0.0324,0.0241 -0.0639,0.0439 -0.0314,0.0197 -0.0692,0.0478 -0.0839,0.0625 -0.0147,0.0147 -0.0325,0.0231 -0.0396,0.0187 -0.007,-0.005 -0.0128,0.002 -0.0128,0.0128 0,0.0115 -0.009,0.0208 -0.02,0.0208 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.006,0.0134 -0.0134,0.0134 -0.008,0 -0.0425,0.0209 -0.078,0.0464 -0.0356,0.0256 -0.0687,0.0426 -0.0734,0.0378 -0.005,-0.005 -0.009,-0.002 -0.009,0.007 0,0.009 -0.006,0.0156 -0.014,0.0156 -0.0154,0 -0.0366,0.0155 -0.0953,0.0701 -0.0218,0.0202 -0.0448,0.0367 -0.0512,0.0367 -0.006,0 -0.0164,0.008 -0.0223,0.0167 -0.006,0.009 -0.0286,0.0257 -0.0506,0.0367 -0.0219,0.011 -0.0526,0.0335 -0.0682,0.05 -0.0156,0.0165 -0.0384,0.03 -0.0506,0.03 -0.0122,0 -0.0257,0.009 -0.0299,0.02 -0.005,0.011 -0.016,0.02 -0.0263,0.02 -0.0102,0 -0.0186,0.006 -0.0186,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.009,0.0119 -0.0208,0.0119 -0.0115,0 -0.0173,0.006 -0.0132,0.0124 0.005,0.007 -0.006,0.0167 -0.0225,0.0219 -0.0166,0.005 -0.0434,0.0236 -0.0596,0.041 -0.0162,0.0174 -0.038,0.0315 -0.0487,0.0315 -0.0105,0 -0.0227,0.009 -0.0269,0.02 -0.005,0.0109 -0.0169,0.02 -0.0281,0.02 -0.0112,0 -0.0205,0.005 -0.0205,0.0103 0,0.006 -0.0225,0.0222 -0.05,0.0367 -0.0275,0.0144 -0.065,0.0399 -0.0833,0.0564 -0.0183,0.0165 -0.0381,0.03 -0.044,0.03 -0.006,0 -0.0247,0.015 -0.0417,0.0334 -0.017,0.0183 -0.037,0.0334 -0.0446,0.0334 -0.008,0 -0.0172,0.009 -0.0214,0.02 -0.005,0.0111 -0.0199,0.02 -0.0348,0.02 -0.0149,0 -0.0271,0.006 -0.0271,0.0134 0,0.008 -0.009,0.0134 -0.0186,0.0134 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.0111 -0.0158,0.02 -0.0257,0.02 -0.01,0 -0.0382,0.018 -0.0629,0.0401 -0.0247,0.022 -0.0483,0.04 -0.0526,0.04 -0.005,0 -0.0317,0.0209 -0.061,0.0464 -0.0293,0.0255 -0.061,0.0466 -0.0705,0.0467 -0.009,1.5e-4 -0.0306,0.0142 -0.0467,0.0312 -0.0162,0.017 -0.0384,0.0352 -0.0494,0.0402 -0.0111,0.005 -0.0381,0.0212 -0.0601,0.0359 -0.022,0.0147 -0.0505,0.0303 -0.0633,0.0348 -0.0128,0.005 -0.0234,0.0134 -0.0234,0.0199 0,0.007 -0.007,0.0118 -0.0143,0.0118 -0.008,0 -0.0227,0.008 -0.0328,0.0167 -0.0442,0.0397 -0.0593,0.05 -0.0724,0.05 -0.008,0 -0.0138,0.009 -0.0138,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.0111,0 -0.02,0.006 -0.02,0.0132 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0128 -0.0334,0.0182 0,0.005 -0.0211,0.0212 -0.0468,0.0349 -0.0257,0.0139 -0.0468,0.0298 -0.0468,0.0354 0,0.006 -0.009,0.0103 -0.0186,0.0103 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.0111 -0.0166,0.02 -0.0275,0.02 -0.0109,0 -0.0342,0.0143 -0.0516,0.0318 -0.0175,0.0175 -0.0448,0.0359 -0.0606,0.041 -0.0159,0.005 -0.0289,0.0147 -0.0289,0.0215 0,0.007 -0.009,0.0125 -0.02,0.0125 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.006,0.0134 -0.014,0.0134 -0.008,0 -0.0302,0.0152 -0.05,0.0338 -0.0199,0.0186 -0.0812,0.0618 -0.13619,0.0961 -0.0551,0.0342 -0.10209,0.067 -0.10452,0.073 -0.002,0.006 -0.0129,0.0107 -0.0234,0.0107 -0.0105,0 -0.0189,0.005 -0.019,0.01 -6e-5,0.005 -0.0226,0.0249 -0.05,0.0432 -0.0275,0.0183 -0.0594,0.0433 -0.0707,0.0558 -0.0115,0.0125 -0.037,0.0267 -0.0567,0.0317 -0.0198,0.005 -0.0359,0.0144 -0.0359,0.0209 0,0.007 -0.009,0.0119 -0.02,0.0119 -0.0111,0 -0.02,0.005 -0.02,0.0103 0,0.006 -0.0211,0.0215 -0.0468,0.0354 -0.0257,0.0139 -0.0468,0.0332 -0.0468,0.0431 0,0.01 -0.0121,0.0179 -0.0271,0.0179 -0.0149,0 -0.0306,0.009 -0.0348,0.02 -0.005,0.0111 -0.016,0.02 -0.0263,0.02 -0.0102,0 -0.0186,0.005 -0.0186,0.0112 0,0.006 -0.0211,0.0225 -0.0468,0.0364 -0.0257,0.0138 -0.0468,0.0298 -0.0468,0.0354 0,0.006 -0.009,0.0102 -0.02,0.0102 -0.0111,0 -0.02,0.006 -0.02,0.0137 0,0.008 -0.015,0.0193 -0.0334,0.0264 -0.0183,0.007 -0.0334,0.0188 -0.0334,0.0264 0,0.008 -0.009,0.0137 -0.02,0.0137 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.006 -0.02,0.0131 0,0.007 -0.0151,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.007,0.0119 -0.0151,0.0119 -0.009,0 -0.0278,0.0135 -0.0434,0.03 -0.0155,0.0165 -0.0612,0.0509 -0.10161,0.0763 -0.0403,0.0254 -0.0764,0.0494 -0.08,0.0533 -0.0125,0.0133 -0.0599,0.0412 -0.0834,0.049 -0.0128,0.005 -0.0234,0.0134 -0.0234,0.02 0,0.007 -0.0106,0.0162 -0.0234,0.0211 -0.0128,0.005 -0.0306,0.0151 -0.0396,0.0229 -0.0428,0.0372 -0.0567,0.0474 -0.0643,0.0474 -0.005,0 -0.0165,0.008 -0.0268,0.0167 -0.0447,0.0401 -0.0594,0.05 -0.0737,0.05 -0.017,0 -0.17693,0.11791 -0.18389,0.13552 -0.002,0.006 -0.0129,0.0113 -0.0234,0.0113 -0.0105,0 -0.019,0.005 -0.019,0.0118 0,0.007 -0.0105,0.0153 -0.0234,0.0196 -0.0313,0.0105 -0.0686,0.0357 -0.10657,0.072 -0.0173,0.0165 -0.0374,0.03 -0.0448,0.03 -0.008,0 -0.0267,0.0135 -0.0428,0.03 -0.0339,0.0345 -0.0725,0.0607 -0.10602,0.072 -0.0128,0.005 -0.0234,0.0132 -0.0234,0.0196 0,0.007 -0.006,0.0118 -0.014,0.0118 -0.0151,0 -0.0419,0.0199 -0.0767,0.0567 -0.0121,0.0128 -0.0297,0.0234 -0.0391,0.0234 -0.009,0 -0.017,0.006 -0.017,0.0125 0,0.007 -0.0121,0.0163 -0.0269,0.0209 -0.0148,0.005 -0.0235,0.0141 -0.0193,0.0209 0.005,0.007 -0.008,0.0124 -0.0274,0.0124 -0.0199,0 -0.0314,0.006 -0.0267,0.0134 0.005,0.008 -7.6e-4,0.0134 -0.0126,0.0134 -0.0115,0 -0.0208,0.006 -0.0208,0.0125 0,0.007 -0.0129,0.0165 -0.0287,0.0215 -0.0158,0.005 -0.0413,0.0225 -0.0567,0.0386 -0.0507,0.0534 -0.0658,0.0499 -0.14595,-0.0338 z m 3.73064,-0.57254 c -0.0306,-0.0293 -0.0618,-0.0533 -0.0694,-0.0533 -0.008,0 -0.0139,-0.006 -0.0139,-0.0134 0,-0.008 -0.005,-0.0134 -0.012,-0.0134 -0.0122,0 -0.0685,-0.0452 -0.13702,-0.11008 -0.0213,-0.0202 -0.0435,-0.0367 -0.0493,-0.0367 -0.006,0 -0.0186,-0.0151 -0.0285,-0.0334 -0.01,-0.0183 -0.0263,-0.0334 -0.0367,-0.0334 -0.0104,0 -0.0363,-0.0176 -0.0577,-0.039 -0.0215,-0.0215 -0.039,-0.0354 -0.039,-0.0312 0,0.005 -0.0225,-0.0164 -0.05,-0.0462 -0.0276,-0.0297 -0.0621,-0.0566 -0.0767,-0.0597 -0.0147,-0.003 -0.0251,-0.0128 -0.0234,-0.0215 0.002,-0.009 -0.002,-0.0159 -0.0106,-0.0159 -0.008,0 -0.0279,-0.015 -0.0448,-0.0334 -0.017,-0.0183 -0.0343,-0.0334 -0.0384,-0.0334 -0.005,0 -0.0298,-0.021 -0.057,-0.0468 -0.0272,-0.0257 -0.0538,-0.0467 -0.0591,-0.0467 -0.0147,0 -0.0801,-0.0639 -0.0801,-0.0783 0,-0.007 -0.008,-0.0159 -0.0167,-0.0196 -0.0102,-0.005 -0.008,-0.007 0.006,-0.008 0.0125,-5.1e-4 0.0422,-0.0191 0.0664,-0.0411 0.0242,-0.022 0.0516,-0.0401 0.0609,-0.0401 0.009,0 0.017,-0.006 0.017,-0.0134 0,-0.008 0.009,-0.0134 0.021,-0.0134 0.0115,0 0.0293,-0.008 0.0396,-0.0167 0.0442,-0.0396 0.0592,-0.05 0.0724,-0.05 0.008,0 0.0139,-0.009 0.0139,-0.02 0,-0.0126 0.0127,-0.02 0.0341,-0.02 0.0189,0 0.0306,-0.006 0.0263,-0.0127 -0.005,-0.007 0.005,-0.0189 0.0182,-0.0267 0.0143,-0.008 0.034,-0.0215 0.0438,-0.0307 0.01,-0.009 0.0402,-0.0318 0.0676,-0.0501 0.0275,-0.0183 0.05,-0.0378 0.05,-0.0433 5e-5,-0.005 0.006,-0.01 0.014,-0.01 0.008,0 0.027,-0.0122 0.0431,-0.0272 0.0161,-0.015 0.0428,-0.0306 0.0595,-0.0348 0.0167,-0.005 0.0303,-0.0164 0.0303,-0.027 0,-0.0106 0.005,-0.016 0.0119,-0.012 0.007,0.005 0.0154,-0.002 0.0196,-0.0126 0.005,-0.0109 0.02,-0.0199 0.0352,-0.0199 0.0151,0 0.031,-0.009 0.0352,-0.02 0.005,-0.0111 0.0164,-0.02 0.027,-0.02 0.0107,0 0.0157,-0.006 0.0112,-0.0134 -0.005,-0.008 -0.002,-0.0134 0.007,-0.0134 0.0158,0 0.0423,-0.0193 0.0775,-0.0567 0.0121,-0.0128 0.0312,-0.0235 0.0425,-0.0238 0.0208,-5.1e-4 0.0813,-0.0396 0.0611,-0.0396 -0.006,0 0.0111,-0.015 0.0381,-0.0334 0.027,-0.0183 0.0549,-0.0334 0.0619,-0.0334 0.007,0 0.0128,-0.006 0.0128,-0.0134 0,-0.008 0.006,-0.0134 0.0128,-0.0134 0.007,0 0.0313,-0.018 0.0539,-0.0401 0.0225,-0.022 0.0475,-0.04 0.0555,-0.04 0.008,0 0.0244,-0.0105 0.0362,-0.0234 0.0118,-0.0128 0.0448,-0.0352 0.0732,-0.0497 0.0283,-0.0144 0.0545,-0.034 0.0581,-0.0434 0.003,-0.009 0.0134,-0.017 0.0219,-0.017 0.009,0 0.0316,-0.015 0.0513,-0.0334 0.0198,-0.0183 0.0409,-0.0334 0.0468,-0.0334 0.006,0 0.0269,-0.015 0.0468,-0.0334 0.0198,-0.0183 0.0425,-0.0334 0.0504,-0.0334 0.008,0 0.0178,-0.009 0.022,-0.02 0.005,-0.0111 0.0154,-0.02 0.0248,-0.02 0.009,0 0.0206,-0.009 0.0248,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0204,-0.006 0.0204,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.005 0.02,-0.0102 0,-0.006 0.0241,-0.025 0.0533,-0.0432 0.0293,-0.0182 0.0533,-0.0376 0.0533,-0.0432 0,-0.006 0.007,-0.0102 0.0143,-0.0102 0.008,0 0.0227,-0.008 0.0328,-0.0167 0.0408,-0.0367 0.0588,-0.05 0.0671,-0.05 0.0112,0 0.11784,-0.0834 0.12368,-0.0966 0.002,-0.005 0.0129,-0.0101 0.0234,-0.0101 0.0105,0 0.0189,-0.005 0.0189,-0.0112 0,-0.006 0.024,-0.0227 0.0532,-0.0368 0.0293,-0.014 0.0532,-0.0316 0.0533,-0.0391 1e-4,-0.008 0.0209,-0.0248 0.0462,-0.0384 0.0254,-0.0136 0.0597,-0.0375 0.0764,-0.0531 0.0167,-0.0155 0.0335,-0.0286 0.0374,-0.0291 0.0167,-0.002 0.0936,-0.0534 0.0936,-0.0625 4e-5,-0.005 0.0121,-0.01 0.0268,-0.01 0.0148,0 0.0267,-0.009 0.0267,-0.02 0,-0.0109 0.009,-0.02 0.02,-0.02 0.0111,0 0.02,-0.006 0.02,-0.0134 0,-0.008 0.009,-0.0134 0.0186,-0.0134 0.0102,0 0.022,-0.009 0.0263,-0.02 0.005,-0.011 0.0164,-0.02 0.027,-0.02 0.0106,0 0.0213,-0.005 0.0238,-0.01 0.008,-0.0167 0.11532,-0.0967 0.13043,-0.0967 0.008,0 0.0141,-0.005 0.0141,-0.0105 0,-0.006 0.0195,-0.0219 0.0433,-0.0357 0.0239,-0.0138 0.0464,-0.0289 0.05,-0.0332 0.0186,-0.0225 0.11921,-0.0941 0.13202,-0.0941 0.008,0 0.0147,-0.006 0.0147,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.006 0.02,-0.0134 0,-0.008 0.024,-0.0238 0.0533,-0.0364 0.0293,-0.0127 0.0533,-0.0307 0.0533,-0.04 0,-0.009 0.007,-0.0169 0.0143,-0.0169 0.008,0 0.0227,-0.008 0.0328,-0.0167 0.0423,-0.0379 0.059,-0.05 0.069,-0.0501 0.006,-3e-5 0.0298,-0.018 0.0533,-0.04 0.0234,-0.022 0.049,-0.04 0.0567,-0.04 0.008,0 0.0141,-0.006 0.0141,-0.0134 0,-0.008 0.009,-0.0134 0.0189,-0.0134 0.0105,0 0.0208,-0.005 0.0234,-0.01 0.007,-0.0148 0.12679,-0.0967 0.14197,-0.0967 0.007,0 0.0165,-0.009 0.0207,-0.02 0.005,-0.0111 0.0141,-0.02 0.0221,-0.02 0.008,0 0.0293,-0.015 0.0477,-0.0334 0.0183,-0.0183 0.0393,-0.0334 0.0466,-0.0334 0.007,0 0.0308,-0.018 0.0523,-0.04 0.0215,-0.022 0.047,-0.0401 0.0567,-0.0401 0.01,0 0.0262,-0.012 0.0368,-0.0267 0.0106,-0.0148 0.0269,-0.0267 0.0363,-0.0267 0.009,0 0.017,-0.006 0.017,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.009,-0.0119 0.02,-0.0119 0.0111,0 0.02,-0.009 0.02,-0.0185 0,-0.0102 0.0105,-0.022 0.0234,-0.0263 0.0299,-0.01 0.0665,-0.0342 0.10925,-0.072 0.0186,-0.0165 0.0416,-0.03 0.0508,-0.03 0.009,0 0.0168,-0.006 0.0168,-0.0134 0,-0.008 0.009,-0.0134 0.0205,-0.0134 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0111 0.0134,-0.02 0.0205,-0.02 0.007,0 0.0212,-0.008 0.0315,-0.0167 0.037,-0.0332 0.0537,-0.0452 0.0984,-0.0708 0.025,-0.0143 0.0695,-0.0485 0.0989,-0.076 0.0293,-0.0276 0.0613,-0.05 0.0712,-0.05 0.01,0 0.0179,-0.005 0.0179,-0.0105 0,-0.0107 0.1639,-0.12293 0.17953,-0.12293 0.005,0 0.0225,-0.015 0.0395,-0.0334 0.0305,-0.0328 0.0879,-0.046 0.0879,-0.02 0,0.008 0.009,0.0134 0.0186,0.0134 0.0102,0 0.0221,0.009 0.0263,0.02 0.005,0.0111 0.0199,0.02 0.0348,0.02 0.0149,0 0.0271,0.005 0.0271,0.0119 0,0.007 0.0211,0.0158 0.0468,0.0206 0.0257,0.005 0.0468,0.0144 0.0468,0.0215 0,0.007 0.012,0.0128 0.0267,0.0128 0.0147,0 0.0267,0.005 0.0267,0.0108 0,0.006 0.0255,0.0217 0.0567,0.035 0.0312,0.0134 0.0642,0.0336 0.0733,0.0452 0.0108,0.0135 0.0167,0.0151 0.0167,0.005 0,-0.0101 0.0102,-0.007 0.0269,0.009 0.0275,0.0256 0.0606,0.0448 0.11986,0.0693 0.0183,0.008 0.0513,0.0257 0.0733,0.0402 0.022,0.0144 0.049,0.0299 0.06,0.0343 0.0506,0.0203 0.0882,0.0403 0.10436,0.0556 0.01,0.009 0.0262,0.0167 0.0367,0.0167 0.0105,0 0.0191,0.006 0.0191,0.0134 0,0.008 0.015,0.0134 0.0334,0.0134 0.0183,0 0.0332,0.005 0.0329,0.01 -5.2e-4,0.0144 -0.0342,0.0567 -0.045,0.0567 -0.005,0 -0.0231,0.015 -0.0401,0.0334 -0.017,0.0183 -0.0352,0.0334 -0.0403,0.0334 -0.005,0 -0.0178,0.008 -0.028,0.0167 -0.0401,0.036 -0.0587,0.05 -0.0662,0.05 -0.005,0 -0.0211,0.0139 -0.0372,0.0309 -0.0162,0.017 -0.0504,0.0436 -0.0761,0.0593 -0.0257,0.0157 -0.0555,0.0409 -0.0664,0.0559 -0.0108,0.0151 -0.0272,0.0275 -0.0365,0.0275 -0.009,0 -0.0331,0.018 -0.0526,0.04 -0.0196,0.022 -0.0437,0.04 -0.0535,0.04 -0.01,0 -0.0178,0.006 -0.0178,0.0134 0,0.008 -0.008,0.0134 -0.0173,0.0134 -0.009,0 -0.0423,0.0241 -0.0729,0.0533 -0.0306,0.0293 -0.0613,0.0533 -0.0683,0.0533 -0.007,0 -0.0147,0.005 -0.0172,0.0106 -0.002,0.006 -0.0311,0.0313 -0.0636,0.0567 -0.0326,0.0254 -0.069,0.0552 -0.0811,0.0662 -0.0406,0.0371 -0.099,0.0801 -0.10895,0.0801 -0.005,0 -0.0351,0.0241 -0.066,0.0533 -0.0308,0.0293 -0.062,0.0533 -0.0691,0.0533 -0.007,0 -0.0269,0.015 -0.0439,0.0334 -0.017,0.0183 -0.0347,0.0334 -0.0391,0.0334 -0.005,0 -0.0166,0.008 -0.0269,0.0167 -0.0442,0.0396 -0.0593,0.05 -0.0724,0.05 -0.008,0 -0.0139,0.009 -0.0139,0.02 0,0.0111 -0.006,0.02 -0.014,0.02 -0.008,0 -0.0302,0.015 -0.0499,0.0334 -0.0198,0.0183 -0.0436,0.0334 -0.0528,0.0334 -0.009,0 -0.0168,0.009 -0.0168,0.02 0,0.0111 -0.008,0.02 -0.018,0.02 -0.01,0 -0.0397,0.0211 -0.066,0.0468 -0.0264,0.0257 -0.0537,0.0468 -0.0604,0.0468 -0.007,0 -0.0355,0.0212 -0.064,0.0473 -0.0283,0.026 -0.0652,0.0506 -0.0818,0.0548 -0.0166,0.005 -0.0301,0.0159 -0.0301,0.0261 0,0.0102 -0.007,0.0186 -0.0144,0.0186 -0.008,0 -0.0382,0.024 -0.0672,0.0533 -0.0291,0.0293 -0.0594,0.0533 -0.0675,0.0533 -0.008,0 -0.0285,0.015 -0.0455,0.0334 -0.017,0.0183 -0.0361,0.0334 -0.0426,0.0334 -0.006,0 -0.0257,0.015 -0.043,0.0334 -0.0172,0.0183 -0.0368,0.0334 -0.0434,0.0334 -0.007,0 -0.0307,0.0186 -0.0535,0.0415 -0.0228,0.0228 -0.0644,0.0566 -0.0924,0.0752 -0.028,0.0185 -0.051,0.0389 -0.051,0.0452 0,0.006 -0.009,0.0115 -0.02,0.0115 -0.011,0 -0.02,0.005 -0.02,0.0105 0,0.006 -0.0165,0.0205 -0.0368,0.033 -0.0202,0.0123 -0.0577,0.0406 -0.0834,0.0627 -0.0759,0.0655 -0.0783,0.0673 -0.0928,0.0673 -0.008,0 -0.014,0.006 -0.014,0.0125 0,0.007 -0.0121,0.0163 -0.0269,0.0209 -0.0148,0.005 -0.0235,0.0141 -0.0193,0.0209 0.005,0.007 -0.002,0.0124 -0.0132,0.0124 -0.0115,0 -0.0208,0.006 -0.0208,0.0137 0,0.008 -0.015,0.0193 -0.0334,0.0264 -0.0183,0.007 -0.0334,0.0188 -0.0334,0.0264 0,0.008 -0.009,0.0137 -0.02,0.0137 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.006,0.0134 -0.014,0.0134 -0.008,0 -0.0301,0.0151 -0.0499,0.0334 -0.0198,0.0183 -0.0436,0.0334 -0.0528,0.0334 -0.009,0 -0.0168,0.009 -0.0168,0.02 0,0.0111 -0.009,0.02 -0.0186,0.02 -0.0102,0 -0.0221,0.009 -0.0263,0.02 -0.005,0.011 -0.0203,0.02 -0.0356,0.02 -0.0154,0 -0.0244,0.006 -0.0202,0.0124 0.005,0.007 -0.0105,0.0232 -0.0326,0.0362 -0.0221,0.0131 -0.0403,0.0285 -0.0403,0.0342 0,0.006 -0.009,0.0105 -0.02,0.0105 -0.0111,0 -0.02,0.005 -0.02,0.0111 0,0.006 -0.0285,0.0314 -0.0633,0.0562 -0.0348,0.0248 -0.0694,0.0517 -0.0767,0.0597 -0.0243,0.0267 -0.11139,0.0865 -0.12587,0.0865 -0.008,0 -0.0142,0.009 -0.0142,0.02 0,0.0109 -0.007,0.02 -0.0151,0.02 -0.009,0 -0.029,0.015 -0.0461,0.0334 -0.017,0.0183 -0.0375,0.0334 -0.0455,0.0334 -0.008,0 -0.0285,0.0151 -0.0455,0.0334 -0.017,0.0183 -0.0347,0.0334 -0.0393,0.0334 -0.009,0 -0.0607,0.0417 -0.10427,0.0834 -0.0135,0.0128 -0.0304,0.0234 -0.0377,0.0234 -0.008,0 -0.0134,0.006 -0.0134,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.009,0.0119 -0.02,0.0119 -0.0111,0 -0.02,0.007 -0.02,0.0143 0,0.0185 -0.0339,0.0524 -0.0524,0.0524 -0.008,0 -0.0143,0.006 -0.0143,0.0137 0,0.008 -0.015,0.0193 -0.0334,0.0263 -0.0183,0.007 -0.0334,0.0189 -0.0334,0.0264 0,0.008 -0.007,0.0137 -0.0151,0.0137 -0.009,0 -0.0293,0.0154 -0.0468,0.0341 -0.0173,0.0187 -0.0315,0.0311 -0.0315,0.0274 0,-0.003 -0.0193,0.0111 -0.043,0.0327 -0.0236,0.0216 -0.0474,0.0393 -0.0528,0.0393 -0.005,0 -0.0343,0.024 -0.0643,0.0533 -0.0299,0.0293 -0.061,0.0533 -0.0691,0.0533 -0.008,0 -0.0285,0.015 -0.0455,0.0334 -0.017,0.0183 -0.0345,0.0334 -0.0388,0.0334 -0.005,0 -0.0241,0.0151 -0.0439,0.0334 -0.0198,0.0183 -0.0435,0.0334 -0.0528,0.0334 -0.009,0 -0.0168,0.009 -0.0168,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.0111,0 -0.02,0.005 -0.02,0.0102 0,0.0102 -0.0396,0.0343 -0.0834,0.0509 -0.0128,0.005 -0.0234,0.0145 -0.0234,0.0215 0,0.0172 -0.0347,0.0509 -0.0524,0.0509 -0.008,0 -0.0143,0.009 -0.0143,0.0185 0,0.0101 -0.0105,0.0225 -0.0234,0.0272 -0.0438,0.0165 -0.0834,0.0406 -0.0834,0.0509 0,0.006 -0.007,0.0102 -0.0151,0.0102 -0.009,0 -0.028,0.0138 -0.0437,0.0307 -0.0157,0.017 -0.0389,0.0348 -0.0516,0.0397 -0.0127,0.005 -0.023,0.0151 -0.023,0.0226 0,0.0281 -0.0363,0.0121 -0.0902,-0.0396 z m -4.80688,-0.51843 c 0,-0.006 -0.0595,-0.0718 -0.13233,-0.14566 -0.0728,-0.0739 -0.12882,-0.13779 -0.12454,-0.14208 0.005,-0.005 0.002,-0.008 -0.007,-0.008 -0.0182,0 -0.10368,-0.083 -0.0996,-0.0967 0.002,-0.005 -0.002,-0.009 -0.007,-0.007 -0.0111,0.003 -0.0967,-0.0745 -0.0967,-0.0882 0,-0.0151 -0.0509,-0.06 -0.0589,-0.052 -0.005,0.005 -0.008,-0.002 -0.008,-0.0144 0,-0.0122 -0.007,-0.0222 -0.0143,-0.0222 -0.0185,0 -0.0524,-0.0339 -0.0524,-0.0524 0,-0.008 -0.009,-0.0143 -0.02,-0.0143 -0.0109,0 -0.02,-0.005 -0.02,-0.0115 0,-0.006 -0.0156,-0.027 -0.0345,-0.0461 -0.0368,-0.0368 -0.0336,-0.0566 0.0125,-0.0766 0.0352,-0.0154 0.0749,-0.0404 0.0992,-0.0626 0.01,-0.009 0.0268,-0.0167 0.0372,-0.0167 0.0105,0 0.0191,-0.005 0.0191,-0.0101 0,-0.005 0.0285,-0.0237 0.0633,-0.0404 0.0754,-0.0361 0.10607,-0.0548 0.14245,-0.0868 0.0149,-0.0131 0.0407,-0.0273 0.0575,-0.0315 0.0166,-0.005 0.0303,-0.012 0.0303,-0.0174 0,-0.005 0.024,-0.0212 0.0532,-0.0353 0.0293,-0.0141 0.0532,-0.0293 0.0533,-0.0341 10e-5,-0.005 0.0151,-0.0123 0.0335,-0.017 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.0144,-0.0131 0.0319,-0.0131 0.0176,0 0.0354,-0.009 0.0396,-0.02 0.005,-0.0111 0.0199,-0.02 0.0348,-0.02 0.0149,0 0.0271,-0.005 0.0271,-0.0118 0,-0.007 0.0105,-0.0154 0.0234,-0.0196 0.0267,-0.009 0.0672,-0.0343 0.0938,-0.0587 0.01,-0.009 0.0268,-0.0167 0.0373,-0.0167 0.0105,0 0.0191,-0.006 0.0191,-0.0134 0,-0.008 0.0153,-0.0134 0.0341,-0.0134 0.0208,0 0.0307,-0.006 0.0254,-0.0142 -0.005,-0.008 0.003,-0.0176 0.0192,-0.0215 0.0154,-0.005 0.028,-0.012 0.028,-0.0177 0,-0.006 0.015,-0.0141 0.0334,-0.0186 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.009,-0.0131 0.021,-0.0131 0.0115,0 0.0293,-0.008 0.0396,-0.0167 0.0483,-0.0433 0.062,-0.0519 0.0863,-0.0537 0.0143,-7.6e-4 0.029,-0.01 0.0326,-0.0192 0.003,-0.009 0.0158,-0.0172 0.0271,-0.0172 0.0112,0 0.0205,-0.006 0.0205,-0.0134 0,-0.008 0.0122,-0.0134 0.0271,-0.0134 0.0149,0 0.0306,-0.009 0.0348,-0.02 0.005,-0.011 0.019,-0.02 0.0329,-0.02 0.0139,0 0.0253,-0.006 0.0253,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.009,-0.0119 0.0184,-0.0119 0.0101,0 0.0259,-0.009 0.035,-0.02 0.009,-0.011 0.0254,-0.02 0.036,-0.02 0.0106,0 0.0277,-0.008 0.0379,-0.0167 0.0397,-0.0356 0.0588,-0.05 0.0659,-0.05 0.005,0 0.0312,-0.0149 0.0601,-0.0332 0.0289,-0.0183 0.0596,-0.0348 0.0682,-0.0368 0.009,-0.002 0.0309,-0.0172 0.0496,-0.0339 0.0186,-0.0167 0.0479,-0.0338 0.0649,-0.0382 0.017,-0.005 0.0311,-0.0132 0.0311,-0.0197 0,-0.007 0.0122,-0.0119 0.0274,-0.0119 0.0151,0 0.0423,-0.015 0.0606,-0.0334 0.0183,-0.0183 0.0452,-0.0334 0.0594,-0.0334 0.0144,0 0.0261,-0.006 0.0261,-0.0125 0,-0.007 0.0133,-0.0166 0.0294,-0.0218 0.0162,-0.005 0.0376,-0.0176 0.0477,-0.0276 0.01,-0.01 0.0268,-0.0182 0.0374,-0.0182 0.0105,0 0.0191,-0.006 0.0191,-0.0134 0,-0.008 0.015,-0.0134 0.0334,-0.0134 0.0207,0 0.0334,-0.008 0.0334,-0.02 0,-0.0112 0.0119,-0.02 0.0267,-0.02 0.0147,0 0.0267,-0.005 0.0267,-0.0118 0,-0.007 0.0105,-0.0154 0.0234,-0.0196 0.0321,-0.0108 0.0698,-0.0357 0.12907,-0.0854 0.0109,-0.009 0.0264,-0.0167 0.0343,-0.0167 0.0133,0 0.0783,-0.0369 0.0935,-0.0532 0.003,-0.005 0.0306,-0.019 0.0598,-0.0336 0.0293,-0.0147 0.0612,-0.0341 0.071,-0.0432 0.01,-0.009 0.0264,-0.0167 0.0369,-0.0167 0.0105,0 0.0191,-0.006 0.0191,-0.0134 0,-0.008 0.009,-0.0134 0.0186,-0.0134 0.0102,0 0.022,-0.009 0.0263,-0.02 0.005,-0.0109 0.0199,-0.02 0.0348,-0.02 0.0149,0 0.0271,-0.006 0.0271,-0.0134 0,-0.008 0.0116,-0.0134 0.0258,-0.0134 0.0142,0 0.0299,-0.006 0.0347,-0.0141 0.005,-0.008 0.0217,-0.0198 0.0375,-0.0267 0.0352,-0.0153 0.075,-0.0404 0.0992,-0.0626 0.01,-0.009 0.0256,-0.0167 0.0348,-0.0167 0.009,0 0.0286,-0.0112 0.0432,-0.0248 0.0148,-0.0137 0.0504,-0.036 0.0793,-0.0495 0.029,-0.0136 0.0604,-0.0324 0.0702,-0.0419 0.01,-0.009 0.0262,-0.0172 0.0367,-0.0172 0.0105,0 0.0191,-0.006 0.0191,-0.0134 0,-0.008 0.009,-0.0134 0.0184,-0.0134 0.0101,0 0.0258,-0.009 0.035,-0.02 0.009,-0.0111 0.0279,-0.02 0.0417,-0.02 0.0137,0 0.025,-0.006 0.025,-0.0131 0,-0.007 0.0151,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0122 0.0335,-0.017 10e-5,-0.005 0.0241,-0.02 0.0533,-0.0341 0.0293,-0.0141 0.0532,-0.0306 0.0532,-0.0367 0,-0.006 0.0121,-0.0112 0.0271,-0.0112 0.0149,0 0.0306,-0.009 0.0348,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0276,-0.01 0.0363,-0.0217 0.0319,-0.0436 0.12628,-0.0125 0.19549,0.0644 0.0118,0.0132 0.0281,0.024 0.0361,0.024 0.008,0 0.0192,0.009 0.0251,0.0183 0.006,0.01 0.0302,0.0282 0.054,0.0404 0.0239,0.0122 0.0434,0.027 0.0434,0.0331 0,0.01 0.0449,0.0355 0.0701,0.04 0.005,7.7e-4 0.0215,0.0123 0.0357,0.0251 0.0484,0.0439 0.0665,0.0567 0.0805,0.0567 0.008,0 0.014,0.006 0.014,0.0134 0,0.008 0.006,0.0134 0.0134,0.0134 0.008,0 0.0249,0.0106 0.039,0.0234 0.0484,0.0439 0.0665,0.0567 0.0805,0.0567 0.008,0 0.0139,0.006 0.0139,0.0134 0,0.008 0.009,0.0134 0.0205,0.0134 0.0112,0 0.0239,0.009 0.0281,0.02 0.005,0.0111 0.0133,0.02 0.0203,0.02 0.007,0 0.025,0.0116 0.0403,0.026 0.0239,0.0222 0.0251,0.0284 0.009,0.0434 -0.0271,0.025 -0.0675,0.0503 -0.0945,0.0594 -0.0128,0.005 -0.0234,0.0119 -0.0234,0.0166 0,0.005 -0.0225,0.0205 -0.05,0.035 -0.0275,0.0144 -0.0548,0.0339 -0.0607,0.0431 -0.006,0.009 -0.0223,0.0168 -0.0367,0.0168 -0.0143,0 -0.026,0.005 -0.026,0.0118 0,0.007 -0.0105,0.0154 -0.0234,0.0196 -0.0267,0.009 -0.0672,0.0343 -0.0938,0.0587 -0.01,0.009 -0.0268,0.0167 -0.0372,0.0167 -0.0105,0 -0.0191,0.006 -0.0191,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.009 -0.02,0.02 0,0.0111 -0.0118,0.02 -0.026,0.02 -0.0143,0 -0.0308,0.008 -0.0368,0.0174 -0.006,0.01 -0.0332,0.0278 -0.0607,0.0406 -0.0276,0.0128 -0.0501,0.0275 -0.0502,0.0326 -1.1e-4,0.01 -0.064,0.0427 -0.0831,0.0427 -0.0113,0 -0.0307,0.0141 -0.0765,0.0554 -0.0134,0.0121 -0.046,0.0298 -0.0724,0.0393 -0.0264,0.009 -0.048,0.0221 -0.048,0.0277 0,0.006 -0.0241,0.0227 -0.0533,0.0376 -0.0293,0.015 -0.0533,0.0332 -0.0533,0.0403 0,0.007 -0.0114,0.0131 -0.0253,0.0131 -0.0139,0 -0.0286,0.009 -0.0329,0.02 -0.005,0.0111 -0.0169,0.02 -0.0281,0.02 -0.0112,0 -0.0204,0.006 -0.0204,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.009,0.0119 -0.02,0.0119 -0.0111,0 -0.02,0.005 -0.02,0.0119 0,0.007 -0.015,0.0157 -0.0334,0.0203 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.007,0.0131 -0.0143,0.0131 -0.008,0 -0.0227,0.008 -0.0328,0.0167 -0.0464,0.0416 -0.0597,0.05 -0.0795,0.05 -0.0115,0 -0.0244,0.009 -0.0286,0.02 -0.005,0.0111 -0.0191,0.02 -0.033,0.02 -0.0138,0 -0.0253,0.006 -0.0253,0.0134 0,0.008 -0.008,0.0134 -0.0168,0.0134 -0.009,0 -0.033,0.0151 -0.0529,0.0334 -0.0198,0.0183 -0.0418,0.0334 -0.049,0.0334 -0.007,0 -0.0209,0.008 -0.0306,0.0167 -0.01,0.009 -0.0415,0.0287 -0.0708,0.0433 -0.0293,0.0147 -0.0605,0.0327 -0.0696,0.04 -0.009,0.008 -0.0254,0.0208 -0.0363,0.03 -0.0109,0.009 -0.0255,0.0167 -0.0324,0.0167 -0.007,0 -0.0159,0.009 -0.0202,0.02 -0.005,0.0111 -0.0173,0.02 -0.0291,0.02 -0.0118,0 -0.0298,0.008 -0.04,0.0167 -0.0462,0.0415 -0.0597,0.05 -0.079,0.05 -0.0113,0 -0.0206,0.006 -0.0206,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.013 -0.0334,0.0186 0,0.006 -0.0105,0.0139 -0.0234,0.0183 -0.0244,0.009 -0.072,0.0365 -0.0834,0.0497 -0.003,0.005 -0.0275,0.0192 -0.053,0.0334 -0.0499,0.0277 -0.058,0.0332 -0.10414,0.0711 -0.0167,0.0137 -0.0497,0.0328 -0.0733,0.0426 -0.0236,0.01 -0.0495,0.0239 -0.0574,0.0315 -0.008,0.008 -0.0424,0.0316 -0.0767,0.0533 -0.0343,0.0217 -0.0623,0.0442 -0.0623,0.05 0,0.006 -0.0114,0.0107 -0.0253,0.0107 -0.0139,0 -0.0287,0.009 -0.033,0.02 -0.005,0.0111 -0.0199,0.02 -0.0348,0.02 -0.0149,0 -0.0271,0.006 -0.0271,0.0134 0,0.008 -0.009,0.0134 -0.0193,0.0134 -0.0106,0 -0.0246,0.009 -0.0309,0.0206 -0.006,0.0114 -0.0247,0.0216 -0.0406,0.0228 -0.016,0.002 -0.0291,0.0103 -0.0291,0.0202 0,0.01 -0.006,0.0142 -0.0135,0.01 -0.008,-0.005 -0.017,7.7e-4 -0.0214,0.0126 -0.005,0.0115 -0.0193,0.0209 -0.0333,0.0209 -0.0139,0 -0.0253,0.009 -0.0253,0.02 0,0.0109 -0.009,0.02 -0.0202,0.02 -0.0247,0 -0.0764,0.0279 -0.0897,0.0485 -0.005,0.009 -0.0249,0.019 -0.0434,0.0236 -0.0184,0.005 -0.0335,0.0143 -0.0335,0.0215 0,0.007 -0.009,0.0131 -0.0208,0.0131 -0.0115,0 -0.0171,0.006 -0.0126,0.0134 0.005,0.008 -0.005,0.0134 -0.0196,0.0134 -0.0154,0 -0.0309,0.008 -0.0345,0.0172 -0.003,0.009 -0.0334,0.029 -0.0662,0.0434 -0.0328,0.0144 -0.0597,0.0306 -0.0597,0.0362 -6e-5,0.005 -0.009,0.01 -0.0211,0.01 -0.0115,0 -0.0293,0.008 -0.0396,0.0167 -0.039,0.0349 -0.0587,0.05 -0.0652,0.05 -0.007,0 -0.12791,0.0802 -0.14105,0.0934 -0.003,0.003 -0.0292,0.0182 -0.0567,0.0321 -0.0275,0.014 -0.05,0.0299 -0.05,0.0353 0,0.005 -0.015,0.0136 -0.0334,0.0182 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.009,0.0131 -0.02,0.0131 -0.0111,0 -0.02,0.006 -0.02,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.012,0.0119 -0.0267,0.0119 -0.0147,0 -0.0267,-0.005 -0.0267,-0.0114 z m 8.3197,-0.0215 c -0.0147,-0.0179 -0.0365,-0.0328 -0.0487,-0.0332 -0.0121,-2.7e-4 -0.0254,-0.01 -0.0296,-0.0206 -0.005,-0.0111 -0.0143,-0.02 -0.0225,-0.02 -0.008,0 -0.0231,-0.008 -0.0333,-0.0167 -0.0442,-0.0396 -0.0593,-0.05 -0.0724,-0.05 -0.008,0 -0.0138,-0.006 -0.0138,-0.0134 0,-0.008 -0.009,-0.0134 -0.0186,-0.0134 -0.0102,0 -0.022,-0.009 -0.0263,-0.02 -0.005,-0.011 -0.0154,-0.0201 -0.0248,-0.0202 -0.009,-1.1e-4 -0.0381,-0.0181 -0.0638,-0.0399 -0.0257,-0.0219 -0.0539,-0.0457 -0.0628,-0.0532 -0.009,-0.008 -0.0223,-0.0135 -0.03,-0.0135 -0.008,0 -0.0139,-0.005 -0.0139,-0.0119 0,-0.007 -0.0135,-0.0154 -0.03,-0.0197 -0.0165,-0.005 -0.0474,-0.0229 -0.0688,-0.0414 -0.0213,-0.0186 -0.0441,-0.0338 -0.0506,-0.0338 -0.007,0 -0.0258,-0.0151 -0.0428,-0.0334 -0.017,-0.0183 -0.0352,-0.0334 -0.0403,-0.0334 -0.005,0 -0.0178,-0.008 -0.028,-0.0167 -0.0453,-0.0406 -0.0595,-0.0501 -0.0757,-0.0503 -0.009,-9e-5 -0.0361,-0.0166 -0.0592,-0.0367 -0.0231,-0.02 -0.0554,-0.0455 -0.0717,-0.0565 -0.0163,-0.0111 -0.0375,-0.0276 -0.0471,-0.0367 -0.01,-0.009 -0.0239,-0.0167 -0.0318,-0.0167 -0.008,0 -0.0143,-0.012 -0.0143,-0.0267 0,-0.0147 0.007,-0.0267 0.0144,-0.0267 0.008,0 0.0318,-0.0165 0.0529,-0.0368 0.0596,-0.0567 0.0771,-0.0701 0.0922,-0.0701 0.008,0 0.014,-0.009 0.014,-0.02 0,-0.0111 0.009,-0.02 0.02,-0.02 0.0111,0 0.02,-0.006 0.02,-0.0141 0,-0.008 0.006,-0.0106 0.0125,-0.006 0.007,0.005 0.0187,-0.002 0.0263,-0.0158 0.008,-0.013 0.014,-0.0187 0.0141,-0.0127 2.1e-4,0.006 0.0206,-0.0105 0.0454,-0.0367 0.0247,-0.0262 0.0517,-0.0477 0.0601,-0.0477 0.009,0 0.0151,-0.009 0.0151,-0.02 0,-0.0111 0.005,-0.0185 0.0103,-0.0167 0.006,0.002 0.028,-0.0132 0.0499,-0.0334 0.0219,-0.0203 0.0467,-0.0367 0.0553,-0.0367 0.009,0 0.0177,-0.005 0.0203,-0.0101 0.002,-0.005 0.0314,-0.0306 0.0645,-0.0558 0.0331,-0.0251 0.0728,-0.0596 0.0883,-0.0766 0.0155,-0.017 0.0345,-0.0309 0.0423,-0.0309 0.008,0 0.016,-0.005 0.0184,-0.0105 0.002,-0.006 0.0308,-0.0313 0.0631,-0.0567 0.0323,-0.0254 0.0831,-0.0688 0.11283,-0.0962 0.0298,-0.0275 0.0598,-0.05 0.0666,-0.05 0.007,0 0.0263,-0.015 0.0433,-0.0334 0.017,-0.0183 0.0373,-0.0334 0.0448,-0.0334 0.008,0 0.014,-0.009 0.014,-0.0208 0,-0.0115 0.006,-0.017 0.0135,-0.0125 0.008,0.005 0.017,-7.6e-4 0.0214,-0.0125 0.005,-0.0114 0.0121,-0.0183 0.017,-0.0152 0.005,0.003 0.0477,-0.0299 0.0949,-0.0734 0.0473,-0.0435 0.0981,-0.0791 0.11302,-0.0793 0.0223,-1.6e-4 0.0236,-0.002 0.007,-0.0131 -0.0178,-0.0114 -0.0178,-0.013 0,-0.0134 0.0109,-2e-4 0.053,-0.0303 0.0934,-0.0669 0.0403,-0.0366 0.0839,-0.0699 0.0968,-0.0742 0.0128,-0.005 0.0234,-0.0133 0.0234,-0.0201 0,-0.007 0.006,-0.0125 0.0134,-0.0125 0.008,0 0.0243,-0.0105 0.0377,-0.0234 0.0413,-0.0396 0.0955,-0.0834 0.10309,-0.0834 0.005,0 0.0212,-0.015 0.0381,-0.0334 0.017,-0.0183 0.0377,-0.0334 0.0461,-0.0334 0.009,0 0.0151,-0.009 0.0151,-0.02 0,-0.011 0.009,-0.02 0.0206,-0.02 0.0114,0 0.0346,-0.015 0.0516,-0.0334 0.017,-0.0183 0.0345,-0.0334 0.039,-0.0334 0.005,0 0.0277,-0.0183 0.0518,-0.0405 0.0241,-0.0222 0.0599,-0.0553 0.0797,-0.0733 0.0197,-0.018 0.0392,-0.0329 0.0432,-0.0329 0.005,0 0.021,-0.0116 0.0375,-0.0259 0.0928,-0.0798 0.11101,-0.0942 0.11918,-0.0942 0.005,-1e-5 0.026,-0.0166 0.0467,-0.0369 0.0207,-0.0203 0.0647,-0.0578 0.0978,-0.0833 0.0331,-0.0255 0.0621,-0.051 0.0645,-0.0565 0.002,-0.005 0.0102,-0.0101 0.0173,-0.0101 0.007,0 0.0268,-0.0135 0.0439,-0.03 0.0434,-0.0419 0.0867,-0.0767 0.0956,-0.0767 0.005,0 0.0158,-0.008 0.0261,-0.0167 0.0465,-0.0417 0.0598,-0.05 0.0798,-0.05 0.0118,0 0.018,-0.005 0.0141,-0.0119 -0.005,-0.007 0.009,-0.0225 0.0283,-0.0353 0.0196,-0.0128 0.0587,-0.0461 0.0866,-0.0738 0.028,-0.0277 0.051,-0.0448 0.051,-0.0381 0,0.007 0.0115,0.0123 0.0257,0.0123 0.0141,0 0.0338,0.008 0.0436,0.0167 0.01,0.009 0.0418,0.0286 0.071,0.0432 0.0293,0.0147 0.0562,0.0297 0.0598,0.0336 0.0182,0.0193 0.0815,0.0532 0.0996,0.0532 0.0113,0 0.0205,0.005 0.0205,0.0119 0,0.007 0.015,0.0157 0.0334,0.0203 0.0183,0.005 0.0334,0.0143 0.0334,0.0215 0,0.007 0.01,0.0131 0.0216,0.0131 0.024,0 0.18258,0.0809 0.18962,0.0967 0.002,0.005 0.0159,0.01 0.03,0.01 0.014,0 0.0256,0.006 0.0256,0.0134 0,0.008 0.012,0.0134 0.0267,0.0134 0.0147,0 0.0267,0.007 0.0267,0.0156 0,0.009 0.003,0.0119 0.008,0.008 0.005,-0.005 0.021,0.005 0.0368,0.0188 0.0157,0.0147 0.0451,0.0301 0.0653,0.0342 0.0202,0.005 0.0368,0.0118 0.0368,0.0173 0,0.005 0.03,0.0241 0.0667,0.0415 0.0367,0.0174 0.0667,0.0363 0.0667,0.0419 0,0.006 0.0165,0.0104 0.0367,0.0106 l 0.0367,5.2e-4 -0.0367,0.0322 c -0.0202,0.0178 -0.0367,0.0386 -0.0367,0.0462 0,0.008 -0.006,0.014 -0.0138,0.014 -0.008,0 -0.0301,0.0166 -0.0501,0.0369 -0.0199,0.0203 -0.0603,0.0549 -0.0896,0.0767 -0.0709,0.0529 -0.0867,0.0685 -0.0867,0.0855 0,0.008 -0.007,0.0143 -0.0147,0.0143 -0.008,0 -0.0265,0.015 -0.041,0.0334 -0.0144,0.0183 -0.0348,0.0334 -0.0453,0.0334 -0.0105,0 -0.0191,0.007 -0.0191,0.0143 0,0.015 -0.0326,0.0524 -0.0456,0.0524 -0.008,0 -0.0614,0.0432 -0.10342,0.0834 -0.0134,0.0128 -0.0304,0.0234 -0.0377,0.0234 -0.008,0 -0.0134,0.009 -0.0134,0.02 0,0.011 -0.006,0.02 -0.0142,0.02 -0.008,0 -0.0333,0.0196 -0.0567,0.0435 -0.0234,0.024 -0.0634,0.0591 -0.0892,0.0783 -0.0257,0.019 -0.0715,0.0594 -0.10183,0.0898 -0.0303,0.0304 -0.0618,0.0552 -0.0701,0.0552 -0.009,0 -0.0149,0.009 -0.0149,0.02 0,0.0116 -0.0121,0.02 -0.029,0.02 -0.0159,0 -0.0254,0.003 -0.0212,0.008 0.0105,0.0104 -0.14918,0.16569 -0.17027,0.16569 -0.003,0 -0.0458,0.039 -0.0938,0.0867 -0.048,0.0477 -0.0902,0.0867 -0.094,0.0867 -0.003,0 -0.0208,0.0135 -0.0379,0.03 -0.0509,0.0491 -0.0873,0.0767 -0.1013,0.0767 -0.007,0 -0.0132,0.007 -0.0132,0.0143 0,0.0167 -0.0332,0.0523 -0.049,0.0527 -0.006,1.5e-4 -0.0455,0.0332 -0.0877,0.0734 -0.0422,0.0403 -0.0795,0.0731 -0.0828,0.0731 -0.003,0 -0.0264,0.021 -0.0513,0.0467 -0.0249,0.0257 -0.0523,0.0468 -0.0607,0.0468 -0.009,0 -0.0154,0.006 -0.0154,0.0128 0,0.014 -0.074,0.0939 -0.087,0.0939 -0.005,0 -0.027,0.0179 -0.0505,0.04 -0.0235,0.022 -0.0476,0.0399 -0.0536,0.04 -0.0178,1e-4 -0.0486,0.0361 -0.039,0.0458 0.005,0.005 -0.003,0.0121 -0.019,0.0161 -0.0154,0.005 -0.0355,0.0218 -0.045,0.0395 -0.009,0.0177 -0.0253,0.0322 -0.035,0.0322 -0.01,0 -0.0177,0.006 -0.0177,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.009 -0.02,0.019 0,0.0105 -0.005,0.0208 -0.0118,0.0234 -0.014,0.005 -0.11677,0.0878 -0.15108,0.12121 -0.0132,0.0128 -0.0271,0.0234 -0.0311,0.0234 -0.005,0 -0.0242,0.0165 -0.0452,0.0367 -0.0824,0.0796 -0.15021,0.13678 -0.1621,0.13678 -0.007,0 -0.0125,0.009 -0.0125,0.02 0,0.0109 -0.006,0.02 -0.0134,0.02 -0.008,0 -0.0489,0.0361 -0.0923,0.08 -0.0433,0.044 -0.0898,0.08 -0.10332,0.08 -0.0134,-1e-4 -0.0364,-0.0148 -0.0512,-0.0327 z m -9.30545,-1.00488 c -0.0234,-0.009 -0.0603,-0.0451 -0.0893,-0.0893 -0.0125,-0.0191 -0.0249,-0.0325 -0.0277,-0.0296 -0.007,0.007 -0.17819,-0.16457 -0.17819,-0.17825 0,-0.006 -0.0121,-0.0148 -0.0269,-0.0194 -0.0148,-0.005 -0.0235,-0.0141 -0.0192,-0.0209 0.005,-0.007 -0.002,-0.0124 -0.0124,-0.0124 -0.0111,0 -0.0306,-0.018 -0.0437,-0.04 -0.013,-0.022 -0.0324,-0.0401 -0.043,-0.0401 -0.0106,0 -0.016,-0.003 -0.012,-0.008 0.005,-0.005 -0.0301,-0.0459 -0.0761,-0.0929 -0.0459,-0.0471 -0.0808,-0.0882 -0.0776,-0.0915 0.003,-0.003 -0.007,-0.01 -0.0219,-0.0147 -0.026,-0.009 -0.0263,-0.0102 -0.005,-0.0312 0.0123,-0.0123 0.0267,-0.0225 0.0319,-0.0225 0.005,0 0.0347,-0.0165 0.0655,-0.0367 0.0308,-0.0203 0.0646,-0.0368 0.0748,-0.0368 0.0104,0 0.0189,-0.005 0.0189,-0.0121 0,-0.007 0.0331,-0.0257 0.0733,-0.0425 0.0403,-0.0167 0.0733,-0.0353 0.0733,-0.0413 0,-0.006 0.012,-0.0109 0.0267,-0.0109 0.0147,0 0.0267,-0.005 0.0268,-0.01 1.6e-4,-0.0154 0.0788,-0.0567 0.10774,-0.0567 0.0141,0 0.0256,-0.005 0.0256,-0.0112 0,-0.006 0.0331,-0.0251 0.0733,-0.0422 0.0403,-0.017 0.0733,-0.0361 0.0733,-0.0423 0,-0.006 0.012,-0.0112 0.0267,-0.0112 0.0147,0 0.0267,-0.005 0.0267,-0.0109 0,-0.006 0.0285,-0.0244 0.0633,-0.041 0.12095,-0.0574 0.19013,-0.0971 0.19013,-0.1094 0,-0.007 0.015,-0.0123 0.0334,-0.0123 0.0183,0 0.0334,-0.005 0.0334,-0.0118 0,-0.007 0.0105,-0.0154 0.0234,-0.0196 0.0264,-0.009 0.0733,-0.0374 0.0836,-0.051 0.003,-0.005 0.0233,-0.0131 0.0434,-0.0181 0.0201,-0.005 0.0366,-0.0145 0.0366,-0.0211 0,-0.007 0.009,-0.0119 0.0184,-0.0119 0.0101,0 0.0258,-0.009 0.035,-0.02 0.009,-0.0111 0.0271,-0.02 0.04,-0.02 0.0128,0 0.0309,-0.009 0.04,-0.02 0.009,-0.0109 0.0279,-0.02 0.0417,-0.02 0.0137,0 0.025,-0.006 0.025,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.006 0.02,-0.0125 0,-0.007 0.0135,-0.0164 0.03,-0.0211 0.0568,-0.0163 0.11675,-0.0478 0.11675,-0.0613 0,-0.008 0.005,-0.0101 0.0122,-0.006 0.007,0.005 0.0203,4e-5 0.03,-0.009 0.01,-0.009 0.0477,-0.0313 0.0845,-0.049 0.0368,-0.0177 0.0697,-0.036 0.0733,-0.0405 0.003,-0.005 0.0487,-0.0296 0.10008,-0.0556 0.15823,-0.0803 0.20666,-0.10734 0.21435,-0.11976 0.005,-0.007 0.0221,-0.012 0.04,-0.012 0.0179,0 0.0326,-0.006 0.0326,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.012,-0.0119 0.0267,-0.0119 0.0147,0 0.0267,-0.005 0.0267,-0.0109 0,-0.006 0.0296,-0.0237 0.0656,-0.0395 0.0361,-0.0157 0.0694,-0.0349 0.0741,-0.0426 0.005,-0.008 0.0205,-0.0138 0.0349,-0.0138 0.0144,0 0.0298,-0.009 0.034,-0.02 0.005,-0.0111 0.0155,-0.02 0.0251,-0.02 0.01,0 0.0196,-0.005 0.0219,-0.01 0.006,-0.0136 0.14712,-0.0839 0.1679,-0.0836 0.009,9e-5 0.0167,-0.006 0.0167,-0.0128 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0133 0.0334,-0.0193 0,-0.006 0.0133,-0.0152 0.0293,-0.0203 0.0162,-0.005 0.0379,-0.0179 0.0484,-0.0283 0.0105,-0.0105 0.0272,-0.0158 0.0374,-0.012 0.0104,0.005 0.0183,-0.002 0.0183,-0.0126 0,-0.012 0.0129,-0.0196 0.0334,-0.0196 0.0183,0 0.0334,-0.006 0.0334,-0.0134 0,-0.008 0.009,-0.0134 0.0191,-0.0134 0.0105,0 0.027,-0.008 0.0367,-0.0168 0.01,-0.009 0.0431,-0.0288 0.0743,-0.0434 0.0311,-0.0147 0.0566,-0.0311 0.0567,-0.0365 1e-4,-0.005 0.0119,-0.01 0.0262,-0.01 0.0143,0 0.0321,-0.0105 0.0396,-0.0234 0.008,-0.0128 0.0138,-0.0189 0.0141,-0.0135 5.2e-4,0.0149 0.1122,-0.032 0.1245,-0.0523 0.006,-0.01 0.0186,-0.0177 0.0283,-0.0177 0.01,0 0.0252,-0.009 0.0343,-0.02 0.009,-0.0111 0.0279,-0.02 0.0417,-0.02 0.0137,0 0.0251,-0.005 0.0251,-0.0119 0,-0.007 0.015,-0.0157 0.0334,-0.0203 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.009,-0.0131 0.02,-0.0131 0.0111,0 0.02,-0.006 0.02,-0.0128 0,-0.007 0.0211,-0.0167 0.0468,-0.0215 0.0257,-0.005 0.0502,-0.0141 0.0542,-0.0206 0.005,-0.007 0.0234,-0.0119 0.0432,-0.0121 0.027,-1.6e-4 0.0311,-0.003 0.0166,-0.0125 -0.0151,-0.01 -0.0115,-0.0141 0.0167,-0.0212 0.0198,-0.005 0.0361,-0.0144 0.0361,-0.021 0,-0.007 0.0112,-0.0119 0.025,-0.0119 0.0138,0 0.0326,-0.009 0.0417,-0.02 0.009,-0.0111 0.0251,-0.02 0.0354,-0.02 0.0104,0 0.0222,-0.009 0.0264,-0.02 0.005,-0.0111 0.0235,-0.0201 0.043,-0.0203 0.0276,-1.5e-4 0.031,-0.002 0.0152,-0.0131 -0.0163,-0.0105 -0.0145,-0.013 0.009,-0.0131 0.0161,-10e-5 0.0326,-0.006 0.0368,-0.0125 0.005,-0.007 0.0256,-0.0163 0.0475,-0.0211 0.0219,-0.005 0.0399,-0.0143 0.0399,-0.0211 0,-0.007 0.0114,-0.0122 0.0253,-0.0122 0.0139,0 0.0287,-0.009 0.033,-0.02 0.005,-0.0111 0.0199,-0.02 0.0348,-0.02 0.0149,0 0.0271,-0.005 0.0271,-0.0105 0,-0.006 0.0196,-0.0198 0.0434,-0.0311 0.0239,-0.0113 0.0614,-0.03 0.0834,-0.0417 0.022,-0.0116 0.0626,-0.032 0.0901,-0.0453 0.0276,-0.0134 0.05,-0.0289 0.05,-0.0345 0,-0.006 0.0112,-0.0103 0.025,-0.0103 0.0137,0 0.0325,-0.009 0.0417,-0.02 0.009,-0.0111 0.0249,-0.02 0.035,-0.02 0.0101,0 0.0184,-0.006 0.0184,-0.0134 0,-0.008 0.0152,-0.0134 0.0338,-0.0134 0.0186,0 0.0372,-0.009 0.0414,-0.02 0.005,-0.0111 0.019,-0.02 0.033,-0.02 0.0138,0 0.0253,-0.005 0.0253,-0.0101 0,-0.005 0.0298,-0.0237 0.0662,-0.0404 0.0364,-0.0167 0.0697,-0.0362 0.0741,-0.0433 0.005,-0.007 0.0196,-0.0129 0.0339,-0.0129 0.0143,0 0.0259,-0.005 0.0261,-0.01 9e-5,-0.005 0.0256,-0.0219 0.0567,-0.0364 0.0311,-0.0145 0.0596,-0.0302 0.0632,-0.0348 0.003,-0.005 0.0306,-0.0187 0.06,-0.0317 0.0925,-0.0406 0.14655,-0.0669 0.15345,-0.0749 0.003,-0.005 0.0157,-0.0118 0.0267,-0.0168 0.0111,-0.005 0.038,-0.0212 0.06,-0.0359 0.022,-0.0147 0.0505,-0.0303 0.0633,-0.0348 0.0128,-0.005 0.0234,-0.0134 0.0234,-0.0199 0,-0.007 0.015,-0.0118 0.0334,-0.0118 0.0183,0 0.0334,-0.006 0.0334,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0122 0.0335,-0.017 5e-5,-0.005 0.027,-0.0204 0.06,-0.0349 0.033,-0.0144 0.0599,-0.0306 0.0599,-0.0358 0,-0.005 0.0133,-0.0136 0.0293,-0.0189 0.0162,-0.005 0.0377,-0.0177 0.0477,-0.0277 0.0101,-0.0101 0.0232,-0.0154 0.0291,-0.0117 0.006,0.003 0.0182,-0.002 0.0272,-0.0132 0.009,-0.011 0.0277,-0.0199 0.0416,-0.0199 0.0138,0 0.0251,-0.006 0.0251,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.009,-0.0119 0.02,-0.0119 0.0111,0 0.02,-0.006 0.02,-0.0134 0,-0.008 0.008,-0.0134 0.0176,-0.0134 0.0277,0 0.12927,-0.0526 0.12927,-0.067 0,-0.007 0.0116,-0.013 0.026,-0.013 0.0142,0 0.0297,-0.006 0.0341,-0.0134 0.005,-0.008 0.0201,-0.0134 0.0346,-0.0134 0.0144,0 0.0298,-0.009 0.034,-0.02 0.005,-0.0109 0.019,-0.02 0.0329,-0.02 0.0139,0 0.0253,-0.006 0.0253,-0.0131 0,-0.007 0.0164,-0.0172 0.0366,-0.0222 0.0201,-0.005 0.0439,-0.0157 0.0529,-0.0236 0.047,-0.0416 0.059,-0.0477 0.0909,-0.0477 0.0191,0 0.0312,-0.006 0.027,-0.0126 -0.005,-0.007 0.0149,-0.0227 0.0426,-0.035 0.12252,-0.0547 0.14915,-0.0693 0.14115,-0.0773 -0.005,-0.005 0.008,-0.009 0.0275,-0.009 0.0198,0 0.0395,-0.009 0.0436,-0.02 0.005,-0.0111 0.0221,-0.02 0.0396,-0.02 0.0176,0 0.0319,-0.005 0.0319,-0.0123 0,-0.0138 0.0751,-0.0544 0.10071,-0.0544 0.009,0 0.0199,-0.009 0.0242,-0.02 0.005,-0.0111 0.0199,-0.02 0.0348,-0.02 0.0149,0 0.0271,-0.006 0.0271,-0.0134 0,-0.0225 0.0842,-0.013 0.12677,0.0141 0.022,0.0141 0.049,0.0293 0.0601,0.0339 0.0766,0.0315 0.10674,0.0483 0.10674,0.0594 0,0.007 0.015,0.0128 0.0334,0.0128 0.0183,0 0.0334,0.005 0.0334,0.0108 0,0.006 0.0329,0.0254 0.0733,0.0434 0.0403,0.0179 0.0733,0.0371 0.0734,0.0426 1e-4,0.005 0.009,0.01 0.0202,0.01 0.0111,0 0.02,0.007 0.02,0.0156 0,0.009 0.003,0.0118 0.009,0.008 0.006,-0.006 0.16717,0.0673 0.20405,0.0932 0.0102,0.007 -0.043,0.0574 -0.061,0.0574 -0.01,0 -0.018,0.005 -0.0181,0.01 -5e-5,0.005 -0.027,0.0219 -0.0601,0.0364 -0.033,0.0144 -0.06,0.031 -0.06,0.0367 0,0.006 -0.01,0.0104 -0.0214,0.0104 -0.0118,0 -0.0433,0.0167 -0.0701,0.037 -0.0267,0.0204 -0.0711,0.0474 -0.0986,0.0598 -0.0276,0.0125 -0.05,0.0289 -0.05,0.0363 0,0.008 -0.015,0.0136 -0.0334,0.0136 -0.0183,0 -0.0334,0.006 -0.0334,0.0134 0,0.008 -0.009,0.0134 -0.0184,0.0134 -0.0101,0 -0.0258,0.009 -0.035,0.02 -0.009,0.0111 -0.0281,0.02 -0.0421,0.02 -0.0141,0 -0.0289,0.009 -0.0332,0.0199 -0.005,0.0109 -0.0127,0.0169 -0.0187,0.0131 -0.006,-0.003 -0.0173,0.003 -0.0249,0.0168 -0.008,0.013 -0.014,0.0189 -0.0141,0.013 -2e-4,-0.006 -0.026,0.006 -0.0571,0.0267 -0.0312,0.0206 -0.0807,0.0493 -0.11007,0.0639 -0.0293,0.0147 -0.0613,0.0342 -0.071,0.0434 -0.01,0.009 -0.0262,0.0167 -0.0367,0.0167 -0.0105,0 -0.0191,0.005 -0.0191,0.0119 0,0.007 -0.015,0.0157 -0.0334,0.0203 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.012,0.0131 -0.0267,0.0131 -0.0147,0 -0.0267,0.005 -0.0267,0.0113 0,0.006 -0.0255,0.0225 -0.0567,0.0361 -0.0312,0.0137 -0.10867,0.0566 -0.17216,0.0954 -0.0635,0.0388 -0.12204,0.0705 -0.13011,0.0705 -0.008,0 -0.0147,0.005 -0.0147,0.0105 0,0.006 -0.039,0.0311 -0.0867,0.0562 -0.0477,0.0253 -0.0867,0.0506 -0.0867,0.0562 0,0.006 -0.009,0.0105 -0.0184,0.0105 -0.0101,0 -0.0258,0.009 -0.035,0.02 -0.009,0.011 -0.0279,0.02 -0.0417,0.02 -0.0138,0 -0.0251,0.006 -0.0251,0.0134 0,0.008 -0.009,0.0134 -0.0184,0.0134 -0.0101,0 -0.0258,0.009 -0.035,0.02 -0.009,0.0111 -0.0279,0.02 -0.0417,0.02 -0.0138,0 -0.025,0.005 -0.025,0.0119 0,0.007 -0.015,0.0157 -0.0334,0.0203 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.009,0.0131 -0.02,0.0131 -0.0111,0 -0.02,0.006 -0.02,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.0122,0.0119 -0.0271,0.0119 -0.0149,0 -0.0306,0.009 -0.0348,0.02 -0.005,0.0111 -0.0221,0.02 -0.0396,0.02 -0.0176,0 -0.0319,0.005 -0.0319,0.0118 0,0.007 -0.0105,0.0154 -0.0234,0.0196 -0.0254,0.009 -0.0727,0.037 -0.0834,0.0502 -0.003,0.005 -0.0202,0.0124 -0.0367,0.0176 -0.0165,0.005 -0.03,0.015 -0.03,0.0219 0,0.007 -0.006,0.0125 -0.0131,0.0125 -0.007,0 -0.0523,0.0241 -0.10031,0.0533 -0.0479,0.0293 -0.0991,0.0533 -0.11365,0.0533 -0.0145,0 -0.0264,0.006 -0.0264,0.0125 0,0.007 -0.0133,0.0166 -0.0293,0.0218 -0.0162,0.005 -0.0376,0.0176 -0.0477,0.0276 -0.01,0.01 -0.0268,0.0183 -0.0374,0.0183 -0.0105,0 -0.019,0.006 -0.019,0.0134 0,0.008 -0.009,0.0134 -0.0186,0.0134 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.0111 -0.0199,0.02 -0.0348,0.02 -0.0149,0 -0.0271,0.006 -0.0271,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.009,0.0119 -0.02,0.0119 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.0121,0.0134 -0.0271,0.0134 -0.0149,0 -0.0306,0.009 -0.0348,0.02 -0.005,0.0111 -0.0187,0.02 -0.0322,0.02 -0.0135,0 -0.0298,0.009 -0.0361,0.0206 -0.006,0.0114 -0.0247,0.0216 -0.0406,0.0229 -0.016,0.002 -0.0291,0.007 -0.0291,0.0127 0,0.006 -0.009,0.0105 -0.0186,0.0105 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.011 -0.0199,0.02 -0.0348,0.02 -0.0149,0 -0.0271,0.005 -0.0271,0.0119 0,0.007 -0.015,0.0157 -0.0334,0.0203 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.012,0.0131 -0.0267,0.0131 -0.0147,0 -0.0267,0.006 -0.0267,0.013 0,0.007 -0.0255,0.0254 -0.0567,0.0406 -0.10769,0.0524 -0.23019,0.12272 -0.23463,0.13459 -0.002,0.007 -0.0125,0.0119 -0.0225,0.0119 -0.01,0 -0.0259,0.008 -0.0358,0.0167 -0.01,0.009 -0.0418,0.0286 -0.071,0.0432 -0.0293,0.0147 -0.0562,0.0299 -0.0598,0.0341 -0.0157,0.0177 -0.16149,0.0928 -0.17994,0.0928 -0.0111,0 -0.0202,0.005 -0.0202,0.0118 0,0.007 -0.0105,0.0154 -0.0234,0.0196 -0.0267,0.009 -0.0672,0.0343 -0.0938,0.0587 -0.01,0.009 -0.0268,0.0167 -0.0373,0.0167 -0.0105,0 -0.0191,0.006 -0.0191,0.0134 0,0.008 -0.009,0.0134 -0.0206,0.0134 -0.0113,0 -0.0368,0.0111 -0.0567,0.0246 -0.0199,0.0135 -0.0632,0.042 -0.0962,0.0633 -0.0331,0.0213 -0.063,0.0419 -0.0667,0.0459 -0.003,0.005 -0.0534,0.0306 -0.1105,0.0593 -0.0572,0.0286 -0.11039,0.06 -0.11839,0.0697 -0.008,0.01 -0.0262,0.0176 -0.0404,0.0176 -0.0142,0 -0.0225,0.005 -0.0185,0.0119 0.005,0.007 -0.009,0.0158 -0.0275,0.0206 -0.0192,0.005 -0.0437,0.0176 -0.0544,0.0283 -0.0107,0.0107 -0.025,0.0161 -0.0318,0.0119 -0.007,-0.005 -0.0122,0.002 -0.0122,0.0133 0,0.0115 -0.0105,0.0212 -0.0234,0.0218 -0.0128,5.1e-4 -0.0413,0.0122 -0.0633,0.026 -0.022,0.0138 -0.067,0.0388 -0.10008,0.0558 -0.0331,0.0169 -0.063,0.0345 -0.0667,0.039 -0.003,0.005 -0.0202,0.0124 -0.0367,0.0177 -0.0165,0.005 -0.03,0.015 -0.03,0.0219 0,0.007 -0.009,0.0125 -0.02,0.0125 -0.0111,0 -0.02,0.005 -0.02,0.0113 0,0.006 -0.027,0.0225 -0.0601,0.0361 -0.0331,0.0136 -0.06,0.0293 -0.06,0.0348 0,0.005 -0.0225,0.0198 -0.05,0.0318 -0.0276,0.012 -0.0591,0.0273 -0.0701,0.0341 -0.0111,0.007 -0.029,0.0163 -0.0401,0.0213 -0.011,0.005 -0.023,0.0124 -0.0267,0.0166 -0.003,0.005 -0.0338,0.0209 -0.0668,0.037 -0.0331,0.0161 -0.0734,0.0416 -0.0895,0.0567 -0.0162,0.0151 -0.0383,0.0274 -0.0491,0.0274 -0.0109,0 -0.0237,0.006 -0.0285,0.0141 -0.005,0.008 -0.0217,0.0198 -0.0375,0.0267 -0.0158,0.007 -0.0405,0.02 -0.0549,0.0292 -0.0809,0.0516 -0.12902,0.0768 -0.14702,0.0768 -0.0111,0 -0.0203,0.005 -0.0203,0.0103 0,0.006 -0.0225,0.0222 -0.05,0.0367 -0.0275,0.0145 -0.058,0.0339 -0.0676,0.0431 -0.01,0.009 -0.0262,0.0166 -0.0367,0.0166 -0.0105,0 -0.019,0.005 -0.019,0.0102 0,0.0102 -0.0396,0.0343 -0.0834,0.0509 -0.0128,0.005 -0.0234,0.0141 -0.0234,0.0206 0,0.007 -0.0144,0.0118 -0.0319,0.0118 -0.0176,0 -0.0354,0.009 -0.0396,0.02 -0.005,0.011 -0.0163,0.02 -0.027,0.02 -0.0106,0 -0.0213,0.005 -0.0238,0.01 -0.002,0.005 -0.0328,0.0239 -0.0675,0.0409 -0.0347,0.017 -0.0665,0.0364 -0.0708,0.0434 -0.005,0.007 -0.0194,0.0126 -0.0336,0.0126 -0.0142,0 -0.026,0.006 -0.026,0.0127 0,0.007 -0.0225,0.0233 -0.05,0.0362 -0.0275,0.0129 -0.058,0.0312 -0.0676,0.0406 -0.01,0.009 -0.0265,0.0172 -0.0375,0.0172 -0.0109,0 -0.0162,0.006 -0.0115,0.0134 0.005,0.008 -0.003,0.0134 -0.0177,0.0134 -0.0142,0 -0.0333,0.009 -0.0425,0.02 -0.009,0.0111 -0.0309,0.02 -0.0483,0.02 -0.0175,0 -0.0318,0.005 -0.0318,0.0103 0,0.006 -0.0225,0.0222 -0.05,0.0367 -0.0276,0.0144 -0.058,0.0339 -0.0676,0.0431 -0.01,0.009 -0.0262,0.0167 -0.0368,0.0167 -0.0105,0 -0.0191,0.006 -0.0191,0.0134 0,0.008 -0.0118,0.0134 -0.026,0.0134 -0.0143,0 -0.0308,0.008 -0.0367,0.0177 -0.0134,0.0221 -0.0449,0.0338 -0.069,0.0254 z m 5.35576,-1.75103 c -0.008,-0.007 -0.0269,-0.0243 -0.0433,-0.0394 -0.0165,-0.0151 -0.0361,-0.0274 -0.0434,-0.0274 -0.008,0 -0.0134,-0.005 -0.0134,-0.0119 0,-0.007 -0.015,-0.0157 -0.0334,-0.0203 -0.0183,-0.005 -0.0334,-0.0143 -0.0334,-0.0215 0,-0.007 -0.009,-0.0131 -0.02,-0.0131 -0.0111,0 -0.02,-0.005 -0.02,-0.0119 0,-0.007 -0.015,-0.0157 -0.0334,-0.0203 -0.0183,-0.005 -0.0334,-0.0143 -0.0334,-0.0215 0,-0.007 -0.006,-0.0131 -0.014,-0.0131 -0.0144,0 -0.029,-0.0108 -0.0901,-0.0667 -0.02,-0.0183 -0.0589,-0.0448 -0.0863,-0.0588 -0.0274,-0.014 -0.0499,-0.0298 -0.0499,-0.0351 0,-0.005 -0.0105,-0.0132 -0.0234,-0.0176 -0.0335,-0.0113 -0.0721,-0.0374 -0.10601,-0.072 -0.0163,-0.0165 -0.0367,-0.03 -0.0454,-0.03 -0.016,0 -0.051,-0.0383 -0.0517,-0.0567 -2.4e-4,-0.005 0.0115,-0.01 0.0263,-0.01 0.0147,0 0.0267,-0.005 0.0267,-0.0119 0,-0.007 0.015,-0.0157 0.0334,-0.0203 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.012,-0.0131 0.0267,-0.0131 0.0147,0 0.0267,-0.006 0.0267,-0.013 0,-0.007 0.0267,-0.0251 0.0592,-0.04 0.0326,-0.0148 0.063,-0.0329 0.0675,-0.0403 0.005,-0.008 0.0199,-0.0134 0.0341,-0.0134 0.0142,0 0.026,-0.006 0.026,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0109,0 0.02,-0.006 0.02,-0.0124 0,-0.007 0.0133,-0.0166 0.0293,-0.0218 0.0162,-0.005 0.0376,-0.0176 0.0477,-0.0276 0.01,-0.01 0.0268,-0.0183 0.0374,-0.0183 0.0105,0 0.019,-0.005 0.019,-0.0118 0,-0.007 0.0105,-0.0154 0.0234,-0.0196 0.0227,-0.008 0.07,-0.0352 0.0834,-0.0486 0.003,-0.003 0.0352,-0.0201 0.0701,-0.0366 0.0348,-0.0164 0.0633,-0.036 0.0633,-0.0434 0,-0.008 0.015,-0.0135 0.0334,-0.0135 0.0183,0 0.0334,-0.006 0.0334,-0.0134 0,-0.008 0.009,-0.0134 0.0205,-0.0134 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0111 0.0184,-0.02 0.0315,-0.02 0.0131,0 0.0269,-0.008 0.0306,-0.0178 0.003,-0.01 0.0419,-0.0348 0.0849,-0.0556 0.0428,-0.0208 0.081,-0.0413 0.0847,-0.0455 0.0113,-0.0132 0.0588,-0.0414 0.0834,-0.0497 0.0128,-0.005 0.0234,-0.0127 0.0234,-0.0186 0,-0.006 0.0185,-0.0148 0.041,-0.0197 0.0225,-0.005 0.0376,-0.0125 0.0335,-0.0165 -0.009,-0.009 0.0239,-0.0284 0.11572,-0.0707 0.0348,-0.0161 0.0633,-0.0345 0.0633,-0.0409 0,-0.007 0.0105,-0.0118 0.0234,-0.0118 0.0129,0 0.0397,-0.015 0.0595,-0.0334 0.0198,-0.0183 0.0445,-0.0334 0.055,-0.0334 0.0105,0 0.0264,-0.009 0.0356,-0.02 0.009,-0.011 0.0279,-0.02 0.0417,-0.02 0.0137,0 0.0251,-0.006 0.0251,-0.0134 0,-0.008 0.009,-0.0134 0.0186,-0.0134 0.0102,0 0.022,-0.009 0.0263,-0.02 0.005,-0.0109 0.0209,-0.02 0.037,-0.02 0.0161,0 0.0255,-0.003 0.0208,-0.009 -0.005,-0.005 0.0169,-0.021 0.0479,-0.0361 0.031,-0.0151 0.0643,-0.0354 0.0739,-0.0448 0.01,-0.009 0.0262,-0.0172 0.0368,-0.0172 0.0105,0 0.0191,-0.006 0.0191,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.015,-0.0119 0.0334,-0.0119 0.0183,0 0.0334,-0.006 0.0334,-0.0134 0,-0.008 0.0241,-0.0238 0.0533,-0.0364 0.0293,-0.0128 0.0533,-0.0307 0.0533,-0.04 0,-0.009 0.015,-0.0169 0.0334,-0.0169 0.0183,0 0.0334,-0.006 0.0334,-0.0126 0,-0.0122 0.0222,-0.0264 0.12009,-0.0768 0.0257,-0.0132 0.0497,-0.027 0.0533,-0.0306 0.01,-0.01 0.0567,-0.0387 0.08,-0.0494 0.0111,-0.005 0.0279,-0.017 0.0377,-0.0267 0.01,-0.01 0.0262,-0.0175 0.0367,-0.0175 0.0105,0 0.0191,-0.005 0.0191,-0.0119 0,-0.007 0.015,-0.0157 0.0334,-0.0203 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.012,-0.0131 0.0267,-0.0131 0.0147,0 0.0267,-0.005 0.0267,-0.0118 0,-0.007 0.0106,-0.0154 0.0234,-0.0199 0.0128,-0.005 0.0413,-0.0202 0.0633,-0.0351 0.022,-0.0148 0.0505,-0.0306 0.0633,-0.0351 0.0128,-0.005 0.0234,-0.0128 0.0234,-0.0186 0,-0.0167 0.0956,0.0171 0.10295,0.0364 0.003,0.009 0.0151,0.0173 0.0255,0.0173 0.0167,0 0.059,0.0222 0.14558,0.0765 0.0144,0.009 0.0547,0.0293 0.0896,0.045 0.0348,0.0157 0.0633,0.0339 0.0633,0.0403 0,0.007 0.012,0.0118 0.0267,0.0118 0.0147,0 0.0267,0.006 0.0267,0.0131 0,0.007 0.015,0.0169 0.0334,0.0215 0.0183,0.005 0.0334,0.0137 0.0334,0.0203 0,0.007 0.0122,0.0119 0.0271,0.0119 0.0149,0 0.0306,0.009 0.0348,0.02 0.005,0.0111 0.0221,0.02 0.0397,0.02 0.0176,0 0.0319,0.005 0.0319,0.0119 0,0.007 0.0105,0.0156 0.0234,0.0202 0.0313,0.0114 0.0845,0.0429 0.0876,0.052 0.003,0.0101 -0.0842,0.0685 -0.14652,0.0978 -0.0282,0.0132 -0.0584,0.0303 -0.0674,0.0378 -0.0345,0.0295 -0.0523,0.0406 -0.0711,0.0449 -0.0107,0.002 -0.0243,0.0129 -0.0302,0.0234 -0.006,0.0105 -0.0168,0.019 -0.0243,0.019 -0.008,0 -0.022,0.008 -0.0322,0.0167 -0.0335,0.0301 -0.053,0.0431 -0.10329,0.0688 -0.0273,0.014 -0.0497,0.0298 -0.0497,0.0352 0,0.005 -0.0105,0.0131 -0.0234,0.0176 -0.0267,0.009 -0.0672,0.0343 -0.0938,0.0587 -0.01,0.009 -0.0268,0.0167 -0.0373,0.0167 -0.0105,0 -0.019,0.006 -0.019,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.006 -0.02,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.013 -0.0334,0.0187 0,0.006 -0.0105,0.0139 -0.0234,0.0182 -0.0267,0.009 -0.0672,0.0343 -0.0938,0.0587 -0.01,0.009 -0.0268,0.0167 -0.0372,0.0167 -0.0105,0 -0.0191,0.006 -0.0191,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.009 -0.02,0.02 0,0.0109 -0.009,0.02 -0.0203,0.02 -0.0111,0 -0.0441,0.015 -0.0731,0.0334 -0.0291,0.0183 -0.0584,0.0334 -0.0653,0.0334 -0.007,0 -0.0144,0.005 -0.017,0.01 -0.008,0.0179 -0.13146,0.0967 -0.15162,0.0967 -0.0108,0 -0.0196,0.007 -0.0196,0.0152 0,0.0207 -0.0413,0.0506 -0.0706,0.0511 -0.0132,2.6e-4 -0.0565,0.0244 -0.0962,0.0538 -0.0397,0.0293 -0.0815,0.0533 -0.0928,0.0533 -0.0113,0 -0.0206,0.009 -0.0206,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.0111,0 -0.02,0.006 -0.02,0.0141 0,0.008 -0.006,0.0106 -0.0128,0.006 -0.007,-0.005 -0.0246,0.003 -0.039,0.0182 -0.0143,0.0143 -0.0284,0.0237 -0.0312,0.0208 -0.002,-0.002 -0.0248,0.0127 -0.0487,0.0345 -0.0239,0.0219 -0.0513,0.0397 -0.061,0.0397 -0.01,0 -0.025,0.009 -0.0342,0.02 -0.009,0.0111 -0.0249,0.02 -0.035,0.02 -0.0101,0 -0.0184,0.006 -0.0184,0.0134 0,0.008 -0.009,0.0134 -0.0205,0.0134 -0.0112,0 -0.0239,0.009 -0.0281,0.02 -0.005,0.0111 -0.019,0.02 -0.033,0.02 -0.0138,0 -0.0253,0.006 -0.0253,0.0134 0,0.008 -0.0114,0.0134 -0.0253,0.0134 -0.0139,0 -0.0286,0.009 -0.0329,0.02 -0.005,0.0111 -0.0199,0.02 -0.0348,0.02 -0.0153,0 -0.0271,0.009 -0.0271,0.02 0,0.011 -0.009,0.02 -0.02,0.02 -0.011,0 -0.02,0.005 -0.02,0.0102 0,0.0102 -0.0396,0.0343 -0.0834,0.0509 -0.0128,0.005 -0.0234,0.0141 -0.0234,0.0206 0,0.007 -0.009,0.0118 -0.0191,0.0118 -0.0105,0 -0.0272,0.008 -0.0373,0.0167 -0.0265,0.0243 -0.067,0.0497 -0.0938,0.0587 -0.0128,0.005 -0.0234,0.0124 -0.0234,0.018 0,0.006 -0.0105,0.0138 -0.0234,0.018 -0.0267,0.009 -0.0672,0.0343 -0.0938,0.0587 -0.01,0.009 -0.0268,0.0167 -0.0373,0.0167 -0.0105,0 -0.0191,0.006 -0.0191,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.005 -0.02,0.0119 0,0.007 -0.0155,0.0157 -0.0345,0.0206 -0.0325,0.009 -0.0463,0.0169 -0.0918,0.0576 -0.0102,0.009 -0.0243,0.0167 -0.0312,0.0167 -0.007,0 -0.0201,0.009 -0.0293,0.02 -0.0183,0.0219 -0.0657,0.0256 -0.0867,0.007 z m 2.92224,-0.36528 c -0.0147,-0.009 -0.0297,-0.0181 -0.0334,-0.0217 -0.0201,-0.0201 -0.0943,-0.0667 -0.10621,-0.0667 -0.008,0 -0.0138,-0.006 -0.0138,-0.0134 0,-0.008 -0.0114,-0.0134 -0.0253,-0.0134 -0.0139,0 -0.0286,-0.009 -0.0329,-0.02 -0.005,-0.0111 -0.0199,-0.02 -0.0348,-0.02 -0.0149,0 -0.0271,-0.005 -0.0271,-0.0118 0,-0.007 -0.0105,-0.0154 -0.0234,-0.0196 -0.0254,-0.009 -0.0727,-0.037 -0.0834,-0.0502 -0.003,-0.005 -0.0203,-0.0124 -0.0367,-0.0176 -0.0165,-0.005 -0.03,-0.015 -0.03,-0.0219 0,-0.007 -0.009,-0.0124 -0.02,-0.0124 -0.0111,0 -0.02,-0.006 -0.02,-0.0125 0,-0.007 -0.0135,-0.0167 -0.03,-0.0219 -0.0165,-0.005 -0.0331,-0.013 -0.0367,-0.0176 -0.0107,-0.0132 -0.0581,-0.0417 -0.0834,-0.0502 -0.0128,-0.005 -0.0234,-0.0131 -0.0234,-0.0196 0,-0.007 -0.009,-0.0118 -0.019,-0.0118 -0.0105,0 -0.0272,-0.008 -0.0372,-0.0167 -0.0265,-0.0243 -0.0671,-0.0497 -0.0938,-0.0587 -0.0128,-0.005 -0.0234,-0.0107 -0.0234,-0.0141 0,-0.0144 0.0617,-0.0564 0.0834,-0.0568 0.0128,-2.6e-4 0.0234,-0.007 0.0234,-0.0138 0,-0.008 0.009,-0.0134 0.019,-0.0134 0.0105,0 0.0208,-0.005 0.0234,-0.0106 0.002,-0.006 0.027,-0.0243 0.0545,-0.0411 0.0275,-0.0168 0.05,-0.0361 0.05,-0.0428 0,-0.007 0.0128,-0.0122 0.0285,-0.0122 0.0157,0 0.0413,-0.0139 0.0571,-0.0309 0.0157,-0.017 0.0494,-0.0425 0.075,-0.0567 0.0255,-0.0142 0.0493,-0.0293 0.053,-0.0335 0.003,-0.005 0.0157,-0.0119 0.0267,-0.0172 0.0521,-0.0249 0.0791,-0.045 0.071,-0.0531 -0.005,-0.005 7.6e-4,-0.009 0.0125,-0.009 0.0118,0 0.0294,-0.008 0.0395,-0.0167 0.0265,-0.0243 0.067,-0.0497 0.0938,-0.0587 0.0128,-0.005 0.0234,-0.0125 0.0234,-0.0182 0,-0.006 0.015,-0.0141 0.0334,-0.0187 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.009,-0.0131 0.02,-0.0131 0.0109,0 0.02,-0.005 0.02,-0.0103 0,-0.006 0.0225,-0.0222 0.05,-0.0366 0.0276,-0.0144 0.0549,-0.0338 0.0607,-0.0431 0.006,-0.009 0.0193,-0.0168 0.03,-0.0168 0.0106,0 0.0193,-0.006 0.0193,-0.0134 0,-0.008 0.009,-0.0134 0.0204,-0.0134 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0111 0.0221,-0.02 0.0396,-0.02 0.0176,0 0.0319,-0.005 0.0319,-0.0105 0,-0.0128 0.0828,-0.0636 0.0967,-0.0594 0.005,0.002 0.01,-0.002 0.01,-0.009 0,-0.007 0.018,-0.005 0.04,0.002 0.022,0.009 0.0401,0.0193 0.0401,0.0244 0,0.005 0.018,0.0134 0.04,0.0182 0.022,0.005 0.04,0.0143 0.04,0.0211 0,0.007 0.009,0.0122 0.0184,0.0122 0.0101,0 0.0258,0.009 0.035,0.02 0.009,0.0109 0.0279,0.02 0.0417,0.02 0.0137,0 0.025,0.006 0.025,0.0134 0,0.008 0.0152,0.0134 0.0339,0.0134 0.0186,0 0.0373,0.009 0.0414,0.02 0.005,0.0111 0.019,0.02 0.033,0.02 0.0139,0 0.0253,0.005 0.0253,0.0118 0,0.007 0.0105,0.0156 0.0234,0.0202 0.0316,0.0114 0.0823,0.0416 0.10054,0.0598 0.009,0.009 0.0257,0.0149 0.039,0.0149 0.0132,0 0.0241,0.006 0.0241,0.0134 0,0.008 0.0136,0.0134 0.0301,0.0134 0.0166,0 0.0463,0.015 0.0661,0.0334 0.0198,0.0183 0.0484,0.0334 0.0637,0.0334 0.0152,0 0.0312,0.009 0.0354,0.02 0.005,0.0111 0.019,0.02 0.0329,0.02 0.0485,0 0.0281,0.0473 -0.0338,0.0782 -0.0326,0.0162 -0.073,0.0442 -0.0901,0.0622 -0.017,0.018 -0.0371,0.0328 -0.0445,0.0328 -0.008,1.6e-4 -0.0296,0.0153 -0.0495,0.0335 -0.0198,0.0183 -0.0422,0.0334 -0.0499,0.0334 -0.008,0 -0.014,0.005 -0.014,0.0102 0,0.006 -0.0225,0.0222 -0.05,0.0367 -0.0275,0.0144 -0.058,0.0339 -0.0676,0.0431 -0.01,0.009 -0.0257,0.0167 -0.0357,0.0167 -0.01,0 -0.029,0.0138 -0.0424,0.0307 -0.0134,0.0169 -0.0333,0.0352 -0.0444,0.0406 -0.0484,0.0237 -0.0856,0.0484 -0.0733,0.0487 0.008,9e-5 -0.0121,0.0128 -0.0434,0.0283 -0.0312,0.0154 -0.0567,0.0335 -0.0567,0.04 0,0.007 -0.009,0.012 -0.02,0.012 -0.0111,0 -0.02,0.009 -0.02,0.02 0,0.0112 -0.0119,0.02 -0.0271,0.02 -0.0149,0 -0.0306,0.009 -0.0348,0.02 -0.005,0.0111 -0.016,0.02 -0.0263,0.02 -0.0102,0 -0.0186,0.005 -0.0186,0.0112 0,0.006 -0.0211,0.0225 -0.0468,0.0364 -0.0257,0.0137 -0.0468,0.0298 -0.0468,0.0354 0,0.006 -0.009,0.0103 -0.0186,0.0103 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.0111 -0.0192,0.02 -0.0334,0.02 -0.0141,0 -0.0293,0.009 -0.0336,0.0209 -0.005,0.0115 -0.0141,0.0171 -0.0214,0.0126 -0.008,-0.005 -0.0134,5.2e-4 -0.0134,0.0111 0,0.0106 -0.015,0.0232 -0.0334,0.0277 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.009,0.0131 -0.0189,0.0131 -0.0105,0 -0.0209,0.005 -0.0234,0.0118 -0.002,0.007 -0.0164,0.005 -0.0312,-0.003 z"
+ id="path56252-8"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.4313232;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -35.94889,35.9093 h -5.30885 v -5.25781 z"
+ id="rect55701-5-4"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.9705863px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.13810469"
+ x="-59.061882"
+ y="42.855503"
+ id="text55709-6-5"><tspan
+ sodipodi:role="line"
+ id="tspan55707-0-0"
+ x="-59.061882"
+ y="42.855503"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.13810469">PARQUET</tspan></text>
+ <path
+ style="fill:#6995f4;fill-opacity:1;stroke:none;stroke-width:0.31363189;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -60.81183,30.65149 h 19.55409 l -0.003,2.44581 h -19.55143 z"
+ id="rect55679-1-5-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+ </g>
+ <g
+ id="g13072-6"
+ transform="translate(0,-0.47244895)"
+ style="stroke-width:1.11137545">
+ <g
+ transform="matrix(0.7639736,0,0,0.7639736,141.24395,-103.38038)"
+ id="g5002-1"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -296.22335,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ id="rect55679-4-0-7-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -263.44559,144.95855 h -6.949 v -6.88219 z"
+ id="rect55701-3-7-7-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ x="-292.76242"
+ y="155.93517"
+ id="text55709-5-8-1-3"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-21-2"
+ x="-292.76242"
+ y="155.93517"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141">HTML</tspan></text>
+ <path
+ style="fill:#d45500;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -295.98983,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ id="rect55679-1-7-9-0-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <text
+ id="text55879-4-6"
+ y="171.957"
+ x="-291.82764"
+ style="font-style:normal;font-weight:normal;font-size:14.25364685px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#d45500;fill-opacity:1;stroke:none;stroke-width:0.39602885"
+ xml:space="preserve"><tspan
+ style="fill:#d45500;fill-opacity:1;stroke-width:0.39602885"
+ y="171.957"
+ x="-291.82764"
+ id="tspan55877-8-1"
+ sodipodi:role="line"><></tspan></text>
+ </g>
+ <g
+ transform="matrix(0.7639736,0,0,0.7639736,132.71412,-103.38038)"
+ id="g4993-5"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -247.76738,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ id="rect55679-4-0-7-6-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -214.98962,144.95855 h -6.949 v -6.88219 z"
+ id="rect55701-3-7-7-7-4"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ x="-244.30646"
+ y="155.93517"
+ id="text55709-5-8-1-5-7"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-21-3-6"
+ x="-244.30646"
+ y="155.93517"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141">HDF5</tspan></text>
+ <path
+ style="fill:#2cab28;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -247.53386,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ id="rect55679-1-7-9-0-5-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#2cab28;fill-opacity:1;stroke-width:0.01142396"
+ d="m -228.2809,172.80263 c -0.202,-0.0438 -0.37838,-0.14187 -0.50896,-0.28291 -0.0769,-0.083 -0.11316,-0.13774 -0.16538,-0.24931 -0.0851,-0.18181 -0.0809,-0.13496 -0.0871,-0.97682 l -0.006,-0.74885 -0.0888,0.10126 c -0.12247,0.13959 -0.41022,0.41948 -0.55874,0.54347 -0.84282,0.70368 -1.86652,1.17525 -3.06769,1.41315 -0.52549,0.10407 -1.00462,0.15148 -1.63022,0.16129 -0.53258,0.008 -0.64972,-0.005 -0.84254,-0.098 -0.26642,-0.12809 -0.46447,-0.38731 -0.51956,-0.68003 -0.0177,-0.094 -0.0151,-0.2674 0.005,-0.36491 0.076,-0.36089 0.3608,-0.6475 0.72486,-0.72956 0.065,-0.0147 0.1512,-0.0179 0.54992,-0.0205 0.47948,-0.004 0.60576,-0.009 0.95596,-0.0474 1.30447,-0.14149 2.34564,-0.6184 2.99398,-1.37141 0.39145,-0.45465 0.62298,-0.97115 0.70781,-1.579 0.0247,-0.17684 0.0247,-0.57128 -10e-5,-0.74923 -0.0492,-0.3547 -0.13728,-0.63945 -0.29551,-0.95596 -0.48894,-0.97817 -1.47794,-1.6518 -2.8511,-1.94196 -0.23021,-0.0487 -0.4358,-0.0806 -0.76323,-0.11859 l -0.0539,-0.006 v 2.13841 2.13841 h -2.71369 -2.71369 l -8e-5,1.75516 c -5e-5,1.16801 -0.004,1.77751 -0.0108,1.82197 -0.0153,0.0952 -0.0615,0.22303 -0.11373,0.31501 -0.0524,0.0922 -0.18048,0.23228 -0.27212,0.29768 -0.18509,0.13208 -0.43523,0.19653 -0.65358,0.1684 -0.27855,-0.0359 -0.52289,-0.18249 -0.67666,-0.40601 -0.0501,-0.0728 -0.11087,-0.20816 -0.13607,-0.30313 l -0.0231,-0.0874 v -4.48683 -4.48684 l 0.0237,-0.0867 c 0.0906,-0.33162 0.32687,-0.5747 0.65683,-0.67579 0.0816,-0.025 0.10651,-0.0278 0.25488,-0.0283 0.19819,-4.8e-4 0.25702,0.0121 0.42144,0.0916 0.27365,0.13243 0.46516,0.38659 0.51858,0.68819 0.007,0.041 0.0108,0.6273 0.0108,1.79114 v 1.73014 h 1.76777 1.76779 l 0.003,-1.76544 0.003,-1.76544 0.0236,-0.0822 c 0.0312,-0.10896 0.10123,-0.2515 0.16408,-0.33431 0.17162,-0.22611 0.44991,-0.37003 0.71444,-0.36946 0.0465,1e-4 2.81826,0.004 6.15949,0.008 l 6.07496,0.007 0.0722,0.0225 c 0.18274,0.057 0.31346,0.13732 0.43953,0.27005 0.14446,0.15211 0.23163,0.34134 0.25287,0.54896 0.0476,0.46593 -0.24024,0.88175 -0.70295,1.01524 l -0.0822,0.0237 -2.29996,0.003 -2.29995,0.003 v 1.2331 1.23311 l 1.66778,0.003 1.66779,0.003 0.0925,0.0288 c 0.17469,0.0546 0.32388,0.148 0.44081,0.27613 0.1602,0.17551 0.24276,0.39165 0.24276,0.63553 0,0.24752 -0.0819,0.46012 -0.24645,0.63968 -0.11647,0.12711 -0.26043,0.21641 -0.43936,0.27253 l -0.0903,0.0283 -1.66756,0.003 -1.66757,0.003 -0.003,1.80634 -0.003,1.80635 -0.0288,0.0925 c -0.11257,0.36055 -0.37513,0.60464 -0.72877,0.67751 -0.0965,0.0199 -0.27614,0.0201 -0.36676,4.9e-4 z"
+ id="path4972-6"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(0.7639736,0,0,0.7639736,389.89266,-103.38038)"
+ id="g57106-9"
+ style="stroke-width:1.11137545">
+ <g
+ id="g56951-3"
+ style="stroke-width:1.11137545">
+ <path
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0"
+ id="rect55679-4-7"
+ d="m -547.10925,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="rect55701-3-4"
+ d="m -514.33149,144.95855 h -6.949 v -6.88219 z"
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686" />
+ <text
+ id="text55709-5-5"
+ y="155.93515"
+ x="-543.47522"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141"
+ y="155.93515"
+ x="-543.47522"
+ id="tspan55707-4-2"
+ sodipodi:role="line">JSON</tspan></text>
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="rect55679-1-7-5"
+ d="m -546.87573,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ style="fill:#7c4515;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:14.25364685px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#7c4515;fill-opacity:1;stroke:none;stroke-width:0.39602885"
+ x="-539.08789"
+ y="171.74121"
+ id="text55879-47"><tspan
+ sodipodi:role="line"
+ id="tspan55877-4"
+ x="-539.08789"
+ y="171.74121"
+ style="fill:#7c4515;fill-opacity:1;stroke-width:0.39602885">{}</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ id="g13116-4"
+ transform="translate(0,-4.3467227)"
+ style="stroke-width:1.11137545">
+ <g
+ transform="matrix(0.7639736,0,0,0.7639736,209.56487,-64.753609)"
+ id="g56797-3"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -385.65173,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ id="rect55679-5-3-4-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <g
+ id="g56653-7"
+ transform="matrix(0.12939252,0,0,0.12939252,-377.59411,159.20773)"
+ style="stroke-width:1.11137545">
+ <g
+ style="display:none;stroke-width:1.11137545"
+ id="Placement_ONLY-8" />
+ <g
+ id="BASE-6"
+ style="stroke-width:1.11137545">
+ <linearGradient
+ y2="120.7894"
+ x2="63.999699"
+ y1="7.0335999"
+ x1="63.999699"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient13523">
+ <stop
+ id="stop11214-8"
+ style="stop-color:#4387FD"
+ offset="0" />
+ <stop
+ id="stop11216-8"
+ style="stop-color:#4683EA"
+ offset="1" />
+ </linearGradient>
+ <path
+ id="path56591-4"
+ d="M 27.7906,115.2166 1.54,69.7493 c -2.0541,-3.5578 -2.0541,-7.9412 0,-11.499 L 27.7906,12.7831 c 2.0541,-3.5578 5.8503,-5.7495 9.9585,-5.7495 h 52.5012 c 4.1082,0 7.9044,2.1917 9.9585,5.7495 l 26.2506,45.4672 c 2.0541,3.5578 2.0541,7.9412 0,11.499 l -26.2506,45.4672 c -2.0541,3.5578 -5.8503,5.7495 -9.9585,5.7495 H 37.7491 c -4.1082,1e-4 -7.9043,-2.1916 -9.9585,-5.7494 z"
+ style="fill:url(#SVGID_1_-2);stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="shadow-3"
+ style="stroke-width:1.11137545">
+ <g
+ id="g56602-1"
+ style="stroke-width:1.11137545">
+ <defs
+ id="defs56595-4">
+ <path
+ d="M 27.7908,115.2166 1.5403,69.7493 c -2.0541,-3.5578 -2.0541,-7.9412 0,-11.499 L 27.7908,12.7831 C 29.8449,9.2253 33.641,7.0336 37.7493,7.0336 h 52.501 c 4.1082,0 7.9044,2.1917 9.9585,5.7495 l 26.2505,45.4672 c 2.0541,3.5578 2.0541,7.9412 0,11.499 l -26.2505,45.4672 c -2.0541,3.5578 -5.8502,5.7495 -9.9585,5.7495 h -52.501 c -4.1083,1e-4 -7.9044,-2.1916 -9.9585,-5.7494 z"
+ id="path13527"
+ inkscape:connector-curvature="0" />
+ </defs>
+ <clipPath
+ id="clipPath11226-2">
+ <use
+ id="use11224-0"
+ style="overflow:visible"
+ xlink:href="#SVGID_6_"
+ x="0"
+ y="0"
+ width="100%"
+ height="100%" />
+ </clipPath>
+ <polygon
+ id="polygon56600-6"
+ clip-path="url(#SVGID_2_-9)"
+ points="88.8747,121.6665 97.5622,121.2811 119.2289,86.4791 80.6247,47.8749 63.9997,43.4256 49.0668,48.9745 43.3004,63.9999 47.9372,80.729 "
+ style="opacity:0.07000002;stroke-width:1.11137545" />
+ </g>
+ </g>
+ <g
+ id="art-8"
+ style="stroke-width:1.11137545">
+ <g
+ id="g56617-9"
+ style="stroke-width:1.11137545">
+ <g
+ id="g56615-2"
+ style="stroke-width:1.11137545">
+ <path
+ id="path56605-6"
+ d="m 63.9997,40.804 c -12.8097,0 -23.1947,10.3849 -23.1947,23.1959 0,12.8097 10.385,23.1947 23.1947,23.1947 12.8097,0 23.1947,-10.385 23.1947,-23.1947 C 87.1945,51.1889 76.8095,40.804 63.9997,40.804 m 0,40.7948 c -9.72,0 -17.599,-7.879 -17.599,-17.599 0,-9.72 7.879,-17.6007 17.599,-17.6007 9.72,0 17.6001,7.8807 17.6001,17.6007 0,9.72 -7.8801,17.599 -17.6001,17.599"
+ style="fill:#ffffff;stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path56607-6"
+ d="m 52.9898,63.1041 v 7.2091 c 1.0659,1.8326 2.5751,3.3702 4.381,4.4754 V 63.1041 Z"
+ style="fill:#ffffff;stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path56609-4"
+ d="m 61.6754,57.0263 v 19.4109 c 0.7448,0.1363 1.5067,0.2199 2.2892,0.2199 0.7145,0 1.4098,-0.0752 2.093,-0.189 V 57.0263 Z"
+ style="fill:#ffffff;stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path56611-9"
+ d="m 70.7656,66.1008 v 8.5614 c 1.8325,-1.1695 3.3478,-2.7822 4.3822,-4.7002 v -3.8612 z"
+ style="fill:#ffffff;stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path56613-5"
+ d="m 80.6914,78.2867 -2.403,2.4049 c -0.4239,0.4227 -0.4239,1.1132 0,1.5371 l 9.1143,9.112 c 0.4227,0.4238 1.1144,0.4238 1.5371,0 l 2.403,-2.4013 c 0.4214,-0.4227 0.4214,-1.1143 0,-1.5365 l -9.1156,-9.1162 c -0.4215,-0.4221 -1.1143,-0.4221 -1.5358,0"
+ style="fill:#ffffff;stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ <g
+ id="Guides-0"
+ style="stroke-width:1.11137545" />
+ </g>
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -352.87397,144.95855 h -6.949 v -6.88219 z"
+ id="rect55701-5-6-9-4"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:#4486f6;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -385.41821,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ id="rect55679-1-5-6-6-8"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ x="-379.1109"
+ y="155.33165"
+ id="text55709-5-8-0-4-7"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-2-6-1"
+ x="-379.1109"
+ y="155.33165"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141">GBQ</tspan></text>
+ </g>
+ <g
+ transform="matrix(0.7639736,0,0,0.7639736,270.63242,-64.753609)"
+ id="g56805-7"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -428.29495,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ id="rect55679-5-3-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -395.51719,144.95855 h -6.949 v -6.88219 z"
+ id="rect55701-5-6-72"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:#d22b28;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -428.06143,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ id="rect55679-1-5-6-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#d22b28;fill-opacity:1;stroke-width:0.03987985"
+ d="m -412.94012,174.83899 c -2.39286,-0.17337 -4.25462,-0.92363 -4.80603,-1.93675 -0.20796,-0.38207 -0.1997,-0.15791 -0.1997,-5.4163 0,-5.2584 -0.008,-5.03422 0.1997,-5.41631 0.52229,-0.95963 2.12948,-1.65202 4.42926,-1.90817 0.59425,-0.0661 2.22107,-0.055 2.85272,0.0195 2.42842,0.28682 3.99755,1.04433 4.40698,2.12751 l 0.0784,0.20754 0.01,4.80836 c 0.007,3.25426 -0.003,4.88804 -0.0279,5.05486 -0.18694,1.21275 -1.86095,2.11808 -4.44966,2.40645 -0.62283,0.0695 -1.89574,0.0965 -2.49389,0.0532 z m 2.42212,-1.10913 c 1.01274,-0.12241 1.89648,-0.35364 2.52978,-0.66193 0.45831,-0.2231 0.73601,-0.43117 0.86172,-0.64568 0.0872,-0.14886 0.0893,-0.16846 0.0893,-0.89661 0,-0.40943 -0.0124,-0.73888 -0.0269,-0.73213 -0.0149,0.007 -0.16397,0.0828 -0.33145,0.16913 -1.54197,0.7942 -4.13331,1.10309 -6.47743,0.7721 -1.10764,-0.1564 -2.14234,-0.47058 -2.79149,-0.84762 -0.0946,-0.055 -0.1794,-0.0999 -0.18839,-0.0999 -0.01,0 -0.0164,0.34474 -0.0164,0.7661 v 0.76611 l 0.10825,0.14942 c 0.2826,0.39014 1.05764,0.77963 2.03963,1.02501 0.50715,0.12668 0.98591,0.20062 1.85311,0.28599 0.27949,0.0275 2.0144,-0.01 2.35036,-0.0499 z m -0.0897,-2.99878 c 1.48756,-0.16113 2.68968,-0.55239 3.26059,-1.06123 0.30547,-0.27227 0.30981,-0.28973 0.30981,-1.2474 0,-0.45588 -0.007,-0.82886 -0.0139,-0.82886 -0.008,0 -0.14893,0.0711 -0.31398,0.15803 -1.28011,0.67416 -3.50461,1.02839 -5.53905,0.88204 -1.40344,-0.10096 -2.61466,-0.38428 -3.49862,-0.81837 -0.22696,-0.11141 -0.42477,-0.20828 -0.43957,-0.21517 -0.0147,-0.007 -0.027,0.36911 -0.027,0.83552 0,0.96882 -0.004,0.94996 0.30074,1.22903 0.49729,0.45451 1.6456,0.85736 2.94812,1.03429 0.84879,0.11526 2.11973,0.12888 3.01279,0.0321 z m -0.25117,-3.17465 c 1.79501,-0.15181 3.38835,-0.72508 3.73976,-1.34554 0.0773,-0.13644 0.0806,-0.17795 0.0813,-0.99242 l 4.3e-4,-0.85007 -0.29605,0.15736 c -0.83154,0.442 -2.06898,0.76261 -3.39994,0.88088 -0.64577,0.0574 -2.00104,0.048 -2.62283,-0.0182 -1.30016,-0.13837 -2.35469,-0.41553 -3.14541,-0.82671 l -0.36781,-0.19125 v 0.87316 0.87316 l 0.11828,0.155 c 0.46867,0.61447 1.93789,1.13255 3.63158,1.28057 0.51111,0.0447 1.75415,0.0469 2.26066,0.004 z m -0.19736,-3.19261 c 1.57372,-0.11691 2.89719,-0.48754 3.5985,-1.00787 0.23246,-0.17245 0.42043,-0.42724 0.42043,-0.56986 0,-0.14316 -0.18674,-0.40773 -0.40076,-0.5678 -0.59209,-0.44282 -1.65343,-0.78705 -2.97228,-0.96401 -0.61144,-0.0821 -2.35152,-0.0922 -2.96037,-0.0173 -1.07536,0.13231 -1.92804,0.35436 -2.5836,0.67278 -0.55306,0.26864 -0.91503,0.60618 -0.91503,0.85329 0,0.28182 0.3789,0.63844 0.97521,0.91787 1.15871,0.543 3.07651,0.81371 4.8379,0.6829 z"
+ id="path56342-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccscccccscccccccsccscssccccccccssccccsccccccccccccccccsccccsscccsscc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ x="-421.75409"
+ y="155.33165"
+ id="text55709-5-8-0-1"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-2-0"
+ x="-421.75409"
+ y="155.33165"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141">SQL</tspan></text>
+ </g>
+ <g
+ transform="translate(-4.7030536,-0.28414145)"
+ id="g12598-6"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.39916864;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -23.381309,41.017226 H -3.6488181 L 1.5833621,46.14899 V 71.761885 H -23.381309 Z"
+ id="rect55679-5-3-6-1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.4313232;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="M 1.6600345,46.275038 H -3.6488181 V 41.017226 Z"
+ id="rect55701-5-6-7-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:#333333;fill-opacity:1;stroke:none;stroke-width:0.31363189;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -23.202906,41.017226 h 19.5540879 l -0.00306,2.445808 H -23.203307 Z"
+ id="rect55679-1-5-6-5-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.08538723px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;stroke-width:0.22464751"
+ x="-18.192799"
+ y="60.704777"
+ id="text55709-5-8-0-5-9-4"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-2-62-1-9"
+ x="-18.192799"
+ y="60.704777"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#333333;fill-opacity:1;stroke-width:0.22464751">...</tspan></text>
+ </g>
+ </g>
+ </g>
+ <path
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path6109"
+ d="M 24.80494,44.790275 H 51.474804"
+ style="fill:none;stroke:#000000;stroke-width:0.44455019;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" />
+ <g
+ transform="matrix(0.78210044,0,0,0.78210044,21.652355,31.482679)"
+ id="g13221"
+ style="stroke-width:1.11137545">
+ <g
+ id="g13046"
+ transform="translate(0,3.4017917)"
+ style="stroke-width:1.11137545">
+ <g
+ transform="matrix(0.76397361,0,0,0.76397361,301.89818,-142.00712)"
+ id="g57096-9"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -506.51101,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ id="rect55679-4-0-1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -473.73325,144.95855 h -6.949 v -6.88219 z"
+ id="rect55701-3-7-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ x="-499.97018"
+ y="155.93517"
+ id="text55709-5-8-7"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-0"
+ x="-499.97018"
+ y="155.93517"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141">CSV</tspan></text>
+ <path
+ style="fill:#755075;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -506.27749,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ id="rect55679-1-7-9-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <g
+ transform="translate(-681.73064,244.47732)"
+ id="g56212-3"
+ style="stroke-width:1.11137545">
+ <rect
+ y="-83.565544"
+ x="179.92134"
+ width="23.273981"
+ style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37059268;stroke-opacity:1;marker:none"
+ id="rect2277-8-3-4-60"
+ height="2.2165694" />
+ <rect
+ y="-79.919731"
+ x="179.92134"
+ width="23.273981"
+ style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37059268;stroke-opacity:1;marker:none"
+ id="rect2277-8-3-4-6-6"
+ height="2.2165694" />
+ <rect
+ y="-76.273918"
+ x="179.92134"
+ width="23.273981"
+ style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37059268;stroke-opacity:1;marker:none"
+ id="rect2277-8-3-4-4-2"
+ height="2.2165694" />
+ <rect
+ y="-72.628105"
+ x="179.92134"
+ width="23.273981"
+ style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37059268;stroke-opacity:1;marker:none"
+ id="rect2277-8-3-4-5-6"
+ height="2.2165694" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.76397361,0,0,0.76397361,389.69361,-142.00712)"
+ id="g57123"
+ style="stroke-width:1.11137545">
+ <g
+ id="g56942"
+ style="stroke-width:1.11137545">
+ <path
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0"
+ id="rect55679"
+ d="m -584.13959,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="rect55701"
+ d="m -551.36183,144.95855 h -6.949 v -6.88219 z"
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686" />
+ <text
+ id="text55709"
+ y="155.93515"
+ x="-577.10522"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141"
+ y="155.93515"
+ x="-577.10522"
+ id="tspan55707"
+ sodipodi:role="line">XLS</tspan></text>
+ <g
+ id="g4140"
+ transform="matrix(0.15295911,0,0,0.15295911,-574.53339,160.91154)"
+ style="stroke-width:1.11137545">
+ <path
+ d="m 46.04,0 h 5.94 c 0,2.67 0,5.33 0,8 10.01,0 20.02,0.02 30.03,-0.03 1.69,0.07 3.55,-0.05 5.02,0.96 1.03,1.48 0.91,3.36 0.98,5.06 -0.05,17.36 -0.03,34.71 -0.02,52.06 -0.05,2.91 0.27,5.88 -0.34,8.75 -0.4,2.08 -2.9,2.13 -4.57,2.2 -10.36,0.03 -20.73,-0.02 -31.1,0 0,3 0,6 0,9 H 45.77 C 30.53,83.23 15.26,80.67 0,78 0,54.67 0,31.34 0,8.01 15.35,5.34 30.7,2.71 46.04,0 Z"
+ id="path10-9"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ <path
+ d="m 51.98,11 c 11,0 22,0 33,0 0,21 0,42 0,63 -11,0 -22,0 -33,0 0,-2 0,-4 0,-6 2.67,0 5.33,0 8,0 0,-2.33 0,-4.67 0,-7 -2.67,0 -5.33,0 -8,0 0,-1.33 0,-2.67 0,-4 2.67,0 5.33,0 8,0 0,-2.33 0,-4.67 0,-7 -2.67,0 -5.33,0 -8,0 0,-1.33 0,-2.67 0,-4 2.67,0 5.33,0 8,0 0,-2.33 0,-4.67 0,-7 -2.67,0 -5.33,0 -8,0 0,-1.33 0,-2.67 0,-4 2.67,0 5.33,0 8,0 0,-2.33 0,-4.67 0,-7 -2.67,0 -5.33,0 -8,0 0,-1.33 0,-2.67 0,-4 2.67,0 5.33,0 8,0 0,-2.33 0,-4.67 0,-7 -2.67,0 -5.33,0 -8,0 0,-2 0,-4 0,-6 z"
+ id="path48-1"
+ inkscape:connector-curvature="0"
+ style="fill:#ffffff;stroke-width:1.11137545" />
+ <path
+ d="m 63.98,17 c 4.67,0 9.33,0 14,0 0,2.33 0,4.67 0,7 -4.67,0 -9.33,0 -14,0 0,-2.33 0,-4.67 0,-7 z"
+ id="path58-2"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ <path
+ d="m 29.62,26.37 c 2.26,-0.16 4.53,-0.3 6.8,-0.41 -2.67,5.47 -5.35,10.94 -8.07,16.39 2.75,5.6 5.56,11.16 8.32,16.76 -2.41,-0.14 -4.81,-0.29 -7.22,-0.46 -1.7,-4.17 -3.77,-8.2 -4.99,-12.56 -1.36,4.06 -3.3,7.89 -4.86,11.87 -2.19,-0.03 -4.38,-0.12 -6.57,-0.21 2.57,-5.03 5.05,-10.1 7.7,-15.1 -2.25,-5.15 -4.72,-10.2 -7.04,-15.32 2.2,-0.13 4.4,-0.26 6.6,-0.38 1.49,3.91 3.12,7.77 4.35,11.78 1.32,-4.25 3.29,-8.25 4.98,-12.36 z"
+ id="path72-7"
+ inkscape:connector-curvature="0"
+ style="fill:#ffffff;stroke-width:1.11137545" />
+ <path
+ d="m 63.98,28 c 4.67,0 9.33,0 14,0 0,2.33 0,4.67 0,7 -4.67,0 -9.33,0 -14,0 0,-2.33 0,-4.67 0,-7 z"
+ id="path90"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ <path
+ d="m 63.98,39 c 4.67,0 9.33,0 14,0 0,2.33 0,4.67 0,7 -4.67,0 -9.33,0 -14,0 0,-2.33 0,-4.67 0,-7 z"
+ id="path108"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ <path
+ d="m 63.98,50 c 4.67,0 9.33,0 14,0 0,2.33 0,4.67 0,7 -4.67,0 -9.33,0 -14,0 0,-2.33 0,-4.67 0,-7 z"
+ id="path114"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ <path
+ d="m 63.98,61 c 4.67,0 9.33,0 14,0 0,2.33 0,4.67 0,7 -4.67,0 -9.33,0 -14,0 0,-2.33 0,-4.67 0,-7 z"
+ id="path120"
+ inkscape:connector-curvature="0"
+ style="fill:#207245;stroke-width:1.11137545" />
+ </g>
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="rect55679-1"
+ d="m -583.90607,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ style="fill:#207245;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ transform="translate(32.905868,-67.171919)"
+ id="g12301"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.39916864;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -60.99023,30.65149 h 19.73249 l 5.23218,5.13176 v 25.6129 h -24.96467 z"
+ id="rect55679-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#6995f4;fill-opacity:1;stroke-width:0.01482968"
+ d="m -48.45626,58.61909 c -0.0716,-0.0731 -0.1361,-0.133 -0.14344,-0.133 -0.008,0 -0.0134,-0.009 -0.0134,-0.02 0,-0.0109 -0.009,-0.02 -0.02,-0.02 -0.011,0 -0.02,-0.009 -0.02,-0.02 0,-0.0109 -0.009,-0.02 -0.02,-0.02 -0.0109,0 -0.02,-0.009 -0.02,-0.02 0,-0.0109 -0.006,-0.02 -0.0134,-0.02 -0.008,0 -0.0134,-0.006 -0.0134,-0.0134 0,-0.008 -0.0331,-0.0461 -0.0733,-0.0862 -0.0403,-0.04 -0.0734,-0.0791 -0.0734,-0.0867 0,-0.008 -0.007,-0.014 -0.0145,-0.014 -0.0215,0 -0.0793,-0.0484 -0.0694,-0.0583 0.005,-0.005 7.7e-4,-0.009 -0.008,-0.009 -0.0162,0 -0.086,-0.0679 -0.1372,-0.13343 -0.0143,-0.0183 -0.0616,-0.0705 -0.10521,-0.11607 -0.0435,-0.0455 -0.0792,-0.0894 -0.0792,-0.0975 0,-0.009 -0.006,-0.0112 -0.0134,-0.007 -0.008,0.005 -0.0134,-7.6e-4 -0.0134,-0.0126 0,-0.0115 -0.009,-0.0208 -0.02,-0.0208 -0.0111,0 -0.02,-0.006 -0.02,-0.0134 0,-0.008 -0.006,-0.0134 -0.0141,-0.0134 -0.0157,0 -0.0926,-0.08 -0.0926,-0.0964 0,-0.006 -0.006,-0.0104 -0.0133,-0.0104 -0.0211,0 -0.0935,-0.0818 -0.0935,-0.10572 0,-0.023 0.11047,-0.13446 0.1333,-0.13446 0.008,0 0.0135,-0.009 0.0135,-0.02 0,-0.0111 0.006,-0.02 0.0128,-0.02 0.007,0 0.0594,-0.045 0.11617,-0.10007 0.0568,-0.0551 0.10848,-0.10008 0.11472,-0.10008 0.0137,0 0.0899,-0.0817 0.0899,-0.0964 0,-0.006 0.006,-0.0104 0.014,-0.0104 0.008,0 0.0292,-0.0164 0.0478,-0.0365 0.0186,-0.02 0.0484,-0.0461 0.0662,-0.0577 0.0178,-0.0117 0.0712,-0.0583 0.11856,-0.10364 0.0474,-0.0453 0.0924,-0.0824 0.0999,-0.0824 0.008,0 0.0138,-0.007 0.0138,-0.0143 0,-0.0185 0.0339,-0.0524 0.0524,-0.0524 0.008,0 0.0143,-0.009 0.0143,-0.02 0,-0.0111 0.006,-0.02 0.0134,-0.02 0.008,0 0.0539,-0.0405 0.10352,-0.0901 0.0496,-0.0496 0.12006,-0.11409 0.15669,-0.14344 0.0367,-0.0293 0.0686,-0.0579 0.071,-0.0633 0.002,-0.005 0.0129,-0.01 0.0234,-0.01 0.0105,0 0.0189,-0.006 0.0189,-0.0142 0,-0.014 0.0338,-0.0477 0.1495,-0.14964 0.15388,-0.13549 0.17813,-0.15569 0.18742,-0.15601 0.005,-2e-4 0.01,-0.007 0.01,-0.0147 0,-0.0185 0.0339,-0.0524 0.0524,-0.0524 0.008,0 0.0143,-0.009 0.0143,-0.02 0,-0.011 0.006,-0.02 0.0142,-0.02 0.008,0 0.0356,-0.0225 0.0617,-0.05 0.0261,-0.0276 0.0527,-0.0485 0.0591,-0.0468 0.006,0.002 0.0117,-0.003 0.0117,-0.0118 0,-0.015 0.0267,-0.0414 0.0974,-0.0961 0.0205,-0.0159 0.0686,-0.0603 0.10676,-0.0986 0.0382,-0.0383 0.0769,-0.0699 0.0861,-0.0701 0.009,-1.5e-4 0.0167,-0.006 0.0167,-0.0136 0,-0.008 0.012,-0.0254 0.0267,-0.0401 0.0147,-0.0147 0.0267,-0.0237 0.0267,-0.02 0,0.003 0.012,-0.005 0.0267,-0.02 0.0147,-0.0147 0.0267,-0.0327 0.0267,-0.04 0,-0.008 0.008,-0.0134 0.0168,-0.0134 0.009,0 0.0331,-0.015 0.0528,-0.0334 0.0198,-0.0183 0.0426,-0.0334 0.0507,-0.0334 0.008,0 0.0114,-0.005 0.008,-0.0119 -0.005,-0.007 0.008,-0.0219 0.0268,-0.0342 0.0455,-0.0298 0.0857,-0.0708 0.0857,-0.0873 0,-0.008 0.007,-0.0134 0.0144,-0.0134 0.008,0 0.05,-0.0361 0.0933,-0.08 0.0433,-0.044 0.0814,-0.08 0.0846,-0.08 0.003,0 0.0232,-0.0165 0.0445,-0.0367 0.0844,-0.0799 0.12162,-0.11009 0.13552,-0.11009 0.008,0 0.0145,-0.007 0.0145,-0.0143 0,-0.0185 0.0339,-0.0524 0.0524,-0.0524 0.008,0 0.0143,-0.009 0.0143,-0.02 0,-0.0111 0.006,-0.02 0.013,-0.02 0.007,0 0.0455,-0.0315 0.0852,-0.07 0.0806,-0.0782 0.15505,-0.14345 0.16376,-0.14345 0.003,0 0.0502,-0.045 0.10452,-0.10008 0.0543,-0.0551 0.10416,-0.10007 0.11073,-0.10007 0.007,0 0.0199,-0.015 0.0298,-0.0334 0.01,-0.0183 0.0226,-0.0334 0.0284,-0.0334 0.006,0 0.0374,-0.0255 0.0701,-0.0567 0.0808,-0.0772 0.17035,-0.15678 0.17609,-0.15678 0.002,0 0.0439,-0.039 0.0919,-0.0867 0.048,-0.0477 0.0935,-0.0867 0.10133,-0.0867 0.008,0 0.0105,-0.006 0.006,-0.0134 -0.005,-0.008 -0.002,-0.0134 0.005,-0.0134 0.0157,0 0.0761,-0.0506 0.17152,-0.14344 0.0396,-0.0385 0.0777,-0.0701 0.0848,-0.0701 0.007,0 0.0128,-0.007 0.0128,-0.0143 0,-0.0163 0.0332,-0.0524 0.048,-0.0524 0.0113,0 0.0189,-0.007 0.14815,-0.13125 0.0529,-0.051 0.0994,-0.0892 0.10342,-0.0852 0.005,0.005 0.008,-0.002 0.008,-0.0149 0,-0.0122 0.009,-0.0222 0.02,-0.0222 0.0111,0 0.02,-0.006 0.02,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.009 0.02,-0.02 0,-0.0109 0.006,-0.02 0.0134,-0.02 0.008,0 0.0134,-0.009 0.0134,-0.02 0,-0.011 0.008,-0.02 0.0169,-0.02 0.009,0 0.028,-0.015 0.0419,-0.0334 0.0137,-0.0183 0.0306,-0.0334 0.0375,-0.0334 0.017,0 0.0506,-0.0348 0.0506,-0.0524 0,-0.008 0.006,-0.0143 0.0134,-0.0143 0.008,0 0.0243,-0.0105 0.0377,-0.0234 0.0423,-0.0404 0.0956,-0.0834 0.10351,-0.0834 0.0113,0 0.11227,-0.11049 0.11227,-0.12284 0,-0.006 0.009,-0.0106 0.02,-0.0106 0.0111,0 0.02,-0.009 0.02,-0.02 0,-0.0111 0.009,-0.02 0.02,-0.02 0.0109,0 0.02,-0.006 0.02,-0.0125 0,-0.007 0.0106,-0.0158 0.0236,-0.0199 0.013,-0.005 0.0784,-0.0612 0.14534,-0.12689 0.0669,-0.0657 0.12534,-0.11573 0.1298,-0.11126 0.005,0.005 0.008,-0.002 0.008,-0.0141 0,-0.0122 0.009,-0.0222 0.02,-0.0222 0.0109,0 0.02,-0.009 0.02,-0.02 0,-0.0111 0.009,-0.02 0.0208,-0.02 0.0115,0 0.0171,-0.006 0.0126,-0.0134 -0.005,-0.008 7.6e-4,-0.0134 0.0126,-0.0134 0.0115,0 0.0208,-0.009 0.0208,-0.02 0,-0.011 0.005,-0.02 0.0121,-0.02 0.0116,0 0.054,-0.0324 0.10929,-0.0834 0.0139,-0.0128 0.0312,-0.0234 0.0386,-0.0234 0.008,0 0.0134,-0.009 0.0134,-0.02 0,-0.0111 0.006,-0.02 0.0134,-0.02 0.017,0 0.16013,-0.14365 0.16013,-0.16071 0,-0.007 0.007,-0.0127 0.0152,-0.0127 0.009,0 0.0403,-0.0255 0.0708,-0.0567 0.0306,-0.0312 0.0727,-0.0688 0.0937,-0.0834 0.021,-0.0147 0.0703,-0.0582 0.10963,-0.0967 0.0393,-0.0385 0.0739,-0.0701 0.0768,-0.0701 0.0109,0 0.0875,-0.0826 0.0875,-0.0944 0,-0.007 0.007,-0.0123 0.0149,-0.0123 0.009,0 0.039,-0.0241 0.0683,-0.0533 0.0293,-0.0293 0.0583,-0.0533 0.0644,-0.0533 0.006,0 0.0744,-0.0626 0.15188,-0.13903 0.0775,-0.0765 0.14089,-0.13535 0.14089,-0.13084 0,0.005 0.015,-0.0121 0.0334,-0.037 0.0183,-0.0248 0.0334,-0.0411 0.0334,-0.0361 0,0.009 0.0347,-0.0167 0.0739,-0.054 0.01,-0.009 0.024,-0.0167 0.0319,-0.0167 0.008,0 0.0143,-0.009 0.0143,-0.02 0,-0.0111 0.007,-0.02 0.0143,-0.02 0.0185,0 0.0524,-0.0339 0.0524,-0.0524 0,-0.008 0.009,-0.0143 0.02,-0.0143 0.0111,0 0.02,-0.009 0.02,-0.02 0,-0.0111 0.005,-0.0185 0.0105,-0.0167 0.006,0.002 0.0355,-0.0207 0.0662,-0.05 0.0823,-0.0786 0.10166,-0.0938 0.11416,-0.0898 0.006,0.002 0.008,-0.002 0.003,-0.009 -0.009,-0.0144 0.049,-0.0552 0.0785,-0.0552 0.0112,0 0.0205,0.006 0.0205,0.0134 0,0.008 0.009,0.0134 0.0205,0.0134 0.0112,0 0.0239,0.009 0.028,0.02 0.005,0.0111 0.0221,0.02 0.0396,0.02 0.0176,0 0.0319,0.006 0.0319,0.0125 0,0.007 0.0135,0.0167 0.03,0.0219 0.0165,0.005 0.0331,0.013 0.0368,0.0176 0.0107,0.0132 0.0581,0.0417 0.0834,0.0502 0.0128,0.005 0.0234,0.0131 0.0234,0.0196 0,0.007 0.0113,0.0118 0.025,0.0118 0.0138,0 0.0325,0.009 0.0417,0.02 0.009,0.0111 0.0272,0.02 0.0403,0.02 0.013,0 0.0271,0.009 0.0313,0.02 0.005,0.0111 0.0189,0.02 0.0327,0.02 0.0286,0 0.10484,0.0355 0.1164,0.0542 0.005,0.007 0.0193,0.0125 0.0337,0.0125 0.0142,0 0.0258,0.006 0.0258,0.0131 0,0.007 0.0151,0.0169 0.0334,0.0215 0.0183,0.005 0.0334,0.0137 0.0334,0.0203 0,0.007 0.0113,0.0119 0.025,0.0119 0.0137,0 0.0325,0.009 0.0417,0.02 0.009,0.0111 0.0279,0.02 0.0417,0.02 0.0138,0 0.025,0.006 0.025,0.0134 0,0.008 0.009,0.0134 0.0191,0.0134 0.0105,0 0.027,0.008 0.0367,0.0167 0.01,0.009 0.0416,0.0287 0.071,0.0434 0.0293,0.0147 0.0554,0.0312 0.0577,0.0367 0.002,0.005 0.0189,0.01 0.0367,0.01 0.0198,0 0.0323,0.008 0.0323,0.02 0,0.0109 0.007,0.02 0.0155,0.02 0.009,0 -0.01,0.024 -0.0406,0.0533 -0.0308,0.0293 -0.0618,0.0533 -0.0689,0.0533 -0.007,0 -0.0128,0.009 -0.0128,0.0205 0,0.0112 -0.009,0.0239 -0.02,0.0281 -0.0111,0.005 -0.02,0.016 -0.02,0.0263 0,0.0102 -0.007,0.0186 -0.0149,0.0186 -0.009,0 -0.0368,0.0251 -0.0633,0.056 -0.0597,0.0689 -0.17284,0.1842 -0.18074,0.1842 -0.006,0 -0.0879,0.0797 -0.0879,0.086 0,0.0121 -0.25327,0.26091 -0.26551,0.26091 -0.008,0 -0.0147,0.006 -0.0147,0.0142 0,0.008 -0.0315,0.0459 -0.0701,0.0846 -0.0385,0.0387 -0.10127,0.10436 -0.13943,0.1459 -0.0382,0.0416 -0.0757,0.0755 -0.0834,0.0755 -0.008,0 -0.0141,0.007 -0.0141,0.0143 0,0.0185 -0.034,0.0524 -0.0524,0.0524 -0.008,0 -0.0143,0.008 -0.0143,0.0162 0,0.0183 -0.1426,0.15729 -0.16133,0.15729 -0.007,0 -0.0122,0.009 -0.0122,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.018,0 -0.026,0.0158 -0.0215,0.0433 7.7e-4,0.005 -0.005,0.01 -0.0105,0.01 -0.007,0 -0.0623,0.0512 -0.12343,0.11381 -0.0612,0.0626 -0.19038,0.19416 -0.28704,0.29238 -0.0967,0.0982 -0.17223,0.1821 -0.16791,0.18641 0.005,0.005 7.6e-4,0.008 -0.007,0.008 -0.0184,0 -0.20301,0.1823 -0.20301,0.20044 0,0.007 -0.007,0.0131 -0.0143,0.0131 -0.0148,0 -0.0524,0.0326 -0.0524,0.0454 0,0.0128 -0.12034,0.12807 -0.13379,0.12807 -0.007,0 -0.013,0.006 -0.013,0.0134 0,0.008 -0.0241,0.0374 -0.0533,0.0667 -0.0293,0.0293 -0.0594,0.0533 -0.0667,0.0533 -0.008,0 -0.0134,0.006 -0.0134,0.0125 0,0.007 -0.0466,0.0601 -0.10342,0.11848 -0.0568,0.0584 -0.14023,0.14437 -0.18525,0.19113 -0.13555,0.1408 -0.24885,0.24535 -0.26166,0.24146 -0.007,-0.002 -0.009,0.002 -0.003,0.01 0.005,0.008 -0.034,0.0554 -0.0858,0.10662 -0.0517,0.0512 -0.0941,0.0994 -0.0941,0.10694 0,0.008 -0.008,0.0141 -0.0167,0.0143 -0.009,2.5e-4 -0.0527,0.04 -0.0967,0.0882 -0.1391,0.15243 -0.21768,0.22954 -0.22573,0.22151 -0.005,-0.005 -0.008,-7.7e-4 -0.008,0.008 0,0.009 -0.0355,0.0511 -0.0789,0.0945 -0.0434,0.0434 -0.0824,0.0754 -0.0867,0.0711 -0.005,-0.005 -0.008,7.6e-4 -0.008,0.0115 0,0.0224 -0.0474,0.0668 -0.0589,0.0552 -0.005,-0.005 -0.008,0.002 -0.008,0.0126 0,0.0112 -0.015,0.0317 -0.0334,0.0454 -0.0183,0.0137 -0.0334,0.0326 -0.0334,0.0419 0,0.009 -0.009,0.0169 -0.02,0.0169 -0.011,0 -0.02,0.009 -0.02,0.02 0,0.0111 -0.006,0.02 -0.0134,0.02 -0.0156,0 -0.16011,0.14299 -0.16011,0.15845 0,0.006 -0.015,0.0185 -0.0334,0.0283 -0.0183,0.01 -0.0334,0.0259 -0.0334,0.0356 0,0.01 -0.008,0.0177 -0.0177,0.0177 -0.01,0 -0.0257,0.015 -0.0356,0.0334 -0.01,0.0183 -0.0258,0.0334 -0.0356,0.0334 -0.01,0 -0.0177,0.007 -0.0177,0.0144 0,0.0186 -0.0817,0.10008 -0.0959,0.0957 -0.006,-0.002 -0.0109,0.003 -0.0109,0.011 0,0.0189 -0.0341,0.0524 -0.0533,0.0524 -0.009,0 -0.0113,0.006 -0.007,0.0134 0.005,0.008 -7.6e-4,0.017 -0.0121,0.0212 -0.0112,0.005 -0.024,0.0192 -0.0284,0.0332 -0.005,0.014 -0.0227,0.0291 -0.0405,0.0335 -0.0178,0.005 -0.0325,0.014 -0.0325,0.021 0,0.0173 -0.0347,0.051 -0.0524,0.051 -0.008,0 -0.0143,0.006 -0.0143,0.0142 0,0.0157 -0.0301,0.0497 -0.16559,0.18634 -0.0506,0.0512 -0.0973,0.093 -0.10342,0.093 -0.006,0 -0.0112,0.006 -0.0112,0.0142 0,0.008 -0.0211,0.0341 -0.0468,0.0583 -0.0257,0.0242 -0.0468,0.0421 -0.0468,0.0397 0,-0.002 -0.0271,0.0246 -0.06,0.0598 -0.0331,0.0353 -0.0601,0.0685 -0.0601,0.0738 0,0.013 -0.0355,0.0477 -0.049,0.0478 -0.006,5e-5 -0.024,0.0166 -0.0399,0.0367 -0.0481,0.0609 -0.13316,0.14999 -0.1431,0.14999 -0.0147,0 -0.0748,0.0639 -0.0748,0.0795 0,0.008 -0.009,0.014 -0.02,0.014 -0.0109,0 -0.02,0.009 -0.02,0.02 0,0.0111 -0.009,0.02 -0.0208,0.02 -0.0115,0 -0.0177,0.005 -0.0141,0.011 0.008,0.0122 -0.0382,0.0557 -0.0588,0.0557 -0.007,0 -0.0132,0.005 -0.0132,0.0121 0,0.017 -0.20964,0.22804 -0.22646,0.22804 -0.008,0 -0.0137,0.006 -0.0137,0.0142 0,0.008 -0.0451,0.0587 -0.10008,0.11299 -0.0551,0.0544 -0.10008,0.10498 -0.10008,0.11256 0,0.008 -0.009,0.0137 -0.02,0.0137 -0.0111,0 -0.02,0.005 -0.02,0.0105 0,0.0115 -0.0503,0.0642 -0.16561,0.17358 -0.041,0.0389 -0.0746,0.0743 -0.0746,0.0786 0,0.0131 -0.0788,0.0842 -0.0933,0.0842 -0.008,0 -0.0135,0.008 -0.0135,0.0167 -2e-5,0.009 -0.0361,0.0547 -0.0801,0.10128 -0.044,0.0465 -0.08,0.0818 -0.08,0.0783 0,-0.003 -0.051,0.0448 -0.11343,0.10739 -0.0624,0.0625 -0.11342,0.11572 -0.11342,0.11822 0,0.0121 -0.18633,0.19192 -0.19895,0.19192 -0.008,0 -0.0145,0.007 -0.0145,0.0151 0,0.009 -0.0211,0.0349 -0.0467,0.0591 -0.0257,0.0242 -0.0468,0.0504 -0.0468,0.0583 0,0.008 -0.009,0.0142 -0.02,0.0142 -0.0111,0 -0.02,0.009 -0.02,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.0396 -0.0608,-0.002 -0.1768,-0.12053 z m -1.54346,-1.58412 c -5.2e-4,-0.009 -0.0101,-0.0167 -0.0211,-0.0167 -0.011,0 -0.02,-0.009 -0.02,-0.02 0,-0.0111 -0.009,-0.02 -0.02,-0.02 -0.0111,0 -0.02,-0.005 -0.02,-0.011 0,-0.0142 -0.0729,-0.0958 -0.0855,-0.0958 -0.0148,0 -0.0478,-0.0362 -0.0478,-0.0524 0,-0.008 -0.006,-0.0143 -0.0139,-0.0143 -0.019,0 -0.06,-0.0412 -0.0708,-0.0713 -0.005,-0.0135 -0.0208,-0.0277 -0.0355,-0.0316 -0.0147,-0.003 -0.0267,-0.0111 -0.0267,-0.0161 0,-0.0131 -0.11633,-0.14283 -0.18547,-0.20691 -0.10595,-0.0982 -0.23492,-0.23707 -0.23152,-0.24927 0.002,-0.007 -0.002,-0.012 -0.0105,-0.012 -0.014,0 -0.093,-0.0749 -0.093,-0.0882 0,-0.0127 -0.0377,-0.0453 -0.0524,-0.0453 -0.008,0 -0.0143,-0.009 -0.0143,-0.0186 0,-0.0102 -0.0151,-0.0223 -0.0334,-0.027 -0.0183,-0.005 -0.0334,-0.0144 -0.0334,-0.0219 0,-0.008 -0.019,-0.0321 -0.0421,-0.0547 -0.0369,-0.0361 -0.0394,-0.0427 -0.02,-0.0536 0.0121,-0.007 0.0446,-0.0331 0.0722,-0.0584 0.0276,-0.0253 0.061,-0.0461 0.0743,-0.0461 0.0133,-5e-5 0.021,-0.005 0.0171,-0.0114 -0.003,-0.006 0.0149,-0.0287 0.0416,-0.05 0.0267,-0.0213 0.0561,-0.0462 0.0653,-0.0554 0.009,-0.009 0.0204,-0.0167 0.0249,-0.0167 0.0102,0 0.0419,-0.0257 0.0714,-0.0578 0.0123,-0.0134 0.0569,-0.0488 0.0991,-0.0787 0.0422,-0.0298 0.0767,-0.0594 0.0767,-0.0657 0,-0.006 0.006,-0.0114 0.0141,-0.0114 0.008,0 0.0356,-0.0211 0.0621,-0.0468 0.0264,-0.0257 0.0526,-0.0468 0.0581,-0.0468 0.005,0 0.0377,-0.0268 0.0713,-0.0595 0.0338,-0.0328 0.0613,-0.0558 0.0613,-0.051 0,0.005 0.015,-0.006 0.0334,-0.0228 0.0183,-0.0172 0.0334,-0.0277 0.0334,-0.0234 0,0.005 0.0253,-0.0156 0.0562,-0.0444 0.0308,-0.0288 0.0609,-0.0523 0.0667,-0.0523 0.006,0 0.0346,-0.0241 0.064,-0.0533 0.0293,-0.0293 0.0564,-0.0533 0.0602,-0.0533 0.006,0 0.0676,-0.0513 0.10754,-0.0901 0.009,-0.009 0.0236,-0.0167 0.0315,-0.0167 0.008,0 0.0143,-0.006 0.0143,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.009 0.02,-0.02 0,-0.0111 0.008,-0.02 0.0168,-0.02 0.009,0 0.0329,-0.015 0.0528,-0.0334 0.0198,-0.0183 0.0422,-0.0334 0.0499,-0.0334 0.008,0 0.014,-0.009 0.014,-0.02 0,-0.0111 0.006,-0.02 0.0139,-0.02 0.008,0 0.0389,-0.0241 0.0694,-0.0533 0.0306,-0.0293 0.0603,-0.0533 0.0661,-0.0533 0.006,0 0.0241,-0.0116 0.0406,-0.0259 0.0918,-0.0789 0.11089,-0.0942 0.11796,-0.0942 0.005,-10e-6 0.0339,-0.0241 0.0656,-0.0534 0.0318,-0.0293 0.0623,-0.0533 0.0679,-0.0533 0.005,0 0.0281,-0.0179 0.0502,-0.04 0.022,-0.022 0.0449,-0.0402 0.051,-0.0403 0.006,-1.4e-4 0.0253,-0.0152 0.0426,-0.0335 0.0173,-0.0183 0.0489,-0.0435 0.0701,-0.056 0.0212,-0.0125 0.0384,-0.0305 0.0384,-0.0399 0,-0.009 0.009,-0.0171 0.02,-0.0171 0.0111,0 0.02,-0.005 0.02,-0.0109 0,-0.006 0.0243,-0.0246 0.054,-0.0412 0.0297,-0.0167 0.0612,-0.0419 0.07,-0.0559 0.009,-0.014 0.0194,-0.0254 0.0238,-0.0254 0.005,0 0.0339,-0.0241 0.0658,-0.0533 0.0318,-0.0293 0.0652,-0.0533 0.0743,-0.0533 0.009,0 0.0203,-0.01 0.0248,-0.0219 0.005,-0.0121 0.0118,-0.0185 0.016,-0.0144 0.007,0.007 0.0423,-0.0224 0.14025,-0.11385 0.0137,-0.0128 0.031,-0.0234 0.0384,-0.0234 0.008,0 0.0134,-0.006 0.0134,-0.0134 0,-0.008 0.005,-0.0134 0.0123,-0.0134 0.007,0 0.0304,-0.0165 0.0526,-0.0367 0.0941,-0.0858 0.12369,-0.11009 0.13441,-0.11009 0.006,0 0.0148,-0.009 0.019,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0204,-0.006 0.0204,-0.0134 0,-0.008 0.006,-0.0134 0.0124,-0.0134 0.007,0 0.0347,-0.0211 0.0619,-0.0468 0.0272,-0.0257 0.0542,-0.0468 0.0599,-0.0468 0.006,0 0.0374,-0.027 0.0704,-0.06 0.0331,-0.0331 0.0643,-0.0601 0.0696,-0.0601 0.005,0 0.0235,-0.015 0.0404,-0.0334 0.017,-0.0183 0.0358,-0.0334 0.0417,-0.0334 0.006,0 0.027,-0.015 0.0468,-0.0334 0.0198,-0.0183 0.0422,-0.0334 0.0499,-0.0334 0.008,0 0.014,-0.009 0.014,-0.02 0,-0.0116 0.0121,-0.02 0.029,-0.02 0.0159,0 0.0251,-0.003 0.0205,-0.009 -0.008,-0.008 0.0462,-0.0583 0.0629,-0.0583 0.005,0 0.0319,-0.0241 0.0613,-0.0533 0.0293,-0.0293 0.0627,-0.0533 0.0742,-0.0533 0.0115,0 0.0171,-0.006 0.0126,-0.0134 -0.005,-0.008 7.6e-4,-0.0134 0.0126,-0.0134 0.0115,0 0.0208,-0.005 0.0208,-0.0111 0,-0.006 0.0328,-0.0346 0.0731,-0.0633 0.0403,-0.0289 0.0732,-0.0568 0.0734,-0.0624 1.5e-4,-0.005 0.007,-0.01 0.0143,-0.01 0.008,0 0.0279,-0.0151 0.0448,-0.0334 0.017,-0.0183 0.0438,-0.0334 0.0594,-0.0334 0.0157,0 0.027,-0.005 0.0251,-0.0105 -0.002,-0.006 0.0163,-0.0298 0.0405,-0.0533 0.046,-0.045 0.0963,-0.057 0.0963,-0.0229 0,0.0111 0.009,0.02 0.02,0.02 0.0111,0 0.02,0.005 0.02,0.0119 0,0.007 0.0105,0.0154 0.0234,0.0196 0.0267,0.009 0.0672,0.0343 0.0938,0.0587 0.01,0.009 0.0222,0.0167 0.0272,0.0167 0.005,1e-5 0.0265,0.015 0.0479,0.0334 0.0213,0.0183 0.0441,0.0333 0.0506,0.0333 0.007,0 0.0258,0.015 0.0428,0.0334 0.017,0.0183 0.0352,0.0334 0.0403,0.0334 0.005,0 0.0178,0.008 0.028,0.0167 0.0463,0.0415 0.0598,0.05 0.079,0.05 0.0113,0 0.0206,0.009 0.0206,0.02 0,0.0111 0.0114,0.02 0.0253,0.02 0.0139,0 0.0287,0.009 0.033,0.02 0.005,0.0111 0.0143,0.02 0.0225,0.02 0.0192,0 0.0528,0.0339 0.0528,0.0532 0,0.009 0.005,0.0118 0.0119,0.008 0.007,-0.005 0.0267,0.005 0.0449,0.0188 0.0183,0.0144 0.0369,0.0222 0.0416,0.0177 0.005,-0.005 0.009,0.002 0.009,0.0138 0,0.0122 0.007,0.0222 0.0143,0.0222 0.008,0 0.0227,0.008 0.0328,0.0167 0.0393,0.0352 0.0587,0.05 0.0656,0.05 0.007,0 0.0825,0.0551 0.16703,0.12109 0.0182,0.0141 0.0377,0.0257 0.0434,0.0257 0.006,0 -0.0201,0.03 -0.0576,0.0667 -0.0375,0.0367 -0.0736,0.0667 -0.0801,0.0667 -0.007,0 -0.012,0.006 -0.012,0.0134 0,0.008 -0.006,0.0134 -0.014,0.0134 -0.0147,0 -0.0859,0.0613 -0.18222,0.1568 -0.0315,0.0312 -0.0604,0.0567 -0.0644,0.0567 -0.005,0 -0.0362,0.03 -0.0718,0.0667 -0.0355,0.0367 -0.0714,0.0667 -0.0796,0.0667 -0.009,0 -0.015,0.009 -0.015,0.0208 0,0.0115 -0.005,0.0177 -0.0111,0.014 -0.006,-0.003 -0.0305,0.0109 -0.0542,0.0326 -0.0237,0.0216 -0.0488,0.0393 -0.0556,0.0393 -0.007,0 -0.0125,0.005 -0.0125,0.0123 0,0.0129 -0.077,0.0944 -0.0891,0.0944 -0.006,0 -0.0482,0.0377 -0.15182,0.13677 -0.0211,0.0203 -0.0419,0.0367 -0.0461,0.0367 -0.005,0 -0.021,0.0137 -0.0371,0.0305 -0.0162,0.0168 -0.0564,0.0511 -0.0894,0.0763 -0.0331,0.0251 -0.0791,0.0655 -0.10251,0.0896 -0.0234,0.0241 -0.0489,0.0438 -0.0567,0.0438 -0.008,0 -0.0142,0.009 -0.0142,0.02 0,0.0111 -0.008,0.02 -0.0177,0.02 -0.01,0 -0.0258,0.015 -0.0356,0.0334 -0.01,0.0183 -0.0236,0.0334 -0.0307,0.0334 -0.007,0 -0.0268,0.015 -0.0439,0.0334 -0.017,0.0183 -0.0376,0.0334 -0.0457,0.0334 -0.008,0 -0.0118,0.005 -0.008,0.0109 0.003,0.006 -0.0118,0.0219 -0.0343,0.0351 -0.0226,0.0134 -0.0636,0.0474 -0.0911,0.0759 -0.0276,0.0283 -0.0568,0.0516 -0.065,0.0516 -0.009,0 -0.0149,0.009 -0.0149,0.02 0,0.011 -0.005,0.02 -0.01,0.02 -0.0126,4e-5 -0.11046,0.0821 -0.18695,0.15674 -0.032,0.0312 -0.0636,0.0567 -0.0704,0.0567 -0.007,0 -0.0221,0.015 -0.034,0.0332 -0.012,0.0183 -0.0271,0.03 -0.0337,0.0259 -0.007,-0.005 -0.012,5.2e-4 -0.0122,0.0101 -1.5e-4,0.01 -0.03,0.0385 -0.0665,0.0642 -0.0364,0.0257 -0.0662,0.0512 -0.0665,0.0567 -1.5e-4,0.005 -0.009,0.01 -0.0203,0.01 -0.0111,0 -0.02,0.009 -0.02,0.02 0,0.0111 -0.007,0.02 -0.0143,0.02 -0.008,0 -0.0229,0.009 -0.0334,0.019 -0.0105,0.0105 -0.019,0.0255 -0.019,0.0334 0,0.008 -0.006,0.0143 -0.0138,0.0143 -0.008,0 -0.0305,0.0165 -0.0508,0.0367 -0.0463,0.0459 -0.14661,0.12862 -0.16316,0.13454 -0.007,0.002 -0.0125,0.0129 -0.0125,0.0234 0,0.0105 -0.009,0.0189 -0.02,0.0189 -0.0109,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0109,0 -0.02,0.008 -0.02,0.0177 0,0.01 -0.015,0.0257 -0.0334,0.0356 -0.0183,0.01 -0.0334,0.0262 -0.0334,0.0364 0,0.0102 -0.005,0.0155 -0.0109,0.0119 -0.006,-0.003 -0.0388,0.0199 -0.0729,0.0526 -0.0341,0.0326 -0.0671,0.0594 -0.0736,0.0594 -0.006,0 -0.0196,0.015 -0.0294,0.0334 -0.01,0.0183 -0.0231,0.0334 -0.0296,0.0334 -0.007,0 -0.0249,0.0137 -0.0411,0.0305 -0.0162,0.0168 -0.0562,0.0513 -0.0891,0.0767 -0.0328,0.0254 -0.0799,0.0658 -0.10455,0.0896 -0.0247,0.0239 -0.0503,0.0433 -0.057,0.0433 -0.007,0 -0.0122,0.009 -0.0122,0.02 0,0.011 -0.006,0.02 -0.0134,0.02 -0.008,0 -0.0389,0.024 -0.0701,0.0532 -0.0312,0.0292 -0.073,0.0682 -0.0929,0.0867 -0.0199,0.0185 -0.0424,0.0335 -0.05,0.0335 -0.008,0 -0.0139,0.009 -0.0139,0.02 0,0.0111 -0.008,0.02 -0.0169,0.02 -0.009,0 -0.0281,0.0151 -0.0419,0.0334 -0.0138,0.0183 -0.0301,0.0334 -0.0363,0.0334 -0.0116,0 -0.055,0.0364 -0.14677,0.12343 -0.029,0.0276 -0.0589,0.05 -0.0665,0.05 -0.008,0 -0.01,0.006 -0.005,0.0134 0.005,0.008 -7.7e-4,0.0134 -0.0126,0.0134 -0.0115,0 -0.0208,0.009 -0.0208,0.02 0,0.0111 -0.006,0.02 -0.0129,0.02 -0.007,0 -0.0439,0.03 -0.0818,0.0667 -0.0378,0.0368 -0.074,0.0667 -0.0805,0.0667 -0.006,0 -0.0449,0.0331 -0.0856,0.0734 -0.0406,0.0403 -0.0792,0.0733 -0.0856,0.0733 -0.006,0 -0.0147,0.008 -0.0184,0.0167 -0.005,0.0134 -0.007,0.0134 -0.008,0 z m -1.50221,-1.53083 c -0.022,-0.0251 -0.0475,-0.0461 -0.0567,-0.0464 -0.009,-2.6e-4 -0.0167,-0.01 -0.0167,-0.0206 0,-0.0111 -0.009,-0.02 -0.02,-0.02 -0.0111,0 -0.02,-0.007 -0.02,-0.0149 0,-0.009 -0.0751,-0.0894 -0.1668,-0.18044 -0.0917,-0.0911 -0.16679,-0.17146 -0.16679,-0.17862 0,-0.007 -0.008,-0.0131 -0.0167,-0.0132 -0.009,-5e-5 -0.0377,-0.0247 -0.0633,-0.0548 -0.0428,-0.0502 -0.15564,-0.1732 -0.18819,-0.20522 -0.12475,-0.12271 -0.19877,-0.19935 -0.19877,-0.20581 0,-0.009 0.043,-0.0335 0.0834,-0.0487 0.0128,-0.005 0.0234,-0.0141 0.0234,-0.0206 0,-0.007 0.006,-0.0118 0.014,-0.0118 0.008,0 0.0302,-0.0152 0.05,-0.0338 0.0199,-0.0186 0.0661,-0.053 0.10283,-0.0765 0.0368,-0.0235 0.0688,-0.0473 0.0711,-0.0529 0.002,-0.006 0.0123,-0.0103 0.0219,-0.0103 0.01,0 0.021,-0.009 0.0252,-0.02 0.005,-0.0109 0.0154,-0.02 0.0249,-0.02 0.009,0 0.0334,-0.015 0.0532,-0.0334 0.0198,-0.0183 0.0423,-0.0334 0.0499,-0.0334 0.008,0 0.014,-0.009 0.014,-0.0208 0,-0.0115 0.005,-0.0176 0.0117,-0.0135 0.007,0.005 0.032,-0.0105 0.0567,-0.0322 0.0248,-0.0216 0.0645,-0.05 0.0883,-0.0629 0.0239,-0.0129 0.0434,-0.0281 0.0434,-0.0338 0,-0.006 0.009,-0.0102 0.0189,-0.0102 0.0105,0 0.0209,-0.005 0.0234,-0.0101 0.006,-0.0135 0.11264,-0.0967 0.12407,-0.0967 0.005,0 0.0174,-0.008 0.0277,-0.0167 0.0442,-0.0396 0.0593,-0.05 0.0724,-0.05 0.008,0 0.014,-0.006 0.014,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.006 0.02,-0.0137 0,-0.008 0.015,-0.0193 0.0334,-0.0264 0.0183,-0.007 0.0334,-0.0188 0.0334,-0.0264 0,-0.008 0.009,-0.0137 0.02,-0.0137 0.0111,0 0.02,-0.006 0.02,-0.0134 0,-0.008 0.009,-0.0134 0.0204,-0.0134 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0111 0.013,-0.02 0.0194,-0.02 0.0112,0 0.0473,-0.0267 0.086,-0.0633 0.01,-0.009 0.024,-0.0167 0.0319,-0.0167 0.008,0 0.0143,-0.006 0.0143,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0109,0 0.02,-0.006 0.02,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.006,-0.0119 0.0139,-0.0119 0.0131,0 0.0282,-0.0105 0.0724,-0.05 0.0102,-0.009 0.025,-0.0167 0.0328,-0.0167 0.008,0 0.0143,-0.009 0.0143,-0.02 0,-0.011 0.009,-0.02 0.02,-0.02 0.0111,0 0.02,-0.006 0.02,-0.0125 0,-0.007 0.0131,-0.0166 0.029,-0.0216 0.0161,-0.005 0.0445,-0.0235 0.0633,-0.041 0.0189,-0.0175 0.0418,-0.0317 0.051,-0.0317 0.009,0 0.0169,-0.005 0.0169,-0.01 0,-0.005 0.0315,-0.031 0.07,-0.0567 0.0384,-0.0257 0.0849,-0.0602 0.10325,-0.0767 0.0387,-0.0348 0.0646,-0.0383 0.0755,-0.01 0.005,0.0111 0.0134,0.02 0.0205,0.02 0.0173,0 0.051,0.0346 0.051,0.0524 0,0.008 0.007,0.0143 0.0144,0.0143 0.008,0 0.0324,0.018 0.0544,0.0401 0.022,0.022 0.0453,0.04 0.0517,0.04 0.007,0 0.0574,0.045 0.11343,0.10008 0.0559,0.0551 0.10637,0.10008 0.11206,0.10008 0.006,0 0.0265,0.015 0.0463,0.0334 0.0198,0.0183 0.0417,0.0334 0.0487,0.0334 0.007,0 0.0127,0.009 0.0127,0.02 0,0.0111 0.006,0.02 0.0139,0.02 0.0149,0 0.0316,0.0125 0.0941,0.0701 0.0219,0.0202 0.0433,0.0367 0.0477,0.0367 0.005,0 0.0278,0.021 0.052,0.0468 0.0242,0.0257 0.0504,0.0468 0.0583,0.0468 0.008,0 0.0142,0.009 0.0142,0.02 0,0.011 0.006,0.02 0.014,0.02 0.008,0 0.0279,0.0135 0.0449,0.03 0.017,0.0165 0.0422,0.0367 0.056,0.0448 0.0215,0.0127 0.0225,0.0178 0.007,0.0367 -0.01,0.0121 -0.0264,0.0219 -0.0367,0.0219 -0.0101,0 -0.0184,0.009 -0.0184,0.02 0,0.0111 -0.005,0.02 -0.0119,0.02 -0.007,0 -0.0261,0.0149 -0.0434,0.0332 -0.0173,0.0183 -0.0377,0.0332 -0.0453,0.0334 -0.008,1.5e-4 -0.0362,0.0212 -0.0635,0.0469 -0.0272,0.0257 -0.054,0.0468 -0.0595,0.0468 -0.005,5e-5 -0.0292,0.0181 -0.0526,0.04 -0.0235,0.022 -0.049,0.04 -0.0567,0.04 -0.008,0 -0.0141,0.009 -0.0141,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.007,0.0134 -0.0143,0.0134 -0.008,0 -0.0227,0.008 -0.0329,0.0167 -0.04,0.0359 -0.0587,0.05 -0.0662,0.05 -0.009,0 -0.0213,0.01 -0.0764,0.0575 -0.0199,0.0174 -0.052,0.0431 -0.0711,0.0571 -0.0348,0.0255 -0.0786,0.0598 -0.1088,0.0853 -0.009,0.008 -0.0223,0.0136 -0.03,0.0136 -0.008,0 -0.014,0.009 -0.014,0.02 0,0.0111 -0.009,0.02 -0.0189,0.02 -0.0105,0 -0.0208,0.005 -0.0234,0.01 -0.008,0.0165 -0.11042,0.0902 -0.12121,0.0867 -0.005,-0.002 -0.01,0.006 -0.01,0.0167 0,0.0111 -0.008,0.02 -0.0169,0.02 -0.009,0 -0.0281,0.0151 -0.0419,0.0334 -0.0138,0.0183 -0.0334,0.0334 -0.0436,0.0334 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.0111 -0.0194,0.02 -0.0338,0.02 -0.0143,0 -0.0223,0.006 -0.0178,0.0134 0.005,0.008 9e-5,0.0134 -0.01,0.0134 -0.01,0 -0.0432,0.0241 -0.0736,0.0533 -0.0306,0.0293 -0.0618,0.0533 -0.0694,0.0533 -0.008,0 -0.0138,0.005 -0.0138,0.0111 0,0.006 -0.0285,0.0315 -0.0633,0.0565 -0.0348,0.0249 -0.0754,0.0581 -0.0901,0.0738 -0.0147,0.0157 -0.0402,0.0326 -0.0567,0.0378 -0.0165,0.005 -0.03,0.015 -0.03,0.0219 0,0.007 -0.006,0.0125 -0.014,0.0125 -0.008,0 -0.0301,0.015 -0.0499,0.0334 -0.0198,0.0183 -0.0469,0.0334 -0.0603,0.0334 -0.0134,0 -0.0212,0.005 -0.0175,0.0109 0.008,0.0122 -0.0382,0.0558 -0.0587,0.0558 -0.007,0 -0.0132,0.008 -0.0132,0.0171 0,0.009 -0.0191,0.0284 -0.0425,0.0422 -0.0397,0.0234 -0.0852,0.0588 -0.12519,0.0974 -0.0226,0.0219 -0.0198,0.023 -0.0659,-0.0297 z m -1.31892,-1.34259 c -0.0415,-0.0434 -0.0754,-0.0814 -0.0754,-0.0845 0,-0.0111 -0.0824,-0.0877 -0.0944,-0.0877 -0.007,0 -0.0123,-0.009 -0.0123,-0.02 0,-0.0111 -0.007,-0.02 -0.0143,-0.02 -0.0185,0 -0.0524,-0.0339 -0.0524,-0.0524 0,-0.008 -0.007,-0.0143 -0.0143,-0.0143 -0.0185,0 -0.0524,-0.0339 -0.0524,-0.0524 0,-0.008 -0.009,-0.0143 -0.02,-0.0143 -0.0111,0 -0.02,-0.009 -0.02,-0.02 0,-0.0111 -0.006,-0.02 -0.0138,-0.02 -0.014,0 -0.093,-0.075 -0.093,-0.0881 0,-0.0128 -0.0377,-0.0453 -0.0524,-0.0453 -0.008,0 -0.0143,-0.007 -0.0143,-0.0154 0,-0.017 -0.10466,-0.11804 -0.12232,-0.11804 -0.006,0 -0.0111,-0.007 -0.0111,-0.0144 0,-0.008 -0.0219,-0.0357 -0.0487,-0.0618 l -0.0487,-0.0474 0.0321,-0.0247 c 0.0177,-0.0135 0.039,-0.0248 0.0474,-0.0249 0.009,-1.5e-4 0.0187,-0.009 0.0229,-0.0203 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0204,-0.006 0.0204,-0.0134 0,-0.008 0.012,-0.0134 0.0267,-0.0134 0.0148,0 0.0267,-0.009 0.0267,-0.02 0,-0.0111 0.009,-0.02 0.0184,-0.02 0.0101,0 0.0254,-0.009 0.034,-0.0187 0.009,-0.0104 0.0363,-0.0286 0.0616,-0.0406 0.0254,-0.0121 0.0461,-0.0276 0.0461,-0.0346 0,-0.007 0.0144,-0.0128 0.0319,-0.0128 0.0176,0 0.0355,-0.009 0.0399,-0.0209 0.005,-0.0115 0.0141,-0.0171 0.0214,-0.0126 0.008,0.005 0.0135,-7.6e-4 0.0135,-0.0125 0,-0.0115 0.009,-0.0208 0.02,-0.0208 0.0111,0 0.02,-0.005 0.02,-0.0108 0,-0.006 0.0241,-0.0214 0.0534,-0.0343 0.0293,-0.0129 0.0609,-0.0306 0.0701,-0.0393 0.009,-0.009 0.0391,-0.0276 0.0667,-0.0421 0.0275,-0.0144 0.05,-0.031 0.05,-0.0367 0,-0.006 0.009,-0.0102 0.02,-0.0102 0.0111,0 0.02,-0.006 0.02,-0.0124 0,-0.007 0.0135,-0.0167 0.03,-0.0219 0.0165,-0.005 0.0432,-0.0236 0.0594,-0.0409 0.0162,-0.0173 0.0389,-0.0315 0.0504,-0.0315 0.0116,0 0.0243,-0.009 0.0283,-0.0189 0.005,-0.0104 0.0346,-0.0269 0.068,-0.0368 0.0334,-0.01 0.0636,-0.0254 0.0672,-0.0345 0.003,-0.009 0.0126,-0.0167 0.0201,-0.0167 0.008,0 0.0273,-0.0147 0.0439,-0.0326 0.0166,-0.0179 0.0328,-0.0299 0.0361,-0.0266 0.003,0.003 0.0169,-0.006 0.0302,-0.0208 0.0134,-0.0147 0.0322,-0.0268 0.0422,-0.0268 0.01,0 0.0179,-0.005 0.0179,-0.0102 0,-0.0102 0.0396,-0.0343 0.0834,-0.0509 0.0128,-0.005 0.0234,-0.0141 0.0234,-0.0206 0,-0.007 0.009,-0.0118 0.0205,-0.0118 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0111 0.0221,-0.02 0.0397,-0.02 0.0176,0 0.0319,-0.007 0.0319,-0.0152 0,-0.0205 0.0412,-0.0505 0.0701,-0.0511 0.0128,-2.6e-4 0.0234,-0.009 0.0234,-0.0205 0,-0.0111 0.0119,-0.02 0.0267,-0.02 0.0147,0 0.0267,-0.006 0.0267,-0.0134 0,-0.008 0.009,-0.0134 0.0205,-0.0134 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0109 0.0184,-0.02 0.0315,-0.02 0.0131,0 0.0273,-0.009 0.0315,-0.02 0.005,-0.0111 0.0141,-0.02 0.0218,-0.02 0.008,0 0.0432,-0.0196 0.0788,-0.0434 0.0356,-0.0239 0.0847,-0.0554 0.10912,-0.0701 0.0244,-0.0147 0.0552,-0.0332 0.0683,-0.0412 0.0132,-0.008 0.036,-0.0254 0.0507,-0.0388 0.0147,-0.0134 0.0268,-0.0196 0.0268,-0.0137 0,0.006 0.0159,-0.005 0.0354,-0.0249 0.0196,-0.0196 0.0495,-0.039 0.0667,-0.0433 0.0172,-0.005 0.0312,-0.0132 0.0312,-0.0198 0,-0.007 0.009,-0.0119 0.02,-0.0119 0.0109,0 0.02,-0.005 0.02,-0.0121 0,-0.007 0.0165,-0.0179 0.0368,-0.0253 0.0202,-0.007 0.0499,-0.0258 0.0662,-0.0413 0.0162,-0.0155 0.0381,-0.0282 0.0486,-0.0282 0.0105,0 0.0226,-0.009 0.0268,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0205,-0.006 0.0205,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0109,0 0.02,-0.006 0.02,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.009,-0.0119 0.02,-0.0119 0.0111,0 0.02,-0.006 0.02,-0.0124 0,-0.007 0.0129,-0.0165 0.0288,-0.0215 0.0158,-0.005 0.042,-0.0235 0.0582,-0.0409 0.0162,-0.0175 0.0433,-0.0318 0.0602,-0.0318 0.0169,0 0.0267,-0.005 0.0219,-0.009 -0.008,-0.008 0.0192,-0.0283 0.0711,-0.0531 0.0111,-0.005 0.0248,-0.0175 0.0306,-0.0272 0.006,-0.01 0.0218,-0.0177 0.0353,-0.0177 0.0135,0 0.0281,-0.009 0.0322,-0.02 0.005,-0.011 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0204,-0.005 0.0204,-0.0118 0,-0.007 0.0105,-0.0156 0.0234,-0.0203 0.0327,-0.0118 0.0797,-0.0403 0.11527,-0.0697 0.0432,-0.0357 0.078,-0.058 0.10491,-0.067 0.0128,-0.005 0.0234,-0.0124 0.0234,-0.018 0,-0.006 0.0105,-0.0138 0.0234,-0.0181 0.0313,-0.0105 0.0651,-0.0326 0.12631,-0.0827 0.009,-0.008 0.0261,-0.0183 0.0371,-0.0234 0.0111,-0.005 0.038,-0.021 0.0601,-0.035 0.022,-0.0141 0.0539,-0.026 0.0708,-0.0265 0.0171,-5.1e-4 0.0271,-0.007 0.0225,-0.0144 -0.005,-0.008 0.002,-0.0176 0.0159,-0.0226 0.0133,-0.005 0.0315,-0.0155 0.0404,-0.0233 0.0468,-0.0406 0.0578,-0.0474 0.0766,-0.0474 0.0113,0 0.0206,-0.005 0.0206,-0.0106 0,-0.006 0.0239,-0.0254 0.053,-0.0434 0.0292,-0.018 0.0532,-0.0371 0.0533,-0.0427 2.1e-4,-0.005 0.0118,-0.01 0.0256,-0.01 0.0138,0 0.0283,-0.008 0.0321,-0.0179 0.003,-0.01 0.0284,-0.0282 0.0548,-0.0406 0.0264,-0.0125 0.048,-0.0285 0.048,-0.0354 0,-0.007 0.009,-0.0127 0.02,-0.0127 0.0111,0 0.02,-0.005 0.02,-0.0102 0,-0.0102 0.0396,-0.0343 0.0834,-0.0509 0.0128,-0.005 0.0234,-0.0141 0.0234,-0.0206 0,-0.007 0.008,-0.0118 0.018,-0.0118 0.01,0 0.0354,-0.0151 0.0567,-0.0335 0.0213,-0.0184 0.0503,-0.0371 0.0645,-0.0417 0.0141,-0.005 0.0411,-0.0225 0.0599,-0.0399 0.0189,-0.0175 0.0418,-0.0317 0.051,-0.0317 0.009,0 0.0168,-0.005 0.0168,-0.0109 0,-0.006 0.027,-0.0245 0.06,-0.041 0.0331,-0.0165 0.06,-0.0342 0.06,-0.0392 0,-0.009 0.0109,-0.0163 0.10117,-0.0623 0.0287,-0.0147 0.0544,-0.0313 0.0568,-0.037 0.002,-0.006 0.028,-0.0223 0.0567,-0.037 0.0286,-0.0147 0.0521,-0.0325 0.0521,-0.0396 0,-0.007 0.0144,-0.0131 0.0319,-0.0131 0.0176,0 0.0354,-0.009 0.0397,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0205,-0.006 0.0205,-0.0134 0,-0.008 0.01,-0.0134 0.0219,-0.0134 0.012,0 0.0357,-0.015 0.0527,-0.0334 0.017,-0.0183 0.0404,-0.0334 0.052,-0.0334 0.0115,0 0.0244,-0.009 0.0287,-0.02 0.005,-0.0111 0.016,-0.02 0.0263,-0.02 0.0102,0 0.0186,-0.006 0.0186,-0.0124 0,-0.007 0.0135,-0.0167 0.03,-0.0219 0.0165,-0.005 0.0331,-0.0134 0.0367,-0.0182 0.0108,-0.0144 0.17561,-0.12104 0.1869,-0.12104 0.006,0 0.0139,-0.009 0.018,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0204,-0.006 0.0204,-0.0134 0,-0.008 0.009,-0.0134 0.021,-0.0134 0.0115,0 0.0299,-0.009 0.041,-0.02 0.011,-0.0111 0.0306,-0.02 0.0435,-0.02 0.0129,0 0.0307,-0.0135 0.0396,-0.03 0.009,-0.0165 0.0399,-0.0415 0.0689,-0.0555 0.029,-0.0141 0.0528,-0.0306 0.0528,-0.0368 0,-0.0247 0.0756,-0.009 0.10964,0.0222 0.0198,0.0183 0.0455,0.0334 0.057,0.0334 0.0115,0 0.0245,0.009 0.0286,0.02 0.005,0.011 0.016,0.02 0.0263,0.02 0.0102,0 0.0186,0.006 0.0186,0.0134 0,0.008 0.0144,0.0134 0.0319,0.0134 0.0176,0 0.0354,0.009 0.0397,0.02 0.005,0.0109 0.0169,0.02 0.028,0.02 0.0112,0 0.0204,0.006 0.0204,0.0131 0,0.007 0.015,0.0169 0.0333,0.0214 0.0183,0.005 0.0299,0.0137 0.026,0.0203 -0.005,0.007 -1.6e-4,0.0119 0.009,0.0119 0.009,0 0.054,0.0241 0.10054,0.0533 0.0465,0.0293 0.0902,0.0533 0.0971,0.0533 0.007,0 0.0145,0.005 0.017,0.01 0.007,0.0145 0.12964,0.0967 0.14494,0.0967 0.007,0 0.0129,0.006 0.0129,0.0134 0,0.008 0.0122,0.0134 0.0271,0.0134 0.0149,0 0.0306,0.009 0.0348,0.02 0.005,0.011 0.016,0.02 0.0263,0.02 0.0102,0 0.0186,0.006 0.0186,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.006 -0.02,0.0124 0,0.007 -0.0131,0.0166 -0.029,0.0217 -0.016,0.005 -0.0445,0.0234 -0.0633,0.041 -0.0189,0.0175 -0.039,0.0317 -0.0449,0.0317 -0.006,0 -0.0248,0.0151 -0.0417,0.0334 -0.017,0.0183 -0.0377,0.0334 -0.0461,0.0334 -0.009,0 -0.0151,0.006 -0.0151,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.009,0.0119 -0.02,0.0119 -0.0111,0 -0.02,0.009 -0.02,0.0184 0,0.0102 -0.0105,0.022 -0.0234,0.0263 -0.025,0.009 -0.0724,0.0368 -0.0834,0.05 -0.003,0.005 -0.0324,0.0241 -0.0639,0.0439 -0.0314,0.0197 -0.0692,0.0478 -0.0839,0.0625 -0.0147,0.0147 -0.0325,0.0231 -0.0396,0.0187 -0.007,-0.005 -0.0128,0.002 -0.0128,0.0128 0,0.0115 -0.009,0.0208 -0.02,0.0208 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.006,0.0134 -0.0134,0.0134 -0.008,0 -0.0425,0.0209 -0.078,0.0464 -0.0356,0.0256 -0.0687,0.0426 -0.0734,0.0378 -0.005,-0.005 -0.009,-0.002 -0.009,0.007 0,0.009 -0.006,0.0156 -0.014,0.0156 -0.0154,0 -0.0366,0.0155 -0.0953,0.0701 -0.0218,0.0202 -0.0448,0.0367 -0.0512,0.0367 -0.006,0 -0.0164,0.008 -0.0223,0.0167 -0.006,0.009 -0.0286,0.0257 -0.0506,0.0367 -0.0219,0.011 -0.0526,0.0335 -0.0682,0.05 -0.0156,0.0165 -0.0384,0.03 -0.0506,0.03 -0.0122,0 -0.0257,0.009 -0.0299,0.02 -0.005,0.011 -0.016,0.02 -0.0263,0.02 -0.0102,0 -0.0186,0.006 -0.0186,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.009,0.0119 -0.0208,0.0119 -0.0115,0 -0.0173,0.006 -0.0132,0.0124 0.005,0.007 -0.006,0.0167 -0.0225,0.0219 -0.0166,0.005 -0.0434,0.0236 -0.0596,0.041 -0.0162,0.0174 -0.038,0.0315 -0.0487,0.0315 -0.0105,0 -0.0227,0.009 -0.0269,0.02 -0.005,0.0109 -0.0169,0.02 -0.0281,0.02 -0.0112,0 -0.0205,0.005 -0.0205,0.0103 0,0.006 -0.0225,0.0222 -0.05,0.0367 -0.0275,0.0144 -0.065,0.0399 -0.0833,0.0564 -0.0183,0.0165 -0.0381,0.03 -0.044,0.03 -0.006,0 -0.0247,0.015 -0.0417,0.0334 -0.017,0.0183 -0.037,0.0334 -0.0446,0.0334 -0.008,0 -0.0172,0.009 -0.0214,0.02 -0.005,0.0111 -0.0199,0.02 -0.0348,0.02 -0.0149,0 -0.0271,0.006 -0.0271,0.0134 0,0.008 -0.009,0.0134 -0.0186,0.0134 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.0111 -0.0158,0.02 -0.0257,0.02 -0.01,0 -0.0382,0.018 -0.0629,0.0401 -0.0247,0.022 -0.0483,0.04 -0.0526,0.04 -0.005,0 -0.0317,0.0209 -0.061,0.0464 -0.0293,0.0255 -0.061,0.0466 -0.0705,0.0467 -0.009,1.5e-4 -0.0306,0.0142 -0.0467,0.0312 -0.0162,0.017 -0.0384,0.0352 -0.0494,0.0402 -0.0111,0.005 -0.0381,0.0212 -0.0601,0.0359 -0.022,0.0147 -0.0505,0.0303 -0.0633,0.0348 -0.0128,0.005 -0.0234,0.0134 -0.0234,0.0199 0,0.007 -0.007,0.0118 -0.0143,0.0118 -0.008,0 -0.0227,0.008 -0.0328,0.0167 -0.0442,0.0397 -0.0593,0.05 -0.0724,0.05 -0.008,0 -0.0138,0.009 -0.0138,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.0111,0 -0.02,0.006 -0.02,0.0132 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0128 -0.0334,0.0182 0,0.005 -0.0211,0.0212 -0.0468,0.0349 -0.0257,0.0139 -0.0468,0.0298 -0.0468,0.0354 0,0.006 -0.009,0.0103 -0.0186,0.0103 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.0111 -0.0166,0.02 -0.0275,0.02 -0.0109,0 -0.0342,0.0143 -0.0516,0.0318 -0.0175,0.0175 -0.0448,0.0359 -0.0606,0.041 -0.0159,0.005 -0.0289,0.0147 -0.0289,0.0215 0,0.007 -0.009,0.0125 -0.02,0.0125 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.006,0.0134 -0.014,0.0134 -0.008,0 -0.0302,0.0152 -0.05,0.0338 -0.0199,0.0186 -0.0812,0.0618 -0.13619,0.0961 -0.0551,0.0342 -0.10209,0.067 -0.10452,0.073 -0.002,0.006 -0.0129,0.0107 -0.0234,0.0107 -0.0105,0 -0.0189,0.005 -0.019,0.01 -6e-5,0.005 -0.0226,0.0249 -0.05,0.0432 -0.0275,0.0183 -0.0594,0.0433 -0.0707,0.0558 -0.0115,0.0125 -0.037,0.0267 -0.0567,0.0317 -0.0198,0.005 -0.0359,0.0144 -0.0359,0.0209 0,0.007 -0.009,0.0119 -0.02,0.0119 -0.0111,0 -0.02,0.005 -0.02,0.0103 0,0.006 -0.0211,0.0215 -0.0468,0.0354 -0.0257,0.0139 -0.0468,0.0332 -0.0468,0.0431 0,0.01 -0.0121,0.0179 -0.0271,0.0179 -0.0149,0 -0.0306,0.009 -0.0348,0.02 -0.005,0.0111 -0.016,0.02 -0.0263,0.02 -0.0102,0 -0.0186,0.005 -0.0186,0.0112 0,0.006 -0.0211,0.0225 -0.0468,0.0364 -0.0257,0.0138 -0.0468,0.0298 -0.0468,0.0354 0,0.006 -0.009,0.0102 -0.02,0.0102 -0.0111,0 -0.02,0.006 -0.02,0.0137 0,0.008 -0.015,0.0193 -0.0334,0.0264 -0.0183,0.007 -0.0334,0.0188 -0.0334,0.0264 0,0.008 -0.009,0.0137 -0.02,0.0137 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.006 -0.02,0.0131 0,0.007 -0.0151,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.007,0.0119 -0.0151,0.0119 -0.009,0 -0.0278,0.0135 -0.0434,0.03 -0.0155,0.0165 -0.0612,0.0509 -0.10161,0.0763 -0.0403,0.0254 -0.0764,0.0494 -0.08,0.0533 -0.0125,0.0133 -0.0599,0.0412 -0.0834,0.049 -0.0128,0.005 -0.0234,0.0134 -0.0234,0.02 0,0.007 -0.0106,0.0162 -0.0234,0.0211 -0.0128,0.005 -0.0306,0.0151 -0.0396,0.0229 -0.0428,0.0372 -0.0567,0.0474 -0.0643,0.0474 -0.005,0 -0.0165,0.008 -0.0268,0.0167 -0.0447,0.0401 -0.0594,0.05 -0.0737,0.05 -0.017,0 -0.17693,0.11791 -0.18389,0.13552 -0.002,0.006 -0.0129,0.0113 -0.0234,0.0113 -0.0105,0 -0.019,0.005 -0.019,0.0118 0,0.007 -0.0105,0.0153 -0.0234,0.0196 -0.0313,0.0105 -0.0686,0.0357 -0.10657,0.072 -0.0173,0.0165 -0.0374,0.03 -0.0448,0.03 -0.008,0 -0.0267,0.0135 -0.0428,0.03 -0.0339,0.0345 -0.0725,0.0607 -0.10602,0.072 -0.0128,0.005 -0.0234,0.0132 -0.0234,0.0196 0,0.007 -0.006,0.0118 -0.014,0.0118 -0.0151,0 -0.0419,0.0199 -0.0767,0.0567 -0.0121,0.0128 -0.0297,0.0234 -0.0391,0.0234 -0.009,0 -0.017,0.006 -0.017,0.0125 0,0.007 -0.0121,0.0163 -0.0269,0.0209 -0.0148,0.005 -0.0235,0.0141 -0.0193,0.0209 0.005,0.007 -0.008,0.0124 -0.0274,0.0124 -0.0199,0 -0.0314,0.006 -0.0267,0.0134 0.005,0.008 -7.6e-4,0.0134 -0.0126,0.0134 -0.0115,0 -0.0208,0.006 -0.0208,0.0125 0,0.007 -0.0129,0.0165 -0.0287,0.0215 -0.0158,0.005 -0.0413,0.0225 -0.0567,0.0386 -0.0507,0.0534 -0.0658,0.0499 -0.14595,-0.0338 z m 3.73064,-0.57254 c -0.0306,-0.0293 -0.0618,-0.0533 -0.0694,-0.0533 -0.008,0 -0.0139,-0.006 -0.0139,-0.0134 0,-0.008 -0.005,-0.0134 -0.012,-0.0134 -0.0122,0 -0.0685,-0.0452 -0.13702,-0.11008 -0.0213,-0.0202 -0.0435,-0.0367 -0.0493,-0.0367 -0.006,0 -0.0186,-0.0151 -0.0285,-0.0334 -0.01,-0.0183 -0.0263,-0.0334 -0.0367,-0.0334 -0.0104,0 -0.0363,-0.0176 -0.0577,-0.039 -0.0215,-0.0215 -0.039,-0.0354 -0.039,-0.0312 0,0.005 -0.0225,-0.0164 -0.05,-0.0462 -0.0276,-0.0297 -0.0621,-0.0566 -0.0767,-0.0597 -0.0147,-0.003 -0.0251,-0.0128 -0.0234,-0.0215 0.002,-0.009 -0.002,-0.0159 -0.0106,-0.0159 -0.008,0 -0.0279,-0.015 -0.0448,-0.0334 -0.017,-0.0183 -0.0343,-0.0334 -0.0384,-0.0334 -0.005,0 -0.0298,-0.021 -0.057,-0.0468 -0.0272,-0.0257 -0.0538,-0.0467 -0.0591,-0.0467 -0.0147,0 -0.0801,-0.0639 -0.0801,-0.0783 0,-0.007 -0.008,-0.0159 -0.0167,-0.0196 -0.0102,-0.005 -0.008,-0.007 0.006,-0.008 0.0125,-5.1e-4 0.0422,-0.0191 0.0664,-0.0411 0.0242,-0.022 0.0516,-0.0401 0.0609,-0.0401 0.009,0 0.017,-0.006 0.017,-0.0134 0,-0.008 0.009,-0.0134 0.021,-0.0134 0.0115,0 0.0293,-0.008 0.0396,-0.0167 0.0442,-0.0396 0.0592,-0.05 0.0724,-0.05 0.008,0 0.0139,-0.009 0.0139,-0.02 0,-0.0126 0.0127,-0.02 0.0341,-0.02 0.0189,0 0.0306,-0.006 0.0263,-0.0127 -0.005,-0.007 0.005,-0.0189 0.0182,-0.0267 0.0143,-0.008 0.034,-0.0215 0.0438,-0.0307 0.01,-0.009 0.0402,-0.0318 0.0676,-0.0501 0.0275,-0.0183 0.05,-0.0378 0.05,-0.0433 5e-5,-0.005 0.006,-0.01 0.014,-0.01 0.008,0 0.027,-0.0122 0.0431,-0.0272 0.0161,-0.015 0.0428,-0.0306 0.0595,-0.0348 0.0167,-0.005 0.0303,-0.0164 0.0303,-0.027 0,-0.0106 0.005,-0.016 0.0119,-0.012 0.007,0.005 0.0154,-0.002 0.0196,-0.0126 0.005,-0.0109 0.02,-0.0199 0.0352,-0.0199 0.0151,0 0.031,-0.009 0.0352,-0.02 0.005,-0.0111 0.0164,-0.02 0.027,-0.02 0.0107,0 0.0157,-0.006 0.0112,-0.0134 -0.005,-0.008 -0.002,-0.0134 0.007,-0.0134 0.0158,0 0.0423,-0.0193 0.0775,-0.0567 0.0121,-0.0128 0.0312,-0.0235 0.0425,-0.0238 0.0208,-5.1e-4 0.0813,-0.0396 0.0611,-0.0396 -0.006,0 0.0111,-0.015 0.0381,-0.0334 0.027,-0.0183 0.0549,-0.0334 0.0619,-0.0334 0.007,0 0.0128,-0.006 0.0128,-0.0134 0,-0.008 0.006,-0.0134 0.0128,-0.0134 0.007,0 0.0313,-0.018 0.0539,-0.0401 0.0225,-0.022 0.0475,-0.04 0.0555,-0.04 0.008,0 0.0244,-0.0105 0.0362,-0.0234 0.0118,-0.0128 0.0448,-0.0352 0.0732,-0.0497 0.0283,-0.0144 0.0545,-0.034 0.0581,-0.0434 0.003,-0.009 0.0134,-0.017 0.0219,-0.017 0.009,0 0.0316,-0.015 0.0513,-0.0334 0.0198,-0.0183 0.0409,-0.0334 0.0468,-0.0334 0.006,0 0.0269,-0.015 0.0468,-0.0334 0.0198,-0.0183 0.0425,-0.0334 0.0504,-0.0334 0.008,0 0.0178,-0.009 0.022,-0.02 0.005,-0.0111 0.0154,-0.02 0.0248,-0.02 0.009,0 0.0206,-0.009 0.0248,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0204,-0.006 0.0204,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.005 0.02,-0.0102 0,-0.006 0.0241,-0.025 0.0533,-0.0432 0.0293,-0.0182 0.0533,-0.0376 0.0533,-0.0432 0,-0.006 0.007,-0.0102 0.0143,-0.0102 0.008,0 0.0227,-0.008 0.0328,-0.0167 0.0408,-0.0367 0.0588,-0.05 0.0671,-0.05 0.0112,0 0.11784,-0.0834 0.12368,-0.0966 0.002,-0.005 0.0129,-0.0101 0.0234,-0.0101 0.0105,0 0.0189,-0.005 0.0189,-0.0112 0,-0.006 0.024,-0.0227 0.0532,-0.0368 0.0293,-0.014 0.0532,-0.0316 0.0533,-0.0391 1e-4,-0.008 0.0209,-0.0248 0.0462,-0.0384 0.0254,-0.0136 0.0597,-0.0375 0.0764,-0.0531 0.0167,-0.0155 0.0335,-0.0286 0.0374,-0.0291 0.0167,-0.002 0.0936,-0.0534 0.0936,-0.0625 4e-5,-0.005 0.0121,-0.01 0.0268,-0.01 0.0148,0 0.0267,-0.009 0.0267,-0.02 0,-0.0109 0.009,-0.02 0.02,-0.02 0.0111,0 0.02,-0.006 0.02,-0.0134 0,-0.008 0.009,-0.0134 0.0186,-0.0134 0.0102,0 0.022,-0.009 0.0263,-0.02 0.005,-0.011 0.0164,-0.02 0.027,-0.02 0.0106,0 0.0213,-0.005 0.0238,-0.01 0.008,-0.0167 0.11532,-0.0967 0.13043,-0.0967 0.008,0 0.0141,-0.005 0.0141,-0.0105 0,-0.006 0.0195,-0.0219 0.0433,-0.0357 0.0239,-0.0138 0.0464,-0.0289 0.05,-0.0332 0.0186,-0.0225 0.11921,-0.0941 0.13202,-0.0941 0.008,0 0.0147,-0.006 0.0147,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.006 0.02,-0.0134 0,-0.008 0.024,-0.0238 0.0533,-0.0364 0.0293,-0.0127 0.0533,-0.0307 0.0533,-0.04 0,-0.009 0.007,-0.0169 0.0143,-0.0169 0.008,0 0.0227,-0.008 0.0328,-0.0167 0.0423,-0.0379 0.059,-0.05 0.069,-0.0501 0.006,-3e-5 0.0298,-0.018 0.0533,-0.04 0.0234,-0.022 0.049,-0.04 0.0567,-0.04 0.008,0 0.0141,-0.006 0.0141,-0.0134 0,-0.008 0.009,-0.0134 0.0189,-0.0134 0.0105,0 0.0208,-0.005 0.0234,-0.01 0.007,-0.0148 0.12679,-0.0967 0.14197,-0.0967 0.007,0 0.0165,-0.009 0.0207,-0.02 0.005,-0.0111 0.0141,-0.02 0.0221,-0.02 0.008,0 0.0293,-0.015 0.0477,-0.0334 0.0183,-0.0183 0.0393,-0.0334 0.0466,-0.0334 0.007,0 0.0308,-0.018 0.0523,-0.04 0.0215,-0.022 0.047,-0.0401 0.0567,-0.0401 0.01,0 0.0262,-0.012 0.0368,-0.0267 0.0106,-0.0148 0.0269,-0.0267 0.0363,-0.0267 0.009,0 0.017,-0.006 0.017,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.009,-0.0119 0.02,-0.0119 0.0111,0 0.02,-0.009 0.02,-0.0185 0,-0.0102 0.0105,-0.022 0.0234,-0.0263 0.0299,-0.01 0.0665,-0.0342 0.10925,-0.072 0.0186,-0.0165 0.0416,-0.03 0.0508,-0.03 0.009,0 0.0168,-0.006 0.0168,-0.0134 0,-0.008 0.009,-0.0134 0.0205,-0.0134 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0111 0.0134,-0.02 0.0205,-0.02 0.007,0 0.0212,-0.008 0.0315,-0.0167 0.037,-0.0332 0.0537,-0.0452 0.0984,-0.0708 0.025,-0.0143 0.0695,-0.0485 0.0989,-0.076 0.0293,-0.0276 0.0613,-0.05 0.0712,-0.05 0.01,0 0.0179,-0.005 0.0179,-0.0105 0,-0.0107 0.1639,-0.12293 0.17953,-0.12293 0.005,0 0.0225,-0.015 0.0395,-0.0334 0.0305,-0.0328 0.0879,-0.046 0.0879,-0.02 0,0.008 0.009,0.0134 0.0186,0.0134 0.0102,0 0.0221,0.009 0.0263,0.02 0.005,0.0111 0.0199,0.02 0.0348,0.02 0.0149,0 0.0271,0.005 0.0271,0.0119 0,0.007 0.0211,0.0158 0.0468,0.0206 0.0257,0.005 0.0468,0.0144 0.0468,0.0215 0,0.007 0.012,0.0128 0.0267,0.0128 0.0147,0 0.0267,0.005 0.0267,0.0108 0,0.006 0.0255,0.0217 0.0567,0.035 0.0312,0.0134 0.0642,0.0336 0.0733,0.0452 0.0108,0.0135 0.0167,0.0151 0.0167,0.005 0,-0.0101 0.0102,-0.007 0.0269,0.009 0.0275,0.0256 0.0606,0.0448 0.11986,0.0693 0.0183,0.008 0.0513,0.0257 0.0733,0.0402 0.022,0.0144 0.049,0.0299 0.06,0.0343 0.0506,0.0203 0.0882,0.0403 0.10436,0.0556 0.01,0.009 0.0262,0.0167 0.0367,0.0167 0.0105,0 0.0191,0.006 0.0191,0.0134 0,0.008 0.015,0.0134 0.0334,0.0134 0.0183,0 0.0332,0.005 0.0329,0.01 -5.2e-4,0.0144 -0.0342,0.0567 -0.045,0.0567 -0.005,0 -0.0231,0.015 -0.0401,0.0334 -0.017,0.0183 -0.0352,0.0334 -0.0403,0.0334 -0.005,0 -0.0178,0.008 -0.028,0.0167 -0.0401,0.036 -0.0587,0.05 -0.0662,0.05 -0.005,0 -0.0211,0.0139 -0.0372,0.0309 -0.0162,0.017 -0.0504,0.0436 -0.0761,0.0593 -0.0257,0.0157 -0.0555,0.0409 -0.0664,0.0559 -0.0108,0.0151 -0.0272,0.0275 -0.0365,0.0275 -0.009,0 -0.0331,0.018 -0.0526,0.04 -0.0196,0.022 -0.0437,0.04 -0.0535,0.04 -0.01,0 -0.0178,0.006 -0.0178,0.0134 0,0.008 -0.008,0.0134 -0.0173,0.0134 -0.009,0 -0.0423,0.0241 -0.0729,0.0533 -0.0306,0.0293 -0.0613,0.0533 -0.0683,0.0533 -0.007,0 -0.0147,0.005 -0.0172,0.0106 -0.002,0.006 -0.0311,0.0313 -0.0636,0.0567 -0.0326,0.0254 -0.069,0.0552 -0.0811,0.0662 -0.0406,0.0371 -0.099,0.0801 -0.10895,0.0801 -0.005,0 -0.0351,0.0241 -0.066,0.0533 -0.0308,0.0293 -0.062,0.0533 -0.0691,0.0533 -0.007,0 -0.0269,0.015 -0.0439,0.0334 -0.017,0.0183 -0.0347,0.0334 -0.0391,0.0334 -0.005,0 -0.0166,0.008 -0.0269,0.0167 -0.0442,0.0396 -0.0593,0.05 -0.0724,0.05 -0.008,0 -0.0139,0.009 -0.0139,0.02 0,0.0111 -0.006,0.02 -0.014,0.02 -0.008,0 -0.0302,0.015 -0.0499,0.0334 -0.0198,0.0183 -0.0436,0.0334 -0.0528,0.0334 -0.009,0 -0.0168,0.009 -0.0168,0.02 0,0.0111 -0.008,0.02 -0.018,0.02 -0.01,0 -0.0397,0.0211 -0.066,0.0468 -0.0264,0.0257 -0.0537,0.0468 -0.0604,0.0468 -0.007,0 -0.0355,0.0212 -0.064,0.0473 -0.0283,0.026 -0.0652,0.0506 -0.0818,0.0548 -0.0166,0.005 -0.0301,0.0159 -0.0301,0.0261 0,0.0102 -0.007,0.0186 -0.0144,0.0186 -0.008,0 -0.0382,0.024 -0.0672,0.0533 -0.0291,0.0293 -0.0594,0.0533 -0.0675,0.0533 -0.008,0 -0.0285,0.015 -0.0455,0.0334 -0.017,0.0183 -0.0361,0.0334 -0.0426,0.0334 -0.006,0 -0.0257,0.015 -0.043,0.0334 -0.0172,0.0183 -0.0368,0.0334 -0.0434,0.0334 -0.007,0 -0.0307,0.0186 -0.0535,0.0415 -0.0228,0.0228 -0.0644,0.0566 -0.0924,0.0752 -0.028,0.0185 -0.051,0.0389 -0.051,0.0452 0,0.006 -0.009,0.0115 -0.02,0.0115 -0.011,0 -0.02,0.005 -0.02,0.0105 0,0.006 -0.0165,0.0205 -0.0368,0.033 -0.0202,0.0123 -0.0577,0.0406 -0.0834,0.0627 -0.0759,0.0655 -0.0783,0.0673 -0.0928,0.0673 -0.008,0 -0.014,0.006 -0.014,0.0125 0,0.007 -0.0121,0.0163 -0.0269,0.0209 -0.0148,0.005 -0.0235,0.0141 -0.0193,0.0209 0.005,0.007 -0.002,0.0124 -0.0132,0.0124 -0.0115,0 -0.0208,0.006 -0.0208,0.0137 0,0.008 -0.015,0.0193 -0.0334,0.0264 -0.0183,0.007 -0.0334,0.0188 -0.0334,0.0264 0,0.008 -0.009,0.0137 -0.02,0.0137 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.006,0.0134 -0.014,0.0134 -0.008,0 -0.0301,0.0151 -0.0499,0.0334 -0.0198,0.0183 -0.0436,0.0334 -0.0528,0.0334 -0.009,0 -0.0168,0.009 -0.0168,0.02 0,0.0111 -0.009,0.02 -0.0186,0.02 -0.0102,0 -0.0221,0.009 -0.0263,0.02 -0.005,0.011 -0.0203,0.02 -0.0356,0.02 -0.0154,0 -0.0244,0.006 -0.0202,0.0124 0.005,0.007 -0.0105,0.0232 -0.0326,0.0362 -0.0221,0.0131 -0.0403,0.0285 -0.0403,0.0342 0,0.006 -0.009,0.0105 -0.02,0.0105 -0.0111,0 -0.02,0.005 -0.02,0.0111 0,0.006 -0.0285,0.0314 -0.0633,0.0562 -0.0348,0.0248 -0.0694,0.0517 -0.0767,0.0597 -0.0243,0.0267 -0.11139,0.0865 -0.12587,0.0865 -0.008,0 -0.0142,0.009 -0.0142,0.02 0,0.0109 -0.007,0.02 -0.0151,0.02 -0.009,0 -0.029,0.015 -0.0461,0.0334 -0.017,0.0183 -0.0375,0.0334 -0.0455,0.0334 -0.008,0 -0.0285,0.0151 -0.0455,0.0334 -0.017,0.0183 -0.0347,0.0334 -0.0393,0.0334 -0.009,0 -0.0607,0.0417 -0.10427,0.0834 -0.0135,0.0128 -0.0304,0.0234 -0.0377,0.0234 -0.008,0 -0.0134,0.006 -0.0134,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.009,0.0119 -0.02,0.0119 -0.0111,0 -0.02,0.007 -0.02,0.0143 0,0.0185 -0.0339,0.0524 -0.0524,0.0524 -0.008,0 -0.0143,0.006 -0.0143,0.0137 0,0.008 -0.015,0.0193 -0.0334,0.0263 -0.0183,0.007 -0.0334,0.0189 -0.0334,0.0264 0,0.008 -0.007,0.0137 -0.0151,0.0137 -0.009,0 -0.0293,0.0154 -0.0468,0.0341 -0.0173,0.0187 -0.0315,0.0311 -0.0315,0.0274 0,-0.003 -0.0193,0.0111 -0.043,0.0327 -0.0236,0.0216 -0.0474,0.0393 -0.0528,0.0393 -0.005,0 -0.0343,0.024 -0.0643,0.0533 -0.0299,0.0293 -0.061,0.0533 -0.0691,0.0533 -0.008,0 -0.0285,0.015 -0.0455,0.0334 -0.017,0.0183 -0.0345,0.0334 -0.0388,0.0334 -0.005,0 -0.0241,0.0151 -0.0439,0.0334 -0.0198,0.0183 -0.0435,0.0334 -0.0528,0.0334 -0.009,0 -0.0168,0.009 -0.0168,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.0111,0 -0.02,0.005 -0.02,0.0102 0,0.0102 -0.0396,0.0343 -0.0834,0.0509 -0.0128,0.005 -0.0234,0.0145 -0.0234,0.0215 0,0.0172 -0.0347,0.0509 -0.0524,0.0509 -0.008,0 -0.0143,0.009 -0.0143,0.0185 0,0.0101 -0.0105,0.0225 -0.0234,0.0272 -0.0438,0.0165 -0.0834,0.0406 -0.0834,0.0509 0,0.006 -0.007,0.0102 -0.0151,0.0102 -0.009,0 -0.028,0.0138 -0.0437,0.0307 -0.0157,0.017 -0.0389,0.0348 -0.0516,0.0397 -0.0127,0.005 -0.023,0.0151 -0.023,0.0226 0,0.0281 -0.0363,0.0121 -0.0902,-0.0396 z m -4.80688,-0.51843 c 0,-0.006 -0.0595,-0.0718 -0.13233,-0.14566 -0.0728,-0.0739 -0.12882,-0.13779 -0.12454,-0.14208 0.005,-0.005 0.002,-0.008 -0.007,-0.008 -0.0182,0 -0.10368,-0.083 -0.0996,-0.0967 0.002,-0.005 -0.002,-0.009 -0.007,-0.007 -0.0111,0.003 -0.0967,-0.0745 -0.0967,-0.0882 0,-0.0151 -0.0509,-0.06 -0.0589,-0.052 -0.005,0.005 -0.008,-0.002 -0.008,-0.0144 0,-0.0122 -0.007,-0.0222 -0.0143,-0.0222 -0.0185,0 -0.0524,-0.0339 -0.0524,-0.0524 0,-0.008 -0.009,-0.0143 -0.02,-0.0143 -0.0109,0 -0.02,-0.005 -0.02,-0.0115 0,-0.006 -0.0156,-0.027 -0.0345,-0.0461 -0.0368,-0.0368 -0.0336,-0.0566 0.0125,-0.0766 0.0352,-0.0154 0.0749,-0.0404 0.0992,-0.0626 0.01,-0.009 0.0268,-0.0167 0.0372,-0.0167 0.0105,0 0.0191,-0.005 0.0191,-0.0101 0,-0.005 0.0285,-0.0237 0.0633,-0.0404 0.0754,-0.0361 0.10607,-0.0548 0.14245,-0.0868 0.0149,-0.0131 0.0407,-0.0273 0.0575,-0.0315 0.0166,-0.005 0.0303,-0.012 0.0303,-0.0174 0,-0.005 0.024,-0.0212 0.0532,-0.0353 0.0293,-0.0141 0.0532,-0.0293 0.0533,-0.0341 10e-5,-0.005 0.0151,-0.0123 0.0335,-0.017 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.0144,-0.0131 0.0319,-0.0131 0.0176,0 0.0354,-0.009 0.0396,-0.02 0.005,-0.0111 0.0199,-0.02 0.0348,-0.02 0.0149,0 0.0271,-0.005 0.0271,-0.0118 0,-0.007 0.0105,-0.0154 0.0234,-0.0196 0.0267,-0.009 0.0672,-0.0343 0.0938,-0.0587 0.01,-0.009 0.0268,-0.0167 0.0373,-0.0167 0.0105,0 0.0191,-0.006 0.0191,-0.0134 0,-0.008 0.0153,-0.0134 0.0341,-0.0134 0.0208,0 0.0307,-0.006 0.0254,-0.0142 -0.005,-0.008 0.003,-0.0176 0.0192,-0.0215 0.0154,-0.005 0.028,-0.012 0.028,-0.0177 0,-0.006 0.015,-0.0141 0.0334,-0.0186 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.009,-0.0131 0.021,-0.0131 0.0115,0 0.0293,-0.008 0.0396,-0.0167 0.0483,-0.0433 0.062,-0.0519 0.0863,-0.0537 0.0143,-7.6e-4 0.029,-0.01 0.0326,-0.0192 0.003,-0.009 0.0158,-0.0172 0.0271,-0.0172 0.0112,0 0.0205,-0.006 0.0205,-0.0134 0,-0.008 0.0122,-0.0134 0.0271,-0.0134 0.0149,0 0.0306,-0.009 0.0348,-0.02 0.005,-0.011 0.019,-0.02 0.0329,-0.02 0.0139,0 0.0253,-0.006 0.0253,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.009,-0.0119 0.0184,-0.0119 0.0101,0 0.0259,-0.009 0.035,-0.02 0.009,-0.011 0.0254,-0.02 0.036,-0.02 0.0106,0 0.0277,-0.008 0.0379,-0.0167 0.0397,-0.0356 0.0588,-0.05 0.0659,-0.05 0.005,0 0.0312,-0.0149 0.0601,-0.0332 0.0289,-0.0183 0.0596,-0.0348 0.0682,-0.0368 0.009,-0.002 0.0309,-0.0172 0.0496,-0.0339 0.0186,-0.0167 0.0479,-0.0338 0.0649,-0.0382 0.017,-0.005 0.0311,-0.0132 0.0311,-0.0197 0,-0.007 0.0122,-0.0119 0.0274,-0.0119 0.0151,0 0.0423,-0.015 0.0606,-0.0334 0.0183,-0.0183 0.0452,-0.0334 0.0594,-0.0334 0.0144,0 0.0261,-0.006 0.0261,-0.0125 0,-0.007 0.0133,-0.0166 0.0294,-0.0218 0.0162,-0.005 0.0376,-0.0176 0.0477,-0.0276 0.01,-0.01 0.0268,-0.0182 0.0374,-0.0182 0.0105,0 0.0191,-0.006 0.0191,-0.0134 0,-0.008 0.015,-0.0134 0.0334,-0.0134 0.0207,0 0.0334,-0.008 0.0334,-0.02 0,-0.0112 0.0119,-0.02 0.0267,-0.02 0.0147,0 0.0267,-0.005 0.0267,-0.0118 0,-0.007 0.0105,-0.0154 0.0234,-0.0196 0.0321,-0.0108 0.0698,-0.0357 0.12907,-0.0854 0.0109,-0.009 0.0264,-0.0167 0.0343,-0.0167 0.0133,0 0.0783,-0.0369 0.0935,-0.0532 0.003,-0.005 0.0306,-0.019 0.0598,-0.0336 0.0293,-0.0147 0.0612,-0.0341 0.071,-0.0432 0.01,-0.009 0.0264,-0.0167 0.0369,-0.0167 0.0105,0 0.0191,-0.006 0.0191,-0.0134 0,-0.008 0.009,-0.0134 0.0186,-0.0134 0.0102,0 0.022,-0.009 0.0263,-0.02 0.005,-0.0109 0.0199,-0.02 0.0348,-0.02 0.0149,0 0.0271,-0.006 0.0271,-0.0134 0,-0.008 0.0116,-0.0134 0.0258,-0.0134 0.0142,0 0.0299,-0.006 0.0347,-0.0141 0.005,-0.008 0.0217,-0.0198 0.0375,-0.0267 0.0352,-0.0153 0.075,-0.0404 0.0992,-0.0626 0.01,-0.009 0.0256,-0.0167 0.0348,-0.0167 0.009,0 0.0286,-0.0112 0.0432,-0.0248 0.0148,-0.0137 0.0504,-0.036 0.0793,-0.0495 0.029,-0.0136 0.0604,-0.0324 0.0702,-0.0419 0.01,-0.009 0.0262,-0.0172 0.0367,-0.0172 0.0105,0 0.0191,-0.006 0.0191,-0.0134 0,-0.008 0.009,-0.0134 0.0184,-0.0134 0.0101,0 0.0258,-0.009 0.035,-0.02 0.009,-0.0111 0.0279,-0.02 0.0417,-0.02 0.0137,0 0.025,-0.006 0.025,-0.0131 0,-0.007 0.0151,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0122 0.0335,-0.017 10e-5,-0.005 0.0241,-0.02 0.0533,-0.0341 0.0293,-0.0141 0.0532,-0.0306 0.0532,-0.0367 0,-0.006 0.0121,-0.0112 0.0271,-0.0112 0.0149,0 0.0306,-0.009 0.0348,-0.02 0.005,-0.0111 0.0169,-0.02 0.0281,-0.02 0.0112,0 0.0276,-0.01 0.0363,-0.0217 0.0319,-0.0436 0.12628,-0.0125 0.19549,0.0644 0.0118,0.0132 0.0281,0.024 0.0361,0.024 0.008,0 0.0192,0.009 0.0251,0.0183 0.006,0.01 0.0302,0.0282 0.054,0.0404 0.0239,0.0122 0.0434,0.027 0.0434,0.0331 0,0.01 0.0449,0.0355 0.0701,0.04 0.005,7.7e-4 0.0215,0.0123 0.0357,0.0251 0.0484,0.0439 0.0665,0.0567 0.0805,0.0567 0.008,0 0.014,0.006 0.014,0.0134 0,0.008 0.006,0.0134 0.0134,0.0134 0.008,0 0.0249,0.0106 0.039,0.0234 0.0484,0.0439 0.0665,0.0567 0.0805,0.0567 0.008,0 0.0139,0.006 0.0139,0.0134 0,0.008 0.009,0.0134 0.0205,0.0134 0.0112,0 0.0239,0.009 0.0281,0.02 0.005,0.0111 0.0133,0.02 0.0203,0.02 0.007,0 0.025,0.0116 0.0403,0.026 0.0239,0.0222 0.0251,0.0284 0.009,0.0434 -0.0271,0.025 -0.0675,0.0503 -0.0945,0.0594 -0.0128,0.005 -0.0234,0.0119 -0.0234,0.0166 0,0.005 -0.0225,0.0205 -0.05,0.035 -0.0275,0.0144 -0.0548,0.0339 -0.0607,0.0431 -0.006,0.009 -0.0223,0.0168 -0.0367,0.0168 -0.0143,0 -0.026,0.005 -0.026,0.0118 0,0.007 -0.0105,0.0154 -0.0234,0.0196 -0.0267,0.009 -0.0672,0.0343 -0.0938,0.0587 -0.01,0.009 -0.0268,0.0167 -0.0372,0.0167 -0.0105,0 -0.0191,0.006 -0.0191,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.009 -0.02,0.02 0,0.0111 -0.0118,0.02 -0.026,0.02 -0.0143,0 -0.0308,0.008 -0.0368,0.0174 -0.006,0.01 -0.0332,0.0278 -0.0607,0.0406 -0.0276,0.0128 -0.0501,0.0275 -0.0502,0.0326 -1.1e-4,0.01 -0.064,0.0427 -0.0831,0.0427 -0.0113,0 -0.0307,0.0141 -0.0765,0.0554 -0.0134,0.0121 -0.046,0.0298 -0.0724,0.0393 -0.0264,0.009 -0.048,0.0221 -0.048,0.0277 0,0.006 -0.0241,0.0227 -0.0533,0.0376 -0.0293,0.015 -0.0533,0.0332 -0.0533,0.0403 0,0.007 -0.0114,0.0131 -0.0253,0.0131 -0.0139,0 -0.0286,0.009 -0.0329,0.02 -0.005,0.0111 -0.0169,0.02 -0.0281,0.02 -0.0112,0 -0.0204,0.006 -0.0204,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.009,0.0119 -0.02,0.0119 -0.0111,0 -0.02,0.005 -0.02,0.0119 0,0.007 -0.015,0.0157 -0.0334,0.0203 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.007,0.0131 -0.0143,0.0131 -0.008,0 -0.0227,0.008 -0.0328,0.0167 -0.0464,0.0416 -0.0597,0.05 -0.0795,0.05 -0.0115,0 -0.0244,0.009 -0.0286,0.02 -0.005,0.0111 -0.0191,0.02 -0.033,0.02 -0.0138,0 -0.0253,0.006 -0.0253,0.0134 0,0.008 -0.008,0.0134 -0.0168,0.0134 -0.009,0 -0.033,0.0151 -0.0529,0.0334 -0.0198,0.0183 -0.0418,0.0334 -0.049,0.0334 -0.007,0 -0.0209,0.008 -0.0306,0.0167 -0.01,0.009 -0.0415,0.0287 -0.0708,0.0433 -0.0293,0.0147 -0.0605,0.0327 -0.0696,0.04 -0.009,0.008 -0.0254,0.0208 -0.0363,0.03 -0.0109,0.009 -0.0255,0.0167 -0.0324,0.0167 -0.007,0 -0.0159,0.009 -0.0202,0.02 -0.005,0.0111 -0.0173,0.02 -0.0291,0.02 -0.0118,0 -0.0298,0.008 -0.04,0.0167 -0.0462,0.0415 -0.0597,0.05 -0.079,0.05 -0.0113,0 -0.0206,0.006 -0.0206,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.013 -0.0334,0.0186 0,0.006 -0.0105,0.0139 -0.0234,0.0183 -0.0244,0.009 -0.072,0.0365 -0.0834,0.0497 -0.003,0.005 -0.0275,0.0192 -0.053,0.0334 -0.0499,0.0277 -0.058,0.0332 -0.10414,0.0711 -0.0167,0.0137 -0.0497,0.0328 -0.0733,0.0426 -0.0236,0.01 -0.0495,0.0239 -0.0574,0.0315 -0.008,0.008 -0.0424,0.0316 -0.0767,0.0533 -0.0343,0.0217 -0.0623,0.0442 -0.0623,0.05 0,0.006 -0.0114,0.0107 -0.0253,0.0107 -0.0139,0 -0.0287,0.009 -0.033,0.02 -0.005,0.0111 -0.0199,0.02 -0.0348,0.02 -0.0149,0 -0.0271,0.006 -0.0271,0.0134 0,0.008 -0.009,0.0134 -0.0193,0.0134 -0.0106,0 -0.0246,0.009 -0.0309,0.0206 -0.006,0.0114 -0.0247,0.0216 -0.0406,0.0228 -0.016,0.002 -0.0291,0.0103 -0.0291,0.0202 0,0.01 -0.006,0.0142 -0.0135,0.01 -0.008,-0.005 -0.017,7.7e-4 -0.0214,0.0126 -0.005,0.0115 -0.0193,0.0209 -0.0333,0.0209 -0.0139,0 -0.0253,0.009 -0.0253,0.02 0,0.0109 -0.009,0.02 -0.0202,0.02 -0.0247,0 -0.0764,0.0279 -0.0897,0.0485 -0.005,0.009 -0.0249,0.019 -0.0434,0.0236 -0.0184,0.005 -0.0335,0.0143 -0.0335,0.0215 0,0.007 -0.009,0.0131 -0.0208,0.0131 -0.0115,0 -0.0171,0.006 -0.0126,0.0134 0.005,0.008 -0.005,0.0134 -0.0196,0.0134 -0.0154,0 -0.0309,0.008 -0.0345,0.0172 -0.003,0.009 -0.0334,0.029 -0.0662,0.0434 -0.0328,0.0144 -0.0597,0.0306 -0.0597,0.0362 -6e-5,0.005 -0.009,0.01 -0.0211,0.01 -0.0115,0 -0.0293,0.008 -0.0396,0.0167 -0.039,0.0349 -0.0587,0.05 -0.0652,0.05 -0.007,0 -0.12791,0.0802 -0.14105,0.0934 -0.003,0.003 -0.0292,0.0182 -0.0567,0.0321 -0.0275,0.014 -0.05,0.0299 -0.05,0.0353 0,0.005 -0.015,0.0136 -0.0334,0.0182 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.009,0.0131 -0.02,0.0131 -0.0111,0 -0.02,0.006 -0.02,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.012,0.0119 -0.0267,0.0119 -0.0147,0 -0.0267,-0.005 -0.0267,-0.0114 z m 8.3197,-0.0215 c -0.0147,-0.0179 -0.0365,-0.0328 -0.0487,-0.0332 -0.0121,-2.7e-4 -0.0254,-0.01 -0.0296,-0.0206 -0.005,-0.0111 -0.0143,-0.02 -0.0225,-0.02 -0.008,0 -0.0231,-0.008 -0.0333,-0.0167 -0.0442,-0.0396 -0.0593,-0.05 -0.0724,-0.05 -0.008,0 -0.0138,-0.006 -0.0138,-0.0134 0,-0.008 -0.009,-0.0134 -0.0186,-0.0134 -0.0102,0 -0.022,-0.009 -0.0263,-0.02 -0.005,-0.011 -0.0154,-0.0201 -0.0248,-0.0202 -0.009,-1.1e-4 -0.0381,-0.0181 -0.0638,-0.0399 -0.0257,-0.0219 -0.0539,-0.0457 -0.0628,-0.0532 -0.009,-0.008 -0.0223,-0.0135 -0.03,-0.0135 -0.008,0 -0.0139,-0.005 -0.0139,-0.0119 0,-0.007 -0.0135,-0.0154 -0.03,-0.0197 -0.0165,-0.005 -0.0474,-0.0229 -0.0688,-0.0414 -0.0213,-0.0186 -0.0441,-0.0338 -0.0506,-0.0338 -0.007,0 -0.0258,-0.0151 -0.0428,-0.0334 -0.017,-0.0183 -0.0352,-0.0334 -0.0403,-0.0334 -0.005,0 -0.0178,-0.008 -0.028,-0.0167 -0.0453,-0.0406 -0.0595,-0.0501 -0.0757,-0.0503 -0.009,-9e-5 -0.0361,-0.0166 -0.0592,-0.0367 -0.0231,-0.02 -0.0554,-0.0455 -0.0717,-0.0565 -0.0163,-0.0111 -0.0375,-0.0276 -0.0471,-0.0367 -0.01,-0.009 -0.0239,-0.0167 -0.0318,-0.0167 -0.008,0 -0.0143,-0.012 -0.0143,-0.0267 0,-0.0147 0.007,-0.0267 0.0144,-0.0267 0.008,0 0.0318,-0.0165 0.0529,-0.0368 0.0596,-0.0567 0.0771,-0.0701 0.0922,-0.0701 0.008,0 0.014,-0.009 0.014,-0.02 0,-0.0111 0.009,-0.02 0.02,-0.02 0.0111,0 0.02,-0.006 0.02,-0.0141 0,-0.008 0.006,-0.0106 0.0125,-0.006 0.007,0.005 0.0187,-0.002 0.0263,-0.0158 0.008,-0.013 0.014,-0.0187 0.0141,-0.0127 2.1e-4,0.006 0.0206,-0.0105 0.0454,-0.0367 0.0247,-0.0262 0.0517,-0.0477 0.0601,-0.0477 0.009,0 0.0151,-0.009 0.0151,-0.02 0,-0.0111 0.005,-0.0185 0.0103,-0.0167 0.006,0.002 0.028,-0.0132 0.0499,-0.0334 0.0219,-0.0203 0.0467,-0.0367 0.0553,-0.0367 0.009,0 0.0177,-0.005 0.0203,-0.0101 0.002,-0.005 0.0314,-0.0306 0.0645,-0.0558 0.0331,-0.0251 0.0728,-0.0596 0.0883,-0.0766 0.0155,-0.017 0.0345,-0.0309 0.0423,-0.0309 0.008,0 0.016,-0.005 0.0184,-0.0105 0.002,-0.006 0.0308,-0.0313 0.0631,-0.0567 0.0323,-0.0254 0.0831,-0.0688 0.11283,-0.0962 0.0298,-0.0275 0.0598,-0.05 0.0666,-0.05 0.007,0 0.0263,-0.015 0.0433,-0.0334 0.017,-0.0183 0.0373,-0.0334 0.0448,-0.0334 0.008,0 0.014,-0.009 0.014,-0.0208 0,-0.0115 0.006,-0.017 0.0135,-0.0125 0.008,0.005 0.017,-7.6e-4 0.0214,-0.0125 0.005,-0.0114 0.0121,-0.0183 0.017,-0.0152 0.005,0.003 0.0477,-0.0299 0.0949,-0.0734 0.0473,-0.0435 0.0981,-0.0791 0.11302,-0.0793 0.0223,-1.6e-4 0.0236,-0.002 0.007,-0.0131 -0.0178,-0.0114 -0.0178,-0.013 0,-0.0134 0.0109,-2e-4 0.053,-0.0303 0.0934,-0.0669 0.0403,-0.0366 0.0839,-0.0699 0.0968,-0.0742 0.0128,-0.005 0.0234,-0.0133 0.0234,-0.0201 0,-0.007 0.006,-0.0125 0.0134,-0.0125 0.008,0 0.0243,-0.0105 0.0377,-0.0234 0.0413,-0.0396 0.0955,-0.0834 0.10309,-0.0834 0.005,0 0.0212,-0.015 0.0381,-0.0334 0.017,-0.0183 0.0377,-0.0334 0.0461,-0.0334 0.009,0 0.0151,-0.009 0.0151,-0.02 0,-0.011 0.009,-0.02 0.0206,-0.02 0.0114,0 0.0346,-0.015 0.0516,-0.0334 0.017,-0.0183 0.0345,-0.0334 0.039,-0.0334 0.005,0 0.0277,-0.0183 0.0518,-0.0405 0.0241,-0.0222 0.0599,-0.0553 0.0797,-0.0733 0.0197,-0.018 0.0392,-0.0329 0.0432,-0.0329 0.005,0 0.021,-0.0116 0.0375,-0.0259 0.0928,-0.0798 0.11101,-0.0942 0.11918,-0.0942 0.005,-1e-5 0.026,-0.0166 0.0467,-0.0369 0.0207,-0.0203 0.0647,-0.0578 0.0978,-0.0833 0.0331,-0.0255 0.0621,-0.051 0.0645,-0.0565 0.002,-0.005 0.0102,-0.0101 0.0173,-0.0101 0.007,0 0.0268,-0.0135 0.0439,-0.03 0.0434,-0.0419 0.0867,-0.0767 0.0956,-0.0767 0.005,0 0.0158,-0.008 0.0261,-0.0167 0.0465,-0.0417 0.0598,-0.05 0.0798,-0.05 0.0118,0 0.018,-0.005 0.0141,-0.0119 -0.005,-0.007 0.009,-0.0225 0.0283,-0.0353 0.0196,-0.0128 0.0587,-0.0461 0.0866,-0.0738 0.028,-0.0277 0.051,-0.0448 0.051,-0.0381 0,0.007 0.0115,0.0123 0.0257,0.0123 0.0141,0 0.0338,0.008 0.0436,0.0167 0.01,0.009 0.0418,0.0286 0.071,0.0432 0.0293,0.0147 0.0562,0.0297 0.0598,0.0336 0.0182,0.0193 0.0815,0.0532 0.0996,0.0532 0.0113,0 0.0205,0.005 0.0205,0.0119 0,0.007 0.015,0.0157 0.0334,0.0203 0.0183,0.005 0.0334,0.0143 0.0334,0.0215 0,0.007 0.01,0.0131 0.0216,0.0131 0.024,0 0.18258,0.0809 0.18962,0.0967 0.002,0.005 0.0159,0.01 0.03,0.01 0.014,0 0.0256,0.006 0.0256,0.0134 0,0.008 0.012,0.0134 0.0267,0.0134 0.0147,0 0.0267,0.007 0.0267,0.0156 0,0.009 0.003,0.0119 0.008,0.008 0.005,-0.005 0.021,0.005 0.0368,0.0188 0.0157,0.0147 0.0451,0.0301 0.0653,0.0342 0.0202,0.005 0.0368,0.0118 0.0368,0.0173 0,0.005 0.03,0.0241 0.0667,0.0415 0.0367,0.0174 0.0667,0.0363 0.0667,0.0419 0,0.006 0.0165,0.0104 0.0367,0.0106 l 0.0367,5.2e-4 -0.0367,0.0322 c -0.0202,0.0178 -0.0367,0.0386 -0.0367,0.0462 0,0.008 -0.006,0.014 -0.0138,0.014 -0.008,0 -0.0301,0.0166 -0.0501,0.0369 -0.0199,0.0203 -0.0603,0.0549 -0.0896,0.0767 -0.0709,0.0529 -0.0867,0.0685 -0.0867,0.0855 0,0.008 -0.007,0.0143 -0.0147,0.0143 -0.008,0 -0.0265,0.015 -0.041,0.0334 -0.0144,0.0183 -0.0348,0.0334 -0.0453,0.0334 -0.0105,0 -0.0191,0.007 -0.0191,0.0143 0,0.015 -0.0326,0.0524 -0.0456,0.0524 -0.008,0 -0.0614,0.0432 -0.10342,0.0834 -0.0134,0.0128 -0.0304,0.0234 -0.0377,0.0234 -0.008,0 -0.0134,0.009 -0.0134,0.02 0,0.011 -0.006,0.02 -0.0142,0.02 -0.008,0 -0.0333,0.0196 -0.0567,0.0435 -0.0234,0.024 -0.0634,0.0591 -0.0892,0.0783 -0.0257,0.019 -0.0715,0.0594 -0.10183,0.0898 -0.0303,0.0304 -0.0618,0.0552 -0.0701,0.0552 -0.009,0 -0.0149,0.009 -0.0149,0.02 0,0.0116 -0.0121,0.02 -0.029,0.02 -0.0159,0 -0.0254,0.003 -0.0212,0.008 0.0105,0.0104 -0.14918,0.16569 -0.17027,0.16569 -0.003,0 -0.0458,0.039 -0.0938,0.0867 -0.048,0.0477 -0.0902,0.0867 -0.094,0.0867 -0.003,0 -0.0208,0.0135 -0.0379,0.03 -0.0509,0.0491 -0.0873,0.0767 -0.1013,0.0767 -0.007,0 -0.0132,0.007 -0.0132,0.0143 0,0.0167 -0.0332,0.0523 -0.049,0.0527 -0.006,1.5e-4 -0.0455,0.0332 -0.0877,0.0734 -0.0422,0.0403 -0.0795,0.0731 -0.0828,0.0731 -0.003,0 -0.0264,0.021 -0.0513,0.0467 -0.0249,0.0257 -0.0523,0.0468 -0.0607,0.0468 -0.009,0 -0.0154,0.006 -0.0154,0.0128 0,0.014 -0.074,0.0939 -0.087,0.0939 -0.005,0 -0.027,0.0179 -0.0505,0.04 -0.0235,0.022 -0.0476,0.0399 -0.0536,0.04 -0.0178,1e-4 -0.0486,0.0361 -0.039,0.0458 0.005,0.005 -0.003,0.0121 -0.019,0.0161 -0.0154,0.005 -0.0355,0.0218 -0.045,0.0395 -0.009,0.0177 -0.0253,0.0322 -0.035,0.0322 -0.01,0 -0.0177,0.006 -0.0177,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.009 -0.02,0.019 0,0.0105 -0.005,0.0208 -0.0118,0.0234 -0.014,0.005 -0.11677,0.0878 -0.15108,0.12121 -0.0132,0.0128 -0.0271,0.0234 -0.0311,0.0234 -0.005,0 -0.0242,0.0165 -0.0452,0.0367 -0.0824,0.0796 -0.15021,0.13678 -0.1621,0.13678 -0.007,0 -0.0125,0.009 -0.0125,0.02 0,0.0109 -0.006,0.02 -0.0134,0.02 -0.008,0 -0.0489,0.0361 -0.0923,0.08 -0.0433,0.044 -0.0898,0.08 -0.10332,0.08 -0.0134,-1e-4 -0.0364,-0.0148 -0.0512,-0.0327 z m -9.30545,-1.00488 c -0.0234,-0.009 -0.0603,-0.0451 -0.0893,-0.0893 -0.0125,-0.0191 -0.0249,-0.0325 -0.0277,-0.0296 -0.007,0.007 -0.17819,-0.16457 -0.17819,-0.17825 0,-0.006 -0.0121,-0.0148 -0.0269,-0.0194 -0.0148,-0.005 -0.0235,-0.0141 -0.0192,-0.0209 0.005,-0.007 -0.002,-0.0124 -0.0124,-0.0124 -0.0111,0 -0.0306,-0.018 -0.0437,-0.04 -0.013,-0.022 -0.0324,-0.0401 -0.043,-0.0401 -0.0106,0 -0.016,-0.003 -0.012,-0.008 0.005,-0.005 -0.0301,-0.0459 -0.0761,-0.0929 -0.0459,-0.0471 -0.0808,-0.0882 -0.0776,-0.0915 0.003,-0.003 -0.007,-0.01 -0.0219,-0.0147 -0.026,-0.009 -0.0263,-0.0102 -0.005,-0.0312 0.0123,-0.0123 0.0267,-0.0225 0.0319,-0.0225 0.005,0 0.0347,-0.0165 0.0655,-0.0367 0.0308,-0.0203 0.0646,-0.0368 0.0748,-0.0368 0.0104,0 0.0189,-0.005 0.0189,-0.0121 0,-0.007 0.0331,-0.0257 0.0733,-0.0425 0.0403,-0.0167 0.0733,-0.0353 0.0733,-0.0413 0,-0.006 0.012,-0.0109 0.0267,-0.0109 0.0147,0 0.0267,-0.005 0.0268,-0.01 1.6e-4,-0.0154 0.0788,-0.0567 0.10774,-0.0567 0.0141,0 0.0256,-0.005 0.0256,-0.0112 0,-0.006 0.0331,-0.0251 0.0733,-0.0422 0.0403,-0.017 0.0733,-0.0361 0.0733,-0.0423 0,-0.006 0.012,-0.0112 0.0267,-0.0112 0.0147,0 0.0267,-0.005 0.0267,-0.0109 0,-0.006 0.0285,-0.0244 0.0633,-0.041 0.12095,-0.0574 0.19013,-0.0971 0.19013,-0.1094 0,-0.007 0.015,-0.0123 0.0334,-0.0123 0.0183,0 0.0334,-0.005 0.0334,-0.0118 0,-0.007 0.0105,-0.0154 0.0234,-0.0196 0.0264,-0.009 0.0733,-0.0374 0.0836,-0.051 0.003,-0.005 0.0233,-0.0131 0.0434,-0.0181 0.0201,-0.005 0.0366,-0.0145 0.0366,-0.0211 0,-0.007 0.009,-0.0119 0.0184,-0.0119 0.0101,0 0.0258,-0.009 0.035,-0.02 0.009,-0.0111 0.0271,-0.02 0.04,-0.02 0.0128,0 0.0309,-0.009 0.04,-0.02 0.009,-0.0109 0.0279,-0.02 0.0417,-0.02 0.0137,0 0.025,-0.006 0.025,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0111,0 0.02,-0.006 0.02,-0.0125 0,-0.007 0.0135,-0.0164 0.03,-0.0211 0.0568,-0.0163 0.11675,-0.0478 0.11675,-0.0613 0,-0.008 0.005,-0.0101 0.0122,-0.006 0.007,0.005 0.0203,4e-5 0.03,-0.009 0.01,-0.009 0.0477,-0.0313 0.0845,-0.049 0.0368,-0.0177 0.0697,-0.036 0.0733,-0.0405 0.003,-0.005 0.0487,-0.0296 0.10008,-0.0556 0.15823,-0.0803 0.20666,-0.10734 0.21435,-0.11976 0.005,-0.007 0.0221,-0.012 0.04,-0.012 0.0179,0 0.0326,-0.006 0.0326,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.012,-0.0119 0.0267,-0.0119 0.0147,0 0.0267,-0.005 0.0267,-0.0109 0,-0.006 0.0296,-0.0237 0.0656,-0.0395 0.0361,-0.0157 0.0694,-0.0349 0.0741,-0.0426 0.005,-0.008 0.0205,-0.0138 0.0349,-0.0138 0.0144,0 0.0298,-0.009 0.034,-0.02 0.005,-0.0111 0.0155,-0.02 0.0251,-0.02 0.01,0 0.0196,-0.005 0.0219,-0.01 0.006,-0.0136 0.14712,-0.0839 0.1679,-0.0836 0.009,9e-5 0.0167,-0.006 0.0167,-0.0128 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0133 0.0334,-0.0193 0,-0.006 0.0133,-0.0152 0.0293,-0.0203 0.0162,-0.005 0.0379,-0.0179 0.0484,-0.0283 0.0105,-0.0105 0.0272,-0.0158 0.0374,-0.012 0.0104,0.005 0.0183,-0.002 0.0183,-0.0126 0,-0.012 0.0129,-0.0196 0.0334,-0.0196 0.0183,0 0.0334,-0.006 0.0334,-0.0134 0,-0.008 0.009,-0.0134 0.0191,-0.0134 0.0105,0 0.027,-0.008 0.0367,-0.0168 0.01,-0.009 0.0431,-0.0288 0.0743,-0.0434 0.0311,-0.0147 0.0566,-0.0311 0.0567,-0.0365 1e-4,-0.005 0.0119,-0.01 0.0262,-0.01 0.0143,0 0.0321,-0.0105 0.0396,-0.0234 0.008,-0.0128 0.0138,-0.0189 0.0141,-0.0135 5.2e-4,0.0149 0.1122,-0.032 0.1245,-0.0523 0.006,-0.01 0.0186,-0.0177 0.0283,-0.0177 0.01,0 0.0252,-0.009 0.0343,-0.02 0.009,-0.0111 0.0279,-0.02 0.0417,-0.02 0.0137,0 0.0251,-0.005 0.0251,-0.0119 0,-0.007 0.015,-0.0157 0.0334,-0.0203 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.009,-0.0131 0.02,-0.0131 0.0111,0 0.02,-0.006 0.02,-0.0128 0,-0.007 0.0211,-0.0167 0.0468,-0.0215 0.0257,-0.005 0.0502,-0.0141 0.0542,-0.0206 0.005,-0.007 0.0234,-0.0119 0.0432,-0.0121 0.027,-1.6e-4 0.0311,-0.003 0.0166,-0.0125 -0.0151,-0.01 -0.0115,-0.0141 0.0167,-0.0212 0.0198,-0.005 0.0361,-0.0144 0.0361,-0.021 0,-0.007 0.0112,-0.0119 0.025,-0.0119 0.0138,0 0.0326,-0.009 0.0417,-0.02 0.009,-0.0111 0.0251,-0.02 0.0354,-0.02 0.0104,0 0.0222,-0.009 0.0264,-0.02 0.005,-0.0111 0.0235,-0.0201 0.043,-0.0203 0.0276,-1.5e-4 0.031,-0.002 0.0152,-0.0131 -0.0163,-0.0105 -0.0145,-0.013 0.009,-0.0131 0.0161,-10e-5 0.0326,-0.006 0.0368,-0.0125 0.005,-0.007 0.0256,-0.0163 0.0475,-0.0211 0.0219,-0.005 0.0399,-0.0143 0.0399,-0.0211 0,-0.007 0.0114,-0.0122 0.0253,-0.0122 0.0139,0 0.0287,-0.009 0.033,-0.02 0.005,-0.0111 0.0199,-0.02 0.0348,-0.02 0.0149,0 0.0271,-0.005 0.0271,-0.0105 0,-0.006 0.0196,-0.0198 0.0434,-0.0311 0.0239,-0.0113 0.0614,-0.03 0.0834,-0.0417 0.022,-0.0116 0.0626,-0.032 0.0901,-0.0453 0.0276,-0.0134 0.05,-0.0289 0.05,-0.0345 0,-0.006 0.0112,-0.0103 0.025,-0.0103 0.0137,0 0.0325,-0.009 0.0417,-0.02 0.009,-0.0111 0.0249,-0.02 0.035,-0.02 0.0101,0 0.0184,-0.006 0.0184,-0.0134 0,-0.008 0.0152,-0.0134 0.0338,-0.0134 0.0186,0 0.0372,-0.009 0.0414,-0.02 0.005,-0.0111 0.019,-0.02 0.033,-0.02 0.0138,0 0.0253,-0.005 0.0253,-0.0101 0,-0.005 0.0298,-0.0237 0.0662,-0.0404 0.0364,-0.0167 0.0697,-0.0362 0.0741,-0.0433 0.005,-0.007 0.0196,-0.0129 0.0339,-0.0129 0.0143,0 0.0259,-0.005 0.0261,-0.01 9e-5,-0.005 0.0256,-0.0219 0.0567,-0.0364 0.0311,-0.0145 0.0596,-0.0302 0.0632,-0.0348 0.003,-0.005 0.0306,-0.0187 0.06,-0.0317 0.0925,-0.0406 0.14655,-0.0669 0.15345,-0.0749 0.003,-0.005 0.0157,-0.0118 0.0267,-0.0168 0.0111,-0.005 0.038,-0.0212 0.06,-0.0359 0.022,-0.0147 0.0505,-0.0303 0.0633,-0.0348 0.0128,-0.005 0.0234,-0.0134 0.0234,-0.0199 0,-0.007 0.015,-0.0118 0.0334,-0.0118 0.0183,0 0.0334,-0.006 0.0334,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0122 0.0335,-0.017 5e-5,-0.005 0.027,-0.0204 0.06,-0.0349 0.033,-0.0144 0.0599,-0.0306 0.0599,-0.0358 0,-0.005 0.0133,-0.0136 0.0293,-0.0189 0.0162,-0.005 0.0377,-0.0177 0.0477,-0.0277 0.0101,-0.0101 0.0232,-0.0154 0.0291,-0.0117 0.006,0.003 0.0182,-0.002 0.0272,-0.0132 0.009,-0.011 0.0277,-0.0199 0.0416,-0.0199 0.0138,0 0.0251,-0.006 0.0251,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.009,-0.0119 0.02,-0.0119 0.0111,0 0.02,-0.006 0.02,-0.0134 0,-0.008 0.008,-0.0134 0.0176,-0.0134 0.0277,0 0.12927,-0.0526 0.12927,-0.067 0,-0.007 0.0116,-0.013 0.026,-0.013 0.0142,0 0.0297,-0.006 0.0341,-0.0134 0.005,-0.008 0.0201,-0.0134 0.0346,-0.0134 0.0144,0 0.0298,-0.009 0.034,-0.02 0.005,-0.0109 0.019,-0.02 0.0329,-0.02 0.0139,0 0.0253,-0.006 0.0253,-0.0131 0,-0.007 0.0164,-0.0172 0.0366,-0.0222 0.0201,-0.005 0.0439,-0.0157 0.0529,-0.0236 0.047,-0.0416 0.059,-0.0477 0.0909,-0.0477 0.0191,0 0.0312,-0.006 0.027,-0.0126 -0.005,-0.007 0.0149,-0.0227 0.0426,-0.035 0.12252,-0.0547 0.14915,-0.0693 0.14115,-0.0773 -0.005,-0.005 0.008,-0.009 0.0275,-0.009 0.0198,0 0.0395,-0.009 0.0436,-0.02 0.005,-0.0111 0.0221,-0.02 0.0396,-0.02 0.0176,0 0.0319,-0.005 0.0319,-0.0123 0,-0.0138 0.0751,-0.0544 0.10071,-0.0544 0.009,0 0.0199,-0.009 0.0242,-0.02 0.005,-0.0111 0.0199,-0.02 0.0348,-0.02 0.0149,0 0.0271,-0.006 0.0271,-0.0134 0,-0.0225 0.0842,-0.013 0.12677,0.0141 0.022,0.0141 0.049,0.0293 0.0601,0.0339 0.0766,0.0315 0.10674,0.0483 0.10674,0.0594 0,0.007 0.015,0.0128 0.0334,0.0128 0.0183,0 0.0334,0.005 0.0334,0.0108 0,0.006 0.0329,0.0254 0.0733,0.0434 0.0403,0.0179 0.0733,0.0371 0.0734,0.0426 1e-4,0.005 0.009,0.01 0.0202,0.01 0.0111,0 0.02,0.007 0.02,0.0156 0,0.009 0.003,0.0118 0.009,0.008 0.006,-0.006 0.16717,0.0673 0.20405,0.0932 0.0102,0.007 -0.043,0.0574 -0.061,0.0574 -0.01,0 -0.018,0.005 -0.0181,0.01 -5e-5,0.005 -0.027,0.0219 -0.0601,0.0364 -0.033,0.0144 -0.06,0.031 -0.06,0.0367 0,0.006 -0.01,0.0104 -0.0214,0.0104 -0.0118,0 -0.0433,0.0167 -0.0701,0.037 -0.0267,0.0204 -0.0711,0.0474 -0.0986,0.0598 -0.0276,0.0125 -0.05,0.0289 -0.05,0.0363 0,0.008 -0.015,0.0136 -0.0334,0.0136 -0.0183,0 -0.0334,0.006 -0.0334,0.0134 0,0.008 -0.009,0.0134 -0.0184,0.0134 -0.0101,0 -0.0258,0.009 -0.035,0.02 -0.009,0.0111 -0.0281,0.02 -0.0421,0.02 -0.0141,0 -0.0289,0.009 -0.0332,0.0199 -0.005,0.0109 -0.0127,0.0169 -0.0187,0.0131 -0.006,-0.003 -0.0173,0.003 -0.0249,0.0168 -0.008,0.013 -0.014,0.0189 -0.0141,0.013 -2e-4,-0.006 -0.026,0.006 -0.0571,0.0267 -0.0312,0.0206 -0.0807,0.0493 -0.11007,0.0639 -0.0293,0.0147 -0.0613,0.0342 -0.071,0.0434 -0.01,0.009 -0.0262,0.0167 -0.0367,0.0167 -0.0105,0 -0.0191,0.005 -0.0191,0.0119 0,0.007 -0.015,0.0157 -0.0334,0.0203 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.012,0.0131 -0.0267,0.0131 -0.0147,0 -0.0267,0.005 -0.0267,0.0113 0,0.006 -0.0255,0.0225 -0.0567,0.0361 -0.0312,0.0137 -0.10867,0.0566 -0.17216,0.0954 -0.0635,0.0388 -0.12204,0.0705 -0.13011,0.0705 -0.008,0 -0.0147,0.005 -0.0147,0.0105 0,0.006 -0.039,0.0311 -0.0867,0.0562 -0.0477,0.0253 -0.0867,0.0506 -0.0867,0.0562 0,0.006 -0.009,0.0105 -0.0184,0.0105 -0.0101,0 -0.0258,0.009 -0.035,0.02 -0.009,0.011 -0.0279,0.02 -0.0417,0.02 -0.0138,0 -0.0251,0.006 -0.0251,0.0134 0,0.008 -0.009,0.0134 -0.0184,0.0134 -0.0101,0 -0.0258,0.009 -0.035,0.02 -0.009,0.0111 -0.0279,0.02 -0.0417,0.02 -0.0138,0 -0.025,0.005 -0.025,0.0119 0,0.007 -0.015,0.0157 -0.0334,0.0203 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.009,0.0131 -0.02,0.0131 -0.0111,0 -0.02,0.006 -0.02,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.0122,0.0119 -0.0271,0.0119 -0.0149,0 -0.0306,0.009 -0.0348,0.02 -0.005,0.0111 -0.0221,0.02 -0.0396,0.02 -0.0176,0 -0.0319,0.005 -0.0319,0.0118 0,0.007 -0.0105,0.0154 -0.0234,0.0196 -0.0254,0.009 -0.0727,0.037 -0.0834,0.0502 -0.003,0.005 -0.0202,0.0124 -0.0367,0.0176 -0.0165,0.005 -0.03,0.015 -0.03,0.0219 0,0.007 -0.006,0.0125 -0.0131,0.0125 -0.007,0 -0.0523,0.0241 -0.10031,0.0533 -0.0479,0.0293 -0.0991,0.0533 -0.11365,0.0533 -0.0145,0 -0.0264,0.006 -0.0264,0.0125 0,0.007 -0.0133,0.0166 -0.0293,0.0218 -0.0162,0.005 -0.0376,0.0176 -0.0477,0.0276 -0.01,0.01 -0.0268,0.0183 -0.0374,0.0183 -0.0105,0 -0.019,0.006 -0.019,0.0134 0,0.008 -0.009,0.0134 -0.0186,0.0134 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.0111 -0.0199,0.02 -0.0348,0.02 -0.0149,0 -0.0271,0.006 -0.0271,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.0137 -0.0334,0.0203 0,0.007 -0.009,0.0119 -0.02,0.0119 -0.0111,0 -0.02,0.006 -0.02,0.0134 0,0.008 -0.0121,0.0134 -0.0271,0.0134 -0.0149,0 -0.0306,0.009 -0.0348,0.02 -0.005,0.0111 -0.0187,0.02 -0.0322,0.02 -0.0135,0 -0.0298,0.009 -0.0361,0.0206 -0.006,0.0114 -0.0247,0.0216 -0.0406,0.0229 -0.016,0.002 -0.0291,0.007 -0.0291,0.0127 0,0.006 -0.009,0.0105 -0.0186,0.0105 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.011 -0.0199,0.02 -0.0348,0.02 -0.0149,0 -0.0271,0.005 -0.0271,0.0119 0,0.007 -0.015,0.0157 -0.0334,0.0203 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.012,0.0131 -0.0267,0.0131 -0.0147,0 -0.0267,0.006 -0.0267,0.013 0,0.007 -0.0255,0.0254 -0.0567,0.0406 -0.10769,0.0524 -0.23019,0.12272 -0.23463,0.13459 -0.002,0.007 -0.0125,0.0119 -0.0225,0.0119 -0.01,0 -0.0259,0.008 -0.0358,0.0167 -0.01,0.009 -0.0418,0.0286 -0.071,0.0432 -0.0293,0.0147 -0.0562,0.0299 -0.0598,0.0341 -0.0157,0.0177 -0.16149,0.0928 -0.17994,0.0928 -0.0111,0 -0.0202,0.005 -0.0202,0.0118 0,0.007 -0.0105,0.0154 -0.0234,0.0196 -0.0267,0.009 -0.0672,0.0343 -0.0938,0.0587 -0.01,0.009 -0.0268,0.0167 -0.0373,0.0167 -0.0105,0 -0.0191,0.006 -0.0191,0.0134 0,0.008 -0.009,0.0134 -0.0206,0.0134 -0.0113,0 -0.0368,0.0111 -0.0567,0.0246 -0.0199,0.0135 -0.0632,0.042 -0.0962,0.0633 -0.0331,0.0213 -0.063,0.0419 -0.0667,0.0459 -0.003,0.005 -0.0534,0.0306 -0.1105,0.0593 -0.0572,0.0286 -0.11039,0.06 -0.11839,0.0697 -0.008,0.01 -0.0262,0.0176 -0.0404,0.0176 -0.0142,0 -0.0225,0.005 -0.0185,0.0119 0.005,0.007 -0.009,0.0158 -0.0275,0.0206 -0.0192,0.005 -0.0437,0.0176 -0.0544,0.0283 -0.0107,0.0107 -0.025,0.0161 -0.0318,0.0119 -0.007,-0.005 -0.0122,0.002 -0.0122,0.0133 0,0.0115 -0.0105,0.0212 -0.0234,0.0218 -0.0128,5.1e-4 -0.0413,0.0122 -0.0633,0.026 -0.022,0.0138 -0.067,0.0388 -0.10008,0.0558 -0.0331,0.0169 -0.063,0.0345 -0.0667,0.039 -0.003,0.005 -0.0202,0.0124 -0.0367,0.0177 -0.0165,0.005 -0.03,0.015 -0.03,0.0219 0,0.007 -0.009,0.0125 -0.02,0.0125 -0.0111,0 -0.02,0.005 -0.02,0.0113 0,0.006 -0.027,0.0225 -0.0601,0.0361 -0.0331,0.0136 -0.06,0.0293 -0.06,0.0348 0,0.005 -0.0225,0.0198 -0.05,0.0318 -0.0276,0.012 -0.0591,0.0273 -0.0701,0.0341 -0.0111,0.007 -0.029,0.0163 -0.0401,0.0213 -0.011,0.005 -0.023,0.0124 -0.0267,0.0166 -0.003,0.005 -0.0338,0.0209 -0.0668,0.037 -0.0331,0.0161 -0.0734,0.0416 -0.0895,0.0567 -0.0162,0.0151 -0.0383,0.0274 -0.0491,0.0274 -0.0109,0 -0.0237,0.006 -0.0285,0.0141 -0.005,0.008 -0.0217,0.0198 -0.0375,0.0267 -0.0158,0.007 -0.0405,0.02 -0.0549,0.0292 -0.0809,0.0516 -0.12902,0.0768 -0.14702,0.0768 -0.0111,0 -0.0203,0.005 -0.0203,0.0103 0,0.006 -0.0225,0.0222 -0.05,0.0367 -0.0275,0.0145 -0.058,0.0339 -0.0676,0.0431 -0.01,0.009 -0.0262,0.0166 -0.0367,0.0166 -0.0105,0 -0.019,0.005 -0.019,0.0102 0,0.0102 -0.0396,0.0343 -0.0834,0.0509 -0.0128,0.005 -0.0234,0.0141 -0.0234,0.0206 0,0.007 -0.0144,0.0118 -0.0319,0.0118 -0.0176,0 -0.0354,0.009 -0.0396,0.02 -0.005,0.011 -0.0163,0.02 -0.027,0.02 -0.0106,0 -0.0213,0.005 -0.0238,0.01 -0.002,0.005 -0.0328,0.0239 -0.0675,0.0409 -0.0347,0.017 -0.0665,0.0364 -0.0708,0.0434 -0.005,0.007 -0.0194,0.0126 -0.0336,0.0126 -0.0142,0 -0.026,0.006 -0.026,0.0127 0,0.007 -0.0225,0.0233 -0.05,0.0362 -0.0275,0.0129 -0.058,0.0312 -0.0676,0.0406 -0.01,0.009 -0.0265,0.0172 -0.0375,0.0172 -0.0109,0 -0.0162,0.006 -0.0115,0.0134 0.005,0.008 -0.003,0.0134 -0.0177,0.0134 -0.0142,0 -0.0333,0.009 -0.0425,0.02 -0.009,0.0111 -0.0309,0.02 -0.0483,0.02 -0.0175,0 -0.0318,0.005 -0.0318,0.0103 0,0.006 -0.0225,0.0222 -0.05,0.0367 -0.0276,0.0144 -0.058,0.0339 -0.0676,0.0431 -0.01,0.009 -0.0262,0.0167 -0.0368,0.0167 -0.0105,0 -0.0191,0.006 -0.0191,0.0134 0,0.008 -0.0118,0.0134 -0.026,0.0134 -0.0143,0 -0.0308,0.008 -0.0367,0.0177 -0.0134,0.0221 -0.0449,0.0338 -0.069,0.0254 z m 5.35576,-1.75103 c -0.008,-0.007 -0.0269,-0.0243 -0.0433,-0.0394 -0.0165,-0.0151 -0.0361,-0.0274 -0.0434,-0.0274 -0.008,0 -0.0134,-0.005 -0.0134,-0.0119 0,-0.007 -0.015,-0.0157 -0.0334,-0.0203 -0.0183,-0.005 -0.0334,-0.0143 -0.0334,-0.0215 0,-0.007 -0.009,-0.0131 -0.02,-0.0131 -0.0111,0 -0.02,-0.005 -0.02,-0.0119 0,-0.007 -0.015,-0.0157 -0.0334,-0.0203 -0.0183,-0.005 -0.0334,-0.0143 -0.0334,-0.0215 0,-0.007 -0.006,-0.0131 -0.014,-0.0131 -0.0144,0 -0.029,-0.0108 -0.0901,-0.0667 -0.02,-0.0183 -0.0589,-0.0448 -0.0863,-0.0588 -0.0274,-0.014 -0.0499,-0.0298 -0.0499,-0.0351 0,-0.005 -0.0105,-0.0132 -0.0234,-0.0176 -0.0335,-0.0113 -0.0721,-0.0374 -0.10601,-0.072 -0.0163,-0.0165 -0.0367,-0.03 -0.0454,-0.03 -0.016,0 -0.051,-0.0383 -0.0517,-0.0567 -2.4e-4,-0.005 0.0115,-0.01 0.0263,-0.01 0.0147,0 0.0267,-0.005 0.0267,-0.0119 0,-0.007 0.015,-0.0157 0.0334,-0.0203 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.012,-0.0131 0.0267,-0.0131 0.0147,0 0.0267,-0.006 0.0267,-0.013 0,-0.007 0.0267,-0.0251 0.0592,-0.04 0.0326,-0.0148 0.063,-0.0329 0.0675,-0.0403 0.005,-0.008 0.0199,-0.0134 0.0341,-0.0134 0.0142,0 0.026,-0.006 0.026,-0.0134 0,-0.008 0.009,-0.0134 0.02,-0.0134 0.0109,0 0.02,-0.006 0.02,-0.0124 0,-0.007 0.0133,-0.0166 0.0293,-0.0218 0.0162,-0.005 0.0376,-0.0176 0.0477,-0.0276 0.01,-0.01 0.0268,-0.0183 0.0374,-0.0183 0.0105,0 0.019,-0.005 0.019,-0.0118 0,-0.007 0.0105,-0.0154 0.0234,-0.0196 0.0227,-0.008 0.07,-0.0352 0.0834,-0.0486 0.003,-0.003 0.0352,-0.0201 0.0701,-0.0366 0.0348,-0.0164 0.0633,-0.036 0.0633,-0.0434 0,-0.008 0.015,-0.0135 0.0334,-0.0135 0.0183,0 0.0334,-0.006 0.0334,-0.0134 0,-0.008 0.009,-0.0134 0.0205,-0.0134 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0111 0.0184,-0.02 0.0315,-0.02 0.0131,0 0.0269,-0.008 0.0306,-0.0178 0.003,-0.01 0.0419,-0.0348 0.0849,-0.0556 0.0428,-0.0208 0.081,-0.0413 0.0847,-0.0455 0.0113,-0.0132 0.0588,-0.0414 0.0834,-0.0497 0.0128,-0.005 0.0234,-0.0127 0.0234,-0.0186 0,-0.006 0.0185,-0.0148 0.041,-0.0197 0.0225,-0.005 0.0376,-0.0125 0.0335,-0.0165 -0.009,-0.009 0.0239,-0.0284 0.11572,-0.0707 0.0348,-0.0161 0.0633,-0.0345 0.0633,-0.0409 0,-0.007 0.0105,-0.0118 0.0234,-0.0118 0.0129,0 0.0397,-0.015 0.0595,-0.0334 0.0198,-0.0183 0.0445,-0.0334 0.055,-0.0334 0.0105,0 0.0264,-0.009 0.0356,-0.02 0.009,-0.011 0.0279,-0.02 0.0417,-0.02 0.0137,0 0.0251,-0.006 0.0251,-0.0134 0,-0.008 0.009,-0.0134 0.0186,-0.0134 0.0102,0 0.022,-0.009 0.0263,-0.02 0.005,-0.0109 0.0209,-0.02 0.037,-0.02 0.0161,0 0.0255,-0.003 0.0208,-0.009 -0.005,-0.005 0.0169,-0.021 0.0479,-0.0361 0.031,-0.0151 0.0643,-0.0354 0.0739,-0.0448 0.01,-0.009 0.0262,-0.0172 0.0368,-0.0172 0.0105,0 0.0191,-0.006 0.0191,-0.0131 0,-0.007 0.015,-0.0169 0.0334,-0.0215 0.0183,-0.005 0.0334,-0.0137 0.0334,-0.0203 0,-0.007 0.015,-0.0119 0.0334,-0.0119 0.0183,0 0.0334,-0.006 0.0334,-0.0134 0,-0.008 0.0241,-0.0238 0.0533,-0.0364 0.0293,-0.0128 0.0533,-0.0307 0.0533,-0.04 0,-0.009 0.015,-0.0169 0.0334,-0.0169 0.0183,0 0.0334,-0.006 0.0334,-0.0126 0,-0.0122 0.0222,-0.0264 0.12009,-0.0768 0.0257,-0.0132 0.0497,-0.027 0.0533,-0.0306 0.01,-0.01 0.0567,-0.0387 0.08,-0.0494 0.0111,-0.005 0.0279,-0.017 0.0377,-0.0267 0.01,-0.01 0.0262,-0.0175 0.0367,-0.0175 0.0105,0 0.0191,-0.005 0.0191,-0.0119 0,-0.007 0.015,-0.0157 0.0334,-0.0203 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.012,-0.0131 0.0267,-0.0131 0.0147,0 0.0267,-0.005 0.0267,-0.0118 0,-0.007 0.0106,-0.0154 0.0234,-0.0199 0.0128,-0.005 0.0413,-0.0202 0.0633,-0.0351 0.022,-0.0148 0.0505,-0.0306 0.0633,-0.0351 0.0128,-0.005 0.0234,-0.0128 0.0234,-0.0186 0,-0.0167 0.0956,0.0171 0.10295,0.0364 0.003,0.009 0.0151,0.0173 0.0255,0.0173 0.0167,0 0.059,0.0222 0.14558,0.0765 0.0144,0.009 0.0547,0.0293 0.0896,0.045 0.0348,0.0157 0.0633,0.0339 0.0633,0.0403 0,0.007 0.012,0.0118 0.0267,0.0118 0.0147,0 0.0267,0.006 0.0267,0.0131 0,0.007 0.015,0.0169 0.0334,0.0215 0.0183,0.005 0.0334,0.0137 0.0334,0.0203 0,0.007 0.0122,0.0119 0.0271,0.0119 0.0149,0 0.0306,0.009 0.0348,0.02 0.005,0.0111 0.0221,0.02 0.0397,0.02 0.0176,0 0.0319,0.005 0.0319,0.0119 0,0.007 0.0105,0.0156 0.0234,0.0202 0.0313,0.0114 0.0845,0.0429 0.0876,0.052 0.003,0.0101 -0.0842,0.0685 -0.14652,0.0978 -0.0282,0.0132 -0.0584,0.0303 -0.0674,0.0378 -0.0345,0.0295 -0.0523,0.0406 -0.0711,0.0449 -0.0107,0.002 -0.0243,0.0129 -0.0302,0.0234 -0.006,0.0105 -0.0168,0.019 -0.0243,0.019 -0.008,0 -0.022,0.008 -0.0322,0.0167 -0.0335,0.0301 -0.053,0.0431 -0.10329,0.0688 -0.0273,0.014 -0.0497,0.0298 -0.0497,0.0352 0,0.005 -0.0105,0.0131 -0.0234,0.0176 -0.0267,0.009 -0.0672,0.0343 -0.0938,0.0587 -0.01,0.009 -0.0268,0.0167 -0.0373,0.0167 -0.0105,0 -0.019,0.006 -0.019,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.006 -0.02,0.0131 0,0.007 -0.015,0.0169 -0.0334,0.0215 -0.0183,0.005 -0.0334,0.013 -0.0334,0.0187 0,0.006 -0.0105,0.0139 -0.0234,0.0182 -0.0267,0.009 -0.0672,0.0343 -0.0938,0.0587 -0.01,0.009 -0.0268,0.0167 -0.0372,0.0167 -0.0105,0 -0.0191,0.006 -0.0191,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.009 -0.02,0.02 0,0.0109 -0.009,0.02 -0.0203,0.02 -0.0111,0 -0.0441,0.015 -0.0731,0.0334 -0.0291,0.0183 -0.0584,0.0334 -0.0653,0.0334 -0.007,0 -0.0144,0.005 -0.017,0.01 -0.008,0.0179 -0.13146,0.0967 -0.15162,0.0967 -0.0108,0 -0.0196,0.007 -0.0196,0.0152 0,0.0207 -0.0413,0.0506 -0.0706,0.0511 -0.0132,2.6e-4 -0.0565,0.0244 -0.0962,0.0538 -0.0397,0.0293 -0.0815,0.0533 -0.0928,0.0533 -0.0113,0 -0.0206,0.009 -0.0206,0.02 0,0.0111 -0.009,0.02 -0.02,0.02 -0.0111,0 -0.02,0.006 -0.02,0.0141 0,0.008 -0.006,0.0106 -0.0128,0.006 -0.007,-0.005 -0.0246,0.003 -0.039,0.0182 -0.0143,0.0143 -0.0284,0.0237 -0.0312,0.0208 -0.002,-0.002 -0.0248,0.0127 -0.0487,0.0345 -0.0239,0.0219 -0.0513,0.0397 -0.061,0.0397 -0.01,0 -0.025,0.009 -0.0342,0.02 -0.009,0.0111 -0.0249,0.02 -0.035,0.02 -0.0101,0 -0.0184,0.006 -0.0184,0.0134 0,0.008 -0.009,0.0134 -0.0205,0.0134 -0.0112,0 -0.0239,0.009 -0.0281,0.02 -0.005,0.0111 -0.019,0.02 -0.033,0.02 -0.0138,0 -0.0253,0.006 -0.0253,0.0134 0,0.008 -0.0114,0.0134 -0.0253,0.0134 -0.0139,0 -0.0286,0.009 -0.0329,0.02 -0.005,0.0111 -0.0199,0.02 -0.0348,0.02 -0.0153,0 -0.0271,0.009 -0.0271,0.02 0,0.011 -0.009,0.02 -0.02,0.02 -0.011,0 -0.02,0.005 -0.02,0.0102 0,0.0102 -0.0396,0.0343 -0.0834,0.0509 -0.0128,0.005 -0.0234,0.0141 -0.0234,0.0206 0,0.007 -0.009,0.0118 -0.0191,0.0118 -0.0105,0 -0.0272,0.008 -0.0373,0.0167 -0.0265,0.0243 -0.067,0.0497 -0.0938,0.0587 -0.0128,0.005 -0.0234,0.0124 -0.0234,0.018 0,0.006 -0.0105,0.0138 -0.0234,0.018 -0.0267,0.009 -0.0672,0.0343 -0.0938,0.0587 -0.01,0.009 -0.0268,0.0167 -0.0373,0.0167 -0.0105,0 -0.0191,0.006 -0.0191,0.0134 0,0.008 -0.009,0.0134 -0.02,0.0134 -0.0111,0 -0.02,0.005 -0.02,0.0119 0,0.007 -0.0155,0.0157 -0.0345,0.0206 -0.0325,0.009 -0.0463,0.0169 -0.0918,0.0576 -0.0102,0.009 -0.0243,0.0167 -0.0312,0.0167 -0.007,0 -0.0201,0.009 -0.0293,0.02 -0.0183,0.0219 -0.0657,0.0256 -0.0867,0.007 z m 2.92224,-0.36528 c -0.0147,-0.009 -0.0297,-0.0181 -0.0334,-0.0217 -0.0201,-0.0201 -0.0943,-0.0667 -0.10621,-0.0667 -0.008,0 -0.0138,-0.006 -0.0138,-0.0134 0,-0.008 -0.0114,-0.0134 -0.0253,-0.0134 -0.0139,0 -0.0286,-0.009 -0.0329,-0.02 -0.005,-0.0111 -0.0199,-0.02 -0.0348,-0.02 -0.0149,0 -0.0271,-0.005 -0.0271,-0.0118 0,-0.007 -0.0105,-0.0154 -0.0234,-0.0196 -0.0254,-0.009 -0.0727,-0.037 -0.0834,-0.0502 -0.003,-0.005 -0.0203,-0.0124 -0.0367,-0.0176 -0.0165,-0.005 -0.03,-0.015 -0.03,-0.0219 0,-0.007 -0.009,-0.0124 -0.02,-0.0124 -0.0111,0 -0.02,-0.006 -0.02,-0.0125 0,-0.007 -0.0135,-0.0167 -0.03,-0.0219 -0.0165,-0.005 -0.0331,-0.013 -0.0367,-0.0176 -0.0107,-0.0132 -0.0581,-0.0417 -0.0834,-0.0502 -0.0128,-0.005 -0.0234,-0.0131 -0.0234,-0.0196 0,-0.007 -0.009,-0.0118 -0.019,-0.0118 -0.0105,0 -0.0272,-0.008 -0.0372,-0.0167 -0.0265,-0.0243 -0.0671,-0.0497 -0.0938,-0.0587 -0.0128,-0.005 -0.0234,-0.0107 -0.0234,-0.0141 0,-0.0144 0.0617,-0.0564 0.0834,-0.0568 0.0128,-2.6e-4 0.0234,-0.007 0.0234,-0.0138 0,-0.008 0.009,-0.0134 0.019,-0.0134 0.0105,0 0.0208,-0.005 0.0234,-0.0106 0.002,-0.006 0.027,-0.0243 0.0545,-0.0411 0.0275,-0.0168 0.05,-0.0361 0.05,-0.0428 0,-0.007 0.0128,-0.0122 0.0285,-0.0122 0.0157,0 0.0413,-0.0139 0.0571,-0.0309 0.0157,-0.017 0.0494,-0.0425 0.075,-0.0567 0.0255,-0.0142 0.0493,-0.0293 0.053,-0.0335 0.003,-0.005 0.0157,-0.0119 0.0267,-0.0172 0.0521,-0.0249 0.0791,-0.045 0.071,-0.0531 -0.005,-0.005 7.6e-4,-0.009 0.0125,-0.009 0.0118,0 0.0294,-0.008 0.0395,-0.0167 0.0265,-0.0243 0.067,-0.0497 0.0938,-0.0587 0.0128,-0.005 0.0234,-0.0125 0.0234,-0.0182 0,-0.006 0.015,-0.0141 0.0334,-0.0187 0.0183,-0.005 0.0334,-0.0143 0.0334,-0.0215 0,-0.007 0.009,-0.0131 0.02,-0.0131 0.0109,0 0.02,-0.005 0.02,-0.0103 0,-0.006 0.0225,-0.0222 0.05,-0.0366 0.0276,-0.0144 0.0549,-0.0338 0.0607,-0.0431 0.006,-0.009 0.0193,-0.0168 0.03,-0.0168 0.0106,0 0.0193,-0.006 0.0193,-0.0134 0,-0.008 0.009,-0.0134 0.0204,-0.0134 0.0112,0 0.0239,-0.009 0.0281,-0.02 0.005,-0.0111 0.0221,-0.02 0.0396,-0.02 0.0176,0 0.0319,-0.005 0.0319,-0.0105 0,-0.0128 0.0828,-0.0636 0.0967,-0.0594 0.005,0.002 0.01,-0.002 0.01,-0.009 0,-0.007 0.018,-0.005 0.04,0.002 0.022,0.009 0.0401,0.0193 0.0401,0.0244 0,0.005 0.018,0.0134 0.04,0.0182 0.022,0.005 0.04,0.0143 0.04,0.0211 0,0.007 0.009,0.0122 0.0184,0.0122 0.0101,0 0.0258,0.009 0.035,0.02 0.009,0.0109 0.0279,0.02 0.0417,0.02 0.0137,0 0.025,0.006 0.025,0.0134 0,0.008 0.0152,0.0134 0.0339,0.0134 0.0186,0 0.0373,0.009 0.0414,0.02 0.005,0.0111 0.019,0.02 0.033,0.02 0.0139,0 0.0253,0.005 0.0253,0.0118 0,0.007 0.0105,0.0156 0.0234,0.0202 0.0316,0.0114 0.0823,0.0416 0.10054,0.0598 0.009,0.009 0.0257,0.0149 0.039,0.0149 0.0132,0 0.0241,0.006 0.0241,0.0134 0,0.008 0.0136,0.0134 0.0301,0.0134 0.0166,0 0.0463,0.015 0.0661,0.0334 0.0198,0.0183 0.0484,0.0334 0.0637,0.0334 0.0152,0 0.0312,0.009 0.0354,0.02 0.005,0.0111 0.019,0.02 0.0329,0.02 0.0485,0 0.0281,0.0473 -0.0338,0.0782 -0.0326,0.0162 -0.073,0.0442 -0.0901,0.0622 -0.017,0.018 -0.0371,0.0328 -0.0445,0.0328 -0.008,1.6e-4 -0.0296,0.0153 -0.0495,0.0335 -0.0198,0.0183 -0.0422,0.0334 -0.0499,0.0334 -0.008,0 -0.014,0.005 -0.014,0.0102 0,0.006 -0.0225,0.0222 -0.05,0.0367 -0.0275,0.0144 -0.058,0.0339 -0.0676,0.0431 -0.01,0.009 -0.0257,0.0167 -0.0357,0.0167 -0.01,0 -0.029,0.0138 -0.0424,0.0307 -0.0134,0.0169 -0.0333,0.0352 -0.0444,0.0406 -0.0484,0.0237 -0.0856,0.0484 -0.0733,0.0487 0.008,9e-5 -0.0121,0.0128 -0.0434,0.0283 -0.0312,0.0154 -0.0567,0.0335 -0.0567,0.04 0,0.007 -0.009,0.012 -0.02,0.012 -0.0111,0 -0.02,0.009 -0.02,0.02 0,0.0112 -0.0119,0.02 -0.0271,0.02 -0.0149,0 -0.0306,0.009 -0.0348,0.02 -0.005,0.0111 -0.016,0.02 -0.0263,0.02 -0.0102,0 -0.0186,0.005 -0.0186,0.0112 0,0.006 -0.0211,0.0225 -0.0468,0.0364 -0.0257,0.0137 -0.0468,0.0298 -0.0468,0.0354 0,0.006 -0.009,0.0103 -0.0186,0.0103 -0.0102,0 -0.022,0.009 -0.0263,0.02 -0.005,0.0111 -0.0192,0.02 -0.0334,0.02 -0.0141,0 -0.0293,0.009 -0.0336,0.0209 -0.005,0.0115 -0.0141,0.0171 -0.0214,0.0126 -0.008,-0.005 -0.0134,5.2e-4 -0.0134,0.0111 0,0.0106 -0.015,0.0232 -0.0334,0.0277 -0.0183,0.005 -0.0334,0.0143 -0.0334,0.0215 0,0.007 -0.009,0.0131 -0.0189,0.0131 -0.0105,0 -0.0209,0.005 -0.0234,0.0118 -0.002,0.007 -0.0164,0.005 -0.0312,-0.003 z"
+ id="path56252"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.4313232;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -35.94889,35.9093 h -5.30885 v -5.25781 z"
+ id="rect55701-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.9705863px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.13810469"
+ x="-59.061882"
+ y="42.855503"
+ id="text55709-6"><tspan
+ sodipodi:role="line"
+ id="tspan55707-0"
+ x="-59.061882"
+ y="42.855503"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.13810469">PARQUET</tspan></text>
+ <path
+ style="fill:#6995f4;fill-opacity:1;stroke:none;stroke-width:0.31363189;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -60.81183,30.65149 h 19.55409 l -0.003,2.44581 h -19.55143 z"
+ id="rect55679-1-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+ </g>
+ <g
+ id="g13072"
+ transform="translate(0,-0.47244895)"
+ style="stroke-width:1.11137545">
+ <g
+ transform="matrix(0.7639736,0,0,0.7639736,141.24395,-103.38038)"
+ id="g5002"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -296.22335,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ id="rect55679-4-0-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -263.44559,144.95855 h -6.949 v -6.88219 z"
+ id="rect55701-3-7-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ x="-292.76242"
+ y="155.93517"
+ id="text55709-5-8-1"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-21"
+ x="-292.76242"
+ y="155.93517"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141">HTML</tspan></text>
+ <path
+ style="fill:#d45500;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -295.98983,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ id="rect55679-1-7-9-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <text
+ id="text55879-4"
+ y="171.957"
+ x="-291.82764"
+ style="font-style:normal;font-weight:normal;font-size:14.25364685px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#d45500;fill-opacity:1;stroke:none;stroke-width:0.39602885"
+ xml:space="preserve"><tspan
+ style="fill:#d45500;fill-opacity:1;stroke-width:0.39602885"
+ y="171.957"
+ x="-291.82764"
+ id="tspan55877-8"
+ sodipodi:role="line"><></tspan></text>
+ </g>
+ <g
+ transform="matrix(0.7639736,0,0,0.7639736,132.71412,-103.38038)"
+ id="g4993"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -247.76738,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ id="rect55679-4-0-7-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -214.98962,144.95855 h -6.949 v -6.88219 z"
+ id="rect55701-3-7-7-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ x="-244.30646"
+ y="155.93517"
+ id="text55709-5-8-1-5"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-21-3"
+ x="-244.30646"
+ y="155.93517"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141">HDF5</tspan></text>
+ <path
+ style="fill:#2cab28;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -247.53386,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ id="rect55679-1-7-9-0-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#2cab28;fill-opacity:1;stroke-width:0.01142396"
+ d="m -228.2809,172.80263 c -0.202,-0.0438 -0.37838,-0.14187 -0.50896,-0.28291 -0.0769,-0.083 -0.11316,-0.13774 -0.16538,-0.24931 -0.0851,-0.18181 -0.0809,-0.13496 -0.0871,-0.97682 l -0.006,-0.74885 -0.0888,0.10126 c -0.12247,0.13959 -0.41022,0.41948 -0.55874,0.54347 -0.84282,0.70368 -1.86652,1.17525 -3.06769,1.41315 -0.52549,0.10407 -1.00462,0.15148 -1.63022,0.16129 -0.53258,0.008 -0.64972,-0.005 -0.84254,-0.098 -0.26642,-0.12809 -0.46447,-0.38731 -0.51956,-0.68003 -0.0177,-0.094 -0.0151,-0.2674 0.005,-0.36491 0.076,-0.36089 0.3608,-0.6475 0.72486,-0.72956 0.065,-0.0147 0.1512,-0.0179 0.54992,-0.0205 0.47948,-0.004 0.60576,-0.009 0.95596,-0.0474 1.30447,-0.14149 2.34564,-0.6184 2.99398,-1.37141 0.39145,-0.45465 0.62298,-0.97115 0.70781,-1.579 0.0247,-0.17684 0.0247,-0.57128 -10e-5,-0.74923 -0.0492,-0.3547 -0.13728,-0.63945 -0.29551,-0.95596 -0.48894,-0.97817 -1.47794,-1.6518 -2.8511,-1.94196 -0.23021,-0.0487 -0.4358,-0.0806 -0.76323,-0.11859 l -0.0539,-0.006 v 2.13841 2.13841 h -2.71369 -2.71369 l -8e-5,1.75516 c -5e-5,1.16801 -0.004,1.77751 -0.0108,1.82197 -0.0153,0.0952 -0.0615,0.22303 -0.11373,0.31501 -0.0524,0.0922 -0.18048,0.23228 -0.27212,0.29768 -0.18509,0.13208 -0.43523,0.19653 -0.65358,0.1684 -0.27855,-0.0359 -0.52289,-0.18249 -0.67666,-0.40601 -0.0501,-0.0728 -0.11087,-0.20816 -0.13607,-0.30313 l -0.0231,-0.0874 v -4.48683 -4.48684 l 0.0237,-0.0867 c 0.0906,-0.33162 0.32687,-0.5747 0.65683,-0.67579 0.0816,-0.025 0.10651,-0.0278 0.25488,-0.0283 0.19819,-4.8e-4 0.25702,0.0121 0.42144,0.0916 0.27365,0.13243 0.46516,0.38659 0.51858,0.68819 0.007,0.041 0.0108,0.6273 0.0108,1.79114 v 1.73014 h 1.76777 1.76779 l 0.003,-1.76544 0.003,-1.76544 0.0236,-0.0822 c 0.0312,-0.10896 0.10123,-0.2515 0.16408,-0.33431 0.17162,-0.22611 0.44991,-0.37003 0.71444,-0.36946 0.0465,1e-4 2.81826,0.004 6.15949,0.008 l 6.07496,0.007 0.0722,0.0225 c 0.18274,0.057 0.31346,0.13732 0.43953,0.27005 0.14446,0.15211 0.23163,0.34134 0.25287,0.54896 0.0476,0.46593 -0.24024,0.88175 -0.70295,1.01524 l -0.0822,0.0237 -2.29996,0.003 -2.29995,0.003 v 1.2331 1.23311 l 1.66778,0.003 1.66779,0.003 0.0925,0.0288 c 0.17469,0.0546 0.32388,0.148 0.44081,0.27613 0.1602,0.17551 0.24276,0.39165 0.24276,0.63553 0,0.24752 -0.0819,0.46012 -0.24645,0.63968 -0.11647,0.12711 -0.26043,0.21641 -0.43936,0.27253 l -0.0903,0.0283 -1.66756,0.003 -1.66757,0.003 -0.003,1.80634 -0.003,1.80635 -0.0288,0.0925 c -0.11257,0.36055 -0.37513,0.60464 -0.72877,0.67751 -0.0965,0.0199 -0.27614,0.0201 -0.36676,4.9e-4 z"
+ id="path4972"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(0.7639736,0,0,0.7639736,389.89266,-103.38038)"
+ id="g57106"
+ style="stroke-width:1.11137545">
+ <g
+ id="g56951"
+ style="stroke-width:1.11137545">
+ <path
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0"
+ id="rect55679-4"
+ d="m -547.10925,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="rect55701-3"
+ d="m -514.33149,144.95855 h -6.949 v -6.88219 z"
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686" />
+ <text
+ id="text55709-5"
+ y="155.93515"
+ x="-543.47522"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141"
+ y="155.93515"
+ x="-543.47522"
+ id="tspan55707-4"
+ sodipodi:role="line">JSON</tspan></text>
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="rect55679-1-7"
+ d="m -546.87573,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ style="fill:#7c4515;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:14.25364685px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#7c4515;fill-opacity:1;stroke:none;stroke-width:0.39602885"
+ x="-539.08789"
+ y="171.74121"
+ id="text55879"><tspan
+ sodipodi:role="line"
+ id="tspan55877"
+ x="-539.08789"
+ y="171.74121"
+ style="fill:#7c4515;fill-opacity:1;stroke-width:0.39602885">{}</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ id="g13116"
+ transform="translate(0,-4.3467227)"
+ style="stroke-width:1.11137545">
+ <g
+ transform="matrix(0.7639736,0,0,0.7639736,209.56487,-64.753609)"
+ id="g56797"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -385.65173,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ id="rect55679-5-3-4"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <g
+ id="g56653"
+ transform="matrix(0.12939252,0,0,0.12939252,-377.59411,159.20773)"
+ style="stroke-width:1.11137545">
+ <g
+ style="display:none;stroke-width:1.11137545"
+ id="Placement_ONLY" />
+ <g
+ id="BASE"
+ style="stroke-width:1.11137545">
+ <linearGradient
+ y2="120.7894"
+ x2="63.999699"
+ y1="7.0335999"
+ x1="63.999699"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11218">
+ <stop
+ id="stop11214"
+ style="stop-color:#4387FD"
+ offset="0" />
+ <stop
+ id="stop11216"
+ style="stop-color:#4683EA"
+ offset="1" />
+ </linearGradient>
+ <path
+ id="path56591"
+ d="M 27.7906,115.2166 1.54,69.7493 c -2.0541,-3.5578 -2.0541,-7.9412 0,-11.499 L 27.7906,12.7831 c 2.0541,-3.5578 5.8503,-5.7495 9.9585,-5.7495 h 52.5012 c 4.1082,0 7.9044,2.1917 9.9585,5.7495 l 26.2506,45.4672 c 2.0541,3.5578 2.0541,7.9412 0,11.499 l -26.2506,45.4672 c -2.0541,3.5578 -5.8503,5.7495 -9.9585,5.7495 H 37.7491 c -4.1082,1e-4 -7.9043,-2.1916 -9.9585,-5.7494 z"
+ style="fill:url(#SVGID_1_);stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="shadow"
+ style="stroke-width:1.11137545">
+ <g
+ id="g56602"
+ style="stroke-width:1.11137545">
+ <defs
+ id="defs56595">
+ <path
+ d="M 27.7908,115.2166 1.5403,69.7493 c -2.0541,-3.5578 -2.0541,-7.9412 0,-11.499 L 27.7908,12.7831 C 29.8449,9.2253 33.641,7.0336 37.7493,7.0336 h 52.501 c 4.1082,0 7.9044,2.1917 9.9585,5.7495 l 26.2505,45.4672 c 2.0541,3.5578 2.0541,7.9412 0,11.499 l -26.2505,45.4672 c -2.0541,3.5578 -5.8502,5.7495 -9.9585,5.7495 h -52.501 c -4.1083,1e-4 -7.9044,-2.1916 -9.9585,-5.7494 z"
+ id="path12064"
+ inkscape:connector-curvature="0" />
+ </defs>
+ <clipPath
+ id="clipPath11226">
+ <use
+ id="use11224"
+ style="overflow:visible"
+ xlink:href="#SVGID_6_"
+ x="0"
+ y="0"
+ width="100%"
+ height="100%" />
+ </clipPath>
+ <polygon
+ id="polygon56600"
+ clip-path="url(#SVGID_2_)"
+ points="119.2289,86.4791 80.6247,47.8749 63.9997,43.4256 49.0668,48.9745 43.3004,63.9999 47.9372,80.729 88.8747,121.6665 97.5622,121.2811 "
+ style="opacity:0.07000002;stroke-width:1.11137545" />
+ </g>
+ </g>
+ <g
+ id="art"
+ style="stroke-width:1.11137545">
+ <g
+ id="g56617"
+ style="stroke-width:1.11137545">
+ <g
+ id="g56615"
+ style="stroke-width:1.11137545">
+ <path
+ id="path56605"
+ d="m 63.9997,40.804 c -12.8097,0 -23.1947,10.3849 -23.1947,23.1959 0,12.8097 10.385,23.1947 23.1947,23.1947 12.8097,0 23.1947,-10.385 23.1947,-23.1947 C 87.1945,51.1889 76.8095,40.804 63.9997,40.804 m 0,40.7948 c -9.72,0 -17.599,-7.879 -17.599,-17.599 0,-9.72 7.879,-17.6007 17.599,-17.6007 9.72,0 17.6001,7.8807 17.6001,17.6007 0,9.72 -7.8801,17.599 -17.6001,17.599"
+ style="fill:#ffffff;stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path56607"
+ d="m 52.9898,63.1041 v 7.2091 c 1.0659,1.8326 2.5751,3.3702 4.381,4.4754 V 63.1041 Z"
+ style="fill:#ffffff;stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path56609"
+ d="m 61.6754,57.0263 v 19.4109 c 0.7448,0.1363 1.5067,0.2199 2.2892,0.2199 0.7145,0 1.4098,-0.0752 2.093,-0.189 V 57.0263 Z"
+ style="fill:#ffffff;stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path56611"
+ d="m 70.7656,66.1008 v 8.5614 c 1.8325,-1.1695 3.3478,-2.7822 4.3822,-4.7002 v -3.8612 z"
+ style="fill:#ffffff;stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path56613"
+ d="m 80.6914,78.2867 -2.403,2.4049 c -0.4239,0.4227 -0.4239,1.1132 0,1.5371 l 9.1143,9.112 c 0.4227,0.4238 1.1144,0.4238 1.5371,0 l 2.403,-2.4013 c 0.4214,-0.4227 0.4214,-1.1143 0,-1.5365 l -9.1156,-9.1162 c -0.4215,-0.4221 -1.1143,-0.4221 -1.5358,0"
+ style="fill:#ffffff;stroke-width:1.11137545"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ <g
+ id="Guides"
+ style="stroke-width:1.11137545" />
+ </g>
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -352.87397,144.95855 h -6.949 v -6.88219 z"
+ id="rect55701-5-6-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:#4486f6;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -385.41821,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ id="rect55679-1-5-6-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ x="-379.1109"
+ y="155.33165"
+ id="text55709-5-8-0-4"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-2-6"
+ x="-379.1109"
+ y="155.33165"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141">GBQ</tspan></text>
+ </g>
+ <g
+ transform="matrix(0.7639736,0,0,0.7639736,270.63242,-64.753609)"
+ id="g56805"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.52249008;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -428.29495,138.07636 h 25.82876 l 6.84864,6.7172 v 33.52589 h -32.6774 z"
+ id="rect55679-5-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.56457865;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="m -395.51719,144.95855 h -6.949 v -6.88219 z"
+ id="rect55701-5-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:#d22b28;fill-opacity:1;stroke:none;stroke-width:0.41052711;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -428.06143,138.07636 h 25.59524 l -0.004,3.20143 h -25.59176 z"
+ id="rect55679-1-5-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="fill:#d22b28;fill-opacity:1;stroke-width:0.03987985"
+ d="m -412.94012,174.83899 c -2.39286,-0.17337 -4.25462,-0.92363 -4.80603,-1.93675 -0.20796,-0.38207 -0.1997,-0.15791 -0.1997,-5.4163 0,-5.2584 -0.008,-5.03422 0.1997,-5.41631 0.52229,-0.95963 2.12948,-1.65202 4.42926,-1.90817 0.59425,-0.0661 2.22107,-0.055 2.85272,0.0195 2.42842,0.28682 3.99755,1.04433 4.40698,2.12751 l 0.0784,0.20754 0.01,4.80836 c 0.007,3.25426 -0.003,4.88804 -0.0279,5.05486 -0.18694,1.21275 -1.86095,2.11808 -4.44966,2.40645 -0.62283,0.0695 -1.89574,0.0965 -2.49389,0.0532 z m 2.42212,-1.10913 c 1.01274,-0.12241 1.89648,-0.35364 2.52978,-0.66193 0.45831,-0.2231 0.73601,-0.43117 0.86172,-0.64568 0.0872,-0.14886 0.0893,-0.16846 0.0893,-0.89661 0,-0.40943 -0.0124,-0.73888 -0.0269,-0.73213 -0.0149,0.007 -0.16397,0.0828 -0.33145,0.16913 -1.54197,0.7942 -4.13331,1.10309 -6.47743,0.7721 -1.10764,-0.1564 -2.14234,-0.47058 -2.79149,-0.84762 -0.0946,-0.055 -0.1794,-0.0999 -0.18839,-0.0999 -0.01,0 -0.0164,0.34474 -0.0164,0.7661 v 0.76611 l 0.10825,0.14942 c 0.2826,0.39014 1.05764,0.77963 2.03963,1.02501 0.50715,0.12668 0.98591,0.20062 1.85311,0.28599 0.27949,0.0275 2.0144,-0.01 2.35036,-0.0499 z m -0.0897,-2.99878 c 1.48756,-0.16113 2.68968,-0.55239 3.26059,-1.06123 0.30547,-0.27227 0.30981,-0.28973 0.30981,-1.2474 0,-0.45588 -0.007,-0.82886 -0.0139,-0.82886 -0.008,0 -0.14893,0.0711 -0.31398,0.15803 -1.28011,0.67416 -3.50461,1.02839 -5.53905,0.88204 -1.40344,-0.10096 -2.61466,-0.38428 -3.49862,-0.81837 -0.22696,-0.11141 -0.42477,-0.20828 -0.43957,-0.21517 -0.0147,-0.007 -0.027,0.36911 -0.027,0.83552 0,0.96882 -0.004,0.94996 0.30074,1.22903 0.49729,0.45451 1.6456,0.85736 2.94812,1.03429 0.84879,0.11526 2.11973,0.12888 3.01279,0.0321 z m -0.25117,-3.17465 c 1.79501,-0.15181 3.38835,-0.72508 3.73976,-1.34554 0.0773,-0.13644 0.0806,-0.17795 0.0813,-0.99242 l 4.3e-4,-0.85007 -0.29605,0.15736 c -0.83154,0.442 -2.06898,0.76261 -3.39994,0.88088 -0.64577,0.0574 -2.00104,0.048 -2.62283,-0.0182 -1.30016,-0.13837 -2.35469,-0.41553 -3.14541,-0.82671 l -0.36781,-0.19125 v 0.87316 0.87316 l 0.11828,0.155 c 0.46867,0.61447 1.93789,1.13255 3.63158,1.28057 0.51111,0.0447 1.75415,0.0469 2.26066,0.004 z m -0.19736,-3.19261 c 1.57372,-0.11691 2.89719,-0.48754 3.5985,-1.00787 0.23246,-0.17245 0.42043,-0.42724 0.42043,-0.56986 0,-0.14316 -0.18674,-0.40773 -0.40076,-0.5678 -0.59209,-0.44282 -1.65343,-0.78705 -2.97228,-0.96401 -0.61144,-0.0821 -2.35152,-0.0922 -2.96037,-0.0173 -1.07536,0.13231 -1.92804,0.35436 -2.5836,0.67278 -0.55306,0.26864 -0.91503,0.60618 -0.91503,0.85329 0,0.28182 0.3789,0.63844 0.97521,0.91787 1.15871,0.543 3.07651,0.81371 4.8379,0.6829 z"
+ id="path56342"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccscccccscccccccsccscssccccccccssccccsccccccccccccccccsccccsscccsscc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.29405141"
+ x="-421.75409"
+ y="155.33165"
+ id="text55709-5-8-0"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-2"
+ x="-421.75409"
+ y="155.33165"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#afabab;fill-opacity:1;stroke-width:0.29405141">SQL</tspan></text>
+ </g>
+ <g
+ transform="translate(-4.7030536,-0.28414145)"
+ id="g12598"
+ style="stroke-width:1.11137545">
+ <path
+ style="fill:#adabab;fill-opacity:0.39215686;stroke:#ffffff;stroke-width:0.39916864;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -23.381309,41.017226 H -3.6488181 L 1.5833621,46.14899 V 71.761885 H -23.381309 Z"
+ id="rect55679-5-3-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#afabab;fill-opacity:1;stroke:none;stroke-width:0.4313232;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.39215686"
+ d="M 1.6600345,46.275038 H -3.6488181 V 41.017226 Z"
+ id="rect55701-5-6-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:#333333;fill-opacity:1;stroke:none;stroke-width:0.31363189;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -23.202906,41.017226 h 19.5540879 l -0.00306,2.445808 H -23.203307 Z"
+ id="rect55679-1-5-6-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.08538723px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;stroke-width:0.22464751"
+ x="-18.192799"
+ y="60.704777"
+ id="text55709-5-8-0-5-9"><tspan
+ sodipodi:role="line"
+ id="tspan55707-4-9-2-62-1"
+ x="-18.192799"
+ y="60.704777"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;fill:#333333;fill-opacity:1;stroke-width:0.22464751">...</tspan></text>
+ </g>
+ </g>
+ </g>
+ <path
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path6109-1"
+ d="m 152.96041,44.790275 h 26.66986"
+ style="fill:none;stroke:#000000;stroke-width:0.44455019;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-0)" />
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/03_subset_columns.svg b/doc/source/_static/schemas/03_subset_columns.svg
new file mode 100644
index 0000000000000..5495d3f67bcfc
--- /dev/null
+++ b/doc/source/_static/schemas/03_subset_columns.svg
@@ -0,0 +1,327 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="305.39435mm"
+ height="77.216072mm"
+ viewBox="0 0 305.39435 77.216072"
+ version="1.1"
+ id="svg8981"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="03_subset_columns.svg">
+ <defs
+ id="defs8975">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-6-6-1"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0-5-1"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.7"
+ inkscape:cx="515.3968"
+ inkscape:cy="188.43624"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata8978">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(221.9424,-112.49315)">
+ <g
+ id="g10981"
+ transform="matrix(0.89983205,0,0,0.89933244,-6.9361517,15.210989)"
+ style="stroke-width:1.1116271">
+ <g
+ transform="translate(3.4400191e-6)"
+ id="g10300"
+ style="stroke-width:1.1116271">
+ <path
+ d="M 6.4919652,138.65319 H 31.379905 V 126.46518 H 6.4919652 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-5-6-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32.907955,124.93718 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-47-3-7-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32.907955,138.65319 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8-1-5-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 6.4919552,151.35319 H 31.379905 V 139.16518 H 6.4919552 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-6-4-3-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32.907955,151.35319 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-0-20-5-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 58.307955,124.93718 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-0-1-6-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 58.307955,138.65319 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64-3-2-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 58.307955,151.35319 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-37-0-9-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 6.4919652,164.05319 H 31.379905 V 151.86528 H 6.4919652 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-5-0-1-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32.907955,164.05319 h 24.88796 v -12.18791 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-8-4-2-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 58.307955,164.05319 h 24.88796 v -12.18791 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-10-8-7-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 6.4919652,176.75319 H 31.379905 V 164.56518 H 6.4919652 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-8-8-1-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32.907955,176.75319 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8-5-2-8-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 6.4919552,189.45319 H 31.379905 V 177.26518 H 6.4919552 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-6-0-5-7-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32.907955,189.45319 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-0-2-4-9-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 58.307955,176.75319 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64-2-7-2-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 58.307955,189.45319 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-37-8-5-0-3"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(-1.765534e-6,2.601185)"
+ id="g10331"
+ style="stroke-width:1.1116271">
+ <path
+ d="m -221.68636,136.052 h 24.88794 v -12.188 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-5-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -195.27037,122.33599 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-47-3-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -195.27037,136.052 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8-1-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -221.68637,148.75201 h 24.88795 v -12.18802 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-6-4-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -195.27037,148.75201 h 24.88796 V 136.564 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-0-20-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -169.87037,122.33599 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-0-1-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -169.87037,136.052 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64-3-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -169.87037,148.75201 h 24.88796 V 136.564 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-37-0-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -221.68636,161.45201 h 24.88794 V 149.2641 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-5-0-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -195.27037,161.45201 h 24.88796 V 149.2641 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-8-4-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -169.87037,161.45201 h 24.88796 V 149.2641 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-10-8-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -144.47037,161.45201 h 24.88796 V 149.2641 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-67-2-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -144.47037,122.33599 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-0-2-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -144.47037,136.052 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-8-0-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -144.47037,148.75201 h 24.88796 v -12.18802 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-19-24-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -119.07037,161.45201 h 24.88793 V 149.2641 h -24.88793 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-85-5-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -119.07037,122.33599 h 24.88793 v -12.188 h -24.88793 z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-2-5-01-8-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -119.07037,136.052 h 24.88793 v -12.18801 h -24.88793 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-4-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -119.07037,148.75201 h 24.88793 V 136.564 h -24.88793 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-0-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -221.68636,174.152 h 24.88794 v -12.18801 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-8-8-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -195.27037,174.152 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8-5-2-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -221.68637,186.85201 h 24.88795 v -12.18802 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-6-0-5-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -195.27037,186.85201 h 24.88796 V 174.664 h -24.88796 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-0-2-4-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -169.87037,174.152 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64-2-7-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -169.87037,186.85201 h 24.88796 V 174.664 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-37-8-5-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -144.47037,174.152 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-8-5-5-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -144.47037,186.85201 h 24.88796 v -12.18802 h -24.88796 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-19-2-2-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -119.07037,174.152 h 24.88793 v -12.18801 h -24.88793 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-7-8-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -119.07037,186.85201 h 24.88793 V 174.664 h -24.88793 z"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-3-6-5"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-7"
+ d="m -68.124379,151.10823 h 47.88959"
+ style="fill:none;stroke:#000000;stroke-width:0.44465086;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-6-6-1)" />
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/03_subset_columns_rows.svg b/doc/source/_static/schemas/03_subset_columns_rows.svg
new file mode 100644
index 0000000000000..5ea9d609ec1c3
--- /dev/null
+++ b/doc/source/_static/schemas/03_subset_columns_rows.svg
@@ -0,0 +1,272 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="247.37685mm"
+ height="62.54488mm"
+ viewBox="0 0 247.37685 62.54488"
+ version="1.1"
+ id="svg8981"
+ sodipodi:docname="03_subset_columns_rows.svg"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)">
+ <defs
+ id="defs8975">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-6-6-1"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0-5-1"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.7"
+ inkscape:cx="382.49796"
+ inkscape:cy="12.478764"
+ inkscape:document-units="mm"
+ inkscape:current-layer="g10981"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata8978">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(190.64444,-119.82874)">
+ <g
+ id="g10981"
+ transform="matrix(0.89983205,0,0,0.89933244,-6.9361517,15.210989)"
+ style="stroke-width:1.1116271">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-5-5-6-6"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -5.3791094,156.43886 H 14.771891 v -9.8551 H -5.3791094 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-47-3-7-4"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 16.009106,145.34823 h 20.151016 v -9.85509 H 16.009106 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-8-1-5-9"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 16.009106,156.43886 h 20.151016 v -9.8551 H 16.009106 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-6-4-3-5"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -5.3791175,166.70796 H 14.771891 v -9.85511 H -5.3791175 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-0-20-5-0"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 16.009106,166.70796 h 20.151016 v -9.8551 H 16.009106 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-0-1-6-4"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 36.574705,145.34823 h 20.151017 v -9.85509 H 36.574705 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-64-3-2-8"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 36.574705,156.43886 h 20.151017 v -9.8551 H 36.574705 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-37-0-9-7"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 36.574705,166.70796 h 20.151017 v -9.8551 H 36.574705 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-5-5-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -190.12809,141.03585 h 20.15101 v -9.85509 h -20.15101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-47-3-7"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -168.73986,129.94522 h 20.15101 v -9.85509 h -20.15101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-8-1-5"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -168.73986,141.03585 h 20.15101 v -9.8551 h -20.15101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-6-4-3"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -190.12809,151.30495 h 20.15101 v -9.85511 h -20.15101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-0-20-5"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -168.73986,151.30495 h 20.15101 v -9.85511 h -20.15101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-0-1-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -148.17427,129.94522 h 20.15102 v -9.85509 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-64-3-2"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -148.17427,141.03585 h 20.15102 v -9.8551 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-37-0-9"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -148.17427,151.30495 h 20.15102 v -9.85511 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-5-0-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -190.12809,161.57404 h 20.15101 v -9.85502 h -20.15101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-8-4-2"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -168.73986,161.57404 h 20.15101 v -9.85502 h -20.15101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-10-8-7"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -148.17427,161.57404 h 20.15102 v -9.85502 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-67-2-0"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -127.60867,161.57404 h 20.15102 v -9.85502 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-0-2-9"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -127.60867,129.94522 h 20.15102 v -9.85509 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-8-0-3"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -127.60867,141.03585 h 20.15102 v -9.85509 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-19-24-6"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -127.60867,151.30495 h 20.15102 v -9.85511 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-85-5-0"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -107.04307,161.57404 h 20.150992 v -9.85502 h -20.150992 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-2-5-01-8-6"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -107.04307,129.94522 h 20.150992 v -9.85509 h -20.150992 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-4-2"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -107.04307,141.03585 h 20.150992 v -9.8551 h -20.150992 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-0-6"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -107.04307,151.30495 h 20.150992 v -9.85511 h -20.150992 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-5-8-8-1"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -190.12809,171.84313 h 20.15101 v -9.8551 h -20.15101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-8-5-2-8"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -168.73986,171.84313 h 20.15101 v -9.8551 h -20.15101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-6-0-5-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -190.12809,182.11223 h 20.15101 v -9.85511 h -20.15101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-0-2-4-9"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -168.73986,182.11223 h 20.15101 v -9.8551 h -20.15101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-64-2-7-2"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -148.17427,171.84313 h 20.15102 v -9.8551 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-37-8-5-0"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -148.17427,182.11223 h 20.15102 v -9.8551 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-8-5-5-2"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -127.60867,171.84313 h 20.15102 v -9.8551 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-19-2-2-3"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -127.60867,182.11223 h 20.15102 v -9.85511 h -20.15102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-7-8-7"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -107.04307,171.84313 h 20.150992 v -9.8551 h -20.150992 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-3-6-5"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920707;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -107.04307,182.11223 h 20.150992 v -9.8551 h -20.150992 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-7"
+ d="m -65.823888,151.10688 h 38.774729"
+ style="fill:none;stroke:#000000;stroke-width:0.44465086;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-6-6-1)" />
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/03_subset_rows.svg b/doc/source/_static/schemas/03_subset_rows.svg
new file mode 100644
index 0000000000000..41fe07d7fc34e
--- /dev/null
+++ b/doc/source/_static/schemas/03_subset_rows.svg
@@ -0,0 +1,316 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="320.56647mm"
+ height="69.494316mm"
+ viewBox="0 0 320.56647 69.494316"
+ version="1.1"
+ id="svg8981"
+ sodipodi:docname="03_subset_rows.svg"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)">
+ <defs
+ id="defs8975">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-6-6-1"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0-5-1"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.49497475"
+ inkscape:cx="838.29471"
+ inkscape:cy="34.832455"
+ inkscape:document-units="mm"
+ inkscape:current-layer="g10981"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata8978">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(206.67275,-116.35402)">
+ <g
+ id="g10981"
+ transform="matrix(0.89983205,0,0,0.89933244,-6.9361517,15.210989)"
+ style="stroke-width:1.1116271">
+ <g
+ id="g11450"
+ transform="matrix(0.89983997,0,0,0.89925792,-4.3915493,15.222243)"
+ style="stroke-width:1.23576057">
+ <g
+ transform="translate(-1.1404361e-5)"
+ id="g11347"
+ style="stroke-width:1.23576057">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-5-5-6-6"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 6.49197,157.7024 h 24.88794 v -12.188 H 6.49197 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-47-3-7-4"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 32.90796,143.98639 h 24.88796 v -12.188 H 32.90796 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-8-1-5-9"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 32.90796,157.7024 H 57.79592 V 145.51439 H 32.90796 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-6-4-3-5"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 6.49196,170.40241 H 31.37991 V 158.21439 H 6.49196 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-0-20-5-0"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 32.90796,170.40241 H 57.79592 V 158.2144 H 32.90796 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-0-1-6-4"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 58.30796,143.98639 h 24.88796 v -12.188 H 58.30796 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-64-3-2-8"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 58.30796,157.7024 H 83.19592 V 145.51439 H 58.30796 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-37-0-9-7"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 58.30796,170.40241 H 83.19592 V 158.2144 H 58.30796 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-0-2-9-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.70796,143.98639 h 24.88796 v -12.188 H 83.70796 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-8-0-3-2"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.70796,157.7024 h 24.88796 v -12.188 H 83.70796 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-19-24-6-6"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.70796,170.40241 h 24.88796 V 158.21439 H 83.70796 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-2-5-01-8-6-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.10796,143.98639 h 24.88793 v -12.188 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-4-2-6"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.10796,157.7024 h 24.88793 v -12.18801 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-0-6-1"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.10796,170.40241 h 24.88793 V 158.2144 h -24.88793 z" />
+ </g>
+ <g
+ id="g11378"
+ style="stroke-width:1.23576057">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-5-5-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -221.68636,138.65318 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-47-3-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -195.27037,124.93717 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-8-1-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -195.27037,138.65318 h 24.88796 v -12.18801 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-6-4-3"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -221.68637,151.35319 h 24.88795 v -12.18802 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-0-20-5"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -195.27037,151.35319 h 24.88796 v -12.18801 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-0-1-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -169.87037,124.93717 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-64-3-2"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -169.87037,138.65318 h 24.88796 v -12.18801 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-37-0-9"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -169.87037,151.35319 h 24.88796 v -12.18801 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-5-0-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -221.68636,164.05319 h 24.88794 v -12.18791 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-8-4-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -195.27037,164.05319 h 24.88796 v -12.18791 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-10-8-7"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -169.87037,164.05319 h 24.88796 v -12.18791 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-67-2-0"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -144.47037,164.05319 h 24.88796 v -12.18791 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-0-2-9"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -144.47037,124.93717 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-8-0-3"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -144.47037,138.65318 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-19-24-6"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -144.47037,151.35319 h 24.88796 v -12.18802 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-85-5-0"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -119.07037,164.05319 h 24.887928 v -12.18791 h -24.887928 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-2-5-01-8-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -119.07037,124.93717 h 24.887928 v -12.188 h -24.887928 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-4-2"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -119.07037,138.65318 h 24.887928 v -12.18801 h -24.887928 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-0-6"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -119.07037,151.35319 h 24.887928 v -12.18801 h -24.887928 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-5-8-8-1"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -221.68636,176.75318 h 24.88794 v -12.18801 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-8-5-2-8"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -195.27037,176.75318 h 24.88796 v -12.18801 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-6-0-5-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -221.68637,189.45319 h 24.88795 v -12.18802 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-0-2-4-9"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -195.27037,189.45319 h 24.88796 v -12.18801 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-64-2-7-2"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -169.87037,176.75318 h 24.88796 v -12.18801 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-37-8-5-0"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -169.87037,189.45319 h 24.88796 v -12.18801 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-8-5-5-2"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -144.47037,176.75318 h 24.88796 v -12.18801 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-19-2-2-3"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -144.47037,189.45319 h 24.88796 v -12.18802 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-7-8-7"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -119.07037,176.75318 h 24.887928 v -12.18801 h -24.887928 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-3-6-5"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.63276947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -119.07037,189.45319 h 24.887928 v -12.18801 h -24.887928 z" />
+ </g>
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.49430427;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-6-6-1)"
+ d="m -68.161706,151.10823 h 47.88959"
+ id="path6109-2-9-6-9-7"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/04_plot_overview.svg b/doc/source/_static/schemas/04_plot_overview.svg
new file mode 100644
index 0000000000000..44ae5b6ae5e33
--- /dev/null
+++ b/doc/source/_static/schemas/04_plot_overview.svg
@@ -0,0 +1,6443 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="279.05978mm"
+ height="79.448936mm"
+ viewBox="0 0 279.05978 79.448937"
+ version="1.1"
+ id="svg15565"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="04_plot_overview.svg">
+ <defs
+ id="defs15559">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <clipPath
+ id="clipPath23666-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23664-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23678-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23676-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23690-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23688-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23702-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23700-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23714-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23712-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23726-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23724-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23738-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23736-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23750-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23748-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23762-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23760-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23774-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23772-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23786-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23784-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23798-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23796-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23810-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23808-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23822-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23820-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23834-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23832-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23846-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23844-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23858-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23856-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23870-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23868-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23882-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23880-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23894-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23892-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23906-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23904-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23918-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23916-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23930-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23928-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23942-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23940-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23954-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23952-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23966-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23964-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23978-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23976-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23990-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23988-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24002-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24000-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24014-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24012-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24026-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24024-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24038-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24036-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24050-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24048-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24062-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24060-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24074-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24072-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24086-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24084-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24098-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24096-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24110-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24108-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24122-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24120-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24134-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24132-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24146-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24144-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24158-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24156-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24170-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24168-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24182-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24180-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24194-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24192-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24206-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24204-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24218-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24216-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24230-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24228-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24242-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24240-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24254-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24252-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24266-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24264-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24278-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24276-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24290-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24288-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24302-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24300-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24314-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24312-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24326-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24324-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24338-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24336-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24350-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24348-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24362-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24360-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24374-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24372-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24386-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24384-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24398-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24396-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24410-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24408-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24422-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24420-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24434-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24432-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24446-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24444-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24458-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24456-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24470-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24468-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24482-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24480-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24494-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24492-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24506-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24504-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24518-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24516-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24530-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24528-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24542-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24540-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24554-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24552-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24566-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24564-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24578-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24576-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24590-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24588-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24602-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24600-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24614-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24612-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24626-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24624-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24638-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24636-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24650-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24648-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24662-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24660-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24674-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24672-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24686-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24684-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24698-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24696-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24710-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24708-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24722-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24720-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24734-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24732-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24746-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24744-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24758-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24756-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24770-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24768-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24782-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24780-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24794-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24792-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24806-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24804-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24818-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24816-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24830-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24828-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24842-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24840-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24854-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24852-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24866-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24864-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24878-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24876-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24890-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24888-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24902-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24900-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24914-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24912-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24926-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24924-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24938-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24936-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24950-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24948-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24962-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24960-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24974-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24972-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24986-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24984-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath24998-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24996-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25010-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25008-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25022-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25020-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25034-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25032-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25046-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25044-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25058-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25056-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25070-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25068-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25082-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25080-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25094-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25092-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25106-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25104-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25118-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25116-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25130-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25128-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25142-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25140-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25154-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25152-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25166-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25164-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25178-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25176-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25190-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25188-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25202-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25200-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25214-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25212-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25226-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25224-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25238-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25236-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25250-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25248-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25262-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25260-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25274-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25272-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25286-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25284-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25298-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25296-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25310-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25308-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25322-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25320-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25334-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25332-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25346-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25344-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25358-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25356-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25370-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25368-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25382-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25380-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25394-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25392-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25406-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25404-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25418-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25416-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25430-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25428-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25442-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25440-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25454-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25452-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25466-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25464-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25478-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25476-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25490-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25488-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25502-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25500-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25514-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25512-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25526-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25524-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25538-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25536-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25550-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25548-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25562-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25560-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25574-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25572-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25586-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25584-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25598-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25596-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25610-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25608-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25622-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25620-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25634-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25632-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25646-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25644-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25658-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25656-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25670-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25668-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25682-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25680-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25694-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25692-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25706-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25704-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25718-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25716-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25730-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25728-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25742-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25740-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25754-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25752-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25766-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25764-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25778-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25776-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25790-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25788-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25802-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25800-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25814-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25812-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25826-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25824-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25838-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25836-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25850-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25848-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25862-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25860-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25874-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25872-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25886-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25884-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25898-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25896-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25910-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25908-6"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25922-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25920-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25934-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25932-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25946-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25944-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25958-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25956-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25970-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25968-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25982-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25980-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath25994-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25992-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26006-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26004-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26018-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26016-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26030-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26028-1"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26042-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26040-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26054-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26052-8"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26066-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26064-5"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26078-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26076-4"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26090-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26088-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26102-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26100-3"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26114-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26112-0"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26126-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26124-7"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26138-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26136-9"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath26150-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26148-2"
+ d="M -2.736068,-2.736068 H 2.736068 V 2.736068 H -2.736068 Z" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath272">
+ <path
+ d="M 54,36 H 388.8 V 253.44 H 54 Z"
+ id="path270"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath132">
+ <path
+ d="M 54,36 H 388.8 V 253.44 H 54 Z"
+ id="path130"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath142">
+ <path
+ d="m -3.5,-3.5 h 7 v 7 h -7 z"
+ id="path140"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath154">
+ <path
+ d="m -3.5,-3.5 h 7 v 7 h -7 z"
+ id="path152"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath166">
+ <path
+ d="m -3.5,-3.5 h 7 v 7 h -7 z"
+ id="path164"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath178">
+ <path
+ d="m -3.5,-3.5 h 7 v 7 h -7 z"
+ id="path176"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath190">
+ <path
+ d="m -3.5,-3.5 h 7 v 7 h -7 z"
+ id="path188"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath202">
+ <path
+ d="m -3.5,-3.5 h 7 v 7 h -7 z"
+ id="path200"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath214">
+ <path
+ d="m -3.5,-3.5 h 7 v 7 h -7 z"
+ id="path212"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath226">
+ <path
+ d="m -3.5,-3.5 h 7 v 7 h -7 z"
+ id="path224"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath238">
+ <path
+ d="m -3.5,-3.5 h 7 v 7 h -7 z"
+ id="path236"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath250">
+ <path
+ d="m -3.5,-3.5 h 7 v 7 h -7 z"
+ id="path248"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath262">
+ <path
+ d="m -3.5,-3.5 h 7 v 7 h -7 z"
+ id="path260"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath122">
+ <path
+ d="M 54,36 H 388.8 V 253.44 H 54 Z"
+ id="path120"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath112">
+ <path
+ d="M 54,36 H 388.8 V 253.44 H 54 Z"
+ id="path110"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath102">
+ <path
+ d="M 54,36 H 388.8 V 253.44 H 54 Z"
+ id="path100"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath92">
+ <path
+ d="M 54,36 H 388.8 V 253.44 H 54 Z"
+ id="path90"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath82">
+ <path
+ d="M 54,36 H 388.8 V 253.44 H 54 Z"
+ id="path80"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ id="clipPath20926"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20924"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20936"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20934"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20946"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20944"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20956"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20954"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20966"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20964"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20976"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20974"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20986"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20984"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20996"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20994"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21006"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21004"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21016"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21014"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21026"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21024"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21036"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21034"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21048"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21046"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21060"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21058"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21072"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21070"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21084"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21082"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21096"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21094"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21108"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21106"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21118"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21116"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21128"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21126"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23791"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23789"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23801"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23799"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23811"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23809"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23821"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23819"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23831"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23829"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23841"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23839"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23851"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23849"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23861"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23859"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23871"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23869"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath23881"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23879"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath42476"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path42474"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath42486"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path42484"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath42496"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path42494"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21118-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21116-7"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21128-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21126-6"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20926-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20924-6"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20936-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20934-9"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20946-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20944-8"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20956-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20954-2"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20966-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20964-3"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20976-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20974-0"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20986-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20984-8"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath20996-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20994-0"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21006-9"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21004-6"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21016-3"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21014-8"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21026-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21024-6"
+ d="M 54,36 H 388.8 V 253.44 H 54 Z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21036-1"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21034-1"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21048-5"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21046-9"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21060-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21058-4"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21072-8"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21070-1"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21084-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21082-3"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21096-0"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21094-4"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ <clipPath
+ id="clipPath21108-4"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21106-4"
+ d="m -3.5,-3.5 h 7 v 7 h -7 z" />
+ </clipPath>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.52850025"
+ inkscape:cx="304.48721"
+ inkscape:cy="323.02301"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ showguides="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0" />
+ <metadata
+ id="metadata15562">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(2.9900145,-83.072472)">
+ <g
+ id="g3126"
+ transform="matrix(0.89985527,0,0,0.89947476,13.672209,12.344233)"
+ style="stroke-width:1.11152482">
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2"
+ d="M 99.794627,121.59047 H 147.68421"
+ style="fill:none;stroke:#000000;stroke-width:0.44460994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7)" />
+ <text
+ id="text47247-6-7"
+ y="115.60715"
+ x="106.41215"
+ style="font-style:normal;font-weight:normal;font-size:12.12705898px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33698818"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.08470631px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.33698818"
+ y="115.60715"
+ x="106.41215"
+ id="tspan47245-1-51"
+ sodipodi:role="line">.plot.*</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -2.8037002,112.52508 H 15.307077 v -8.8691 H -2.8037002 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-4"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 16.419028,102.54403 H 34.529812 V 93.674949 H 16.419028 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-6"
+ style="fill:#150458;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 16.419028,112.52508 h 18.110784 v -8.8691 H 16.419028 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -2.8037074,121.76678 H 15.307077 v -8.86909 H -2.8037074 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-6"
+ style="fill:#150458;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 16.419028,121.76678 h 18.110784 v -8.86909 H 16.419028 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 34.902427,102.54403 H 53.013218 V 93.674949 H 34.902427 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 34.902427,112.52508 h 18.110791 v -8.8691 H 34.902427 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-4"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 34.902427,121.76678 h 18.110791 v -8.86909 H 34.902427 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-4"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -2.8037002,131.00849 H 15.307077 V 122.1394 H -2.8037002 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-3"
+ style="fill:#150458;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 16.419028,131.00849 H 34.529812 V 122.1394 H 16.419028 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 34.902427,131.00849 H 53.013218 V 122.1394 H 34.902427 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -2.8037002,140.2502 H 15.307077 v -8.86909 H -2.8037002 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-6-2"
+ style="fill:#150458;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 16.419028,140.2502 h 18.110784 v -8.86909 H 16.419028 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 34.902427,140.2502 h 18.110791 v -8.86909 H 34.902427 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-8"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -2.8037002,149.4919 H 15.307077 v -8.86909 H -2.8037002 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-9"
+ style="fill:#150458;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 16.419028,149.4919 h 18.110784 v -8.86909 H 16.419028 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-0"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 34.902427,149.4919 h 18.110791 v -8.86909 H 34.902427 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-2"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 53.385833,131.00849 h 18.11077 v -8.86909 h -18.11077 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-4"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 53.385826,102.54403 H 71.496603 V 93.674949 H 53.385826 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-7"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 53.385833,112.52508 h 18.11077 v -8.8691 h -18.11077 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-6"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 53.385826,121.76678 h 18.110777 v -8.86909 H 53.385826 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-5"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 53.385833,140.2502 h 18.11077 v -8.86909 h -18.11077 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-7"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 53.385833,149.4919 h 18.11077 v -8.86909 h -18.11077 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-1"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 71.869225,131.00849 H 89.979987 V 122.1394 H 71.869225 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-2-5-3"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 71.869218,102.54403 H 89.979987 V 93.674949 H 71.869218 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-2-6-3"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 71.869225,112.52508 h 18.110762 v -8.8691 H 71.869225 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-1-4-3"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 71.869218,121.76678 h 18.110769 v -8.86909 H 71.869218 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-6-6-8"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 71.869225,140.2502 h 18.110762 v -8.86909 H 71.869225 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-2-3-5"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.41416982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 71.869225,149.4919 h 18.110762 v -8.86909 H 71.869225 Z" />
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke-width:1.11152482"
+ id="g3833">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23812"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35804299;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 189.7326,108.3544 c 0.18739,0 0.36713,-0.0744 0.49963,-0.20696 0.13251,-0.1325 0.20696,-0.31224 0.20696,-0.49963 0,-0.18739 -0.0744,-0.36713 -0.20696,-0.49964 -0.1325,-0.1325 -0.31224,-0.20695 -0.49963,-0.20695 -0.18739,0 -0.36713,0.0744 -0.49963,0.20695 -0.13251,0.13251 -0.20697,0.31225 -0.20697,0.49964 0,0.18739 0.0744,0.36713 0.20697,0.49963 0.1325,0.13251 0.31224,0.20696 0.49963,0.20696 z" />
+ <path
+ d="m 187.00776,102.79094 c 0.18739,0 0.36713,-0.0745 0.49963,-0.20695 0.13251,-0.13251 0.20696,-0.31225 0.20696,-0.49964 0,-0.18739 -0.0744,-0.36713 -0.20696,-0.49963 -0.1325,-0.13251 -0.31224,-0.20696 -0.49963,-0.20696 -0.18739,0 -0.36713,0.0744 -0.49963,0.20696 -0.13251,0.1325 -0.20696,0.31224 -0.20696,0.49963 0,0.18739 0.0744,0.36713 0.20696,0.49964 0.1325,0.1325 0.31224,0.20695 0.49963,0.20695 z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35804299;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="path23824"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g23830"
+ clip-path="url(#clipPath23834-3)"
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="matrix(0.31599668,0,0,-0.31599668,163.8466,114.13986)">
+ <path
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="path23836"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35804299;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 180.19566,113.17061 c 0.18739,0 0.36713,-0.0744 0.49963,-0.20695 0.13251,-0.13251 0.20696,-0.31225 0.20696,-0.49964 0,-0.18739 -0.0744,-0.36713 -0.20696,-0.49963 -0.1325,-0.13251 -0.31224,-0.20696 -0.49963,-0.20696 -0.18739,0 -0.36713,0.0744 -0.49963,0.20696 -0.13251,0.1325 -0.20697,0.31224 -0.20697,0.49963 0,0.18739 0.0745,0.36713 0.20697,0.49964 0.1325,0.1325 0.31224,0.20695 0.49963,0.20695 z"
+ id="path23860" />
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath23870-0)"
+ id="g23866"
+ transform="matrix(0.31599668,0,0,-0.31599668,201.9944,116.85251)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23872"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g23876"
+ transform="matrix(0.31599668,0,0,-0.31599668,208.80651,114.90184)">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath23882-9)"
+ id="g23878">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23884"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="matrix(0.31599668,0,0,-0.31599668,193.39883,118.19034)"
+ id="g23886">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g23888">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath23894-6)"
+ id="g23890">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23896"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-8.6230106,6.5685171)"
+ id="g23898">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g23900">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath23906-2)"
+ id="g23902">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23908"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-150.90269,22.264784)"
+ id="g23910">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g23912">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath23918-4)"
+ id="g23914" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(163.8372,-21.440103)"
+ id="g23922">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g23924">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath23930-7)"
+ id="g23926">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23932"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(56.049569,-3.9690819)"
+ id="g23934">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g23936">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath23942-4)"
+ id="g23938" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-224.19828,9.8688641)"
+ id="g23946">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g23948">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath23954-1)"
+ id="g23950" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(60.361074,-12.984328)"
+ id="g23958">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g23960">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath23966-8)"
+ id="g23962">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23968"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(4.3115053,2.5190697)"
+ id="g23970">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g23972">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath23978-3)"
+ id="g23974">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23980"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(129.34516,14.48577)"
+ id="g23982">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g23984">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath23990-8)"
+ id="g23986">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23992"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-25.869032)"
+ id="g23994">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g23996">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24002-2)"
+ id="g23998">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24004"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-90.541612,81.166037)"
+ id="g24006">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24008">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24014-0)"
+ id="g24010" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-30.180537,-85.916396)"
+ id="g24018">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24020">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24026-1)"
+ id="g24022" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(43.115053,-7.8819118)"
+ id="g24030">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24032">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24038-0)"
+ id="g24034">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24040"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(12.934516,-4.3725682)"
+ id="g24042">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24044">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24050-5)"
+ id="g24046">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24052"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-38.803548,-0.0578724)"
+ id="g24054">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24056">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24062-6)"
+ id="g24058">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24064"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-8.6230106,19.369583)"
+ id="g24066">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24068">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24074-6)"
+ id="g24070">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24076"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(73.29559,-19.322976)"
+ id="g24078">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24080">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24086-5)"
+ id="g24082">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24088"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(6.467258,-0.56263544)"
+ id="g24090">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24092">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24098-6)"
+ id="g24094">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24100"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-6.467258,5.4351826)"
+ id="g24102">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24104">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24110-8)"
+ id="g24106">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24112"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-68.984085,34.096487)"
+ id="g24114">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24116">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24122-7)"
+ id="g24118">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24124"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-25.869032,-34.766842)"
+ id="g24126">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24128">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24134-4)"
+ id="g24130" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(73.29559,-3.1974499)"
+ id="g24138">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24140">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24146-6)"
+ id="g24142">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24148"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(60.361074,16.225182)"
+ id="g24150">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24152">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24158-9)"
+ id="g24154">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24160"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-86.230106,-17.479084)"
+ id="g24162">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24164">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24170-0)"
+ id="g24166">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24172"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(17.246021,4.4513519)"
+ id="g24174">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24176">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24182-1)"
+ id="g24178">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24184"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(17.246021,-4.2021919)"
+ id="g24186">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24188">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24194-1)"
+ id="g24190">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24196"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(8.6230106,6.9848897)"
+ id="g24198">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24200">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24206-0)"
+ id="g24202">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24208"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-43.115053,-7.243695)"
+ id="g24210">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24212">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24218-4)"
+ id="g24214">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24220"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(47.426558,1.9483707)"
+ id="g24222">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24224">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24230-3)"
+ id="g24226">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24232"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-51.738064,-1.6300725)"
+ id="g24234">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24236">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24242-1)"
+ id="g24238">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24244"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(25.869032,-0.41475218)"
+ id="g24246">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24248">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24254-6)"
+ id="g24250">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24256"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(116.41064,17.318315)"
+ id="g24258">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24260">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24266-3)"
+ id="g24262" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-81.918601,0.0530497)"
+ id="g24270">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24272">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24278-8)"
+ id="g24274">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24280"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-90.541612,-8.4606358)"
+ id="g24282">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24284">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24290-5)"
+ id="g24286" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(120.72215,-6.5861874)"
+ id="g24294">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24296">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24302-6)"
+ id="g24298">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24304"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-81.918601,-1.9692819)"
+ id="g24306">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24308">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24314-0)"
+ id="g24310">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24316"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-4.3115053,-0.29738696)"
+ id="g24318">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24320">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24326-4)"
+ id="g24322">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24328"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-25.869032,30.624143)"
+ id="g24330">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24332">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24338-2)"
+ id="g24334">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24340"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-34.492042,-22.136192)"
+ id="g24342">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24344">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24350-7)"
+ id="g24346" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(0,-1.1092209)"
+ id="g24354">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24356">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24362-6)"
+ id="g24358" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(103.47613,1.6397179)"
+ id="g24366">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24368">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24374-8)"
+ id="g24370">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24376"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-120.72215,-1.0031215)"
+ id="g24378">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24380">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24386-2)"
+ id="g24382" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(120.72215,-7.774192)"
+ id="g24390">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24392">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24398-2)"
+ id="g24394">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24400"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-30.180537,7.0411416)"
+ id="g24402">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24404">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24410-9)"
+ id="g24406">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24412"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(21.557527,26.042579)"
+ id="g24414">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24416">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24422-0)"
+ id="g24418">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24424"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-8.6230106,-17.901861)"
+ id="g24426">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24428">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24434-7)"
+ id="g24430">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24436"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-43.115053,-15.164188)"
+ id="g24438">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24440">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24446-1)"
+ id="g24442">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24448"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-73.640511,55.462667)"
+ id="g24450">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24452">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24458-2)"
+ id="g24454" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(99.509543,42.999191)"
+ id="g24462">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24464">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24470-5)"
+ id="g24466">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24472"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(159.5257,-99.063075)"
+ id="g24474">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24476">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24482-9)"
+ id="g24478" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-159.5257,93.090953)"
+ id="g24486">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24488">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24494-4)"
+ id="g24490">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24496"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(86.230106,-89.285843)"
+ id="g24498">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24500">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24506-1)"
+ id="g24502">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24508"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-17.246021,5.7486581)"
+ id="g24510">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24512">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24518-7)"
+ id="g24514">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24520"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(43.115053,9.6068179)"
+ id="g24522">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24524">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24530-8)"
+ id="g24526">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24532"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-94.853117,-17.901861)"
+ id="g24534">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24536">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24542-0)"
+ id="g24538">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24544"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(56.049569,11.64682)"
+ id="g24546">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24548">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24554-8)"
+ id="g24550">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24556"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-155.21419,-10.499017)"
+ id="g24558">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24560">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24566-4)"
+ id="g24562" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(90.541612,-1.7699308)"
+ id="g24570">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24572">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24578-9)"
+ id="g24574">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24580"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(12.934516,6.9880919)"
+ id="g24582">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24584">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24590-1)"
+ id="g24586">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24592"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-47.426558,-1.1574479)"
+ id="g24594">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24596">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24602-4)"
+ id="g24598">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24604"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(4.3115053,92.595835)"
+ id="g24606">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24608">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24614-2)"
+ id="g24610">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24616"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(30.180537,-95.257965)"
+ id="g24618">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24620">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24626-0)"
+ id="g24622">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24628"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(94.853117,-1.1960295)"
+ id="g24630">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24632">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24638-5)"
+ id="g24634">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24640"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-103.47613,4.3018482)"
+ id="g24642">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24644">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24650-9)"
+ id="g24646">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24652"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-90.541612,0.71375956)"
+ id="g24654">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24656">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24662-2)"
+ id="g24658" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(133.65666,-7.525032)"
+ id="g24666">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24668">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24674-3)"
+ id="g24670">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24676"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-30.180537,27.097168)"
+ id="g24678">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24680">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24686-0)"
+ id="g24682">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24688"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-8.6230106,-26.54576)"
+ id="g24690">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24692">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24698-0)"
+ id="g24694">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24700"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(12.934516,1.9580161)"
+ id="g24702">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24704">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24710-1)"
+ id="g24706">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24712"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(34.492042,5.0156077)"
+ id="g24714">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24716">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24722-6)"
+ id="g24718">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24724"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-47.426558,1.5432639)"
+ id="g24726">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24728">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24734-5)"
+ id="g24730">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24736"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-4.3115053,20.509322)"
+ id="g24738">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24740">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24746-4)"
+ id="g24742">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24748"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(25.869032,-10.119606)"
+ id="g24750">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24752">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24758-9)"
+ id="g24754">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24760"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(68.984085,-11.93298)"
+ id="g24762">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24764">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24770-6)"
+ id="g24766">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24772"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(56.049569,-4.8226997)"
+ id="g24774">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24776">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24782-5)"
+ id="g24778" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-241.4443,2.922556)"
+ id="g24786">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24788">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24794-2)"
+ id="g24790" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(159.5257,2.6331941)"
+ id="g24798">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24800">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24806-4)"
+ id="g24802">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24808"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-142.27968,-0.63659637)"
+ id="g24810">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24812">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24818-5)"
+ id="g24814" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(64.67258,15.567675)"
+ id="g24822">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24824">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24830-7)"
+ id="g24826">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24832"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(0,-22.906203)"
+ id="g24834">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24836">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24842-3)"
+ id="g24838">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24844"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(8.6230106,4.4449087)"
+ id="g24846">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24848">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24854-4)"
+ id="g24850">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24856"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-8.6230106,-4.3324048)"
+ id="g24858">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24860">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24866-9)"
+ id="g24862">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24868"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-8.6230106,0.15594682)"
+ id="g24870">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24872">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24878-2)"
+ id="g24874">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24880"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(68.984085,-0.01126583)"
+ id="g24882">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24884">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24890-6)"
+ id="g24886">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24892"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-56.049569,0.01126583)"
+ id="g24894">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24896">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24902-1)"
+ id="g24898">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24904"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(172.46021,27.019966)"
+ id="g24906">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24908">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24914-8)"
+ id="g24910" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-120.72215,167.58723)"
+ id="g24918">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24920">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24926-9)"
+ id="g24922" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-34.492042,-185.8974)"
+ id="g24930">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24932">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24938-8)"
+ id="g24934">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24940"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(125.03365,1.9290799)"
+ id="g24942">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24944">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24950-8)"
+ id="g24946" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-25.869032,-9.6453995)"
+ id="g24954">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24956">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24962-8)"
+ id="g24958">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24964"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-103.47613,-1.0207919)"
+ id="g24966">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24968">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24974-8)"
+ id="g24970">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24976"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-8.6230106,25.327199)"
+ id="g24978">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24980">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24986-3)"
+ id="g24982">
+ <path
+ inkscape:connector-curvature="0"
+ id="path24988"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(68.984085,-25.569954)"
+ id="g24990">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g24992">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath24998-8)"
+ id="g24994">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25000"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(38.803548,26.815831)"
+ id="g25002">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25004">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25010-4)"
+ id="g25006">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25012"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(4.3115053,-19.572136)"
+ id="g25014">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25016">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25022-6)"
+ id="g25018">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25024"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-68.984085,-5.0156077)"
+ id="g25026">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25028">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25034-9)"
+ id="g25030">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25036"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(60.361074,5.2278065)"
+ id="g25038">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25040">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25046-6)"
+ id="g25042">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25048"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-112.09914,-7.4462484)"
+ id="g25050">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25052">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25058-7)"
+ id="g25054">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25060"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(12.934516,0.15432639)"
+ id="g25062">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25064">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25070-0)"
+ id="g25066">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25072"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-30.180537,25.405982)"
+ id="g25074">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25076">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25082-3)"
+ id="g25078">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25084"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(142.27968,-18.11406)"
+ id="g25086">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25088">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25094-7)"
+ id="g25090">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25096"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-77.607096,-7.1970884)"
+ id="g25098">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25100">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25106-2)"
+ id="g25102">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25108"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(43.115053,78.491059)"
+ id="g25110">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25112">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25118-5)"
+ id="g25114">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25120"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-43.115053,-78.198456)"
+ id="g25122">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25124">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25130-6)"
+ id="g25126">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25132"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-38.803548,-0.29260284)"
+ id="g25134">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25136">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25142-8)"
+ id="g25138">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25144"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(120.72215,27.150218)"
+ id="g25146">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25148">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25154-9)"
+ id="g25150">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25156"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-185.39473,-24.31447)"
+ id="g25158">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25160">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25166-0)"
+ id="g25162" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(103.47613,4.1491422)"
+ id="g25170">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25172">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25178-1)"
+ id="g25174">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25180"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(64.67258,-7.0009396)"
+ id="g25182">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25184">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25190-4)"
+ id="g25186">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25192"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-137.96817,-0.04664515)"
+ id="g25194">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25196">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25202-7)"
+ id="g25198">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25204"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(60.361074,0.12218792)"
+ id="g25206">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25208">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25214-8)"
+ id="g25210">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25216"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-25.869032,-0.21381922)"
+ id="g25218">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25220">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25226-2)"
+ id="g25222">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25228"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-8.6230106,0.09807442)"
+ id="g25230">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25232">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25238-7)"
+ id="g25234">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25240"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-8.6230106,0.0675178)"
+ id="g25242">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25244">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25250-3)"
+ id="g25246">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25252"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(53.893816,8.5442035)"
+ id="g25254">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25256">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25262-2)"
+ id="g25258">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25264"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(66.828332,18.001556)"
+ id="g25266">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25268">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25274-3)"
+ id="g25270">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25276"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-77.607096,-21.501216)"
+ id="g25278">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25280">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25286-1)"
+ id="g25282">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25288"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(12.934516,-5.1024163)"
+ id="g25290">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25292">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25298-8)"
+ id="g25294">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25300"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-140.46884,0.28615971)"
+ id="g25302">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25304">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25310-1)"
+ id="g25306" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(243.94497,1.4789484)"
+ id="g25314">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25316">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25322-4)"
+ id="g25318" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-129.34516,5.2663881)"
+ id="g25326">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25328">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25334-2)"
+ id="g25330">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25336"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(12.934516,-5.0156077)"
+ id="g25338">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25340">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25346-7)"
+ id="g25342">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25348"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25350">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25352">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25358-9)"
+ id="g25354">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25360"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(66.828332,5.9801477)"
+ id="g25362">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25364">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25370-4)"
+ id="g25366">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25372"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-40.9593,-10.995755)"
+ id="g25374">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25376">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25382-9)"
+ id="g25378">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25384"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-77.607096,7.7983055)"
+ id="g25386">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25388">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25394-5)"
+ id="g25390">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25396"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(51.738064,33.26216)"
+ id="g25398">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25400">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25406-0)"
+ id="g25402">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25408"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-30.180537,-37.501313)"
+ id="g25410">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25412">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25418-1)"
+ id="g25414">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25420"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(4.3115053,0.10609939)"
+ id="g25422">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25424">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25430-9)"
+ id="g25426">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25432"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(34.492042,-0.60766017)"
+ id="g25434">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25436">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25442-8)"
+ id="g25438">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25444"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-4.3115053,18.933919)"
+ id="g25446">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25448">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25454-5)"
+ id="g25450">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25456"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-43.115053,-18.961235)"
+ id="g25458">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25460">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25466-4)"
+ id="g25462">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25468"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(189.70623,-0.04020203)"
+ id="g25470">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25472">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25478-0)"
+ id="g25474" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-129.34516,17.496755)"
+ id="g25482">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25484">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25490-0)"
+ id="g25486">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25492"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(23.713279,-17.496755)"
+ id="g25494">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25496">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25502-9)"
+ id="g25498">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25504"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-84.074354,-0.00644313)"
+ id="g25506">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25508">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25514-2)"
+ id="g25510">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25516"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-8.6230106,7.0475848)"
+ id="g25518">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25520">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25526-2)"
+ id="g25522">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25528"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(81.918601,17.471021)"
+ id="g25530">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25532">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25538-7)"
+ id="g25534">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25540"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-34.492042,-18.18478)"
+ id="g25542">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25544">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25550-1)"
+ id="g25546">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25552"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(17.246021,-3.7617058)"
+ id="g25554">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25556">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25562-9)"
+ id="g25558">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25564"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(28.024785,0.0385816)"
+ id="g25566">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25568">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25574-5)"
+ id="g25570">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25576"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-165.99295,2.5367401)"
+ id="g25578">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25580">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25586-7)"
+ id="g25582" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(146.59118,2.5753217)"
+ id="g25590">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25592">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25598-4)"
+ id="g25594">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25600"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-64.67258,-7.6986492)"
+ id="g25602">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25604">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25610-6)"
+ id="g25606">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25612"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(12.934516,-0.28774156)"
+ id="g25614">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25616">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25622-7)"
+ id="g25618">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25624"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(0,24.017045)"
+ id="g25626">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25628">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25634-8)"
+ id="g25630">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25636"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-12.934516,-23.939882)"
+ id="g25638">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25640">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25646-8)"
+ id="g25642">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25648"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(107.78763,27.75946)"
+ id="g25650">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25652">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25658-6)"
+ id="g25654">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25660"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-34.492042,28.651659)"
+ id="g25662">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25664">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25670-6)"
+ id="g25666">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25672"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-56.049569,-56.221413)"
+ id="g25674">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25676">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25682-4)"
+ id="g25678">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25684"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-51.738064,-0.19773069)"
+ id="g25686">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25688">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25694-2)"
+ id="g25690" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(56.049569,7.2420746)"
+ id="g25698">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25700">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25706-9)"
+ id="g25702">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25708"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(43.115053,20.390375)"
+ id="g25710">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25712">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25718-0)"
+ id="g25714">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25720"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-38.803548,-25.608536)"
+ id="g25722">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25724">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25730-0)"
+ id="g25726">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25732"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(4.3115053,5.4303599)"
+ id="g25734">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25736">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25742-0)"
+ id="g25738">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25744"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(30.180537,-0.21219879)"
+ id="g25746">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25748">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25754-3)"
+ id="g25750">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25756"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-43.115053,6.0107043)"
+ id="g25758">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25760">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25766-7)"
+ id="g25762">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25768"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(30.180537,5.7550626)"
+ id="g25770">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25772">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25778-6)"
+ id="g25774">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25780"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-112.09914,-9.0650551)"
+ id="g25782">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25784">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25790-5)"
+ id="g25786" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(73.29559,11.712717)"
+ id="g25794">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25796">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25802-0)"
+ id="g25798">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25804"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-17.246021,-21.338826)"
+ id="g25806">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25808">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25814-9)"
+ id="g25810">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25816"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(64.67258,9.4332007)"
+ id="g25818">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25820">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25826-9)"
+ id="g25822">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25828"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(25.869032,-1.8438917)"
+ id="g25830">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25832">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25838-4)"
+ id="g25834">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25840"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(133.65666,2.6750165)"
+ id="g25842">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25844">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25850-1)"
+ id="g25846" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-206.95225,-8.3545364)"
+ id="g25854">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25856">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25862-3)"
+ id="g25858">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25864"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(25.869032,0.86646553)"
+ id="g25866">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25868">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25874-8)"
+ id="g25870">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25876"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(64.67258,28.841365)"
+ id="g25878">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25880">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25886-6)"
+ id="g25882">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25888"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(25.869032,-30.67237)"
+ id="g25890">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25892">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25898-4)"
+ id="g25894">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25900"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-198.32924,0.24433726)"
+ id="g25902">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25904">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25910-7)"
+ id="g25906" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(107.78763,-0.24433726)"
+ id="g25914">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25916">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25922-0)"
+ id="g25918">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25924"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(86.230106,17.913127)"
+ id="g25926">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25928">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25934-7)"
+ id="g25930">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25936"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-107.78763,8.5924305)"
+ id="g25938">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25940">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25946-9)"
+ id="g25942">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25948"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-21.557527,-27.409023)"
+ id="g25950">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25952">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25958-8)"
+ id="g25954">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25960"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(51.738064,-0.15752866)"
+ id="g25962">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25964">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25970-3)"
+ id="g25966">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25972"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(8.6230106,7.7163196)"
+ id="g25974">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25976">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25982-8)"
+ id="g25978">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25984"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(129.34516,-7.0073827)"
+ id="g25986">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g25988">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath25994-7)"
+ id="g25990" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-159.5257,1.8776506)"
+ id="g25998">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26000">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26006-3)"
+ id="g26002">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26008"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(155.21419,-1.5255935)"
+ id="g26010">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26012">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26018-8)"
+ id="g26014" />
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-155.21419,17.745915)"
+ id="g26022">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26024">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26030-4)"
+ id="g26026">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26032"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(56.049569,-21.796982)"
+ id="g26034">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26036">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26042-9)"
+ id="g26038">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26044"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-10.778763,10.031215)"
+ id="g26046">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26048">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26054-9)"
+ id="g26050">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26056"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-66.828332,-7.0314962)"
+ id="g26058">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26060">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26066-8)"
+ id="g26062">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26068"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(81.918601,56.208566)"
+ id="g26070">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26072">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26078-8)"
+ id="g26074">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26080"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-21.557527,-51.106149)"
+ id="g26082">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26084">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26090-3)"
+ id="g26086">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26092"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-64.67258,-4.3034686)"
+ id="g26094">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26096">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26102-1)"
+ id="g26098">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26104"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(86.230106,-0.14306057)"
+ id="g26106">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26108">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26114-8)"
+ id="g26110">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26116"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(-17.246021,11.82526)"
+ id="g26118">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26120">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26126-9)"
+ id="g26122">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26128"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(4.3115053,5.0059623)"
+ id="g26130">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26132">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26138-9)"
+ id="g26134">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26140"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ transform="translate(51.738064,22.29372)"
+ id="g26142">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ id="g26144">
+ <g
+ style="fill:#ffca00;fill-opacity:1;stroke:none;stroke-width:1.13305926;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ clip-path="url(#clipPath26150-3)"
+ id="g26146">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26152"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.13305926;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.78431373"
+ d="m 0,-2.236068 c 0.593012,0 1.161816,0.235606 1.581139,0.654929 C 2.000462,-1.161816 2.236068,-0.593012 2.236068,0 c 0,0.593012 -0.235606,1.161816 -0.654929,1.581139 C 1.161816,2.000462 0.593012,2.236068 0,2.236068 c -0.593012,0 -1.161816,-0.235606 -1.581139,-0.654929 C -2.000462,1.161816 -2.236068,0.593012 -2.236068,0 c 0,-0.593012 0.235606,-1.161816 0.654929,-1.581139 C -1.161816,-2.000462 -0.593012,-2.236068 0,-2.236068 Z" />
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path26248"
+ style="fill:#ffca00;fill-opacity:1;stroke:#505050;stroke-width:0.48219368;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="M 158.19812,120.30361 V 83.289427" />
+ </g>
+ <path
+ d="m 158.19812,120.30361 h 56.99205"
+ style="fill:none;stroke:#505050;stroke-width:0.48219368;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="path26252"
+ inkscape:connector-curvature="0" />
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g21112">
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21118)"
+ id="g21114">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21120"
+ style="fill:none;stroke:#505050;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 125.145,111.90702 h 25.11" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g21122">
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21128)"
+ id="g21124">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21130"
+ style="fill:none;stroke:#505050;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 292.545,116.87492 h 25.11" />
+ </g>
+ </g>
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g20920">
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath20926)"
+ id="g20922">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20928"
+ style="fill:none;stroke:#150458;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 125.145,89.551474 h 25.11 v 47.195046 h -25.11 V 89.551474" />
+ </g>
+ </g>
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g20930">
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath20936)"
+ id="g20932">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20938"
+ style="fill:none;stroke:#150458;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="M 137.7,89.551474 V 46.70334" />
+ </g>
+ </g>
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g20940">
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath20946)"
+ id="g20942">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20948"
+ style="fill:none;stroke:#150458;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 137.7,136.74652 v 64.5827" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g20950">
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath20956)"
+ id="g20952">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20958"
+ style="fill:none;stroke:#505050;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 131.4225,46.70334 h 12.555" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g20960">
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath20966)"
+ id="g20962">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20968"
+ style="fill:none;stroke:#505050;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 131.4225,201.32922 h 12.555" />
+ </g>
+ </g>
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g20970">
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath20976)"
+ id="g20972">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20978"
+ style="fill:none;stroke:#150458;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 292.545,97.003324 h 25.11 v 44.711096 h -25.11 V 97.003324" />
+ </g>
+ </g>
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g20980">
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath20986)"
+ id="g20982">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20988"
+ style="fill:none;stroke:#150458;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="M 305.1,97.003324 V 45.883636" />
+ </g>
+ </g>
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g20990">
+ <g
+ style="stroke:#150458;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath20996)"
+ id="g20992">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20998"
+ style="fill:none;stroke:#150458;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 305.1,141.71442 v 67.06665" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g21000">
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21006)"
+ id="g21002">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21008"
+ style="fill:none;stroke:#505050;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 298.8225,45.883636 h 12.555" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g21010">
+ <g
+ style="stroke:#505050;stroke-width:3.39917612;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21016)"
+ id="g21012">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21018"
+ style="fill:none;stroke:#505050;stroke-width:3.39917612;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 298.8225,208.78107 h 12.555" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.17022713,0,0,-0.17022713,209.66847,126.43174)"
+ id="g21020">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21026)"
+ id="g21022">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="translate(305.1,221.20082)"
+ id="g21028">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="g21030">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21036)"
+ id="g21032">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21038"
+ style="fill:none;stroke:#505050;stroke-width:1.13305879;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 0,-3 c 0.795609,0 1.55874,0.316099 2.12132,0.87868 C 2.683901,-1.55874 3,-0.795609 3,0 3,0.795609 2.683901,1.55874 2.12132,2.12132 1.55874,2.683901 0.795609,3 0,3 -0.795609,3 -1.55874,2.683901 -2.12132,2.12132 -2.683901,1.55874 -3,0.795609 -3,0 -3,-0.795609 -2.683901,-1.55874 -2.12132,-2.12132 -1.55874,-2.683901 -0.795609,-3 0,-3 Z" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="translate(0,-1.2419749)"
+ id="g21040">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="g21042">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21048)"
+ id="g21044">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21050"
+ style="fill:none;stroke:#505050;stroke-width:1.13305879;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 0,-3 c 0.795609,0 1.55874,0.316099 2.12132,0.87868 C 2.683901,-1.55874 3,-0.795609 3,0 3,0.795609 2.683901,1.55874 2.12132,2.12132 1.55874,2.683901 0.795609,3 0,3 -0.795609,3 -1.55874,2.683901 -2.12132,2.12132 -2.683901,1.55874 -3,0.795609 -3,0 -3,-0.795609 -2.683901,-1.55874 -2.12132,-2.12132 -1.55874,-2.683901 -0.795609,-3 0,-3 Z" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="translate(0,1.2419749)"
+ id="g21052">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="g21054">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21060)"
+ id="g21056">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21062"
+ style="fill:none;stroke:#505050;stroke-width:1.13305879;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 0,-3 c 0.795609,0 1.55874,0.316099 2.12132,0.87868 C 2.683901,-1.55874 3,-0.795609 3,0 3,0.795609 2.683901,1.55874 2.12132,2.12132 1.55874,2.683901 0.795609,3 0,3 -0.795609,3 -1.55874,2.683901 -2.12132,2.12132 -2.683901,1.55874 -3,0.795609 -3,0 -3,-0.795609 -2.683901,-1.55874 -2.12132,-2.12132 -1.55874,-2.683901 -0.795609,-3 0,-3 Z" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="translate(0,22.355548)"
+ id="g21064">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="g21066">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21072)"
+ id="g21068">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21074"
+ style="fill:none;stroke:#505050;stroke-width:1.13305879;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 0,-3 c 0.795609,0 1.55874,0.316099 2.12132,0.87868 C 2.683901,-1.55874 3,-0.795609 3,0 3,0.795609 2.683901,1.55874 2.12132,2.12132 1.55874,2.683901 0.795609,3 0,3 -0.795609,3 -1.55874,2.683901 -2.12132,2.12132 -2.683901,1.55874 -3,0.795609 -3,0 -3,-0.795609 -2.683901,-1.55874 -2.12132,-2.12132 -1.55874,-2.683901 -0.795609,-3 0,-3 Z" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="translate(0,-24.839498)"
+ id="g21076">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="g21078">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21084)"
+ id="g21080">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21086"
+ style="fill:none;stroke:#505050;stroke-width:1.13305879;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 0,-3 c 0.795609,0 1.55874,0.316099 2.12132,0.87868 C 2.683901,-1.55874 3,-0.795609 3,0 3,0.795609 2.683901,1.55874 2.12132,2.12132 1.55874,2.683901 0.795609,3 0,3 -0.795609,3 -1.55874,2.683901 -2.12132,2.12132 -2.683901,1.55874 -3,0.795609 -3,0 -3,-0.795609 -2.683901,-1.55874 -2.12132,-2.12132 -1.55874,-2.683901 -0.795609,-3 0,-3 Z" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="g21088">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="g21090">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21096)"
+ id="g21092">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21098"
+ style="fill:none;stroke:#505050;stroke-width:1.13305879;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 0,-3 c 0.795609,0 1.55874,0.316099 2.12132,0.87868 C 2.683901,-1.55874 3,-0.795609 3,0 3,0.795609 2.683901,1.55874 2.12132,2.12132 1.55874,2.683901 0.795609,3 0,3 -0.795609,3 -1.55874,2.683901 -2.12132,2.12132 -2.683901,1.55874 -3,0.795609 -3,0 -3,-0.795609 -2.683901,-1.55874 -2.12132,-2.12132 -1.55874,-2.683901 -0.795609,-3 0,-3 Z" />
+ </g>
+ </g>
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="translate(0,9.9357993)"
+ id="g21100">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="g21102">
+ <g
+ style="stroke:#505050;stroke-width:1.13305879;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath21108)"
+ id="g21104">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21110"
+ style="fill:none;stroke:#505050;stroke-width:1.13305879;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 0,-3 c 0.795609,0 1.55874,0.316099 2.12132,0.87868 C 2.683901,-1.55874 3,-0.795609 3,0 3,0.795609 2.683901,1.55874 2.12132,2.12132 1.55874,2.683901 0.795609,3 0,3 -0.795609,3 -1.55874,2.683901 -2.12132,2.12132 -2.683901,1.55874 -3,0.795609 -3,0 -3,-0.795609 -2.683901,-1.55874 -2.12132,-2.12132 -1.55874,-2.683901 -0.795609,-3 0,-3 Z" />
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ <path
+ d="M 218.86073,120.30357 V 83.289378"
+ style="fill:none;stroke:#505050;stroke-width:0.48219332;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="path21134"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 218.86073,120.30357 h 56.99204"
+ style="fill:none;stroke:#505050;stroke-width:0.48240176;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="path21138"
+ inkscape:connector-curvature="0" />
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.1702344,0,0,-0.1702344,149.00467,168.43373)"
+ id="g23785">
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath23791)"
+ id="g23787">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23793"
+ style="fill:#150458;fill-opacity:1;fill-rule:nonzero;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="M 69.218182,36 H 99.654545 V 99.178692 H 69.218182 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.1702344,0,0,-0.1702344,149.00467,168.43373)"
+ id="g23795">
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath23801)"
+ id="g23797">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23803"
+ style="fill:#150458;fill-opacity:1;fill-rule:nonzero;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="M 99.654545,36 H 130.09091 V 89.818886 H 99.654545 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.1702344,0,0,-0.1702344,149.00467,168.43373)"
+ id="g23805">
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath23811)"
+ id="g23807">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23813"
+ style="fill:#150458;fill-opacity:1;fill-rule:nonzero;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 130.09091,36 h 30.43636 v 207.08571 h -30.43636 z" />
+ </g>
+ </g>
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.1702344,0,0,-0.1702344,149.00467,168.43373)"
+ id="g23815">
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath23821)"
+ id="g23817">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23823"
+ style="fill:#150458;fill-opacity:1;fill-rule:nonzero;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.52727,36 h 30.43637 v 197.72591 h -30.43637 z" />
+ </g>
+ </g>
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.1702344,0,0,-0.1702344,149.00467,168.43373)"
+ id="g23825">
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath23831)"
+ id="g23827">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23833"
+ style="fill:#150458;fill-opacity:1;fill-rule:nonzero;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="M 190.96364,36 H 221.4 v 138.05714 h -30.43636 z" />
+ </g>
+ </g>
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.1702344,0,0,-0.1702344,149.00467,168.43373)"
+ id="g23835">
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath23841)"
+ id="g23837">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23843"
+ style="fill:#150458;fill-opacity:1;fill-rule:nonzero;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 221.4,36 h 30.43636 v 81.8983 H 221.4 Z" />
+ </g>
+ </g>
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.1702344,0,0,-0.1702344,149.00467,168.43373)"
+ id="g23845">
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath23851)"
+ id="g23847">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23853"
+ style="fill:#150458;fill-opacity:1;fill-rule:nonzero;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 251.83636,36 h 30.43637 v 52.64891 h -30.43637 z" />
+ </g>
+ </g>
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.1702344,0,0,-0.1702344,149.00467,168.43373)"
+ id="g23855">
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath23861)"
+ id="g23857">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23863"
+ style="fill:#150458;fill-opacity:1;fill-rule:nonzero;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 282.27273,36 h 30.43636 v 28.079419 h -30.43636 z" />
+ </g>
+ </g>
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0.1702344,0,0,-0.1702344,149.00467,168.43373)"
+ id="g23865">
+ <g
+ style="fill:#150458;fill-opacity:1;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ clip-path="url(#clipPath23871)"
+ id="g23867">
+ <path
+ inkscape:connector-curvature="0"
+ id="path23873"
+ style="fill:#150458;fill-opacity:1;fill-rule:nonzero;stroke:#ffffd8;stroke-width:1.57538962;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 312.70909,36 h 30.43637 v 10.529782 h -30.43637 z" />
+ </g>
+ </g>
+ <path
+ d="M 158.19733,162.30529 V 125.28952"
+ style="fill:none;stroke:#505050;stroke-width:0.48043513;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="path23993"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 158.19733,162.30529 h 56.99448"
+ style="fill:none;stroke:#505050;stroke-width:0.48043513;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ id="path23997"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(0.91342101,0,0,0.91342101,-19.440724,14.747995)"
+ id="g44700-2"
+ style="stroke-width:1.11152482">
+ <path
+ inkscape:connector-curvature="0"
+ id="path21134-8-9-1"
+ style="fill:none;stroke:#505050;stroke-width:0.48219332;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="M 260.86839,161.56318 V 124.54899" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path21138-1-3-0"
+ style="fill:none;stroke:#505050;stroke-width:0.48240176;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+ d="m 260.86839,161.56318 h 56.99204" />
+ </g>
+ <text
+ id="text47247-6-7-5"
+ y="146.26187"
+ x="234.65596"
+ style="font-style:normal;font-weight:normal;font-size:16.98972702px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#505050;fill-opacity:1;stroke:none;stroke-width:0.4721126"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.32648563px;font-family:monospace;-inkscape-font-specification:monospace;fill:#505050;fill-opacity:1;stroke-width:0.4721126"
+ y="146.26187"
+ x="234.65596"
+ id="tspan47245-1-51-1"
+ sodipodi:role="line">...</tspan></text>
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/05_newcolumn_1.svg b/doc/source/_static/schemas/05_newcolumn_1.svg
new file mode 100644
index 0000000000000..c158aa932d38e
--- /dev/null
+++ b/doc/source/_static/schemas/05_newcolumn_1.svg
@@ -0,0 +1,347 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="324.44537mm"
+ height="77.726311mm"
+ viewBox="0 0 324.44537 77.726311"
+ version="1.1"
+ id="svg9265"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="05_newcolumn_1.svg">
+ <defs
+ id="defs9259">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.7"
+ inkscape:cx="662.36942"
+ inkscape:cy="1.4822257"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata9262">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(113.44795,-29.083275)">
+ <g
+ id="g938"
+ transform="matrix(0.89983835,0,0,0.89933325,4.8853597,6.8399466)"
+ style="stroke-width:1.11162269">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-5-9"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,55.75353 h 24.88795 V 43.56556 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-73-8"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,42.03751 h 24.88796 V 29.84956 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-2-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,55.75353 h 24.88796 V 43.56556 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-72-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23746,68.45353 h 24.88796 V 56.26557 H 83.23746 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-13-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,68.45353 h 24.88796 V 56.26557 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-4-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,42.03751 h 24.88796 V 29.84956 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-94-0"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,55.75353 h 24.88796 V 43.56556 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-1-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,68.45353 h 24.88796 V 56.26557 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,81.15354 h 24.88795 V 68.96558 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-74-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,81.15354 h 24.88796 V 68.96558 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,81.15354 h 24.88796 V 68.96558 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-22-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,93.85355 h 24.88795 V 81.66559 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-6-1-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,93.85355 h 24.88796 V 81.66559 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-62-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,93.85355 h 24.88796 V 81.66559 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-0-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,106.55356 h 24.88795 V 94.3656 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-2-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,106.55356 h 24.88796 V 94.3656 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-2-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,106.55356 h 24.88796 V 94.3656 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-9-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,81.15354 h 24.88795 V 68.96558 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-7-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45347,42.03751 h 24.88796 V 29.84956 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-4-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,55.75353 h 24.88795 V 43.56556 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-8"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45347,68.45353 h 24.88796 V 56.26557 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-56-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,93.85355 h 24.88795 V 81.66559 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-1-4"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,106.55356 h 24.88795 V 94.3656 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-4-9-1"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,81.15354 H 210.7414 V 68.96558 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-2-5-03-2-2"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,42.03751 H 210.7414 V 29.84956 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-2-6-1-4-8"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,55.75353 H 210.7414 V 43.56556 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-1-4-2-4-9"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,68.45353 H 210.7414 V 56.26557 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-6-6-7-5-6"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,93.85355 H 210.7414 V 81.66559 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-2-3-7-9-0"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,106.55356 H 210.7414 V 94.3656 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-5-9-4"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.19192,55.24327 h 24.88795 V 43.0553 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-73-8-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,41.52725 h 24.88795 V 29.3393 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-2-1-8"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,55.24327 h 24.88795 V 43.0553 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-72-0-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.19193,67.94327 h 24.88796 V 55.75531 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-13-7-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,67.94327 h 24.88795 V 55.75531 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-4-6-7"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,41.52725 h 24.88796 V 29.3393 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-94-0-7"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,55.24327 h 24.88796 V 43.0553 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-1-1-2"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,67.94327 h 24.88796 V 55.75531 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-0-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.19192,80.64328 h 24.88795 V 68.45532 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-74-2-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,80.64328 h 24.88795 V 68.45532 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-5-2"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,80.64328 h 24.88796 V 68.45532 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-22-1-5"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.19192,93.34329 h 24.88795 V 81.15533 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-6-1-9-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,93.34329 h 24.88795 V 81.15533 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-62-7-7"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,93.34329 h 24.88796 V 81.15533 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-0-1-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.19192,106.0433 h 24.88795 V 93.85534 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-2-3-8"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,106.0433 h 24.88795 V 93.85534 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-2-1-1"
+ style="fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,106.0433 h 24.88796 V 93.85534 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-9-2-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97591,80.64328 h 24.88794 V 68.45532 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-7-0-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97592,41.52725 h 24.88795 V 29.3393 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-4-6-4"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97591,55.24327 h 24.88794 V 43.0553 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-8-0"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97592,67.94327 h 24.88795 V 55.75531 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-56-7-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97591,93.34329 h 24.88794 V 81.15533 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-1-4-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920481;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97591,106.0433 h 24.88794 V 93.85534 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9"
+ d="M 14.43931,73.73504 H 62.32889"
+ style="fill:none;stroke:#000000;stroke-width:0.4446491;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4)" />
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/05_newcolumn_2.svg b/doc/source/_static/schemas/05_newcolumn_2.svg
new file mode 100644
index 0000000000000..8bd5ad9a26994
--- /dev/null
+++ b/doc/source/_static/schemas/05_newcolumn_2.svg
@@ -0,0 +1,347 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="324.44537mm"
+ height="77.726311mm"
+ viewBox="0 0 324.44537 77.726311"
+ version="1.1"
+ id="svg9265"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="05_newcolumn_2.svg">
+ <defs
+ id="defs9259">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.49497475"
+ inkscape:cx="419.63138"
+ inkscape:cy="230.09877"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata9262">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(113.44795,-29.083275)">
+ <g
+ id="g938"
+ transform="matrix(0.89984193,0,0,0.89933685,4.8851851,6.839702)"
+ style="stroke-width:1.11161828">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-5-9"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,55.75353 h 24.88795 V 43.56556 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-73-8"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,42.03751 h 24.88796 V 29.84956 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-2-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,55.75353 h 24.88796 V 43.56556 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-72-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23746,68.45353 h 24.88796 V 56.26557 H 83.23746 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-13-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,68.45353 h 24.88796 V 56.26557 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-4-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,42.03751 h 24.88796 V 29.84956 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-94-0"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,55.75353 h 24.88796 V 43.56556 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-1-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,68.45353 h 24.88796 V 56.26557 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,81.15354 h 24.88795 V 68.96558 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-74-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,81.15354 h 24.88796 V 68.96558 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,81.15354 h 24.88796 V 68.96558 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-22-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,93.85355 h 24.88795 V 81.66559 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-6-1-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,93.85355 h 24.88796 V 81.66559 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-62-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,93.85355 h 24.88796 V 81.66559 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-0-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,106.55356 h 24.88795 V 94.3656 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-2-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,106.55356 h 24.88796 V 94.3656 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-2-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,106.55356 h 24.88796 V 94.3656 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-9-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,81.15354 h 24.88795 V 68.96558 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-7-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45347,42.03751 h 24.88796 V 29.84956 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-4-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,55.75353 h 24.88795 V 43.56556 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-8"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45347,68.45353 h 24.88796 V 56.26557 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-56-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,93.85355 h 24.88795 V 81.66559 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-1-4"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,106.55356 h 24.88795 V 94.3656 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-4-9-1"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,81.15354 H 210.7414 V 68.96558 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-2-5-03-2-2"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,42.03751 H 210.7414 V 29.84956 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-2-6-1-4-8"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,55.75353 H 210.7414 V 43.56556 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-1-4-2-4-9"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,68.45353 H 210.7414 V 56.26557 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-6-6-7-5-6"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,93.85355 H 210.7414 V 81.66559 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-2-3-7-9-0"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,106.55356 H 210.7414 V 94.3656 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-5-9-4"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.19192,55.24327 h 24.88795 V 43.0553 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-73-8-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,41.52725 h 24.88795 V 29.3393 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-2-1-8"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,55.24327 h 24.88795 V 43.0553 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-72-0-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.19193,67.94327 h 24.88796 V 55.75531 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-13-7-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,67.94327 h 24.88795 V 55.75531 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-4-6-7"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,41.52725 h 24.88796 V 29.3393 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-94-0-7"
+ style="fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,55.24327 h 24.88796 V 43.0553 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-1-1-2"
+ style="fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,67.94327 h 24.88796 V 55.75531 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-0-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.19192,80.64328 h 24.88795 V 68.45532 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-74-2-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,80.64328 h 24.88795 V 68.45532 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-5-2"
+ style="fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,80.64328 h 24.88796 V 68.45532 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-22-1-5"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.19192,93.34329 h 24.88795 V 81.15533 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-6-1-9-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,93.34329 h 24.88795 V 81.15533 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-62-7-7"
+ style="fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,93.34329 h 24.88796 V 81.15533 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-0-1-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.19192,106.0433 h 24.88795 V 93.85534 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-2-3-8"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.77592,106.0433 h 24.88795 V 93.85534 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-2-1-1"
+ style="fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.37592,106.0433 h 24.88796 V 93.85534 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-9-2-3"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97591,80.64328 h 24.88794 V 68.45532 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-7-0-6"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97592,41.52725 h 24.88795 V 29.3393 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-4-6-4"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97591,55.24327 h 24.88794 V 43.0553 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-8-0"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97592,67.94327 h 24.88795 V 55.75531 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-56-7-3"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97591,93.34329 h 24.88794 V 81.15533 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-1-4-5"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -35.97591,106.0433 h 24.88794 V 93.85534 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9"
+ d="M 14.43931,73.73504 H 62.32889"
+ style="fill:none;stroke:#000000;stroke-width:0.44464734;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4)" />
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/05_newcolumn_3.svg b/doc/source/_static/schemas/05_newcolumn_3.svg
new file mode 100644
index 0000000000000..45272d8c9a368
--- /dev/null
+++ b/doc/source/_static/schemas/05_newcolumn_3.svg
@@ -0,0 +1,352 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="324.44537mm"
+ height="77.726311mm"
+ viewBox="0 0 324.44537 77.726311"
+ version="1.1"
+ id="svg9265"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="05_newcolumn_3.svg">
+ <defs
+ id="defs9259">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.49497475"
+ inkscape:cx="398.22496"
+ inkscape:cy="-188.87908"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata9262">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(113.44795,-29.083275)">
+ <g
+ id="g940"
+ transform="matrix(0.89984193,0,0,0.89933685,4.8851851,6.839702)"
+ style="stroke-width:1.11161828">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-5-9"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,55.75353 h 24.88795 V 43.56556 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-73-8"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,42.03751 h 24.88796 V 29.84956 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-2-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,55.75353 h 24.88796 V 43.56556 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-72-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23746,68.45353 h 24.88796 V 56.26557 H 83.23746 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-13-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,68.45353 h 24.88796 V 56.26557 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-4-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,42.03751 h 24.88796 V 29.84956 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-94-0"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,55.75353 h 24.88796 V 43.56556 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-1-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,68.45353 h 24.88796 V 56.26557 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,81.15354 h 24.88795 V 68.96558 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-74-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,81.15354 h 24.88796 V 68.96558 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,81.15354 h 24.88796 V 68.96558 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-22-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,93.85355 h 24.88795 V 81.66559 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-6-1-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,93.85355 h 24.88796 V 81.66559 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-62-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,93.85355 h 24.88796 V 81.66559 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-0-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.23747,106.55356 h 24.88795 V 94.3656 H 83.23747 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-2-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.65347,106.55356 h 24.88796 V 94.3656 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-2-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.05347,106.55356 h 24.88796 V 94.3656 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-9-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,81.15354 h 24.88795 V 68.96558 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-7-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45347,42.03751 h 24.88796 V 29.84956 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-4-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,55.75353 h 24.88795 V 43.56556 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-8"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45347,68.45353 h 24.88796 V 56.26557 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-56-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,93.85355 h 24.88795 V 81.66559 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-1-4"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 160.45348,106.55356 h 24.88795 V 94.3656 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-4-9-1"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,81.15354 H 210.7414 V 68.96558 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-2-5-03-2-2"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,42.03751 H 210.7414 V 29.84956 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-2-6-1-4-8"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,55.75353 H 210.7414 V 43.56556 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-1-4-2-4-9"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,68.45353 H 210.7414 V 56.26557 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-6-6-7-5-6"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,93.85355 H 210.7414 V 81.66559 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-2-3-7-9-0"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 185.85348,106.55356 H 210.7414 V 94.3656 h -24.88792 z" />
+ <g
+ transform="translate(200.11428,-607.97617)"
+ id="g50992"
+ style="stroke-width:1.11161828">
+ <path
+ d="m -313.3062,663.21944 h 24.88795 v -12.18797 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-9-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -286.8902,649.50342 h 24.88795 v -12.18795 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-73-8-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -286.8902,663.21944 h 24.88795 v -12.18797 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-2-1-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -313.30621,675.91944 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-72-0-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -286.8902,675.91944 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-13-7-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -261.4902,649.50342 h 24.88796 v -12.18795 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-4-6-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -261.4902,663.21944 h 24.88796 v -12.18797 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-94-0-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -261.4902,675.91944 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-1-1-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -313.3062,688.61945 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-95-0-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -286.8902,688.61945 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-74-2-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -261.4902,688.61945 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-1-5-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -313.3062,701.31946 h 24.88795 V 689.1315 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-5-6-22-1-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -286.8902,701.31946 h 24.88795 V 689.1315 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-0-6-1-9-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -261.4902,701.31946 h 24.88796 V 689.1315 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-5-21-62-7-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -313.3062,714.01947 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-5-2-96-0-1-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -286.8902,714.01947 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-2-3-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -261.4902,714.01947 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-2-1-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -236.09019,688.61945 h 24.88794 v -12.18796 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-9-2-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -236.0902,649.50342 h 24.88795 v -12.18795 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-7-0-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -236.09019,663.21944 h 24.88794 v -12.18797 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-4-6-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -236.0902,675.91944 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-3-8-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -236.09019,701.31946 h 24.88794 V 689.1315 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-56-7-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -236.09019,714.01947 h 24.88794 v -12.18796 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56920254;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-1-4-5"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9"
+ d="M 14.43931,73.73504 H 62.32889"
+ style="fill:none;stroke:#000000;stroke-width:0.44464734;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4)" />
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/06_aggregate.svg b/doc/source/_static/schemas/06_aggregate.svg
new file mode 100644
index 0000000000000..14428feda44ec
--- /dev/null
+++ b/doc/source/_static/schemas/06_aggregate.svg
@@ -0,0 +1,211 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="252.24091mm"
+ height="77.216049mm"
+ viewBox="0 0 252.2409 77.216049"
+ version="1.1"
+ id="svg11151"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="06_aggregate.svg">
+ <defs
+ id="defs11145">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.49497475"
+ inkscape:cx="248.04006"
+ inkscape:cy="-37.739686"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata11148">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-3.5465457,-106.44555)">
+ <g
+ id="g910"
+ transform="matrix(0.89979659,0,0,0.89933244,12.993074,14.602189)"
+ style="stroke-width:1.11164904">
+ <g
+ id="g882"
+ style="stroke-width:1.11164904">
+ <path
+ d="m 230.64348,151.14755 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-6-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 3.80258,132.60554 H 28.69052 V 120.41757 H 3.80258 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 30.21857,118.88952 H 55.10652 V 106.70157 H 30.21857 Z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-40"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 30.21857,132.60554 H 55.10652 V 120.41757 H 30.21857 Z"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-94"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 3.80257,145.30554 H 28.69052 V 133.11758 H 3.80257 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 30.21857,145.30554 H 55.10652 V 133.11758 H 30.21857 Z"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 55.61857,118.88952 H 80.50653 V 106.70157 H 55.61857 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 55.61857,132.60554 H 80.50653 V 120.41757 H 55.61857 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 55.61857,145.30554 H 80.50653 V 133.11758 H 55.61857 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-39"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 3.80258,158.00555 H 28.69052 V 145.81759 H 3.80258 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-95"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 30.21857,158.00555 H 55.10652 V 145.81759 H 30.21857 Z"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 55.61857,158.00555 H 80.50653 V 145.81759 H 55.61857 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 3.80258,170.70556 H 28.69052 V 158.5176 H 3.80258 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-5-6-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 30.21857,170.70556 H 55.10652 V 158.5176 H 30.21857 Z"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-0-6-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 55.61857,170.70556 H 80.50653 V 158.5176 H 55.61857 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-5-21-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 3.80258,183.40557 H 28.69052 V 171.21761 H 3.80258 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-5-2-96-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 30.21857,183.40557 H 55.10652 V 171.21761 H 30.21857 Z"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 55.61857,183.40557 H 80.50653 V 171.21761 H 55.61857 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-34"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 81.01858,158.00555 h 24.88794 V 145.81759 H 81.01858 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-58"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 81.01857,118.88952 h 24.88795 V 106.70157 H 81.01857 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 81.01858,132.60554 h 24.88794 V 120.41757 H 81.01858 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 81.01857,145.30554 h 24.88795 V 133.11758 H 81.01857 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 81.01858,170.70556 h 24.88794 V 158.5176 H 81.01858 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-89"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 81.01858,183.40557 h 24.88794 V 171.21761 H 81.01858 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921828;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-55"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.44465962;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-2)"
+ d="m 149.73091,145.06062 h 47.88958"
+ id="path6109-2-9-6-9-0"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/06_groupby.svg b/doc/source/_static/schemas/06_groupby.svg
new file mode 100644
index 0000000000000..ca4d32be7084b
--- /dev/null
+++ b/doc/source/_static/schemas/06_groupby.svg
@@ -0,0 +1,307 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="464.94458mm"
+ height="165.19176mm"
+ viewBox="0 0 464.94458 165.19176"
+ version="1.1"
+ id="svg14732"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="06_groupby.svg">
+ <defs
+ id="defs14726">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2-3-3"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9-2-86"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2-3-1-7"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9-2-8-3"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.49497475"
+ inkscape:cx="808.73401"
+ inkscape:cy="127.43429"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata14729">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(120.59136,-57.166026)">
+ <path
+ d="m -107.12734,127.31387 h 24.887965 V 115.1259 h -24.887965 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-94-33-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -107.12734,140.01387 h 24.887965 v -12.18796 h -24.887965 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-4-9-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -81.727335,113.59785 h 24.88796 V 101.4099 h -24.88796 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-6-4-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -81.727335,127.31387 h 24.88796 V 115.1259 h -24.88796 z"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-6-9-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -81.727335,140.01387 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-39-9-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -107.12734,152.71388 h 24.887965 v -12.18796 h -24.887965 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-2-9-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -81.727335,152.71388 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-1-4-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -107.12734,165.41389 h 24.887965 v -12.18796 h -24.887965 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-0-6-0-0-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -81.727335,165.41389 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-5-21-9-6-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -107.12734,178.1139 h 24.887965 v -12.18796 h -24.887965 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-1-9-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -81.727335,178.1139 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-34-5-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -56.327325,152.71388 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#ffc900;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -56.327335,113.59785 h 24.88796 V 101.4099 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-5-1-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -56.327325,127.31387 h 24.88795 V 115.1259 h -24.88795 z"
+ style="fill:#ffc900;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -56.327335,140.01387 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#ffc900;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -56.327325,165.41389 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#ffc900;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-89-3-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -56.327325,178.1139 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#ffc900;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-55-7-22"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 279.58525,146.36389 h 24.88794 v -12.18797 h -24.88794 z"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-6-3-4-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 306.00124,132.64787 H 330.8892 V 120.45992 H 306.00124 Z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-40-0-4-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 306.00124,146.36389 H 330.8892 V 134.17592 H 306.00124 Z"
+ style="fill:#e50387;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-94-33-4-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 279.58524,159.06389 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-5-7-9-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 306.00124,159.06389 H 330.8892 V 146.87593 H 306.00124 Z"
+ style="fill:#e50387;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-4-9-9-9"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-2-3-3)"
+ d="m 203.45015,139.76895 h 47.88958"
+ id="path6109-2-9-6-9-0-9-4"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-2-3-1-7)"
+ d="M -3.8625116,139.76895 H 44.027068"
+ id="path6109-2-9-6-9-0-9-7-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 86.228953,184.50217 h 24.887957 v -12.1879 H 86.228953 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-94-33-49-2-90"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 86.228953,197.20217 h 24.887957 v -12.1879 H 86.228953 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-4-9-5-7-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 111.62895,170.78617 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-6-4-7-9-85"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 111.62895,184.50217 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-6-9-3-5-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 111.62895,197.20217 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-39-9-9-6-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 137.02895,170.78617 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-5-1-1-21-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 137.02896,184.50217 h 24.88795 v -12.1879 h -24.88795 z"
+ style="fill:#ffc900;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-0-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 137.02895,197.20217 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#ffc900;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-9-5-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 86.228963,108.22561 H 111.11692 V 96.037639 H 86.228963 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-94-33-8-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 86.228963,120.92561 H 111.11692 V 108.73765 H 86.228963 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-4-9-6-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 111.62896,94.509589 h 24.88796 v -12.18795 h -24.88796 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-6-4-5-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 111.62896,108.22561 h 24.88796 V 96.037639 h -24.88796 z"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-6-9-2-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 111.62896,120.92561 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-39-9-4-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 86.228963,133.62562 H 111.11692 V 121.43766 H 86.228963 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-2-9-0-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 111.62896,133.62562 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-1-4-6-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 137.02897,133.62562 h 24.88795 v -12.18796 h -24.88795 z"
+ style="fill:#ffc900;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6-8-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 137.02896,94.509589 h 24.88796 v -12.18795 h -24.88796 z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-5-1-3-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 137.02897,108.22561 h 24.88795 V 96.037639 h -24.88795 z"
+ style="fill:#ffc900;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-2-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 137.02896,120.92561 h 24.88796 v -12.18796 h -24.88796 z"
+ style="fill:#ffc900;fill-opacity:0.39215687;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-3-3"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/06_groupby_agg_detail.svg b/doc/source/_static/schemas/06_groupby_agg_detail.svg
new file mode 100644
index 0000000000000..23a78d3ed2a9e
--- /dev/null
+++ b/doc/source/_static/schemas/06_groupby_agg_detail.svg
@@ -0,0 +1,619 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="636.6601mm"
+ height="189.74704mm"
+ viewBox="0 0 636.6601 189.74704"
+ version="1.1"
+ id="svg17926"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="06_groupby_agg_detail.svg">
+ <defs
+ id="defs17920">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2-3-12"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9-2-6"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2-3-1-5"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9-2-8-0"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2-3-1-5-6"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9-2-8-0-3"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2-3-1"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9-2-8"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2-3"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9-2"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.24748737"
+ inkscape:cx="1089.6106"
+ inkscape:cy="-100.5864"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:window-width="1875"
+ inkscape:window-height="1029"
+ inkscape:window-x="45"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0" />
+ <metadata
+ id="metadata17923">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(335.37904,-157.22519)">
+ <g
+ style="stroke-width:1.1112442"
+ id="g1993"
+ transform="matrix(0.89991951,0,0,0.89986489,18.49749,25.231115)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -357.57363,270.5441 h 24.88794 v -12.18799 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -331.15764,256.82806 h 24.88797 v -12.18795 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-33"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -331.15764,270.5441 h 24.88797 v -12.18799 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -357.57364,283.2441 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-4-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -331.15764,283.2441 h 24.88797 v -12.188 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -305.75763,256.82806 h 24.88796 v -12.18795 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -305.75763,270.5441 h 24.88796 v -12.18799 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -305.75763,283.2441 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -357.57363,295.9441 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-2-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -331.15764,295.9441 h 24.88797 v -12.188 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-4"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -305.75763,295.9441 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-3-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -357.57363,308.6441 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-6-0-0"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -331.15764,308.6441 h 24.88797 v -12.188 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-9-6"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -305.75763,308.6441 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-9-5"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -357.57363,321.3441 h 24.88794 v -12.1879 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-1-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -331.15764,321.3441 h 24.88797 v -12.1879 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-34-5"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -305.75763,321.3441 h 24.88796 v -12.1879 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -280.35763,295.9441 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-5-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -280.35763,256.82806 h 24.88796 v -12.18795 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -280.35763,270.5441 h 24.88796 v -12.18799 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-4"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -280.35763,283.2441 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-89-3"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -280.35763,308.6441 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-55-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -280.35763,321.3441 h 24.88796 v -12.1879 h -24.88796 z" />
+ </g>
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-2-3)"
+ d="m 135.58895,279.89212 h 43.09677"
+ id="path6109-2-9-6-9-0-9"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-2-3-1)"
+ d="m -190.52748,279.89212 h 43.09677"
+ id="path6109-2-9-6-9-0-9-7"
+ inkscape:connector-curvature="0" />
+ <g
+ aria-label=" titanic .groupby("Sex") .mean()"
+ transform="scale(1.0000303,0.99996965)"
+ style="font-style:normal;font-weight:normal;font-size:18.18744659px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.50526738"
+ id="text56748-3">
+ <path
+ d="m -279.70486,171.2281 h -3.49199 v -1.80056 c 0,-0.873 -0.0728,-1.23675 -0.70931,-1.23675 -0.47287,0 -0.69112,0.25463 -0.69112,0.74569 0,0.23644 0,0.40012 0,0.47287 v 1.81875 h -0.98212 c -0.85481,0 -1.21856,0.0546 -1.21856,0.63656 0,0.4365 0.21825,0.61837 0.70931,0.61837 h 1.49137 v 2.96456 c 0,0.0909 0,0.18187 0,0.27281 0,0.81843 0.0182,1.52774 0.32738,2.05518 0.50924,0.89118 1.45499,1.32768 2.81905,1.32768 0.83662,0 1.76418,-0.23643 2.87362,-0.67293 0.65474,-0.25463 0.98212,-0.50925 0.98212,-0.92756 0,-0.32738 -0.291,-0.63656 -0.61838,-0.63656 -0.70931,0 -1.89149,0.94574 -3.3283,0.94574 -1.56412,0 -1.67324,-0.94574 -1.67324,-2.36436 v -2.96456 h 3.60111 c 0.49106,0 0.74569,-0.20006 0.74569,-0.61837 0,-0.45469 -0.27281,-0.63656 -0.83663,-0.63656 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1031" />
+ <path
+ d="m -270.36447,177.68464 v -6.58385 c 0,-0.21825 -0.16368,-0.36375 -0.50924,-0.36375 h -2.60081 c -0.47287,0 -0.70931,0.20006 -0.70931,0.61837 0,0.41831 0.25463,0.63656 0.74569,0.63656 h 1.7278 v 5.69267 h -2.70993 c -0.49106,0 -0.74568,0.20006 -0.74568,0.61837 0,0.41832 0.23644,0.63657 0.70931,0.63657 h 6.89304 c 0.52744,0 0.7275,-0.12732 0.7275,-0.63657 0,-0.43649 -0.21825,-0.61837 -0.67294,-0.61837 z m -1.65505,-9.51203 c 0,0.72749 0.18187,0.87299 0.92756,0.87299 0.85481,0 0.90937,-0.20006 0.90937,-1.12762 0,-0.92756 -0.0909,-1.20037 -0.90937,-1.20037 -0.81844,0 -0.92756,0.27281 -0.92756,1.455 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1033" />
+ <path
+ d="m -257.82309,171.2281 h -3.49199 v -1.80056 c 0,-0.873 -0.0727,-1.23675 -0.70931,-1.23675 -0.47287,0 -0.69112,0.25463 -0.69112,0.74569 0,0.23644 0,0.40012 0,0.47287 v 1.81875 h -0.98212 c -0.85481,0 -1.21856,0.0546 -1.21856,0.63656 0,0.4365 0.21825,0.61837 0.70931,0.61837 h 1.49137 v 2.96456 c 0,0.0909 0,0.18187 0,0.27281 0,0.81843 0.0182,1.52774 0.32737,2.05518 0.50925,0.89118 1.455,1.32768 2.81906,1.32768 0.83662,0 1.76418,-0.23643 2.87362,-0.67293 0.65474,-0.25463 0.98212,-0.50925 0.98212,-0.92756 0,-0.32738 -0.291,-0.63656 -0.61838,-0.63656 -0.70931,0 -1.89149,0.94574 -3.3283,0.94574 -1.56412,0 -1.67324,-0.94574 -1.67324,-2.36436 v -2.96456 h 3.60111 c 0.49106,0 0.74569,-0.20006 0.74569,-0.61837 0,-0.45469 -0.27282,-0.63656 -0.83663,-0.63656 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1035" />
+ <path
+ d="m -247.28232,177.81195 0.0909,0.54563 c 0.0728,0.38193 0.291,0.582 0.61838,0.582 h 1.40043 c 0.47287,0 0.70931,-0.21825 0.70931,-0.63657 0,-0.52743 -0.30919,-0.61837 -1.05487,-0.61837 h -0.45469 v -4.01942 c 0,-2.14612 -1.05487,-3.14643 -3.3283,-3.14643 -2.00062,0 -3.31011,0.63656 -3.31011,1.25493 0,0.45469 0.27281,0.74569 0.60018,0.74569 0.69112,0 1.41862,-0.74569 2.67356,-0.74569 1.36405,0 2.00061,0.63656 2.00061,2.00062 0,0.0182 0,0.0364 0,0.0546 -0.72749,-0.18187 -1.41862,-0.27281 -2.10974,-0.27281 -2.63718,0 -4.11036,1.10944 -4.11036,2.94637 0,1.56412 1.16399,2.65536 2.94636,2.65536 1.21856,0 2.36437,-0.47287 3.32831,-1.34587 z m -0.0546,-2.80086 v 0.96393 c 0,0.80025 -1.45499,1.81875 -3.05549,1.81875 -1.03668,0 -1.74599,-0.60019 -1.74599,-1.38225 0,-1.00031 1.03668,-1.70962 2.92818,-1.70962 0.65475,0 1.27312,0.10912 1.8733,0.30919 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1037" />
+ <path
+ d="m -241.67036,177.68464 c -0.0728,0 -0.12731,0 -0.18187,0 -0.7275,0 -1.03669,0.10913 -1.03669,0.61837 0,0.41832 0.23644,0.63657 0.74569,0.63657 0.23644,0 0.40012,0 0.47287,0 h 1.61869 c 0.67293,0 0.94574,-0.0364 0.94574,-0.63657 0,-0.49106 -0.23643,-0.63656 -0.85481,-0.63656 -0.10912,0 -0.23643,0.0182 -0.38193,0.0182 v -3.69205 c 0,-1.32768 1.23674,-2.12793 2.3098,-2.12793 1.164,0 1.81875,0.70931 1.81875,2.12793 v 3.69205 c -0.10913,0 -0.20007,0 -0.291,0 -0.63656,0 -0.89119,0.12731 -0.89119,0.61837 0,0.582 0.25463,0.63657 0.89119,0.63657 h 1.96424 c 0.63656,0 0.94575,-0.12732 0.94575,-0.63657 0,-0.45468 -0.27281,-0.61837 -0.83662,-0.61837 -0.12732,0 -0.27282,0 -0.40013,0 v -4.01942 c 0,-2.05519 -1.20037,-3.16462 -2.8918,-3.16462 -0.92756,0 -1.746,0.40012 -2.60081,1.20037 v -0.60018 c 0,-0.21825 -0.16368,-0.36375 -0.50924,-0.36375 h -0.83663 c -0.81843,0 -1.21856,0 -1.21856,0.61837 0,0.45469 0.25463,0.63656 0.81844,0.63656 0.12731,0 0.27281,0 0.40012,0 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1039" />
+ <path
+ d="m -226.60093,177.68464 v -6.58385 c 0,-0.21825 -0.16368,-0.36375 -0.50925,-0.36375 h -2.6008 c -0.47287,0 -0.70931,0.20006 -0.70931,0.61837 0,0.41831 0.25462,0.63656 0.74568,0.63656 h 1.72781 v 5.69267 h -2.70993 c -0.49106,0 -0.74568,0.20006 -0.74568,0.61837 0,0.41832 0.23643,0.63657 0.70931,0.63657 h 6.89304 c 0.52744,0 0.7275,-0.12732 0.7275,-0.63657 0,-0.43649 -0.21825,-0.61837 -0.67294,-0.61837 z m -1.65505,-9.51203 c 0,0.72749 0.18187,0.87299 0.92756,0.87299 0.85481,0 0.90937,-0.20006 0.90937,-1.12762 0,-0.92756 -0.0909,-1.20037 -0.90937,-1.20037 -0.81844,0 -0.92756,0.27281 -0.92756,1.455 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1041" />
+ <path
+ d="m -212.47724,173.41059 v -1.65506 c 0,-0.76387 -0.0909,-1.09124 -0.63656,-1.09124 -0.45468,0 -0.69112,0.16368 -0.69112,0.56381 0,0 0,0.0182 0,0.0364 -0.98212,-0.49106 -1.87331,-0.74568 -2.80087,-0.74568 -2.54624,0 -4.47411,1.8733 -4.47411,4.32861 0,2.45531 1.90968,4.31042 4.4923,4.31042 2.14612,0 4.14674,-1.32768 4.14674,-2.1643 0,-0.36375 -0.25463,-0.61837 -0.61837,-0.61837 -0.47288,0 -0.81844,0.43649 -1.36406,0.80024 -0.63656,0.41831 -1.36406,0.65475 -2.07337,0.65475 -1.85512,0 -3.03731,-1.23675 -3.03731,-3.00093 0,-1.70962 1.27313,-2.92818 3.11006,-2.92818 1.05487,0 1.89149,0.49106 2.43712,1.455 0.27281,0.49106 0.45468,0.70931 0.83662,0.70931 0.4365,0 0.67293,-0.21825 0.67293,-0.65475 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1043" />
+ <path
+ d="m -141.63827,177.48458 c 0,0.90937 0.69112,1.58231 1.74599,1.58231 1.05487,0 1.746,-0.65475 1.746,-1.58231 0,-0.92756 -0.69113,-1.58231 -1.746,-1.58231 -1.05487,0 -1.74599,0.67294 -1.74599,1.58231 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1045" />
+ <path
+ d="m -125.35028,178.4667 v -6.47473 c 0.0546,0 0.10913,0 0.16369,0 0.74569,0 1.05487,-0.12731 1.05487,-0.63656 0,-0.41831 -0.23643,-0.61837 -0.70931,-0.61837 h -1.34587 c -0.34556,0 -0.50925,0.10912 -0.50925,0.36375 v 0.63656 c -0.85481,-0.67294 -1.70962,-1.0185 -2.61899,-1.0185 -2.14612,0 -3.9103,1.61868 -3.9103,3.9103 0,2.32799 1.63687,3.94668 3.83755,3.94668 1.14581,0 1.98243,-0.38194 2.70993,-1.21856 v 1.07306 c 0,1.83693 -0.56381,2.67355 -2.41893,2.67355 -0.47287,0 -0.96393,-0.12731 -1.49137,-0.12731 -0.41831,0 -0.76387,0.32737 -0.76387,0.69112 0,0.582 0.63656,0.81844 1.94605,0.81844 1.65506,0 2.85543,-0.49106 3.51018,-1.34587 0.52744,-0.69113 0.54562,-1.47319 0.54562,-2.4735 0,-0.0728 0,-0.12731 0,-0.20006 z m -3.85573,-6.42017 c 1.56412,0 2.63718,1.09125 2.63718,2.58262 0,1.50956 -1.09125,2.58262 -2.63718,2.58262 -1.56413,0 -2.63718,-1.09125 -2.63718,-2.58262 0,-1.52775 1.09124,-2.58262 2.63718,-2.58262 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1047" />
+ <path
+ d="m -118.8835,177.68464 v -3.67386 c 1.18218,-1.34587 2.18249,-2.05518 3.16462,-2.05518 0.69112,0 1.07305,0.54562 1.54593,0.54562 0.38193,0 0.78206,-0.40012 0.78206,-0.83662 0,-0.65475 -0.65475,-1.14581 -1.76418,-1.14581 -1.41862,0 -2.619,0.69112 -3.72843,2.09155 v -1.50955 c 0,-0.25463 -0.16369,-0.36375 -0.49106,-0.36375 h -2.01881 c -0.47287,0 -0.70931,0.20006 -0.70931,0.61837 0,0.45469 0.25463,0.63656 0.83662,0.63656 0.0909,0 0.25463,0 0.45469,0 h 0.60019 v 5.69267 h -1.56412 c -0.49107,0 -0.74569,0.20006 -0.74569,0.61837 0,0.41832 0.25462,0.63657 0.7275,0.63657 h 5.80179 c 0.52744,0 0.7275,-0.12732 0.7275,-0.63657 0,-0.43649 -0.21825,-0.61837 -0.67293,-0.61837 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1049" />
+ <path
+ d="m -102.43182,174.8474 c 0,-2.45531 -1.81874,-4.31043 -4.6378,-4.31043 -2.81905,0 -4.65598,1.83694 -4.65598,4.31043 0,2.47349 1.83693,4.31042 4.65598,4.31042 2.81906,0 4.6378,-1.83693 4.6378,-4.31042 z m -4.6378,3.07368 c -1.83693,0 -3.11005,-1.3095 -3.11005,-3.07368 0,-1.76418 1.27312,-3.09187 3.11005,-3.09187 1.83694,0 3.11006,1.32769 3.11006,3.09187 0,1.78237 -1.27312,3.07368 -3.11006,3.07368 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1051" />
+ <path
+ d="m -98.383971,175.66583 v -4.25586 c 0,-0.0364 0,-0.0546 0,-0.0909 0,-0.40013 -0.01819,-0.582 -0.509249,-0.582 h -1.34587 c -0.47287,0 -0.70931,0.20006 -0.70931,0.61837 0,0.45469 0.25462,0.63656 0.81843,0.63656 0.12732,0 0.272815,0 0.400128,0 v 4.00124 c 0,2.07337 0.982122,3.12824 2.928178,3.12824 1.07306,0 1.836933,-0.41831 2.764492,-1.14581 v 0.60019 c 0,0.21825 0.163687,0.36375 0.509249,0.36375 h 1.345871 c 0.472874,0 0.70931,-0.21825 0.70931,-0.63657 0,-0.45468 -0.254624,-0.61837 -0.818435,-0.61837 -0.127312,0 -0.272811,0 -0.400124,0 v -6.09279 c 0,-0.52744 0,-0.85481 -0.618373,-0.85481 h -1.891494 c -0.491061,0 -0.709311,0.18187 -0.709311,0.61837 0,0.4365 0.181875,0.63656 0.654748,0.63656 h 1.218559 v 3.67386 c 0,1.3095 -1.145809,2.14612 -2.34618,2.14612 -1.382246,0 -2.000619,-0.69112 -2.000619,-2.14612 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1053" />
+ <path
+ d="m -84.733154,177.64827 c -1.655058,0 -2.800867,-1.18219 -2.800867,-2.78268 0,-1.6005 1.145809,-2.78268 2.800867,-2.78268 1.673245,0 2.819054,1.18218 2.819054,2.78268 0,1.65505 -1.182184,2.78268 -2.819054,2.78268 z m -2.764492,3.56474 v -3.54656 c 0.727498,0.83663 1.818744,1.29131 3.073678,1.29131 2.327993,0 4.037613,-1.63687 4.037613,-4.00124 0,-2.49168 -1.855119,-4.23767 -4.183112,-4.23767 -1.127622,0 -2.109744,0.41831 -2.909992,1.23675 v -0.85481 c 0,-0.25463 -0.163687,-0.36375 -0.509248,-0.36375 h -1.364059 c -0.472873,0 -0.70931,0.20006 -0.70931,0.61837 0,0.45469 0.272811,0.63656 0.836622,0.63656 0.127312,0 0.272812,0 0.400124,0 v 9.22104 c -0.05456,0 -0.109125,0 -0.163687,0 -0.745685,0 -1.073059,0.12731 -1.073059,0.63656 0,0.41831 0.236437,0.63656 0.70931,0.63656 h 3.928489 c 0.527436,0 0.745685,-0.1455 0.745685,-0.63656 0,-0.41831 -0.218249,-0.63656 -0.672936,-0.63656 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1055" />
+ <path
+ d="m -76.538571,172.01016 v -4.32861 c 0,-0.25463 -0.163687,-0.36375 -0.509249,-0.36375 h -1.345871 c -0.472874,0 -0.70931,0.21825 -0.70931,0.63656 0,0.45468 0.254624,0.61837 0.818435,0.61837 0.127312,0 0.272811,0.0182 0.400124,0.0182 v 9.09372 c -0.07275,0 -0.127313,0 -0.181875,0 -0.727498,0 -1.036684,0.10913 -1.036684,0.61837 0,0.41832 0.236436,0.63657 0.70931,0.63657 h 1.618683 c 0.272812,0 0.363749,-0.1455 0.363749,-0.45469 v -0.70931 c 0.600186,0.89118 1.527745,1.32768 2.764492,1.32768 2.382555,0 4.2013,-1.8733 4.2013,-4.18311 0,-2.34618 -1.78237,-4.18311 -4.164925,-4.18311 -1.254934,0 -2.255244,0.4365 -2.928179,1.27312 z m 2.764492,5.69267 c -1.655058,0 -2.800867,-1.20037 -2.800867,-2.83724 0,-1.65506 1.163996,-2.83724 2.800867,-2.83724 1.655057,0 2.800866,1.21855 2.800866,2.83724 0,1.69143 -1.145809,2.83724 -2.800866,2.83724 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1057" />
+ <path
+ d="m -63.979016,181.21301 4.674173,-9.22104 c 0.618374,-0.0182 0.891185,-0.16369 0.891185,-0.63656 0,-0.41831 -0.236437,-0.61837 -0.70931,-0.61837 h -2.200681 c -0.581999,0 -0.836623,0.0909 -0.836623,0.61837 0,0.50925 0.309187,0.63656 1.07306,0.63656 0.109124,0 0.218249,0 0.345561,0 l -2.473493,4.89242 -2.382555,-4.89242 c 0.109125,0 0.218249,0 0.327374,0 0.727498,0 1.036684,-0.12731 1.036684,-0.63656 0,-0.52744 -0.254624,-0.61837 -0.836622,-0.61837 h -2.473493 c -0.472874,0 -0.70931,0.20006 -0.70931,0.61837 0,0.50925 0.290999,0.63656 1.018497,0.63656 l 3.255553,6.38379 -1.454996,2.83725 h -1.927869 c -0.454687,0 -0.672936,0.21825 -0.672936,0.63656 0,0.49106 0.218249,0.63656 0.745685,0.63656 h 4.073988 c 0.472874,0 0.727498,-0.21825 0.727498,-0.63656 0,-0.52744 -0.327374,-0.63656 -1.109434,-0.63656 -0.109125,0 -0.236437,0 -0.381936,0 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1059" />
+ <path
+ d="m -50.564636,168.49998 c 0,-0.25462 -0.1455,-0.40012 -0.345562,-0.40012 -0.418311,0 -1.000309,0.56381 -1.691432,1.69143 -1.054872,1.70962 -1.564121,3.51018 -1.564121,5.5108 0,2.00062 0.509249,3.80117 1.564121,5.51079 0.691123,1.12762 1.273121,1.69143 1.691432,1.69143 0.200062,0 0.345562,-0.16368 0.345562,-0.41831 0,-0.34556 -0.491061,-1.07306 -1.00031,-2.36436 -0.563811,-1.455 -0.85481,-2.85543 -0.85481,-4.41955 0,-2.00062 0.472874,-3.51018 1.109434,-5.01974 0.381937,-0.90937 0.745686,-1.47318 0.745686,-1.78237 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1061" />
+ <path
+ d="m -43.352175,172.79222 h 0.545623 c 0.345562,0 0.418311,-0.16369 0.454686,-0.54563 l 0.272812,-3.29192 c 0,-0.0364 0,-0.0727 0,-0.10913 0,-0.291 -0.1455,-0.4365 -0.418311,-0.4365 h -1.182184 c -0.272812,0 -0.400124,0.1455 -0.400124,0.4365 0,0.0364 0,0.0728 0,0.10913 l 0.272812,3.29192 c 0.03637,0.38194 0.109124,0.54563 0.454686,0.54563 z m 3.310115,0 h 0.545623 c 0.345562,0 0.418312,-0.16369 0.454687,-0.54563 l 0.272811,-3.29192 c 0,-0.0364 0,-0.0727 0,-0.10913 0,-0.291 -0.127312,-0.4365 -0.400124,-0.4365 h -1.182184 c -0.272811,0 -0.418311,0.1455 -0.418311,0.4365 0,0.0364 0,0.0728 0,0.10913 l 0.272812,3.29192 c 0.03637,0.38194 0.109124,0.54563 0.454686,0.54563 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1063" />
+ <path
+ d="m -33.084239,178.63039 c 0.891185,0.40012 1.70962,0.61837 2.618993,0.61837 2.49168,0 4.092175,-1.32768 4.092175,-3.29193 0,-1.67324 -1.054872,-2.67355 -3.128241,-2.94636 l -1.418621,-0.18188 c -1.364058,-0.18187 -2.036994,-0.70931 -2.036994,-1.60049 0,-1.12762 0.963935,-1.92787 2.418931,-1.92787 0.945747,0 1.70962,0.36375 2.091556,0.92756 0.381937,0.56381 0.272812,1.21856 0.982122,1.21856 0.418312,0 0.672936,-0.23644 0.672936,-0.65475 0,-0.0364 0,-0.0546 0,-0.0909 l -0.127312,-1.85512 c -0.03638,-0.47287 -0.09094,-0.67293 -0.727498,-0.67293 -0.400124,0 -0.563811,0.10912 -0.563811,0.45468 -0.818435,-0.32737 -1.527745,-0.52743 -2.255243,-0.52743 -2.291619,0 -3.928489,1.43681 -3.928489,3.20099 0,1.78237 1.163997,2.63718 3.528365,2.96455 l 1.309496,0.18188 c 1.127622,0.16368 1.727807,0.74568 1.727807,1.67324 0,1.09125 -1.000309,1.92787 -2.582617,1.92787 -1.273121,0 -2.200681,-0.50925 -2.582617,-1.29131 -0.327374,-0.65475 -0.236437,-1.34587 -0.982123,-1.34587 -0.545623,0 -0.691123,0.25462 -0.691123,0.76387 0,0.0546 0,0.10913 0,0.18188 l 0.109125,2.05518 c 0.03637,0.63656 0.254624,0.92756 0.763873,0.92756 0.491061,0 0.654748,-0.18188 0.70931,-0.70931 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1065" />
+ <path
+ d="m -22.5071,174.06534 c 0.345561,-1.47318 1.49137,-2.34618 3.055491,-2.34618 1.436808,0 2.56443,0.92756 2.728117,2.34618 z m -0.03637,1.164 h 5.965482 c 1.091247,0 1.473184,0 1.473184,-0.83663 0,-1.98243 -1.655058,-3.89211 -4.3468,-3.89211 -2.746305,0 -4.637799,1.76418 -4.637799,4.31042 0,2.65537 1.70962,4.3468 4.455924,4.3468 1.200372,0 2.491681,-0.29099 3.71024,-0.89118 0.527435,-0.25462 0.78206,-0.52744 0.78206,-0.89119 0,-0.32737 -0.272812,-0.58199 -0.618373,-0.58199 -0.800248,0 -1.946057,1.10943 -3.746614,1.10943 -1.836933,0 -2.946367,-0.96393 -3.037304,-2.67355 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1067" />
+ <path
+ d="m -10.547716,177.68464 2.0369943,-2.18249 2.237056,2.18249 h -0.4910611 c -0.5274359,0 -0.8002476,0.25463 -0.8002476,0.63656 0,0.4365 0.3091866,0.61838 0.9093723,0.61838 h 1.8187446 c 0.7820603,0 1.0730594,-0.0909 1.0730594,-0.61838 0,-0.40012 -0.2364368,-0.63656 -0.691123,-0.63656 -0.018187,0 -0.054562,0 -0.090937,0 l -3.1100534,-3.0373 2.5462425,-2.65537 c 0.090937,0 0.1818745,0.0182 0.2546243,0.0182 0.6183732,0 0.9275598,-0.20006 0.9275598,-0.65475 0,-0.38194 -0.2546243,-0.61837 -0.6183732,-0.61837 H -6.855664 c -0.6183732,0 -0.9093724,0.18187 -0.9093724,0.63656 0,0.41831 0.3273741,0.61837 0.9821222,0.61837 0.07275,0 0.1273121,0 0.1818744,0 l -1.8187446,1.87331 -1.9096816,-1.87331 c 0.6729352,0 1.0184967,-0.20006 1.0184967,-0.61837 0,-0.45469 -0.2909992,-0.63656 -0.9093727,-0.63656 h -1.818744 c -0.782061,0 -1.091247,0.10912 -1.091247,0.63656 0,0.47287 0.254624,0.61837 0.909372,0.61837 0.03638,0 0.09094,0 0.127312,0 l 2.8190546,2.74631 -2.8736166,2.94636 c -0.07275,0 -0.127312,0 -0.181874,0 -0.654749,0 -1.00031,0.18188 -1.00031,0.582 0,0.4365 0.254624,0.67294 0.618373,0.67294 h 2.437118 c 0.6001858,0 0.9275598,-0.18188 0.9275598,-0.61838 0,-0.40012 -0.3455615,-0.65475 -0.9457468,-0.65475 -0.09094,0 -0.163687,0.0182 -0.254625,0.0182 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1069" />
+ <path
+ d="m 0.41135921,172.79222 h 0.5456234 c 0.34556149,0 0.41831129,-0.16369 0.45468619,-0.54563 l 0.2728117,-3.29192 c 0,-0.0364 0,-0.0727 0,-0.10913 0,-0.291 -0.1454996,-0.4365 -0.4183113,-0.4365 H 0.08398518 c -0.2728117,0 -0.40012383,0.1455 -0.40012383,0.4365 0,0.0364 0,0.0728 0,0.10913 l 0.2728117,3.29192 c 0.03637489,0.38194 0.10912468,0.54563 0.45468616,0.54563 z m 3.31011529,0 h 0.5456234 c 0.3455615,0 0.4183113,-0.16369 0.4546862,-0.54563 l 0.2728117,-3.29192 c 0,-0.0364 0,-0.0727 0,-0.10913 0,-0.291 -0.1273122,-0.4365 -0.4001239,-0.4365 h -1.182184 c -0.2728117,0 -0.4183113,0.1455 -0.4183113,0.4365 0,0.0364 0,0.0728 0,0.10913 l 0.2728117,3.29192 c 0.036375,0.38194 0.1091247,0.54563 0.4546862,0.54563 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1071" />
+ <path
+ d="m 11.461371,182.086 c 0,0.25463 0.1455,0.41831 0.345562,0.41831 0.418311,0 1.000309,-0.56381 1.691432,-1.69143 1.054872,-1.70962 1.582308,-3.51017 1.582308,-5.51079 0,-2.00062 -0.527436,-3.80118 -1.582308,-5.5108 -0.691123,-1.12762 -1.273121,-1.69143 -1.691432,-1.69143 -0.200062,0 -0.345562,0.1455 -0.345562,0.40012 0,0.34556 0.491061,1.07306 1.00031,2.36437 0.563811,1.45499 0.85481,2.87362 0.85481,4.43774 0,2.00062 -0.454686,3.51017 -1.091247,5.01973 -0.381936,0.90937 -0.763873,1.455 -0.763873,1.76418 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1073" />
+ <path
+ d="m 55.297671,177.48458 c 0,0.90937 0.691123,1.58231 1.745995,1.58231 1.054872,0 1.745995,-0.65475 1.745995,-1.58231 0,-0.92756 -0.691123,-1.58231 -1.745995,-1.58231 -1.054872,0 -1.745995,0.67294 -1.745995,1.58231 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1075" />
+ <path
+ d="m 71.221919,173.99259 v 4.0558 c 0,0.582 0.254624,0.89119 0.745685,0.89119 h 1.073059 c 0.418312,0 0.636561,-0.21825 0.636561,-0.63657 0,-0.50924 -0.254624,-0.61837 -0.92756,-0.61837 -0.05456,0 -0.109124,0 -0.163687,0 v -4.01942 c 0,-2.07337 -0.545623,-3.16462 -2.182493,-3.16462 -0.85481,0 -1.491371,0.36375 -1.982432,1.09125 -0.254624,-0.7275 -0.800248,-1.09125 -1.618683,-1.09125 -0.691123,0 -1.236746,0.23644 -1.70962,0.76387 -0.03637,-0.4365 -0.127312,-0.52743 -0.509248,-0.52743 h -1.364059 c -0.472873,0 -0.691123,0.20006 -0.691123,0.61837 0,0.45469 0.254625,0.63656 0.818435,0.63656 0.127313,0 0.272812,0 0.400124,0 v 5.69267 c -0.07275,0 -0.127312,0 -0.181874,0 -0.727498,0 -1.036685,0.10913 -1.036685,0.61837 0,0.41832 0.21825,0.63657 0.691123,0.63657 h 2.364368 c 0.527436,0 0.727498,-0.12732 0.727498,-0.63657 0,-0.49106 -0.236437,-0.63656 -0.85481,-0.63656 -0.109124,0 -0.236437,0.0182 -0.381936,0.0182 v -4.89242 c 0.327374,-0.61837 0.763873,-0.92756 1.309496,-0.92756 0.672935,0 1.163997,0.52743 1.163997,1.43681 0,0.10912 0,0.34556 0,0.69112 v 3.74661 c 0,0.0909 0,0.16369 0,0.23644 0,0.69112 0.03637,0.96394 0.618373,0.96394 h 1.127621 c 0.418312,0 0.618374,-0.21825 0.618374,-0.63657 0,-0.50924 -0.254625,-0.61837 -0.92756,-0.61837 -0.05456,0 -0.109125,0 -0.163687,0 v -3.69205 c 0,-1.41862 0.618373,-2.12793 1.436808,-2.12793 0.891185,0 0.963935,0.78206 0.963935,2.12793 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1077" />
+ <path
+ d="m 75.960887,174.06534 c 0.345561,-1.47318 1.491371,-2.34618 3.055491,-2.34618 1.436808,0 2.56443,0.92756 2.728117,2.34618 z m -0.03638,1.164 h 5.965483 c 1.091246,0 1.473183,0 1.473183,-0.83663 0,-1.98243 -1.655058,-3.89211 -4.3468,-3.89211 -2.746304,0 -4.637799,1.76418 -4.637799,4.31042 0,2.65537 1.70962,4.3468 4.455924,4.3468 1.200372,0 2.491681,-0.29099 3.71024,-0.89118 0.527436,-0.25462 0.78206,-0.52744 0.78206,-0.89119 0,-0.32737 -0.272812,-0.58199 -0.618373,-0.58199 -0.800248,0 -1.946057,1.10943 -3.746614,1.10943 -1.836933,0 -2.946367,-0.96393 -3.037304,-2.67355 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1079" />
+ <path
+ d="m 91.885135,177.81195 0.09094,0.54563 c 0.07275,0.38193 0.290999,0.582 0.618373,0.582 h 1.400434 c 0.472873,0 0.70931,-0.21825 0.70931,-0.63657 0,-0.52743 -0.309187,-0.61837 -1.054872,-0.61837 h -0.454686 v -4.01942 c 0,-2.14612 -1.054872,-3.14643 -3.328303,-3.14643 -2.000619,0 -3.310115,0.63656 -3.310115,1.25493 0,0.45469 0.272812,0.74569 0.600186,0.74569 0.691123,0 1.41862,-0.74569 2.673554,-0.74569 1.364059,0 2.000619,0.63656 2.000619,2.00062 0,0.0182 0,0.0364 0,0.0546 -0.727497,-0.18187 -1.41862,-0.27281 -2.109743,-0.27281 -2.63718,0 -4.110363,1.10944 -4.110363,2.94637 0,1.56412 1.163996,2.65536 2.946366,2.65536 1.218559,0 2.364368,-0.47287 3.328303,-1.34587 z m -0.05456,-2.80086 v 0.96393 c 0,0.80025 -1.454995,1.81875 -3.055491,1.81875 -1.036684,0 -1.745995,-0.60019 -1.745995,-1.38225 0,-1.00031 1.036685,-1.70962 2.928179,-1.70962 0.654748,0 1.273122,0.10912 1.873307,0.30919 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1081" />
+ <path
+ d="m 97.4971,177.68464 c -0.07275,0 -0.127312,0 -0.181874,0 -0.727498,0 -1.036685,0.10913 -1.036685,0.61837 0,0.41832 0.236437,0.63657 0.745686,0.63657 0.236437,0 0.400124,0 0.472873,0 h 1.618683 c 0.672936,0 0.945747,-0.0364 0.945747,-0.63657 0,-0.49106 -0.236437,-0.63656 -0.85481,-0.63656 -0.109124,0 -0.236436,0.0182 -0.381936,0.0182 v -3.69205 c 0,-1.32768 1.236746,-2.12793 2.309806,-2.12793 1.164,0 1.81874,0.70931 1.81874,2.12793 v 3.69205 c -0.10912,0 -0.20006,0 -0.29099,0 -0.63657,0 -0.89119,0.12731 -0.89119,0.61837 0,0.582 0.25462,0.63657 0.89119,0.63657 h 1.96424 c 0.63656,0 0.94575,-0.12732 0.94575,-0.63657 0,-0.45468 -0.27282,-0.61837 -0.83663,-0.61837 -0.12731,0 -0.27281,0 -0.40012,0 v -4.01942 c 0,-2.05519 -1.20037,-3.16462 -2.8918,-3.16462 -0.92756,0 -1.745999,0.40012 -2.600809,1.20037 v -0.60018 c 0,-0.21825 -0.163687,-0.36375 -0.509248,-0.36375 H 97.4971 c -0.818435,0 -1.218559,0 -1.218559,0.61837 0,0.45469 0.254625,0.63656 0.818436,0.63656 0.127312,0 0.272811,0 0.400123,0 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1083" />
+ <path
+ d="m 113.54866,168.49998 c 0,-0.25462 -0.1455,-0.40012 -0.34556,-0.40012 -0.41831,0 -1.00031,0.56381 -1.69143,1.69143 -1.05488,1.70962 -1.56412,3.51018 -1.56412,5.5108 0,2.00062 0.50924,3.80117 1.56412,5.51079 0.69112,1.12762 1.27312,1.69143 1.69143,1.69143 0.20006,0 0.34556,-0.16368 0.34556,-0.41831 0,-0.34556 -0.49106,-1.07306 -1.00031,-2.36436 -0.56381,-1.455 -0.85481,-2.85543 -0.85481,-4.41955 0,-2.00062 0.47287,-3.51018 1.10943,-5.01974 0.38194,-0.90937 0.74569,-1.47318 0.74569,-1.78237 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1085" />
+ <path
+ d="m 120.87025,182.086 c 0,0.25463 0.1455,0.41831 0.34556,0.41831 0.41831,0 1.00031,-0.56381 1.69143,-1.69143 1.05487,-1.70962 1.58231,-3.51017 1.58231,-5.51079 0,-2.00062 -0.52744,-3.80118 -1.58231,-5.5108 -0.69112,-1.12762 -1.27312,-1.69143 -1.69143,-1.69143 -0.20006,0 -0.34556,0.1455 -0.34556,0.40012 0,0.34556 0.49106,1.07306 1.00031,2.36437 0.56381,1.45499 0.85481,2.87362 0.85481,4.43774 0,2.00062 -0.45469,3.51017 -1.09125,5.01973 -0.38194,0.90937 -0.76387,1.455 -0.76387,1.76418 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.50526738"
+ id="path1087" />
+ </g>
+ <g
+ style="stroke-width:1.1112442"
+ id="g1962"
+ transform="matrix(0.89991951,0,0,0.89986489,12.004634,25.231115)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-0-48"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 37.425333,257.87198 H 62.31326 v -12.188 H 37.425333 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-6-5"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 63.84131,244.15598 h 24.88795 v -12.188 H 63.84131 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-3-62"
+ style="fill:#ed7d30;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 63.84131,257.87198 h 24.88795 v -12.188 H 63.84131 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-6-5-8"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 89.24131,244.15598 h 24.88795 v -12.188 H 89.24131 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-3-62-9"
+ style="fill:#ed7d30;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 89.24131,257.87198 h 24.88795 v -12.188 H 89.24131 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-0-4-8"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 37.425323,340.36628 H 62.31327 V 328.17827 H 37.425323 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-6-1-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 63.84132,326.65027 h 24.88795 v -12.188 H 63.84132 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-3-6-9"
+ style="fill:#ed7d30;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 63.84132,340.36628 H 88.72927 V 328.17827 H 63.84132 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-6-1-7-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 89.24132,326.65027 h 24.88795 v -12.188 H 89.24132 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-3-6-9-9"
+ style="fill:#ed7d30;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 89.24132,340.36628 h 24.88795 V 328.17827 H 89.24132 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-43-4"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -153.29861,334.01621 h 24.88793 v -12.1879 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-0-9-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -126.88263,320.30021 h 24.88796 v -12.18786 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-33-49-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -126.88263,334.01621 h 24.88796 v -12.1879 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-5-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -153.29862,346.71621 h 24.88794 v -12.1879 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-4-9-5-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -126.88263,346.71621 h 24.88796 v -12.1879 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4-7-9"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -101.48263,320.30021 h 24.887953 v -12.18786 h -24.887953 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9-3-5"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -101.48263,334.01621 h 24.887953 v -12.1879 h -24.887953 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9-9-6"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -101.48263,346.71621 h 24.887953 v -12.1879 h -24.887953 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-5-1-1-21"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.082627,320.30021 h 24.88795 v -12.18786 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-0"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.082627,334.01621 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-9-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.082627,346.71621 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -153.29862,245.17197 h 24.88794 v -12.18799 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-0-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -126.88263,231.45593 h 24.88797 v -12.18795 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-33-6-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -126.88263,245.17197 h 24.88797 v -12.18799 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -153.29863,257.87197 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-4-9-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -126.88263,257.87197 h 24.88797 v -12.188 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4-1"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -101.48262,231.45593 h 24.887956 v -12.18795 h -24.887956 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9-8"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -101.48262,245.17197 h 24.887956 v -12.18799 h -24.887956 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9-7"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -101.48262,257.87197 h 24.887956 v -12.188 h -24.887956 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-1-9"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -153.29862,270.57197 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-2-9-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -126.88263,270.57197 h 24.88797 v -12.188 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-4-0"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -101.48262,270.57197 h 24.887956 v -12.188 h -24.887956 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.082624,270.57197 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-5-1-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.082624,231.45593 h 24.88796 v -12.18795 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.082624,245.17197 h 24.88796 v -12.18799 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.082624,257.87197 h 24.88796 v -12.188 h -24.88796 z" />
+ </g>
+ <g
+ style="stroke-width:1.1112442"
+ id="g1924"
+ transform="matrix(0.89991951,0,0,0.89986489,-23.834263,25.231115)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-0-48-4-7"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 248.90994,289.59406 h 24.88793 v -12.188 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-6-5-5-5"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 275.32592,275.87806 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-3-62-5-3"
+ style="fill:#ed7d30;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 275.32592,289.59406 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-6-5-8-9-5"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 300.72592,275.87806 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-3-62-9-2-6"
+ style="fill:#ed7d30;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 300.72592,289.59406 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-0-4-8-5-2"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 248.90993,302.29417 h 24.88795 v -12.18801 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-3-6-9-0-9"
+ style="fill:#ed7d30;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 275.32593,302.29417 h 24.88795 v -12.18801 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-3-6-9-9-6-1"
+ style="fill:#ed7d30;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56901097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 300.72593,302.29417 h 24.88795 v -12.18801 h -24.88795 z" />
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/06_groupby_select_detail.svg b/doc/source/_static/schemas/06_groupby_select_detail.svg
new file mode 100644
index 0000000000000..589c3add26e6f
--- /dev/null
+++ b/doc/source/_static/schemas/06_groupby_select_detail.svg
@@ -0,0 +1,697 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="745.23389mm"
+ height="189.74706mm"
+ viewBox="0 0 745.23389 189.74705"
+ version="1.1"
+ id="svg15800"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="06_groupby_select_detail.svg">
+ <defs
+ id="defs15794">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2-3-1"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9-2-8"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2-3"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9-2"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.35"
+ inkscape:cx="903.54999"
+ inkscape:cy="155.22496"
+ inkscape:document-units="mm"
+ inkscape:current-layer="g2193"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1875"
+ inkscape:window-height="1029"
+ inkscape:window-x="45"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata15797">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(306.84909,-0.94988499)">
+ <g
+ id="g2193"
+ transform="matrix(0.89996563,0,0,0.89986489,6.5662338,9.5824747)"
+ style="stroke-width:1.11121571">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -305.70378,114.2688 h 24.88794 v -12.18799 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -279.28779,100.55276 h 24.88797 V 88.364806 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-33"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -279.28779,114.2688 h 24.88797 v -12.18799 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -305.70379,126.9688 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-4-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -279.28779,126.9688 h 24.88797 v -12.188 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -253.88778,100.55276 h 24.88796 V 88.364806 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -253.88778,114.2688 h 24.88796 v -12.18799 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -253.88778,126.9688 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -305.70378,139.6688 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-2-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -279.28779,139.6688 h 24.88797 v -12.188 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-4"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -253.88778,139.6688 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-3-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -305.70378,152.3688 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-6-0-0"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -279.28779,152.3688 h 24.88797 v -12.188 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-9-6"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -253.88778,152.3688 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-9-5"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -305.70378,165.0688 h 24.88794 v -12.1879 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-1-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -279.28779,165.0688 h 24.88797 v -12.1879 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-34-5"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -253.88778,165.0688 h 24.88796 v -12.1879 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -228.48778,139.6688 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-5-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -228.48778,100.55276 h 24.88796 V 88.364806 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -228.48778,114.2688 h 24.88796 v -12.18799 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-4"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -228.48778,126.9688 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-89-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -228.48778,152.3688 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-55-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -228.48778,165.0688 h 24.88796 v -12.1879 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-4"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 386.82482,133.31877 h 24.88795 v -12.18795 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-0-4"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 413.24082,119.60277 h 24.88795 v -12.18794 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-33-4"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 413.24082,133.31877 h 24.88795 v -12.18795 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-9"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 386.82482,146.01877 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-4-9-9"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 413.24082,146.01877 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-0-9"
+ d="m 317.4389,126.72385 h 47.88958"
+ style="fill:none;stroke:#000000;stroke-width:0.44448629;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-2-3)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-0-9-7"
+ d="m -182.77222,126.72385 h 47.88958"
+ style="fill:none;stroke:#000000;stroke-width:0.44448629;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-2-3-1)" />
+ <g
+ aria-label=" titanic .groupby("Sex") ["Age"] .mean()"
+ style="font-style:normal;font-weight:normal;font-size:20.21069527px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.56146109"
+ id="text56748-3">
+ <path
+ d="m -285.91965,5.9621374 h -3.88046 V 3.9612786 c 0,-0.9701134 -0.0808,-1.3743273 -0.78821,-1.3743273 -0.52548,0 -0.76801,0.2829497 -0.76801,0.8286385 0,0.262739 0,0.4446353 0,0.5254781 v 2.0210695 h -1.09138 c -0.9499,0 -1.35411,0.060632 -1.35411,0.7073743 0,0.4850567 0.24252,0.6871637 0.78821,0.6871637 h 1.65728 v 3.2943436 c 0,0.101053 0,0.202107 0,0.30316 0,0.909481 0.0202,1.697699 0.36379,2.283809 0.5659,0.990324 1.61686,1.47538 3.13266,1.47538 0.92969,0 1.96044,-0.262739 3.19329,-0.747795 0.72759,-0.28295 1.09138,-0.5659 1.09138,-1.030746 0,-0.363792 -0.32337,-0.707374 -0.68717,-0.707374 -0.78821,0 -2.10191,1.050956 -3.69855,1.050956 -1.73812,0 -1.85939,-1.050956 -1.85939,-2.62739 V 7.3566754 h 4.00172 c 0.54569,0 0.82864,-0.2223177 0.82864,-0.6871637 0,-0.5052673 -0.30316,-0.7073743 -0.92969,-0.7073743 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path935" />
+ <path
+ d="M -275.5402,13.136934 V 5.8206625 c 0,-0.2425283 -0.18189,-0.4042139 -0.5659,-0.4042139 h -2.89013 c -0.52547,0 -0.78821,0.2223177 -0.78821,0.6871637 0,0.464846 0.28295,0.7073743 0.82863,0.7073743 h 1.92002 v 6.3259474 h -3.01139 c -0.54569,0 -0.82864,0.222318 -0.82864,0.687164 0,0.464846 0.26274,0.707374 0.78822,0.707374 h 7.65985 c 0.58611,0 0.80843,-0.141475 0.80843,-0.707374 0,-0.485057 -0.24253,-0.687164 -0.7478,-0.687164 z m -1.83917,-10.5701934 c 0,0.8084278 0.20211,0.9701134 1.03074,0.9701134 0.94991,0 1.01054,-0.2223177 1.01054,-1.2530631 0,-1.0307455 -0.10105,-1.33390591 -1.01054,-1.33390591 -0.90948,0 -1.03074,0.30316041 -1.03074,1.61685561 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path937" />
+ <path
+ d="m -261.60366,5.9621374 h -3.88045 V 3.9612786 c 0,-0.9701134 -0.0808,-1.3743273 -0.78822,-1.3743273 -0.52548,0 -0.76801,0.2829497 -0.76801,0.8286385 0,0.262739 0,0.4446353 0,0.5254781 v 2.0210695 h -1.09138 c -0.9499,0 -1.35411,0.060632 -1.35411,0.7073743 0,0.4850567 0.24253,0.6871637 0.78821,0.6871637 h 1.65728 v 3.2943436 c 0,0.101053 0,0.202107 0,0.30316 0,0.909481 0.0202,1.697699 0.36379,2.283809 0.5659,0.990324 1.61686,1.47538 3.13266,1.47538 0.92969,0 1.96044,-0.262739 3.19329,-0.747795 0.72759,-0.28295 1.09138,-0.5659 1.09138,-1.030746 0,-0.363792 -0.32337,-0.707374 -0.68716,-0.707374 -0.78822,0 -2.10192,1.050956 -3.69856,1.050956 -1.73812,0 -1.85939,-1.050956 -1.85939,-2.62739 V 7.3566754 h 4.00172 c 0.54569,0 0.82864,-0.2223177 0.82864,-0.6871637 0,-0.5052673 -0.30316,-0.7073743 -0.92969,-0.7073743 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path939" />
+ <path
+ d="m -249.8903,13.278409 0.10105,0.606321 c 0.0808,0.424425 0.32338,0.646742 0.68717,0.646742 h 1.55622 c 0.52548,0 0.78822,-0.242528 0.78822,-0.707374 0,-0.58611 -0.34358,-0.687164 -1.17222,-0.687164 h -0.50527 V 8.6703706 c 0,-2.3848621 -1.17222,-3.4964503 -3.69856,-3.4964503 -2.22317,0 -3.67834,0.7073743 -3.67834,1.394538 0,0.5052674 0.30316,0.8286385 0.66695,0.8286385 0.76801,0 1.57643,-0.8286385 2.97097,-0.8286385 1.5158,0 2.22318,0.7073743 2.22318,2.2231765 0,0.020211 0,0.040421 0,0.060632 -0.80843,-0.2021069 -1.57644,-0.3031604 -2.34444,-0.3031604 -2.93055,0 -4.56762,1.2328524 -4.56762,3.2741326 0,1.73812 1.29349,2.950762 3.27413,2.950762 1.35412,0 2.62739,-0.525479 3.69856,-1.495592 z m -0.0606,-3.112447 v 1.071167 c 0,0.88927 -1.61686,2.021069 -3.3954,2.021069 -1.15201,0 -1.94023,-0.666953 -1.94023,-1.536012 0,-1.111589 1.15201,-1.8998058 3.25393,-1.8998058 0.72758,0 1.41475,0.1212642 2.0817,0.3435818 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path941" />
+ <path
+ d="m -243.65404,13.136934 c -0.0808,0 -0.14147,0 -0.2021,0 -0.80843,0 -1.15201,0.121264 -1.15201,0.687164 0,0.464846 0.26274,0.707374 0.82864,0.707374 0.26273,0 0.44463,0 0.52547,0 h 1.79876 c 0.74779,0 1.05095,-0.04042 1.05095,-0.707374 0,-0.545689 -0.26274,-0.707374 -0.9499,-0.707374 -0.12126,0 -0.26274,0.02021 -0.42443,0.02021 V 9.0341631 c 0,-1.4753808 1.37433,-2.3646514 2.56676,-2.3646514 1.29349,0 2.02107,0.7882172 2.02107,2.3646514 v 4.1027709 c -0.12126,0 -0.22232,0 -0.32337,0 -0.70737,0 -0.99032,0.141475 -0.99032,0.687164 0,0.646742 0.28295,0.707374 0.99032,0.707374 h 2.18276 c 0.70737,0 1.05095,-0.141475 1.05095,-0.707374 0,-0.505268 -0.30316,-0.687164 -0.92969,-0.687164 -0.14147,0 -0.30316,0 -0.44463,0 V 8.6703706 c 0,-2.2838086 -1.33391,-3.516661 -3.21351,-3.516661 -1.03074,0 -1.94022,0.4446353 -2.89012,1.3339059 v -0.666953 c 0,-0.2425283 -0.1819,-0.4042139 -0.5659,-0.4042139 h -0.9297 c -0.90948,0 -1.35411,0 -1.35411,0.6871637 0,0.5052674 0.28295,0.7073743 0.90948,0.7073743 0.14147,0 0.30316,0 0.44463,0 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path943" />
+ <path
+ d="M -226.90821,13.136934 V 5.8206625 c 0,-0.2425283 -0.1819,-0.4042139 -0.5659,-0.4042139 h -2.89013 c -0.52548,0 -0.78822,0.2223177 -0.78822,0.6871637 0,0.464846 0.28295,0.7073743 0.82864,0.7073743 h 1.92001 v 6.3259474 h -3.01139 c -0.54569,0 -0.82864,0.222318 -0.82864,0.687164 0,0.464846 0.26274,0.707374 0.78822,0.707374 h 7.65985 c 0.58611,0 0.80843,-0.141475 0.80843,-0.707374 0,-0.485057 -0.24253,-0.687164 -0.7478,-0.687164 z m -1.83918,-10.5701934 c 0,0.8084278 0.20211,0.9701134 1.03075,0.9701134 0.9499,0 1.01053,-0.2223177 1.01053,-1.2530631 0,-1.0307455 -0.10105,-1.33390591 -1.01053,-1.33390591 -0.90948,0 -1.03075,0.30316041 -1.03075,1.61685561 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path945" />
+ <path
+ d="M -211.21335,8.3874208 V 6.5482476 c 0,-0.8488492 -0.10105,-1.2126417 -0.70737,-1.2126417 -0.50527,0 -0.76801,0.1818962 -0.76801,0.6265315 0,0 0,0.020211 0,0.040421 -1.09137,-0.5456888 -2.0817,-0.8286385 -3.11244,-0.8286385 -2.8295,0 -4.97183,2.0817016 -4.97183,4.8101455 0,2.7284442 2.12212,4.7899352 4.99204,4.7899352 2.38486,0 4.60804,-1.475381 4.60804,-2.405073 0,-0.404214 -0.28295,-0.687164 -0.68717,-0.687164 -0.52548,0 -0.90948,0.485057 -1.5158,0.889271 -0.70737,0.464846 -1.5158,0.727585 -2.30402,0.727585 -2.06149,0 -3.37519,-1.374327 -3.37519,-3.3347649 0,-1.8998054 1.41475,-3.253922 3.45603,-3.253922 1.17222,0 2.10192,0.5456888 2.70824,1.6168557 0.30316,0.5456887 0.50526,0.7882171 0.92969,0.7882171 0.48505,0 0.74779,-0.2425284 0.74779,-0.7275851 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path947" />
+ <path
+ d="m -144.65194,12.914617 c 0,1.010534 0.768,1.75833 1.94022,1.75833 1.17222,0 1.94023,-0.727585 1.94023,-1.75833 0,-1.030746 -0.76801,-1.758331 -1.94023,-1.758331 -1.17222,0 -1.94022,0.747796 -1.94022,1.758331 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path949" />
+ <path
+ d="M -126.55201,14.005994 V 6.8109866 c 0.0606,0 0.12127,0 0.1819,0 0.82864,0 1.17222,-0.1414749 1.17222,-0.7073743 0,-0.464846 -0.26274,-0.6871637 -0.78822,-0.6871637 h -1.49559 c -0.384,0 -0.5659,0.1212642 -0.5659,0.4042139 v 0.7073744 c -0.9499,-0.7477957 -1.89981,-1.131799 -2.91034,-1.131799 -2.38486,0 -4.3453,1.7987519 -4.3453,4.3452995 0,2.5869686 1.81896,4.3857206 4.26446,4.3857206 1.27327,0 2.20296,-0.424424 3.01139,-1.354116 v 1.192431 c 0,2.04128 -0.62653,2.970972 -2.68802,2.970972 -0.52548,0 -1.07117,-0.141475 -1.65728,-0.141475 -0.46485,0 -0.84885,0.363793 -0.84885,0.768006 0,0.646743 0.70738,0.909482 2.16255,0.909482 1.83917,0 3.17308,-0.545689 3.90066,-1.495592 0.58611,-0.768006 0.60632,-1.637066 0.60632,-2.748654 0,-0.08084 0,-0.141475 0,-0.222318 z m -4.28467,-7.1343753 c 1.73812,0 2.93055,1.2126417 2.93055,2.8699187 0,1.6774876 -1.21264,2.8699186 -2.93055,2.8699186 -1.73812,0 -2.93055,-1.212642 -2.93055,-2.8699186 0,-1.6976984 1.21264,-2.8699187 2.93055,-2.8699187 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path951" />
+ <path
+ d="M -119.36584,13.136934 V 9.0543738 c 1.3137,-1.4955915 2.42529,-2.2838086 3.51667,-2.2838086 0.768,0 1.19243,0.6063209 1.7179,0.6063209 0.42443,0 0.86906,-0.4446353 0.86906,-0.929692 0,-0.727585 -0.72758,-1.2732738 -1.96043,-1.2732738 -1.57644,0 -2.91034,0.7680064 -4.1432,2.32423 V 5.8206625 c 0,-0.2829497 -0.18189,-0.4042139 -0.54568,-0.4042139 h -2.24339 c -0.52548,0 -0.78822,0.2223177 -0.78822,0.6871637 0,0.5052674 0.28295,0.7073743 0.92969,0.7073743 0.10106,0 0.28295,0 0.50527,0 h 0.66695 v 6.3259474 h -1.73812 c -0.54568,0 -0.82863,0.222318 -0.82863,0.687164 0,0.464846 0.28295,0.707374 0.80842,0.707374 h 6.44722 c 0.58611,0 0.80842,-0.141475 0.80842,-0.707374 0,-0.485057 -0.24253,-0.687164 -0.74779,-0.687164 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path953" />
+ <path
+ d="m -101.08401,9.9840658 c 0,-2.7284439 -2.02106,-4.7899348 -5.15372,-4.7899348 -3.13266,0 -5.17394,2.0412802 -5.17394,4.7899348 0,2.7486542 2.04128,4.7899352 5.17394,4.7899352 3.13266,0 5.15372,-2.041281 5.15372,-4.7899352 z m -5.15372,3.4156072 c -2.04128,0 -3.45603,-1.45517 -3.45603,-3.4156072 0,-1.9604375 1.41475,-3.4358182 3.45603,-3.4358182 2.04128,0 3.45603,1.4753807 3.45603,3.4358182 0,1.9806482 -1.41475,3.4156072 -3.45603,3.4156072 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path955" />
+ <path
+ d="M -96.585869,10.893547 V 6.1642444 c 0,-0.040421 0,-0.060632 0,-0.1010535 0,-0.4446353 -0.02021,-0.6467423 -0.5659,-0.6467423 h -1.495591 c -0.525478,0 -0.788217,0.2223177 -0.788217,0.6871637 0,0.5052674 0.28295,0.7073743 0.909481,0.7073743 0.141475,0 0.303161,0 0.444635,0 V 11.25734 c 0,2.304019 1.091378,3.476239 3.253922,3.476239 1.192431,0 2.041281,-0.464846 3.072026,-1.273274 v 0.666953 c 0,0.242529 0.181896,0.404214 0.565899,0.404214 h 1.495592 c 0.525478,0 0.788217,-0.242528 0.788217,-0.707374 0,-0.505268 -0.28295,-0.687164 -0.909481,-0.687164 -0.141475,0 -0.303161,0 -0.444636,0 V 6.3663513 c 0,-0.5861101 0,-0.9499027 -0.687163,-0.9499027 h -2.101912 c -0.545689,0 -0.788218,0.202107 -0.788218,0.6871637 0,0.4850567 0.202107,0.7073743 0.727585,0.7073743 h 1.354117 v 4.0825604 c 0,1.45517 -1.273274,2.384862 -2.60718,2.384862 -1.536013,0 -2.223176,-0.768006 -2.223176,-2.384862 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path957" />
+ <path
+ d="m -81.416471,13.096513 c -1.839173,0 -3.112447,-1.313695 -3.112447,-3.092237 0,-1.7785407 1.273274,-3.0922359 3.112447,-3.0922359 1.859384,0 3.132658,1.3136952 3.132658,3.0922359 0,1.839174 -1.313695,3.092237 -3.132658,3.092237 z m -3.072025,3.961296 v -3.941085 c 0.808427,0.929692 2.021069,1.434959 3.415607,1.434959 2.586969,0 4.486774,-1.818963 4.486774,-4.446353 0,-2.7688653 -2.061491,-4.7090921 -4.64846,-4.7090921 -1.253063,0 -2.34444,0.464846 -3.233711,1.3743273 V 5.8206625 c 0,-0.2829497 -0.181896,-0.4042139 -0.565899,-0.4042139 h -1.515802 c -0.525478,0 -0.788218,0.2223177 -0.788218,0.6871637 0,0.5052674 0.303161,0.7073743 0.929692,0.7073743 0.141475,0 0.303161,0 0.444636,0 V 17.057809 c -0.06063,0 -0.121264,0 -0.181897,0 -0.828638,0 -1.192431,0.141475 -1.192431,0.707374 0,0.464846 0.26274,0.707375 0.788218,0.707375 h 4.36551 c 0.58611,0 0.828638,-0.161686 0.828638,-0.707375 0,-0.464846 -0.242528,-0.707374 -0.747795,-0.707374 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path959" />
+ <path
+ d="M -72.310296,6.8311973 V 2.0210518 c 0,-0.2829497 -0.181897,-0.4042139 -0.5659,-0.4042139 h -1.495591 c -0.525478,0 -0.788217,0.2425284 -0.788217,0.7073744 0,0.5052673 0.282949,0.6871636 0.909481,0.6871636 0.141475,0 0.30316,0.020211 0.444635,0.020211 V 13.136934 c -0.08084,0 -0.141475,0 -0.202107,0 -0.808428,0 -1.152009,0.121264 -1.152009,0.687164 0,0.464846 0.262739,0.707374 0.788217,0.707374 h 1.798752 c 0.30316,0 0.404214,-0.161685 0.404214,-0.505267 v -0.788217 c 0.666953,0.990324 1.697698,1.47538 3.072025,1.47538 2.647601,0 4.668671,-2.081701 4.668671,-4.648459 0,-2.6071801 -1.980648,-4.6484604 -4.628249,-4.6484604 -1.394538,0 -2.506127,0.4850567 -3.253922,1.4147487 z m 3.072025,6.3259477 c -1.839173,0 -3.112447,-1.333906 -3.112447,-3.152869 0,-1.8391728 1.293485,-3.152868 3.112447,-3.152868 1.839174,0 3.112447,1.3541166 3.112447,3.152868 0,1.879595 -1.273273,3.152869 -3.112447,3.152869 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path961" />
+ <path
+ d="m -58.35354,17.057809 5.194149,-10.2468224 c 0.687164,-0.020211 0.990324,-0.1818962 0.990324,-0.7073743 0,-0.464846 -0.262739,-0.6871637 -0.788217,-0.6871637 h -2.445494 c -0.646742,0 -0.929692,0.1010535 -0.929692,0.6871637 0,0.5658994 0.343582,0.7073743 1.192431,0.7073743 0.121264,0 0.242528,0 0.384003,0 l -2.748654,5.4366774 -2.647602,-5.4366774 c 0.121265,0 0.242529,0 0.363793,0 0.808428,0 1.15201,-0.1414749 1.15201,-0.7073743 0,-0.5861102 -0.28295,-0.6871637 -0.929692,-0.6871637 h -2.748655 c -0.525478,0 -0.788217,0.2223177 -0.788217,0.6871637 0,0.5658994 0.323371,0.7073743 1.131799,0.7073743 l 3.617714,7.0939544 -1.616855,3.152868 h -2.142334 c -0.505267,0 -0.747796,0.242528 -0.747796,0.707374 0,0.545689 0.242529,0.707375 0.828639,0.707375 h 4.527196 c 0.525478,0 0.808427,-0.242529 0.808427,-0.707375 0,-0.58611 -0.363792,-0.707374 -1.232852,-0.707374 -0.121264,0 -0.262739,0 -0.424425,0 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path963" />
+ <path
+ d="m -43.446896,2.9305331 c 0,-0.2829497 -0.161685,-0.4446353 -0.384003,-0.4446353 -0.464846,0 -1.111588,0.6265316 -1.879594,1.8795947 -1.172221,1.8998053 -1.73812,3.9006642 -1.73812,6.1238405 0,2.223177 0.565899,4.224035 1.73812,6.123841 0.768006,1.253063 1.414748,1.879594 1.879594,1.879594 0.222318,0 0.384003,-0.181896 0.384003,-0.464846 0,-0.384003 -0.545688,-1.192431 -1.111588,-2.62739 -0.626531,-1.616856 -0.949903,-3.173079 -0.949903,-4.911199 0,-2.2231763 0.525479,-3.900664 1.232853,-5.5781517 0.424424,-1.0105348 0.828638,-1.6370664 0.828638,-1.9806482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path965" />
+ <path
+ d="m -35.432083,7.7002572 h 0.60632 c 0.384004,0 0.464846,-0.1818963 0.505268,-0.6063209 l 0.30316,-3.6581358 c 0,-0.040421 0,-0.080843 0,-0.1212642 0,-0.3233711 -0.161685,-0.4850567 -0.464846,-0.4850567 h -1.313695 c -0.30316,0 -0.444635,0.1616856 -0.444635,0.4850567 0,0.040421 0,0.080843 0,0.1212642 l 0.30316,3.6581358 c 0.04042,0.4244246 0.121264,0.6063209 0.505268,0.6063209 z m 3.678346,0 h 0.606321 c 0.384003,0 0.464846,-0.1818963 0.505267,-0.6063209 l 0.303161,-3.6581358 c 0,-0.040421 0,-0.080843 0,-0.1212642 0,-0.3233711 -0.141475,-0.4850567 -0.444635,-0.4850567 h -1.313696 c -0.30316,0 -0.464846,0.1616856 -0.464846,0.4850567 0,0.040421 0,0.080843 0,0.1212642 l 0.303161,3.6581358 c 0.04042,0.4244246 0.121264,0.6063209 0.505267,0.6063209 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path967" />
+ <path
+ d="m -24.02189,14.18789 c 0.990324,0.444636 1.899806,0.687164 2.910341,0.687164 2.768865,0 4.547406,-1.475381 4.547406,-3.658136 0,-1.8593838 -1.17222,-2.970972 -3.47624,-3.2741325 l -1.576434,-0.2021069 c -1.515802,-0.202107 -2.263598,-0.7882171 -2.263598,-1.7785412 0,-1.2530631 1.071167,-2.1423337 2.688023,-2.1423337 1.050956,0 1.899805,0.4042139 2.32423,1.0307455 0.424424,0.6265315 0.30316,1.3541166 1.091377,1.3541166 0.464846,0 0.747796,-0.2627391 0.747796,-0.7275851 0,-0.040421 0,-0.060632 0,-0.1010534 l -0.141475,-2.061491 c -0.04042,-0.525478 -0.101053,-0.7477957 -0.808428,-0.7477957 -0.444635,0 -0.626531,0.1212642 -0.626531,0.5052674 -0.909482,-0.3637925 -1.697699,-0.5861102 -2.506126,-0.5861102 -2.546548,0 -4.365511,1.596645 -4.365511,3.5570824 0,1.9806481 1.293485,2.9305508 3.920875,3.2943433 l 1.45517,0.202107 c 1.253063,0.1818962 1.920016,0.8286385 1.920016,1.8593835 0,1.212642 -1.111588,2.142334 -2.869918,2.142334 -1.414749,0 -2.445495,-0.565899 -2.869919,-1.434959 -0.363793,-0.727585 -0.262739,-1.495592 -1.091378,-1.495592 -0.606321,0 -0.768006,0.28295 -0.768006,0.84885 0,0.06063 0,0.121264 0,0.202106 l 0.121264,2.283809 c 0.04042,0.707374 0.28295,1.030746 0.848849,1.030746 0.545689,0 0.727585,-0.202107 0.788217,-0.788218 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path969" />
+ <path
+ d="m -12.268114,9.1150059 c 0.384003,-1.6370663 1.657277,-2.6071797 3.3953968,-2.6071797 1.5966449,0 2.849708,1.0307454 3.0316043,2.6071797 z m -0.04042,1.2934841 h 6.6291077 c 1.2126417,0 1.6370663,0 1.6370663,-0.9296916 0,-2.2029658 -1.8391733,-4.3250888 -4.8303562,-4.3250888 -3.0518148,0 -5.1537268,1.9604374 -5.1537268,4.7899348 0,2.9507616 1.899805,4.8303566 4.9516199,4.8303566 1.3339058,0 2.7688652,-0.323372 4.1229818,-0.990325 0.5861102,-0.282949 0.8690599,-0.58611 0.8690599,-0.990324 0,-0.363792 -0.3031604,-0.646742 -0.6871637,-0.646742 -0.8892705,0 -2.1625443,1.232853 -4.1634032,1.232853 -2.0412797,0 -3.2741327,-1.071167 -3.3751857,-2.970973 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path971" />
+ <path
+ d="m 1.0216744,13.136934 2.2635979,-2.425283 2.4859155,2.425283 H 5.2254991 c -0.5861102,0 -0.8892706,0.28295 -0.8892706,0.707375 0,0.485056 0.3435818,0.687163 1.0105347,0.687163 h 2.0210696 c 0.8690599,0 1.192431,-0.101053 1.192431,-0.687163 0,-0.444636 -0.2627391,-0.707375 -0.7680064,-0.707375 -0.020211,0 -0.060632,0 -0.1010535,0 L 4.235175,9.7617481 7.0646723,6.8109866 c 0.1010535,0 0.202107,0.020211 0.2829498,0.020211 0.6871636,0 1.0307454,-0.2223176 1.0307454,-0.727585 0,-0.4244246 -0.2829497,-0.6871637 -0.6871636,-0.6871637 H 5.1244456 c -0.6871637,0 -1.0105348,0.202107 -1.0105348,0.7073744 0,0.464846 0.3637925,0.6871636 1.0913776,0.6871636 0.080843,0 0.1414748,0 0.2021069,0 L 3.3863258,8.8926882 1.2642028,6.8109866 c 0.7477957,0 1.1317989,-0.2223176 1.1317989,-0.6871636 0,-0.5052674 -0.3233711,-0.7073744 -1.0105347,-0.7073744 h -2.02106957 c -0.86905993,0 -1.21264173,0.1212642 -1.21264173,0.7073744 0,0.5254781 0.2829497,0.6871636 1.01053478,0.6871636 0.0404214,0 0.10105347,0 0.14147486,0 l 3.13265776,3.051815 -3.19328984,3.2741324 c -0.0808428,0 -0.14147487,0 -0.20210695,0 -0.72758501,0 -1.11158821,0.202107 -1.11158821,0.646742 0,0.485057 0.2829497,0.747796 0.6871636,0.747796 h 2.7082332 c 0.6669529,0 1.0307454,-0.202107 1.0307454,-0.687163 0,-0.444636 -0.3840032,-0.727585 -1.0509561,-0.727585 -0.1010535,0 -0.1818963,0.02021 -0.2829498,0.02021 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path973" />
+ <path
+ d="m 13.199905,7.7002572 h 0.606321 c 0.384003,0 0.464846,-0.1818963 0.505267,-0.6063209 l 0.303161,-3.6581358 c 0,-0.040421 0,-0.080843 0,-0.1212642 0,-0.3233711 -0.161686,-0.4850567 -0.464846,-0.4850567 h -1.313695 c -0.303161,0 -0.444636,0.1616856 -0.444636,0.4850567 0,0.040421 0,0.080843 0,0.1212642 l 0.303161,3.6581358 c 0.04042,0.4244246 0.121264,0.6063209 0.505267,0.6063209 z m 3.678347,0 h 0.606321 c 0.384003,0 0.464846,-0.1818963 0.505267,-0.6063209 L 18.293,3.4358005 c 0,-0.040421 0,-0.080843 0,-0.1212642 0,-0.3233711 -0.141475,-0.4850567 -0.444635,-0.4850567 H 16.53467 c -0.303161,0 -0.464846,0.1616856 -0.464846,0.4850567 0,0.040421 0,0.080843 0,0.1212642 l 0.30316,3.6581358 c 0.04042,0.4244246 0.121264,0.6063209 0.505268,0.6063209 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path975" />
+ <path
+ d="m 25.479159,18.027922 c 0,0.28295 0.161685,0.464846 0.384003,0.464846 0.464846,0 1.111588,-0.626531 1.879595,-1.879594 1.17222,-1.899806 1.75833,-3.900664 1.75833,-6.123841 0,-2.2231763 -0.58611,-4.2240352 -1.75833,-6.1238405 -0.768007,-1.2530631 -1.414749,-1.8795947 -1.879595,-1.8795947 -0.222318,0 -0.384003,0.1616856 -0.384003,0.4446353 0,0.3840032 0.545689,1.192431 1.111588,2.6273904 0.626532,1.6168556 0.949903,3.1932899 0.949903,4.9314095 0,2.223177 -0.505268,3.900664 -1.212642,5.578152 -0.424425,1.010535 -0.848849,1.616856 -0.848849,1.960437 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path977" />
+ <path
+ d="M 87.987046,16.976966 V 4.0421214 h 1.657277 c 0.384003,0 0.646742,-0.2425284 0.646742,-0.6063209 0,-0.3840032 -0.242528,-0.6063209 -0.626531,-0.6063209 h -2.667812 c -0.424425,0 -0.707374,0.2829498 -0.707374,0.6467423 V 17.542866 c 0,0.363792 0.282949,0.646742 0.707374,0.646742 h 2.667812 c 0.384003,0 0.626531,-0.242528 0.626531,-0.626532 0,-0.363792 -0.262739,-0.58611 -0.646742,-0.58611 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path979" />
+ <path
+ d="m 98.305862,7.7002572 h 0.606321 c 0.384003,0 0.464846,-0.1818963 0.505267,-0.6063209 l 0.303161,-3.6581358 c 0,-0.040421 0,-0.080843 0,-0.1212642 0,-0.3233711 -0.161686,-0.4850567 -0.464846,-0.4850567 H 97.94207 c -0.303161,0 -0.444636,0.1616856 -0.444636,0.4850567 0,0.040421 0,0.080843 0,0.1212642 l 0.303161,3.6581358 c 0.04042,0.4244246 0.121264,0.6063209 0.505267,0.6063209 z m 3.678348,0 h 0.60632 c 0.384,0 0.46485,-0.1818963 0.50527,-0.6063209 l 0.30316,-3.6581358 c 0,-0.040421 0,-0.080843 0,-0.1212642 0,-0.3233711 -0.14148,-0.4850567 -0.44464,-0.4850567 h -1.31369 c -0.30316,0 -0.46485,0.1616856 -0.46485,0.4850567 0,0.040421 0,0.080843 0,0.1212642 l 0.30316,3.6581358 c 0.0404,0.4244246 0.12127,0.6063209 0.50527,0.6063209 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path981" />
+ <path
+ d="m 111.07017,4.2442283 -3.35497,8.8927057 c -0.0808,0 -0.16169,0 -0.24253,0 -0.66695,0 -0.92969,0.161686 -0.92969,0.687164 0,0.606321 0.28295,0.707374 1.03074,0.707374 h 2.58697 c 0.76801,0 1.15201,-0.06063 1.15201,-0.707374 0,-0.5659 -0.36379,-0.687164 -1.1318,-0.687164 h -0.9499 l 0.84885,-2.34444 h 5.01225 l 0.9499,2.34444 h -0.90948 c -0.768,0 -1.11159,0.121264 -1.11159,0.687164 0,0.646742 0.38401,0.707374 1.17222,0.707374 h 2.68803 c 0.64674,0 0.88927,-0.141475 0.88927,-0.707374 0,-0.545689 -0.24253,-0.687164 -0.92969,-0.687164 -0.0606,0 -0.10106,0 -0.16169,0 l -3.86024,-9.6405014 c -0.26274,-0.6467423 -0.52548,-0.666953 -1.09138,-0.666953 h -2.80929 c -0.92969,0 -1.37432,0 -1.37432,0.7073744 0,0.5456888 0.34358,0.7073743 1.09137,0.7073743 z m -0.50526,5.2345701 1.8998,-5.2345701 2.14233,5.2345701 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path983" />
+ <path
+ d="M 128.76592,14.005994 V 6.8109866 c 0.0606,0 0.12127,0 0.1819,0 0.82864,0 1.17222,-0.1414749 1.17222,-0.7073743 0,-0.464846 -0.26274,-0.6871637 -0.78822,-0.6871637 h -1.49559 c -0.384,0 -0.5659,0.1212642 -0.5659,0.4042139 v 0.7073744 c -0.9499,-0.7477957 -1.8998,-1.131799 -2.91034,-1.131799 -2.38486,0 -4.3453,1.7987519 -4.3453,4.3452995 0,2.5869686 1.81896,4.3857206 4.26446,4.3857206 1.27327,0 2.20296,-0.424424 3.01139,-1.354116 v 1.192431 c 0,2.04128 -0.62653,2.970972 -2.68802,2.970972 -0.52548,0 -1.07117,-0.141475 -1.65728,-0.141475 -0.46484,0 -0.84885,0.363793 -0.84885,0.768006 0,0.646743 0.70738,0.909482 2.16255,0.909482 1.83917,0 3.17308,-0.545689 3.90066,-1.495592 0.58611,-0.768006 0.60632,-1.637066 0.60632,-2.748654 0,-0.08084 0,-0.141475 0,-0.222318 z m -4.28466,-7.1343753 c 1.73812,0 2.93055,1.2126417 2.93055,2.8699187 0,1.6774876 -1.21265,2.8699186 -2.93055,2.8699186 -1.73812,0 -2.93056,-1.212642 -2.93056,-2.8699186 0,-1.6976984 1.21265,-2.8699187 2.93056,-2.8699187 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path985" />
+ <path
+ d="m 133.62785,9.1150059 c 0.384,-1.6370663 1.65728,-2.6071797 3.3954,-2.6071797 1.59664,0 2.84971,1.0307454 3.0316,2.6071797 z m -0.0404,1.2934841 h 6.62911 c 1.21264,0 1.63706,0 1.63706,-0.9296916 0,-2.2029658 -1.83917,-4.3250888 -4.83035,-4.3250888 -3.05182,0 -5.15373,1.9604374 -5.15373,4.7899348 0,2.9507616 1.89981,4.8303566 4.95162,4.8303566 1.33391,0 2.76887,-0.323372 4.12298,-0.990325 0.58611,-0.282949 0.86906,-0.58611 0.86906,-0.990324 0,-0.363792 -0.30316,-0.646742 -0.68716,-0.646742 -0.88927,0 -2.16254,1.232853 -4.1634,1.232853 -2.04128,0 -3.27414,-1.071167 -3.37519,-2.970973 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path987" />
+ <path
+ d="m 146.93785,7.7002572 h 0.60632 c 0.384,0 0.46485,-0.1818963 0.50527,-0.6063209 l 0.30316,-3.6581358 c 0,-0.040421 0,-0.080843 0,-0.1212642 0,-0.3233711 -0.16169,-0.4850567 -0.46485,-0.4850567 h -1.31369 c -0.30316,0 -0.44464,0.1616856 -0.44464,0.4850567 0,0.040421 0,0.080843 0,0.1212642 l 0.30316,3.6581358 c 0.0404,0.4244246 0.12127,0.6063209 0.50527,0.6063209 z m 3.67835,0 h 0.60632 c 0.384,0 0.46484,-0.1818963 0.50527,-0.6063209 l 0.30316,-3.6581358 c 0,-0.040421 0,-0.080843 0,-0.1212642 0,-0.3233711 -0.14148,-0.4850567 -0.44464,-0.4850567 h -1.31369 c -0.30316,0 -0.46485,0.1616856 -0.46485,0.4850567 0,0.040421 0,0.080843 0,0.1212642 l 0.30316,3.6581358 c 0.0404,0.4244246 0.12126,0.6063209 0.50527,0.6063209 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path989" />
+ <path
+ d="M 161.54133,4.0421214 V 16.976966 h -1.65727 c -0.38401,0 -0.64674,0.222318 -0.64674,0.58611 0,0.384004 0.24252,0.626532 0.62653,0.626532 h 2.6476 c 0.42442,0 0.72758,-0.28295 0.72758,-0.646742 V 3.4762219 c 0,-0.3637925 -0.30316,-0.6467423 -0.72758,-0.6467423 h -2.6476 c -0.38401,0 -0.62653,0.2223177 -0.62653,0.6063209 0,0.3637925 0.26273,0.6063209 0.64674,0.6063209 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path991" />
+ <path
+ d="m 232.24595,12.914617 c 0,1.010534 0.768,1.75833 1.94022,1.75833 1.17222,0 1.94023,-0.727585 1.94023,-1.75833 0,-1.030746 -0.76801,-1.758331 -1.94023,-1.758331 -1.17222,0 -1.94022,0.747796 -1.94022,1.758331 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path993" />
+ <path
+ d="m 249.94163,9.0341631 v 4.5069849 c 0,0.646742 0.28295,0.990324 0.82864,0.990324 h 1.19243 c 0.46485,0 0.70738,-0.242528 0.70738,-0.707374 0,-0.5659 -0.28295,-0.687164 -1.03075,-0.687164 -0.0606,0 -0.12126,0 -0.18189,0 V 8.6703706 c 0,-2.3040193 -0.60632,-3.516661 -2.42529,-3.516661 -0.9499,0 -1.65727,0.4042139 -2.20296,1.2126417 -0.28295,-0.8084278 -0.88927,-1.2126417 -1.79875,-1.2126417 -0.76801,0 -1.37433,0.262739 -1.89981,0.8488492 -0.0404,-0.4850567 -0.14147,-0.5861102 -0.5659,-0.5861102 h -1.5158 c -0.52548,0 -0.76801,0.2223177 -0.76801,0.6871637 0,0.5052674 0.28295,0.7073743 0.90948,0.7073743 0.14148,0 0.30316,0 0.44464,0 v 6.3259474 c -0.0808,0 -0.14148,0 -0.20211,0 -0.80843,0 -1.15201,0.121264 -1.15201,0.687164 0,0.464846 0.24253,0.707374 0.76801,0.707374 h 2.62739 c 0.58611,0 0.80843,-0.141475 0.80843,-0.707374 0,-0.545689 -0.26274,-0.707374 -0.94991,-0.707374 -0.12126,0 -0.26273,0.02021 -0.42442,0.02021 V 7.7002572 c 0.36379,-0.6871636 0.84885,-1.0307455 1.45517,-1.0307455 0.7478,0 1.29348,0.5861102 1.29348,1.596645 0,0.1212641 0,0.3840032 0,0.7680064 v 4.1634029 c 0,0.101054 0,0.181897 0,0.262739 0,0.768007 0.0404,1.071167 0.68717,1.071167 h 1.25306 c 0.46485,0 0.68716,-0.242528 0.68716,-0.707374 0,-0.5659 -0.28295,-0.687164 -1.03074,-0.687164 -0.0606,0 -0.12126,0 -0.1819,0 V 9.0341631 c 0,-1.5764342 0.68717,-2.3646514 1.59665,-2.3646514 0.99032,0 1.07116,0.8690599 1.07116,2.3646514 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path995" />
+ <path
+ d="m 255.20781,9.1150059 c 0.384,-1.6370663 1.65727,-2.6071797 3.39539,-2.6071797 1.59665,0 2.84971,1.0307454 3.03161,2.6071797 z m -0.0404,1.2934841 h 6.6291 c 1.21265,0 1.63707,0 1.63707,-0.9296916 0,-2.2029658 -1.83917,-4.3250888 -4.83036,-4.3250888 -3.05181,0 -5.15372,1.9604374 -5.15372,4.7899348 0,2.9507616 1.8998,4.8303566 4.95162,4.8303566 1.3339,0 2.76886,-0.323372 4.12298,-0.990325 0.58611,-0.282949 0.86906,-0.58611 0.86906,-0.990324 0,-0.363792 -0.30316,-0.646742 -0.68716,-0.646742 -0.88928,0 -2.16255,1.232853 -4.16341,1.232853 -2.04128,0 -3.27413,-1.071167 -3.37518,-2.970973 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path997" />
+ <path
+ d="m 272.90356,13.278409 0.10105,0.606321 c 0.0808,0.424425 0.32337,0.646742 0.68717,0.646742 h 1.55622 c 0.52548,0 0.78822,-0.242528 0.78822,-0.707374 0,-0.58611 -0.34359,-0.687164 -1.17222,-0.687164 h -0.50527 V 8.6703706 c 0,-2.3848621 -1.17222,-3.4964503 -3.69856,-3.4964503 -2.22318,0 -3.67835,0.7073743 -3.67835,1.394538 0,0.5052674 0.30316,0.8286385 0.66696,0.8286385 0.768,0 1.57643,-0.8286385 2.97097,-0.8286385 1.5158,0 2.22318,0.7073743 2.22318,2.2231765 0,0.020211 0,0.040421 0,0.060632 -0.80843,-0.2021069 -1.57644,-0.3031604 -2.34444,-0.3031604 -2.93056,0 -4.56762,1.2328524 -4.56762,3.2741326 0,1.73812 1.29348,2.950762 3.27413,2.950762 1.35412,0 2.62739,-0.525479 3.69856,-1.495592 z m -0.0606,-3.112447 v 1.071167 c 0,0.88927 -1.61686,2.021069 -3.3954,2.021069 -1.15201,0 -1.94023,-0.666953 -1.94023,-1.536012 0,-1.111589 1.15201,-1.8998058 3.25392,-1.8998058 0.72759,0 1.41475,0.1212642 2.08171,0.3435818 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path999" />
+ <path
+ d="m 279.13978,13.136934 c -0.0808,0 -0.14147,0 -0.2021,0 -0.80843,0 -1.15201,0.121264 -1.15201,0.687164 0,0.464846 0.26274,0.707374 0.82864,0.707374 0.26273,0 0.44463,0 0.52547,0 h 1.79876 c 0.74779,0 1.05095,-0.04042 1.05095,-0.707374 0,-0.545689 -0.26274,-0.707374 -0.9499,-0.707374 -0.12127,0 -0.26274,0.02021 -0.42443,0.02021 V 9.0341631 c 0,-1.4753808 1.37433,-2.3646514 2.56676,-2.3646514 1.29349,0 2.02107,0.7882172 2.02107,2.3646514 v 4.1027709 c -0.12126,0 -0.22232,0 -0.32337,0 -0.70737,0 -0.99032,0.141475 -0.99032,0.687164 0,0.646742 0.28295,0.707374 0.99032,0.707374 h 2.18276 c 0.70737,0 1.05095,-0.141475 1.05095,-0.707374 0,-0.505268 -0.30316,-0.687164 -0.92969,-0.687164 -0.14147,0 -0.30316,0 -0.44464,0 V 8.6703706 c 0,-2.2838086 -1.3339,-3.516661 -3.2135,-3.516661 -1.03074,0 -1.94022,0.4446353 -2.89013,1.3339059 v -0.666953 c 0,-0.2425283 -0.18189,-0.4042139 -0.56589,-0.4042139 h -0.9297 c -0.90948,0 -1.35411,0 -1.35411,0.6871637 0,0.5052674 0.28295,0.7073743 0.90948,0.7073743 0.14147,0 0.30316,0 0.44463,0 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path1001" />
+ <path
+ d="m 296.97701,2.9305331 c 0,-0.2829497 -0.16169,-0.4446353 -0.384,-0.4446353 -0.46485,0 -1.11159,0.6265316 -1.8796,1.8795947 -1.17222,1.8998053 -1.73812,3.9006642 -1.73812,6.1238405 0,2.223177 0.5659,4.224035 1.73812,6.123841 0.76801,1.253063 1.41475,1.879594 1.8796,1.879594 0.22231,0 0.384,-0.181896 0.384,-0.464846 0,-0.384003 -0.54569,-1.192431 -1.11159,-2.62739 -0.62653,-1.616856 -0.9499,-3.173079 -0.9499,-4.911199 0,-2.2231763 0.52548,-3.900664 1.23285,-5.5781517 0.42442,-1.0105348 0.82864,-1.6370664 0.82864,-1.9806482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path1003" />
+ <path
+ d="m 305.11304,18.027922 c 0,0.28295 0.16169,0.464846 0.384,0.464846 0.46485,0 1.11159,-0.626531 1.8796,-1.879594 1.17222,-1.899806 1.75833,-3.900664 1.75833,-6.123841 0,-2.2231763 -0.58611,-4.2240352 -1.75833,-6.1238405 -0.76801,-1.2530631 -1.41475,-1.8795947 -1.8796,-1.8795947 -0.22231,0 -0.384,0.1616856 -0.384,0.4446353 0,0.3840032 0.54569,1.192431 1.11159,2.6273904 0.62653,1.6168556 0.9499,3.1932899 0.9499,4.9314095 0,2.223177 -0.50527,3.900664 -1.21264,5.578152 -0.42443,1.010535 -0.84885,1.616856 -0.84885,1.960437 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';stroke-width:0.56146109"
+ id="path1005" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-0"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 242.66155,98.421652 H 267.5495 V 86.233682 H 242.66155 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-6"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 269.07755,84.705634 H 293.9655 V 72.517682 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-3"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 269.07755,98.421652 H 293.9655 V 86.233682 H 269.07755 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-0-4"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 245.30738,180.91592 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-6-1"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 271.72338,167.19992 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-3-6"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 271.72338,180.91592 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-43-4"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.38633,177.74091 h 24.887936 v -12.1879 h -24.887936 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-0-9-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.970344,164.02491 h 24.88796 v -12.18786 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-33-49-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.970344,177.74091 h 24.88796 v -12.1879 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-5-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.38634,190.44091 h 24.887946 v -12.1879 h -24.887946 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-4-9-5-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.970344,190.44091 h 24.88796 v -12.1879 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4-7-9"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.570344,164.02491 h 24.88795 v -12.18786 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9-3-5"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.570344,177.74091 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9-9-6"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.570344,190.44091 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-5-1-1-21"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -36.170344,164.02491 h 24.88795 v -12.18786 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-0"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -36.170344,177.74091 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-9-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -36.170344,190.44091 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.38634,88.896676 h 24.887939 V 76.708687 h -24.887939 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-0-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.970351,75.180636 h 24.88797 V 62.992687 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-33-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.970351,88.896676 h 24.88797 V 76.708687 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.38635,101.59668 h 24.887949 V 89.408676 h -24.887949 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-4-9-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.970351,101.59668 h 24.88797 V 89.408676 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4-1"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.570341,75.180636 h 24.88796 V 62.992687 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9-8"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.570341,88.896676 h 24.88796 V 76.708687 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9-7"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.570341,101.59668 h 24.88796 V 89.408676 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-1-9"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -113.38634,114.29668 h 24.887939 v -12.188 h -24.887939 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-2-9-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -86.970351,114.29668 h 24.88797 v -12.188 h -24.88797 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-4-0"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -61.570341,114.29668 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6-2"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -36.170341,114.29668 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-5-1-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -36.170341,75.180636 h 24.88796 V 62.992687 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -36.170341,88.896676 h 24.88796 V 76.708687 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -36.170341,101.59668 h 24.88796 V 89.408676 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-43-4-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 63.889263,177.74092 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-0-9-7-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 90.305262,164.02492 h 24.887958 v -12.1879 H 90.305262 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-33-49-2-5"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 90.305262,177.74092 h 24.887958 v -12.1879 H 90.305262 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-5-1-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 63.889263,190.44092 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-4-9-5-7-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 90.305262,190.44092 h 24.887958 v -12.1879 H 90.305262 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4-7-9-8"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 115.70527,164.02492 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9-3-5-9"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 115.70527,177.74092 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9-9-6-4"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 115.70527,190.44092 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-2-5-6-7-1-9-3"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 142.60199,164.02492 h 24.88792 v -12.1879 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-2-6-0-3-2-7-5"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 142.60199,177.74092 h 24.88792 v -12.1879 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-1-4-33-3-5-6-4"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 142.60199,190.44092 h 24.88792 v -12.1879 h -24.88792 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-6-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 64.637609,88.896667 h 24.88794 v -12.18799 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-0-0-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 91.053599,75.180627 H 115.94157 V 62.992677 H 91.053599 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-33-6-8"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 91.053599,88.896667 H 115.94157 V 76.708677 H 91.053599 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-2-9"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 64.637599,101.59667 h 24.88795 V 89.408667 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-4-9-6-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 91.053599,101.59667 H 115.94157 V 89.408667 H 91.053599 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4-1-3"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 116.45361,75.180627 h 24.88796 v -12.18795 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9-8-6"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 116.45361,88.896667 h 24.88796 v -12.18799 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9-7-1"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 116.45361,101.59667 h 24.88796 V 89.408667 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-1-9-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 64.637609,114.29667 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-2-9-2-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 91.053599,114.29667 h 24.887971 v -12.188 H 91.053599 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-4-0-3"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 116.45361,114.29667 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6-2-1"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 141.85361,114.29667 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-5-1-3-9"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 141.85361,75.180627 h 24.88796 v -12.18795 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-4"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 141.85361,88.896667 h 24.88796 v -12.18799 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-5-7"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56899637;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 141.85361,101.59667 h 24.88796 V 89.408667 h -24.88796 z" />
+ </g>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot1848"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ transform="matrix(0.26458333,0,0,0.26458333,-306.84909,0.94988499)"><flowRegion
+ id="flowRegion1850"><rect
+ id="rect1852"
+ width="78.933067"
+ height="54.952229"
+ x="901.05609"
+ y="1308.1863" /></flowRegion><flowPara
+ id="flowPara1854" /></flowRoot> </g>
+</svg>
diff --git a/doc/source/_static/schemas/06_reduction.svg b/doc/source/_static/schemas/06_reduction.svg
new file mode 100644
index 0000000000000..6ee808b953f7e
--- /dev/null
+++ b/doc/source/_static/schemas/06_reduction.svg
@@ -0,0 +1,222 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="278.65692mm"
+ height="77.216049mm"
+ viewBox="0 0 278.65692 77.216049"
+ version="1.1"
+ id="svg11151"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="06_reduction.svg">
+ <defs
+ id="defs11145">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.7"
+ inkscape:cx="626.80804"
+ inkscape:cy="-104.50802"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata11148">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-3.5465457,-106.44555)">
+ <g
+ id="g921"
+ transform="matrix(0.89981591,0,0,0.89933244,14.313808,14.602194)"
+ style="stroke-width:1.11163712">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3.80258,132.60554 H 28.69052 V 120.41757 H 3.80258 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 30.21857,118.88952 H 55.10652 V 106.70157 H 30.21857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94"
+ style="fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 30.21857,132.60554 H 55.10652 V 120.41757 H 30.21857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3.80257,145.30554 H 28.69052 V 133.11758 H 3.80257 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-4"
+ style="fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 30.21857,145.30554 H 55.10652 V 133.11758 H 30.21857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 55.61857,118.88952 H 80.50653 V 106.70157 H 55.61857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 55.61857,132.60554 H 80.50653 V 120.41757 H 55.61857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 55.61857,145.30554 H 80.50653 V 133.11758 H 55.61857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3.80258,158.00555 H 28.69052 V 145.81759 H 3.80258 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-2"
+ style="fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 30.21857,158.00555 H 55.10652 V 145.81759 H 30.21857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 55.61857,158.00555 H 80.50653 V 145.81759 H 55.61857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3.80258,170.70556 H 28.69052 V 158.5176 H 3.80258 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-6-0"
+ style="fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 30.21857,170.70556 H 55.10652 V 158.5176 H 30.21857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-9"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 55.61857,170.70556 H 80.50653 V 158.5176 H 55.61857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-9"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3.80258,183.40557 H 28.69052 V 171.21761 H 3.80258 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-1"
+ style="fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 30.21857,183.40557 H 55.10652 V 171.21761 H 30.21857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-34"
+ style="fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 55.61857,183.40557 H 80.50653 V 171.21761 H 55.61857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-58"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 81.01858,158.00555 h 24.88794 V 145.81759 H 81.01858 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-5"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 81.01857,118.88952 h 24.88795 V 106.70157 H 81.01857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 81.01858,132.60554 h 24.88794 V 120.41757 H 81.01858 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 81.01857,145.30554 h 24.88795 V 133.11758 H 81.01857 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-89"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 81.01858,170.70556 h 24.88794 V 158.5176 H 81.01858 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-55"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 81.01858,183.40557 h 24.88794 V 171.21761 H 81.01858 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-0"
+ d="m 149.73091,145.06062 h 47.88958"
+ style="fill:none;stroke:#000000;stroke-width:0.44465485;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-2)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-4-6"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 230.64348,144.79755 h 24.88795 v -12.18796 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-6-8"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 257.05948,144.79755 h 24.88795 v -12.18796 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-90-2"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 230.64348,157.49755 h 24.88795 V 145.3096 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-4-3"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56921214;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 257.05948,157.49755 h 24.88795 V 145.3096 h -24.88795 z" />
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/06_valuecounts.svg b/doc/source/_static/schemas/06_valuecounts.svg
new file mode 100644
index 0000000000000..6d7439b45ae6f
--- /dev/null
+++ b/doc/source/_static/schemas/06_valuecounts.svg
@@ -0,0 +1,269 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="370.33118mm"
+ height="128.24377mm"
+ viewBox="0 0 370.33118 128.24378"
+ version="1.1"
+ id="svg14732"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="06_valuecounts.svg">
+ <defs
+ id="defs14726">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2-3-3"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9-2-86"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-2-3-1-7"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-9-2-8-3"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.49497475"
+ inkscape:cx="654.27439"
+ inkscape:cy="146.60032"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata14729">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(72.482839,-75.64002)">
+ <g
+ id="g984"
+ transform="matrix(0.89986154,0,0,0.89959912,11.283883,14.032219)"
+ style="stroke-width:1.11144412">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4-5"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -45.810816,113.59785 h 24.88796 V 101.4099 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9-2"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -45.810816,127.31387 h 24.88796 V 115.1259 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9-4"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -45.810816,140.01387 h 24.88796 v -12.18796 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-4-6"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -45.810816,152.71388 h 24.88796 v -12.18796 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-9-6-4"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -45.810816,165.41389 h 24.88796 v -12.18796 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-34-5-6"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -45.810816,178.1139 h 24.88796 v -12.18796 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -72.226805,127.31387 h 24.887939 V 115.1259 h -24.887939 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -72.226815,140.01387 h 24.887949 v -12.18796 h -24.887949 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-1-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -72.226805,152.71388 h 24.887939 v -12.18796 h -24.887939 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-3-2-8"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -72.226805,165.41389 h 24.887939 v -12.18796 h -24.887939 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-9-5-9"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -72.226805,178.1139 h 24.887939 v -12.18796 h -24.887939 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-0-9-4"
+ d="m 170.15323,139.76895 h 47.88958"
+ style="fill:none;stroke:#000000;stroke-width:0.44457766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-2-3-3)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-0-9-7-0"
+ d="m 9.345491,139.76895 h 47.88958"
+ style="fill:none;stroke:#000000;stroke-width:0.44457766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-2-3-1-7)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-4-4"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 246.28835,146.36389 h 24.88794 v -12.18797 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-0-4-7"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 272.70434,132.64787 H 297.5923 V 120.45992 H 272.70434 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-94-33-4-0"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 272.70434,146.36389 H 297.5923 V 134.17592 H 272.70434 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-9-4"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 246.28834,159.06389 h 24.88795 v -12.18796 h -24.88795 z" />
+ <text
+ id="text17627"
+ y="143.61424"
+ x="282.14795"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;stroke-width:0.29406959"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';fill:#333333;fill-opacity:1;stroke-width:0.29406959"
+ y="143.61424"
+ x="282.14795"
+ id="tspan17625"
+ sodipodi:role="line">3</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-4-9-9-9"
+ style="fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 272.70434,159.06389 H 297.5923 V 146.87593 H 272.70434 Z" />
+ <text
+ id="text17627-7"
+ y="156.31425"
+ x="282.14795"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;stroke-width:0.29406959"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';fill:#333333;fill-opacity:1;stroke-width:0.29406959"
+ y="156.31425"
+ x="282.14795"
+ id="tspan17625-9"
+ sodipodi:role="line">2</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4-7-9-85"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 111.89662,177.21177 h 24.88796 v -12.1879 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9-3-5-8"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 111.89662,190.92777 h 24.88796 v -12.1879 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9-9-6-2"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 111.89662,203.62777 h 24.88796 v -12.1879 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-43-4-21"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 85.480629,190.92777 h 24.887941 v -12.1879 H 85.480629 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-5-1-13"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 85.480619,203.62777 h 24.887951 v -12.1879 H 85.480619 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4-5-8"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 111.89662,88.083994 h 24.88796 v -12.18795 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9-2-4"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 111.89662,101.80001 h 24.88796 V 89.612044 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9-4-5"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 111.89662,114.50001 h 24.88796 v -12.18795 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-4-6-0"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 111.89662,127.20002 h 24.88796 v -12.18795 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-3-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 85.48063,101.80001 h 24.88794 V 89.612044 H 85.48063 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-7-6"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 85.48062,114.50001 h 24.88795 V 102.31206 H 85.48062 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-95-1-0-1"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56911337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 85.48063,127.20002 h 24.88794 V 115.01207 H 85.48063 Z" />
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/07_melt.svg b/doc/source/_static/schemas/07_melt.svg
new file mode 100644
index 0000000000000..c4551b48c5001
--- /dev/null
+++ b/doc/source/_static/schemas/07_melt.svg
@@ -0,0 +1,315 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="275.26425mm"
+ height="64.67041mm"
+ viewBox="0 0 275.26425 64.67041"
+ version="1.1"
+ id="svg19055"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="07_melt.svg">
+ <defs
+ id="defs19049">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-1"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <clipPath
+ id="clipPath1036"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1034"
+ d="M 0,1080 H 1920 V 0 H 0 Z" />
+ </clipPath>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.7"
+ inkscape:cx="568.82093"
+ inkscape:cy="-47.502894"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ showguides="false" />
+ <metadata
+ id="metadata19052">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(68.457043,-84.703481)">
+ <g
+ id="g1283"
+ transform="translate(13.763216,-3.2373883)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-5"
+ d="m 22.137533,120.23996 h 43.0917"
+ style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-1)" />
+ <g
+ style="stroke-width:1.11179423"
+ transform="matrix(0.89981363,0,0,0.89908051,-6.8328066,15.041111)"
+ id="g1236">
+ <path
+ d="m 104.44721,148.96344 h 24.88794 v -12.1879 h -24.88794 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-5-2-96-9-5-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 130.8632,148.96344 h 24.88797 v -12.1879 H 130.8632 Z"
+ style="opacity:1;fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-1-9-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 156.26321,148.96344 h 24.88796 v -12.1879 h -24.88796 z"
+ style="opacity:1;fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-34-5-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 181.66321,148.96344 24.88796,-12.1879 h -24.88796 z"
+ style="opacity:1;fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-55-7-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 181.5915,149.0407 h 24.88796 v -12.18799 z"
+ style="opacity:1;fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 104.44721,110.8635 h 24.88794 V 98.675505 h -24.88794 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-6-3-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 130.8632,97.147455 h 24.88797 V 84.959505 H 130.8632 Z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-40-0-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 130.8632,110.8635 h 24.88797 V 98.675505 H 130.8632 Z"
+ style="opacity:1;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-94-33-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 104.4472,123.5635 h 24.88795 v -12.188 H 104.4472 Z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-5-7-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 130.8632,123.5635 h 24.88797 v -12.188 H 130.8632 Z"
+ style="opacity:1;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-4-9-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 156.26321,97.147455 h 24.88796 v -12.18795 h -24.88796 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-6-4-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 156.26321,110.8635 h 24.88796 V 98.675505 h -24.88796 z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-6-9-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 156.26321,123.5635 h 24.88796 v -12.188 h -24.88796 z"
+ style="opacity:1;fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-39-9-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 104.44721,136.26349 h 24.88794 V 124.0755 h -24.88794 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-95-1-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 130.8632,136.26349 h 24.88797 V 124.0755 H 130.8632 Z"
+ style="opacity:1;fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-2-9-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 156.26321,136.26349 h 24.88796 V 124.0755 h -24.88796 z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-1-4-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 181.66321,97.147455 h 24.88796 v -12.18795 h -24.88796 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-5-1-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 181.66321,123.5635 24.88796,-12.188 h -24.88796 z"
+ style="opacity:1;fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M 181.66321,110.8635 206.55117,98.675505 H 181.66321 Z"
+ style="opacity:1;fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 181.5915,110.94071 h 24.88796 V 98.752722 Z"
+ style="opacity:1;fill:#47e5ab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 181.5915,123.64071 h 24.88796 v -12.188 z"
+ style="opacity:1;fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M 181.66321,136.26349 206.55117,124.0755 H 181.66321 Z"
+ style="opacity:1;fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 181.5915,136.34071 h 24.88796 v -12.18799 z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ <g
+ style="stroke-width:1.11179423"
+ transform="matrix(0.89981363,0,0,0.89908051,-6.832813,15.041111)"
+ id="g1211">
+ <path
+ d="m -41.785016,123.56348 24.887959,-12.188 h -24.887959 z"
+ style="opacity:1;fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m -41.856727,123.64069 h 24.887959 V 111.4527 Z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m -16.385018,123.56348 24.8879597,-12.188 H -16.385018 Z"
+ style="opacity:1;fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-4"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -16.456728,123.64069 H 8.4312317 V 111.4527 Z"
+ style="opacity:1;fill:#e70488;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-9-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m -41.785016,136.26348 24.887959,-12.188 h -24.887959 z"
+ style="opacity:1;fill:#150458;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m -41.856727,136.34069 h 24.887958 V 124.1527 Z"
+ style="opacity:1;fill:#47e5ab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-3-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m -68.201008,123.56343 h 24.88795 v -12.1879 h -24.88795 z"
+ style="opacity:1;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-6-3-5-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -41.785018,109.84743 h 24.88796 V 97.659523 h -24.88796 z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-40-0-2-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -68.201018,136.26343 h 24.88796 v -12.1879 h -24.88796 z"
+ style="opacity:1;fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-5-7-91-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M -16.385018,109.84743 H 8.5029417 V 97.659523 H -16.385018 Z"
+ style="opacity:1;fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-6-4-3-5"
+ inkscape:connector-curvature="0" />
+ <g
+ style="stroke-width:1.11179423"
+ id="g1156">
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-55-7-5"
+ style="opacity:1;fill:#150458;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -16.385018,136.26343 8.5029417,124.07553 H -16.385018 Z" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-2-8"
+ style="opacity:1;fill:#e70488;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5692926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -16.456728,136.34069 H 8.4312317 V 124.1527 Z" />
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/07_pivot.svg b/doc/source/_static/schemas/07_pivot.svg
new file mode 100644
index 0000000000000..14b61c5f9a73b
--- /dev/null
+++ b/doc/source/_static/schemas/07_pivot.svg
@@ -0,0 +1,338 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="272.51166mm"
+ height="64.025223mm"
+ viewBox="0 0 272.51166 64.025223"
+ version="1.1"
+ id="svg19055"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="07_pivot.svg">
+ <defs
+ id="defs19049">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-1"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-1-3"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0-6"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-1-2"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0-9"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.49497475"
+ inkscape:cx="494.55926"
+ inkscape:cy="32.273014"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ showguides="false" />
+ <metadata
+ id="metadata19052">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(73.058798,-82.073475)">
+ <g
+ id="g1246"
+ transform="matrix(0.98997936,0,0,0.98990821,12.896057,-1.7340547)"
+ style="stroke-width:1.01015842">
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-5"
+ d="M 37.958629,117.00715 H 85.848212"
+ style="fill:none;stroke:#000000;stroke-width:0.40406337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-1)" />
+ <g
+ style="stroke-width:1.12308824"
+ transform="matrix(0.89981363,0,0,0.89908051,-166.78578,11.765142)"
+ id="g1236">
+ <path
+ d="m 104.44721,148.96344 h 24.88794 v -12.1879 h -24.88794 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-5-2-96-9-5-2-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 130.8632,148.96344 h 24.88797 v -12.1879 H 130.8632 Z"
+ style="opacity:1;fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-1-9-9-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 156.26321,148.96344 h 24.88796 v -12.1879 h -24.88796 z"
+ style="opacity:1;fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-34-5-3-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 181.66321,148.96344 24.88796,-12.1879 h -24.88796 z"
+ style="opacity:1;fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-55-7-6-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 181.5915,149.0407 h 24.88796 v -12.18799 z"
+ style="opacity:1;fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-2-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 104.44721,110.8635 h 24.88794 V 98.675505 h -24.88794 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-6-3-0-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 130.8632,97.147455 h 24.88797 V 84.959505 H 130.8632 Z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-40-0-7-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 130.8632,110.8635 h 24.88797 V 98.675505 H 130.8632 Z"
+ style="opacity:1;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-94-33-6-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 104.4472,123.5635 h 24.88795 v -12.188 H 104.4472 Z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-5-7-1-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 130.8632,123.5635 h 24.88797 v -12.188 H 130.8632 Z"
+ style="opacity:1;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-4-9-0-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 156.26321,97.147455 h 24.88796 v -12.18795 h -24.88796 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-6-4-9-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 156.26321,110.8635 h 24.88796 V 98.675505 h -24.88796 z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-6-9-1-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 156.26321,123.5635 h 24.88796 v -12.188 h -24.88796 z"
+ style="opacity:1;fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-39-9-1-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 104.44721,136.26349 h 24.88794 V 124.0755 h -24.88794 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-95-1-2-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 130.8632,136.26349 h 24.88797 V 124.0755 H 130.8632 Z"
+ style="opacity:1;fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-2-9-9-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 156.26321,136.26349 h 24.88796 V 124.0755 h -24.88796 z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-1-4-8-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 181.66321,97.147455 h 24.88796 v -12.18795 h -24.88796 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-5-1-9-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 181.66321,123.5635 24.88796,-12.188 h -24.88796 z"
+ style="opacity:1;fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-2-1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M 181.66321,110.8635 206.55117,98.675505 H 181.66321 Z"
+ style="opacity:1;fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-6-8"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 181.5915,110.94071 h 24.88796 V 98.752722 Z"
+ style="opacity:1;fill:#47e5ab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-79"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 181.5915,123.64071 h 24.88796 v -12.188 z"
+ style="opacity:1;fill:#e50387;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-9-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M 181.66321,136.26349 206.55117,124.0755 H 181.66321 Z"
+ style="opacity:1;fill:#140357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6-5-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 181.5915,136.34071 h 24.88796 v -12.18799 z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-3-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ <g
+ style="stroke-width:1.12308824"
+ transform="matrix(0.89981363,0,0,0.89908051,166.77195,11.765115)"
+ id="g1211">
+ <path
+ d="m -41.785016,123.56348 24.887959,-12.188 h -24.887959 z"
+ style="opacity:1;fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-3-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m -41.856727,123.64069 h 24.887959 V 111.4527 Z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-7-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m -16.385018,123.56348 24.8879597,-12.188 H -16.385018 Z"
+ style="opacity:1;fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-4-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -16.456728,123.64069 H 8.4312317 V 111.4527 Z"
+ style="opacity:1;fill:#e70488;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-9-0-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m -41.785016,136.26348 24.887959,-12.188 h -24.887959 z"
+ style="opacity:1;fill:#150458;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6-6-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m -41.856727,136.34069 h 24.887958 V 124.1527 Z"
+ style="opacity:1;fill:#47e5ab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-3-3-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m -68.201008,123.56343 h 24.88795 v -12.1879 h -24.88795 z"
+ style="opacity:1;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-6-3-5-2-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -41.785018,109.84743 h 24.88796 V 97.659523 h -24.88796 z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-40-0-2-0-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -68.201018,136.26343 h 24.88796 v -12.1879 h -24.88796 z"
+ style="opacity:1;fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-5-7-91-2-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M -16.385018,109.84743 H 8.5029417 V 97.659523 H -16.385018 Z"
+ style="opacity:1;fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-6-4-3-5-3"
+ inkscape:connector-curvature="0" />
+ <g
+ style="stroke-width:1.12308824"
+ id="g1156">
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-55-7-5-6"
+ style="opacity:1;fill:#150458;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -16.385018,136.26343 8.5029417,124.07553 H -16.385018 Z" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-2-8-1"
+ style="opacity:1;fill:#e70488;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.57507569;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -16.456728,136.34069 H 8.4312317 V 124.1527 Z" />
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/07_pivot_table.svg b/doc/source/_static/schemas/07_pivot_table.svg
new file mode 100644
index 0000000000000..81ddb8b7f9288
--- /dev/null
+++ b/doc/source/_static/schemas/07_pivot_table.svg
@@ -0,0 +1,455 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="310.98999mm"
+ height="77.370468mm"
+ viewBox="0 0 310.98998 77.370469"
+ version="1.1"
+ id="svg19055"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="07_pivot_table.svg">
+ <defs
+ id="defs19049">
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker14101"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path14103"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.4,0,0,-0.4,-4,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker14061"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow2Mend">
+ <path
+ transform="scale(-0.6)"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path14063"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker13985"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend"
+ inkscape:collect="always">
+ <path
+ transform="matrix(-0.4,0,0,-0.4,-4,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path13987"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker13901"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow2Mend">
+ <path
+ transform="scale(-0.6)"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path13903"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-1"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-1-3"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0-6"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.44945336"
+ inkscape:cx="392.70209"
+ inkscape:cy="-168.6873"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1875"
+ inkscape:window-height="1029"
+ inkscape:window-x="45"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ showguides="false" />
+ <metadata
+ id="metadata19052">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(90.105873,-78.392086)">
+ <g
+ id="g1211"
+ transform="matrix(0.88189511,0,0,0.88119418,197.57988,12.204016)"
+ style="stroke-width:1.13437259">
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-3-3"
+ style="opacity:1;fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -41.785016,123.56348 24.887959,-12.188 h -24.887959 z" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-7-7"
+ style="opacity:1;fill:#48e5ac;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -41.856727,123.64069 h 24.887959 V 111.4527 Z" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-3-4-4-5"
+ style="opacity:1;fill:#ffca00;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -16.385018,123.56348 24.8879597,-12.188 H -16.385018 Z" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-9-0-9"
+ style="opacity:1;fill:#e70488;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -16.456728,123.64069 H 8.4312317 V 111.4527 Z" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6-6-2"
+ style="opacity:1;fill:#150458;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -41.785016,136.26348 24.887959,-12.188 h -24.887959 z" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-3-3-2"
+ style="opacity:1;fill:#47e5ab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -41.856727,136.34069 h 24.887958 V 124.1527 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-6-3-5-2-8"
+ style="opacity:1;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -68.201008,123.56343 h 24.88795 v -12.1879 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-40-0-2-0-9"
+ style="opacity:1;fill:#48e5ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -41.785018,109.84743 h 24.88796 V 97.659523 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-5-7-91-2-7"
+ style="opacity:1;fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -68.201018,136.26343 h 24.88796 v -12.1879 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-6-4-3-5-3"
+ style="opacity:1;fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -16.385018,109.84743 H 8.5029417 V 97.659523 H -16.385018 Z" />
+ <g
+ id="g1156"
+ style="stroke-width:1.13437259">
+ <path
+ d="M -16.385018,136.26343 8.5029417,124.07553 H -16.385018 Z"
+ style="opacity:1;fill:#150458;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-55-7-5-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -16.456728,136.34069 H 8.4312317 V 124.1527 Z"
+ style="opacity:1;fill:#e70488;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58085382;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-2-8-1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ </g>
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-1)"
+ d="M 65.052483,117.00647 H 108.14521"
+ id="path6109-2-9-6-9-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -74.300346,105.80648 h 22.395042 V 94.846642 h -22.395042 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-6-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -50.530312,93.472569 h 22.39507 V 82.512767 h -22.39507 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-40-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -50.530312,105.80648 h 22.39507 V 94.846642 h -22.39507 z"
+ style="opacity:1;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-94-33"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -74.300355,117.22673 h 22.395051 v -10.95984 h -22.395051 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-5-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -50.530312,117.22673 h 22.39507 v -10.95984 h -22.39507 z"
+ style="opacity:1;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-4-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M -27.674491,93.472569 H -5.2794326 V 82.512767 H -27.674491 Z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-6-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M -27.674491,105.80648 H -5.2794326 V 94.846642 H -27.674491 Z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-6-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M -27.674491,117.22673 H -5.2794326 V 106.26689 H -27.674491 Z"
+ style="opacity:1;fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-39-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -74.300346,128.64699 h 22.395042 v -10.95985 h -22.395042 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-95-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -50.530312,128.64699 h 22.39507 v -10.95985 h -22.39507 z"
+ style="opacity:1;fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-2-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M -27.674491,128.64699 H -5.2794326 V 117.68714 H -27.674491 Z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-1-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -74.300346,140.06724 h 22.395042 v -10.95985 h -22.395042 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-5-6-3-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -50.530312,140.06724 h 22.39507 v -10.95985 h -22.39507 z"
+ style="opacity:1;fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-0-6-0-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M -27.674491,140.06724 H -5.2794326 V 129.10739 H -27.674491 Z"
+ style="opacity:1;fill:#48e5ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-5-21-9-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -74.300346,151.4875 h 22.395042 v -10.95976 h -22.395042 z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-5-2-96-9-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -50.530312,151.4875 h 22.39507 v -10.95976 h -22.39507 z"
+ style="opacity:1;fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-1-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M -27.674491,151.4875 H -5.2794326 V 140.52774 H -27.674491 Z"
+ style="opacity:1;fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-34-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M -4.8186801,93.472569 H 17.576378 V 82.512767 H -4.8186801 Z"
+ style="opacity:1;fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-5-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M -4.8186801,117.22673 17.576378,106.26689 H -4.8186801 Z"
+ style="opacity:1;fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-3-4"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -4.8186801,140.06724 17.576378,129.10739 H -4.8186801 Z"
+ style="opacity:1;fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-89-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -4.8186801,151.4875 17.576378,140.52774 H -4.8186801 Z"
+ style="opacity:1;fill:#120357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-55-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -4.8186801,105.80648 17.576378,94.846642 H -4.8186801 Z"
+ style="opacity:1;fill:#ffc900;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -4.8832082,105.87591 H 17.51185 V 94.916078 Z"
+ style="opacity:1;fill:#45e5ab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -4.8832082,117.29616 H 17.511849 v -10.95983 z"
+ style="opacity:1;fill:#e70488;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -4.8186801,128.64699 17.576378,117.68714 H -4.8186801 Z"
+ style="opacity:1;fill:#120357;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-58-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -4.8832082,128.71642 H 17.511849 v -10.95984 z"
+ style="opacity:1;fill:#45e5ab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -4.8832082,140.13667 H 17.511849 v -10.95984 z"
+ style="opacity:1;fill:#45e5ab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="M -4.8832082,151.55697 H 17.511849 v -10.95984 z"
+ style="opacity:1;fill:#e70488;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.28199998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13985)"
+ d="M 15.392997,135.10777 C 95.323619,82.428706 110.04977,99.372596 162.49825,112.63178"
+ id="path13592"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.28199998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker14101)"
+ d="M 12.483482,101.05648 C 63.450395,83.124053 112.26633,94.573723 162.49825,112.63178"
+ id="path13592-1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ <g
+ aria-label="mean( )"
+ transform="scale(1.0003349,0.99966518)"
+ style="font-style:normal;font-weight:normal;font-size:10.79440498px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text14840">
+ <path
+ d="m 99.273083,91.613281 v -3.40144 q 0,-0.763588 -0.123959,-1.066049 -0.119001,-0.307419 -0.441295,-0.307419 -0.317335,0 -0.51567,0.476004 -0.193376,0.476003 -0.193376,1.289175 v 3.009729 h -0.837964 v -4.21957 q 0,-0.937132 -0.02975,-1.145383 h 0.738796 l 0.02975,0.629712 v 0.238002 h 0.0099 q 0.168585,-0.505753 0.42642,-0.733838 0.257835,-0.233044 0.644588,-0.233044 0.436336,0 0.649546,0.238002 0.218168,0.238002 0.312377,0.733838 h 0.0099 q 0.19833,-0.525587 0.47104,-0.748713 0.27767,-0.223127 0.69913,-0.223127 0.58509,0 0.83797,0.42642 0.25288,0.42642 0.25288,1.462718 v 3.574983 h -0.83301 v -3.40144 q 0,-0.763588 -0.12396,-1.066049 -0.119,-0.307419 -0.44129,-0.307419 -0.32726,0 -0.52063,0.416503 -0.18842,0.416503 -0.18842,1.249509 v 3.108896 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.15473652px;line-height:1.25;font-family:'Courier New';-inkscape-font-specification:'Courier New';stroke-width:0.99999994px"
+ id="path1009" />
+ <path
+ d="m 104.32566,89.119222 q 0,0.902423 0.39667,1.413135 0.40163,0.510712 1.0958,0.510712 0.51071,0 0.8925,-0.218168 0.38676,-0.223127 0.51567,-0.604921 l 0.78343,0.223127 q -0.21817,0.614837 -0.80326,0.942089 -0.58013,0.327253 -1.38834,0.327253 -1.17018,0 -1.79989,-0.72888 -0.62971,-0.72888 -0.62971,-2.087473 0,-1.323884 0.61484,-2.032931 0.61979,-0.714005 1.78501,-0.714005 1.16521,0 1.76518,0.709047 0.59996,0.709046 0.59996,2.142015 v 0.119 z m 1.47263,-2.310599 q -0.66442,0 -1.05117,0.436337 -0.38675,0.431378 -0.41154,1.190008 h 2.89568 q -0.13883,-1.626345 -1.43297,-1.626345 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.15473652px;line-height:1.25;font-family:'Courier New';-inkscape-font-specification:'Courier New';stroke-width:0.99999994px"
+ id="path1011" />
+ <path
+ d="m 114.2771,91.062902 q 0.12892,0 0.29255,-0.03471 v 0.555337 q -0.33717,0.07933 -0.68922,0.07933 -0.49583,0 -0.72392,-0.257835 -0.22312,-0.262794 -0.25287,-0.818131 h -0.0297 q -0.3223,0.599963 -0.76359,0.862756 -0.43634,0.262794 -1.08093,0.262794 -0.78342,0 -1.18009,-0.42642 -0.39667,-0.42642 -0.39667,-1.170175 0,-1.73047 2.2511,-1.755262 l 1.17018,-0.01983 v -0.292544 q 0,-0.649546 -0.2628,-0.932173 -0.26279,-0.287585 -0.83796,-0.287585 -0.58509,0 -0.84292,0.208251 -0.25784,0.208252 -0.30742,0.644588 l -0.93218,-0.08429 q 0.22809,-1.447844 2.09739,-1.447844 0.99168,0 1.48751,0.466087 0.5008,0.461128 0.5008,1.338759 v 2.310599 q 0,0.39667 0.10412,0.599963 0.10413,0.198334 0.39667,0.198334 z m -3.01964,-0.02975 q 0.476,0 0.84292,-0.228085 0.36692,-0.228085 0.57021,-0.609879 0.2033,-0.381794 0.2033,-0.78838 v -0.441295 l -0.94209,0.01983 q -0.58509,0.0099 -0.89251,0.128917 -0.30742,0.119001 -0.48096,0.366919 -0.16859,0.24296 -0.16859,0.649546 0,0.406587 0.21817,0.654505 0.22313,0.247918 0.64955,0.247918 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.15473652px;line-height:1.25;font-family:'Courier New';-inkscape-font-specification:'Courier New';stroke-width:0.99999994px"
+ id="path1013" />
+ <path
+ d="m 119.21068,91.613281 v -3.446065 q 0,-0.674338 -0.26279,-1.00159 -0.25784,-0.327253 -0.82805,-0.327253 -0.61484,0 -1.01151,0.451212 -0.39171,0.446253 -0.39171,1.2148 v 3.108896 h -0.89251 v -4.21957 q 0,-0.937132 -0.0298,-1.145383 h 0.84293 q 0.005,0.02479 0.01,0.133876 0.005,0.109084 0.01,0.252876 0.01,0.138835 0.0198,0.530546 h 0.0149 q 0.52063,-1.016466 1.71559,-1.016466 0.8578,0 1.27926,0.466087 0.42146,0.461128 0.42146,1.423051 v 3.574983 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.15473652px;line-height:1.25;font-family:'Courier New';-inkscape-font-specification:'Courier New';stroke-width:0.99999994px"
+ id="path1015" />
+ <path
+ d="m 123.61867,88.985347 q 0,1.363551 0.42146,2.464308 0.42146,1.100758 1.37347,2.270932 h -0.94209 q -0.95201,-1.170174 -1.36851,-2.265974 -0.41155,-1.100757 -0.41155,-2.479183 0,-1.353635 0.40659,-2.439517 0.40659,-1.090841 1.37347,-2.280849 h 0.94209 q -0.95201,1.170175 -1.37347,2.275891 -0.42146,1.100757 -0.42146,2.454392 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.15473652px;line-height:1.25;font-family:'Courier New';-inkscape-font-specification:'Courier New';stroke-width:0.99999994px"
+ id="path1017" />
+ <path
+ d="m 143.65047,88.97543 q 0,1.388343 -0.41154,2.484142 -0.40659,1.090841 -1.35859,2.261015 h -0.95201 q 0.97184,-1.194966 1.38834,-2.295724 0.4165,-1.105716 0.4165,-2.439516 0,-1.328843 -0.4165,-2.429601 -0.4165,-1.105715 -1.38834,-2.300682 h 0.95201 q 0.96688,1.190008 1.36851,2.270932 0.40162,1.080924 0.40162,2.449434 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.15473652px;line-height:1.25;font-family:'Courier New';-inkscape-font-specification:'Courier New';stroke-width:0.99999994px"
+ id="path1019" />
+ </g>
+ <path
+ d="m 126.62955,92.397099 13.40642,-6.560918 h -13.40642 z"
+ style="fill:#ffca00;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.3065289;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 126.59093,92.438661 h 13.40641 v -6.560913 z"
+ style="fill:#48e5ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.3065289;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-73-1-7-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/08_concat_column.svg b/doc/source/_static/schemas/08_concat_column.svg
new file mode 100644
index 0000000000000..8c3e92a36d8ef
--- /dev/null
+++ b/doc/source/_static/schemas/08_concat_column.svg
@@ -0,0 +1,465 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="474.70731mm"
+ height="77.216072mm"
+ viewBox="0 0 474.7073 77.216072"
+ version="1.1"
+ id="svg11623"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="08_concat_column.svg">
+ <defs
+ id="defs11617">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-6-6-1-0"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0-5-1-1"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.49497475"
+ inkscape:cx="717.85316"
+ inkscape:cy="232.01409"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1875"
+ inkscape:window-height="1056"
+ inkscape:window-x="1965"
+ inkscape:window-y="0"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata11620">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(129.02778,-98.13007)">
+ <g
+ id="g4921"
+ transform="matrix(0.9,0,0,0.9,10.832587,13.673811)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-52"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -128.77175,124.2901 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-07"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -102.35576,110.574 h 24.88795 V 98.3861 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -102.35576,124.2901 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-64"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -128.77176,136.9901 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -102.35576,136.9901 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-5"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -76.95576,110.574 H -52.0678 V 98.3861 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-35"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.95576,124.2901 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-1"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.95576,136.9901 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-1"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -128.77175,149.6901 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-00"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -102.35576,149.6901 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-7"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.95576,149.6901 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-0"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -128.77175,162.3901 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-6-8"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -102.35576,162.3901 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-16"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.95576,162.3901 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-4"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -128.77175,175.0901 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-14"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -102.35576,175.0901 h 24.88795 v -12.188 h -24.88795 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-9"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -76.95576,175.0901 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-52-9"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -23.678541,124.29012 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-17-07-7"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2.737439,110.57401 h 24.88796 V 98.386112 H 2.737439 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-1-9"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2.737439,124.29012 h 24.88796 v -12.188 H 2.737439 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-64-2"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -23.678561,136.99012 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-9-8"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2.737439,136.99012 h 24.88796 v -12.188 H 2.737439 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-6-7-5-9"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 28.137449,110.57401 h 24.88796 V 98.386112 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-35-9"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 28.137449,124.29012 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-1-8"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 28.137449,136.99012 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-1-9"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -23.678541,149.69012 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-00-3"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2.737439,149.69012 h 24.88796 v -12.188 H 2.737439 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-7-6"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 28.137449,149.69012 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-6-0-3"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -23.678541,162.39012 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-6-8-6"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2.737439,162.39012 h 24.88796 v -12.188 H 2.737439 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-21-16-0"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 28.137449,162.39012 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-5-2-96-4-4"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -23.678541,175.09012 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-0-7-4-14-4"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2.737439,175.09012 h 24.88796 v -12.188 H 2.737439 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-5-2-8-9-9"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 28.137449,175.09012 h 24.88796 v -12.188 h -24.88796 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-0-8-6"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 53.537459,149.69012 h 24.88793 v -12.188 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-8-8-62-6"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 53.537449,110.57401 h 24.88794 V 98.386112 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-4-1-2-4"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 53.537459,124.29012 h 24.88793 v -12.188 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-5-0-5-1"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 53.537449,136.99012 h 24.88794 v -12.188 h -24.88794 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-2-23-9"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 53.537459,162.39012 h 24.88793 v -12.188 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-2-7-1-29-2-8"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 53.537459,175.09012 h 24.88793 v -12.188 h -24.88793 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-7-6"
+ d="m 110.92608,136.74514 h 47.88959"
+ style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-6-6-1-0)" />
+ <g
+ transform="translate(-22.985179)"
+ id="g4842">
+ <path
+ d="m 215.50479,124.2901 h 24.88794 v -12.18801 h -24.88794 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-5-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 241.92077,110.57409 h 24.88795 V 98.386094 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-47-3-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 241.92077,124.2901 h 24.88795 v -12.18801 h -24.88795 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8-1-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 215.50477,136.99009 h 24.88795 v -12.188 h -24.88795 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-6-4-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 241.92077,136.99009 h 24.88795 v -12.188 h -24.88795 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-0-20-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 267.32078,110.57409 h 24.88797 V 98.386094 h -24.88797 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-0-1-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 267.32078,124.2901 h 24.88797 v -12.18801 h -24.88797 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64-3-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 267.32078,136.99009 h 24.88797 v -12.188 h -24.88797 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-37-0-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 215.50479,149.69009 h 24.88794 V 137.5022 h -24.88794 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-5-0-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 241.92077,149.69009 h 24.88795 V 137.5022 h -24.88795 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-8-4-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 267.32078,149.69009 h 24.88797 V 137.5022 h -24.88797 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-10-8-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 292.72079,149.69009 h 24.88796 V 137.5022 h -24.88796 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-67-2-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 292.72077,110.57409 h 24.88798 V 98.386094 h -24.88798 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-0-2-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 292.72079,124.2901 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-8-0-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 292.72077,136.99009 h 24.88798 v -12.188 h -24.88798 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-19-24-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 318.1208,149.69009 h 24.88793 V 137.5022 H 318.1208 Z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-85-5-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 318.1208,110.57409 h 24.88793 V 98.386094 H 318.1208 Z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-2-5-01-8-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 318.1208,124.2901 h 24.88793 V 112.10209 H 318.1208 Z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-4-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 318.1208,136.99009 h 24.88793 v -12.188 H 318.1208 Z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-0-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 215.50479,162.3901 h 24.88794 v -12.18801 h -24.88794 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-8-8-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 241.92077,162.3901 h 24.88795 v -12.18801 h -24.88795 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8-5-2-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 215.50477,175.0901 h 24.88795 v -12.18801 h -24.88795 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-6-0-5-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 241.92077,175.0901 h 24.88795 v -12.18801 h -24.88795 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-0-2-4-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 267.32078,162.3901 h 24.88797 v -12.18801 h -24.88797 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64-2-7-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 267.32078,175.0901 h 24.88797 v -12.18801 h -24.88797 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-37-8-5-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 292.72079,162.3901 h 24.88796 v -12.18801 h -24.88796 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-8-5-5-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 292.72077,175.0901 h 24.88798 v -12.18801 h -24.88798 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-19-2-2-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 318.1208,162.3901 h 24.88793 V 150.20209 H 318.1208 Z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-7-8-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 318.1208,175.0901 h 24.88793 V 162.90209 H 318.1208 Z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-3-6-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 343.52077,149.69009 h 24.88791 V 137.5022 h -24.88791 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-85-5-8-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 343.52077,110.57409 h 24.88791 V 98.386094 h -24.88791 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-2-5-01-8-0-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 343.52077,124.2901 h 24.88791 v -12.18801 h -24.88791 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-4-4-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 343.52077,136.99009 h 24.88791 v -12.188 h -24.88791 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-0-9-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 343.52077,162.3901 h 24.88791 v -12.18801 h -24.88791 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-7-8-0-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 343.52077,175.0901 h 24.88791 v -12.18801 h -24.88791 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-3-6-9-7"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/08_concat_row.svg b/doc/source/_static/schemas/08_concat_row.svg
new file mode 100644
index 0000000000000..116afc8f89890
--- /dev/null
+++ b/doc/source/_static/schemas/08_concat_row.svg
@@ -0,0 +1,392 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="432.81134mm"
+ height="119.66626mm"
+ viewBox="0 0 432.81134 119.66626"
+ version="1.1"
+ id="svg10627"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="08_concat_row.svg">
+ <defs
+ id="defs10621">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-6-6-1"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0-5-1"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.49497475"
+ inkscape:cx="569.23237"
+ inkscape:cy="-49.001989"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1875"
+ inkscape:window-height="1056"
+ inkscape:window-x="1965"
+ inkscape:window-y="0"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata10624">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-2.8750229e-8,-63.297826)">
+ <path
+ d="M 21.896609,92.839632 H 44.292807 V 81.875669 H 21.896609 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 45.66787,80.501126 H 68.064079 V 69.537164 H 45.66787 Z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-47"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 45.66787,92.839632 H 68.064079 V 81.875669 H 45.66787 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 21.8966,104.26417 H 44.292807 V 93.300211 H 21.8966 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 45.66787,104.26417 H 68.064079 V 93.300211 H 45.66787 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 68.524862,80.501126 H 90.921078 V 69.537164 H 68.524862 Z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 68.524862,92.839632 H 90.921078 V 81.875669 H 68.524862 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 68.524862,104.26417 H 90.921078 V 93.300211 H 68.524862 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-37"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 21.896609,115.68872 H 44.292807 V 104.72484 H 21.896609 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 45.66787,115.68872 H 68.064079 V 104.72484 H 45.66787 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 68.524862,115.68872 H 90.921078 V 104.72484 H 68.524862 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-10"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 91.381863,115.68872 H 113.77807 V 104.72484 H 91.381863 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-67"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 91.381853,80.501126 H 113.77807 V 69.537164 H 91.381853 Z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 91.381863,92.839632 H 113.77807 V 81.875669 H 91.381863 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 91.381853,104.26417 H 113.77807 V 93.300211 H 91.381853 Z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-19"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 114.23885,115.68872 h 22.39618 v -10.96388 h -22.39618 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-85"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 114.23885,80.501126 h 22.39618 V 69.537164 h -22.39618 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-2-5-01"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 114.23885,92.839632 h 22.39618 V 81.875669 h -22.39618 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 114.23885,104.26417 h 22.39618 V 93.300211 h -22.39618 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-1-4-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 21.896609,165.30021 H 44.292807 V 154.33623 H 21.896609 Z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 45.66787,152.96169 H 68.064079 V 141.99773 H 45.66787 Z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-47-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 45.66787,165.30021 H 68.064079 V 154.33623 H 45.66787 Z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 21.8966,176.72475 H 44.292807 V 165.76079 H 21.8966 Z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-6-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 45.66787,176.72475 H 68.064079 V 165.76079 H 45.66787 Z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-0-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 68.524862,152.96169 H 90.921078 V 141.99773 H 68.524862 Z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-0-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 68.524862,165.30021 H 90.921078 V 154.33623 H 68.524862 Z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 68.524862,176.72475 H 90.921078 V 165.76079 H 68.524862 Z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-37-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 91.381853,152.96169 H 113.77807 V 141.99773 H 91.381853 Z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-0-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 91.381863,165.30021 H 113.77807 V 154.33623 H 91.381863 Z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-8-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 91.381853,176.72475 H 113.77807 V 165.76079 H 91.381853 Z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-19-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 114.23885,152.96169 h 22.39618 v -10.96396 h -22.39618 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-2-5-01-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 114.23885,165.30021 h 22.39618 v -10.96398 h -22.39618 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 114.23885,176.72475 h 22.39618 v -10.96396 h -22.39618 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 296.17632,111.9331 h 22.39619 v -10.96396 h -22.39619 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 319.94758,99.594594 h 22.39621 V 88.630632 h -22.39621 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-47-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 319.94758,111.9331 h 22.39621 v -10.96396 h -22.39621 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 296.17631,123.35764 h 22.3962 v -10.96396 h -22.3962 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-6-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 319.94758,123.35764 h 22.39621 v -10.96396 h -22.39621 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-0-20"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 342.80457,99.594594 h 22.39622 V 88.630632 h -22.39622 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-0-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 342.80457,111.9331 h 22.39622 v -10.96396 h -22.39622 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 342.80457,123.35764 h 22.39622 v -10.96396 h -22.39622 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-37-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 296.17632,134.78219 h 22.39619 v -10.96388 h -22.39619 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-5-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 319.94758,134.78219 h 22.39621 v -10.96388 h -22.39621 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-8-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 342.80457,134.78219 h 22.39622 v -10.96388 h -22.39622 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-10-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 365.66156,134.78219 h 22.39622 v -10.96388 h -22.39622 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-67-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 365.66156,99.594594 h 22.39622 V 88.630632 h -22.39622 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-0-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 365.66156,111.9331 h 22.39622 v -10.96396 h -22.39622 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-8-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 365.66156,123.35764 h 22.39622 v -10.96396 h -22.39622 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-19-24"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.51855,134.78219 h 22.39619 v -10.96388 h -22.39619 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-85-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.51855,99.594594 h 22.39619 V 88.630632 h -22.39619 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-2-5-01-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.51855,111.9331 h 22.39619 v -10.96396 h -22.39619 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.51855,123.35764 h 22.39619 v -10.96396 h -22.39619 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 296.17632,146.20673 h 22.39619 v -10.96396 h -22.39619 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-8-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 319.94758,146.20673 h 22.39621 v -10.96396 h -22.39621 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8-5-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 296.17631,157.63127 h 22.3962 v -10.96396 h -22.3962 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-6-0-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 319.94758,157.63127 h 22.39621 v -10.96396 h -22.39621 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-0-2-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 342.80457,146.20673 h 22.39622 v -10.96396 h -22.39622 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64-2-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 342.80457,157.63127 h 22.39622 v -10.96396 h -22.39622 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-37-8-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 365.66156,146.20673 h 22.39622 v -10.96396 h -22.39622 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-8-5-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 365.66156,157.63127 h 22.39622 v -10.96396 h -22.39622 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-19-2-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.51855,146.20673 h 22.39619 v -10.96396 h -22.39619 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-7-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.51855,157.63127 h 22.39619 v -10.96396 h -22.39619 z"
+ style="fill:#969696;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.51204854;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-3-6"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-6-6-1)"
+ d="m 194.55732,123.13725 h 43.09496"
+ id="path6109-2-9-6-9-7"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/doc/source/_static/schemas/08_merge_left.svg b/doc/source/_static/schemas/08_merge_left.svg
new file mode 100644
index 0000000000000..d06fcf2319a09
--- /dev/null
+++ b/doc/source/_static/schemas/08_merge_left.svg
@@ -0,0 +1,608 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="647.59534mm"
+ height="86.101425mm"
+ viewBox="0 0 647.59534 86.101425"
+ version="1.1"
+ id="svg12741"
+ inkscape:version="0.92.4 (f8dce91, 2019-08-02)"
+ sodipodi:docname="08_merge_left.svg">
+ <defs
+ id="defs12735">
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-6-6-1-0-4-1"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0-5-1-1-3-0"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend-7-6-9-4-6-6-1-0-4"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path7253-1-4-3-6-0-5-1-1-3"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.3946822"
+ inkscape:cx="1172.6503"
+ inkscape:cy="52.059868"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1551"
+ inkscape:window-height="849"
+ inkscape:window-x="49"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ showguides="true"
+ inkscape:guide-bbox="true" />
+ <metadata
+ id="metadata12738">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(213.15146,-94.034376)">
+ <g
+ id="g3627"
+ transform="matrix(0.89992087,0,0,0.89940174,11.073374,13.790523)"
+ style="stroke-width:1.11152947">
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-7-6-0"
+ d="M -5.9124488,126.29946 H 41.977141"
+ style="fill:none;stroke:#000000;stroke-width:0.44461179;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-6-6-1-0-4)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6109-2-9-6-9-7-6-0-8"
+ d="m 241.87403,126.29946 h 47.88959"
+ style="fill:none;stroke:#000000;stroke-width:0.44461179;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-6-9-4-6-6-1-0-4-1)" />
+ <g
+ transform="translate(12.798637,-6.3500197)"
+ id="g2802"
+ style="stroke-width:1.11152947">
+ <path
+ d="m -173.87807,112.82842 h 24.88797 v -12.188 h -24.88797 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-6-4-51"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -173.87807,126.54442 h 24.88797 v -12.188 h -24.88797 z"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-6-9-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -173.87807,139.24442 h 24.88797 v -12.188 h -24.88797 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-39-9-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -173.87807,151.94442 h 24.88797 v -12.188 h -24.88797 z"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-1-4-91"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -225.69406,126.54432 h 24.88795 v -12.1879 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-57-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -199.27807,112.82832 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-6-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -199.27807,126.54432 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-69-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -225.69407,139.24432 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-14-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -199.27807,139.24432 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-3-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -225.69406,151.94432 h 24.88795 v -12.1879 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-0-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -199.27807,151.94432 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-9-9"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0854314,0.92129267)"
+ id="text56748-3"
+ y="117.81081"
+ x="-156.77634"
+ style="font-style:normal;font-weight:normal;font-size:14.32942963px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.56161964"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.81944466px;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';fill:#ffffff;stroke-width:0.56161964"
+ y="117.81081"
+ x="-156.77634"
+ id="tspan56746-6"
+ sodipodi:role="line">key</tspan></text>
+ </g>
+ <g
+ id="g2825"
+ style="stroke-width:1.11152947">
+ <path
+ d="m -124.26805,120.19444 h 24.887959 v -12.1879 h -24.887959 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-57-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -97.852061,106.47844 h 24.88797 V 94.290537 h -24.88797 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-6-61"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -97.852061,120.19444 h 24.88797 v -12.1879 h -24.88797 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-69-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -124.26806,132.89444 h 24.887969 v -12.1879 h -24.887969 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-14-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -97.852061,132.89444 h 24.88797 v -12.1879 h -24.88797 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-3-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -72.452051,106.47844 h 24.88796 V 94.290537 h -24.88796 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-67-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -72.452051,120.19444 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-69-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -72.452051,132.89444 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-76-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -124.26805,145.59444 h 24.887959 v -12.1879 h -24.887959 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-0-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -97.852061,145.59444 h 24.88797 v -12.1879 h -24.88797 z"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-9-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -72.452051,145.59444 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#fc6cc0;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-07-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -47.052031,145.59444 h 24.88793 v -12.1879 h -24.88793 z"
+ style="fill:#fc6cc0;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-65-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -47.052051,106.47844 h 24.88795 V 94.290537 h -24.88795 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-37-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -47.052031,120.19444 h 24.88793 v -12.1879 h -24.88793 z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-69-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -47.052051,132.89444 h 24.88795 v -12.1879 h -24.88795 z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-7-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -124.26803,158.2943 h 24.88795 v -12.1879 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-0-6-24"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -97.85204,158.2943 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-9-7-02"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -72.45204,158.2943 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-07-5-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -47.05202,158.2943 h 24.88794 v -12.1879 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-65-5-2"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0854314,0.92129267)"
+ id="text56748-3-5"
+ y="110.9184"
+ x="-86.734131"
+ style="font-style:normal;font-weight:normal;font-size:14.32942963px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.56161964"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.81944466px;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';fill:#ffffff;stroke-width:0.56161964"
+ y="110.9184"
+ x="-86.734131"
+ id="tspan56746-6-3"
+ sodipodi:role="line">key</tspan></text>
+ </g>
+ <g
+ transform="translate(-45.506234)"
+ id="g3141"
+ style="stroke-width:1.11152947">
+ <path
+ d="m 352.19017,120.1944 h 24.88794 v -12.188 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-5-9-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 378.60616,106.4784 h 24.88795 v -12.188 h -24.88795 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-47-3-7-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 378.60616,120.1944 h 24.88795 v -12.188 h -24.88795 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8-1-7-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 352.19016,132.8944 h 24.88795 v -12.188 h -24.88795 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-1-6-4-6-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 378.60616,132.8944 h 24.88795 v -12.188 h -24.88795 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-0-20-8-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 404.00616,106.4784 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-0-1-1-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 404.00616,120.1944 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64-3-2-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 404.00616,132.8944 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-37-0-0-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 352.19017,145.5944 h 24.88794 v -12.1879 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-0-5-0-3-2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 378.60616,145.5944 h 24.88795 v -12.1879 h -24.88795 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-8-4-2-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 404.00616,145.5944 h 24.88796 v -12.1879 h -24.88796 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-10-8-8-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 429.40617,145.5944 h 24.88795 v -12.1879 h -24.88795 z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-67-2-7-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 429.40616,106.4784 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-0-2-4-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 429.40617,120.1944 h 24.88795 v -12.188 h -24.88795 z"
+ style="fill:#fc6cc0;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-8-0-6-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 429.40616,132.8944 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-19-24-3-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 454.80617,145.5944 h 24.88792 v -12.1879 h -24.88792 z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-4-7-85-5-8-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 454.80617,106.4784 h 24.88792 v -12.188 h -24.88792 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-2-5-01-8-0-8"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 454.80617,120.1944 h 24.88792 v -12.188 h -24.88792 z"
+ style="fill:#fc6cc0;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-4-4-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 454.80617,132.8944 h 24.88792 v -12.188 h -24.88792 z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-1-4-7-0-9-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 352.19017,158.2944 h 24.88794 v -12.188 h -24.88794 z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-74-5-8-8-7-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 378.60616,158.2944 h 24.88795 v -12.188 h -24.88795 z"
+ style="fill:#adabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-8-5-2-9-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 404.00616,158.2944 h 24.88796 v -12.188 h -24.88796 z"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-64-2-7-1-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 429.40617,158.2944 h 24.88795 v -12.188 h -24.88795 z"
+ style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-8-5-5-7-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 454.80617,158.2944 h 24.88792 v -12.188 h -24.88792 z"
+ style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-2-6-59-7-8-0-9"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0854314,0.92129267)"
+ id="text56748-3-5-1"
+ y="110.9183"
+ x="375.62418"
+ style="font-style:normal;font-weight:normal;font-size:14.32942963px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.56161964"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.81944466px;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';fill:#ffffff;stroke-width:0.56161964"
+ y="110.9183"
+ x="375.62418"
+ id="tspan56746-6-3-2"
+ sodipodi:role="line">key</tspan></text>
+ </g>
+ <g
+ transform="translate(2.7116079)"
+ id="g3229"
+ style="stroke-width:1.11152947">
+ <path
+ d="m 108.00186,106.47854 h 24.88797 V 94.290537 h -24.88797 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-6-4-51-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 82.601856,106.47844 H 107.48982 V 94.290537 H 82.601856 Z"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-6-6-2"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0854314,0.92129267)"
+ id="text56748-3-5-5"
+ y="110.91845"
+ x="102.91758"
+ style="font-style:normal;font-weight:normal;font-size:14.32942963px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.56161964"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.81944466px;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';fill:#ffffff;stroke-width:0.56161964"
+ y="110.91845"
+ x="102.91758"
+ id="tspan56746-6-3-6"
+ sodipodi:role="line">key</tspan></text>
+ <g
+ id="g3193"
+ transform="translate(-8.5324243)"
+ style="stroke-width:1.11152947">
+ <g
+ transform="translate(-27.019344,-1.530803)"
+ id="g2722"
+ style="stroke-width:1.11152947">
+ <path
+ d="m 182.77459,132.3093 h 24.88797 v -12.1879 h -24.88797 z"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-8-9-7-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 208.1746,132.3093 h 24.88796 V 120.1214 H 208.1746 Z"
+ style="fill:#fc6cc0;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-7-8-51-07-5-0"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 233.57462,132.3093 h 24.88793 v -12.1879 h -24.88793 z"
+ style="fill:#fc6cc0;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-8-2-0-65-5-8"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(-27.019344,-0.0159648)"
+ id="g2730"
+ style="stroke-width:1.11152947">
+ <path
+ d="m 182.77459,148.9951 h 24.88797 v -12.1879 h -24.88797 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-1-69-5-6"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 182.77459,161.6951 h 24.88797 v -12.1879 h -24.88797 z"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-1-3-4-3"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 208.1746,148.9951 h 24.88796 V 136.8072 H 208.1746 Z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-5-0-69-6-1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 208.1746,161.6951 h 24.88796 V 149.5072 H 208.1746 Z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-2-3-4-76-9-7"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 233.57462,148.9951 h 24.88793 v -12.1879 h -24.88793 z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-1-9-4-1-69-8-9"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 233.5746,161.6951 h 24.88795 V 149.5072 H 233.5746 Z"
+ style="fill:#e70488;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-5-5-0-7-5-0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(-27.019344,3.400837)"
+ id="g2752"
+ style="stroke-width:1.11152947">
+ <path
+ d="m 182.77459,103.0776 h 24.88797 V 90.8897 h -24.88797 z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-17-6-61-5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 208.1746,103.0776 h 24.88796 V 90.8897 H 208.1746 Z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-6-7-67-6-4"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 233.5746,103.0776 h 24.88795 V 90.8897 H 233.5746 Z"
+ style="fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4891-1-50-8-2-7-8-8-37-3-2"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0854314,0.92129267)"
+ id="text56748-3-5-2"
+ y="107.22701"
+ x="171.80515"
+ style="font-style:normal;font-weight:normal;font-size:14.32942963px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.56161964"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.81944466px;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch';fill:#ffffff;stroke-width:0.56161964"
+ y="107.22701"
+ x="171.80515"
+ id="tspan56746-6-3-9"
+ sodipodi:role="line">key</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g2745"
+ transform="translate(-27.019344,3.400837)"
+ style="stroke-width:1.11152947">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-5-0-6-9-6-7"
+ style="fill:#8b6ff9;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.0212,127.37776 h 24.88797 v -12.188 H 135.0212 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-74-57-1-3"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.205209,127.37766 h 24.887951 v -12.1879 H 83.205209 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-1-69-0-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.6212,127.37766 h 24.88796 v -12.1879 H 109.6212 Z" />
+ </g>
+ <g
+ id="g2740"
+ transform="translate(-27.019339,2.9268152)"
+ style="stroke-width:1.11152947">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-3-4-39-9-0-0"
+ style="fill:#150458;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.0212,152.40237 h 24.88797 v -12.188 H 135.0212 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-2-1-14-9-0"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.205199,152.40227 h 24.887961 v -12.1879 H 83.205199 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-7-5-1-3-1-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.6212,152.40227 h 24.88796 v -12.1879 H 109.6212 Z" />
+ </g>
+ <g
+ id="g2735"
+ transform="translate(-27.019344,-0.865376)"
+ style="stroke-width:1.11152947">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-8-51-1-4-91-9"
+ style="fill:#2808ac;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 135.0212,180.74515 h 24.88797 v -12.188 H 135.0212 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-7-0-0-0-2"
+ style="fill:#afabab;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 83.205209,180.74505 h 24.887951 v -12.1879 H 83.205209 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4891-1-50-8-2-1-9-8-8-9-9-6"
+ style="fill:#afabab;fill-opacity:0.39215686;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.56915706;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 109.6212,180.74505 h 24.88796 v -12.1879 H 109.6212 Z" />
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/doc/source/conf.py b/doc/source/conf.py
index f126ad99cc463..6891f7d82d6c1 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -231,6 +231,7 @@
html_static_path = ["_static"]
html_css_files = [
+ "css/getting_started.css",
"css/pandas.css",
]
diff --git a/doc/source/getting_started/dsintro.rst b/doc/source/getting_started/dsintro.rst
index 8bd271815549d..93e60ff9d239c 100644
--- a/doc/source/getting_started/dsintro.rst
+++ b/doc/source/getting_started/dsintro.rst
@@ -444,6 +444,7 @@ dtype. For example:
data
pd.DataFrame.from_records(data, index='C')
+.. _basics.dataframe.sel_add_del:
Column selection, addition, deletion
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/doc/source/getting_started/index.rst b/doc/source/getting_started/index.rst
index 34bb4f930f175..a2f8f79f22ae4 100644
--- a/doc/source/getting_started/index.rst
+++ b/doc/source/getting_started/index.rst
@@ -6,15 +6,666 @@
Getting started
===============
+Installation
+------------
+
+Before you can use pandas, you’ll need to get it installed.
+
+.. raw:: html
+
+ <div class="container">
+ <div class="row">
+ <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 d-flex install-block">
+ <div class="card install-card shadow w-100">
+ <div class="card-header">
+ Working with conda?
+ </div>
+ <div class="card-body">
+ <p class="card-text">
+
+Pandas is part of the `Anaconda <http://docs.continuum.io/anaconda/>`__ distribution and can be
+installed with Anaconda or Miniconda:
+
+.. raw:: html
+
+ </p>
+ </div>
+ <div class="card-footer text-muted">
+
+.. code-block:: bash
+
+ conda install pandas
+
+.. raw:: html
+
+ </div>
+ </div>
+ </div>
+ <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 d-flex install-block">
+ <div class="card install-card shadow w-100">
+ <div class="card-header">
+ Prefer pip?
+ </div>
+ <div class="card-body">
+ <p class="card-text">
+
+Pandas can be installed via pip from `PyPI <https://pypi.org/project/pandas>`__.
+
+.. raw:: html
+
+ </p>
+ </div>
+ <div class="card-footer text-muted">
+
+.. code-block:: bash
+
+ pip install pandas
+
+.. raw:: html
+
+ </div>
+ </div>
+ </div>
+ <div class="col-12 d-flex install-block">
+ <div class="card install-card shadow w-100">
+ <div class="card-header">
+ In-depth instructions?
+ </div>
+ <div class="card-body">
+ <p class="card-text">Installing a specific version?
+ Installing from source?
+ Check the advanced installation page.</p>
+
+.. container:: custom-button
+
+ :ref:`Learn more <install>`
+
+.. raw:: html
+
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+.. _gentle_intro:
+
+Intro to pandas
+---------------
+
+.. raw:: html
+
+ <div class="container">
+ <div id="accordion" class="shadow tutorial-accordion">
+
+ <div class="card tutorial-card">
+ <div class="card-header collapsed card-link" data-toggle="collapse" data-target="#collapseOne">
+ <div class="d-flex flex-row tutorial-card-header-1">
+ <div class="d-flex flex-row tutorial-card-header-2">
+ <button class="btn btn-dark btn-sm"></button>
+ What kind of data does Pandas handle?
+ </div>
+ <span class="badge gs-badge-link">
+
+:ref:`Straight to tutorial...<10min_tut_01_tableoriented>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ <div id="collapseOne" class="collapse" data-parent="#accordion">
+ <div class="card-body">
+
+When working with tabular data, such as data stored in spreadsheets or databases, Pandas is the right tool for you. Pandas will help you
+to explore, clean and process your data. In Pandas, a data table is called a :class:`DataFrame`.
+
+.. image:: ../_static/schemas/01_table_dataframe.svg
+ :align: center
+
+.. raw:: html
+
+ <div class="d-flex flex-row">
+ <span class="badge gs-badge-link">
+
+:ref:`To introduction tutorial <10min_tut_01_tableoriented>`
+
+.. raw:: html
+
+ </span>
+ <span class="badge gs-badge-link">
+
+:ref:`To user guide <dsintro>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="card tutorial-card">
+ <div class="card-header collapsed card-link" data-toggle="collapse" data-target="#collapseTwo">
+ <div class="d-flex flex-row tutorial-card-header-1">
+ <div class="d-flex flex-row tutorial-card-header-2">
+ <button class="btn btn-dark btn-sm"></button>
+ How do I read and write tabular data?
+ </div>
+ <span class="badge gs-badge-link">
+
+:ref:`Straight to tutorial...<10min_tut_02_read_write>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ <div id="collapseTwo" class="collapse" data-parent="#accordion">
+ <div class="card-body">
+
+Pandas supports the integration with many file formats or data sources out of the box (csv, excel, sql, json, parquet,…). Importing data from each of these
+data sources is provided by function with the prefix ``read_*``. Similarly, the ``to_*`` methods are used to store data.
+
+.. image:: ../_static/schemas/02_io_readwrite.svg
+ :align: center
+
+.. raw:: html
+
+ <div class="d-flex flex-row">
+ <span class="badge gs-badge-link">
+
+:ref:`To introduction tutorial <10min_tut_02_read_write>`
+
+.. raw:: html
+
+ </span>
+ <span class="badge gs-badge-link">
+
+:ref:`To user guide <io>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="card tutorial-card">
+ <div class="card-header collapsed card-link" data-toggle="collapse" data-target="#collapseThree">
+ <div class="d-flex flex-row tutorial-card-header-1">
+ <div class="d-flex flex-row tutorial-card-header-2">
+ <button class="btn btn-dark btn-sm"></button>
+ How do I select a subset of a table?
+ </div>
+ <span class="badge gs-badge-link">
+
+:ref:`Straight to tutorial...<10min_tut_03_subset>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ <div id="collapseThree" class="collapse" data-parent="#accordion">
+ <div class="card-body">
+
+Selecting or filtering specific rows and/or columns? Filtering the data on a condition? Methods for slicing, selecting, and extracting the
+data you need are available in Pandas.
+
+.. image:: ../_static/schemas/03_subset_columns_rows.svg
+ :align: center
+
+.. raw:: html
+
+ <div class="d-flex flex-row">
+ <span class="badge gs-badge-link">
+
+:ref:`To introduction tutorial <10min_tut_03_subset>`
+
+.. raw:: html
+
+ </span>
+ <span class="badge gs-badge-link">
+
+:ref:`To user guide <indexing>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="card tutorial-card">
+ <div class="card-header collapsed card-link" data-toggle="collapse" data-target="#collapseFour">
+ <div class="d-flex flex-row tutorial-card-header-1">
+ <div class="d-flex flex-row tutorial-card-header-2">
+ <button class="btn btn-dark btn-sm"></button>
+ How to create plots in pandas?
+ </div>
+ <span class="badge gs-badge-link">
+
+:ref:`Straight to tutorial...<10min_tut_04_plotting>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ <div id="collapseFour" class="collapse" data-parent="#accordion">
+ <div class="card-body">
+
+Pandas provides plotting your data out of the box, using the power of Matplotlib. You can pick the plot type (scatter, bar, boxplot,...)
+corresponding to your data.
+
+.. image:: ../_static/schemas/04_plot_overview.svg
+ :align: center
+
+.. raw:: html
+
+ <div class="d-flex flex-row">
+ <span class="badge gs-badge-link">
+
+:ref:`To introduction tutorial <10min_tut_04_plotting>`
+
+.. raw:: html
+
+ </span>
+ <span class="badge gs-badge-link">
+
+:ref:`To user guide <visualization>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="card tutorial-card">
+ <div class="card-header collapsed card-link" data-toggle="collapse" data-target="#collapseFive">
+ <div class="d-flex flex-row tutorial-card-header-1">
+ <div class="d-flex flex-row tutorial-card-header-2">
+ <button class="btn btn-dark btn-sm"></button>
+ How to create new columns derived from existing columns?
+ </div>
+ <span class="badge gs-badge-link">
+
+:ref:`Straight to tutorial...<10min_tut_05_columns>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ <div id="collapseFive" class="collapse" data-parent="#accordion">
+ <div class="card-body">
+
+There is no need to loop over all rows of your data table to do calculations. Data manipulations on a column work elementwise.
+Adding a column to a :class:`DataFrame` based on existing data in other columns is straightforward.
+
+.. image:: ../_static/schemas/05_newcolumn_2.svg
+ :align: center
+
+.. raw:: html
+
+ <div class="d-flex flex-row">
+ <span class="badge gs-badge-link">
+
+:ref:`To introduction tutorial <10min_tut_05_columns>`
+
+.. raw:: html
+
+ </span>
+ <span class="badge gs-badge-link">
+
+:ref:`To user guide <basics.dataframe.sel_add_del>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="card tutorial-card">
+ <div class="card-header collapsed card-link" data-toggle="collapse" data-target="#collapseSix">
+ <div class="d-flex flex-row tutorial-card-header-1">
+ <div class="d-flex flex-row tutorial-card-header-2">
+ <button class="btn btn-dark btn-sm"></button>
+ How to calculate summary statistics?
+ </div>
+ <span class="badge gs-badge-link">
+
+:ref:`Straight to tutorial...<10min_tut_06_stats>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ <div id="collapseSix" class="collapse" data-parent="#accordion">
+ <div class="card-body">
+
+Basic statistics (mean, median, min, max, counts...) are easily calculable. These or custom aggregations can be applied on the entire
+data set, a sliding window of the data or grouped by categories. The latter is also known as the split-apply-combine approach.
+
+.. image:: ../_static/schemas/06_groupby.svg
+ :align: center
+
+.. raw:: html
+
+ <div class="d-flex flex-row">
+ <span class="badge gs-badge-link">
+
+:ref:`To introduction tutorial <10min_tut_06_stats>`
+
+.. raw:: html
+
+ </span>
+ <span class="badge gs-badge-link">
+
+:ref:`To user guide <groupby>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="card tutorial-card">
+ <div class="card-header collapsed card-link" data-toggle="collapse" data-target="#collapseSeven">
+ <div class="d-flex flex-row tutorial-card-header-1">
+ <div class="d-flex flex-row tutorial-card-header-2">
+ <button class="btn btn-dark btn-sm"></button>
+ How to reshape the layout of tables?
+ </div>
+ <span class="badge gs-badge-link">
+
+:ref:`Straight to tutorial...<10min_tut_07_reshape>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ <div id="collapseSeven" class="collapse" data-parent="#accordion">
+ <div class="card-body">
+
+Change the structure of your data table in multiple ways. You can :func:`~pandas.melt` your data table from wide to long/tidy form or :func:`~pandas.pivot`
+from long to wide format. With aggregations built-in, a pivot table is created with a sinlge command.
+
+.. image:: ../_static/schemas/07_melt.svg
+ :align: center
+
+.. raw:: html
+
+ <div class="d-flex flex-row">
+ <span class="badge gs-badge-link">
+
+:ref:`To introduction tutorial <10min_tut_07_reshape>`
+
+.. raw:: html
+
+ </span>
+ <span class="badge gs-badge-link">
+
+:ref:`To user guide <reshaping>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="card tutorial-card">
+ <div class="card-header collapsed card-link" data-toggle="collapse" data-target="#collapseEight">
+ <div class="d-flex flex-row tutorial-card-header-1">
+ <div class="d-flex flex-row tutorial-card-header-2">
+ <button class="btn btn-dark btn-sm"></button>
+ How to combine data from multiple tables?
+ </div>
+ <span class="badge gs-badge-link">
+
+:ref:`Straight to tutorial...<10min_tut_08_combine>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ <div id="collapseEight" class="collapse" data-parent="#accordion">
+ <div class="card-body">
+
+Multiple tables can be concatenated both column wise as row wise and database-like join/merge operations are provided to combine multiple tables of data.
+
+.. image:: ../_static/schemas/08_concat_row.svg
+ :align: center
+
+.. raw:: html
+
+ <div class="d-flex flex-row">
+ <span class="badge gs-badge-link">
+
+:ref:`To introduction tutorial <10min_tut_08_combine>`
+
+.. raw:: html
+
+ </span>
+ <span class="badge gs-badge-link">
+
+:ref:`To user guide <merging>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="card tutorial-card">
+ <div class="card-header collapsed card-link" data-toggle="collapse" data-target="#collapseNine">
+ <div class="d-flex flex-row tutorial-card-header-1">
+ <div class="d-flex flex-row tutorial-card-header-2">
+ <button class="btn btn-dark btn-sm"></button>
+ How to handle time series data?
+ </div>
+ <span class="badge gs-badge-link">
+
+:ref:`Straight to tutorial...<10min_tut_09_timeseries>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ <div id="collapseNine" class="collapse" data-parent="#accordion">
+ <div class="card-body">
+
+Pandas has great support for time series and has an extensive set of tools for working with dates, times, and time-indexed data.
+
+.. raw:: html
+
+ <div class="d-flex flex-row">
+ <span class="badge gs-badge-link">
+
+:ref:`To introduction tutorial <10min_tut_09_timeseries>`
+
+.. raw:: html
+
+ </span>
+ <span class="badge gs-badge-link">
+
+:ref:`To user guide <timeseries>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <div class="card tutorial-card">
+ <div class="card-header collapsed card-link" data-toggle="collapse" data-target="#collapseTen">
+ <div class="d-flex flex-row tutorial-card-header-1">
+ <div class="d-flex flex-row tutorial-card-header-2">
+ <button class="btn btn-dark btn-sm"></button>
+ How to manipulate textual data?
+ </div>
+ <span class="badge gs-badge-link">
+
+:ref:`Straight to tutorial...<10min_tut_10_text>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ <div id="collapseTen" class="collapse" data-parent="#accordion">
+ <div class="card-body">
+
+Data sets do not only contain numerical data. Pandas provides a wide range of functions to cleaning textual data and extract useful information from it.
+
+.. raw:: html
+
+ <div class="d-flex flex-row">
+ <span class="badge gs-badge-link">
+
+:ref:`To introduction tutorial <10min_tut_10_text>`
+
+.. raw:: html
+
+ </span>
+ <span class="badge gs-badge-link">
+
+:ref:`To user guide <timeseries>`
+
+.. raw:: html
+
+ </span>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </div>
+ </div>
+
+
+.. _comingfrom:
+
+Coming from...
+--------------
+
+Currently working with other software for data manipulation in a tabular format? You're probably familiar to typical
+data operations and know *what* to do with your tabular data, but lacking the syntax to execute these operations. Get to know
+the pandas syntax by looking for equivalents from the software you already know:
+
+.. raw:: html
+
+ <div class="container">
+ <div class="row">
+ <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
+ <div class="card text-center intro-card shadow">
+ <img src="../_static/logo_r.svg" class="card-img-top" alt="R project logo" height="72">
+ <div class="card-body flex-fill">
+ <p class="card-text">The <a href="https://www.r-project.org/">R programming language</a> provides the <code>data.frame</code> data structure and multiple packages,
+ such as <a href="https://www.tidyverse.org/">tidyverse</a> use and extend <code>data.frame</code>s for convenient data handling
+ functionalities similar to pandas.</p>
+
+.. container:: custom-button
+
+ :ref:`Learn more <compare_with_r>`
+
+.. raw:: html
+
+ </div>
+ </div>
+ </div>
+ <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
+ <div class="card text-center intro-card shadow">
+ <img src="../_static/logo_sql.svg" class="card-img-top" alt="SQL logo" height="72">
+ <div class="card-body flex-fill">
+ <p class="card-text">Already familiar to <code>SELECT</code>, <code>GROUP BY</code>, <code>JOIN</code>,...?
+ Most of these SQL manipulations do have equivalents in pandas.</p>
+
+.. container:: custom-button
+
+ :ref:`Learn more <compare_with_sql>`
+
+.. raw:: html
+
+ </div>
+ </div>
+ </div>
+ <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
+ <div class="card text-center intro-card shadow">
+ <img src="../_static/logo_stata.svg" class="card-img-top" alt="STATA logo" height="52">
+ <div class="card-body flex-fill">
+ <p class="card-text">The <code>data set</code> included in the
+ <a href="https://en.wikipedia.org/wiki/Stata">STATA</a> statistical software suite corresponds
+ to the pandas <code>data.frame</code>. Many of the operations known from STATA have an equivalent
+ in pandas.</p>
+
+.. container:: custom-button
+
+ :ref:`Learn more <compare_with_stata>`
+
+.. raw:: html
+
+ </div>
+ </div>
+ </div>
+ <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
+ <div class="card text-center intro-card shadow">
+ <img src="../_static/logo_sas.svg" class="card-img-top" alt="SAS logo" height="52">
+ <div class="card-body flex-fill">
+ <p class="card-text">The <a href="https://en.wikipedia.org/wiki/SAS_(software)">SAS</a> statistical software suite
+ also provides the <code>data set</code> corresponding to the pandas <code>data.frame</code>.
+ Also vectorized operations, filtering, string processing operations,... from SAS have similar
+ functions in pandas.</p>
+
+.. container:: custom-button
+
+ :ref:`Learn more <compare_with_sas>`
+
+.. raw:: html
+
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+Community tutorials
+-------------------
+
+The community produces a wide variety of tutorials available online. Some of the
+material is enlisted in the community contributed :ref:`tutorials`.
+
+
.. If you update this toctree, also update the manual toctree in the
main index.rst.template
.. toctree::
:maxdepth: 2
+ :hidden:
install
overview
10min
+ intro_tutorials/index
basics
dsintro
comparison/index
diff --git a/doc/source/getting_started/intro_tutorials/01_table_oriented.rst b/doc/source/getting_started/intro_tutorials/01_table_oriented.rst
new file mode 100644
index 0000000000000..02e59b3c81755
--- /dev/null
+++ b/doc/source/getting_started/intro_tutorials/01_table_oriented.rst
@@ -0,0 +1,218 @@
+.. _10min_tut_01_tableoriented:
+
+{{ header }}
+
+What kind of data does pandas handle?
+=====================================
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to start using pandas
+
+.. ipython:: python
+
+ import pandas as pd
+
+To load the pandas package and start working with it, import the
+package. The community agreed alias for pandas is ``pd``, so loading
+pandas as ``pd`` is assumed standard practice for all of the pandas
+documentation.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Pandas data table representation
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. image:: ../../_static/schemas/01_table_dataframe.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to store passenger data of the Titanic. For a number of passengers, I know the name (characters), age (integers) and sex (male/female) data.
+
+.. ipython:: python
+
+ df = pd.DataFrame({
+ "Name": ["Braund, Mr. Owen Harris",
+ "Allen, Mr. William Henry",
+ "Bonnell, Miss. Elizabeth"],
+ "Age": [22, 35, 58],
+ "Sex": ["male", "male", "female"]}
+ )
+ df
+
+To manually store data in a table, create a ``DataFrame``. When using a Python dictionary of lists, the dictionary keys will be used as column headers and
+the values in each list as rows of the ``DataFrame``.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+A :class:`DataFrame` is a 2-dimensional data structure that can store data of
+different types (including characters, integers, floating point values,
+categorical data and more) in columns. It is similar to a spreadsheet, a
+SQL table or the ``data.frame`` in R.
+
+- The table has 3 columns, each of them with a column label. The column
+ labels are respectively ``Name``, ``Age`` and ``Sex``.
+- The column ``Name`` consists of textual data with each value a
+ string, the column ``Age`` are numbers and the column ``Sex`` is
+ textual data.
+
+In spreadsheet software, the table representation of our data would look
+very similar:
+
+.. image:: ../../_static/schemas/01_table_spreadsheet.png
+ :align: center
+
+Each column in a ``DataFrame`` is a ``Series``
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. image:: ../../_static/schemas/01_table_series.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I’m just interested in working with the data in the column ``Age``
+
+.. ipython:: python
+
+ df["Age"]
+
+When selecting a single column of a pandas :class:`DataFrame`, the result is
+a pandas :class:`Series`. To select the column, use the column label in
+between square brackets ``[]``.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. note::
+ If you are familiar to Python
+ :ref:`dictionaries <python:tut-dictionaries>`, the selection of a
+ single column is very similar to selection of dictionary values based on
+ the key.
+
+You can create a ``Series`` from scratch as well:
+
+.. ipython:: python
+
+ ages = pd.Series([22, 35, 58], name="Age")
+ ages
+
+A pandas ``Series`` has no column labels, as it is just a single column
+of a ``DataFrame``. A Series does have row labels.
+
+Do something with a DataFrame or Series
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to know the maximum Age of the passengers
+
+We can do this on the ``DataFrame`` by selecting the ``Age`` column and
+applying ``max()``:
+
+.. ipython:: python
+
+ df["Age"].max()
+
+Or to the ``Series``:
+
+.. ipython:: python
+
+ ages.max()
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+As illustrated by the ``max()`` method, you can *do* things with a
+``DataFrame`` or ``Series``. pandas provides a lot of functionalities,
+each of them a *method* you can apply to a ``DataFrame`` or ``Series``.
+As methods are functions, do not forget to use parentheses ``()``.
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I’m interested in some basic statistics of the numerical data of my data table
+
+.. ipython:: python
+
+ df.describe()
+
+The :func:`~DataFrame.describe` method provides a quick overview of the numerical data in
+a ``DataFrame``. As the ``Name`` and ``Sex`` columns are textual data,
+these are by default not taken into account by the :func:`~DataFrame.describe` method.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Many pandas operations return a ``DataFrame`` or a ``Series``. The
+:func:`~DataFrame.describe` method is an example of a pandas operation returning a
+pandas ``Series``.
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+Check more options on ``describe`` in the user guide section about :ref:`aggregations with describe <basics.describe>`
+
+.. raw:: html
+
+ </div>
+
+.. note::
+ This is just a starting point. Similar to spreadsheet
+ software, pandas represents data as a table with columns and rows. Apart
+ from the representation, also the data manipulations and calculations
+ you would do in spreadsheet software are supported by pandas. Continue
+ reading the next tutorials to get started!
+
+.. raw:: html
+
+ <div class="shadow gs-callout gs-callout-remember">
+ <h4>REMEMBER</h4>
+
+- Import the package, aka ``import pandas as pd``
+- A table of data is stored as a pandas ``DataFrame``
+- Each column in a ``DataFrame`` is a ``Series``
+- You can do things by applying a method to a ``DataFrame`` or ``Series``
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+A more extended explanation to ``DataFrame`` and ``Series`` is provided in the :ref:`introduction to data structures <dsintro>`.
+
+.. raw:: html
+
+ </div>
\ No newline at end of file
diff --git a/doc/source/getting_started/intro_tutorials/02_read_write.rst b/doc/source/getting_started/intro_tutorials/02_read_write.rst
new file mode 100644
index 0000000000000..797bdbcf25d17
--- /dev/null
+++ b/doc/source/getting_started/intro_tutorials/02_read_write.rst
@@ -0,0 +1,232 @@
+.. _10min_tut_02_read_write:
+
+{{ header }}
+
+.. ipython:: python
+
+ import pandas as pd
+
+.. raw:: html
+
+ <div class="card gs-data">
+ <div class="card-header">
+ <div class="gs-data-title">
+ Data used for this tutorial:
+ </div>
+ </div>
+ <ul class="list-group list-group-flush">
+ <li class="list-group-item">
+ <div data-toggle="collapse" href="#collapsedata" role="button" aria-expanded="false" aria-controls="collapsedata">
+ <span class="badge badge-dark">Titanic data</span>
+ </div>
+ <div class="collapse" id="collapsedata">
+ <div class="card-body">
+ <p class="card-text">
+
+This tutorial uses the titanic data set, stored as CSV. The data
+consists of the following data columns:
+
+- PassengerId: Id of every passenger.
+- Survived: This feature have value 0 and 1. 0 for not survived and 1
+ for survived.
+- Pclass: There are 3 classes: Class 1, Class 2 and Class 3.
+- Name: Name of passenger.
+- Sex: Gender of passenger.
+- Age: Age of passenger.
+- SibSp: Indication that passenger have siblings and spouse.
+- Parch: Whether a passenger is alone or have family.
+- Ticket: Ticket number of passenger.
+- Fare: Indicating the fare.
+- Cabin: The cabin of passenger.
+- Embarked: The embarked category.
+
+.. raw:: html
+
+ </p>
+ <a href="https://github.com/pandas-dev/pandas/tree/master/doc/data/titanic.csv" class="btn btn-dark btn-sm">To raw data</a>
+ </div>
+ </div>
+ </li>
+ </ul>
+ </div>
+
+How do I read and write tabular data?
+=====================================
+
+.. image:: ../../_static/schemas/02_io_readwrite.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to analyse the titanic passenger data, available as a CSV file.
+
+.. ipython:: python
+
+ titanic = pd.read_csv("data/titanic.csv")
+
+pandas provides the :func:`read_csv` function to read data stored as a csv
+file into a pandas ``DataFrame``. pandas supports many different file
+formats or data sources out of the box (csv, excel, sql, json, parquet,
+…), each of them with the prefix ``read_*``.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Make sure to always have a check on the data after reading in the
+data. When displaying a ``DataFrame``, the first and last 5 rows will be
+shown by default:
+
+.. ipython:: python
+
+ titanic
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to see the first 8 rows of a pandas DataFrame.
+
+.. ipython:: python
+
+ titanic.head(8)
+
+To see the first N rows of a ``DataFrame``, use the :meth:`~DataFrame.head` method with
+the required number of rows (in this case 8) as argument.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. note::
+
+ Interested in the last N rows instead? pandas also provides a
+ :meth:`~DataFrame.tail` method. For example, ``titanic.tail(10)`` will return the last
+ 10 rows of the DataFrame.
+
+A check on how pandas interpreted each of the column data types can be
+done by requesting the pandas ``dtypes`` attribute:
+
+.. ipython:: python
+
+ titanic.dtypes
+
+For each of the columns, the used data type is enlisted. The data types
+in this ``DataFrame`` are integers (``int64``), floats (``float63``) and
+strings (``object``).
+
+.. note::
+ When asking for the ``dtypes``, no brackets are used!
+ ``dtypes`` is an attribute of a ``DataFrame`` and ``Series``. Attributes
+ of ``DataFrame`` or ``Series`` do not need brackets. Attributes
+ represent a characteristic of a ``DataFrame``/``Series``, whereas a
+ method (which requires brackets) *do* something with the
+ ``DataFrame``/``Series`` as introduced in the :ref:`first tutorial <10min_tut_01_tableoriented>`.
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+My colleague requested the titanic data as a spreadsheet.
+
+.. ipython:: python
+
+ titanic.to_excel('titanic.xlsx', sheet_name='passengers', index=False)
+
+Whereas ``read_*`` functions are used to read data to pandas, the
+``to_*`` methods are used to store data. The :meth:`~DataFrame.to_excel` method stores
+the data as an excel file. In the example here, the ``sheet_name`` is
+named *passengers* instead of the default *Sheet1*. By setting
+``index=False`` the row index labels are not saved in the spreadsheet.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+The equivalent read function :meth:`~DataFrame.to_excel` will reload the data to a
+``DataFrame``:
+
+.. ipython:: python
+
+ titanic = pd.read_excel('titanic.xlsx', sheet_name='passengers')
+
+.. ipython:: python
+
+ titanic.head()
+
+.. ipython:: python
+ :suppress:
+
+ import os
+ os.remove('titanic.xlsx')
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I’m interested in a technical summary of a ``DataFrame``
+
+.. ipython:: python
+
+ titanic.info()
+
+
+The method :meth:`~DataFrame.info` provides technical information about a
+``DataFrame``, so let’s explain the output in more detail:
+
+- It is indeed a :class:`DataFrame`.
+- There are 891 entries, i.e. 891 rows.
+- Each row has a row label (aka the ``index``) with values ranging from
+ 0 to 890.
+- The table has 12 columns. Most columns have a value for each of the
+ rows (all 891 values are ``non-null``). Some columns do have missing
+ values and less than 891 ``non-null`` values.
+- The columns ``Name``, ``Sex``, ``Cabin`` and ``Embarked`` consists of
+ textual data (strings, aka ``object``). The other columns are
+ numerical data with some of them whole numbers (aka ``integer``) and
+ others are real numbers (aka ``float``).
+- The kind of data (characters, integers,…) in the different columns
+ are summarized by listing the ``dtypes``.
+- The approximate amount of RAM used to hold the DataFrame is provided
+ as well.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <div class="shadow gs-callout gs-callout-remember">
+ <h4>REMEMBER</h4>
+
+- Getting data in to pandas from many different file formats or data
+ sources is supported by ``read_*`` functions.
+- Exporting data out of pandas is provided by different
+ ``to_*``\ methods.
+- The ``head``/``tail``/``info`` methods and the ``dtypes`` attribute
+ are convenient for a first check.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="d-flex flex-row bg-light gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+For a complete overview of the input and output possibilites from and to pandas, see the user guide section about :ref:`reader and writer functions <io>`.
+
+.. raw:: html
+
+ </div>
diff --git a/doc/source/getting_started/intro_tutorials/03_subset_data.rst b/doc/source/getting_started/intro_tutorials/03_subset_data.rst
new file mode 100644
index 0000000000000..7a4347905ad8d
--- /dev/null
+++ b/doc/source/getting_started/intro_tutorials/03_subset_data.rst
@@ -0,0 +1,405 @@
+.. _10min_tut_03_subset:
+
+{{ header }}
+
+.. ipython:: python
+
+ import pandas as pd
+
+.. raw:: html
+
+ <div class="card gs-data">
+ <div class="card-header">
+ <div class="gs-data-title">
+ Data used for this tutorial:
+ </div>
+ </div>
+ <ul class="list-group list-group-flush">
+ <li class="list-group-item">
+ <div data-toggle="collapse" href="#collapsedata" role="button" aria-expanded="false" aria-controls="collapsedata">
+ <span class="badge badge-dark">Titanic data</span>
+ </div>
+ <div class="collapse" id="collapsedata">
+ <div class="card-body">
+ <p class="card-text">
+
+This tutorial uses the titanic data set, stored as CSV. The data
+consists of the following data columns:
+
+- PassengerId: Id of every passenger.
+- Survived: This feature have value 0 and 1. 0 for not survived and 1
+ for survived.
+- Pclass: There are 3 classes: Class 1, Class 2 and Class 3.
+- Name: Name of passenger.
+- Sex: Gender of passenger.
+- Age: Age of passenger.
+- SibSp: Indication that passenger have siblings and spouse.
+- Parch: Whether a passenger is alone or have family.
+- Ticket: Ticket number of passenger.
+- Fare: Indicating the fare.
+- Cabin: The cabin of passenger.
+- Embarked: The embarked category.
+
+.. raw:: html
+
+ </p>
+ <a href="https://github.com/pandas-dev/pandas/tree/master/doc/data/titanic.csv" class="btn btn-dark btn-sm">To raw data</a>
+ </div>
+ </div>
+
+.. ipython:: python
+
+ titanic = pd.read_csv("data/titanic.csv")
+ titanic.head()
+
+.. raw:: html
+
+ </li>
+ </ul>
+ </div>
+
+How do I select a subset of a ``DataFrame``?
+============================================
+
+How do I select specific columns from a ``DataFrame``?
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. image:: ../../_static/schemas/03_subset_columns.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I’m interested in the age of the titanic passengers.
+
+.. ipython:: python
+
+ ages = titanic["Age"]
+ ages.head()
+
+To select a single column, use square brackets ``[]`` with the column
+name of the column of interest.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Each column in a :class:`DataFrame` is a :class:`Series`. As a single column is
+selected, the returned object is a pandas :class:`DataFrame`. We can verify this
+by checking the type of the output:
+
+.. ipython:: python
+
+ type(titanic["Age"])
+
+And have a look at the ``shape`` of the output:
+
+.. ipython:: python
+
+ titanic["Age"].shape
+
+:attr:`DataFrame.shape` is an attribute (remember :ref:`tutorial on reading and writing <10min_tut_02_read_write>`, do not use parantheses for attributes) of a
+pandas ``Series`` and ``DataFrame`` containing the number of rows and
+columns: *(nrows, ncolumns)*. A pandas Series is 1-dimensional and only
+the number of rows is returned.
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I’m interested in the age and sex of the titanic passengers.
+
+.. ipython:: python
+
+ age_sex = titanic[["Age", "Sex"]]
+ age_sex.head()
+
+To select multiple columns, use a list of column names within the
+selection brackets ``[]``.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. note::
+ The inner square brackets define a
+ :ref:`Python list <python:tut-morelists>` with column names, whereas
+ the outer brackets are used to select the data from a pandas
+ ``DataFrame`` as seen in the previous example.
+
+The returned data type is a pandas DataFrame:
+
+.. ipython:: python
+
+ type(titanic[["Age", "Sex"]])
+
+.. ipython:: python
+
+ titanic[["Age", "Sex"]].shape
+
+The selection returned a ``DataFrame`` with 891 rows and 2 columns. Remember, a
+``DataFrame`` is 2-dimensional with both a row and column dimension.
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+For basic information on indexing, see the user guide section on :ref:`indexing and selecting data <indexing.basics>`.
+
+.. raw:: html
+
+ </div>
+
+How do I filter specific rows from a ``DataFrame``?
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. image:: ../../_static/schemas/03_subset_rows.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I’m interested in the passengers older than 35 years.
+
+.. ipython:: python
+
+ above_35 = titanic[titanic["Age"] > 35]
+ above_35.head()
+
+To select rows based on a conditional expression, use a condition inside
+the selection brackets ``[]``.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+The condition inside the selection
+brackets ``titanic["Age"] > 35`` checks for which rows the ``Age``
+column has a value larger than 35:
+
+.. ipython:: python
+
+ titanic["Age"] > 35
+
+The output of the conditional expression (``>``, but also ``==``,
+``!=``, ``<``, ``<=``,… would work) is actually a pandas ``Series`` of
+boolean values (either ``True`` or ``False``) with the same number of
+rows as the original ``DataFrame``. Such a ``Series`` of boolean values
+can be used to filter the ``DataFrame`` by putting it in between the
+selection brackets ``[]``. Only rows for which the value is ``True``
+will be selected.
+
+We now from before that the original titanic ``DataFrame`` consists of
+891 rows. Let’s have a look at the amount of rows which satisfy the
+condition by checking the ``shape`` attribute of the resulting
+``DataFrame`` ``above_35``:
+
+.. ipython:: python
+
+ above_35.shape
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I’m interested in the titanic passengers from cabin class 2 and 3.
+
+.. ipython:: python
+
+ class_23 = titanic[titanic["Pclass"].isin([2, 3])]
+ class_23.head()
+
+Similar to the conditional expression, the :func:`~Series.isin` conditional function
+returns a ``True`` for each row the values are in the provided list. To
+filter the rows based on such a function, use the conditional function
+inside the selection brackets ``[]``. In this case, the condition inside
+the selection brackets ``titanic["Pclass"].isin([2, 3])`` checks for
+which rows the ``Pclass`` column is either 2 or 3.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+The above is equivalent to filtering by rows for which the class is
+either 2 or 3 and combining the two statements with an ``|`` (or)
+operator:
+
+.. ipython:: python
+
+ class_23 = titanic[(titanic["Pclass"] == 2) | (titanic["Pclass"] == 3)]
+ class_23.head()
+
+.. note::
+ When combining multiple conditional statements, each condition
+ must be surrounded by parentheses ``()``. Moreover, you can not use
+ ``or``/``and`` but need to use the ``or`` operator ``|`` and the ``and``
+ operator ``&``.
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+See the dedicated section in the user guide about :ref:`boolean indexing <indexing.boolean>` or about the :ref:`isin function <indexing.basics.indexing_isin>`.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to work with passenger data for which the age is known.
+
+.. ipython:: python
+
+ age_no_na = titanic[titanic["Age"].notna()]
+ age_no_na.head()
+
+The :meth:`~Series.notna` conditional function returns a ``True`` for each row the
+values are not an ``Null`` value. As such, this can be combined with the
+selection brackets ``[]`` to filter the data table.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+You might wonder what actually changed, as the first 5 lines are still
+the same values. One way to verify is to check if the shape has changed:
+
+.. ipython:: python
+
+ age_no_na.shape
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+For more dedicated functions on missing values, see the user guide section about :ref:`handling missing data <missing_data>`.
+
+.. raw:: html
+
+ </div>
+
+How do I select specific rows and columns from a ``DataFrame``?
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. image:: ../../_static/schemas/03_subset_columns_rows.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I’m interested in the names of the passengers older than 35 years.
+
+.. ipython:: python
+
+ adult_names = titanic.loc[titanic["Age"] > 35, "Name"]
+ adult_names.head()
+
+In this case, a subset of both rows and columns is made in one go and
+just using selection brackets ``[]`` is not sufficient anymore. The
+``loc``/``iloc`` operators are required in front of the selection
+brackets ``[]``. When using ``loc``/``iloc``, the part before the comma
+is the rows you want, and the part after the comma is the columns you
+want to select.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+When using the column names, row labels or a condition expression, use
+the ``loc`` operator in front of the selection brackets ``[]``. For both
+the part before and after the comma, you can use a single label, a list
+of labels, a slice of labels, a conditional expression or a colon. Using
+a colon specificies you want to select all rows or columns.
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I’m interested in rows 10 till 25 and columns 3 to 5.
+
+.. ipython:: python
+
+ titanic.iloc[9:25, 2:5]
+
+Again, a subset of both rows and columns is made in one go and just
+using selection brackets ``[]`` is not sufficient anymore. When
+specifically interested in certain rows and/or columns based on their
+position in the table, use the ``iloc`` operator in front of the
+selection brackets ``[]``.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+When selecting specific rows and/or columns with ``loc`` or ``iloc``,
+new values can be assigned to the selected data. For example, to assign
+the name ``anonymous`` to the first 3 elements of the third column:
+
+.. ipython:: python
+
+ titanic.iloc[0:3, 3] = "anonymous"
+ titanic.head()
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+See the user guide section on :ref:`different choices for indexing <indexing.choice>` to get more insight in the usage of ``loc`` and ``iloc``.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="shadow gs-callout gs-callout-remember">
+ <h4>REMEMBER</h4>
+
+- When selecting subsets of data, square brackets ``[]`` are used.
+- Inside these brackets, you can use a single column/row label, a list
+ of column/row labels, a slice of labels, a conditional expression or
+ a colon.
+- Select specific rows and/or columns using ``loc`` when using the row
+ and column names
+- Select specific rows and/or columns using ``iloc`` when using the
+ positions in the table
+- You can assign new values to a selection based on ``loc``/``iloc``.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+A full overview about indexing is provided in the user guide pages on :ref:`indexing and selecting data <indexing>`.
+
+.. raw:: html
+
+ </div>
diff --git a/doc/source/getting_started/intro_tutorials/04_plotting.rst b/doc/source/getting_started/intro_tutorials/04_plotting.rst
new file mode 100644
index 0000000000000..f3d99ee56359a
--- /dev/null
+++ b/doc/source/getting_started/intro_tutorials/04_plotting.rst
@@ -0,0 +1,252 @@
+.. _10min_tut_04_plotting:
+
+{{ header }}
+
+.. ipython:: python
+
+ import pandas as pd
+ import matplotlib.pyplot as plt
+
+.. raw:: html
+
+ <div class="card gs-data">
+ <div class="card-header">
+ <div class="gs-data-title">
+ Data used for this tutorial:
+ </div>
+ </div>
+ <ul class="list-group list-group-flush">
+ <li class="list-group-item">
+ <div data-toggle="collapse" href="#collapsedata" role="button" aria-expanded="false" aria-controls="collapsedata">
+ <span class="badge badge-dark">Air quality data</span>
+ </div>
+ <div class="collapse" id="collapsedata">
+ <div class="card-body">
+ <p class="card-text">
+
+For this tutorial, air quality data about :math:`NO_2` is used, made
+available by `openaq <https://openaq.org>`__ and using the
+`py-openaq <http://dhhagan.github.io/py-openaq/index.html>`__ package.
+The ``air_quality_no2.csv`` data set provides :math:`NO_2` values for
+the measurement stations *FR04014*, *BETR801* and *London Westminster*
+in respectively Paris, Antwerp and London.
+
+.. raw:: html
+
+ </p>
+ <a href="https://github.com/pandas-dev/pandas/tree/master/doc/data/air_quality_no2.csv" class="btn btn-dark btn-sm">To raw data</a>
+ </div>
+ </div>
+
+.. ipython:: python
+
+ air_quality = pd.read_csv("data/air_quality_no2.csv",
+ index_col=0, parse_dates=True)
+ air_quality.head()
+
+.. note::
+ The usage of the ``index_col`` and ``parse_dates`` parameters of the ``read_csv`` function to define the first (0th) column as
+ index of the resulting ``DataFrame`` and convert the dates in the column to :class:`Timestamp` objects, respectively.
+
+.. raw:: html
+
+ </li>
+ </ul>
+ </div>
+
+How to create plots in pandas?
+------------------------------
+
+.. image:: ../../_static/schemas/04_plot_overview.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want a quick visual check of the data.
+
+.. ipython:: python
+
+ @savefig 04_airqual_quick.png
+ air_quality.plot()
+
+With a ``DataFrame``, pandas creates by default one line plot for each of
+the columns with numeric data.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to plot only the columns of the data table with the data from Paris.
+
+.. ipython:: python
+
+ @savefig 04_airqual_paris.png
+ air_quality["station_paris"].plot()
+
+To plot a specific column, use the selection method of the
+:ref:`subset data tutorial <10min_tut_03_subset>` in combination with the :meth:`~DataFrame.plot`
+method. Hence, the :meth:`~DataFrame.plot` method works on both ``Series`` and
+``DataFrame``.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to visually compare the :math:`N0_2` values measured in London versus Paris.
+
+.. ipython:: python
+
+ @savefig 04_airqual_scatter.png
+ air_quality.plot.scatter(x="station_london",
+ y="station_paris",
+ alpha=0.5)
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Apart from the default ``line`` plot when using the ``plot`` function, a
+number of alternatives are available to plot data. Let’s use some
+standard Python to get an overview of the available plot methods:
+
+.. ipython:: python
+
+ [method_name for method_name in dir(air_quality.plot)
+ if not method_name.startswith("_")]
+
+.. note::
+ In many development environments as well as ipython and
+ jupyter notebook, use the TAB button to get an overview of the available
+ methods, for example ``air_quality.plot.`` + TAB.
+
+One of the options is :meth:`DataFrame.plot.box`, which refers to a
+`boxplot <https://en.wikipedia.org/wiki/Box_plot>`__. The ``box``
+method is applicable on the air quality example data:
+
+.. ipython:: python
+
+ @savefig 04_airqual_boxplot.png
+ air_quality.plot.box()
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+For an introduction to plots other than the default line plot, see the user guide section about :ref:`supported plot styles <visualization.other>`.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want each of the columns in a separate subplot.
+
+.. ipython:: python
+
+ @savefig 04_airqual_area_subplot.png
+ axs = air_quality.plot.area(figsize=(12, 4), subplots=True)
+
+Separate subplots for each of the data columns is supported by the ``subplots`` argument
+of the ``plot`` functions. The builtin options available in each of the pandas plot
+functions that are worthwhile to have a look.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+Some more formatting options are explained in the user guide section on :ref:`plot formatting <visualization.formatting>`.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to further customize, extend or save the resulting plot.
+
+.. ipython:: python
+
+ fig, axs = plt.subplots(figsize=(12, 4));
+ air_quality.plot.area(ax=axs);
+ @savefig 04_airqual_customized.png
+ axs.set_ylabel("NO$_2$ concentration");
+ fig.savefig("no2_concentrations.png")
+
+.. ipython:: python
+ :suppress:
+
+ import os
+ os.remove('no2_concentrations.png')
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Each of the plot objects created by pandas are a
+`matplotlib <https://matplotlib.org/>`__ object. As Matplotlib provides
+plenty of options to customize plots, making the link between pandas and
+Matplotlib explicit enables all the power of matplotlib to the plot.
+This strategy is applied in the previous example:
+
+::
+
+ fig, axs = plt.subplots(figsize=(12, 4)) # Create an empty matplotlib Figure and Axes
+ air_quality.plot.area(ax=axs) # Use pandas to put the area plot on the prepared Figure/Axes
+ axs.set_ylabel("NO$_2$ concentration") # Do any matplotlib customization you like
+ fig.savefig("no2_concentrations.png") # Save the Figure/Axes using the existing matplotlib method.
+
+.. raw:: html
+
+ <div class="shadow gs-callout gs-callout-remember">
+ <h4>REMEMBER</h4>
+
+- The ``.plot.*`` methods are applicable on both Series and DataFrames
+- By default, each of the columns is plotted as a different element
+ (line, boxplot,…)
+- Any plot created by pandas is a Matplotlib object.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+A full overview of plotting in pandas is provided in the :ref:`visualization pages <visualization>`.
+
+.. raw:: html
+
+ </div>
diff --git a/doc/source/getting_started/intro_tutorials/05_add_columns.rst b/doc/source/getting_started/intro_tutorials/05_add_columns.rst
new file mode 100644
index 0000000000000..d4f6a8d6bb4a2
--- /dev/null
+++ b/doc/source/getting_started/intro_tutorials/05_add_columns.rst
@@ -0,0 +1,186 @@
+.. _10min_tut_05_columns:
+
+{{ header }}
+
+.. ipython:: python
+
+ import pandas as pd
+
+.. raw:: html
+
+ <div class="card gs-data">
+ <div class="card-header">
+ <div class="gs-data-title">
+ Data used for this tutorial:
+ </div>
+ </div>
+ <ul class="list-group list-group-flush">
+ <li class="list-group-item">
+ <div data-toggle="collapse" href="#collapsedata" role="button" aria-expanded="false" aria-controls="collapsedata">
+ <span class="badge badge-dark">Air quality data</span>
+ </div>
+ <div class="collapse" id="collapsedata">
+ <div class="card-body">
+ <p class="card-text">
+
+For this tutorial, air quality data about :math:`NO_2` is used, made
+available by `openaq <https://openaq.org>`__ and using the
+`py-openaq <http://dhhagan.github.io/py-openaq/index.html>`__ package.
+The ``air_quality_no2.csv`` data set provides :math:`NO_2` values for
+the measurement stations *FR04014*, *BETR801* and *London Westminster*
+in respectively Paris, Antwerp and London.
+
+.. raw:: html
+
+ </p>
+ <a href="https://github.com/pandas-dev/pandas/tree/master/doc/data/air_quality_no2.csv" class="btn btn-dark btn-sm">To raw data</a>
+ </div>
+ </div>
+
+.. ipython:: python
+
+ air_quality = pd.read_csv("data/air_quality_no2.csv",
+ index_col=0, parse_dates=True)
+ air_quality.head()
+
+.. raw:: html
+
+ </li>
+ </ul>
+ </div>
+
+How to create new columns derived from existing columns?
+--------------------------------------------------------
+
+.. image:: ../../_static/schemas/05_newcolumn_1.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to express the :math:`NO_2` concentration of the station in London in mg/m\ :math:`^3`
+
+(*If we assume temperature of 25 degrees Celsius and pressure of 1013
+hPa, the conversion factor is 1.882*)
+
+.. ipython:: python
+
+ air_quality["london_mg_per_cubic"] = air_quality["station_london"] * 1.882
+ air_quality.head()
+
+To create a new column, use the ``[]`` brackets with the new column name
+at the left side of the assignment.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. note::
+ The calculation of the values is done **element_wise**. This
+ means all values in the given column are multiplied by the value 1.882
+ at once. You do not need to use a loop to iterate each of the rows!
+
+.. image:: ../../_static/schemas/05_newcolumn_2.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to check the ratio of the values in Paris versus Antwerp and save the result in a new column
+
+.. ipython:: python
+
+ air_quality["ratio_paris_antwerp"] = \
+ air_quality["station_paris"] / air_quality["station_antwerp"]
+ air_quality.head()
+
+The calculation is again element-wise, so the ``/`` is applied *for the
+values in each row*.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Also other mathematical operators (+, -, \*, /) or
+logical operators (<, >, =,…) work element wise. The latter was already
+used in the :ref:`subset data tutorial <10min_tut_03_subset>` to filter
+rows of a table using a conditional expression.
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to rename the data columns to the corresponding station identifiers used by openAQ
+
+.. ipython:: python
+
+ air_quality_renamed = air_quality.rename(
+ columns={"station_antwerp": "BETR801",
+ "station_paris": "FR04014",
+ "station_london": "London Westminster"})
+
+.. ipython:: python
+
+ air_quality_renamed.head()
+
+The :meth:`~DataFrame.rename` function can be used for both row labels and column
+labels. Provide a dictionary with the keys the current names and the
+values the new names to update the corresponding names.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+The mapping should not be restricted to fixed names only, but can be a
+mapping function as well. For example, converting the column names to
+lowercase letters can be done using a function as well:
+
+.. ipython:: python
+
+ air_quality_renamed = air_quality_renamed.rename(columns=str.lower)
+ air_quality_renamed.head()
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+Details about column or row label renaming is provided in the user guide section on :ref:`renaming labels <basics.rename>`.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="shadow gs-callout gs-callout-remember">
+ <h4>REMEMBER</h4>
+
+- Create a new column by assigning the output to the DataFrame with a
+ new column name in between the ``[]``.
+- Operations are element-wise, no need to loop over rows.
+- Use ``rename`` with a dictionary or function to rename row labels or
+ column names.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+The user guide contains a separate section on :ref:`column addition and deletion <basics.dataframe.sel_add_del>`.
+
+.. raw:: html
+
+ </div>
diff --git a/doc/source/getting_started/intro_tutorials/06_calculate_statistics.rst b/doc/source/getting_started/intro_tutorials/06_calculate_statistics.rst
new file mode 100644
index 0000000000000..7a94c90525027
--- /dev/null
+++ b/doc/source/getting_started/intro_tutorials/06_calculate_statistics.rst
@@ -0,0 +1,310 @@
+.. _10min_tut_06_stats:
+
+{{ header }}
+
+.. ipython:: python
+
+ import pandas as pd
+
+.. raw:: html
+
+ <div class="card gs-data">
+ <div class="card-header">
+ <div class="gs-data-title">
+ Data used for this tutorial:
+ </div>
+ </div>
+ <ul class="list-group list-group-flush">
+ <li class="list-group-item">
+ <div data-toggle="collapse" href="#collapsedata" role="button" aria-expanded="false" aria-controls="collapsedata">
+ <span class="badge badge-dark">Titanic data</span>
+ </div>
+ <div class="collapse" id="collapsedata">
+ <div class="card-body">
+ <p class="card-text">
+
+This tutorial uses the titanic data set, stored as CSV. The data
+consists of the following data columns:
+
+- PassengerId: Id of every passenger.
+- Survived: This feature have value 0 and 1. 0 for not survived and 1
+ for survived.
+- Pclass: There are 3 classes: Class 1, Class 2 and Class 3.
+- Name: Name of passenger.
+- Sex: Gender of passenger.
+- Age: Age of passenger.
+- SibSp: Indication that passenger have siblings and spouse.
+- Parch: Whether a passenger is alone or have family.
+- Ticket: Ticket number of passenger.
+- Fare: Indicating the fare.
+- Cabin: The cabin of passenger.
+- Embarked: The embarked category.
+
+.. raw:: html
+
+ </p>
+ <a href="https://github.com/pandas-dev/pandas/tree/master/doc/data/titanic.csv" class="btn btn-dark btn-sm">To raw data</a>
+ </div>
+ </div>
+
+.. ipython:: python
+
+ titanic = pd.read_csv("data/titanic.csv")
+ titanic.head()
+
+.. raw:: html
+
+ </li>
+ </ul>
+ </div>
+
+How to calculate summary statistics?
+------------------------------------
+
+Aggregating statistics
+~~~~~~~~~~~~~~~~~~~~~~
+
+.. image:: ../../_static/schemas/06_aggregate.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+What is the average age of the titanic passengers?
+
+.. ipython:: python
+
+ titanic["Age"].mean()
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Different statistics are available and can be applied to columns with
+numerical data. Operations in general exclude missing data and operate
+across rows by default.
+
+.. image:: ../../_static/schemas/06_reduction.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+What is the median age and ticket fare price of the titanic passengers?
+
+.. ipython:: python
+
+ titanic[["Age", "Fare"]].median()
+
+The statistic applied to multiple columns of a ``DataFrame`` (the selection of two columns
+return a ``DataFrame``, see the :ref:`subset data tutorial <10min_tut_03_subset>`) is calculated for each numeric column.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+The aggregating statistic can be calculated for multiple columns at the
+same time. Remember the ``describe`` function from :ref:`first tutorial <10min_tut_01_tableoriented>` tutorial?
+
+.. ipython:: python
+
+ titanic[["Age", "Fare"]].describe()
+
+Instead of the predefined statistics, specific combinations of
+aggregating statistics for given columns can be defined using the
+:func:`DataFrame.agg` method:
+
+.. ipython:: python
+
+ titanic.agg({'Age': ['min', 'max', 'median', 'skew'],
+ 'Fare': ['min', 'max', 'median', 'mean']})
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+Details about descriptive statistics are provided in the user guide section on :ref:`descriptive statistics <basics.stats>`.
+
+.. raw:: html
+
+ </div>
+
+
+Aggregating statistics grouped by category
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. image:: ../../_static/schemas/06_groupby.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+What is the average age for male versus female titanic passengers?
+
+.. ipython:: python
+
+ titanic[["Sex", "Age"]].groupby("Sex").mean()
+
+As our interest is the average age for each gender, a subselection on
+these two columns is made first: ``titanic[["Sex", "Age"]]``. Next, the
+:meth:`~DataFrame.groupby` method is applied on the ``Sex`` column to make a group per
+category. The average age *for each gender* is calculated and
+returned.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Calculating a given statistic (e.g. ``mean`` age) *for each category in
+a column* (e.g. male/female in the ``Sex`` column) is a common pattern.
+The ``groupby`` method is used to support this type of operations. More
+general, this fits in the more general ``split-apply-combine`` pattern:
+
+- **Split** the data into groups
+- **Apply** a function to each group independently
+- **Combine** the results into a data structure
+
+The apply and combine steps are typically done together in pandas.
+
+In the previous example, we explicitly selected the 2 columns first. If
+not, the ``mean`` method is applied to each column containing numerical
+columns:
+
+.. ipython:: python
+
+ titanic.groupby("Sex").mean()
+
+It does not make much sense to get the average value of the ``Pclass``.
+if we are only interested in the average age for each gender, the
+selection of columns (rectangular brackets ``[]`` as usual) is supported
+on the grouped data as well:
+
+.. ipython:: python
+
+ titanic.groupby("Sex")["Age"].mean()
+
+.. image:: ../../_static/schemas/06_groupby_select_detail.svg
+ :align: center
+
+.. note::
+ The `Pclass` column contains numerical data but actually
+ represents 3 categories (or factors) with respectively the labels ‘1’,
+ ‘2’ and ‘3’. Calculating statistics on these does not make much sense.
+ Therefore, pandas provides a ``Categorical`` data type to handle this
+ type of data. More information is provided in the user guide
+ :ref:`categorical` section.
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+What is the mean ticket fare price for each of the sex and cabin class combinations?
+
+.. ipython:: python
+
+ titanic.groupby(["Sex", "Pclass"])["Fare"].mean()
+
+Grouping can be done by multiple columns at the same time. Provide the
+column names as a list to the :meth:`~DataFrame.groupby` method.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+A full description on the split-apply-combine approach is provided in the user guide section on :ref:`groupby operations <groupby>`.
+
+.. raw:: html
+
+ </div>
+
+Count number of records by category
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. image:: ../../_static/schemas/06_valuecounts.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+What is the number of passengers in each of the cabin classes?
+
+.. ipython:: python
+
+ titanic["Pclass"].value_counts()
+
+The :meth:`~Series.value_counts` method counts the number of records for each
+category in a column.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+The function is a shortcut, as it is actually a groupby operation in combination with counting of the number of records
+within each group:
+
+.. ipython:: python
+
+ titanic.groupby("Pclass")["Pclass"].count()
+
+.. note::
+ Both ``size`` and ``count`` can be used in combination with
+ ``groupby``. Whereas ``size`` includes ``NaN`` values and just provides
+ the number of rows (size of the table), ``count`` excludes the missing
+ values. In the ``value_counts`` method, use the ``dropna`` argument to
+ include or exclude the ``NaN`` values.
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+The user guide has a dedicated section on ``value_counts`` , see page on :ref:`discretization <basics.discretization>`.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="shadow gs-callout gs-callout-remember">
+ <h4>REMEMBER</h4>
+
+- Aggregation statistics can be calculated on entire columns or rows
+- ``groupby`` provides the power of the *split-apply-combine* pattern
+- ``value_counts`` is a convenient shortcut to count the number of
+ entries in each category of a variable
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+A full description on the split-apply-combine approach is provided in the user guide pages about :ref:`groupby operations <groupby>`.
+
+.. raw:: html
+
+ </div>
diff --git a/doc/source/getting_started/intro_tutorials/07_reshape_table_layout.rst b/doc/source/getting_started/intro_tutorials/07_reshape_table_layout.rst
new file mode 100644
index 0000000000000..b28a9012a4ad9
--- /dev/null
+++ b/doc/source/getting_started/intro_tutorials/07_reshape_table_layout.rst
@@ -0,0 +1,404 @@
+.. _10min_tut_07_reshape:
+
+{{ header }}
+
+.. ipython:: python
+
+ import pandas as pd
+
+.. raw:: html
+
+ <div class="card gs-data">
+ <div class="card-header">
+ <div class="gs-data-title">
+ Data used for this tutorial:
+ </div>
+ </div>
+ <ul class="list-group list-group-flush">
+ <li class="list-group-item">
+ <div data-toggle="collapse" href="#collapsedata" role="button" aria-expanded="false" aria-controls="collapsedata">
+ <span class="badge badge-dark">Titanic data</span>
+ </div>
+ <div class="collapse" id="collapsedata">
+ <div class="card-body">
+ <p class="card-text">
+
+This tutorial uses the titanic data set, stored as CSV. The data
+consists of the following data columns:
+
+- PassengerId: Id of every passenger.
+- Survived: This feature have value 0 and 1. 0 for not survived and 1
+ for survived.
+- Pclass: There are 3 classes: Class 1, Class 2 and Class 3.
+- Name: Name of passenger.
+- Sex: Gender of passenger.
+- Age: Age of passenger.
+- SibSp: Indication that passenger have siblings and spouse.
+- Parch: Whether a passenger is alone or have family.
+- Ticket: Ticket number of passenger.
+- Fare: Indicating the fare.
+- Cabin: The cabin of passenger.
+- Embarked: The embarked category.
+
+.. raw:: html
+
+ </p>
+ <a href="https://github.com/pandas-dev/pandas/tree/master/doc/data/titanic.csv" class="btn btn-dark btn-sm">To raw data</a>
+ </div>
+ </div>
+
+.. ipython:: python
+
+ titanic = pd.read_csv("data/titanic.csv")
+ titanic.head()
+
+.. raw:: html
+
+ </li>
+ <li class="list-group-item">
+ <div data-toggle="collapse" href="#collapsedata2" role="button" aria-expanded="false" aria-controls="collapsedata2">
+ <span class="badge badge-dark">Air quality data</span>
+ </div>
+ <div class="collapse" id="collapsedata2">
+ <div class="card-body">
+ <p class="card-text">
+
+This tutorial uses air quality data about :math:`NO_2` and Particulate matter less than 2.5
+micrometers, made available by
+`openaq <https://openaq.org>`__ and using the
+`py-openaq <http://dhhagan.github.io/py-openaq/index.html>`__ package.
+The ``air_quality_long.csv`` data set provides :math:`NO_2` and
+:math:`PM_{25}` values for the measurement stations *FR04014*, *BETR801*
+and *London Westminster* in respectively Paris, Antwerp and London.
+
+The air-quality data set has the following columns:
+
+- city: city where the sensor is used, either Paris, Antwerp or London
+- country: country where the sensor is used, either FR, BE or GB
+- location: the id of the sensor, either *FR04014*, *BETR801* or
+ *London Westminster*
+- parameter: the parameter measured by the sensor, either :math:`NO_2`
+ or Particulate matter
+- value: the measured value
+- unit: the unit of the measured parameter, in this case ‘µg/m³’
+
+and the index of the ``DataFrame`` is ``datetime``, the datetime of the
+measurement.
+
+.. note::
+ The air-quality data is provided in a so-called *long format*
+ data representation with each observation on a separate row and each
+ variable a separate column of the data table. The long/narrow format is
+ also known as the `tidy data
+ format <https://www.jstatsoft.org/article/view/v059i10>`__.
+
+.. raw:: html
+
+ </p>
+ <a href="https://github.com/pandas-dev/pandas/tree/master/doc/data/air_quality_long.csv" class="btn btn-dark btn-sm">To raw data</a>
+ </div>
+ </div>
+
+.. ipython:: python
+
+ air_quality = pd.read_csv("data/air_quality_long.csv",
+ index_col="date.utc", parse_dates=True)
+ air_quality.head()
+
+.. raw:: html
+
+ </li>
+ </ul>
+ </div>
+
+How to reshape the layout of tables?
+------------------------------------
+
+Sort table rows
+~~~~~~~~~~~~~~~
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to sort the titanic data according to the age of the passengers.
+
+.. ipython:: python
+
+ titanic.sort_values(by="Age").head()
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to sort the titanic data according to the cabin class and age in descending order.
+
+.. ipython:: python
+
+ titanic.sort_values(by=['Pclass', 'Age'], ascending=False).head()
+
+With :meth:`Series.sort_values`, the rows in the table are sorted according to the
+defined column(s). The index will follow the row order.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+More details about sorting of tables is provided in the using guide section on :ref:`sorting data <basics.sorting>`.
+
+.. raw:: html
+
+ </div>
+
+Long to wide table format
+~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Let’s use a small subset of the air quality data set. We focus on
+:math:`NO_2` data and only use the first two measurements of each
+location (i.e. the head of each group). The subset of data will be
+called ``no2_subset``
+
+.. ipython:: python
+
+ # filter for no2 data only
+ no2 = air_quality[air_quality["parameter"] == "no2"]
+
+.. ipython:: python
+
+ # use 2 measurements (head) for each location (groupby)
+ no2_subset = no2.sort_index().groupby(["location"]).head(2)
+ no2_subset
+
+.. image:: ../../_static/schemas/07_pivot.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want the values for the three stations as separate columns next to each other
+
+.. ipython:: python
+
+ no2_subset.pivot(columns="location", values="value")
+
+The :meth:`~pandas.pivot_table` function is purely reshaping of the data: a single value
+for each index/column combination is required.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+As pandas support plotting of multiple columns (see :ref:`plotting tutorial <10min_tut_04_plotting>`) out of the box, the conversion from
+*long* to *wide* table format enables the plotting of the different time
+series at the same time:
+
+.. ipython:: python
+
+ no2.head()
+
+.. ipython:: python
+
+ @savefig 7_reshape_columns.png
+ no2.pivot(columns="location", values="value").plot()
+
+.. note::
+ When the ``index`` parameter is not defined, the existing
+ index (row labels) is used.
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+For more information about :meth:`~DataFrame.pivot`, see the user guide section on :ref:`pivoting DataFrame objects <reshaping.reshaping>`.
+
+.. raw:: html
+
+ </div>
+
+Pivot table
+~~~~~~~~~~~
+
+.. image:: ../../_static/schemas/07_pivot_table.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want the mean concentrations for :math:`NO_2` and :math:`PM_{2.5}` in each of the stations in table form
+
+.. ipython:: python
+
+ air_quality.pivot_table(values="value", index="location",
+ columns="parameter", aggfunc="mean")
+
+In the case of :meth:`~DataFrame.pivot`, the data is only rearranged. When multiple
+values need to be aggregated (in this specific case, the values on
+different time steps) :meth:`~DataFrame.pivot_table` can be used, providing an
+aggregation function (e.g. mean) on how to combine these values.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Pivot table is a well known concept in spreadsheet software. When
+interested in summary columns for each variable separately as well, put
+the ``margin`` parameter to ``True``:
+
+.. ipython:: python
+
+ air_quality.pivot_table(values="value", index="location",
+ columns="parameter", aggfunc="mean",
+ margins=True)
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+For more information about :meth:`~DataFrame.pivot_table`, see the user guide section on :ref:`pivot tables <reshaping.pivot>`.
+
+.. raw:: html
+
+ </div>
+
+.. note::
+ If case you are wondering, :meth:`~DataFrame.pivot_table` is indeed directly linked
+ to :meth:`~DataFrame.groupby`. The same result can be derived by grouping on both
+ ``parameter`` and ``location``:
+
+ ::
+
+ air_quality.groupby(["parameter", "location"]).mean()
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+Have a look at :meth:`~DataFrame.groupby` in combination with :meth:`~DataFrame.unstack` at the user guide section on :ref:`combining stats and groupby <reshaping.combine_with_groupby>`.
+
+.. raw:: html
+
+ </div>
+
+Wide to long format
+~~~~~~~~~~~~~~~~~~~
+
+Starting again from the wide format table created in the previous
+section:
+
+.. ipython:: python
+
+ no2_pivoted = no2.pivot(columns="location", values="value").reset_index()
+ no2_pivoted.head()
+
+.. image:: ../../_static/schemas/07_melt.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to collect all air quality :math:`NO_2` measurements in a single column (long format)
+
+.. ipython:: python
+
+ no_2 = no2_pivoted.melt(id_vars="date.utc")
+ no_2.head()
+
+The :func:`pandas.melt` method on a ``DataFrame`` converts the data table from wide
+format to long format. The column headers become the variable names in a
+newly created column.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+The solution is the short version on how to apply :func:`pandas.melt`. The method
+will *melt* all columns NOT mentioned in ``id_vars`` together into two
+columns: A columns with the column header names and a column with the
+values itself. The latter column gets by default the name ``value``.
+
+The :func:`pandas.melt` method can be defined in more detail:
+
+.. ipython:: python
+
+ no_2 = no2_pivoted.melt(id_vars="date.utc",
+ value_vars=["BETR801",
+ "FR04014",
+ "London Westminster"],
+ value_name="NO_2",
+ var_name="id_location")
+ no_2.head()
+
+The result in the same, but in more detail defined:
+
+- ``value_vars`` defines explicitly which columns to *melt* together
+- ``value_name`` provides a custom column name for the values column
+ instead of the default columns name ``value``
+- ``var_name`` provides a custom column name for the columns collecting
+ the column header names. Otherwise it takes the index name or a
+ default ``variable``
+
+Hence, the arguments ``value_name`` and ``var_name`` are just
+user-defined names for the two generated columns. The columns to melt
+are defined by ``id_vars`` and ``value_vars``.
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+Conversion from wide to long format with :func:`pandas.melt` is explained in the user guide section on :ref:`reshaping by melt <reshaping.melt>`.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="shadow gs-callout gs-callout-remember">
+ <h4>REMEMBER</h4>
+
+- Sorting by one or more columns is supported by ``sort_values``
+- The ``pivot`` function is purely restructering of the data,
+ ``pivot_table`` supports aggregations
+- The reverse of ``pivot`` (long to wide format) is ``melt`` (wide to
+ long format)
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+A full overview is available in the user guide on the pages about :ref:`reshaping and pivoting <reshaping>`.
+
+.. raw:: html
+
+ </div>
diff --git a/doc/source/getting_started/intro_tutorials/08_combine_dataframes.rst b/doc/source/getting_started/intro_tutorials/08_combine_dataframes.rst
new file mode 100644
index 0000000000000..f317e7a1f91b4
--- /dev/null
+++ b/doc/source/getting_started/intro_tutorials/08_combine_dataframes.rst
@@ -0,0 +1,326 @@
+.. _10min_tut_08_combine:
+
+{{ header }}
+
+.. ipython:: python
+
+ import pandas as pd
+
+.. raw:: html
+
+ <div class="card gs-data">
+ <div class="card-header">
+ <div class="gs-data-title">
+ Data used for this tutorial:
+ </div>
+ </div>
+ <ul class="list-group list-group-flush">
+ <li class="list-group-item">
+ <div data-toggle="collapse" href="#collapsedata" role="button" aria-expanded="false" aria-controls="collapsedata">
+ <span class="badge badge-dark">Air quality Nitrate data</span>
+ </div>
+ <div class="collapse" id="collapsedata">
+ <div class="card-body">
+ <p class="card-text">
+
+For this tutorial, air quality data about :math:`NO_2` is used, made available by
+`openaq <https://openaq.org>`__ and downloaded using the
+`py-openaq <http://dhhagan.github.io/py-openaq/index.html>`__ package.
+
+The ``air_quality_no2_long.csv`` data set provides :math:`NO_2`
+values for the measurement stations *FR04014*, *BETR801* and *London
+Westminster* in respectively Paris, Antwerp and London.
+
+.. raw:: html
+
+ </p>
+ <a href="https://github.com/pandas-dev/pandas/tree/master/doc/data/air_quality_no2_long.csv" class="btn btn-dark btn-sm">To raw data</a>
+ </div>
+ </div>
+
+.. ipython:: python
+
+ air_quality_no2 = pd.read_csv("data/air_quality_no2_long.csv",
+ parse_dates=True)
+ air_quality_no2 = air_quality_no2[["date.utc", "location",
+ "parameter", "value"]]
+ air_quality_no2.head()
+
+.. raw:: html
+
+ </li>
+ <li class="list-group-item">
+ <div data-toggle="collapse" href="#collapsedata2" role="button" aria-expanded="false" aria-controls="collapsedata2">
+ <span class="badge badge-dark">Air quality Particulate matter data</span>
+ </div>
+ <div class="collapse" id="collapsedata2">
+ <div class="card-body">
+ <p class="card-text">
+
+For this tutorial, air quality data about Particulate
+matter less than 2.5 micrometers is used, made available by
+`openaq <https://openaq.org>`__ and downloaded using the
+`py-openaq <http://dhhagan.github.io/py-openaq/index.html>`__ package.
+
+The ``air_quality_pm25_long.csv`` data set provides :math:`PM_{25}`
+values for the measurement stations *FR04014*, *BETR801* and *London
+Westminster* in respectively Paris, Antwerp and London.
+
+.. raw:: html
+
+ </p>
+ <a href="https://github.com/pandas-dev/pandas/tree/master/doc/data/air_quality_pm25_long.csv" class="btn btn-dark btn-sm">To raw data</a>
+ </div>
+ </div>
+
+.. ipython:: python
+
+ air_quality_pm25 = pd.read_csv("data/air_quality_pm25_long.csv",
+ parse_dates=True)
+ air_quality_pm25 = air_quality_pm25[["date.utc", "location",
+ "parameter", "value"]]
+ air_quality_pm25.head()
+
+.. raw:: html
+
+ </li>
+ </ul>
+ </div>
+
+
+How to combine data from multiple tables?
+-----------------------------------------
+
+Concatenating objects
+~~~~~~~~~~~~~~~~~~~~~
+
+.. image:: ../../_static/schemas/08_concat_row.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to combine the measurements of :math:`NO_2` and :math:`PM_{25}`, two tables with a similar structure, in a single table
+
+.. ipython:: python
+
+ air_quality = pd.concat([air_quality_pm25, air_quality_no2], axis=0)
+ air_quality.head()
+
+The :func:`~pandas.concat` function performs concatenation operations of multiple
+tables along one of the axis (row-wise or column-wise).
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+By default concatenation is along axis 0, so the resulting table combines the rows
+of the input tables. Let’s check the shape of the original and the
+concatenated tables to verify the operation:
+
+.. ipython:: python
+
+ print('Shape of the `air_quality_pm25` table: ', air_quality_pm25.shape)
+ print('Shape of the `air_quality_no2` table: ', air_quality_no2.shape)
+ print('Shape of the resulting `air_quality` table: ', air_quality.shape)
+
+Hence, the resulting table has 3178 = 1110 + 2068 rows.
+
+.. note::
+ The **axis** argument will return in a number of pandas
+ methods that can be applied **along an axis**. A ``DataFrame`` has two
+ corresponding axes: the first running vertically downwards across rows
+ (axis 0), and the second running horizontally across columns (axis 1).
+ Most operations like concatenation or summary statistics are by default
+ across rows (axis 0), but can be applied across columns as well.
+
+Sorting the table on the datetime information illustrates also the
+combination of both tables, with the ``parameter`` column defining the
+origin of the table (either ``no2`` from table ``air_quality_no2`` or
+``pm25`` from table ``air_quality_pm25``):
+
+.. ipython:: python
+
+ air_quality = air_quality.sort_values("date.utc")
+ air_quality.head()
+
+In this specific example, the ``parameter`` column provided by the data
+ensures that each of the original tables can be identified. This is not
+always the case. the ``concat`` function provides a convenient solution
+with the ``keys`` argument, adding an additional (hierarchical) row
+index. For example:
+
+.. ipython:: python
+
+ air_quality_ = pd.concat([air_quality_pm25, air_quality_no2],
+ keys=["PM25", "NO2"])
+
+.. ipython:: python
+
+ air_quality_.head()
+
+.. note::
+ The existence of multiple row/column indices at the same time
+ has not been mentioned within these tutorials. *Hierarchical indexing*
+ or *MultiIndex* is an advanced and powerfull pandas feature to analyze
+ higher dimensional data.
+
+ Multi-indexing is out of scope for this pandas introduction. For the
+ moment, remember that the function ``reset_index`` can be used to
+ convert any level of an index to a column, e.g.
+ ``air_quality.reset_index(level=0)``
+
+ .. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+ Feel free to dive into the world of multi-indexing at the user guide section on :ref:`advanced indexing <advanced>`.
+
+ .. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+More options on table concatenation (row and column
+wise) and how ``concat`` can be used to define the logic (union or
+intersection) of the indexes on the other axes is provided at the section on
+:ref:`object concatenation <merging.concat>`.
+
+.. raw:: html
+
+ </div>
+
+Join tables using a common identifier
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. image:: ../../_static/schemas/08_merge_left.svg
+ :align: center
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+Add the station coordinates, provided by the stations metadata table, to the corresponding rows in the measurements table.
+
+.. warning::
+ The air quality measurement station coordinates are stored in a data
+ file ``air_quality_stations.csv``, downloaded using the
+ `py-openaq <http://dhhagan.github.io/py-openaq/index.html>`__ package.
+
+.. ipython:: python
+
+ stations_coord = pd.read_csv("data/air_quality_stations.csv")
+ stations_coord.head()
+
+.. note::
+ The stations used in this example (FR04014, BETR801 and London
+ Westminster) are just three entries enlisted in the metadata table. We
+ only want to add the coordinates of these three to the measurements
+ table, each on the corresponding rows of the ``air_quality`` table.
+
+.. ipython:: python
+
+ air_quality.head()
+
+.. ipython:: python
+
+ air_quality = pd.merge(air_quality, stations_coord,
+ how='left', on='location')
+ air_quality.head()
+
+Using the :meth:`~pandas.merge` function, for each of the rows in the
+``air_quality`` table, the corresponding coordinates are added from the
+``air_quality_stations_coord`` table. Both tables have the column
+``location`` in common which is used as a key to combine the
+information. By choosing the ``left`` join, only the locations available
+in the ``air_quality`` (left) table, i.e. FR04014, BETR801 and London
+Westminster, end up in the resulting table. The ``merge`` function
+supports multiple join options similar to database-style operations.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+Add the parameter full description and name, provided by the parameters metadata table, to the measurements table
+
+.. warning::
+ The air quality parameters metadata are stored in a data file
+ ``air_quality_parameters.csv``, downloaded using the
+ `py-openaq <http://dhhagan.github.io/py-openaq/index.html>`__ package.
+
+.. ipython:: python
+
+ air_quality_parameters = pd.read_csv("data/air_quality_parameters.csv")
+ air_quality_parameters.head()
+
+.. ipython:: python
+
+ air_quality = pd.merge(air_quality, air_quality_parameters,
+ how='left', left_on='parameter', right_on='id')
+ air_quality.head()
+
+Compared to the previous example, there is no common column name.
+However, the ``parameter`` column in the ``air_quality`` table and the
+``id`` column in the ``air_quality_parameters_name`` both provide the
+measured variable in a common format. The ``left_on`` and ``right_on``
+arguments are used here (instead of just ``on``) to make the link
+between the two tables.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+pandas supports also inner, outer, and right joins.
+More information on join/merge of tables is provided in the user guide section on
+:ref:`database style merging of tables <merging.join>`. Or have a look at the
+:ref:`comparison with SQL<compare_with_sql.join>` page.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="shadow gs-callout gs-callout-remember">
+ <h4>REMEMBER</h4>
+
+- Multiple tables can be concatenated both column as row wise using
+ the ``concat`` function.
+- For database-like merging/joining of tables, use the ``merge``
+ function.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+See the user guide for a full description of the various :ref:`facilities to combine data tables <merging>`.
+
+.. raw:: html
+
+ </div>
diff --git a/doc/source/getting_started/intro_tutorials/09_timeseries.rst b/doc/source/getting_started/intro_tutorials/09_timeseries.rst
new file mode 100644
index 0000000000000..d5b4b316130bb
--- /dev/null
+++ b/doc/source/getting_started/intro_tutorials/09_timeseries.rst
@@ -0,0 +1,389 @@
+.. _10min_tut_09_timeseries:
+
+{{ header }}
+
+.. ipython:: python
+
+ import pandas as pd
+ import matplotlib.pyplot as plt
+
+.. raw:: html
+
+ <div class="card gs-data">
+ <div class="card-header">
+ <div class="gs-data-title">
+ Data used for this tutorial:
+ </div>
+ </div>
+ <ul class="list-group list-group-flush">
+ <li class="list-group-item">
+ <div data-toggle="collapse" href="#collapsedata" role="button" aria-expanded="false" aria-controls="collapsedata">
+ <span class="badge badge-dark">Air quality data</span>
+ </div>
+ <div class="collapse" id="collapsedata">
+ <div class="card-body">
+ <p class="card-text">
+
+For this tutorial, air quality data about :math:`NO_2` and Particulate
+matter less than 2.5 micrometers is used, made available by
+`openaq <https://openaq.org>`__ and downloaded using the
+`py-openaq <http://dhhagan.github.io/py-openaq/index.html>`__ package.
+The ``air_quality_no2_long.csv"`` data set provides :math:`NO_2` values
+for the measurement stations *FR04014*, *BETR801* and *London
+Westminster* in respectively Paris, Antwerp and London.
+
+.. raw:: html
+
+ </p>
+ <a href="https://github.com/pandas-dev/pandas/tree/master/doc/data/air_quality_no2_long.csv" class="btn btn-dark btn-sm">To raw data</a>
+ </div>
+ </div>
+
+.. ipython:: python
+
+ air_quality = pd.read_csv("data/air_quality_no2_long.csv")
+ air_quality = air_quality.rename(columns={"date.utc": "datetime"})
+ air_quality.head()
+
+.. ipython:: python
+
+ air_quality.city.unique()
+
+.. raw:: html
+
+ </li>
+ </ul>
+ </div>
+
+How to handle time series data with ease?
+-----------------------------------------
+
+Using pandas datetime properties
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to work with the dates in the column ``datetime`` as datetime objects instead of plain text
+
+.. ipython:: python
+
+ air_quality["datetime"] = pd.to_datetime(air_quality["datetime"])
+ air_quality["datetime"]
+
+Initially, the values in ``datetime`` are character strings and do not
+provide any datetime operations (e.g. extract the year, day of the
+week,…). By applying the ``to_datetime`` function, pandas interprets the
+strings and convert these to datetime (i.e. ``datetime64[ns, UTC]``)
+objects. In pandas we call these datetime objects similar to
+``datetime.datetime`` from the standard library a :class:`pandas.Timestamp`.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. note::
+ As many data sets do contain datetime information in one of
+ the columns, pandas input function like :func:`pandas.read_csv` and :func:`pandas.read_json`
+ can do the transformation to dates when reading the data using the
+ ``parse_dates`` parameter with a list of the columns to read as
+ Timestamp:
+
+ ::
+
+ pd.read_csv("../data/air_quality_no2_long.csv", parse_dates=["datetime"])
+
+Why are these :class:`pandas.Timestamp` objects useful. Let’s illustrate the added
+value with some example cases.
+
+ What is the start and end date of the time series data set working
+ with?
+
+.. ipython:: python
+
+ air_quality["datetime"].min(), air_quality["datetime"].max()
+
+Using :class:`pandas.Timestamp` for datetimes enable us to calculate with date
+information and make them comparable. Hence, we can use this to get the
+length of our time series:
+
+.. ipython:: python
+
+ air_quality["datetime"].max() - air_quality["datetime"].min()
+
+The result is a :class:`pandas.Timedelta` object, similar to ``datetime.timedelta``
+from the standard Python library and defining a time duration.
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+The different time concepts supported by pandas are explained in the user guide section on :ref:`time related concepts <timeseries.overview>`.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+I want to add a new column to the ``DataFrame`` containing only the month of the measurement
+
+.. ipython:: python
+
+ air_quality["month"] = air_quality["datetime"].dt.month
+ air_quality.head()
+
+By using ``Timestamp`` objects for dates, a lot of time-related
+properties are provided by pandas. For example the ``month``, but also
+``year``, ``weekofyear``, ``quarter``,… All of these properties are
+accessible by the ``dt`` accessor.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+An overview of the existing date properties is given in the
+:ref:`time and date components overview table <timeseries.components>`. More details about the ``dt`` accessor
+to return datetime like properties is explained in a dedicated section on the :ref:`dt accessor <basics.dt_accessors>`.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+What is the average :math:`NO_2` concentration for each day of the week for each of the measurement locations?
+
+.. ipython:: python
+
+ air_quality.groupby(
+ [air_quality["datetime"].dt.weekday, "location"])["value"].mean()
+
+Remember the split-apply-combine pattern provided by ``groupby`` from the
+:ref:`tutorial on statistics calculation <10min_tut_06_stats>`?
+Here, we want to calculate a given statistic (e.g. mean :math:`NO_2`)
+**for each weekday** and **for each measurement location**. To group on
+weekdays, we use the datetime property ``weekday`` (with Monday=0 and
+Sunday=6) of pandas ``Timestamp``, which is also accessible by the
+``dt`` accessor. The grouping on both locations and weekdays can be done
+to split the calculation of the mean on each of these combinations.
+
+.. danger::
+ As we are working with a very short time series in these
+ examples, the analysis does not provide a long-term representative
+ result!
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+Plot the typical :math:`NO_2` pattern during the day of our time series of all stations together. In other words, what is the average value for each hour of the day?
+
+.. ipython:: python
+
+ fig, axs = plt.subplots(figsize=(12, 4))
+ air_quality.groupby(
+ air_quality["datetime"].dt.hour)["value"].mean().plot(kind='bar',
+ rot=0,
+ ax=axs)
+ plt.xlabel("Hour of the day"); # custom x label using matplotlib
+ @savefig 09_bar_chart.png
+ plt.ylabel("$NO_2 (µg/m^3)$");
+
+Similar to the previous case, we want to calculate a given statistic
+(e.g. mean :math:`NO_2`) **for each hour of the day** and we can use the
+split-apply-combine approach again. For this case, the datetime property ``hour``
+of pandas ``Timestamp``, which is also accessible by the ``dt`` accessor.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Datetime as index
+~~~~~~~~~~~~~~~~~
+
+In the :ref:`tutorial on reshaping <10min_tut_07_reshape>`,
+:meth:`~pandas.pivot` was introduced to reshape the data table with each of the
+measurements locations as a separate column:
+
+.. ipython:: python
+
+ no_2 = air_quality.pivot(index="datetime", columns="location", values="value")
+ no_2.head()
+
+.. note::
+ By pivoting the data, the datetime information became the
+ index of the table. In general, setting a column as an index can be
+ achieved by the ``set_index`` function.
+
+Working with a datetime index (i.e. ``DatetimeIndex``) provides powerful
+functionalities. For example, we do not need the ``dt`` accessor to get
+the time series properties, but have these properties available on the
+index directly:
+
+.. ipython:: python
+
+ no_2.index.year, no_2.index.weekday
+
+Some other advantages are the convenient subsetting of time period or
+the adapted time scale on plots. Let’s apply this on our data.
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+Create a plot of the :math:`NO_2` values in the different stations from the 20th of May till the end of 21st of May
+
+.. ipython:: python
+ :okwarning:
+
+ @savefig 09_time_section.png
+ no_2["2019-05-20":"2019-05-21"].plot();
+
+By providing a **string that parses to a datetime**, a specific subset of the data can be selected on a ``DatetimeIndex``.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+More information on the ``DatetimeIndex`` and the slicing by using strings is provided in the section on :ref:`time series indexing <timeseries.datetimeindex>`.
+
+.. raw:: html
+
+ </div>
+
+Resample a time series to another frequency
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+Aggregate the current hourly time series values to the monthly maximum value in each of the stations.
+
+.. ipython:: python
+
+ monthly_max = no_2.resample("M").max()
+ monthly_max
+
+A very powerful method on time series data with a datetime index, is the
+ability to :meth:`~Series.resample` time series to another frequency (e.g.,
+converting secondly data into 5-minutely data).
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+The :meth:`~Series.resample` method is similar to a groupby operation:
+
+- it provides a time-based grouping, by using a string (e.g. ``M``,
+ ``5H``,…) that defines the target frequency
+- it requires an aggregation function such as ``mean``, ``max``,…
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+An overview of the aliases used to define time series frequencies is given in the :ref:`offset aliases overview table <timeseries.offset_aliases>`.
+
+.. raw:: html
+
+ </div>
+
+When defined, the frequency of the time series is provided by the
+``freq`` attribute:
+
+.. ipython:: python
+
+ monthly_max.index.freq
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+Make a plot of the daily median :math:`NO_2` value in each of the stations.
+
+.. ipython:: python
+ :okwarning:
+
+ @savefig 09_resample_mean.png
+ no_2.resample("D").mean().plot(style="-o", figsize=(10, 5));
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+More details on the power of time series ``resampling`` is provided in the user gudie section on :ref:`resampling <timeseries.resampling>`.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="shadow gs-callout gs-callout-remember">
+ <h4>REMEMBER</h4>
+
+- Valid date strings can be converted to datetime objects using
+ ``to_datetime`` function or as part of read functions.
+- Datetime objects in pandas supports calculations, logical operations
+ and convenient date-related properties using the ``dt`` accessor.
+- A ``DatetimeIndex`` contains these date-related properties and
+ supports convenient slicing.
+- ``Resample`` is a powerful method to change the frequency of a time
+ series.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+A full overview on time series is given in the pages on :ref:`time series and date functionality <timeseries>`.
+
+.. raw:: html
+
+ </div>
\ No newline at end of file
diff --git a/doc/source/getting_started/intro_tutorials/10_text_data.rst b/doc/source/getting_started/intro_tutorials/10_text_data.rst
new file mode 100644
index 0000000000000..3ff64875d807b
--- /dev/null
+++ b/doc/source/getting_started/intro_tutorials/10_text_data.rst
@@ -0,0 +1,278 @@
+.. _10min_tut_10_text:
+
+{{ header }}
+
+.. ipython:: python
+
+ import pandas as pd
+
+.. raw:: html
+
+ <div class="card gs-data">
+ <div class="card-header">
+ <div class="gs-data-title">
+ Data used for this tutorial:
+ </div>
+ </div>
+ <ul class="list-group list-group-flush">
+ <li class="list-group-item">
+ <div data-toggle="collapse" href="#collapsedata" role="button" aria-expanded="false" aria-controls="collapsedata">
+ <span class="badge badge-dark">Titanic data</span>
+ </div>
+ <div class="collapse" id="collapsedata">
+ <div class="card-body">
+ <p class="card-text">
+
+This tutorial uses the titanic data set, stored as CSV. The data
+consists of the following data columns:
+
+- PassengerId: Id of every passenger.
+- Survived: This feature have value 0 and 1. 0 for not survived and 1
+ for survived.
+- Pclass: There are 3 classes: Class 1, Class 2 and Class 3.
+- Name: Name of passenger.
+- Sex: Gender of passenger.
+- Age: Age of passenger.
+- SibSp: Indication that passenger have siblings and spouse.
+- Parch: Whether a passenger is alone or have family.
+- Ticket: Ticket number of passenger.
+- Fare: Indicating the fare.
+- Cabin: The cabin of passenger.
+- Embarked: The embarked category.
+
+.. raw:: html
+
+ </p>
+ <a href="https://github.com/pandas-dev/pandas/tree/master/doc/data/titanic.csv" class="btn btn-dark btn-sm">To raw data</a>
+ </div>
+ </div>
+
+.. ipython:: python
+
+ titanic = pd.read_csv("data/titanic.csv")
+ titanic.head()
+
+.. raw:: html
+
+ </li>
+ </ul>
+ </div>
+
+How to manipulate textual data?
+-------------------------------
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+Make all name characters lowercase
+
+.. ipython:: python
+
+ titanic["Name"].str.lower()
+
+To make each of the strings in the ``Name`` column lowercase, select the ``Name`` column
+(see :ref:`tutorial on selection of data <10min_tut_03_subset>`), add the ``str`` accessor and
+apply the ``lower`` method. As such, each of the strings is converted element wise.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+Similar to datetime objects in the :ref:`time series tutorial <10min_tut_09_timeseries>`
+having a ``dt`` accessor, a number of
+specialized string methods are available when using the ``str``
+accessor. These methods have in general matching names with the
+equivalent built-in string methods for single elements, but are applied
+element-wise (remember :ref:`element wise calculations <10min_tut_05_columns>`?)
+on each of the values of the columns.
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+Create a new column ``Surname`` that contains the surname of the Passengers by extracting the part before the comma.
+
+.. ipython:: python
+
+ titanic["Name"].str.split(",")
+
+Using the :meth:`Series.str.split` method, each of the values is returned as a list of
+2 elements. The first element is the part before the comma and the
+second element the part after the comma.
+
+.. ipython:: python
+
+ titanic["Surname"] = titanic["Name"].str.split(",").str.get(0)
+ titanic["Surname"]
+
+As we are only interested in the first part representing the surname
+(element 0), we can again use the ``str`` accessor and apply :meth:`Series.str.get` to
+extract the relevant part. Indeed, these string functions can be
+concatenated to combine multiple functions at once!
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+More information on extracting parts of strings is available in the user guide section on :ref:`splitting and replacing strings <text.split>`.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+Extract the passenger data about the Countess on board of the Titanic.
+
+.. ipython:: python
+
+ titanic["Name"].str.contains("Countess")
+
+.. ipython:: python
+
+ titanic[titanic["Name"].str.contains("Countess")]
+
+(*Interested in her story? See*\ `Wikipedia <https://en.wikipedia.org/wiki/No%C3%ABl_Leslie,_Countess_of_Rothes>`__\ *!*)
+
+The string method :meth:`Series.str.contains` checks for each of the values in the
+column ``Name`` if the string contains the word ``Countess`` and returns
+for each of the values ``True`` (``Countess`` is part of the name) of
+``False`` (``Countess`` is notpart of the name). This output can be used
+to subselect the data using conditional (boolean) indexing introduced in
+the :ref:`subsetting of data tutorial <10min_tut_03_subset>`. As there was
+only 1 Countess on the Titanic, we get one row as a result.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. note::
+ More powerful extractions on strings is supported, as the
+ :meth:`Series.str.contains` and :meth:`Series.str.extract` methods accepts `regular
+ expressions <https://docs.python.org/3/library/re.html>`__, but out of
+ scope of this tutorial.
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+More information on extracting parts of strings is available in the user guide section on :ref:`string matching and extracting <text.extract>`.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+Which passenger of the titanic has the longest name?
+
+.. ipython:: python
+
+ titanic["Name"].str.len()
+
+To get the longest name we first have to get the lenghts of each of the
+names in the ``Name`` column. By using pandas string methods, the
+:meth:`Series.str.len` function is applied to each of the names individually
+(element-wise).
+
+.. ipython:: python
+
+ titanic["Name"].str.len().idxmax()
+
+Next, we need to get the corresponding location, preferably the index
+label, in the table for which the name length is the largest. The
+:meth:`~Series.idxmax`` method does exactly that. It is not a string method and is
+applied to integers, so no ``str`` is used.
+
+.. ipython:: python
+
+ titanic.loc[titanic["Name"].str.len().idxmax(), "Name"]
+
+Based on the index name of the row (``307``) and the column (``Name``),
+we can do a selection using the ``loc`` operator, introduced in the
+`tutorial on subsetting <3_subset_data.ipynb>`__.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. raw:: html
+
+ <ul class="task-bullet">
+ <li>
+
+In the ‘Sex’ columns, replace values of ‘male’ by ‘M’ and all ‘female’ values by ‘F’
+
+.. ipython:: python
+
+ titanic["Sex_short"] = titanic["Sex"].replace({"male": "M",
+ "female": "F"})
+ titanic["Sex_short"]
+
+Whereas :meth:`~Series.replace` is not a string method, it provides a convenient way
+to use mappings or vocabularies to translate certain values. It requires
+a ``dictionary`` to define the mapping ``{from : to}``.
+
+.. raw:: html
+
+ </li>
+ </ul>
+
+.. warning::
+ There is also a :meth:`~Series.str.replace` methods available to replace a
+ specific set of characters. However, when having a mapping of multiple
+ values, this would become:
+
+ ::
+
+ titanic["Sex_short"] = titanic["Sex"].str.replace("female", "F")
+ titanic["Sex_short"] = titanic["Sex_short"].str.replace("male", "M")
+
+ This would become cumbersome and easily lead to mistakes. Just think (or
+ try out yourself) what would happen if those two statements are applied
+ in the opposite order…
+
+.. raw:: html
+
+ <div class="shadow gs-callout gs-callout-remember">
+ <h4>REMEMBER</h4>
+
+- String methods are available using the ``str`` accessor.
+- String methods work element wise and can be used for conditional
+ indexing.
+- The ``replace`` method is a convenient method to convert values
+ according to a given dictionary.
+
+.. raw:: html
+
+ </div>
+
+.. raw:: html
+
+ <div class="d-flex flex-row gs-torefguide">
+ <span class="badge badge-info">To user guide</span>
+
+A full overview is provided in the user guide pages on :ref:`working with text data <text>`.
+
+.. raw:: html
+
+ </div>
diff --git a/doc/source/getting_started/intro_tutorials/index.rst b/doc/source/getting_started/intro_tutorials/index.rst
new file mode 100644
index 0000000000000..28e7610866461
--- /dev/null
+++ b/doc/source/getting_started/intro_tutorials/index.rst
@@ -0,0 +1,22 @@
+{{ header }}
+
+.. _10times1minute:
+
+=========================
+Getting started tutorials
+=========================
+
+.. toctree::
+ :maxdepth: 1
+
+ 01_table_oriented
+ 02_read_write
+ 03_subset_data
+ 04_plotting
+ 05_add_columns
+ 06_calculate_statistics
+ 07_reshape_table_layout
+ 08_combine_dataframes
+ 09_timeseries
+ 10_text_data
+
diff --git a/doc/source/index.rst.template b/doc/source/index.rst.template
index 820a9d6285e0e..5428239ed2e27 100644
--- a/doc/source/index.rst.template
+++ b/doc/source/index.rst.template
@@ -104,6 +104,7 @@ programming language.
{% if single_doc and single_doc.endswith('.rst') -%}
.. toctree::
:maxdepth: 3
+ :titlesonly:
{{ single_doc[:-4] }}
{% elif single_doc %}
@@ -115,6 +116,7 @@ programming language.
.. toctree::
:maxdepth: 3
:hidden:
+ :titlesonly:
{% endif %}
{% if not single_doc %}
What's New in 1.0.1 <whatsnew/v1.0.1>
diff --git a/doc/source/user_guide/reshaping.rst b/doc/source/user_guide/reshaping.rst
index b28354cd8b5f2..bbec9a770477d 100644
--- a/doc/source/user_guide/reshaping.rst
+++ b/doc/source/user_guide/reshaping.rst
@@ -6,6 +6,8 @@
Reshaping and pivot tables
**************************
+.. _reshaping.reshaping:
+
Reshaping by pivoting DataFrame objects
---------------------------------------
@@ -314,6 +316,8 @@ user-friendly.
dft
pd.wide_to_long(dft, ["A", "B"], i="id", j="year")
+.. _reshaping.combine_with_groupby:
+
Combining with stats and GroupBy
--------------------------------
diff --git a/doc/source/user_guide/text.rst b/doc/source/user_guide/text.rst
index 88c86ac212f11..2e4d0fecaf5cf 100644
--- a/doc/source/user_guide/text.rst
+++ b/doc/source/user_guide/text.rst
@@ -189,12 +189,11 @@ and replacing any remaining whitespaces with underscores:
Generally speaking, the ``.str`` accessor is intended to work only on strings. With very few
exceptions, other uses are not supported, and may be disabled at a later point.
+.. _text.split:
Splitting and replacing strings
-------------------------------
-.. _text.split:
-
Methods like ``split`` return a Series of lists:
.. ipython:: python
| Backport PR #31156: DOC: Update of the 'getting started' pages in the sphinx section of the documentation | https://api.github.com/repos/pandas-dev/pandas/pulls/32052 | 2020-02-17T11:51:00Z | 2020-02-18T15:42:01Z | 2020-02-18T15:42:01Z | 2020-02-18T15:42:02Z |
WEB: update blog link to only include my pandas blog posts | diff --git a/web/pandas/config.yml b/web/pandas/config.yml
index 83eb152c9d944..a52c580f23530 100644
--- a/web/pandas/config.yml
+++ b/web/pandas/config.yml
@@ -54,7 +54,7 @@ blog:
- https://dev.pandas.io/pandas-blog/feeds/all.atom.xml
- https://wesmckinney.com/feeds/pandas.atom.xml
- https://tomaugspurger.github.io/feed
- - https://jorisvandenbossche.github.io/feeds/all.atom.xml
+ - https://jorisvandenbossche.github.io/feeds/pandas.atom.xml
- https://datapythonista.github.io/blog/feeds/pandas.atom.xml
- https://numfocus.org/tag/pandas/feed/
maintainers:
| https://api.github.com/repos/pandas-dev/pandas/pulls/32051 | 2020-02-17T10:42:48Z | 2020-02-18T08:16:33Z | 2020-02-18T08:16:33Z | 2020-02-18T08:16:38Z | |
use numexpr for Series comparisons | diff --git a/pandas/core/ops/__init__.py b/pandas/core/ops/__init__.py
index 1ee4c8e85be6b..d0adf2da04db3 100644
--- a/pandas/core/ops/__init__.py
+++ b/pandas/core/ops/__init__.py
@@ -510,6 +510,7 @@ def _comp_method_SERIES(cls, op, special):
Wrapper function for Series arithmetic operations, to avoid
code duplication.
"""
+ str_rep = _get_opstr(op)
op_name = _get_op_name(op, special)
@unpack_zerodim_and_defer(op_name)
@@ -523,7 +524,7 @@ def wrapper(self, other):
lvalues = extract_array(self, extract_numpy=True)
rvalues = extract_array(other, extract_numpy=True)
- res_values = comparison_op(lvalues, rvalues, op)
+ res_values = comparison_op(lvalues, rvalues, op, str_rep)
return _construct_result(self, res_values, index=self.index, name=res_name)
diff --git a/pandas/core/ops/array_ops.py b/pandas/core/ops/array_ops.py
index 10e3f32de3958..b216a927f65b3 100644
--- a/pandas/core/ops/array_ops.py
+++ b/pandas/core/ops/array_ops.py
@@ -126,7 +126,7 @@ def na_op(x, y):
return na_op
-def na_arithmetic_op(left, right, op, str_rep: str):
+def na_arithmetic_op(left, right, op, str_rep: Optional[str], is_cmp: bool = False):
"""
Return the result of evaluating op on the passed in values.
@@ -137,6 +137,8 @@ def na_arithmetic_op(left, right, op, str_rep: str):
left : np.ndarray
right : np.ndarray or scalar
str_rep : str or None
+ is_cmp : bool, default False
+ If this a comparison operation.
Returns
-------
@@ -151,8 +153,18 @@ def na_arithmetic_op(left, right, op, str_rep: str):
try:
result = expressions.evaluate(op, str_rep, left, right)
except TypeError:
+ if is_cmp:
+ # numexpr failed on comparison op, e.g. ndarray[float] > datetime
+ # In this case we do not fall back to the masked op, as that
+ # will handle complex numbers incorrectly, see GH#32047
+ raise
result = masked_arith_op(left, right, op)
+ if is_cmp and (is_scalar(result) or result is NotImplemented):
+ # numpy returned a scalar instead of operating element-wise
+ # e.g. numeric array vs str
+ return invalid_comparison(left, right, op)
+
return missing.dispatch_fill_zeros(op, left, right, result)
@@ -199,7 +211,9 @@ def arithmetic_op(left: ArrayLike, right: Any, op, str_rep: str):
return res_values
-def comparison_op(left: ArrayLike, right: Any, op) -> ArrayLike:
+def comparison_op(
+ left: ArrayLike, right: Any, op, str_rep: Optional[str] = None,
+) -> ArrayLike:
"""
Evaluate a comparison operation `=`, `!=`, `>=`, `>`, `<=`, or `<`.
@@ -244,16 +258,8 @@ def comparison_op(left: ArrayLike, right: Any, op) -> ArrayLike:
res_values = comp_method_OBJECT_ARRAY(op, lvalues, rvalues)
else:
- op_name = f"__{op.__name__}__"
- method = getattr(lvalues, op_name)
with np.errstate(all="ignore"):
- res_values = method(rvalues)
-
- if res_values is NotImplemented:
- res_values = invalid_comparison(lvalues, rvalues, op)
- if is_scalar(res_values):
- typ = type(rvalues)
- raise TypeError(f"Could not compare {typ} type with Series")
+ res_values = na_arithmetic_op(lvalues, rvalues, op, str_rep, is_cmp=True)
return res_values
@@ -380,7 +386,7 @@ def get_array_op(op, str_rep: Optional[str] = None):
"""
op_name = op.__name__.strip("_")
if op_name in {"eq", "ne", "lt", "le", "gt", "ge"}:
- return partial(comparison_op, op=op)
+ return partial(comparison_op, op=op, str_rep=str_rep)
elif op_name in {"and", "or", "xor", "rand", "ror", "rxor"}:
return partial(logical_op, op=op)
else:
diff --git a/pandas/tests/arithmetic/test_numeric.py b/pandas/tests/arithmetic/test_numeric.py
index 51d09a92773b1..d4baf2f374cdf 100644
--- a/pandas/tests/arithmetic/test_numeric.py
+++ b/pandas/tests/arithmetic/test_numeric.py
@@ -66,8 +66,7 @@ def test_df_numeric_cmp_dt64_raises(self):
ts = pd.Timestamp.now()
df = pd.DataFrame({"x": range(5)})
- msg = "Invalid comparison between dtype=int64 and Timestamp"
-
+ msg = "'[<>]' not supported between instances of 'Timestamp' and 'int'"
with pytest.raises(TypeError, match=msg):
df > ts
with pytest.raises(TypeError, match=msg):
| subsumes #31984. | https://api.github.com/repos/pandas-dev/pandas/pulls/32047 | 2020-02-17T03:31:33Z | 2020-02-26T12:53:46Z | 2020-02-26T12:53:46Z | 2020-02-26T15:36:19Z |
Use fixtures in pandas/tests/base | diff --git a/pandas/conftest.py b/pandas/conftest.py
index 7851cba9cd91a..0d3f8b034beb7 100644
--- a/pandas/conftest.py
+++ b/pandas/conftest.py
@@ -967,7 +967,7 @@ def __len__(self):
"uint": tm.makeUIntIndex(100),
"range": tm.makeRangeIndex(100),
"float": tm.makeFloatIndex(100),
- "bool": tm.makeBoolIndex(2),
+ "bool": tm.makeBoolIndex(10),
"categorical": tm.makeCategoricalIndex(100),
"interval": tm.makeIntervalIndex(100),
"empty": Index([]),
@@ -978,6 +978,15 @@ def __len__(self):
@pytest.fixture(params=indices_dict.keys())
def indices(request):
+ """
+ Fixture for many "simple" kinds of indices.
+
+ These indices are unlikely to cover corner cases, e.g.
+ - no names
+ - no NaTs/NaNs
+ - no values near implementation bounds
+ - ...
+ """
# copy to avoid mutation, e.g. setting .name
return indices_dict[request.param].copy()
@@ -995,6 +1004,14 @@ def _create_series(index):
}
+@pytest.fixture
+def series_with_simple_index(indices):
+ """
+ Fixture for tests on series with changing types of indices.
+ """
+ return _create_series(indices)
+
+
_narrow_dtypes = [
np.float16,
np.float32,
diff --git a/pandas/tests/base/test_ops.py b/pandas/tests/base/test_ops.py
index 9deb56f070d56..625d559001e72 100644
--- a/pandas/tests/base/test_ops.py
+++ b/pandas/tests/base/test_ops.py
@@ -137,227 +137,238 @@ def setup_method(self, method):
self.is_valid_objs = self.objs
self.not_valid_objs = []
- def test_none_comparison(self):
+ def test_none_comparison(self, series_with_simple_index):
+ series = series_with_simple_index
+ if isinstance(series.index, IntervalIndex):
+ # IntervalIndex breaks on "series[0] = np.nan" below
+ pytest.skip("IntervalIndex doesn't support assignment")
+ if len(series) < 1:
+ pytest.skip("Test doesn't make sense on empty data")
# bug brought up by #1079
# changed from TypeError in 0.17.0
- for o in self.is_valid_objs:
- if isinstance(o, Series):
+ series[0] = np.nan
+
+ # noinspection PyComparisonWithNone
+ result = series == None # noqa
+ assert not result.iat[0]
+ assert not result.iat[1]
+
+ # noinspection PyComparisonWithNone
+ result = series != None # noqa
+ assert result.iat[0]
+ assert result.iat[1]
+
+ result = None == series # noqa
+ assert not result.iat[0]
+ assert not result.iat[1]
+
+ result = None != series # noqa
+ assert result.iat[0]
+ assert result.iat[1]
+
+ if is_datetime64_dtype(series) or is_datetime64tz_dtype(series):
+ # Following DatetimeIndex (and Timestamp) convention,
+ # inequality comparisons with Series[datetime64] raise
+ msg = "Invalid comparison"
+ with pytest.raises(TypeError, match=msg):
+ None > series
+ with pytest.raises(TypeError, match=msg):
+ series > None
+ else:
+ result = None > series
+ assert not result.iat[0]
+ assert not result.iat[1]
- o[0] = np.nan
-
- # noinspection PyComparisonWithNone
- result = o == None # noqa
- assert not result.iat[0]
- assert not result.iat[1]
-
- # noinspection PyComparisonWithNone
- result = o != None # noqa
- assert result.iat[0]
- assert result.iat[1]
-
- result = None == o # noqa
- assert not result.iat[0]
- assert not result.iat[1]
-
- result = None != o # noqa
- assert result.iat[0]
- assert result.iat[1]
-
- if is_datetime64_dtype(o) or is_datetime64tz_dtype(o):
- # Following DatetimeIndex (and Timestamp) convention,
- # inequality comparisons with Series[datetime64] raise
- msg = "Invalid comparison"
- with pytest.raises(TypeError, match=msg):
- None > o
- with pytest.raises(TypeError, match=msg):
- o > None
- else:
- result = None > o
- assert not result.iat[0]
- assert not result.iat[1]
+ result = series < None
+ assert not result.iat[0]
+ assert not result.iat[1]
- result = o < None
- assert not result.iat[0]
- assert not result.iat[1]
+ def test_ndarray_compat_properties(self, index_or_series_obj):
+ obj = index_or_series_obj
- def test_ndarray_compat_properties(self):
+ # Check that we work.
+ for p in ["shape", "dtype", "T", "nbytes"]:
+ assert getattr(obj, p, None) is not None
- for o in self.objs:
- # Check that we work.
- for p in ["shape", "dtype", "T", "nbytes"]:
- assert getattr(o, p, None) is not None
+ # deprecated properties
+ for p in ["flags", "strides", "itemsize", "base", "data"]:
+ assert not hasattr(obj, p)
- # deprecated properties
- for p in ["flags", "strides", "itemsize", "base", "data"]:
- assert not hasattr(o, p)
+ msg = "can only convert an array of size 1 to a Python scalar"
+ with pytest.raises(ValueError, match=msg):
+ obj.item() # len > 1
- msg = "can only convert an array of size 1 to a Python scalar"
- with pytest.raises(ValueError, match=msg):
- o.item() # len > 1
-
- assert o.ndim == 1
- assert o.size == len(o)
+ assert obj.ndim == 1
+ assert obj.size == len(obj)
assert Index([1]).item() == 1
assert Series([1]).item() == 1
- def test_value_counts_unique_nunique(self):
- for orig in self.objs:
- o = orig.copy()
- klass = type(o)
- values = o._values
-
- if isinstance(values, Index):
- # reset name not to affect latter process
- values.name = None
-
- # create repeated values, 'n'th element is repeated by n+1 times
- # skip boolean, because it only has 2 values at most
- if isinstance(o, Index) and o.is_boolean():
- continue
- elif isinstance(o, Index):
- expected_index = Index(o[::-1])
- expected_index.name = None
- o = o.repeat(range(1, len(o) + 1))
- o.name = "a"
- else:
- expected_index = Index(values[::-1])
- idx = o.index.repeat(range(1, len(o) + 1))
- # take-based repeat
- indices = np.repeat(np.arange(len(o)), range(1, len(o) + 1))
- rep = values.take(indices)
- o = klass(rep, index=idx, name="a")
-
- # check values has the same dtype as the original
- assert o.dtype == orig.dtype
-
- expected_s = Series(
- range(10, 0, -1), index=expected_index, dtype="int64", name="a"
+ def test_value_counts_unique_nunique(self, index_or_series_obj):
+ orig = index_or_series_obj
+ obj = orig.copy()
+ klass = type(obj)
+ values = obj._values
+
+ if orig.duplicated().any():
+ pytest.xfail(
+ "The test implementation isn't flexible enough to deal"
+ " with duplicated values. This isn't a bug in the"
+ " application code, but in the test code."
)
- result = o.value_counts()
- tm.assert_series_equal(result, expected_s)
- assert result.index.name is None
- assert result.name == "a"
+ # create repeated values, 'n'th element is repeated by n+1 times
+ if isinstance(obj, Index):
+ expected_index = Index(obj[::-1])
+ expected_index.name = None
+ obj = obj.repeat(range(1, len(obj) + 1))
+ else:
+ expected_index = Index(values[::-1])
+ idx = obj.index.repeat(range(1, len(obj) + 1))
+ # take-based repeat
+ indices = np.repeat(np.arange(len(obj)), range(1, len(obj) + 1))
+ rep = values.take(indices)
+ obj = klass(rep, index=idx)
+
+ # check values has the same dtype as the original
+ assert obj.dtype == orig.dtype
+
+ expected_s = Series(
+ range(len(orig), 0, -1), index=expected_index, dtype="int64"
+ )
- result = o.unique()
- if isinstance(o, Index):
- assert isinstance(result, type(o))
- tm.assert_index_equal(result, orig)
- assert result.dtype == orig.dtype
- elif is_datetime64tz_dtype(o):
- # datetimetz Series returns array of Timestamp
- assert result[0] == orig[0]
- for r in result:
- assert isinstance(r, Timestamp)
-
- tm.assert_numpy_array_equal(
- result.astype(object), orig._values.astype(object)
- )
- else:
- tm.assert_numpy_array_equal(result, orig.values)
- assert result.dtype == orig.dtype
+ result = obj.value_counts()
+ tm.assert_series_equal(result, expected_s)
+ assert result.index.name is None
+
+ result = obj.unique()
+ if isinstance(obj, Index):
+ assert isinstance(result, type(obj))
+ tm.assert_index_equal(result, orig)
+ assert result.dtype == orig.dtype
+ elif is_datetime64tz_dtype(obj):
+ # datetimetz Series returns array of Timestamp
+ assert result[0] == orig[0]
+ for r in result:
+ assert isinstance(r, Timestamp)
+
+ tm.assert_numpy_array_equal(
+ result.astype(object), orig._values.astype(object)
+ )
+ else:
+ tm.assert_numpy_array_equal(result, orig.values)
+ assert result.dtype == orig.dtype
- assert o.nunique() == len(np.unique(o.values))
+ # dropna=True would break for MultiIndex
+ assert obj.nunique(dropna=False) == len(np.unique(obj.values))
@pytest.mark.parametrize("null_obj", [np.nan, None])
- def test_value_counts_unique_nunique_null(self, null_obj):
-
- for orig in self.objs:
- o = orig.copy()
- klass = type(o)
- values = o._ndarray_values
-
- if not allow_na_ops(o):
- continue
-
- # special assign to the numpy array
- if is_datetime64tz_dtype(o):
- if isinstance(o, DatetimeIndex):
- v = o.asi8
- v[0:2] = iNaT
- values = o._shallow_copy(v)
- else:
- o = o.copy()
- o[0:2] = pd.NaT
- values = o._values
-
- elif needs_i8_conversion(o):
- values[0:2] = iNaT
- values = o._shallow_copy(values)
+ def test_value_counts_unique_nunique_null(self, null_obj, index_or_series_obj):
+ orig = index_or_series_obj
+ obj = orig.copy()
+ klass = type(obj)
+ values = obj._ndarray_values
+ num_values = len(orig)
+
+ if not allow_na_ops(obj):
+ pytest.skip("type doesn't allow for NA operations")
+ elif isinstance(orig, (pd.CategoricalIndex, pd.IntervalIndex)):
+ pytest.skip(f"values of {klass} cannot be changed")
+ elif isinstance(orig, pd.MultiIndex):
+ pytest.skip("MultiIndex doesn't support isna")
+
+ # special assign to the numpy array
+ if is_datetime64tz_dtype(obj):
+ if isinstance(obj, DatetimeIndex):
+ v = obj.asi8
+ v[0:2] = iNaT
+ values = obj._shallow_copy(v)
else:
- values[0:2] = null_obj
- # check values has the same dtype as the original
-
- assert values.dtype == o.dtype
+ obj = obj.copy()
+ obj[0:2] = pd.NaT
+ values = obj._values
- # create repeated values, 'n'th element is repeated by n+1
- # times
- if isinstance(o, (DatetimeIndex, PeriodIndex)):
- expected_index = o.copy()
- expected_index.name = None
+ elif needs_i8_conversion(obj):
+ values[0:2] = iNaT
+ values = obj._shallow_copy(values)
+ else:
+ values[0:2] = null_obj
- # attach name to klass
- o = klass(values.repeat(range(1, len(o) + 1)))
- o.name = "a"
- else:
- if isinstance(o, DatetimeIndex):
- expected_index = orig._values._shallow_copy(values)
- else:
- expected_index = Index(values)
- expected_index.name = None
- o = o.repeat(range(1, len(o) + 1))
- o.name = "a"
-
- # check values has the same dtype as the original
- assert o.dtype == orig.dtype
- # check values correctly have NaN
- nanloc = np.zeros(len(o), dtype=np.bool)
- nanloc[:3] = True
- if isinstance(o, Index):
- tm.assert_numpy_array_equal(pd.isna(o), nanloc)
- else:
- exp = Series(nanloc, o.index, name="a")
- tm.assert_series_equal(pd.isna(o), exp)
-
- expected_s_na = Series(
- list(range(10, 2, -1)) + [3],
- index=expected_index[9:0:-1],
- dtype="int64",
- name="a",
- )
- expected_s = Series(
- list(range(10, 2, -1)),
- index=expected_index[9:1:-1],
- dtype="int64",
- name="a",
- )
+ # check values has the same dtype as the original
+ assert values.dtype == obj.dtype
- result_s_na = o.value_counts(dropna=False)
- tm.assert_series_equal(result_s_na, expected_s_na)
- assert result_s_na.index.name is None
- assert result_s_na.name == "a"
- result_s = o.value_counts()
- tm.assert_series_equal(o.value_counts(), expected_s)
- assert result_s.index.name is None
- assert result_s.name == "a"
+ # create repeated values, 'n'th element is repeated by n+1
+ # times
+ if isinstance(obj, (DatetimeIndex, PeriodIndex)):
+ expected_index = obj.copy()
+ expected_index.name = None
- result = o.unique()
- if isinstance(o, Index):
- tm.assert_index_equal(result, Index(values[1:], name="a"))
- elif is_datetime64tz_dtype(o):
- # unable to compare NaT / nan
- tm.assert_extension_array_equal(result[1:], values[2:])
- assert result[0] is pd.NaT
+ # attach name to klass
+ obj = klass(values.repeat(range(1, len(obj) + 1)))
+ obj.name = "a"
+ else:
+ if isinstance(obj, DatetimeIndex):
+ expected_index = orig._values._shallow_copy(values)
else:
- tm.assert_numpy_array_equal(result[1:], values[2:])
-
- assert pd.isna(result[0])
- assert result.dtype == orig.dtype
+ expected_index = Index(values)
+ expected_index.name = None
+ obj = obj.repeat(range(1, len(obj) + 1))
+ obj.name = "a"
+
+ # check values has the same dtype as the original
+ assert obj.dtype == orig.dtype
+
+ # check values correctly have NaN
+ nanloc = np.zeros(len(obj), dtype=np.bool)
+ nanloc[:3] = True
+ if isinstance(obj, Index):
+ tm.assert_numpy_array_equal(pd.isna(obj), nanloc)
+ else:
+ exp = Series(nanloc, obj.index, name="a")
+ tm.assert_series_equal(pd.isna(obj), exp)
+
+ expected_data = list(range(num_values, 2, -1))
+ expected_data_na = expected_data.copy()
+ if expected_data_na:
+ expected_data_na.append(3)
+ expected_s_na = Series(
+ expected_data_na,
+ index=expected_index[num_values - 1 : 0 : -1],
+ dtype="int64",
+ name="a",
+ )
+ expected_s = Series(
+ expected_data,
+ index=expected_index[num_values - 1 : 1 : -1],
+ dtype="int64",
+ name="a",
+ )
- assert o.nunique() == 8
- assert o.nunique(dropna=False) == 9
+ result_s_na = obj.value_counts(dropna=False)
+ tm.assert_series_equal(result_s_na, expected_s_na)
+ assert result_s_na.index.name is None
+ assert result_s_na.name == "a"
+ result_s = obj.value_counts()
+ tm.assert_series_equal(obj.value_counts(), expected_s)
+ assert result_s.index.name is None
+ assert result_s.name == "a"
+
+ result = obj.unique()
+ if isinstance(obj, Index):
+ tm.assert_index_equal(result, Index(values[1:], name="a"))
+ elif is_datetime64tz_dtype(obj):
+ # unable to compare NaT / nan
+ tm.assert_extension_array_equal(result[1:], values[2:])
+ assert result[0] is pd.NaT
+ elif len(obj) > 0:
+ tm.assert_numpy_array_equal(result[1:], values[2:])
+
+ assert pd.isna(result[0])
+ assert result.dtype == orig.dtype
+
+ assert obj.nunique() == max(0, num_values - 2)
+ assert obj.nunique(dropna=False) == max(0, num_values - 1)
def test_value_counts_inferred(self, index_or_series):
klass = index_or_series
diff --git a/pandas/tests/indexes/common.py b/pandas/tests/indexes/common.py
index 2073aa0727809..a7437b39872be 100644
--- a/pandas/tests/indexes/common.py
+++ b/pandas/tests/indexes/common.py
@@ -514,12 +514,12 @@ def test_union_base(self, indices):
@pytest.mark.parametrize("sort", [None, False])
def test_difference_base(self, sort, indices):
- if isinstance(indices, CategoricalIndex):
- return
-
first = indices[2:]
second = indices[:4]
- answer = indices[4:]
+ if isinstance(indices, CategoricalIndex) or indices.is_boolean():
+ answer = []
+ else:
+ answer = indices[4:]
result = first.difference(second, sort)
assert tm.equalContents(result, answer)
| part of #23877
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
**Note:** The diff is a bit inflated. Most changes are just indentation because for loops are replaced by a parametrized fixture. | https://api.github.com/repos/pandas-dev/pandas/pulls/32046 | 2020-02-17T00:50:11Z | 2020-02-23T17:06:03Z | 2020-02-23T17:06:03Z | 2020-02-23T17:46:40Z |
CLN: 29547 replace .format() with f-strings | diff --git a/scripts/find_commits_touching_func.py b/scripts/find_commits_touching_func.py
index 85675cb6df42b..ba2f54dd9bbe3 100755
--- a/scripts/find_commits_touching_func.py
+++ b/scripts/find_commits_touching_func.py
@@ -96,13 +96,7 @@ def get_hits(defname, files=()):
cs = set()
for f in files:
try:
- r = sh.git(
- "blame",
- "-L",
- r"/def\s*{start}/,/def/".format(start=defname),
- f,
- _tty_out=False,
- )
+ r = sh.git("blame", "-L", rf"/def\s*{defname}/,/def/", f, _tty_out=False,)
except sh.ErrorReturnCode_128:
logger.debug("no matches in %s" % f)
continue
@@ -117,14 +111,7 @@ def get_hits(defname, files=()):
def get_commit_info(c, fmt, sep="\t"):
- r = sh.git(
- "log",
- "--format={}".format(fmt),
- "{}^..{}".format(c, c),
- "-n",
- "1",
- _tty_out=False,
- )
+ r = sh.git("log", f"--format={fmt}", f"{c}^..{c}", "-n", "1", _tty_out=False,)
return str(r).split(sep)
@@ -203,10 +190,14 @@ def sorter(i):
h, s, d = get_commit_vitals(hit.commit)
p = hit.path.split(os.path.realpath(os.curdir) + os.path.sep)[-1]
- fmt = "{:%d} {:10} {:<%d} {:<%d}" % (HASH_LEN, SUBJ_LEN, PATH_LEN)
if len(s) > SUBJ_LEN:
s = s[: SUBJ_LEN - 5] + " ..."
- print(fmt.format(h[:HASH_LEN], d.isoformat()[:10], s, p[-20:]))
+ print(
+ f"{h[:HASH_LEN]:{HASH_LEN}} "
+ f"{d.isoformat()[:10]:10} "
+ f"{s:<{SUBJ_LEN}} "
+ f"{p[-20:]:<{PATH_LEN}}"
+ )
print("\n")
| This PR replaces .format() with f-strings as requested in https://github.com/pandas-dev/pandas/issues/29547.
It did this replacement in scripts/find_commits_touching_func.py
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
| https://api.github.com/repos/pandas-dev/pandas/pulls/32044 | 2020-02-16T20:58:54Z | 2020-02-18T09:19:41Z | null | 2020-02-18T09:19:42Z |
DOC: Mention black and PEP8 in pandas style guide | diff --git a/doc/source/development/code_style.rst b/doc/source/development/code_style.rst
index bcddc033a61f5..17f8783f71bfb 100644
--- a/doc/source/development/code_style.rst
+++ b/doc/source/development/code_style.rst
@@ -9,6 +9,12 @@ pandas code style guide
.. contents:: Table of contents:
:local:
+*pandas* follows the `PEP8 <https://www.python.org/dev/peps/pep-0008/>`_
+standard and uses `Black <https://black.readthedocs.io/en/stable/>`_
+and `Flake8 <https://flake8.pycqa.org/en/latest/>`_ to ensure a
+consistent code format throughout the project. For details see the
+:ref:`contributing guide to pandas<contributing.code-formatting>`.
+
Patterns
========
| - [ ] closes #31828
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32043 | 2020-02-16T18:51:03Z | 2020-02-19T01:46:26Z | 2020-02-19T01:46:26Z | 2020-02-19T01:46:33Z |
CLN: clean-up show_versions and consistently use null for json output | diff --git a/pandas/_typing.py b/pandas/_typing.py
index e2858441605f7..3b7392f781525 100644
--- a/pandas/_typing.py
+++ b/pandas/_typing.py
@@ -64,7 +64,7 @@
Label = Optional[Hashable]
Level = Union[Label, int]
Ordered = Optional[bool]
-JSONSerializable = Union[PythonScalar, List, Dict]
+JSONSerializable = Optional[Union[PythonScalar, List, Dict]]
Axes = Collection
# For functions like rename that convert one label to another
diff --git a/pandas/util/_print_versions.py b/pandas/util/_print_versions.py
index f9502cc22b0c6..7fc85a04e7d84 100644
--- a/pandas/util/_print_versions.py
+++ b/pandas/util/_print_versions.py
@@ -5,8 +5,9 @@
import platform
import struct
import sys
-from typing import List, Optional, Tuple, Union
+from typing import Dict, Optional, Union
+from pandas._typing import JSONSerializable
from pandas.compat._optional import VERSIONS, _get_version, import_optional_dependency
@@ -21,43 +22,32 @@ def _get_commit_hash() -> Optional[str]:
return versions["full-revisionid"]
-def get_sys_info() -> List[Tuple[str, Optional[Union[str, int]]]]:
+def _get_sys_info() -> Dict[str, JSONSerializable]:
"""
- Returns system information as a list
+ Returns system information as a JSON serializable dictionary.
+ """
+ uname_result = platform.uname()
+ language_code, encoding = locale.getlocale()
+ return {
+ "commit": _get_commit_hash(),
+ "python": ".".join(str(i) for i in sys.version_info),
+ "python-bits": struct.calcsize("P") * 8,
+ "OS": uname_result.system,
+ "OS-release": uname_result.release,
+ "Version": uname_result.version,
+ "machine": uname_result.machine,
+ "processor": uname_result.processor,
+ "byteorder": sys.byteorder,
+ "LC_ALL": os.environ.get("LC_ALL"),
+ "LANG": os.environ.get("LANG"),
+ "LOCALE": {"language-code": language_code, "encoding": encoding},
+ }
+
+
+def _get_dependency_info() -> Dict[str, JSONSerializable]:
+ """
+ Returns dependency information as a JSON serializable dictionary.
"""
- blob: List[Tuple[str, Optional[Union[str, int]]]] = []
-
- # get full commit hash
- commit = _get_commit_hash()
-
- blob.append(("commit", commit))
-
- try:
- (sysname, nodename, release, version, machine, processor) = platform.uname()
- blob.extend(
- [
- ("python", ".".join(map(str, sys.version_info))),
- ("python-bits", struct.calcsize("P") * 8),
- ("OS", f"{sysname}"),
- ("OS-release", f"{release}"),
- # FIXME: dont leave commented-out
- # ("Version", f"{version}"),
- ("machine", f"{machine}"),
- ("processor", f"{processor}"),
- ("byteorder", f"{sys.byteorder}"),
- ("LC_ALL", f"{os.environ.get('LC_ALL', 'None')}"),
- ("LANG", f"{os.environ.get('LANG', 'None')}"),
- ("LOCALE", ".".join(map(str, locale.getlocale()))),
- ]
- )
- except (KeyError, ValueError):
- pass
-
- return blob
-
-
-def show_versions(as_json=False):
- sys_info = get_sys_info()
deps = [
"pandas",
# required
@@ -86,39 +76,45 @@ def show_versions(as_json=False):
"IPython",
"pandas_datareader",
]
-
deps.extend(list(VERSIONS))
- deps_blob = []
+ result: Dict[str, JSONSerializable] = {}
for modname in deps:
mod = import_optional_dependency(
modname, raise_on_missing=False, on_version="ignore"
)
- ver: Optional[str]
- if mod:
- ver = _get_version(mod)
- else:
- ver = None
- deps_blob.append((modname, ver))
+ result[modname] = _get_version(mod) if mod else None
+ return result
+
+
+def show_versions(as_json: Union[str, bool] = False) -> None:
+ sys_info = _get_sys_info()
+ deps = _get_dependency_info()
if as_json:
- j = dict(system=dict(sys_info), dependencies=dict(deps_blob))
+ j = dict(system=sys_info, dependencies=deps)
if as_json is True:
print(j)
else:
+ assert isinstance(as_json, str) # needed for mypy
with codecs.open(as_json, "wb", encoding="utf8") as f:
json.dump(j, f, indent=2)
else:
+ assert isinstance(sys_info["LOCALE"], dict) # needed for mypy
+ language_code = sys_info["LOCALE"]["language-code"]
+ encoding = sys_info["LOCALE"]["encoding"]
+ sys_info["LOCALE"] = f"{language_code}.{encoding}"
+
maxlen = max(len(x) for x in deps)
print("\nINSTALLED VERSIONS")
print("------------------")
- for k, stat in sys_info:
- print(f"{k:<{maxlen}}: {stat}")
+ for k, v in sys_info.items():
+ print(f"{k:<{maxlen}}: {v}")
print("")
- for k, stat in deps_blob:
- print(f"{k:<{maxlen}}: {stat}")
+ for k, v in deps.items():
+ print(f"{k:<{maxlen}}: {v}")
def main() -> int:
| note changes to LC_ALL and LOCALE, null is already used for dependencies on master, see blosc and feather.
master
```
{
"system": {
"commit": "a7ecced88a42c426bf61016c0131cab023c0cdff",
"python": "3.7.5.final.0",
"python-bits": 64,
"OS": "Windows",
"OS-release": "10",
"machine": "AMD64",
"processor": "Intel64 Family 6 Model 58 Stepping 9, GenuineIntel",
"byteorder": "little",
"LC_ALL": "None",
"LANG": "en_GB.UTF-8",
"LOCALE": "None.None"
},
"dependencies": {
"pandas": "1.1.0.dev0+497.ga7ecced88",
"numpy": "1.17.2",
"pytz": "2019.3",
"dateutil": "2.8.0",
"pip": "19.3.1",
"setuptools": "41.6.0.post20191030",
"Cython": "0.29.13",
"pytest": "5.2.2",
"hypothesis": "4.36.2",
"sphinx": "2.2.1",
"blosc": null,
"feather": null,
...
```
this pr
```
{
"system": {
"commit": "2ac9d30f302e59de035cbea89188d5421212b000",
"python": "3.7.5.final.0",
"python-bits": 64,
"OS": "Windows",
"OS-release": "10",
"Version": "10.0.18362",
"machine": "AMD64",
"processor": "Intel64 Family 6 Model 58 Stepping 9, GenuineIntel",
"byteorder": "little",
"LC_ALL": null,
"LANG": "en_GB.UTF-8",
"LOCALE": {
"language-code": null,
"encoding": null
}
},
"dependencies": {
"pandas": "1.1.0.dev0+500.g2ac9d30f3",
"numpy": "1.17.2",
"pytz": "2019.3",
"dateutil": "2.8.0",
"pip": "19.3.1",
"setuptools": "41.6.0.post20191030",
"Cython": "0.29.13",
"pytest": "5.2.2",
"hypothesis": "4.36.2",
"sphinx": "2.2.1",
"blosc": null,
...
```
console output is unchanged
```
INSTALLED VERSIONS
------------------
commit : 2ac9d30f302e59de035cbea89188d5421212b000
python : 3.7.5.final.0
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.18362
machine : AMD64
processor : Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
byteorder : little
LC_ALL : None
LANG : en_GB.UTF-8
LOCALE : None.None
pandas : 1.1.0.dev0+500.g2ac9d30f3
numpy : 1.17.2
pytz : 2019.3
dateutil : 2.8.0
pip : 19.3.1
setuptools : 41.6.0.post20191030
Cython : 0.29.13
pytest : 5.2.2
hypothesis : 4.36.2
sphinx : 2.2.1
blosc : None
feather : None
...
``` | https://api.github.com/repos/pandas-dev/pandas/pulls/32042 | 2020-02-16T16:56:07Z | 2020-03-03T03:36:27Z | 2020-03-03T03:36:27Z | 2020-03-03T11:43:14Z |
REGR: show_versions | diff --git a/pandas/tests/test_optional_dependency.py b/pandas/tests/test_optional_dependency.py
index ce527214e55e7..e5ed69b7703b1 100644
--- a/pandas/tests/test_optional_dependency.py
+++ b/pandas/tests/test_optional_dependency.py
@@ -22,12 +22,12 @@ def test_xlrd_version_fallback():
import_optional_dependency("xlrd")
-def test_bad_version():
+def test_bad_version(monkeypatch):
name = "fakemodule"
module = types.ModuleType(name)
module.__version__ = "0.9.0"
sys.modules[name] = module
- VERSIONS[name] = "1.0.0"
+ monkeypatch.setitem(VERSIONS, name, "1.0.0")
match = "Pandas requires .*1.0.0.* of .fakemodule.*'0.9.0'"
with pytest.raises(ImportError, match=match):
@@ -42,11 +42,11 @@ def test_bad_version():
assert result is module
-def test_no_version_raises():
+def test_no_version_raises(monkeypatch):
name = "fakemodule"
module = types.ModuleType(name)
sys.modules[name] = module
- VERSIONS[name] = "1.0.0"
+ monkeypatch.setitem(VERSIONS, name, "1.0.0")
with pytest.raises(ImportError, match="Can't determine .* fakemodule"):
import_optional_dependency(name)
diff --git a/pandas/tests/util/test_show_versions.py b/pandas/tests/util/test_show_versions.py
new file mode 100644
index 0000000000000..0d2c81c4ea6c7
--- /dev/null
+++ b/pandas/tests/util/test_show_versions.py
@@ -0,0 +1,22 @@
+import re
+
+import pandas as pd
+
+
+def test_show_versions(capsys):
+ # gh-32041
+ pd.show_versions()
+ captured = capsys.readouterr()
+ result = captured.out
+
+ # check header
+ assert "INSTALLED VERSIONS" in result
+
+ # check full commit hash
+ assert re.search(r"commit\s*:\s[0-9a-f]{40}\n", result)
+
+ # check required dependency
+ assert re.search(r"numpy\s*:\s([0-9\.\+a-f]|dev)+\n", result)
+
+ # check optional dependency
+ assert re.search(r"pyarrow\s*:\s([0-9\.]+|None)\n", result)
diff --git a/pandas/util/_print_versions.py b/pandas/util/_print_versions.py
index fdfa436ce6536..99b2b9e9f5f6e 100644
--- a/pandas/util/_print_versions.py
+++ b/pandas/util/_print_versions.py
@@ -118,10 +118,10 @@ def show_versions(as_json=False):
print("\nINSTALLED VERSIONS")
print("------------------")
for k, stat in sys_info:
- print(f"{{k:<{maxlen}}}: {{stat}}")
+ print(f"{k:<{maxlen}}: {stat}")
print("")
for k, stat in deps_blob:
- print(f"{{k:<{maxlen}}}: {{stat}}")
+ print(f"{k:<{maxlen}}: {stat}")
def main() -> int:
| regression in #31660 (no need to backport)
master
```
INSTALLED VERSIONS
------------------
{k:<17}: {stat}
{k:<17}: {stat}
{k:<17}: {stat}
...
```
this PR
```
INSTALLED VERSIONS
------------------
commit : b11e0647d42a27c279f3c46d5ce26d79bb5f5dec
python : 3.7.4.final.0
python-bits : 64
...
```
| https://api.github.com/repos/pandas-dev/pandas/pulls/32041 | 2020-02-16T11:49:56Z | 2020-02-19T01:47:39Z | 2020-02-19T01:47:39Z | 2020-02-19T09:39:44Z |
BUG: GroupBy aggregation of DataFrame with MultiIndex columns breaks with custom function | diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst
index 123dfa07f4331..18a431cc2be5e 100644
--- a/doc/source/whatsnew/v1.0.2.rst
+++ b/doc/source/whatsnew/v1.0.2.rst
@@ -17,6 +17,7 @@ Fixed regressions
- Fixed regression in :meth:`DataFrame.to_excel` when ``columns`` kwarg is passed (:issue:`31677`)
- Fixed regression in :meth:`Series.align` when ``other`` is a DataFrame and ``method`` is not None (:issue:`31785`)
+- Fixed regression in :meth:`groupby(..).agg() <pandas.core.groupby.GroupBy.agg>` which was failing on frames with MultiIndex columns and a custom function (:issue:`31777`)
- Fixed regression in ``groupby(..).rolling(..).apply()`` (``RollingGroupby``) where the ``raw`` parameter was ignored (:issue:`31754`)
- Fixed regression in :meth:`rolling(..).corr() <pandas.core.window.rolling.Rolling.corr>` when using a time offset (:issue:`31789`)
- Fixed regression in :meth:`groupby(..).nunique() <pandas.core.groupby.DataFrameGroupBy.nunique>` which was modifying the original values if ``NaN`` values were present (:issue:`31950`)
diff --git a/pandas/core/groupby/generic.py b/pandas/core/groupby/generic.py
index b7ac3048631c5..fda66f68f7adc 100644
--- a/pandas/core/groupby/generic.py
+++ b/pandas/core/groupby/generic.py
@@ -955,9 +955,11 @@ def aggregate(self, func=None, *args, **kwargs):
raise
result = self._aggregate_frame(func)
else:
- result.columns = Index(
- result.columns.levels[0], name=self._selected_obj.columns.name
- )
+ # select everything except for the last level, which is the one
+ # containing the name of the function(s), see GH 32040
+ result.columns = result.columns.rename(
+ [self._selected_obj.columns.name] * result.columns.nlevels
+ ).droplevel(-1)
if not self.as_index:
self._insert_inaxis_grouper_inplace(result)
diff --git a/pandas/tests/groupby/aggregate/test_aggregate.py b/pandas/tests/groupby/aggregate/test_aggregate.py
index 48f8de7e51ae4..1265547653d7b 100644
--- a/pandas/tests/groupby/aggregate/test_aggregate.py
+++ b/pandas/tests/groupby/aggregate/test_aggregate.py
@@ -691,6 +691,19 @@ def test_agg_relabel_multiindex_duplicates():
tm.assert_frame_equal(result, expected)
+@pytest.mark.parametrize(
+ "func", [lambda s: s.mean(), lambda s: np.mean(s), lambda s: np.nanmean(s)]
+)
+def test_multiindex_custom_func(func):
+ # GH 31777
+ data = [[1, 4, 2], [5, 7, 1]]
+ df = pd.DataFrame(data, columns=pd.MultiIndex.from_arrays([[1, 1, 2], [3, 4, 3]]))
+ result = df.groupby(np.array([0, 1])).agg(func)
+ expected_dict = {(1, 3): {0: 1, 1: 5}, (1, 4): {0: 4, 1: 7}, (2, 3): {0: 2, 1: 1}}
+ expected = pd.DataFrame(expected_dict)
+ tm.assert_frame_equal(result, expected)
+
+
def myfunc(s):
return np.percentile(s, q=0.90)
| - [x] closes #31777
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32040 | 2020-02-16T11:32:31Z | 2020-03-12T02:32:56Z | 2020-03-12T02:32:55Z | 2020-07-12T09:24:28Z |
BUG: Preserve name in Index.astype | diff --git a/doc/source/whatsnew/v1.1.0.rst b/doc/source/whatsnew/v1.1.0.rst
index 0ebe57bfbb3a1..c8c078a4e685d 100644
--- a/doc/source/whatsnew/v1.1.0.rst
+++ b/doc/source/whatsnew/v1.1.0.rst
@@ -410,6 +410,7 @@ Reshaping
- Bug in :func:`crosstab` when inputs are two Series and have tuple names, the output will keep dummy MultiIndex as columns. (:issue:`18321`)
- :meth:`DataFrame.pivot` can now take lists for ``index`` and ``columns`` arguments (:issue:`21425`)
- Bug in :func:`concat` where the resulting indices are not copied when ``copy=True`` (:issue:`29879`)
+- Bug where :meth:`Index.astype` would lose the name attribute when converting from ``Float64Index`` to ``Int64Index``, or when casting to an ``ExtensionArray`` dtype (:issue:`32013`)
- :meth:`Series.append` will now raise a ``TypeError`` when passed a DataFrame or a sequence containing Dataframe (:issue:`31413`)
- :meth:`DataFrame.replace` and :meth:`Series.replace` will raise a ``TypeError`` if ``to_replace`` is not an expected type. Previously the ``replace`` would fail silently (:issue:`18634`)
- Bug on inplace operation of a Series that was adding a column to the DataFrame from where it was originally dropped from (using inplace=True) (:issue:`30484`)
diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py
index 5b439a851a709..507adac789fa0 100644
--- a/pandas/core/indexes/base.py
+++ b/pandas/core/indexes/base.py
@@ -670,7 +670,7 @@ def astype(self, dtype, copy=True):
return CategoricalIndex(self.values, name=self.name, dtype=dtype, copy=copy)
elif is_extension_array_dtype(dtype):
- return Index(np.asarray(self), dtype=dtype, copy=copy)
+ return Index(np.asarray(self), name=self.name, dtype=dtype, copy=copy)
try:
casted = self.values.astype(dtype, copy=copy)
diff --git a/pandas/core/indexes/numeric.py b/pandas/core/indexes/numeric.py
index 3a6f3630c19e7..4dbe5ffde7e52 100644
--- a/pandas/core/indexes/numeric.py
+++ b/pandas/core/indexes/numeric.py
@@ -369,7 +369,7 @@ def astype(self, dtype, copy=True):
# TODO(jreback); this can change once we have an EA Index type
# GH 13149
arr = astype_nansafe(self._values, dtype=dtype)
- return Int64Index(arr)
+ return Int64Index(arr, name=self.name)
return super().astype(dtype, copy=copy)
# ----------------------------------------------------------------
diff --git a/pandas/tests/indexes/datetimes/test_astype.py b/pandas/tests/indexes/datetimes/test_astype.py
index 916f722247a14..34169a670c169 100644
--- a/pandas/tests/indexes/datetimes/test_astype.py
+++ b/pandas/tests/indexes/datetimes/test_astype.py
@@ -22,27 +22,32 @@
class TestDatetimeIndex:
def test_astype(self):
# GH 13149, GH 13209
- idx = DatetimeIndex(["2016-05-16", "NaT", NaT, np.NaN])
+ idx = DatetimeIndex(["2016-05-16", "NaT", NaT, np.NaN], name="idx")
result = idx.astype(object)
- expected = Index([Timestamp("2016-05-16")] + [NaT] * 3, dtype=object)
+ expected = Index(
+ [Timestamp("2016-05-16")] + [NaT] * 3, dtype=object, name="idx"
+ )
tm.assert_index_equal(result, expected)
result = idx.astype(int)
expected = Int64Index(
- [1463356800000000000] + [-9223372036854775808] * 3, dtype=np.int64
+ [1463356800000000000] + [-9223372036854775808] * 3,
+ dtype=np.int64,
+ name="idx",
)
tm.assert_index_equal(result, expected)
- rng = date_range("1/1/2000", periods=10)
+ rng = date_range("1/1/2000", periods=10, name="idx")
result = rng.astype("i8")
- tm.assert_index_equal(result, Index(rng.asi8))
+ tm.assert_index_equal(result, Index(rng.asi8, name="idx"))
tm.assert_numpy_array_equal(result.values, rng.asi8)
def test_astype_uint(self):
- arr = date_range("2000", periods=2)
+ arr = date_range("2000", periods=2, name="idx")
expected = pd.UInt64Index(
- np.array([946684800000000000, 946771200000000000], dtype="uint64")
+ np.array([946684800000000000, 946771200000000000], dtype="uint64"),
+ name="idx",
)
tm.assert_index_equal(arr.astype("uint64"), expected)
@@ -148,7 +153,7 @@ def test_astype_str(self):
def test_astype_datetime64(self):
# GH 13149, GH 13209
- idx = DatetimeIndex(["2016-05-16", "NaT", NaT, np.NaN])
+ idx = DatetimeIndex(["2016-05-16", "NaT", NaT, np.NaN], name="idx")
result = idx.astype("datetime64[ns]")
tm.assert_index_equal(result, idx)
@@ -158,10 +163,12 @@ def test_astype_datetime64(self):
tm.assert_index_equal(result, idx)
assert result is idx
- idx_tz = DatetimeIndex(["2016-05-16", "NaT", NaT, np.NaN], tz="EST")
+ idx_tz = DatetimeIndex(["2016-05-16", "NaT", NaT, np.NaN], tz="EST", name="idx")
result = idx_tz.astype("datetime64[ns]")
expected = DatetimeIndex(
- ["2016-05-16 05:00:00", "NaT", "NaT", "NaT"], dtype="datetime64[ns]"
+ ["2016-05-16 05:00:00", "NaT", "NaT", "NaT"],
+ dtype="datetime64[ns]",
+ name="idx",
)
tm.assert_index_equal(result, expected)
@@ -273,8 +280,8 @@ def _check_rng(rng):
def test_integer_index_astype_datetime(self, tz, dtype):
# GH 20997, 20964, 24559
val = [pd.Timestamp("2018-01-01", tz=tz).value]
- result = pd.Index(val).astype(dtype)
- expected = pd.DatetimeIndex(["2018-01-01"], tz=tz)
+ result = pd.Index(val, name="idx").astype(dtype)
+ expected = pd.DatetimeIndex(["2018-01-01"], tz=tz, name="idx")
tm.assert_index_equal(result, expected)
def test_dti_astype_period(self):
@@ -292,10 +299,11 @@ def test_dti_astype_period(self):
class TestAstype:
@pytest.mark.parametrize("tz", [None, "US/Central"])
def test_astype_category(self, tz):
- obj = pd.date_range("2000", periods=2, tz=tz)
+ obj = pd.date_range("2000", periods=2, tz=tz, name="idx")
result = obj.astype("category")
expected = pd.CategoricalIndex(
- [pd.Timestamp("2000-01-01", tz=tz), pd.Timestamp("2000-01-02", tz=tz)]
+ [pd.Timestamp("2000-01-01", tz=tz), pd.Timestamp("2000-01-02", tz=tz)],
+ name="idx",
)
tm.assert_index_equal(result, expected)
@@ -305,9 +313,9 @@ def test_astype_category(self, tz):
@pytest.mark.parametrize("tz", [None, "US/Central"])
def test_astype_array_fallback(self, tz):
- obj = pd.date_range("2000", periods=2, tz=tz)
+ obj = pd.date_range("2000", periods=2, tz=tz, name="idx")
result = obj.astype(bool)
- expected = pd.Index(np.array([True, True]))
+ expected = pd.Index(np.array([True, True]), name="idx")
tm.assert_index_equal(result, expected)
result = obj._data.astype(bool)
diff --git a/pandas/tests/indexes/period/test_astype.py b/pandas/tests/indexes/period/test_astype.py
index 2f10e45193d5d..b286191623ebb 100644
--- a/pandas/tests/indexes/period/test_astype.py
+++ b/pandas/tests/indexes/period/test_astype.py
@@ -27,31 +27,34 @@ def test_astype_raises(self, dtype):
def test_astype_conversion(self):
# GH#13149, GH#13209
- idx = PeriodIndex(["2016-05-16", "NaT", NaT, np.NaN], freq="D")
+ idx = PeriodIndex(["2016-05-16", "NaT", NaT, np.NaN], freq="D", name="idx")
result = idx.astype(object)
expected = Index(
[Period("2016-05-16", freq="D")] + [Period(NaT, freq="D")] * 3,
dtype="object",
+ name="idx",
)
tm.assert_index_equal(result, expected)
result = idx.astype(np.int64)
- expected = Int64Index([16937] + [-9223372036854775808] * 3, dtype=np.int64)
+ expected = Int64Index(
+ [16937] + [-9223372036854775808] * 3, dtype=np.int64, name="idx"
+ )
tm.assert_index_equal(result, expected)
result = idx.astype(str)
- expected = Index(str(x) for x in idx)
+ expected = Index([str(x) for x in idx], name="idx")
tm.assert_index_equal(result, expected)
- idx = period_range("1990", "2009", freq="A")
+ idx = period_range("1990", "2009", freq="A", name="idx")
result = idx.astype("i8")
- tm.assert_index_equal(result, Index(idx.asi8))
+ tm.assert_index_equal(result, Index(idx.asi8, name="idx"))
tm.assert_numpy_array_equal(result.values, idx.asi8)
def test_astype_uint(self):
- arr = period_range("2000", periods=2)
- expected = UInt64Index(np.array([10957, 10958], dtype="uint64"))
+ arr = period_range("2000", periods=2, name="idx")
+ expected = UInt64Index(np.array([10957, 10958], dtype="uint64"), name="idx")
tm.assert_index_equal(arr.astype("uint64"), expected)
tm.assert_index_equal(arr.astype("uint32"), expected)
@@ -116,10 +119,10 @@ def test_astype_object2(self):
assert result_list[2] is NaT
def test_astype_category(self):
- obj = period_range("2000", periods=2)
+ obj = period_range("2000", periods=2, name="idx")
result = obj.astype("category")
expected = CategoricalIndex(
- [Period("2000-01-01", freq="D"), Period("2000-01-02", freq="D")]
+ [Period("2000-01-01", freq="D"), Period("2000-01-02", freq="D")], name="idx"
)
tm.assert_index_equal(result, expected)
@@ -128,9 +131,9 @@ def test_astype_category(self):
tm.assert_categorical_equal(result, expected)
def test_astype_array_fallback(self):
- obj = period_range("2000", periods=2)
+ obj = period_range("2000", periods=2, name="idx")
result = obj.astype(bool)
- expected = Index(np.array([True, True]))
+ expected = Index(np.array([True, True]), name="idx")
tm.assert_index_equal(result, expected)
result = obj._data.astype(bool)
diff --git a/pandas/tests/indexes/test_common.py b/pandas/tests/indexes/test_common.py
index 80c577253f536..01d72670f37aa 100644
--- a/pandas/tests/indexes/test_common.py
+++ b/pandas/tests/indexes/test_common.py
@@ -369,3 +369,29 @@ def test_has_duplicates(self, indices):
idx = holder([indices[0]] * 5)
assert idx.is_unique is False
assert idx.has_duplicates is True
+
+ @pytest.mark.parametrize(
+ "dtype",
+ ["int64", "uint64", "float64", "category", "datetime64[ns]", "timedelta64[ns]"],
+ )
+ @pytest.mark.parametrize("copy", [True, False])
+ def test_astype_preserves_name(self, indices, dtype, copy):
+ # https://github.com/pandas-dev/pandas/issues/32013
+ if isinstance(indices, MultiIndex):
+ indices.names = ["idx" + str(i) for i in range(indices.nlevels)]
+ else:
+ indices.name = "idx"
+
+ try:
+ # Some of these conversions cannot succeed so we use a try / except
+ if copy:
+ result = indices.copy(dtype=dtype)
+ else:
+ result = indices.astype(dtype)
+ except (ValueError, TypeError, NotImplementedError, SystemError):
+ return
+
+ if isinstance(indices, MultiIndex):
+ assert result.names == indices.names
+ else:
+ assert result.name == indices.name
diff --git a/pandas/tests/indexes/timedeltas/test_astype.py b/pandas/tests/indexes/timedeltas/test_astype.py
index 82c9d995c9c7c..d9f24b4a35520 100644
--- a/pandas/tests/indexes/timedeltas/test_astype.py
+++ b/pandas/tests/indexes/timedeltas/test_astype.py
@@ -47,20 +47,22 @@ def test_astype_object_with_nat(self):
def test_astype(self):
# GH 13149, GH 13209
- idx = TimedeltaIndex([1e14, "NaT", NaT, np.NaN])
+ idx = TimedeltaIndex([1e14, "NaT", NaT, np.NaN], name="idx")
result = idx.astype(object)
- expected = Index([Timedelta("1 days 03:46:40")] + [NaT] * 3, dtype=object)
+ expected = Index(
+ [Timedelta("1 days 03:46:40")] + [NaT] * 3, dtype=object, name="idx"
+ )
tm.assert_index_equal(result, expected)
result = idx.astype(int)
expected = Int64Index(
- [100000000000000] + [-9223372036854775808] * 3, dtype=np.int64
+ [100000000000000] + [-9223372036854775808] * 3, dtype=np.int64, name="idx"
)
tm.assert_index_equal(result, expected)
result = idx.astype(str)
- expected = Index(str(x) for x in idx)
+ expected = Index([str(x) for x in idx], name="idx")
tm.assert_index_equal(result, expected)
rng = timedelta_range("1 days", periods=10)
| - [x] closes #32013
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32036 | 2020-02-16T03:15:52Z | 2020-03-27T00:00:35Z | 2020-03-27T00:00:34Z | 2020-03-27T01:06:31Z |
CLN: Clean reductions/test_reductions.py | diff --git a/pandas/tests/reductions/test_reductions.py b/pandas/tests/reductions/test_reductions.py
index 0b312fe2f8990..211d0d52d8357 100644
--- a/pandas/tests/reductions/test_reductions.py
+++ b/pandas/tests/reductions/test_reductions.py
@@ -66,60 +66,64 @@ def test_ops(self, opname, obj):
expected = expected.astype("M8[ns]").astype("int64")
assert result.value == expected
- def test_nanops(self):
+ @pytest.mark.parametrize("opname", ["max", "min"])
+ def test_nanops(self, opname, index_or_series):
# GH#7261
- for opname in ["max", "min"]:
- for klass in [Index, Series]:
- arg_op = "arg" + opname if klass is Index else "idx" + opname
-
- obj = klass([np.nan, 2.0])
- assert getattr(obj, opname)() == 2.0
-
- obj = klass([np.nan])
- assert pd.isna(getattr(obj, opname)())
- assert pd.isna(getattr(obj, opname)(skipna=False))
-
- obj = klass([], dtype=object)
- assert pd.isna(getattr(obj, opname)())
- assert pd.isna(getattr(obj, opname)(skipna=False))
-
- obj = klass([pd.NaT, datetime(2011, 11, 1)])
- # check DatetimeIndex monotonic path
- assert getattr(obj, opname)() == datetime(2011, 11, 1)
- assert getattr(obj, opname)(skipna=False) is pd.NaT
-
- assert getattr(obj, arg_op)() == 1
- result = getattr(obj, arg_op)(skipna=False)
- if klass is Series:
- assert np.isnan(result)
- else:
- assert result == -1
-
- obj = klass([pd.NaT, datetime(2011, 11, 1), pd.NaT])
- # check DatetimeIndex non-monotonic path
- assert getattr(obj, opname)(), datetime(2011, 11, 1)
- assert getattr(obj, opname)(skipna=False) is pd.NaT
-
- assert getattr(obj, arg_op)() == 1
- result = getattr(obj, arg_op)(skipna=False)
- if klass is Series:
- assert np.isnan(result)
- else:
- assert result == -1
-
- for dtype in ["M8[ns]", "datetime64[ns, UTC]"]:
- # cases with empty Series/DatetimeIndex
- obj = klass([], dtype=dtype)
-
- assert getattr(obj, opname)() is pd.NaT
- assert getattr(obj, opname)(skipna=False) is pd.NaT
-
- with pytest.raises(ValueError, match="empty sequence"):
- getattr(obj, arg_op)()
- with pytest.raises(ValueError, match="empty sequence"):
- getattr(obj, arg_op)(skipna=False)
-
- # argmin/max
+ klass = index_or_series
+ arg_op = "arg" + opname if klass is Index else "idx" + opname
+
+ obj = klass([np.nan, 2.0])
+ assert getattr(obj, opname)() == 2.0
+
+ obj = klass([np.nan])
+ assert pd.isna(getattr(obj, opname)())
+ assert pd.isna(getattr(obj, opname)(skipna=False))
+
+ obj = klass([], dtype=object)
+ assert pd.isna(getattr(obj, opname)())
+ assert pd.isna(getattr(obj, opname)(skipna=False))
+
+ obj = klass([pd.NaT, datetime(2011, 11, 1)])
+ # check DatetimeIndex monotonic path
+ assert getattr(obj, opname)() == datetime(2011, 11, 1)
+ assert getattr(obj, opname)(skipna=False) is pd.NaT
+
+ assert getattr(obj, arg_op)() == 1
+ result = getattr(obj, arg_op)(skipna=False)
+ if klass is Series:
+ assert np.isnan(result)
+ else:
+ assert result == -1
+
+ obj = klass([pd.NaT, datetime(2011, 11, 1), pd.NaT])
+ # check DatetimeIndex non-monotonic path
+ assert getattr(obj, opname)(), datetime(2011, 11, 1)
+ assert getattr(obj, opname)(skipna=False) is pd.NaT
+
+ assert getattr(obj, arg_op)() == 1
+ result = getattr(obj, arg_op)(skipna=False)
+ if klass is Series:
+ assert np.isnan(result)
+ else:
+ assert result == -1
+
+ @pytest.mark.parametrize("opname", ["max", "min"])
+ @pytest.mark.parametrize("dtype", ["M8[ns]", "datetime64[ns, UTC]"])
+ def test_nanops_empty_object(self, opname, index_or_series, dtype):
+ klass = index_or_series
+ arg_op = "arg" + opname if klass is Index else "idx" + opname
+
+ obj = klass([], dtype=dtype)
+
+ assert getattr(obj, opname)() is pd.NaT
+ assert getattr(obj, opname)(skipna=False) is pd.NaT
+
+ with pytest.raises(ValueError, match="empty sequence"):
+ getattr(obj, arg_op)()
+ with pytest.raises(ValueError, match="empty sequence"):
+ getattr(obj, arg_op)(skipna=False)
+
+ def test_argminmax(self):
obj = Index(np.arange(5, dtype="int64"))
assert obj.argmin() == 0
assert obj.argmax() == 4
@@ -224,16 +228,17 @@ def test_minmax_timedelta64(self):
assert idx.argmin() == 0
assert idx.argmax() == 2
- for op in ["min", "max"]:
- # Return NaT
- obj = TimedeltaIndex([])
- assert pd.isna(getattr(obj, op)())
+ @pytest.mark.parametrize("op", ["min", "max"])
+ def test_minmax_timedelta_empty_or_na(self, op):
+ # Return NaT
+ obj = TimedeltaIndex([])
+ assert getattr(obj, op)() is pd.NaT
- obj = TimedeltaIndex([pd.NaT])
- assert pd.isna(getattr(obj, op)())
+ obj = TimedeltaIndex([pd.NaT])
+ assert getattr(obj, op)() is pd.NaT
- obj = TimedeltaIndex([pd.NaT, pd.NaT, pd.NaT])
- assert pd.isna(getattr(obj, op)())
+ obj = TimedeltaIndex([pd.NaT, pd.NaT, pd.NaT])
+ assert getattr(obj, op)() is pd.NaT
def test_numpy_minmax_timedelta64(self):
td = timedelta_range("16815 days", "16820 days", freq="D")
| Some more parameterizing / splitting up of tests | https://api.github.com/repos/pandas-dev/pandas/pulls/32035 | 2020-02-16T01:27:07Z | 2020-02-17T20:03:06Z | 2020-02-17T20:03:06Z | 2020-02-17T20:05:00Z |
CLN: 29547 replace old string formatting | diff --git a/pandas/core/arrays/interval.py b/pandas/core/arrays/interval.py
index ab3ee5bbcdc3a..b11736248c12a 100644
--- a/pandas/core/arrays/interval.py
+++ b/pandas/core/arrays/interval.py
@@ -1127,8 +1127,8 @@ def __arrow_array__(self, type=None):
subtype = pyarrow.from_numpy_dtype(self.dtype.subtype)
except TypeError:
raise TypeError(
- "Conversion to arrow with subtype '{}' "
- "is not supported".format(self.dtype.subtype)
+ f"Conversion to arrow with subtype '{self.dtype.subtype}' "
+ "is not supported"
)
interval_type = ArrowIntervalType(subtype, self.closed)
storage_array = pyarrow.StructArray.from_arrays(
@@ -1157,14 +1157,12 @@ def __arrow_array__(self, type=None):
if not type.equals(interval_type):
raise TypeError(
"Not supported to convert IntervalArray to type with "
- "different 'subtype' ({0} vs {1}) and 'closed' ({2} vs {3}) "
- "attributes".format(
- self.dtype.subtype, type.subtype, self.closed, type.closed
- )
+ f"different 'subtype' ({self.dtype.subtype} vs {type.subtype}) "
+ f"and 'closed' ({self.closed} vs {type.closed}) attributes"
)
else:
raise TypeError(
- "Not supported to convert IntervalArray to '{0}' type".format(type)
+ f"Not supported to convert IntervalArray to '{type}' type"
)
return pyarrow.ExtensionArray.from_storage(interval_type, storage_array)
diff --git a/pandas/core/util/hashing.py b/pandas/core/util/hashing.py
index 160d328ec16ec..d9c8611c94cdb 100644
--- a/pandas/core/util/hashing.py
+++ b/pandas/core/util/hashing.py
@@ -294,7 +294,7 @@ def hash_array(
elif issubclass(dtype.type, (np.datetime64, np.timedelta64)):
vals = vals.view("i8").astype("u8", copy=False)
elif issubclass(dtype.type, np.number) and dtype.itemsize <= 8:
- vals = vals.view("u{}".format(vals.dtype.itemsize)).astype("u8")
+ vals = vals.view(f"u{vals.dtype.itemsize}").astype("u8")
else:
# With repeated values, its MUCH faster to categorize object dtypes,
# then hash and rename categories. We allow skipping the categorization
diff --git a/pandas/io/formats/format.py b/pandas/io/formats/format.py
index 0693c083c9ddc..b5ddd15c1312a 100644
--- a/pandas/io/formats/format.py
+++ b/pandas/io/formats/format.py
@@ -187,7 +187,7 @@ def _get_footer(self) -> str:
if self.length:
if footer:
footer += ", "
- footer += "Length: {length}".format(length=len(self.categorical))
+ footer += f"Length: {len(self.categorical)}"
level_info = self.categorical._repr_categories_info()
@@ -217,7 +217,6 @@ def to_string(self) -> str:
fmt_values = self._get_formatted_values()
- fmt_values = ["{i}".format(i=i) for i in fmt_values]
fmt_values = [i.strip() for i in fmt_values]
values = ", ".join(fmt_values)
result = ["[" + values + "]"]
@@ -301,28 +300,26 @@ def _get_footer(self) -> str:
assert isinstance(
self.series.index, (ABCDatetimeIndex, ABCPeriodIndex, ABCTimedeltaIndex)
)
- footer += "Freq: {freq}".format(freq=self.series.index.freqstr)
+ footer += f"Freq: {self.series.index.freqstr}"
if self.name is not False and name is not None:
if footer:
footer += ", "
series_name = pprint_thing(name, escape_chars=("\t", "\r", "\n"))
- footer += (
- ("Name: {sname}".format(sname=series_name)) if name is not None else ""
- )
+ footer += f"Name: {series_name}"
if self.length is True or (self.length == "truncate" and self.truncate_v):
if footer:
footer += ", "
- footer += "Length: {length}".format(length=len(self.series))
+ footer += f"Length: {len(self.series)}"
if self.dtype is not False and self.dtype is not None:
- name = getattr(self.tr_series.dtype, "name", None)
- if name:
+ dtype_name = getattr(self.tr_series.dtype, "name", None)
+ if dtype_name:
if footer:
footer += ", "
- footer += "dtype: {typ}".format(typ=pprint_thing(name))
+ footer += f"dtype: {pprint_thing(dtype_name)}"
# level infos are added to the end and in a new line, like it is done
# for Categoricals
@@ -359,9 +356,7 @@ def to_string(self) -> str:
footer = self._get_footer()
if len(series) == 0:
- return "{name}([], {footer})".format(
- name=type(self.series).__name__, footer=footer
- )
+ return f"{type(self.series).__name__}([], {footer})"
fmt_index, have_header = self._get_formatted_index()
fmt_values = self._get_formatted_values()
@@ -584,10 +579,8 @@ def __init__(
self.formatters = formatters
else:
raise ValueError(
- (
- "Formatters length({flen}) should match "
- "DataFrame number of columns({dlen})"
- ).format(flen=len(formatters), dlen=len(frame.columns))
+ f"Formatters length({len(formatters)}) should match "
+ f"DataFrame number of columns({len(frame.columns)})"
)
self.na_rep = na_rep
self.decimal = decimal
@@ -816,10 +809,10 @@ def write_result(self, buf: IO[str]) -> None:
frame = self.frame
if len(frame.columns) == 0 or len(frame.index) == 0:
- info_line = "Empty {name}\nColumns: {col}\nIndex: {idx}".format(
- name=type(self.frame).__name__,
- col=pprint_thing(frame.columns),
- idx=pprint_thing(frame.index),
+ info_line = (
+ f"Empty {type(self.frame).__name__}\n"
+ f"Columns: {pprint_thing(frame.columns)}\n"
+ f"Index: {pprint_thing(frame.index)}"
)
text = info_line
else:
@@ -865,11 +858,7 @@ def write_result(self, buf: IO[str]) -> None:
buf.writelines(text)
if self.should_show_dimensions:
- buf.write(
- "\n\n[{nrows} rows x {ncols} columns]".format(
- nrows=len(frame), ncols=len(frame.columns)
- )
- )
+ buf.write(f"\n\n[{len(frame)} rows x {len(frame.columns)} columns]")
def _join_multiline(self, *args) -> str:
lwidth = self.line_width
@@ -1074,7 +1063,7 @@ def _get_formatted_index(self, frame: "DataFrame") -> List[str]:
# empty space for columns
if self.show_col_idx_names:
- col_header = ["{x}".format(x=x) for x in self._get_column_name_list()]
+ col_header = [str(x) for x in self._get_column_name_list()]
else:
col_header = [""] * columns.nlevels
@@ -1209,10 +1198,8 @@ def _format_strings(self) -> List[str]:
if self.float_format is None:
float_format = get_option("display.float_format")
if float_format is None:
- fmt_str = "{{x: .{prec:d}g}}".format(
- prec=get_option("display.precision")
- )
- float_format = lambda x: fmt_str.format(x=x)
+ precision = get_option("display.precision")
+ float_format = lambda x: f"{x: .{precision:d}g}"
else:
float_format = self.float_format
@@ -1238,10 +1225,10 @@ def _format(x):
pass
return self.na_rep
elif isinstance(x, PandasObject):
- return "{x}".format(x=x)
+ return str(x)
else:
# object dtype
- return "{x}".format(x=formatter(x))
+ return str(formatter(x))
vals = self.values
if isinstance(vals, Index):
@@ -1257,7 +1244,7 @@ def _format(x):
fmt_values = []
for i, v in enumerate(vals):
if not is_float_type[i] and leading_space:
- fmt_values.append(" {v}".format(v=_format(v)))
+ fmt_values.append(f" {_format(v)}")
elif is_float_type[i]:
fmt_values.append(float_format(v))
else:
@@ -1437,7 +1424,7 @@ def _format_strings(self) -> List[str]:
class IntArrayFormatter(GenericArrayFormatter):
def _format_strings(self) -> List[str]:
- formatter = self.formatter or (lambda x: "{x: d}".format(x=x))
+ formatter = self.formatter or (lambda x: f"{x: d}")
fmt_values = [formatter(x) for x in self.values]
return fmt_values
@@ -1716,7 +1703,7 @@ def _formatter(x):
x = Timedelta(x)
result = x._repr_base(format=format)
if box:
- result = "'{res}'".format(res=result)
+ result = f"'{result}'"
return result
return _formatter
@@ -1880,16 +1867,16 @@ def __call__(self, num: Union[int, float]) -> str:
prefix = self.ENG_PREFIXES[int_pow10]
else:
if int_pow10 < 0:
- prefix = "E-{pow10:02d}".format(pow10=-int_pow10)
+ prefix = f"E-{-int_pow10:02d}"
else:
- prefix = "E+{pow10:02d}".format(pow10=int_pow10)
+ prefix = f"E+{int_pow10:02d}"
mant = sign * dnum / (10 ** pow10)
if self.accuracy is None: # pragma: no cover
format_str = "{mant: g}{prefix}"
else:
- format_str = "{{mant: .{acc:d}f}}{{prefix}}".format(acc=self.accuracy)
+ format_str = f"{{mant: .{self.accuracy:d}f}}{{prefix}}"
formatted = format_str.format(mant=mant, prefix=prefix)
diff --git a/pandas/io/formats/html.py b/pandas/io/formats/html.py
index e3161415fe2bc..585e1af3dbc01 100644
--- a/pandas/io/formats/html.py
+++ b/pandas/io/formats/html.py
@@ -56,7 +56,7 @@ def __init__(
self.table_id = self.fmt.table_id
self.render_links = self.fmt.render_links
if isinstance(self.fmt.col_space, int):
- self.fmt.col_space = "{colspace}px".format(colspace=self.fmt.col_space)
+ self.fmt.col_space = f"{self.fmt.col_space}px"
@property
def show_row_idx_names(self) -> bool:
@@ -124,7 +124,7 @@ def write_th(
"""
if header and self.fmt.col_space is not None:
tags = tags or ""
- tags += 'style="min-width: {colspace};"'.format(colspace=self.fmt.col_space)
+ tags += f'style="min-width: {self.fmt.col_space};"'
self._write_cell(s, kind="th", indent=indent, tags=tags)
@@ -135,9 +135,9 @@ def _write_cell(
self, s: Any, kind: str = "td", indent: int = 0, tags: Optional[str] = None
) -> None:
if tags is not None:
- start_tag = "<{kind} {tags}>".format(kind=kind, tags=tags)
+ start_tag = f"<{kind} {tags}>"
else:
- start_tag = "<{kind}>".format(kind=kind)
+ start_tag = f"<{kind}>"
if self.escape:
# escape & first to prevent double escaping of &
@@ -149,17 +149,12 @@ def _write_cell(
if self.render_links and is_url(rs):
rs_unescaped = pprint_thing(s, escape_chars={}).strip()
- start_tag += '<a href="{url}" target="_blank">'.format(url=rs_unescaped)
+ start_tag += f'<a href="{rs_unescaped}" target="_blank">'
end_a = "</a>"
else:
end_a = ""
- self.write(
- "{start}{rs}{end_a}</{kind}>".format(
- start=start_tag, rs=rs, end_a=end_a, kind=kind
- ),
- indent,
- )
+ self.write(f"{start_tag}{rs}{end_a}</{kind}>", indent)
def write_tr(
self,
@@ -177,7 +172,7 @@ def write_tr(
if align is None:
self.write("<tr>", indent)
else:
- self.write('<tr style="text-align: {align};">'.format(align=align), indent)
+ self.write(f'<tr style="text-align: {align};">', indent)
indent += indent_delta
for i, s in enumerate(line):
@@ -196,9 +191,7 @@ def render(self) -> List[str]:
if self.should_show_dimensions:
by = chr(215) # ×
self.write(
- "<p>{rows} rows {by} {cols} columns</p>".format(
- rows=len(self.frame), by=by, cols=len(self.frame.columns)
- )
+ f"<p>{len(self.frame)} rows {by} {len(self.frame.columns)} columns</p>"
)
return self.elements
@@ -224,12 +217,10 @@ def _write_table(self, indent: int = 0) -> None:
if self.table_id is None:
id_section = ""
else:
- id_section = ' id="{table_id}"'.format(table_id=self.table_id)
+ id_section = f' id="{self.table_id}"'
self.write(
- '<table border="{border}" class="{cls}"{id_section}>'.format(
- border=self.border, cls=" ".join(_classes), id_section=id_section
- ),
+ f'<table border="{self.border}" class="{" ".join(_classes)}"{id_section}>',
indent,
)
diff --git a/pandas/io/formats/latex.py b/pandas/io/formats/latex.py
index 935762598f78a..3a3ca84642d51 100644
--- a/pandas/io/formats/latex.py
+++ b/pandas/io/formats/latex.py
@@ -58,10 +58,10 @@ def write_result(self, buf: IO[str]) -> None:
"""
# string representation of the columns
if len(self.frame.columns) == 0 or len(self.frame.index) == 0:
- info_line = "Empty {name}\nColumns: {col}\nIndex: {idx}".format(
- name=type(self.frame).__name__,
- col=self.frame.columns,
- idx=self.frame.index,
+ info_line = (
+ f"Empty {type(self.frame).__name__}\n"
+ f"Columns: {self.frame.columns}\n"
+ f"Index: {self.frame.index}"
)
strcols = [[info_line]]
else:
@@ -140,8 +140,8 @@ def pad_empties(x):
buf.write("\\endhead\n")
buf.write("\\midrule\n")
buf.write(
- "\\multicolumn{{{n}}}{{r}}{{{{Continued on next "
- "page}}}} \\\\\n".format(n=len(row))
+ f"\\multicolumn{{{len(row)}}}{{r}}"
+ "{{Continued on next page}} \\\\\n"
)
buf.write("\\midrule\n")
buf.write("\\endfoot\n\n")
@@ -171,7 +171,7 @@ def pad_empties(x):
if self.bold_rows and self.fmt.index:
# bold row labels
crow = [
- "\\textbf{{{x}}}".format(x=x)
+ f"\\textbf{{{x}}}"
if j < ilevels and x.strip() not in ["", "{}"]
else x
for j, x in enumerate(crow)
@@ -210,9 +210,8 @@ def append_col():
# write multicolumn if needed
if ncol > 1:
row2.append(
- "\\multicolumn{{{ncol:d}}}{{{fmt:s}}}{{{txt:s}}}".format(
- ncol=ncol, fmt=self.multicolumn_format, txt=coltext.strip()
- )
+ f"\\multicolumn{{{ncol:d}}}{{{self.multicolumn_format}}}"
+ f"{{{coltext.strip()}}}"
)
# don't modify where not needed
else:
@@ -255,9 +254,7 @@ def _format_multirow(
break
if nrow > 1:
# overwrite non-multirow entry
- row[j] = "\\multirow{{{nrow:d}}}{{*}}{{{row:s}}}".format(
- nrow=nrow, row=row[j].strip()
- )
+ row[j] = f"\\multirow{{{nrow:d}}}{{*}}{{{row[j].strip()}}}"
# save when to end the current block with \cline
self.clinebuf.append([i + nrow - 1, j + 1])
return row
@@ -268,7 +265,7 @@ def _print_cline(self, buf: IO[str], i: int, icol: int) -> None:
"""
for cl in self.clinebuf:
if cl[0] == i:
- buf.write("\\cline{{{cl:d}-{icol:d}}}\n".format(cl=cl[1], icol=icol))
+ buf.write(f"\\cline{{{cl[1]:d}-{icol:d}}}\n")
# remove entries that have been written to buffer
self.clinebuf = [x for x in self.clinebuf if x[0] != i]
@@ -292,19 +289,19 @@ def _write_tabular_begin(self, buf, column_format: str):
if self.caption is None:
caption_ = ""
else:
- caption_ = "\n\\caption{{{}}}".format(self.caption)
+ caption_ = f"\n\\caption{{{self.caption}}}"
if self.label is None:
label_ = ""
else:
- label_ = "\n\\label{{{}}}".format(self.label)
+ label_ = f"\n\\label{{{self.label}}}"
- buf.write("\\begin{{table}}\n\\centering{}{}\n".format(caption_, label_))
+ buf.write(f"\\begin{{table}}\n\\centering{caption_}{label_}\n")
else:
# then write output only in a tabular environment
pass
- buf.write("\\begin{{tabular}}{{{fmt}}}\n".format(fmt=column_format))
+ buf.write(f"\\begin{{tabular}}{{{column_format}}}\n")
def _write_tabular_end(self, buf):
"""
@@ -340,18 +337,18 @@ def _write_longtable_begin(self, buf, column_format: str):
<https://en.wikibooks.org/wiki/LaTeX/Tables>`__ e.g 'rcl'
for 3 columns
"""
- buf.write("\\begin{{longtable}}{{{fmt}}}\n".format(fmt=column_format))
+ buf.write(f"\\begin{{longtable}}{{{column_format}}}\n")
if self.caption is not None or self.label is not None:
if self.caption is None:
pass
else:
- buf.write("\\caption{{{}}}".format(self.caption))
+ buf.write(f"\\caption{{{self.caption}}}")
if self.label is None:
pass
else:
- buf.write("\\label{{{}}}".format(self.label))
+ buf.write(f"\\label{{{self.label}}}")
# a double-backslash is required at the end of the line
# as discussed here:
diff --git a/pandas/io/formats/printing.py b/pandas/io/formats/printing.py
index 13b18a0b5fb6f..36e774305b577 100644
--- a/pandas/io/formats/printing.py
+++ b/pandas/io/formats/printing.py
@@ -229,7 +229,7 @@ def as_escaped_string(
max_seq_items=max_seq_items,
)
elif isinstance(thing, str) and quote_strings:
- result = "'{thing}'".format(thing=as_escaped_string(thing))
+ result = f"'{as_escaped_string(thing)}'"
else:
result = as_escaped_string(thing)
diff --git a/pandas/io/parsers.py b/pandas/io/parsers.py
index d7eb69d3a6048..8a3ad6cb45b57 100755
--- a/pandas/io/parsers.py
+++ b/pandas/io/parsers.py
@@ -3605,8 +3605,8 @@ def get_rows(self, infer_nrows, skiprows=None):
def detect_colspecs(self, infer_nrows=100, skiprows=None):
# Regex escape the delimiters
- delimiters = "".join(r"\{}".format(x) for x in self.delimiter)
- pattern = re.compile("([^{}]+)".format(delimiters))
+ delimiters = "".join(fr"\{x}" for x in self.delimiter)
+ pattern = re.compile(f"([^{delimiters}]+)")
rows = self.get_rows(infer_nrows, skiprows)
if not rows:
raise EmptyDataError("No rows from which to infer column width")
diff --git a/pandas/tests/arrays/categorical/test_dtypes.py b/pandas/tests/arrays/categorical/test_dtypes.py
index 19746d7d72162..9922a8863ebc2 100644
--- a/pandas/tests/arrays/categorical/test_dtypes.py
+++ b/pandas/tests/arrays/categorical/test_dtypes.py
@@ -92,22 +92,20 @@ def test_codes_dtypes(self):
result = Categorical(["foo", "bar", "baz"])
assert result.codes.dtype == "int8"
- result = Categorical(["foo{i:05d}".format(i=i) for i in range(400)])
+ result = Categorical([f"foo{i:05d}" for i in range(400)])
assert result.codes.dtype == "int16"
- result = Categorical(["foo{i:05d}".format(i=i) for i in range(40000)])
+ result = Categorical([f"foo{i:05d}" for i in range(40000)])
assert result.codes.dtype == "int32"
# adding cats
result = Categorical(["foo", "bar", "baz"])
assert result.codes.dtype == "int8"
- result = result.add_categories(["foo{i:05d}".format(i=i) for i in range(400)])
+ result = result.add_categories([f"foo{i:05d}" for i in range(400)])
assert result.codes.dtype == "int16"
# removing cats
- result = result.remove_categories(
- ["foo{i:05d}".format(i=i) for i in range(300)]
- )
+ result = result.remove_categories([f"foo{i:05d}" for i in range(300)])
assert result.codes.dtype == "int8"
@pytest.mark.parametrize("ordered", [True, False])
diff --git a/pandas/tests/arrays/categorical/test_operators.py b/pandas/tests/arrays/categorical/test_operators.py
index 0c830c65e0f8b..6ea003c122eea 100644
--- a/pandas/tests/arrays/categorical/test_operators.py
+++ b/pandas/tests/arrays/categorical/test_operators.py
@@ -338,7 +338,7 @@ def test_compare_unordered_different_order(self):
def test_numeric_like_ops(self):
df = DataFrame({"value": np.random.randint(0, 10000, 100)})
- labels = ["{0} - {1}".format(i, i + 499) for i in range(0, 10000, 500)]
+ labels = [f"{i} - {i + 499}" for i in range(0, 10000, 500)]
cat_labels = Categorical(labels, labels)
df = df.sort_values(by=["value"], ascending=True)
@@ -353,9 +353,7 @@ def test_numeric_like_ops(self):
("__mul__", r"\*"),
("__truediv__", "/"),
]:
- msg = r"Series cannot perform the operation {}|unsupported operand".format(
- str_rep
- )
+ msg = f"Series cannot perform the operation {str_rep}|unsupported operand"
with pytest.raises(TypeError, match=msg):
getattr(df, op)(df)
@@ -363,7 +361,7 @@ def test_numeric_like_ops(self):
# min/max)
s = df["value_group"]
for op in ["kurt", "skew", "var", "std", "mean", "sum", "median"]:
- msg = "Categorical cannot perform the operation {}".format(op)
+ msg = f"Categorical cannot perform the operation {op}"
with pytest.raises(TypeError, match=msg):
getattr(s, op)(numeric_only=False)
@@ -383,9 +381,7 @@ def test_numeric_like_ops(self):
("__mul__", r"\*"),
("__truediv__", "/"),
]:
- msg = r"Series cannot perform the operation {}|unsupported operand".format(
- str_rep
- )
+ msg = f"Series cannot perform the operation {str_rep}|unsupported operand"
with pytest.raises(TypeError, match=msg):
getattr(s, op)(2)
| I splitted PR #31844 in batches, this is the **last**
For this PR I ran the command `grep -l -R -e '%s' -e '%d' -e '\.format(' --include=*.{py,pyx} pandas/` and checked all the files that were returned for `.format(` and changed the old string format for the corresponding `fstrings` to attempt a full clean of, [#29547](https://github.com/pandas-dev/pandas/issues/29547). I may have missed something so is a good idea to double check just in case
- [ x ] tests added / passed
- [ x ] passes `black pandas`
- [ x ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ x ] Ref #29547
| https://api.github.com/repos/pandas-dev/pandas/pulls/32034 | 2020-02-16T00:34:51Z | 2020-02-20T23:32:42Z | 2020-02-20T23:32:41Z | 2020-02-21T01:29:53Z |
CI: add pydocstyle to code_checks | diff --git a/ci/code_checks.sh b/ci/code_checks.sh
index bb7d8a388e6e2..71aad6347085c 100755
--- a/ci/code_checks.sh
+++ b/ci/code_checks.sh
@@ -316,6 +316,13 @@ fi
### DOCSTRINGS ###
if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
+ echo "pydocstyle --version"
+ pydocstyle --version
+
+ MSG='Validate docstrings using pydocstyle (see setup.cfg for selected error codes)' ; echo $MSG
+ pydocstyle pandas
+ RET=$(($RET + $?)) ; echo $MSG "DONE"
+
MSG='Validate docstrings (GL03, GL04, GL05, GL06, GL07, GL09, GL10, SS04, SS05, PR03, PR04, PR05, PR10, EX04, RT01, RT04, RT05, SA02, SA03, SA05)' ; echo $MSG
$BASE_DIR/scripts/validate_docstrings.py --format=actions --errors=GL03,GL04,GL05,GL06,GL07,GL09,GL10,SS04,SS05,PR03,PR04,PR05,PR10,EX04,RT01,RT04,RT05,SA02,SA03,SA05
RET=$(($RET + $?)) ; echo $MSG "DONE"
diff --git a/environment.yml b/environment.yml
index cbdaf8e6c4217..812cb0b3c1c17 100644
--- a/environment.yml
+++ b/environment.yml
@@ -23,6 +23,7 @@ dependencies:
- isort # check that imports are in the right order
- mypy=0.730
- pycodestyle # used by flake8
+ - pydocstyle
# documentation
- gitpython # obtain contributors from git for whatsnew
diff --git a/pandas/core/arrays/datetimes.py b/pandas/core/arrays/datetimes.py
index a75536e46e60d..8599065830b57 100644
--- a/pandas/core/arrays/datetimes.py
+++ b/pandas/core/arrays/datetimes.py
@@ -559,7 +559,6 @@ def __iter__(self):
------
tstamp : Timestamp
"""
-
# convert in chunks of 10k for efficiency
data = self.asi8
length = len(self)
@@ -820,7 +819,9 @@ def tz_convert(self, tz):
dtype = tz_to_dtype(tz)
return self._simple_new(self.asi8, dtype=dtype, freq=self.freq)
- def tz_localize(self, tz, ambiguous="raise", nonexistent="raise"):
+ # TODO: remove # noqa once https://github.com/PyCQA/pydocstyle/pull/441
+ # is merged
+ def tz_localize(self, tz, ambiguous="raise", nonexistent="raise"): # noqa
"""
Localize tz-naive Datetime Array/Index to tz-aware
Datetime Array/Index.
@@ -1640,7 +1641,6 @@ def to_julian_date(self):
0 Julian date is noon January 1, 4713 BC.
https://en.wikipedia.org/wiki/Julian_day
"""
-
# http://mysite.verizon.net/aesir_research/date/jdalg2.htm
year = np.asarray(self.year)
month = np.asarray(self.month)
@@ -1705,7 +1705,6 @@ def sequence_to_dt64ns(
------
TypeError : PeriodDType data is passed
"""
-
inferred_freq = None
dtype = _validate_dt64_dtype(dtype)
diff --git a/pandas/core/tools/datetimes.py b/pandas/core/tools/datetimes.py
index 6d45ddd29d783..27ff1fe3022ef 100644
--- a/pandas/core/tools/datetimes.py
+++ b/pandas/core/tools/datetimes.py
@@ -538,7 +538,7 @@ def to_datetime(
infer_datetime_format=False,
origin="unix",
cache=True,
-):
+): # noqa: D207
"""
Convert argument to datetime.
diff --git a/pandas/io/excel/_openpyxl.py b/pandas/io/excel/_openpyxl.py
index a96c0f814e2d8..716f2b0fe2341 100644
--- a/pandas/io/excel/_openpyxl.py
+++ b/pandas/io/excel/_openpyxl.py
@@ -393,6 +393,7 @@ def _convert_to_protection(cls, protection_dict):
Returns
-------
+ openpyxl.styles.Protection
"""
from openpyxl.styles import Protection
diff --git a/requirements-dev.txt b/requirements-dev.txt
index a469cbdd93ceb..34abff0fc25dc 100644
--- a/requirements-dev.txt
+++ b/requirements-dev.txt
@@ -14,6 +14,7 @@ flake8-rst>=0.6.0,<=0.7.0
isort
mypy==0.730
pycodestyle
+pydocstyle
gitpython
gitdb2==2.0.6
sphinx
diff --git a/setup.cfg b/setup.cfg
index 4a900e581c353..4c70122c329ea 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -49,6 +49,20 @@ ignore = E402, # module level import not at top of file
exclude =
doc/source/development/contributing_docstring.rst
+[pydocstyle]
+select = D201, # No blank lines allowed before function docstring
+ D202, # No blank lines allowed after function docstring
+ D204, # 1 blank line required after class docstring
+ D207, # Docstring is under-indented
+ D208, # Docstring is over-indented
+ D209, # Multi-line docstring closing quotes should be on a separate line
+ D213, # Multi-line docstring summary should start at the second line
+ D300, # Use triple double quotes
+ D409, # Section underline should match the length of its name
+ D411, # Missing blank line before section
+ D412, # No blank lines allowed between a section header and its content
+ D414, # Section has no content
+
[tool:pytest]
# sync minversion with setup.cfg & install.rst
minversion = 4.0.2
| http://www.pydocstyle.org/en/5.0.2/error_codes.html | https://api.github.com/repos/pandas-dev/pandas/pulls/32033 | 2020-02-15T22:21:31Z | 2020-03-17T12:13:37Z | null | 2020-03-17T12:13:38Z |
CLN: 29547 replace old string formatting 8 | diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py
index 02898988ca8aa..122ef1f47968e 100644
--- a/pandas/tests/test_downstream.py
+++ b/pandas/tests/test_downstream.py
@@ -19,7 +19,7 @@ def import_module(name):
try:
return importlib.import_module(name)
except ModuleNotFoundError: # noqa
- pytest.skip("skipping as {} not available".format(name))
+ pytest.skip(f"skipping as {name} not available")
@pytest.fixture
diff --git a/pandas/tests/test_multilevel.py b/pandas/tests/test_multilevel.py
index b377ca2869bd3..efaedfad1e093 100644
--- a/pandas/tests/test_multilevel.py
+++ b/pandas/tests/test_multilevel.py
@@ -896,10 +896,10 @@ def test_stack_unstack_unordered_multiindex(self):
values = np.arange(5)
data = np.vstack(
[
- ["b{}".format(x) for x in values], # b0, b1, ..
- ["a{}".format(x) for x in values],
+ [f"b{x}" for x in values], # b0, b1, ..
+ [f"a{x}" for x in values], # a0, a1, ..
]
- ) # a0, a1, ..
+ )
df = pd.DataFrame(data.T, columns=["b", "a"])
df.columns.name = "first"
second_level_dict = {"x": df}
diff --git a/pandas/tests/tools/test_numeric.py b/pandas/tests/tools/test_numeric.py
index 2fd39d5a7b703..19385e797467c 100644
--- a/pandas/tests/tools/test_numeric.py
+++ b/pandas/tests/tools/test_numeric.py
@@ -308,7 +308,7 @@ def test_really_large_in_arr_consistent(large_val, signed, multiple_elts, errors
if errors in (None, "raise"):
index = int(multiple_elts)
- msg = "Integer out of range. at position {index}".format(index=index)
+ msg = f"Integer out of range. at position {index}"
with pytest.raises(ValueError, match=msg):
to_numeric(arr, **kwargs)
diff --git a/pandas/tests/tslibs/test_parse_iso8601.py b/pandas/tests/tslibs/test_parse_iso8601.py
index a58f227c20c7f..1c01e826d9794 100644
--- a/pandas/tests/tslibs/test_parse_iso8601.py
+++ b/pandas/tests/tslibs/test_parse_iso8601.py
@@ -51,7 +51,7 @@ def test_parsers_iso8601(date_str, exp):
],
)
def test_parsers_iso8601_invalid(date_str):
- msg = 'Error parsing datetime string "{s}"'.format(s=date_str)
+ msg = f'Error parsing datetime string "{date_str}"'
with pytest.raises(ValueError, match=msg):
tslib._test_parse_iso8601(date_str)
diff --git a/pandas/tests/window/moments/test_moments_rolling.py b/pandas/tests/window/moments/test_moments_rolling.py
index fd18d37ab13b6..f3a14971ef2e7 100644
--- a/pandas/tests/window/moments/test_moments_rolling.py
+++ b/pandas/tests/window/moments/test_moments_rolling.py
@@ -860,7 +860,7 @@ def get_result(obj, window, min_periods=None, center=False):
tm.assert_series_equal(result, expected)
# shifter index
- s = ["x{x:d}".format(x=x) for x in range(12)]
+ s = [f"x{x:d}" for x in range(12)]
if has_min_periods:
minp = 10
@@ -1437,13 +1437,9 @@ def test_rolling_median_memory_error(self):
def test_rolling_min_max_numeric_types(self):
# GH12373
- types_test = [np.dtype("f{}".format(width)) for width in [4, 8]]
+ types_test = [np.dtype(f"f{width}") for width in [4, 8]]
types_test.extend(
- [
- np.dtype("{}{}".format(sign, width))
- for width in [1, 2, 4, 8]
- for sign in "ui"
- ]
+ [np.dtype(f"{sign}{width}") for width in [1, 2, 4, 8] for sign in "ui"]
)
for data_type in types_test:
# Just testing that these don't throw exceptions and that
| I splitted PR #31844 in batches, this is the eighth
For this PR I ran the command `grep -l -R -e '%s' -e '%d' -e '\.format(' --include=*.{py,pyx} pandas/` and checked all the files that were returned for `.format(` and changed the old string format for the corresponding `fstrings` to attempt a full clean of, [#29547](https://github.com/pandas-dev/pandas/issues/29547). I may have missed something so is a good idea to double check just in case
- [ x ] tests added / passed
- [ x ] passes `black pandas`
- [ x ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` | https://api.github.com/repos/pandas-dev/pandas/pulls/32032 | 2020-02-15T19:52:37Z | 2020-02-15T23:24:24Z | 2020-02-15T23:24:24Z | 2020-02-21T01:29:55Z |
CI: change np-dev xfails to not strict | diff --git a/pandas/tests/frame/test_cumulative.py b/pandas/tests/frame/test_cumulative.py
index 2466547e2948b..486cbfb2761e0 100644
--- a/pandas/tests/frame/test_cumulative.py
+++ b/pandas/tests/frame/test_cumulative.py
@@ -75,7 +75,9 @@ def test_cumprod(self, datetime_frame):
df.cumprod(1)
@pytest.mark.xfail(
- _is_numpy_dev, reason="https://github.com/pandas-dev/pandas/issues/31992"
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
)
def test_cummin(self, datetime_frame):
datetime_frame.loc[5:10, 0] = np.nan
@@ -101,7 +103,9 @@ def test_cummin(self, datetime_frame):
assert np.shape(cummin_xs) == np.shape(datetime_frame)
@pytest.mark.xfail(
- _is_numpy_dev, reason="https://github.com/pandas-dev/pandas/issues/31992"
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
)
def test_cummax(self, datetime_frame):
datetime_frame.loc[5:10, 0] = np.nan
diff --git a/pandas/tests/groupby/test_function.py b/pandas/tests/groupby/test_function.py
index 8830b84a52421..176c0272ca527 100644
--- a/pandas/tests/groupby/test_function.py
+++ b/pandas/tests/groupby/test_function.py
@@ -687,7 +687,9 @@ def test_numpy_compat(func):
@pytest.mark.xfail(
- _is_numpy_dev, reason="https://github.com/pandas-dev/pandas/issues/31992"
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
)
def test_cummin_cummax():
# GH 15048
diff --git a/pandas/tests/scalar/timedelta/test_arithmetic.py b/pandas/tests/scalar/timedelta/test_arithmetic.py
index f0ad5fa70471b..230a14aeec60a 100644
--- a/pandas/tests/scalar/timedelta/test_arithmetic.py
+++ b/pandas/tests/scalar/timedelta/test_arithmetic.py
@@ -386,6 +386,7 @@ def test_td_div_numeric_scalar(self):
marks=pytest.mark.xfail(
_is_numpy_dev,
reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
),
),
float("nan"),
diff --git a/pandas/tests/series/test_cumulative.py b/pandas/tests/series/test_cumulative.py
index b0065992b850a..0cb1c038478f5 100644
--- a/pandas/tests/series/test_cumulative.py
+++ b/pandas/tests/series/test_cumulative.py
@@ -39,7 +39,9 @@ def test_cumprod(self, datetime_series):
_check_accum_op("cumprod", datetime_series)
@pytest.mark.xfail(
- _is_numpy_dev, reason="https://github.com/pandas-dev/pandas/issues/31992"
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
)
def test_cummin(self, datetime_series):
tm.assert_numpy_array_equal(
@@ -54,7 +56,9 @@ def test_cummin(self, datetime_series):
tm.assert_series_equal(result, expected)
@pytest.mark.xfail(
- _is_numpy_dev, reason="https://github.com/pandas-dev/pandas/issues/31992"
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
)
def test_cummax(self, datetime_series):
tm.assert_numpy_array_equal(
| follow-up to #32025 | https://api.github.com/repos/pandas-dev/pandas/pulls/32031 | 2020-02-15T19:52:07Z | 2020-02-16T17:43:56Z | 2020-02-16T17:43:56Z | 2020-02-18T10:56:10Z |
CLN: remove unused from MultiIndex | diff --git a/pandas/core/indexes/multi.py b/pandas/core/indexes/multi.py
index 02e11c0e71cbe..0a79df0cc9744 100644
--- a/pandas/core/indexes/multi.py
+++ b/pandas/core/indexes/multi.py
@@ -58,7 +58,6 @@
indexer_from_factorized,
lexsort_indexer,
)
-from pandas.core.util.hashing import hash_tuple, hash_tuples
from pandas.io.formats.printing import (
format_object_attrs,
@@ -247,6 +246,7 @@ class MultiIndex(Index):
rename = Index.set_names
_tuples = None
+ sortorder: Optional[int]
# --------------------------------------------------------------------
# Constructors
@@ -1430,55 +1430,11 @@ def is_monotonic_decreasing(self) -> bool:
# monotonic decreasing if and only if reverse is monotonic increasing
return self[::-1].is_monotonic_increasing
- @cache_readonly
- def _have_mixed_levels(self):
- """ return a boolean list indicated if we have mixed levels """
- return ["mixed" in l for l in self._inferred_type_levels]
-
@cache_readonly
def _inferred_type_levels(self):
""" return a list of the inferred types, one for each level """
return [i.inferred_type for i in self.levels]
- @cache_readonly
- def _hashed_values(self):
- """ return a uint64 ndarray of my hashed values """
- return hash_tuples(self)
-
- def _hashed_indexing_key(self, key):
- """
- validate and return the hash for the provided key
-
- *this is internal for use for the cython routines*
-
- Parameters
- ----------
- key : string or tuple
-
- Returns
- -------
- np.uint64
-
- Notes
- -----
- we need to stringify if we have mixed levels
- """
- if not isinstance(key, tuple):
- return hash_tuples(key)
-
- if not len(key) == self.nlevels:
- raise KeyError
-
- def f(k, stringify):
- if stringify and not isinstance(k, str):
- k = str(k)
- return k
-
- key = tuple(
- f(k, stringify) for k, stringify in zip(key, self._have_mixed_levels)
- )
- return hash_tuple(key)
-
@Appender(Index.duplicated.__doc__)
def duplicated(self, keep="first"):
shape = map(len, self.levels)
@@ -1858,27 +1814,6 @@ def __reduce__(self):
)
return ibase._new_Index, (type(self), d), None
- def __setstate__(self, state):
- """Necessary for making this object picklable"""
- if isinstance(state, dict):
- levels = state.get("levels")
- codes = state.get("codes")
- sortorder = state.get("sortorder")
- names = state.get("names")
-
- elif isinstance(state, tuple):
-
- nd_state, own_state = state
- levels, codes, sortorder, names = own_state
-
- self._set_levels([Index(x) for x in levels], validate=False)
- self._set_codes(codes)
- new_codes = self._verify_integrity()
- self._set_codes(new_codes)
- self._set_names(names)
- self.sortorder = sortorder
- self._reset_identity()
-
# --------------------------------------------------------------------
def __getitem__(self, key):
diff --git a/pandas/tests/util/test_hashing.py b/pandas/tests/util/test_hashing.py
index c856585f20138..6411b9ab654f1 100644
--- a/pandas/tests/util/test_hashing.py
+++ b/pandas/tests/util/test_hashing.py
@@ -178,23 +178,6 @@ def test_multiindex_objects():
assert mi.equals(recons)
assert Index(mi.values).equals(Index(recons.values))
- # _hashed_values and hash_pandas_object(..., index=False) equivalency.
- expected = hash_pandas_object(mi, index=False).values
- result = mi._hashed_values
-
- tm.assert_numpy_array_equal(result, expected)
-
- expected = hash_pandas_object(recons, index=False).values
- result = recons._hashed_values
-
- tm.assert_numpy_array_equal(result, expected)
-
- expected = mi._hashed_values
- result = recons._hashed_values
-
- # Values should match, but in different order.
- tm.assert_numpy_array_equal(np.sort(result), np.sort(expected))
-
@pytest.mark.parametrize(
"obj",
| https://api.github.com/repos/pandas-dev/pandas/pulls/32030 | 2020-02-15T19:39:51Z | 2020-02-18T12:38:28Z | 2020-02-18T12:38:28Z | 2020-02-18T15:30:59Z | |
CLN: GH29547 replace old string formatting | diff --git a/pandas/tests/arrays/categorical/test_analytics.py b/pandas/tests/arrays/categorical/test_analytics.py
index 90fcf12093909..0ff7d3e59abb3 100644
--- a/pandas/tests/arrays/categorical/test_analytics.py
+++ b/pandas/tests/arrays/categorical/test_analytics.py
@@ -15,10 +15,10 @@ class TestCategoricalAnalytics:
def test_min_max_not_ordered_raises(self, aggregation):
# unordered cats have no min/max
cat = Categorical(["a", "b", "c", "d"], ordered=False)
- msg = "Categorical is not ordered for operation {}"
+ msg = f"Categorical is not ordered for operation {aggregation}"
agg_func = getattr(cat, aggregation)
- with pytest.raises(TypeError, match=msg.format(aggregation)):
+ with pytest.raises(TypeError, match=msg):
agg_func()
def test_min_max_ordered(self):
| Hi there! This is my first contribution. Please let me know if there are any issues, thank you.
- [x] tests passed
- [x] passes `black pandas`
| https://api.github.com/repos/pandas-dev/pandas/pulls/32029 | 2020-02-15T18:27:21Z | 2020-02-15T19:05:32Z | 2020-02-15T19:05:32Z | 2020-02-15T20:10:57Z |
CLN: Clean groupby/test_function.py | diff --git a/pandas/tests/groupby/test_function.py b/pandas/tests/groupby/test_function.py
index 176c0272ca527..6205dfb87bbd0 100644
--- a/pandas/tests/groupby/test_function.py
+++ b/pandas/tests/groupby/test_function.py
@@ -26,6 +26,26 @@
from pandas.util import _test_decorators as td
+@pytest.fixture(
+ params=[np.int32, np.int64, np.float32, np.float64],
+ ids=["np.int32", "np.int64", "np.float32", "np.float64"],
+)
+def numpy_dtypes_for_minmax(request):
+ """
+ Fixture of numpy dtypes with min and max values used for testing
+ cummin and cummax
+ """
+ dtype = request.param
+ min_val = (
+ np.iinfo(dtype).min if np.dtype(dtype).kind == "i" else np.finfo(dtype).min
+ )
+ max_val = (
+ np.iinfo(dtype).max if np.dtype(dtype).kind == "i" else np.finfo(dtype).max
+ )
+
+ return (dtype, min_val, max_val)
+
+
@pytest.mark.parametrize("agg_func", ["any", "all"])
@pytest.mark.parametrize("skipna", [True, False])
@pytest.mark.parametrize(
@@ -174,11 +194,10 @@ def test_arg_passthru():
)
for attr in ["mean", "median"]:
- f = getattr(df.groupby("group"), attr)
- result = f()
+ result = getattr(df.groupby("group"), attr)()
tm.assert_index_equal(result.columns, expected_columns_numeric)
- result = f(numeric_only=False)
+ result = getattr(df.groupby("group"), attr)(numeric_only=False)
tm.assert_frame_equal(result.reindex_like(expected), expected)
# TODO: min, max *should* handle
@@ -195,11 +214,10 @@ def test_arg_passthru():
]
)
for attr in ["min", "max"]:
- f = getattr(df.groupby("group"), attr)
- result = f()
+ result = getattr(df.groupby("group"), attr)()
tm.assert_index_equal(result.columns, expected_columns)
- result = f(numeric_only=False)
+ result = getattr(df.groupby("group"), attr)(numeric_only=False)
tm.assert_index_equal(result.columns, expected_columns)
expected_columns = Index(
@@ -215,29 +233,26 @@ def test_arg_passthru():
]
)
for attr in ["first", "last"]:
- f = getattr(df.groupby("group"), attr)
- result = f()
+ result = getattr(df.groupby("group"), attr)()
tm.assert_index_equal(result.columns, expected_columns)
- result = f(numeric_only=False)
+ result = getattr(df.groupby("group"), attr)(numeric_only=False)
tm.assert_index_equal(result.columns, expected_columns)
expected_columns = Index(["int", "float", "string", "category_int", "timedelta"])
- for attr in ["sum"]:
- f = getattr(df.groupby("group"), attr)
- result = f()
- tm.assert_index_equal(result.columns, expected_columns_numeric)
- result = f(numeric_only=False)
- tm.assert_index_equal(result.columns, expected_columns)
+ result = df.groupby("group").sum()
+ tm.assert_index_equal(result.columns, expected_columns_numeric)
+
+ result = df.groupby("group").sum(numeric_only=False)
+ tm.assert_index_equal(result.columns, expected_columns)
expected_columns = Index(["int", "float", "category_int"])
for attr in ["prod", "cumprod"]:
- f = getattr(df.groupby("group"), attr)
- result = f()
+ result = getattr(df.groupby("group"), attr)()
tm.assert_index_equal(result.columns, expected_columns_numeric)
- result = f(numeric_only=False)
+ result = getattr(df.groupby("group"), attr)(numeric_only=False)
tm.assert_index_equal(result.columns, expected_columns)
# like min, max, but don't include strings
@@ -245,22 +260,20 @@ def test_arg_passthru():
["int", "float", "category_int", "datetime", "datetimetz", "timedelta"]
)
for attr in ["cummin", "cummax"]:
- f = getattr(df.groupby("group"), attr)
- result = f()
+ result = getattr(df.groupby("group"), attr)()
# GH 15561: numeric_only=False set by default like min/max
tm.assert_index_equal(result.columns, expected_columns)
- result = f(numeric_only=False)
+ result = getattr(df.groupby("group"), attr)(numeric_only=False)
tm.assert_index_equal(result.columns, expected_columns)
expected_columns = Index(["int", "float", "category_int", "timedelta"])
- for attr in ["cumsum"]:
- f = getattr(df.groupby("group"), attr)
- result = f()
- tm.assert_index_equal(result.columns, expected_columns_numeric)
- result = f(numeric_only=False)
- tm.assert_index_equal(result.columns, expected_columns)
+ result = getattr(df.groupby("group"), "cumsum")()
+ tm.assert_index_equal(result.columns, expected_columns_numeric)
+
+ result = getattr(df.groupby("group"), "cumsum")(numeric_only=False)
+ tm.assert_index_equal(result.columns, expected_columns)
def test_non_cython_api():
@@ -691,59 +704,31 @@ def test_numpy_compat(func):
reason="https://github.com/pandas-dev/pandas/issues/31992",
strict=False,
)
-def test_cummin_cummax():
+def test_cummin(numpy_dtypes_for_minmax):
+ dtype = numpy_dtypes_for_minmax[0]
+ min_val = numpy_dtypes_for_minmax[1]
+
# GH 15048
- num_types = [np.int32, np.int64, np.float32, np.float64]
- num_mins = [
- np.iinfo(np.int32).min,
- np.iinfo(np.int64).min,
- np.finfo(np.float32).min,
- np.finfo(np.float64).min,
- ]
- num_max = [
- np.iinfo(np.int32).max,
- np.iinfo(np.int64).max,
- np.finfo(np.float32).max,
- np.finfo(np.float64).max,
- ]
base_df = pd.DataFrame(
{"A": [1, 1, 1, 1, 2, 2, 2, 2], "B": [3, 4, 3, 2, 2, 3, 2, 1]}
)
expected_mins = [3, 3, 3, 2, 2, 2, 2, 1]
- expected_maxs = [3, 4, 4, 4, 2, 3, 3, 3]
- for dtype, min_val, max_val in zip(num_types, num_mins, num_max):
- df = base_df.astype(dtype)
+ df = base_df.astype(dtype)
- # cummin
- expected = pd.DataFrame({"B": expected_mins}).astype(dtype)
- result = df.groupby("A").cummin()
- tm.assert_frame_equal(result, expected)
- result = df.groupby("A").B.apply(lambda x: x.cummin()).to_frame()
- tm.assert_frame_equal(result, expected)
-
- # Test cummin w/ min value for dtype
- df.loc[[2, 6], "B"] = min_val
- expected.loc[[2, 3, 6, 7], "B"] = min_val
- result = df.groupby("A").cummin()
- tm.assert_frame_equal(result, expected)
- expected = df.groupby("A").B.apply(lambda x: x.cummin()).to_frame()
- tm.assert_frame_equal(result, expected)
-
- # cummax
- expected = pd.DataFrame({"B": expected_maxs}).astype(dtype)
- result = df.groupby("A").cummax()
- tm.assert_frame_equal(result, expected)
- result = df.groupby("A").B.apply(lambda x: x.cummax()).to_frame()
- tm.assert_frame_equal(result, expected)
+ expected = pd.DataFrame({"B": expected_mins}).astype(dtype)
+ result = df.groupby("A").cummin()
+ tm.assert_frame_equal(result, expected)
+ result = df.groupby("A").B.apply(lambda x: x.cummin()).to_frame()
+ tm.assert_frame_equal(result, expected)
- # Test cummax w/ max value for dtype
- df.loc[[2, 6], "B"] = max_val
- expected.loc[[2, 3, 6, 7], "B"] = max_val
- result = df.groupby("A").cummax()
- tm.assert_frame_equal(result, expected)
- expected = df.groupby("A").B.apply(lambda x: x.cummax()).to_frame()
- tm.assert_frame_equal(result, expected)
+ # Test w/ min value for dtype
+ df.loc[[2, 6], "B"] = min_val
+ expected.loc[[2, 3, 6, 7], "B"] = min_val
+ result = df.groupby("A").cummin()
+ tm.assert_frame_equal(result, expected)
+ expected = df.groupby("A").B.apply(lambda x: x.cummin()).to_frame()
+ tm.assert_frame_equal(result, expected)
# Test nan in some values
base_df.loc[[0, 2, 4, 6], "B"] = np.nan
@@ -753,30 +738,80 @@ def test_cummin_cummax():
expected = base_df.groupby("A").B.apply(lambda x: x.cummin()).to_frame()
tm.assert_frame_equal(result, expected)
- expected = pd.DataFrame({"B": [np.nan, 4, np.nan, 4, np.nan, 3, np.nan, 3]})
- result = base_df.groupby("A").cummax()
- tm.assert_frame_equal(result, expected)
- expected = base_df.groupby("A").B.apply(lambda x: x.cummax()).to_frame()
- tm.assert_frame_equal(result, expected)
+ # GH 15561
+ df = pd.DataFrame(dict(a=[1], b=pd.to_datetime(["2001"])))
+ expected = pd.Series(pd.to_datetime("2001"), index=[0], name="b")
+
+ result = df.groupby("a")["b"].cummin()
+ tm.assert_series_equal(expected, result)
+
+ # GH 15635
+ df = pd.DataFrame(dict(a=[1, 2, 1], b=[1, 2, 2]))
+ result = df.groupby("a").b.cummin()
+ expected = pd.Series([1, 2, 1], name="b")
+ tm.assert_series_equal(result, expected)
+
+
+@pytest.mark.xfail(
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
+)
+def test_cummin_all_nan_column():
+ base_df = pd.DataFrame({"A": [1, 1, 1, 1, 2, 2, 2, 2], "B": [np.nan] * 8})
- # Test nan in entire column
- base_df["B"] = np.nan
expected = pd.DataFrame({"B": [np.nan] * 8})
result = base_df.groupby("A").cummin()
tm.assert_frame_equal(expected, result)
result = base_df.groupby("A").B.apply(lambda x: x.cummin()).to_frame()
tm.assert_frame_equal(expected, result)
+
+
+@pytest.mark.xfail(
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
+)
+def test_cummax(numpy_dtypes_for_minmax):
+ dtype = numpy_dtypes_for_minmax[0]
+ max_val = numpy_dtypes_for_minmax[2]
+
+ # GH 15048
+ base_df = pd.DataFrame(
+ {"A": [1, 1, 1, 1, 2, 2, 2, 2], "B": [3, 4, 3, 2, 2, 3, 2, 1]}
+ )
+ expected_maxs = [3, 4, 4, 4, 2, 3, 3, 3]
+
+ df = base_df.astype(dtype)
+
+ expected = pd.DataFrame({"B": expected_maxs}).astype(dtype)
+ result = df.groupby("A").cummax()
+ tm.assert_frame_equal(result, expected)
+ result = df.groupby("A").B.apply(lambda x: x.cummax()).to_frame()
+ tm.assert_frame_equal(result, expected)
+
+ # Test w/ max value for dtype
+ df.loc[[2, 6], "B"] = max_val
+ expected.loc[[2, 3, 6, 7], "B"] = max_val
+ result = df.groupby("A").cummax()
+ tm.assert_frame_equal(result, expected)
+ expected = df.groupby("A").B.apply(lambda x: x.cummax()).to_frame()
+ tm.assert_frame_equal(result, expected)
+
+ # Test nan in some values
+ base_df.loc[[0, 2, 4, 6], "B"] = np.nan
+ expected = pd.DataFrame({"B": [np.nan, 4, np.nan, 4, np.nan, 3, np.nan, 3]})
result = base_df.groupby("A").cummax()
- tm.assert_frame_equal(expected, result)
- result = base_df.groupby("A").B.apply(lambda x: x.cummax()).to_frame()
- tm.assert_frame_equal(expected, result)
+ tm.assert_frame_equal(result, expected)
+ expected = base_df.groupby("A").B.apply(lambda x: x.cummax()).to_frame()
+ tm.assert_frame_equal(result, expected)
# GH 15561
df = pd.DataFrame(dict(a=[1], b=pd.to_datetime(["2001"])))
expected = pd.Series(pd.to_datetime("2001"), index=[0], name="b")
- for method in ["cummax", "cummin"]:
- result = getattr(df.groupby("a")["b"], method)()
- tm.assert_series_equal(expected, result)
+
+ result = df.groupby("a")["b"].cummax()
+ tm.assert_series_equal(expected, result)
# GH 15635
df = pd.DataFrame(dict(a=[1, 2, 1], b=[2, 1, 1]))
@@ -784,10 +819,20 @@ def test_cummin_cummax():
expected = pd.Series([2, 1, 2], name="b")
tm.assert_series_equal(result, expected)
- df = pd.DataFrame(dict(a=[1, 2, 1], b=[1, 2, 2]))
- result = df.groupby("a").b.cummin()
- expected = pd.Series([1, 2, 1], name="b")
- tm.assert_series_equal(result, expected)
+
+@pytest.mark.xfail(
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ strict=False,
+)
+def test_cummax_all_nan_column():
+ base_df = pd.DataFrame({"A": [1, 1, 1, 1, 2, 2, 2, 2], "B": [np.nan] * 8})
+
+ expected = pd.DataFrame({"B": [np.nan] * 8})
+ result = base_df.groupby("A").cummax()
+ tm.assert_frame_equal(expected, result)
+ result = base_df.groupby("A").B.apply(lambda x: x.cummax()).to_frame()
+ tm.assert_frame_equal(expected, result)
@pytest.mark.parametrize(
| Some small cleanups (removing unnecessary for loops / adding parameterization) | https://api.github.com/repos/pandas-dev/pandas/pulls/32027 | 2020-02-15T15:56:52Z | 2020-02-20T04:09:21Z | 2020-02-20T04:09:21Z | 2020-02-20T14:21:20Z |
CI: silence numpy-dev failures | diff --git a/pandas/__init__.py b/pandas/__init__.py
index d526531b159b2..2d3d3f7d92a9c 100644
--- a/pandas/__init__.py
+++ b/pandas/__init__.py
@@ -25,6 +25,7 @@
_np_version_under1p16,
_np_version_under1p17,
_np_version_under1p18,
+ _is_numpy_dev,
)
try:
diff --git a/pandas/tests/api/test_api.py b/pandas/tests/api/test_api.py
index 406d5f055797d..5aab5b814bae7 100644
--- a/pandas/tests/api/test_api.py
+++ b/pandas/tests/api/test_api.py
@@ -198,6 +198,7 @@ class TestPDApi(Base):
"_np_version_under1p16",
"_np_version_under1p17",
"_np_version_under1p18",
+ "_is_numpy_dev",
"_testing",
"_tslib",
"_typing",
diff --git a/pandas/tests/frame/test_cumulative.py b/pandas/tests/frame/test_cumulative.py
index b545d6aa8afd3..2466547e2948b 100644
--- a/pandas/tests/frame/test_cumulative.py
+++ b/pandas/tests/frame/test_cumulative.py
@@ -7,8 +7,9 @@
"""
import numpy as np
+import pytest
-from pandas import DataFrame, Series
+from pandas import DataFrame, Series, _is_numpy_dev
import pandas._testing as tm
@@ -73,6 +74,9 @@ def test_cumprod(self, datetime_frame):
df.cumprod(0)
df.cumprod(1)
+ @pytest.mark.xfail(
+ _is_numpy_dev, reason="https://github.com/pandas-dev/pandas/issues/31992"
+ )
def test_cummin(self, datetime_frame):
datetime_frame.loc[5:10, 0] = np.nan
datetime_frame.loc[10:15, 1] = np.nan
@@ -96,6 +100,9 @@ def test_cummin(self, datetime_frame):
cummin_xs = datetime_frame.cummin(axis=1)
assert np.shape(cummin_xs) == np.shape(datetime_frame)
+ @pytest.mark.xfail(
+ _is_numpy_dev, reason="https://github.com/pandas-dev/pandas/issues/31992"
+ )
def test_cummax(self, datetime_frame):
datetime_frame.loc[5:10, 0] = np.nan
datetime_frame.loc[10:15, 1] = np.nan
diff --git a/pandas/tests/groupby/test_function.py b/pandas/tests/groupby/test_function.py
index 73e36cb5e6c84..8830b84a52421 100644
--- a/pandas/tests/groupby/test_function.py
+++ b/pandas/tests/groupby/test_function.py
@@ -17,6 +17,7 @@
NaT,
Series,
Timestamp,
+ _is_numpy_dev,
date_range,
isna,
)
@@ -685,6 +686,9 @@ def test_numpy_compat(func):
getattr(g, func)(foo=1)
+@pytest.mark.xfail(
+ _is_numpy_dev, reason="https://github.com/pandas-dev/pandas/issues/31992"
+)
def test_cummin_cummax():
# GH 15048
num_types = [np.int32, np.int64, np.float32, np.float64]
diff --git a/pandas/tests/groupby/test_transform.py b/pandas/tests/groupby/test_transform.py
index 0ad829dd4de7a..740103eec185a 100644
--- a/pandas/tests/groupby/test_transform.py
+++ b/pandas/tests/groupby/test_transform.py
@@ -15,6 +15,7 @@
MultiIndex,
Series,
Timestamp,
+ _is_numpy_dev,
concat,
date_range,
)
@@ -329,6 +330,8 @@ def test_transform_transformation_func(transformation_func):
if transformation_func in ["pad", "backfill", "tshift", "corrwith", "cumcount"]:
# These transformation functions are not yet covered in this test
pytest.xfail("See GH 31269 and GH 31270")
+ elif _is_numpy_dev and transformation_func in ["cummin"]:
+ pytest.xfail("https://github.com/pandas-dev/pandas/issues/31992")
elif transformation_func == "fillna":
test_op = lambda x: x.transform("fillna", value=0)
mock_op = lambda x: x.fillna(value=0)
diff --git a/pandas/tests/scalar/timedelta/test_arithmetic.py b/pandas/tests/scalar/timedelta/test_arithmetic.py
index 60e278f47d0f8..f0ad5fa70471b 100644
--- a/pandas/tests/scalar/timedelta/test_arithmetic.py
+++ b/pandas/tests/scalar/timedelta/test_arithmetic.py
@@ -8,7 +8,7 @@
import pytest
import pandas as pd
-from pandas import NaT, Timedelta, Timestamp, offsets
+from pandas import NaT, Timedelta, Timestamp, _is_numpy_dev, offsets
import pandas._testing as tm
from pandas.core import ops
@@ -377,18 +377,28 @@ def test_td_div_numeric_scalar(self):
assert isinstance(result, Timedelta)
assert result == Timedelta(days=2)
- @pytest.mark.parametrize("nan", [np.nan, np.float64("NaN"), float("nan")])
+ @pytest.mark.parametrize(
+ "nan",
+ [
+ np.nan,
+ pytest.param(
+ np.float64("NaN"),
+ marks=pytest.mark.xfail(
+ _is_numpy_dev,
+ reason="https://github.com/pandas-dev/pandas/issues/31992",
+ ),
+ ),
+ float("nan"),
+ ],
+ )
def test_td_div_nan(self, nan):
# np.float64('NaN') has a 'dtype' attr, avoid treating as array
td = Timedelta(10, unit="d")
result = td / nan
assert result is NaT
- # TODO: Don't leave commented, this is just a temporary fix for
- # https://github.com/pandas-dev/pandas/issues/31992
-
- # result = td // nan
- # assert result is NaT
+ result = td // nan
+ assert result is NaT
# ---------------------------------------------------------------
# Timedelta.__rdiv__
diff --git a/pandas/tests/series/test_cumulative.py b/pandas/tests/series/test_cumulative.py
index 885b5bf0476f2..b0065992b850a 100644
--- a/pandas/tests/series/test_cumulative.py
+++ b/pandas/tests/series/test_cumulative.py
@@ -11,6 +11,7 @@
import pytest
import pandas as pd
+from pandas import _is_numpy_dev
import pandas._testing as tm
@@ -37,6 +38,9 @@ def test_cumsum(self, datetime_series):
def test_cumprod(self, datetime_series):
_check_accum_op("cumprod", datetime_series)
+ @pytest.mark.xfail(
+ _is_numpy_dev, reason="https://github.com/pandas-dev/pandas/issues/31992"
+ )
def test_cummin(self, datetime_series):
tm.assert_numpy_array_equal(
datetime_series.cummin().values,
@@ -49,6 +53,9 @@ def test_cummin(self, datetime_series):
tm.assert_series_equal(result, expected)
+ @pytest.mark.xfail(
+ _is_numpy_dev, reason="https://github.com/pandas-dev/pandas/issues/31992"
+ )
def test_cummax(self, datetime_series):
tm.assert_numpy_array_equal(
datetime_series.cummax().values,
| xref #31992 | https://api.github.com/repos/pandas-dev/pandas/pulls/32025 | 2020-02-15T14:43:34Z | 2020-02-15T18:34:58Z | 2020-02-15T18:34:58Z | 2020-02-18T10:54:50Z |
WEB: Add greeting note to CoC | diff --git a/web/pandas/community/coc.md b/web/pandas/community/coc.md
index bf62f4e00f847..d2af9c3fdd25b 100644
--- a/web/pandas/community/coc.md
+++ b/web/pandas/community/coc.md
@@ -20,6 +20,9 @@ Examples of unacceptable behavior by participants include:
addresses, without explicit permission
* Other unethical or unprofessional conduct
+Furthermore, we encourage inclusive behavior - for example,
+please don’t say “hey guys!” but “hey everyone!”.
+
Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
| I noticed something similar in the [CPython contributing docs](https://cpython-core-tutorial.readthedocs.io/en/latest/diversity.html):
> For example, don’t say “hey guys!” but “hey everyone!”.
and thought it was really nice.
Pushing directly rather than opening as good first issue to avoid invoking a s*******m | https://api.github.com/repos/pandas-dev/pandas/pulls/32024 | 2020-02-15T13:40:06Z | 2020-02-27T23:08:16Z | 2020-02-27T23:08:16Z | 2020-03-26T16:13:32Z |
DOC: Add missing period to parameter description | diff --git a/pandas/io/formats/style.py b/pandas/io/formats/style.py
index d0c64d54f30d6..018441dacd9a8 100644
--- a/pandas/io/formats/style.py
+++ b/pandas/io/formats/style.py
@@ -452,7 +452,7 @@ def format(self, formatter, subset=None, na_rep: Optional[str] = None) -> "Style
``formatter`` is applied to.
na_rep : str, optional
Representation for missing values.
- If ``na_rep`` is None, no special formatting is applied
+ If ``na_rep`` is None, no special formatting is applied.
.. versionadded:: 1.0.0
diff --git a/pandas/io/sql.py b/pandas/io/sql.py
index 0eb7deb5574ec..e97872d880dee 100644
--- a/pandas/io/sql.py
+++ b/pandas/io/sql.py
@@ -361,7 +361,7 @@ def read_sql(
Using SQLAlchemy makes it possible to use any DB supported by that
library. If a DBAPI2 object, only sqlite3 is supported. The user is responsible
for engine disposal and connection closure for the SQLAlchemy connectable. See
- `here <https://docs.sqlalchemy.org/en/13/core/connections.html>`_
+ `here <https://docs.sqlalchemy.org/en/13/core/connections.html>`_.
index_col : str or list of str, optional, default: None
Column(s) to set as index(MultiIndex).
coerce_float : bool, default True
| - [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `black pandas`
- [x ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32022 | 2020-02-15T12:05:33Z | 2020-02-15T21:50:43Z | 2020-02-15T21:50:42Z | 2020-02-15T21:50:54Z |
DOC SS06 Make the summery in one line on offsets.py | diff --git a/pandas/tseries/offsets.py b/pandas/tseries/offsets.py
index df1e750b32138..959dd19a50d90 100644
--- a/pandas/tseries/offsets.py
+++ b/pandas/tseries/offsets.py
@@ -1017,8 +1017,7 @@ def __init__(
class CustomBusinessDay(_CustomMixin, BusinessDay):
"""
- DateOffset subclass representing possibly n custom business days,
- excluding holidays.
+ DateOffset subclass representing custom business days excluding holidays.
Parameters
----------
| - [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32021 | 2020-02-15T12:01:20Z | 2020-02-15T19:07:14Z | 2020-02-15T19:07:14Z | 2020-02-15T19:07:25Z |
DOC: Fix errors in pandas.Series.argmax | diff --git a/pandas/core/base.py b/pandas/core/base.py
index 85424e35fa0e0..b9aeb32eea5c1 100644
--- a/pandas/core/base.py
+++ b/pandas/core/base.py
@@ -927,22 +927,50 @@ def max(self, axis=None, skipna=True, *args, **kwargs):
def argmax(self, axis=None, skipna=True, *args, **kwargs):
"""
- Return an ndarray of the maximum argument indexer.
+ Return int position of the largest value in the Series.
+
+ If the maximum is achieved in multiple locations,
+ the first row position is returned.
Parameters
----------
axis : {None}
Dummy argument for consistency with Series.
skipna : bool, default True
+ Exclude NA/null values when showing the result.
+ *args, **kwargs
+ Additional arguments and keywords for compatibility with NumPy.
Returns
-------
- numpy.ndarray
- Indices of the maximum values.
+ int
+ Row position of the maximum values.
See Also
--------
- numpy.ndarray.argmax
+ numpy.ndarray.argmax : Equivalent method for numpy arrays.
+ Series.argmin : Similar method, but returning the minimum.
+ Series.idxmax : Return index label of the maximum values.
+ Series.idxmin : Return index label of the minimum values.
+
+ Examples
+ --------
+ Consider dataset containing cereal calories
+
+ >>> s = pd.Series({'Corn Flakes': 100.0, 'Almond Delight': 110.0,
+ ... 'Cinnamon Toast Crunch': 120.0, 'Cocoa Puff': 110.0})
+ >>> s
+ Corn Flakes 100.0
+ Almond Delight 110.0
+ Cinnamon Toast Crunch 120.0
+ Cocoa Puff 110.0
+ dtype: float64
+
+ >>> s.argmax()
+ 2
+
+ The maximum cereal calories is in the third element,
+ since series is zero-indexed.
"""
nv.validate_minmax_axis(axis)
nv.validate_argmax_with_skipna(skipna, args, kwargs)
| - [x] closes https://github.com/pandanistas/pandanistas_sprint_jakarta2020/issues/18
- [ ] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
output of `python scripts/validate_docstrings.py pandas.Series.argmax`:
```
################################################################################
################################## Validation ##################################
################################################################################
```
| https://api.github.com/repos/pandas-dev/pandas/pulls/32019 | 2020-02-15T11:42:12Z | 2020-02-26T20:53:54Z | 2020-02-26T20:53:54Z | 2020-02-27T07:35:55Z |
DOC add extended summary, update parameter types desc, update return types desc, and add whitespaces after commas in list declarations to DataFrame.first in core/generic.py | diff --git a/pandas/core/generic.py b/pandas/core/generic.py
index e6c5ac9dbf733..b039630efc989 100644
--- a/pandas/core/generic.py
+++ b/pandas/core/generic.py
@@ -8014,15 +8014,21 @@ def resample(
def first(self: FrameOrSeries, offset) -> FrameOrSeries:
"""
- Method to subset initial periods of time series data based on a date offset.
+ Select initial periods of time series data based on a date offset.
+
+ When having a DataFrame with dates as index, this function can
+ select the first few rows based on a date offset.
Parameters
----------
- offset : str, DateOffset, dateutil.relativedelta
+ offset : str, DateOffset or dateutil.relativedelta
+ The offset length of the data that will be selected. For instance,
+ '1M' will display all the rows having their index within the first month.
Returns
-------
- subset : same type as caller
+ Series or DataFrame
+ A subset of the caller.
Raises
------
@@ -8038,7 +8044,7 @@ def first(self: FrameOrSeries, offset) -> FrameOrSeries:
Examples
--------
>>> i = pd.date_range('2018-04-09', periods=4, freq='2D')
- >>> ts = pd.DataFrame({'A': [1,2,3,4]}, index=i)
+ >>> ts = pd.DataFrame({'A': [1, 2, 3, 4]}, index=i)
>>> ts
A
2018-04-09 1
| - [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32018 | 2020-02-15T11:32:50Z | 2020-03-10T21:30:06Z | 2020-03-10T21:30:06Z | 2020-03-11T08:48:54Z |
Fix docstring validation errors in pandas.Index.slice_indexer | diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py
index 14ee21ea5614c..dc39e2808f62f 100644
--- a/pandas/core/indexes/base.py
+++ b/pandas/core/indexes/base.py
@@ -4856,6 +4856,8 @@ def _get_string_slice(self, key: str_t, use_lhs: bool = True, use_rhs: bool = Tr
def slice_indexer(self, start=None, end=None, step=None, kind=None):
"""
+ Return index-based slice indexer from labels-based one.
+
For an ordered or unique index, compute the slice indexer for input
labels and step.
@@ -4866,17 +4868,23 @@ def slice_indexer(self, start=None, end=None, step=None, kind=None):
end : label, default None
If None, defaults to the end.
step : int, default None
- kind : str, default None
+ If None, defaults to 1.
+ kind : {'loc', 'getitem'}, optional
Returns
-------
- indexer : slice
+ slice :
+ Slice indexer for input labels and step.
Raises
------
KeyError : If key does not exist, or key is not unique and index is
not ordered.
+ See Also
+ --------
+ Index.slice_locs : Compute slice locations for input labels.
+
Notes
-----
This function assumes that the data is sorted, so use at your own peril
@@ -4887,11 +4895,11 @@ def slice_indexer(self, start=None, end=None, step=None, kind=None):
>>> idx = pd.Index(list('abcd'))
>>> idx.slice_indexer(start='b', end='c')
- slice(1, 3)
+ slice(1, 3, None)
>>> idx = pd.MultiIndex.from_arrays([list('abcd'), list('efgh')])
>>> idx.slice_indexer(start='b', end=('c', 'g'))
- slice(1, 3)
+ slice(1, 3, None)
"""
start_slice, end_slice = self.slice_locs(start, end, step=step, kind=kind)
| - [ ] closes https://github.com/pandanistas/pandanistas_sprint_jakarta2020/issues/6
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32017 | 2020-02-15T11:28:33Z | 2020-03-20T22:26:23Z | null | 2020-03-20T22:26:23Z |
DOC: Add reference in keywords arguments to Line2D mathplotlib | diff --git a/pandas/plotting/_misc.py b/pandas/plotting/_misc.py
index 47a4fd8ff0e95..3788cc447b087 100644
--- a/pandas/plotting/_misc.py
+++ b/pandas/plotting/_misc.py
@@ -280,7 +280,8 @@ def bootstrap_plot(series, fig=None, size=50, samples=500, **kwds):
samples : int, default 500
Number of times the bootstrap procedure is performed.
**kwds
- Options to pass to matplotlib plotting method.
+ Optional, two dimensional properties from
+ :func:`matplotlib.lines.Line2D`.
Returns
-------
@@ -291,6 +292,7 @@ def bootstrap_plot(series, fig=None, size=50, samples=500, **kwds):
--------
DataFrame.plot : Basic plotting for DataFrame objects.
Series.plot : Basic plotting for Series objects.
+ matplotlib.lines.Line2D : Matplotlib Line2D objects.
Examples
--------
| Keyword arguments in `pandas.plotting.bootstrap_plot` doesn't clearly specify argument options
- [ ] closes #xxxx
- [ ] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/32016 | 2020-02-15T11:18:33Z | 2020-02-26T20:52:15Z | null | 2020-02-26T20:52:16Z |
DOC: Improve docstring of Index.delete | diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py
index 3d549405592d6..14ee21ea5614c 100644
--- a/pandas/core/indexes/base.py
+++ b/pandas/core/indexes/base.py
@@ -5135,9 +5135,30 @@ def delete(self, loc):
"""
Make new Index with passed location(-s) deleted.
+ Parameters
+ ----------
+ loc : int or list of int
+ Location of item(-s) which will be deleted.
+ Use a list of locations to delete more than one value at the same time.
+
Returns
-------
- new_index : Index
+ Index
+ New Index with passed location(-s) deleted.
+
+ See Also
+ --------
+ numpy.delete : Delete any rows and column from NumPy array (ndarray).
+
+ Examples
+ --------
+ >>> idx = pd.Index(['a', 'b', 'c'])
+ >>> idx.delete(1)
+ Index(['a', 'c'], dtype='object')
+
+ >>> idx = pd.Index(['a', 'b', 'c'])
+ >>> idx.delete([0, 2])
+ Index(['b'], dtype='object')
"""
return self._shallow_copy(np.delete(self._data, loc))
| - [x] closes https://github.com/pandanistas/pandanistas_sprint_jakarta2020/issues/13
- [ ] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
Output from validate_docstrings.py
################################################################################
####################### Docstring (pandas.Index.delete) #######################
################################################################################
Make new Index with passed location(-s) deleted.
Use array of integer as loc parameter to delete multiple locations.
Parameters
----------
loc : int
Location of item(-s) which will be deleted.
Returns
-------
Index
New Index with passed location(-s) deleted.
See Also
--------
numpy.delete : Delete any rows and column from NumPy array (ndarray).
Examples
--------
>>> idx = pd.Index(['a', 'b', 'c'])
>>> idx.delete(1) # Deleting 'b'
Index(['a', 'c'], dtype='object')
>>> idx = pd.Index(['a', 'b', 'c'])
>>> idx.delete([0, 2])
Index(['b'], dtype='object')
################################################################################
################################## Validation ##################################
################################################################################
| https://api.github.com/repos/pandas-dev/pandas/pulls/32015 | 2020-02-15T11:12:36Z | 2020-02-15T19:08:13Z | 2020-02-15T19:08:13Z | 2020-02-24T15:11:04Z |
DOC: Update pandas.Series.between_time docstring params | diff --git a/pandas/core/generic.py b/pandas/core/generic.py
index 04e8b78fb1b87..e996c47ac7ad3 100644
--- a/pandas/core/generic.py
+++ b/pandas/core/generic.py
@@ -7538,16 +7538,22 @@ def between_time(
Parameters
----------
start_time : datetime.time or str
+ Initial time as a time filter limit.
end_time : datetime.time or str
+ End time as a time filter limit.
include_start : bool, default True
+ Whether the start time needs to be included in the result.
include_end : bool, default True
+ Whether the end time needs to be included in the result.
axis : {0 or 'index', 1 or 'columns'}, default 0
+ Determine range time on index or columns value.
.. versionadded:: 0.24.0
Returns
-------
Series or DataFrame
+ Data from the original object filtered to the specified dates range.
Raises
------
| - [x] closes [https://github.com/pandanistas/pandanistas_sprint_jakarta2020/issues/20](https://github.com/pandanistas/pandanistas_sprint_jakarta2020/issues/20)
- [ ] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
output from python scripts/validate_docstrings.py pandas.Series.between_time:
################################################################################
#################### Docstring (pandas.Series.between_time) ####################
################################################################################
Select values between particular times of the day (e.g., 9:00-9:30 AM).
By setting ``start_time`` to be later than ``end_time``,
you can get the times that are *not* between the two times.
Parameters
----------
start_time : datetime.time or str
The first time value.
end_time : datetime.time or str
The second time value.
include_start : bool, default True
Adding start_time value in the result.
include_end : bool, default True
Adding end_time value in the result.
axis : {0 or 'index', 1 or 'columns'}, default 0
Determine range time on index or columns value.
.. versionadded:: 0.24.0
Returns
-------
Series or DataFrame
If axis set on columns, it will return DataFrame format, vice versa.
Raises
------
TypeError
If the index is not a :class:`DatetimeIndex`
See Also
--------
at_time : Select values at a particular time of the day.
first : Select initial periods of time series based on a date offset.
last : Select final periods of time series based on a date offset.
DatetimeIndex.indexer_between_time : Get just the index locations for
values between particular times of the day.
Examples
--------
>>> i = pd.date_range('2018-04-09', periods=4, freq='1D20min')
>>> ts = pd.DataFrame({'A': [1, 2, 3, 4]}, index=i)
>>> ts
A
2018-04-09 00:00:00 1
2018-04-10 00:20:00 2
2018-04-11 00:40:00 3
2018-04-12 01:00:00 4
>>> ts.between_time('0:15', '0:45')
A
2018-04-10 00:20:00 2
2018-04-11 00:40:00 3
You get the times that are *not* between two times by setting
``start_time`` later than ``end_time``:
>>> ts.between_time('0:45', '0:15')
A
2018-04-09 00:00:00 1
2018-04-12 01:00:00 4
################################################################################
################################## Validation ##################################
################################################################################ | https://api.github.com/repos/pandas-dev/pandas/pulls/32014 | 2020-02-15T11:05:41Z | 2020-02-15T19:10:24Z | 2020-02-15T19:10:24Z | 2020-02-15T19:10:34Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.