Reading and writing files#
Vector data cubes do not have an official specification for an interoperable file format that can be used to save any Xarray object with geometric dimensions to a file and read it back or in other software like {stars}
in the R-Spatial ecosystem.
However, there are some ways to encode the data to be compliant with either array I/O. The CF conventions offer a way of encoding coordinate geometries to array data that can then be saved to an array format like netCDF or Zarr. Both coordinate geometry and variable geometry can be encoded as well-known binary representation and stored in Zarr, with additional attributes allowing for lossless rountripping through a file. Both of these are supported by Xvec.
First lets read some data.
import geopandas as gpd
import xarray as xr
from geodatasets import get_path
import xvec
counties = gpd.read_file(get_path("geoda.natregimes"))
cube = xr.Dataset(
data_vars=dict(
population=(["county", "year"], counties[["PO60", "PO70", "PO80", "PO90"]]),
unemployment=(["county", "year"], counties[["UE60", "UE70", "UE80", "UE90"]]),
divorce=(["county", "year"], counties[["DV60", "DV70", "DV80", "DV90"]]),
age=(["county", "year"], counties[["MA60", "MA70", "MA80", "MA90"]]),
),
coords=dict(county=counties.geometry, year=[1960, 1970, 1980, 1990]),
).xvec.set_geom_indexes("county", crs=counties.crs)
cube
<xarray.Dataset> Size: 370kB Dimensions: (county: 3085, year: 4) Coordinates: * county (county) object 25kB POLYGON ((-95.34258270263672 48.546703... * year (year) int64 32B 1960 1970 1980 1990 Data variables: population (county, year) int32 49kB 4304 3987 3764 ... 43766 55800 65077 unemployment (county, year) float64 99kB 7.9 9.0 5.903 ... 7.018 5.489 divorce (county, year) float64 99kB 1.859 2.62 3.747 ... 4.782 7.415 age (county, year) float64 99kB 28.8 30.5 34.5 ... 28.97 35.33 Indexes: county GeometryIndex (crs=EPSG:4326)
- county: 3085
- year: 4
- county(county)objectPOLYGON ((-95.34258270263672 48....
- crs :
- EPSG:4326
array([<POLYGON ((-95.343 48.547, -95.341 48.715, -95.094 48.717, -95.095 48.912, -...>, <POLYGON ((-118.851 47.95, -118.847 48.478, -118.869 48.479, -118.87 48.647,...>, <POLYGON ((-117.438 48.044, -117.541 48.043, -117.536 47.79, -117.607 47.798...>, ..., <POLYGON ((-76.396 37.108, -76.403 37.091, -76.434 37.089, -76.464 37.103, -...>, <POLYGON ((-77.532 38.565, -77.721 38.84, -77.707 38.877, -77.678 38.885, -7...>, <POLYGON ((-111.372 44.745, -111.368 45.35, -111.349 45.349, -111.349 45.635...>], dtype=object)
- year(year)int641960 1970 1980 1990
array([1960, 1970, 1980, 1990])
- population(county, year)int324304 3987 3764 ... 55800 65077
array([[ 4304, 3987, 3764, 4076], [ 3889, 3655, 5811, 6295], [ 17884, 17405, 28979, 30948], ..., [ 21583, 33203, 44189, 53427], [ 50164, 111102, 166665, 250377], [ 39260, 43766, 55800, 65077]], dtype=int32)
- unemployment(county, year)float647.9 9.0 5.903 ... 5.444 7.018 5.489
array([[ 7.9 , 9. , 5.9025788 , 3.89479009], [ 8.2 , 15.4 , 15.42288557, 16.8115942 ], [10.1 , 9. , 13.57406431, 10.70079408], ..., [ 2.5 , 3.10506508, 5.03704493, 4.1028878 ], [ 3.3 , 2.36155862, 3.70888552, 3.35398107], [ 5.21803859, 5.44429066, 7.01794317, 5.48855304]])
- divorce(county, year)float641.859 2.62 3.747 ... 4.782 7.415
array([[ 1.85897436, 2.61980831, 3.74659401, 7.38853503], [ 2.86327845, 3.68600683, 6.6254417 , 11.54313487], [ 2.71144662, 2.97637795, 5.44822257, 9.12321222], ..., [ 1.11322292, 1.55032333, 3.25763881, 4.85074627], [ 1.67239146, 1.46834319, 3.74220727, 5.75017712], [ 2.77758585, 2.72460364, 4.78226375, 7.4145588 ]])
- age(county, year)float6428.8 30.5 34.5 ... 26.4 28.97 35.33
array([[28.8 , 30.5 , 34.5 , 35.5 ], [25.9 , 27.1 , 27.2 , 32.8 ], [29.6 , 31.8 , 28.7 , 34.5 ], ..., [24.4 , 24.4 , 29.8 , 34. ], [22.3 , 21.8 , 25.66666667, 28.46666667], [28.25 , 26.4 , 28.96666667, 35.33333333]])
- yearPandasIndex
PandasIndex(Index([1960, 1970, 1980, 1990], dtype='int64', name='year'))
- countyGeometryIndex (crs=EPSG:4326)
GeometryIndex( [<POLYGON ((-95.343 48.547, -95.341 48.715, -95.094 48.717, -95.095 48.912, -...> <POLYGON ((-118.851 47.95, -118.847 48.478, -118.869 48.479, -118.87 48.647,...> <POLYGON ((-117.438 48.044, -117.541 48.043, -117.536 47.79, -117.607 47.798...> <POLYGON ((-118.971 47.939, -118.973 47.96, -118.953 47.989, -118.953 48.02,...> ... <POLYGON ((-107.195 34.584, -107.718 34.584, -108.227 34.583, -109.048 34.59...> <POLYGON ((-76.396 37.108, -76.403 37.091, -76.434 37.089, -76.464 37.103, -...> <POLYGON ((-77.532 38.565, -77.721 38.84, -77.707 38.877, -77.678 38.885, -7...> <POLYGON ((-111.372 44.745, -111.368 45.35, -111.349 45.349, -111.349 45.635...>], crs=EPSG:4326)
CF conventions and netCDF, Zarr#
Given a vector data cube that contains only coordinate geometries (i.e. no variable geometries), you can use .xvec.encode_cf()
to to encode geometry arrays with CF conventions to a form that is compatible with any array storage format (e.g. netCDF, Zarr). This function uses cf_xarray.geometry.encode_geometries
and cf_xarray.geometry.decode_geometries
under the hood and is not limited to a single array of geometries.
encoded = cube.xvec.encode_cf()
encoded
<xarray.Dataset> Size: 2MB Dimensions: (county: 3085, part: 3172, node: 80563, year: 4) Coordinates: spatial_ref int64 8B 0 * year (year) int64 32B 1960 1970 1980 1990 Dimensions without coordinates: county, part, node Data variables: node_count (county) int64 25kB 24 50 68 99 16 7 ... 86 32 24 32 74 part_node_count (part) int64 25kB 24 50 68 99 16 7 ... 28 86 32 24 32 74 interior_ring (part) bool 3kB False False False ... False False False geometry_container float64 8B nan x (node) float64 645kB -95.34 -95.34 ... -111.3 -111.4 y (node) float64 645kB 48.55 48.72 48.72 ... 44.73 44.75 lon (county) float64 25kB -95.34 -118.9 ... -77.53 -111.4 lat (county) float64 25kB 48.55 47.95 48.04 ... 38.57 44.75 population (county, year) int32 49kB 4304 3987 3764 ... 55800 65077 unemployment (county, year) float64 99kB 7.9 9.0 ... 7.018 5.489 divorce (county, year) float64 99kB 1.859 2.62 ... 4.782 7.415 age (county, year) float64 99kB 28.8 30.5 ... 28.97 35.33
- county: 3085
- part: 3172
- node: 80563
- year: 4
- spatial_ref()int640
- crs_wkt :
- GEOGCRS["WGS 84",ENSEMBLE["World Geodetic System 1984 ensemble",MEMBER["World Geodetic System 1984 (Transit)"],MEMBER["World Geodetic System 1984 (G730)"],MEMBER["World Geodetic System 1984 (G873)"],MEMBER["World Geodetic System 1984 (G1150)"],MEMBER["World Geodetic System 1984 (G1674)"],MEMBER["World Geodetic System 1984 (G1762)"],MEMBER["World Geodetic System 1984 (G2139)"],MEMBER["World Geodetic System 1984 (G2296)"],ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ENSEMBLEACCURACY[2.0]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],CS[ellipsoidal,2],AXIS["geodetic latitude (Lat)",north,ORDER[1],ANGLEUNIT["degree",0.0174532925199433]],AXIS["geodetic longitude (Lon)",east,ORDER[2],ANGLEUNIT["degree",0.0174532925199433]],USAGE[SCOPE["Horizontal component of 3D system."],AREA["World."],BBOX[-90,-180,90,180]],ID["EPSG",4326]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- WGS 84
- horizontal_datum_name :
- World Geodetic System 1984 ensemble
- grid_mapping_name :
- latitude_longitude
- spatial_ref :
- GEOGCRS["WGS 84",ENSEMBLE["World Geodetic System 1984 ensemble",MEMBER["World Geodetic System 1984 (Transit)"],MEMBER["World Geodetic System 1984 (G730)"],MEMBER["World Geodetic System 1984 (G873)"],MEMBER["World Geodetic System 1984 (G1150)"],MEMBER["World Geodetic System 1984 (G1674)"],MEMBER["World Geodetic System 1984 (G1762)"],MEMBER["World Geodetic System 1984 (G2139)"],MEMBER["World Geodetic System 1984 (G2296)"],ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ENSEMBLEACCURACY[2.0]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],CS[ellipsoidal,2],AXIS["geodetic latitude (Lat)",north,ORDER[1],ANGLEUNIT["degree",0.0174532925199433]],AXIS["geodetic longitude (Lon)",east,ORDER[2],ANGLEUNIT["degree",0.0174532925199433]],USAGE[SCOPE["Horizontal component of 3D system."],AREA["World."],BBOX[-90,-180,90,180]],ID["EPSG",4326]]
array(0)
- year(year)int641960 1970 1980 1990
array([1960, 1970, 1980, 1990])
- node_count(county)int6424 50 68 99 16 7 ... 86 32 24 32 74
array([24, 50, 68, ..., 24, 32, 74])
- part_node_count(part)int6424 50 68 99 16 7 ... 86 32 24 32 74
array([24, 50, 68, ..., 24, 32, 74])
- interior_ring(part)boolFalse False False ... False False
array([False, False, False, ..., False, False, False])
- geometry_container()float64nan
- geometry_type :
- polygon
- node_count :
- node_count
- node_coordinates :
- x y
- coordinates :
- lon lat
- grid_mapping :
- spatial_ref
- part_node_count :
- part_node_count
- interior_ring :
- interior_ring
- variable_name :
- county
array(nan)
- x(node)float64-95.34 -95.34 ... -111.3 -111.4
- axis :
- X
- units :
- degrees_east
- standard_name :
- longitude
- grid_mapping :
- spatial_ref
array([ -95.3425827 , -95.34081268, -95.09413147, ..., -111.31843567, -111.34918976, -111.371521 ])
- y(node)float6448.55 48.72 48.72 ... 44.73 44.75
- axis :
- Y
- units :
- degrees_north
- standard_name :
- latitude
- grid_mapping :
- spatial_ref
array([48.54670334, 48.71519089, 48.71737671, ..., 44.72793961, 44.72625351, 44.74516296])
- lon(county)float64-95.34 -118.9 ... -77.53 -111.4
- nodes :
- x
- units :
- degrees_east
- standard_name :
- longitude
- grid_mapping :
- spatial_ref
array([ -95.3425827 , -118.85050201, -117.43777466, ..., -76.39569092, -77.53178406, -111.371521 ])
- lat(county)float6448.55 47.95 48.04 ... 38.57 44.75
- nodes :
- y
- units :
- degrees_north
- standard_name :
- latitude
- grid_mapping :
- spatial_ref
array([48.54670334, 47.94968796, 48.04421997, ..., 37.10770798, 38.56505585, 44.74516296])
- population(county, year)int324304 3987 3764 ... 55800 65077
- grid_mapping :
- spatial_ref
- geometry :
- geometry_container
array([[ 4304, 3987, 3764, 4076], [ 3889, 3655, 5811, 6295], [ 17884, 17405, 28979, 30948], ..., [ 21583, 33203, 44189, 53427], [ 50164, 111102, 166665, 250377], [ 39260, 43766, 55800, 65077]], dtype=int32)
- unemployment(county, year)float647.9 9.0 5.903 ... 5.444 7.018 5.489
- grid_mapping :
- spatial_ref
- geometry :
- geometry_container
array([[ 7.9 , 9. , 5.9025788 , 3.89479009], [ 8.2 , 15.4 , 15.42288557, 16.8115942 ], [10.1 , 9. , 13.57406431, 10.70079408], ..., [ 2.5 , 3.10506508, 5.03704493, 4.1028878 ], [ 3.3 , 2.36155862, 3.70888552, 3.35398107], [ 5.21803859, 5.44429066, 7.01794317, 5.48855304]])
- divorce(county, year)float641.859 2.62 3.747 ... 4.782 7.415
- grid_mapping :
- spatial_ref
- geometry :
- geometry_container
array([[ 1.85897436, 2.61980831, 3.74659401, 7.38853503], [ 2.86327845, 3.68600683, 6.6254417 , 11.54313487], [ 2.71144662, 2.97637795, 5.44822257, 9.12321222], ..., [ 1.11322292, 1.55032333, 3.25763881, 4.85074627], [ 1.67239146, 1.46834319, 3.74220727, 5.75017712], [ 2.77758585, 2.72460364, 4.78226375, 7.4145588 ]])
- age(county, year)float6428.8 30.5 34.5 ... 26.4 28.97 35.33
- grid_mapping :
- spatial_ref
- geometry :
- geometry_container
array([[28.8 , 30.5 , 34.5 , 35.5 ], [25.9 , 27.1 , 27.2 , 32.8 ], [29.6 , 31.8 , 28.7 , 34.5 ], ..., [24.4 , 24.4 , 29.8 , 34. ], [22.3 , 21.8 , 25.66666667, 28.46666667], [28.25 , 26.4 , 28.96666667, 35.33333333]])
- yearPandasIndex
PandasIndex(Index([1960, 1970, 1980, 1990], dtype='int64', name='year'))
Write to a format as usual with Xarray
encoded.to_netcdf("geo-encoded.nc", mode="w")
encoded.to_zarr("geo-encoded.zarr", mode="w")
<xarray.backends.zarr.ZarrStore at 0x1356920e0>
On open, use .xvec.decode_cf
to recover the array. This function uses cf_xarray.decode_geometries
so again cf_xarray
must be installed.
roundtripped = xr.open_zarr("geo-encoded.zarr").xvec.decode_cf()
roundtripped
<xarray.Dataset> Size: 370kB Dimensions: (county: 3085, year: 4) Coordinates: * county (county) object 25kB POLYGON ((-95.34258270263672 48.546703... * year (year) int64 32B 1960 1970 1980 1990 Data variables: age (county, year) float64 99kB dask.array<chunksize=(3085, 4), meta=np.ndarray> divorce (county, year) float64 99kB dask.array<chunksize=(3085, 4), meta=np.ndarray> population (county, year) int32 49kB dask.array<chunksize=(3085, 4), meta=np.ndarray> unemployment (county, year) float64 99kB dask.array<chunksize=(3085, 4), meta=np.ndarray> Indexes: county GeometryIndex (crs=EPSG:4326)
- county: 3085
- year: 4
- county(county)objectPOLYGON ((-95.34258270263672 48....
- crs :
- GEOGCRS["WGS 84",ENSEMBLE["World Geodetic System 1984 ensemble",MEMBER["World Geodetic System 1984 (Transit)"],MEMBER["World Geodetic System 1984 (G730)"],MEMBER["World Geodetic System 1984 (G873)"],MEMBER["World Geodetic System 1984 (G1150)"],MEMBER["World Geodetic System 1984 (G1674)"],MEMBER["World Geodetic System 1984 (G1762)"],MEMBER["World Geodetic System 1984 (G2139)"],MEMBER["World Geodetic System 1984 (G2296)"],ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ENSEMBLEACCURACY[2.0]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],CS[ellipsoidal,2],AXIS["geodetic latitude (Lat)",north,ORDER[1],ANGLEUNIT["degree",0.0174532925199433]],AXIS["geodetic longitude (Lon)",east,ORDER[2],ANGLEUNIT["degree",0.0174532925199433]],USAGE[SCOPE["Horizontal component of 3D system."],AREA["World."],BBOX[-90,-180,90,180]],ID["EPSG",4326]]
array([<POLYGON ((-95.343 48.547, -95.341 48.715, -95.094 48.717, -95.095 48.912, -...>, <POLYGON ((-118.851 47.95, -118.847 48.478, -118.869 48.479, -118.87 48.647,...>, <POLYGON ((-117.438 48.044, -117.541 48.043, -117.536 47.79, -117.607 47.798...>, ..., <POLYGON ((-76.396 37.108, -76.403 37.091, -76.434 37.089, -76.464 37.103, -...>, <POLYGON ((-77.532 38.565, -77.721 38.84, -77.707 38.877, -77.678 38.885, -7...>, <POLYGON ((-111.372 44.745, -111.368 45.35, -111.349 45.349, -111.349 45.635...>], dtype=object)
- year(year)int641960 1970 1980 1990
array([1960, 1970, 1980, 1990])
- age(county, year)float64dask.array<chunksize=(3085, 4), meta=np.ndarray>
Array Chunk Bytes 96.41 kiB 96.41 kiB Shape (3085, 4) (3085, 4) Dask graph 1 chunks in 2 graph layers Data type float64 numpy.ndarray - divorce(county, year)float64dask.array<chunksize=(3085, 4), meta=np.ndarray>
Array Chunk Bytes 96.41 kiB 96.41 kiB Shape (3085, 4) (3085, 4) Dask graph 1 chunks in 2 graph layers Data type float64 numpy.ndarray - population(county, year)int32dask.array<chunksize=(3085, 4), meta=np.ndarray>
Array Chunk Bytes 48.20 kiB 48.20 kiB Shape (3085, 4) (3085, 4) Dask graph 1 chunks in 2 graph layers Data type int32 numpy.ndarray - unemployment(county, year)float64dask.array<chunksize=(3085, 4), meta=np.ndarray>
Array Chunk Bytes 96.41 kiB 96.41 kiB Shape (3085, 4) (3085, 4) Dask graph 1 chunks in 2 graph layers Data type float64 numpy.ndarray
- yearPandasIndex
PandasIndex(Index([1960, 1970, 1980, 1990], dtype='int64', name='year'))
- countyGeometryIndex (crs=EPSG:4326)
GeometryIndex( [<POLYGON ((-95.343 48.547, -95.341 48.715, -95.094 48.717, -95.095 48.912, -...> <POLYGON ((-118.851 47.95, -118.847 48.478, -118.869 48.479, -118.87 48.647,...> <POLYGON ((-117.438 48.044, -117.541 48.043, -117.536 47.79, -117.607 47.798...> <POLYGON ((-118.971 47.939, -118.973 47.96, -118.953 47.989, -118.953 48.02,...> ... <POLYGON ((-107.195 34.584, -107.718 34.584, -108.227 34.583, -109.048 34.59...> <POLYGON ((-76.396 37.108, -76.403 37.091, -76.434 37.089, -76.464 37.103, -...> <POLYGON ((-77.532 38.565, -77.721 38.84, -77.707 38.877, -77.678 38.885, -7...> <POLYGON ((-111.372 44.745, -111.368 45.35, -111.349 45.349, -111.349 45.635...>], crs=EPSG:4326)
roundtripped.identical(cube)
True
Zarr and well-known binary#
The CF conventions do not define a way of storing variable geometries. For that reason, xvec
implements encoding to well-known binary representation of geometries. This way, you can save any Dataset to Zarr and read it back.
Create an example Dataset with Svalbard glacier changing geometries with a summary geometry to have both coordinate and variable geometry in the same object.
glaciers_df = gpd.read_file("https://github.com/loreabad6/post/raw/refs/heads/main/inst/extdata/svalbard.gpkg")
glaciers = (
glaciers_df.set_index(["name", "year"])
.to_xarray()
.proj.assign_crs(
spatial_ref=glaciers_df.crs
) # use xproj to store the CRS information
.xvec.summarize_geometry(
dim="name", geom_array="geometry", aggfunc="concave_hull", ratio=0.2
) # generate coordinate geometry
)
glaciers
<xarray.Dataset> Size: 472B Dimensions: (name: 5, year: 3) Coordinates: * name (name) object 40B 'Austre Brøggerbreen' ... 'Steenbreen' * year (year) float64 24B 1.936e+03 1.99e+03 2.007e+03 * spatial_ref int64 8B 0 * summary_geometry (name) object 40B POLYGON ((431324.8682000004 8762430.3... Data variables: length (name, year) float64 120B 5.808e+03 ... 1.819e+03 fwidth (name, year) float64 120B 1.254e+03 470.1 ... 279.4 202.6 geometry (name, year) object 120B POLYGON ((432375.11039999966 8... Indexes: spatial_ref CRSIndex (crs=EPSG:32633) summary_geometry GeometryIndex (crs=EPSG:32633)
- name: 5
- year: 3
- name(name)object'Austre Brøggerbreen' ... 'Steen...
array(['Austre Brøggerbreen', 'Austre Lovenbreen', 'Edithbreen', 'Midtre Lovenbreen', 'Steenbreen'], dtype=object)
- year(year)float641.936e+03 1.99e+03 2.007e+03
array([1936., 1990., 2007.])
- spatial_ref()int640
array(0)
- summary_geometry(name)objectPOLYGON ((431324.8682000004 8762...
- crs :
- EPSG:32633
array([<POLYGON ((431324.868 8762430.398, 431365.555 8762561.178, 431505.103 876253...>, <POLYGON ((437890.08 8759688.247, 437972.08 8759783.098, 438111.093 8759913....>, <POLYGON ((435306.075 8755348.831, 435469.097 8755538.298, 435588.071 875565...>, <POLYGON ((436099.83 8760609.829, 436157.072 8760718.862, 436363.409 8760819...>, <POLYGON ((433235.124 8756697.643, 433284.108 8756749.624, 433305.082 875676...>], dtype=object)
- length(name, year)float645.808e+03 5.265e+03 ... 1.819e+03
array([[5808.299579, 5265.479773, 4886.823854], [4655.052772, 3751.333493, 3441.045428], [5029.248703, 4335.833494, 4099.017543], [4381.553508, 3772.578735, 3566.190758], [2279.163326, 1928.610561, 1818.691555]])
- fwidth(name, year)float641.254e+03 470.1 ... 279.4 202.6
array([[1254.324348, 470.127452, 888.406938], [1215.71829 , 415.68072 , 552.597872], [ 465.073176, 428.611163, 414.354343], [1448.993086, 778.749748, 698.536216], [ 208.142946, 279.3527 , 202.641662]])
- geometry(name, year)objectPOLYGON ((432375.11039999966 876...
array([[<POLYGON ((432375.11 8761657.493, 432374.075 8761556.916, 432359.094 8761317...>, <POLYGON ((432827.911 8760071.745, 432927.89 8760033.48, 432969.69 8760016.4...>, <POLYGON ((430859.331 8760810.068, 430859.331 8760955.06, 430896.373 8761011...>], [<POLYGON ((439050.076 8760008.254, 439165.072 8760005.234, 439280.066 875999...>, <POLYGON ((439017.009 8757383.527, 439021.079 8757374.342, 439034.263 875736...>, <POLYGON ((438084.33 8758585.89, 438085.213 8758599.512, 438145.315 8758587....>], [<POLYGON ((436612.09 8756035.361, 436709.062 8755987.852, 437034.077 8755985...>, <POLYGON ((437656.357 8755886.121, 437657.59 8755885.91, 437673.31 8755886.3...>, <POLYGON ((435895.989 8755828.511, 435907.3 8755836.48, 435950.48 8755865.38...>], [<MULTIPOLYGON (((437133.738 8760867.133, 437249.396 8760812.577, 437437.069 ...>, <MULTIPOLYGON (((437126.101 8759081.666, 437072.097 8759019.568, 437031.087 ...>, <MULTIPOLYGON (((436343.669 8759786.422, 436396.593 8759874.629, 436425.673 ...>], [<POLYGON ((433846.077 8756899.896, 434061.106 8756825.509, 434270.08 8756730...>, <POLYGON ((433722.085 8756919.211, 433772.071 8756919.991, 433782.204 875692...>, <POLYGON ((433151.47 8756599.749, 433235.124 8756697.643, 433284.108 8756749...>]], dtype=object)
- namePandasIndex
PandasIndex(Index(['Austre Brøggerbreen', 'Austre Lovenbreen', 'Edithbreen', 'Midtre Lovenbreen', 'Steenbreen'], dtype='object', name='name'))
- yearPandasIndex
PandasIndex(Index([1936.0, 1990.0, 2007.0], dtype='float64', name='year'))
- spatial_refCRSIndex (crs=EPSG:32633)
CRSIndex <Projected CRS: EPSG:32633> Name: WGS 84 / UTM zone 33N Axis Info [cartesian]: - E[east]: Easting (metre) - N[north]: Northing (metre) Area of Use: - name: Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore. Austria. Bosnia and Herzegovina. Cameroon. Central African Republic. Chad. Congo. Croatia. Czechia. Democratic Republic of the Congo (Zaire). Gabon. Germany. Hungary. Italy. Libya. Malta. Niger. Nigeria. Norway. Poland. San Marino. Slovakia. Slovenia. Svalbard. Sweden. Vatican City State. - bounds: (12.0, 0.0, 18.0, 84.0) Coordinate Operation: - name: UTM zone 33N - method: Transverse Mercator Datum: World Geodetic System 1984 ensemble - Ellipsoid: WGS 84 - Prime Meridian: Greenwich
- summary_geometryGeometryIndex (crs=EPSG:32633)
GeometryIndex( [<POLYGON ((431324.868 8762430.398, 431365.555 8762561.178, 431505.103 876253...> <POLYGON ((437890.08 8759688.247, 437972.08 8759783.098, 438111.093 8759913....> <POLYGON ((435306.075 8755348.831, 435469.097 8755538.298, 435588.071 875565...> <POLYGON ((436099.83 8760609.829, 436157.072 8760718.862, 436363.409 8760819...> <POLYGON ((433235.124 8756697.643, 433284.108 8756749.624, 433305.082 875676...>], crs=EPSG:32633)
The .xvec.encode_wkb()
method encodes all arrays with shapely geometry objects into WKB and stores the CRS information as PROJJSON in their attributes, together with the information that the resulting array contains WKB-encoded geometry. Additionally, it adds a wkb_encoded_geometry
attribute equal to True
to avoid ambiguity during the decoding step.
encoded_wkb = glaciers.xvec.encode_wkb()
encoded_wkb
<xarray.Dataset> Size: 472B Dimensions: (name: 5, year: 3) Coordinates: * name (name) object 40B 'Austre Brøggerbreen' ... 'Steenbreen' * year (year) float64 24B 1.936e+03 1.99e+03 2.007e+03 * spatial_ref int64 8B 0 summary_geometry (name) object 40B b"\x01\x03\x00\x00\x00\x01\x00\x00\x0... Data variables: length (name, year) float64 120B 5.808e+03 ... 1.819e+03 fwidth (name, year) float64 120B 1.254e+03 470.1 ... 279.4 202.6 geometry (name, year) object 120B b'\x01\x03\x00\x00\x00\x06\x00... Indexes: spatial_ref CRSIndex (crs=EPSG:32633)
- name: 5
- year: 3
- name(name)object'Austre Brøggerbreen' ... 'Steen...
array(['Austre Brøggerbreen', 'Austre Lovenbreen', 'Edithbreen', 'Midtre Lovenbreen', 'Steenbreen'], dtype=object)
- year(year)float641.936e+03 1.99e+03 2.007e+03
array([1936., 1990., 2007.])
- spatial_ref()int640
array(0)
- summary_geometry(name)objectb"\x01\x03\x00\x00\x00\x01\x00\x...
- crs :
- {"$schema":"https://proj.org/schemas/v0.7/projjson.schema.json","type":"ProjectedCRS","name":"WGS 84 / UTM zone 33N","base_crs":{"name":"WGS 84","datum_ensemble":{"name":"World Geodetic System 1984 ensemble","members":[{"name":"World Geodetic System 1984 (Transit)","id":{"authority":"EPSG","code":1166}},{"name":"World Geodetic System 1984 (G730)","id":{"authority":"EPSG","code":1152}},{"name":"World Geodetic System 1984 (G873)","id":{"authority":"EPSG","code":1153}},{"name":"World Geodetic System 1984 (G1150)","id":{"authority":"EPSG","code":1154}},{"name":"World Geodetic System 1984 (G1674)","id":{"authority":"EPSG","code":1155}},{"name":"World Geodetic System 1984 (G1762)","id":{"authority":"EPSG","code":1156}},{"name":"World Geodetic System 1984 (G2139)","id":{"authority":"EPSG","code":1309}},{"name":"World Geodetic System 1984 (G2296)","id":{"authority":"EPSG","code":1383}}],"ellipsoid":{"name":"WGS 84","semi_major_axis":6378137,"inverse_flattening":298.257223563},"accuracy":"2.0","id":{"authority":"EPSG","code":6326}},"coordinate_system":{"subtype":"ellipsoidal","axis":[{"name":"Geodetic latitude","abbreviation":"Lat","direction":"north","unit":"degree"},{"name":"Geodetic longitude","abbreviation":"Lon","direction":"east","unit":"degree"}]},"id":{"authority":"EPSG","code":4326}},"conversion":{"name":"UTM zone 33N","method":{"name":"Transverse Mercator","id":{"authority":"EPSG","code":9807}},"parameters":[{"name":"Latitude of natural origin","value":0,"unit":"degree","id":{"authority":"EPSG","code":8801}},{"name":"Longitude of natural origin","value":15,"unit":"degree","id":{"authority":"EPSG","code":8802}},{"name":"Scale factor at natural origin","value":0.9996,"unit":"unity","id":{"authority":"EPSG","code":8805}},{"name":"False easting","value":500000,"unit":"metre","id":{"authority":"EPSG","code":8806}},{"name":"False northing","value":0,"unit":"metre","id":{"authority":"EPSG","code":8807}}]},"coordinate_system":{"subtype":"Cartesian","axis":[{"name":"Easting","abbreviation":"E","direction":"east","unit":"metre"},{"name":"Northing","abbreviation":"N","direction":"north","unit":"metre"}]},"scope":"Navigation and medium accuracy spatial referencing.","area":"Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore. Austria. Bosnia and Herzegovina. Cameroon. Central African Republic. Chad. Congo. Croatia. Czechia. Democratic Republic of the Congo (Zaire). Gabon. Germany. Hungary. Italy. Libya. Malta. Niger. Nigeria. Norway. Poland. San Marino. Slovakia. Slovenia. Svalbard. Sweden. Vatican City State.","bbox":{"south_latitude":0,"west_longitude":12,"north_latitude":84,"east_longitude":18},"id":{"authority":"EPSG","code":32633}}
- wkb_encoded_geometry :
- True
array([b"\x01\x03\x00\x00\x00\x01\x00\x00\x00S\x00\x00\x00\xc0k\tysS\x1aA~j\xbc\xcc\x87\xb6`A\x10\xc7\xba8\x16T\x1aA\xa2E\xb6%\x98\xb6`A \x9e^iDV\x1aA\x84\xc0\xca#\x95\xb6`A\xc0\xe3\x14]\xa4W\x1aA\xd2\x91\\\xc4\x91\xb6`A \xeb\xe2v\x8cX\x1aA\x14\xd0D,\x8e\xb6`A\xe0\x1b|a\xec^\x1aA\x82\x95C\xc3m\xb6`A0U0j\x88`\x1aA\xce\x88\xd2\x04a\xb6`A\xe0a\xa1VXb\x1aA\xe8\xd9\xac\x80G\xb6`A\x90\xb2\x0cq\xdcc\x1aA^K\xc8/'\xb6`A\xd0\xcc\xccL\xd8c\x1aA\x16jM\x9d\x1a\xb6`A\xc0d\xaa`\x9cc\x1aA\xf08E\xa7\xfc\xb5`A\xf0\x1f\xd2oPc\x1aAX\x17\xb7Q\xf5\xb5`A\xa0\xa2#y\xc8b\x1aAp=\nm\xe3\xb5`A\x901wm\\d\x1aA\x02\x9a\x08/\x8c\xb5`A\x10\xe9\xb7o\xc4k\x1aA\xa6\x9b\xc4Nb\xb5`Ap\t\xf9`Pl\x1aAFGr\xcb`\xb5`A`\x10Xy\x80o\x1aA:p\xce\x12K\xb5`Ap\xd7\x12r\x90q\x1aA4\xef8k:\xb5`AP\n\xd7\xa3\xccr\x1aA\xe2z\x14\xfe,\xb5`A \x8euq$\x7f\x1aA>\n\xd7\x11\x0c\xb5`A\xa0N@S,\x80\x1aAlV}<\r\xb5`A\xc0k\tyx\x80\x1aA\xd4\th\xf0\x0b\xb5`A\x80\xf2\xb0Pp\x82\x1aA\xa6\nFa\xfa\xb4`A c\xeeZ\xd8\x82\x1aA\xfe\xf6u\x8a\xea\xb4`A\xb0\x8b\xdbhX\x81\x1aA>yX\x90\x90\xb4`A\xf0\x044Q\xb0\x82\x1aA0\x99*Be\xb4`A\xb0\xaf\x03g\xc0\x82\x1aA\xdeq\x8a\xacb\xb4`A\xb0\xcf\xd5\xd6\x95\x7f\x1aAX\xca2\x9e\x08\xb4`AP\x9d\x80f\x14\x7f\x1aAX[\xb1q\xf8\xb3`A\x00V\x0e\xad\xa8~\x1aA\xbaI\x0c\xce\xf3\xb3`A\xe0\xce\xf7S\xa4~\x1aA\x08\xac\x1c\x9e\xf3\xb3`Ap\xb1\xbflP~\x1aAvq\x1b\x95\xf2\xb3`Aph\x91m\x98}\x1aA\xd2\x91\\\x12\xf1\xb3`A\xf0\x93\x87\x05\x97}\x1aA\x02\x9a\x08\x11\xf1\xb3`A\xe0\xcc\xccL }\x1aA\x02\x9a\x08\xa1\xf0\xb3`A\x90\xd2\xde`\x90s\x1aA\xaa\xf1\xd2\xa7\xe7\xb3`A\xb0\x08\x1b\x9eWs\x1aA\xfc\xcb\xee\x81\xe7\xb3`A\xa0\xcd\xaaO\x00r\x1aA8\xf8\xc2\x9c\xe6\xb3`A\x90\xd9=y\x10q\x1aA@\x13a\x95\xe6\xb3`A\x80\xd9=y\x10q\x1aA@\x13a\x95\xe6\xb3`A\x90\xfdew\x89n\x1aA\xe8j+X\xf1\xb3`AP\xd1\x91\\\x08n\x1aA\xf6\x97\xdd}\xf3\xb3`Ap\xf9\x0fi\xecg\x1aA\xeeZB(1\xb4`A\x10\xbc\x05Rx]\x1aA\xf2A\xcfZG\xb4`A\xd0v\xbe_\x80[\x1aA\xfe\xf6u\x80F\xb4`A\xa0\x8e\xe4\xb2p[\x1aAX9\xb4~F\xb4`A\xb0@\x82b\xb8Z\x1aAL\xa6\njF\xb4`A\x10X9t\x94X\x1aA\xf4\xfd\xd4\x08L\xb4`A\x90\xf6\x06_\x04R\x1aA\xe4\x83\x9e\xa3\x9e\xb4`A\x00o\x81\x84\x08O\x1aA\x14\xd0D2\xa7\xb4`A\xe0\x9c\x11eLH\x1aA6\x1a\xc0\xe5\xa5\xb4`A\xc0%\xe4\x83\xdc<\x1aA\xf0\x16HT\x9d\xb4`A\xb0%\xe4\x83\xdc<\x1aA\xf0\x16HT\x9d\xb4`A\xb03\xa2t\xc4;\x1aA\xf6u\xe0H\x9d\xb4`A\xa03\xa2t\xc4;\x1aA\xf6u\xe0H\x9d\xb4`A \xc9\xe5\x7f\x184\x1aA\xe26\x1a\x0e\xa6\xb4`A0\x87\x16Y\xdd3\x1aA\xf0\x16H\xce\xa6\xb4`A\xe0?\xa4_D2\x1aA\xb8\xaf\x03\xff\xab\xb4`A`\x98L\x15\xf31\x1aAjM\xf3\xde\xaf\xb4`A@\x9bU_\x002\x1aAlV} \xb1\xb4`A \xe4\x83^\xac3\x1aAl\xe7\xfb%\xe8\xb4`A\xc0\x1e\x85k\x94.\x1aA\x04x\x0b\xc29\xb5`A\xb0\x03\xe7\x8c\xd8-\x1aA\xdeq\x8aP?\xb5`A\x90\xb2\x0cq\xb8-\x1aA\x9c3\xa2FD\xb5`A\xc0\x8f1w81\x1aAz\x14\xae\x8dm\xb5`A`\xf5\xb9\x1aJ2\x1aA\x18?\xc6\x18x\xb5`A\xb0.nc\x982\x1aA\xfc\xa9\xf1\x1c{\xb5`A\xa0\xa2#9\xb22\x1aA\x80\x1d8\xd5{\xb5`A\x00\x9a\x08[\x043\x1aA.\xcb\x10\x1f~\xb5`A\xd0\xee\xc9\x83\xf53\x1aA6\xab>\xef\x80\xb5`A\xc0\x8f1wD7\x1aA&\xe4\x83\xd0\x8a\xb5`A\x80\xe9&q\xc8:\x1aA\xea\xb7\xaf\x8d\x91\xb5`Ap$\x97\x7f\xa3;\x1aA\xeeZB\x14\x91\xb5`A \xb0rh\xc8;\x1aA\xf2c\xcc\xff\x90\xb5`A\x10;pN\x08=\x1aAx\x0b$:\x90\xb5`A\x80Z\xd3|\xf8=\x1aA\x82\xe2\xc7\x10\x87\xb5`A\xb0%\xe4\x03GJ\x1aA\xbct\x93r\xa7\xb5`A\xf0\xe26ZLJ\x1aAL\xa6\n\x1a\xc7\xb5`A0\xc4\xb1n8J\x1aA<\xbdR(\xd1\xb5`A\xb0{\xf2p@J\x1aA&\xc2\x86'\xd6\xb5`A\xe0\xf9~\xaa\xe3I\x1aATt$o(\xb6`A\xa0\x1a/\x1d^R\x1aAz\xc7)lo\xb6`A\xc0k\tysS\x1aA~j\xbc\xcc\x87\xb6`A", b'\x01\x03\x00\x00\x00\x01\x00\x00\x00[\x00\x00\x00`\x17\xb7Q\x08\xba\x1aA\xfa\x0f\xe9\x071\xb5`A\xe0\xf2\x1fRP\xbb\x1aAx-!\xe3<\xb5`A@\x9bU_|\xbd\x1aA\x84/L0M\xb5`A\x80\xc0\xcaa\xa0\xc2\x1aA\xdeq\x8a4l\xb5`A\xf0\x044Q<\xc5\x1aA\xb2\x0cqLp\xb5`A\xd0]KH\x94\xc6\x1aA\xea\x044_q\xb5`A lx:\x80\xc7\x1aA\xd2Mb\xa0o\xb5`A\xf0\x06_Xl\xc9\x1aA\xde$\x06\xefj\xb5`Ap\xf0\x85I\xf8\xd0\x1aA\xb8\x1e\x85eT\xb5`A\xc0\xe3\x14]l\xd1\x1aA\x9a\x99\x99MR\xb5`A`K\xc8G(\xd2\x1aA<N\xd1CL\xb5`A\xa0\xbb\x96P\x90\xd2\x1aA\x86\xa7W.E\xb5`A`m\xc5>p\xd5\x1aA|\x83/\xfa\x0c\xb5`A Zd;D\xd5\x1aA\x08\xac\x1c\x02\xf9\xb4`A\xa0\xef\xa7F\x0c\xd5\x1aA\xae%\xe4\xa1\xf1\xb4`A\xb0\xeas5\xb4\xd3\x1aAP\x1e\x16\xde\xd6\xb4`A\xd0v\xbe_\xbc\xd2\x1aA\x02\x9a\x08\x11\xc9\xb4`A\xb0\x82QI\xac\xd0\x1aA\xf4\xdb\xd7\x81\xb5\xb4`A\xd0]KHt\xcf\x1aA\xb4\xc8v\x86\xa6\xb4`A c\xeeZx\xcc\x1aA\xac\xad\xd8k\x81\xb4`A\x90\xfde7\xe8\xcb\x1aA\xb6b\x7f\xfbv\xb4`A\x80\x1d8gP\xcb\x1aA\x12\x14?\x92i\xb4`A\xe0a\xa1V\x98\xca\x1aA\x10\x0b\xb5.M\xb4`A\x806\xab>d\xca\x1aA\xd64\xef~5\xb4`A\xe0\xe9\x952\xcc\xd0\x1aA\xda\xac\xfa\xda\x07\xb4`A0<\xbdR\x94\xd4\x1aA"\x1f\xf4\xc4\n\xb4`A\xd0\x12\xf2A@\xd6\x1aA\xc2\x86\xa7]\x0c\xb4`A@%uBd\xd8\x1aA\xea\x044}\x0f\xb4`AP\xfc\x183\xd4\xd9\x1aA\x10X9\xbc\x13\xb4`A\xd0\x9a\xe6]\xa1\xdb\x1aAhDi\xaf\x19\xb4`A`\xcc]K\xc4\xdb\x1aA\x14?\xc6"\x1a\xb4`A\xa0\xcd\xaaO\x10\xdd\x1aA\xc8\x07=\x8b\x1e\xb4`A@\xcffU\xdc\xdd\x1aA\xe26\x1a\xf2\x1f\xb4`A\x80\xa7W\xca\xe3\xdf\x1aA\xe4\x14\x1d\xcf\x1e\xb4`ApO\x1eV\xd0\xe0\x1aA,\xd4\x9aJ\x1e\xb4`A 8gD\xfb\xe0\x1aA\xa0\xf81d\x1d\xb4`A\xc0\x05\x12T\xdc\xe1\x1aA\x16\x8cJ\xac\x18\xb4`APR\'`\xbc\xe2\x1aA\x9c3\xa2\xf2\x11\xb4`A\xf0|?5<\xe3\x1aAR\xb8\x1e\x01\x0c\xb4`A\xd0;NQ\xbc\xe3\x1aA\xac\xad\xd8k\x05\xb4`A\xf0\xdb\xd7A<\xe4\x1aAX9\xb4\x04\xf8\xb3`A\xa0\xab\xadX\xbc\xe4\x1aA\xfe\xd4x\xf5\xdf\xb3`Ap\x91\xed<\xf4\xe4\x1aA\xbak\t\x1d\xd5\xb3`A\xd0\xe7j+\xa4\xe4\x1aA\x04\xe7\x8c\xda\xcb\xb3`A`)\xcb\x90,\xe4\x1aA\xf0\x85\xc9\xa6\xc5\xb3`A\xd0MbP\x04\xe4\x1aA\xb2\x0cq\x90\xc3\xb3`A0\xcd;N\xdc\xe2\x1aAh\xb3\xea\xa5\xbc\xb3`A\x00\xe7\x8c(\xb6\xe1\x1aA\x00\x91~G\xba\xb3`A\xd0v\xbe_\xf0\xe0\x1aA\xa4\x01\xbc\xaf\xb8\xb3`A`)\xcbP\x94\xda\x1aAD\xd8\xf0\x06\x9b\xb3`A\xe0O\x8dW\xfc\xd9\x1aA\\ Au\x96\xb3`A\x80\x83/L\xe0\xd7\x1aAn\x12\x83\xa4W\xb3`A\xe0h\x00/K\xd8\x1aA2\xc4\xb1\x9cO\xb3`A\xb0\xf3\xfdTh\xd8\x1aA\x044\x11lM\xb3`Ap\x8a\x8ed\xa8\xd8\x1aA.n\xa31>\xb3`A0\xdd$FT\xd9\x1aA\xb6\x15\xfb\x03\x15\xb3`A\xd0\x00\xdeBH\xd9\x1aA\xdch\x00i\x11\xb3`A@5^:(\xd8\x1aA\x1a\xe2X\xbb\x04\xb3`A\xe0X\x177\xe8\xd7\x1aA\xaa`T`\x02\xb3`A\xe0\xac\xfa\\H\xd7\x1aA\x84/L0\x02\xb3`A s\xd7R\\\xd6\x1aA c\xee\x90\x04\xb3`A\xe0q\x8aN\xcc\xd0\x1aAN@\x13\xcb\x16\xb3`A\xf0&1H\xec\xc9\x1aA\xb0\x94e ;\xb3`A\xb0G\xe1:\x08\xc2\x1aA\xb6\x84|@O\xb3`A\xa0\xef\xa7F\x04\xc0\x1aA\xd8_vGR\xb3`Ap\xdeqJ\xc8\xbf\x1aA\xa0\xab\xad\x02S\xb3`A\x80a2Up\xba\x1aA\xcc\xee\xc9\xa3j\xb3`A\xb0\xc8v>\xf4\xb9\x1aA\xc2\x17&\x81r\xb3`AP\x9f\xabm\x98\xb4\x1aA\xb4Y\xf5\xf1\xa3\xb3`A@\x13aC\xa8\xb2\x1aA\xb4\xeas\xbd\xa6\xb3`A\x80\xf4\xdbWd\xb2\x1aA\xfeC\xfa\xc9\xaa\xb3`A\xb0\xf1\xd2\rd\xb2\x1aA A\xf1M\xab\xb3`A\xc0\xba\xb8MP\xb2\x1aAx\x0b$\x86\xce\xb3`AP\x15\x8cJx\xb2\x1aA\xc2d\xaa\xc0\xe1\xb3`A@\x03xKH\xb3\x1aA\xbc\x05\x12\\\xf5\xb3`A0\xab>W\x8c\xb3\x1aA\xd2o_C\xfa\xb3`A\x90St$9\xb4\x1aA\xa4p=\xa4\x00\xb4`A\xf0H.?\xec\xb4\x1aA\x0c\x93\xa9@\x07\xb4`A\x90\xdbh\x80E\xb5\x1aA\\\x8f\xc2g\n\xb4`A\x00M\x84M\xe0\xb6\x1aA\xb4\xc8v\xea\x18\xb4`A\x00\x00\x00\x00\xa0\xba\x1aA\x1e\x85\xebiC\xb4`A\xf0(\\\x8f_\xbb\x1aA\x90\xc2\xf5\xa0e\xb4`A\x80\x16\xd9NX\xbb\x1aA c\xee\x80|\xb4`A\xe0\x83\x9eM\xb8\xbb\x1aA\x80\xb7@\x80\x9d\xb4`A\xa0\nFeP\xba\x1aA\xba\xda\x8a\xd1\xca\xb4`A\xf0A\xcff\x0c\xba\x1aA\x80H\xbf\xad\xd0\xb4`A0e\x19b\x88\xb9\x1aA\x80H\xbf\xd1\xdc\xb4`A\xe0\xd0"[\xe0\xb8\x1aA\xa2E\xb6\xc7\xf3\xb4`A\xa0\xbd\xc1W\xac\xb8\x1aA\xce\xaa\xcfo\x00\xb5`A \xe2XW\xe4\xb8\x1aA\x14a\xc3\xed\x19\xb5`A`\x17\xb7Q\x08\xba\x1aA\xfa\x0f\xe9\x071\xb5`A', b'\x01\x03\x00\x00\x00\x01\x00\x00\x00=\x00\x00\x00\xb0\x03\xe7L\xa8\x91\x1aA\x98\xbb\x96\x9a\x12\xb3`Ap\x9c\xa2c4\x94\x1aA\xba\xda\x8aI*\xb3`A\x00\xde\x02I\x10\x96\x1aA\x8e\xe4\xf2\xdf8\xb3`A\xd0\xcc\xccL\xcc\x97\x1aA\x90\xa0\xf8\xe3C\xb3`A\x00\xe7\x8ch\xb4\x98\x1aA\x08\xac\x1c\x10I\xb3`A\xd0\xd5VlD\x9a\x1aAh\xb3\xea\xf3P\xb3`A\xb0`TR\x08\x9d\x1aA\xc2d\xaa&]\xb3`A@\xdfOM\xcc\x9e\x1aA\xea\x044gb\xb3`A\xa0\x99\x99Y\x08\xa4\x1aA\xb6\xf3\xfd\x8ei\xb3`A\xf0u\xe0\\\xfc\xa4\x1aA\x1c\r\xe0\xc5j\xb3`A\xe0_vOd\xae\x1aA\\\xb1\xbfjb\xb3`A\xc0\x86\xa7W@\xb8\x1aA*\x18\x95\xa6j\xb3`A\xc0\xd3+e\xdc\xb8\x1aA\x9c\x11\xa5Mj\xb3`A\xd0;NQL\xb9\x1aA\x868\xd6\x03e\xb3`A0\xf6\x97]h\xb9\x1aA\x8c\xb9k\xb5`\xb3`A \xc9\xe5?\x04\xbf\x1aA\x901w\x9d\'\xb3`A\xb0\xd1\x00^4\xc6\x1aAJ\xea\x04r%\xb3`A@\x01MD$\xc7\x1aAt\x93\x18\xde$\xb3`A@\x1c\xebbt\xcf\x1aA\xfee\xf7n\x14\xb3`A\x10\xac\x1cZt\xd0\x1aA*\xa9\x132\x13\xb3`A`\x868V4\xd4\x1aAfff\x8c\t\xb3`A`]\xdcF\x1c\xd5\x1aA(\xed\rB\x05\xb3`A\xd0v\xbe_\x10\xd6\x1aA\xe0\x0b\x93S\xfd\xb2`A\xe0\x14\x1dI\xb0\xd6\x1aA\x08\xac\x1cj\xf5\xb2`A\x00\xce\x19QX\xd7\x1aA:\x01M\x90\xe6\xb2`A\x10a\xc3S@\xd7\x1aA\xe4\xa5\x9b\x0c\xdc\xb2`A`\xfeCz\xeb\xd6\x1aAlV}\xfc\xd0\xb2`A\x10\xb7\xd1@\xfc\xd3\x1aA\xdch\x00\xc1\xb0\xb2`A\xd0+eY\x90\xd3\x1aA\xc6K7\xd3\xad\xb2`A\x90\xcb\x7fH\xc4\xce\x1aA\xf8\xc2d\xc6\xa2\xb2`Ap\x93\x18D\xb4\xc6\x1aA\x8c\xdbh\xdc\x91\xb2`A@\x94\xf6F \xc5\x1aA\x0c\x93\xa9<\x90\xb2`A\x10\x02+G\x80\xc1\x1aA\xc6\xfe\xb2\xbf\x8c\xb2`A\xe0q\x8aNh\xc0\x1aA\x96\x90\x0f\xc0\x8c\xb2`Ap-!_\x18\xbe\x1aA\x94\x18\x04\xd0\x91\xb2`A\xd0\xd5VlX\xbc\x1aA(\xed\r\xd4\x97\xb2`A\xa0\xe6\x1dg\x88\xb9\x1aA\x1cZd\x91\xa1\xb2`A\x10\xf9\xa0g,\xb8\x1aAb\x7f\xd9\xaf\xa6\xb2`A`\x98LU\xcc\xae\x1aA\x1a/\xdd\xec\xba\xb2`A\xb0\x0cql\x1c\xae\x1aA|\xd0\xb3\x95\xbc\xb2`A@\x13aCt\xad\x1aAV0*\xdb\xc1\xb2`A`d;_\xc4\xa7\x1aA\x8e\x06\xf0\x8a\xe9\xb2`Ap\t\xf9`\x14\x9f\x1aA\xf0\x85\xc9\x8a\xfb\xb2`A\xa0\xdf\xbeN\x80\x9c\x1aA\x82QI\x87\xf3\xb2`A\xb0\xa6yG\x1c\x9b\x1aA\x82QI\xbd\xec\xb2`AP\x0c\x02k\x98\x97\x1aA\x9e\x80&\xac\xd2\xb2`A A\xf1cd\x96\x1aAL\xc8\x07)\xc6\xb2`A\x80\x16\xd9N\x88\x95\x1aAp\xf0\x85\xc5\xbd\xb2`A\x00;pN`\x94\x1aAd;\xdf\xe3\xb6\xb2`APP\xfcXP\x93\x1aAt\xb5\x15+\xb3\xb2`A\x00_\x98Lx\x90\x1aA\x82\xe2\xc7\x1c\xaf\xb2`Ap\xe0\x9cQ@\x8e\x1aAF\x94\xf6@\xad\xb2`A\xc0\x96\x90O\x80\x8d\x1aA~\x1d8{\xaf\xb2`A\xc0\x05\x12T\xc4\x8c\x1aA\xda\x1b|\xa5\xb5\xb2`Ap\xbe\x9fZ\x80\x8c\x1aA\xd8\xa3p\x0b\xbc\xb2`A@\xcffU\xa0\x8c\x1aA2\x08\xacF\xca\xb2`A\xa0\xbb\x96P`\x8d\x1aA\xc6m4\x9c\xd7\xb2`A\xb0\x0cqld\x8e\x1aA\xde\x02\t\xac\xe8\xb2`A\x10\x83\xc0J4\x8f\x1aA\xe6\xd0"\xfb\xf5\xb2`A\x80\x0b$h\\\x90\x1aA \xd2om\x04\xb3`A\xb0\x03\xe7L\xa8\x91\x1aA\x98\xbb\x96\x9a\x12\xb3`A', b'\x01\x03\x00\x00\x00\x01\x00\x00\x00l\x00\x00\x00p\xe0\x9cQ\x0f\x9e\x1aAp\xce\x88:\xa4\xb5`A0^\xbaI\xf4\x9e\x1aA\xbeR\x96\xdb\xb1\xb5`A\xb0@\x82\xa2-\xa2\x1aA\x90\xa0\xf8c\xbe\xb5`A\xf0s\xb5Uy\xa3\x1aA\x8euq{\xc2\xb5`A\xd0f\xd5\'b\xa5\x1aAD\xfa\xed\xef\xc4\xb5`A\xe0\xb5\x84<\xe5\xa8\x1aA*\xa9\x13\xf0\xc7\xb5`A\xc0\x0e\x9c\xf36\xae\x1aA\\\xfeCd\xc4\xb5`A\xd0\xaa\xcf\x95\x05\xb0\x1aA\x90\x0fz\x92\xbd\xb5`A\x10\x14?F\xf4\xb2\x1aA\xe0\xbe\x0eL\xb1\xb5`Ap\x8a\x8e$\xfa\xb3\x1aA\xe4\xa5\x9b\xee\xa9\xb5`A\x806\xab~t\xb7\x1aA\xea&1\xbe\x83\xb5`AP\x96!\x0e\xc3\xb7\x1aA\x88\x85Z1k\xb5`A\xc09#J\xfa\xb6\x1aAX\xa85GN\xb5`A \xa0\x89pT\xb6\x1aA\xc4\xd3+\xe9:\xb5`Ap\xa3\x01<\xda\xb5\x1aA\x126<\x171\xb5`A\x00\xe7\x8c\xe8\xc2\xb4\x1aAd\xcc]s\x1d\xb5`A\xb0Pk\xda\xa2\xb3\x1aA\xe4a\xa1r\x0e\xb5`A0\xd4\x9a\xe6\xbf\xb2\x1aA433\xcf\x03\xb5`A\xa0,C\\x\xb1\x1aA|a2\x89\xf8\xb4`A@\xa4\xdf>,\xb0\x1aA,\xf6\x97;\xf2\xb4`A \xe4\x83\xde\x99\xae\x1aA\xb47\xf8`\xe8\xb4`A\x10\xbe0Y\x9c\xac\x1aA\xee\r\xbe&\xd3\xb4`AP\'\xa0\xc9\x11\xac\x1aA\x10X9\x10\xc5\xb4`Ap\x9aw\\\xd8\xab\x1aAB\xadi(\xbb\xb4`A\x10&SE\xdc\xab\x1aA\xb6\xf3\xfd\xbc\xaa\xb4`APb\x10X\x18\xac\x1aA(~\x8c\xe7\xa1\xb4`A\xd0Mb\xd0\xc2\xad\x1aA~\x1d8\x19\x8a\xb4`A\x00\xce\x19Qd\xb2\x1aA\xfc\x87\xf4\xe7\x80\xb4`A\xa0\x9b\xc4`\xec\xb2\x1aA\xbc\x05\x12\x0e\x80\xb4`A\x00\xce\x19\x91\x17\xb3\x1aA\xf6(\\Wo\xb4`APb\x10X\x18\xb3\x1aAd\xaa`\no\xb4`Ap=\nW\x1c\xb2\x1aA\xa8\xa4N\x08O\xb4`AP\xaf\x94e\xe4\xb1\x1aA\xe26\x1a\xf0H\xb4`A\xa0w\x9cb\xec\xaf\x1aA\xe0O\x8dk$\xb4`A\x10\x0b\xb5f\xb8\xae\x1aA\xd0f\xd5\x8d\xf3\xb3`A\xd0+eY\x9c\xae\x1aAl\x9aw\xc4\xe7\xb3`A\xb0\xeasu\x04\xae\x1aA\x86\xc9T\x15\xd9\xb3`A\xc0\xc1\x17f\xe4\xac\x1aA\xf8S\xe3\x11\xc5\xb3`A\xc0\x17&S|\xac\x1aAn\xc5\xfe\x08\xc2\xb3`A\xe0\x83\x9eM\x10\xab\x1aA\xb8\x1e\x85\x01\xc1\xb3`A\x80\x85ZS4\xaa\x1aA\x98\xbb\x96\xec\xc0\xb3`A\xc0I\x0cB(\xa4\x1aA\xd6\xc5m\xfe\xb6\xb3`A\x10\x1d\xc9e\\\xa3\x1aA\x80H\xbf\x13\xb5\xb3`A0\x99*XX\xa1\x1aAB\xf1cb\xb7\xb3`A\x10O\xafT\x14\x9b\x1aA\x04V\x0e\xc7\xad\xb3`A\xc0\x96\x90Op\x99\x1aA\xd8\x12\xf2\xa3\xa4\xb3`A\xe0q\x8aN\xb4\x98\x1aAt\xb5\x15}\xa2\xb3`A\x90\xed|?\xa0\x96\x1aA\xfe\xd4x\x1d\x9e\xb3`A\xb0\x9d\xefg\xb8\x94\x1aA\xe4\xa5\x9b4\x9a\xb3`Ap\x00o\x81\xc4\x92\x1aA\xaa\xf1\xd2\xaf\x9a\xb3`Ap\x9c\xa2c\xc4\x92\x1aA\x1aQ\xda\xaf\x9a\xb3`A\x90\xc2\xf5hL\x91\x1aA:\xb4\xc8P\x9d\xb3`A\x80\xfb:p\xf8\x8c\x1aAh\x91\xedP\xac\xb3`AP\xd1\x91\\\x9c\x8b\x1aA8EG\xa2\xb2\xb3`A0\x18\x95T\x0c\x8b\x1aA\xbc\xe3\x14C\xb9\xb3`AP0*i\xb8\x8a\x1aA\xfe\xb2{\x12\xc1\xb3`A\x80\xebQx\xe0\x86\x1aA\xfc\xcb\xee\x11\xe3\xb3`A\xb0{\xf2p,\x85\x1aA\xf0\x85\xc9\x8c\xe6\xb3`A\xe0\xc7\x98{ \x84\x1aAN@\x13\xf3\xf4\xb3`A\x00\xd5x),\x82\x1aA\xe4\xf2\x1f"\x1f\xb4`A\x80\x8c\xb9k(\x82\x1aA\xf6u\xe0r\x1f\xb4`A\x00\x88\xf4[\x00\x82\x1aA\xa6,CF2\xb4`A\x10\x1d\xc9eH\x82\x1aA\xc4 \xb0*7\xb4`AP\xda\x1b|~\x82\x1aA\xa0\x1a/\xb78\xb4`A`B>h\x8c\x83\x1aA\xf8S\xe3q@\xb4`A\x90\x18\x04\xd6\xe5\x83\x1aA\xd6\xe7j\xe3A\xb4`A0333\x15\x84\x1aA\x00\x00\x00xB\xb4`A\x10\xaeG\xe1\xa0\x84\x1aA\xd8\xa3p-D\xb4`A\xe06\x1a\x00\xa0\x87\x1aAvO\x1eJQ\xb4`A s\xd7R\x8c\x89\x1aA \xb0r<Y\xb4`A\xb0\xf1\xd2Ml\x8b\x1aA\xe6?\xa4#X\xb4`A\xe0\xe0\x0bS\xd4\x8c\x1aA\x16\xd9\xce\xfbW\xb4`A\xb0.nc(\x8f\x1aA<,\xd4\xe8^\xb4`A \x97\xffPT\x91\x1aA\x90\xc2\xf5"[\xb4`A\xd0\xd5VlT\x94\x1aAB>\xe8MX\xb4`A\xc0B\xadi\xb8\x98\x1aA\xbe0\x990c\xb4`APt$W<\x9a\x1aA\x1a\xc0[(t\xb4`AP\xc1\xa8d\x00\x9b\x1aA:#J\xc9\x8c\xb4`A\x00)\\\x8f\xf9\x94\x1aA\xbc\x1e\x85+\xa9\xb4`A\xf0(\\\x8f\x11\x94\x1aA\xbc\x1e\x85\xab\xa4\xb4`A\xc0\x99\x99\x99}\x92\x1aA\xb8\x1e\x85k\xa2\xb4`A0\xc9\xe5\xff\x82\x91\x1aAh\xeeZ\xdc\x9e\xb4`A\x10\x00\x00\x00\x85\x90\x1aA\xb0G\xe1\x82\x9c\xb4`A\xb0\x99\x99\x99%\x90\x1aA\xb8\x1e\x85\x8b\x9b\xb4`A\xb0\x99\x99\x99\x81\x8e\x1aA\xb8\x1e\x85\x8b\x9a\xb4`A\xc0\x99\x99\x99-\x8e\x1aA\xb8\x1e\x85+\x9a\xb4`AP\xb6\xf3}*\x8d\x1aA\x90\xb9k\xf3\xa2\xb4`A\x00\x00\x00\x00\xcb\x8c\x1aAT\xb8\x1e\x05\xab\xb4`Ap\xa4\xa1P\xef\x8c\x1aA\xd2\x7f\xa5a\xaf\xb4`A0\xb9!T\xfc\x8c\x1aAV\x92\xc2\xf1\xb0\xb4`A\xd0\x1e\x85\xeb\x11\x8d\x1aA\x9a\x99\x99\x89\xb3\xb4`A \xaeG\xe1\x87\x8e\x1aA \x85\xeb\x19\xbd\xb4`A\x00R\xb8\x1e\xb7\x91\x1aA\x02\x00\x00\xe0\xcd\xb4`A\x9a\x99\x99\x99U\x93\x1aA\xaeG\xe1j\x02\xb5`A\x9a\x99\x99\x99)\x93\x1aA\xaeG\xe1\xea\t\xb5`A\x9a\x99\x99\x99\t\x93\x1aA\xaeG\xe1\xca\r\xb5`A\x9a\x99\x99\x99\x15\x93\x1aA\xaeG\xe1\xca\x12\xb5`A@\\\x8f\xc2\x96\x93\x1aAp=\n_*\xb5`A0\\\x8f\xc2\x8b\x95\x1aA\x00\x00\x00 6\xb5`A\x9a\x99\x99\x99%\x96\x1aA\xaeG\xe1\x8a8\xb5`A\x9a\x99\x99\x991\x97\x1aA\xaeG\xe1\n;\xb5`A\xf6(\\\x8f9\x98\x1aA)\\\x8fj<\xb5`AP\xe1z\x14\xfb\x99\x1aAT\xb8\x1e\x05@\xb5`A\xe0\xf5(\\j\x9a\x1aA \x85\xeb\x01=\xb5`A\xd0\xe7jk\xe4\xa0\x1aAx\x9c\xa23K\xb5`A\x00\x81\x95C\x08\xa1\x1aA\xa6y\xc7[m\xb5`A\x80\x1d8\xe7q\xa0\x1aA\xa0\x1a/\x11~\xb5`Ap\xe0\x9cQ\x0f\x9e\x1aAp\xce\x88:\xa4\xb5`A', b'\x01\x03\x00\x00\x00\x01\x00\x00\x005\x00\x00\x00\x00\x12\x14\x7fLq\x1aA\xbct\x934\xbb\xb3`AP\x8d\x97n\x10r\x1aA\xb4Y\xf5\xb3\xc1\xb3`A\xa0<,Tdr\x1aA\xde\x02\t\x04\xc4\xb3`A\xd0\xa3p=\xd5v\x1aA\xb8\x1e\x85\xe3\x8a\xb3`A\x10\xaeG\xe1\xacx\x1aA\x14\xaeGi\x8d\xb3`A\xf0(\\\x8f\xday\x1aAp=\n\xef\x8e\xb3`A\x00\x00\x00\x00\xcbz\x1aAR\xb8\x1eU\x8f\xb3`A \x04VN\xd8z\x1aA\xe8\xd9\xac|\xd4\xb3`A \xe2XW\xe8x\x1aA\\\xb1\xbf\xe6\xd6\xb3`A@\x9bU_\xe0v\x1aAh"l\xcc\xd6\xb3`AP\x96!N\x00x\x1aA433{\xda\xb3`A\x90\xa9\x82QXz\x1aA&\xe4\x83\xfc\xda\xb3`A\xf0\x9e<l4~\x1aA\xf0\x16H0\xcb\xb3`A\xc00\x99\xeaL~\x1aA@\xa4\xdf\xd6\xca\xb3`A\xd0\xa3p=8\x7f\x1aA\xc2\xf5(D\xc7\xb3`A\xb0rhQx\x81\x1aAL\xc8\x07E\xbf\xb3`A \r\xe0\xed$\x83\x1aA\xb2\x9d\xef\xe3\xb9\xb3`A \xb0rh\x98\x86\x1aA\xfee\xf7P\xc3\xb3`A\xd0;NQ\xa4\x88\x1aAf\x19\xe2<\xc5\xb3`A\xb0\xfa\\m\xf4\x88\x1aA\xb6b\x7f\xef\xc3\xb3`A0\xbb\'Od\x89\x1aA\x9e\xef\xa7\xba\xc1\xb3`A`;\xdfO\xd8\x89\x1aA\x1e8g\xe0\xbe\xb3`A\x90uq\x9b\x10\x8c\x1aA\xf6u\xe0\xd4\x9f\xb3`APR\'`L\x8c\x1aArh\x91O\x9e\xb3`AP\xfc\x18sX\x8c\x1aA\x12\xf2A3\x9b\xb3`A\x10O\xafT&\x8c\x1aA\xaa\x13\xd0L\x96\xb3`A\x00M\x84M\x0c\x8c\x1aA\x88\x85Z\xc1\x93\xb3`A\xa0#\xb9\xfc\xf3\x89\x1aAN\x84\r\xadz\xb3`A\x00\xf7u`\x98\x89\x1aA\xae\xd8_dv\xb3`A\xb0i\xdeq\x94\x87\x1aA,\xd4\x9a\xcen\xb3`A0*\xa9S\x9c\x86\x1aA\x84/L\x1el\xb3`A0\xe6\xaeeD\x85\x1aA~\xfb:pj\xb3`A\xa0E\xb6s\x84\x82\x1aA\xea\x95\xb22j\xb3`A\x80\x0b$h\xc0\x80\x1aAx\xe9&\x11m\xb3`A\x10O\xafT\xd8\x7f\x1aA\xa8W\xca\xa4p\xb3`A\xb0\xfa\\ml\x7f\x1aAZ\xd3\xbc\xefu\xb3`A\x90Std\xa0~\x1aA\nh"N}\xb3`A\x80z\xa5l\x84z\x1aA0L\xa6\x08\x8c\xb3`A s\xd7R\xa8y\x1aA:\xb4\xc8\xdc\x8b\xb3`A\xd0+eY\x04v\x1aA0L\xa6B~\xb3`A\x10\x8a\x1fc\xbcs\x1aA\x16\xfb\xcb$l\xb3`A\xa0\x9b\xc4`pp\x1aA\x06\xf0\x16\x02X\xb3`A\xe0\x9c\x11e\x0co\x1aA\x14\x1d\xc9\x85R\xb3`A\xa0\xd64o\x18n\x1aA\xd6\xc5m\xb0P\xb3`A0\x89A`\x9cl\x1aA\x12\xa5\xbd\xc9P\xb3`A\xd0\xc3Bm\xfci\x1aA,C\x1c\xc9T\xb3`A\xc00\x99j\xdci\x1aA433\xadX\xb3`AP\x96!N\xc8j\x1aAF\x03x\xbdg\xb3`AP\x84\rO@l\x1aA"lx\x9c\x8a\xb3`A\x90C\x8bl\xdcl\x1aA\xb4\xc8v,\x91\xb3`A\xb0b\x7fYAo\x1aA\xc6\xfe\xb2\xf5\xa7\xb3`A\xc0R\x96\xe1\xfdo\x1aA\xb4Y\xf5\xf7\xae\xb3`A\x00\x12\x14\x7fLq\x1aA\xbct\x934\xbb\xb3`A'], dtype=object)
- length(name, year)float645.808e+03 5.265e+03 ... 1.819e+03
array([[5808.299579, 5265.479773, 4886.823854], [4655.052772, 3751.333493, 3441.045428], [5029.248703, 4335.833494, 4099.017543], [4381.553508, 3772.578735, 3566.190758], [2279.163326, 1928.610561, 1818.691555]])
- fwidth(name, year)float641.254e+03 470.1 ... 279.4 202.6
array([[1254.324348, 470.127452, 888.406938], [1215.71829 , 415.68072 , 552.597872], [ 465.073176, 428.611163, 414.354343], [1448.993086, 778.749748, 698.536216], [ 208.142946, 279.3527 , 202.641662]])
- geometry(name, year)objectb'\x01\x03\x00\x00\x00\x06\x00\x...
- crs :
- {"$schema":"https://proj.org/schemas/v0.7/projjson.schema.json","type":"ProjectedCRS","name":"WGS 84 / UTM zone 33N","base_crs":{"name":"WGS 84","datum_ensemble":{"name":"World Geodetic System 1984 ensemble","members":[{"name":"World Geodetic System 1984 (Transit)","id":{"authority":"EPSG","code":1166}},{"name":"World Geodetic System 1984 (G730)","id":{"authority":"EPSG","code":1152}},{"name":"World Geodetic System 1984 (G873)","id":{"authority":"EPSG","code":1153}},{"name":"World Geodetic System 1984 (G1150)","id":{"authority":"EPSG","code":1154}},{"name":"World Geodetic System 1984 (G1674)","id":{"authority":"EPSG","code":1155}},{"name":"World Geodetic System 1984 (G1762)","id":{"authority":"EPSG","code":1156}},{"name":"World Geodetic System 1984 (G2139)","id":{"authority":"EPSG","code":1309}},{"name":"World Geodetic System 1984 (G2296)","id":{"authority":"EPSG","code":1383}}],"ellipsoid":{"name":"WGS 84","semi_major_axis":6378137,"inverse_flattening":298.257223563},"accuracy":"2.0","id":{"authority":"EPSG","code":6326}},"coordinate_system":{"subtype":"ellipsoidal","axis":[{"name":"Geodetic latitude","abbreviation":"Lat","direction":"north","unit":"degree"},{"name":"Geodetic longitude","abbreviation":"Lon","direction":"east","unit":"degree"}]},"id":{"authority":"EPSG","code":4326}},"conversion":{"name":"UTM zone 33N","method":{"name":"Transverse Mercator","id":{"authority":"EPSG","code":9807}},"parameters":[{"name":"Latitude of natural origin","value":0,"unit":"degree","id":{"authority":"EPSG","code":8801}},{"name":"Longitude of natural origin","value":15,"unit":"degree","id":{"authority":"EPSG","code":8802}},{"name":"Scale factor at natural origin","value":0.9996,"unit":"unity","id":{"authority":"EPSG","code":8805}},{"name":"False easting","value":500000,"unit":"metre","id":{"authority":"EPSG","code":8806}},{"name":"False northing","value":0,"unit":"metre","id":{"authority":"EPSG","code":8807}}]},"coordinate_system":{"subtype":"Cartesian","axis":[{"name":"Easting","abbreviation":"E","direction":"east","unit":"metre"},{"name":"Northing","abbreviation":"N","direction":"north","unit":"metre"}]},"scope":"Navigation and medium accuracy spatial referencing.","area":"Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore. Austria. Bosnia and Herzegovina. Cameroon. Central African Republic. Chad. Congo. Croatia. Czechia. Democratic Republic of the Congo (Zaire). Gabon. Germany. Hungary. Italy. Libya. Malta. Niger. Nigeria. Norway. Poland. San Marino. Slovakia. Slovenia. Svalbard. Sweden. Vatican City State.","bbox":{"south_latitude":0,"west_longitude":12,"north_latitude":84,"east_longitude":18},"id":{"authority":"EPSG","code":32633}}
- wkb_encoded_geometry :
- True
array([[b'\x01\x03\x00\x00\x00\x06\x00\x00\x00@\x01\x00\x00\x90\xb2\x0cq\xdcc\x1aA^K\xc8/\'\xb6`A\xd0\xcc\xccL\xd8c\x1aA\x16jM\x9d\x1a\xb6`A\xc0d\xaa`\x9cc\x1aA\xf08E\xa7\xfc\xb5`A\xf0\x1f\xd2oPc\x1aAX\x17\xb7Q\xf5\xb5`A\xa0\xa2#y\xc8b\x1aAp=\nm\xe3\xb5`Ap\xac\x8b[4b\x1aA"\xfd\xf6\xa1\xa5\xb5`A\xb0\xaf\x03gtb\x1aA\xdc\xf9~\xc8\x9c\xb5`A\xb0\x8b\xdbh\xf4b\x1aA\xf6\xb9\xda\xea\x96\xb5`A\x901wm\\d\x1aA\x02\x9a\x08/\x8c\xb5`A\x80\x9e\xcdj\x1cg\x1aA\x8c\xdbh\xeco\xb5`A\xc0K7I\xd8g\x1aA(\xed\r\xdai\xb5`A\xf0\xc09c\x10i\x1aAD\x8bl!f\xb5`A@\x92\xcb\x7f\xfcj\x1aA\xb0\x94e\xd4`\xb5`A\x10\xe9\xb7o\xc4k\x1aA\xa6\x9b\xc4Nb\xb5`Ap\t\xf9`Pl\x1aAFGr\xcb`\xb5`A`\x10Xy\x80o\x1aA:p\xce\x12K\xb5`Ap\xd7\x12r\x90q\x1aA4\xef8k:\xb5`Ap_\x07NLs\x1aA\x1a\xe2X\xe1\'\xb5`A@\xdfOM\x98u\x1aA\x868\xd6\xbf\r\xb5`A \x06\x81Utv\x1aA\xda\x8a\xfd\xe5\x03\xb5`A\xa0\xc6Kw4w\x1aA\x90\x0fz\xd4\xf5\xb4`A\xe0\x1d\xa7h\xa8x\x1aA\x92\\\xfe\x87\xe8\xb4`A\x80\xebQx\xe0{\x1aA\xde\x93\x87\xf3\xe1\xb4`A\xc0\x17&Sl|\x1aA.\xff!A\xe2\xb4`A\xc0\xa8\xa4N\x88}\x1aA\xbe\xc1\x17"\xe4\xb4`A\xa0\x9b\xc4`\x94~\x1aA\x88\xf4\xdb\t\xe6\xb4`A\xb0\xf3\xfdT8\x7f\x1aA.\xff!\xc1\xe8\xb4`Ap\xd7\x122\x1f\x80\x1aATt$\xbf\xec\xb4`A\xd0;N\xd1\xe6\x80\x1aA\x04x\x0bn\xf1\xb4`A@\n\xd7c\xb4\x81\x1aAR\xb8\x1e\xcf\xf7\xb4`Ap=\nW\xbc\x81\x1aA\x88\xd2\xde\x86\xfb\xb4`A\xe0\xbe\x0e\\\x84\x81\x1aA\xee\xeb\xc0\xe5\xfc\xb4`A\x80\xf2\xb0P \x80\x1aAd\xcc]\x81\xff\xb4`A\x00\x12\x14\x7fH~\x1aA\x14\xd0DT\x04\xb5`A\x80\xa7WJd~\x1aA\x10X9\xbc\x06\xb5`A \x8euq$\x7f\x1aA>\n\xd7\x11\x0c\xb5`A\xa0N@S,\x80\x1aAlV}<\r\xb5`A\xc0k\tyx\x80\x1aA\xd4\th\xf0\x0b\xb5`A\x80\xf2\xb0Pp\x82\x1aA\xa6\nFa\xfa\xb4`A c\xeeZ\xd8\x82\x1aA\xfe\xf6u\x8a\xea\xb4`A\x80Z\xd3|\x94\x82\x1aA\x10z63\xe8\xb4`A\x80/Lf`\x7f\x1aA\xa6,Cj\xdf\xb4`A\x90\x87\x85Z4~\x1aA"\x8eu\x03\xe0\xb4`A\x808\xd6E\x00}\x1aA\xfc\xcb\xeew\xdc\xb4`ApO\x1eV<|\x1aA\x94\xf6\x06e\xd6\xb4`A`9\xb4H\\|\x1aA\x92\xcb\x7f\x9c\xd2\xb4`A\x90C\x8bl|~\x1aAlV}\x8e\xc0\xb4`A\xf0\x06_X\xac\x80\x1aA\xd8\xf0\xf4\xe8\xa6\xb4`A\xb0\x8b\xdbhX\x81\x1aA>yX\x90\x90\xb4`A@\x8blg\x10\x81\x1aA\xaeG\xe1\xa6\x81\xb4`A\x901wm\xf4\x7f\x1aA^\xdcFOx\xb4`A\xe0\x02\tJ\xd8\x7f\x1aAl\xe7\xfb\x9ft\xb4`A\x10h"l\xf4\x7f\x1aA4\x116Jn\xb4`A`;\xdfOT\x80\x1aA\x06\x81\x95\x1bl\xb4`A\xc0}\x1dx\x14\x81\x1aA\x84|\xd0\xb3h\xb4`A\xf0\x044Q\xb0\x82\x1aA0\x99*Be\xb4`A\xb0\xaf\x03g\xc0\x82\x1aA\xdeq\x8a\xacb\xb4`A \xc2\x86g\xb4\x81\x1aA\xbe0\x99\x06X\xb4`Ap\xf9\x0fi$\x81\x1aA\x901w+U\xb4`Ap=\nW\xb4\x7f\x1aA\xcaT\xc1\xe4R\xb4`A\xa0\x08\x1b^\xac~\x1aA$J{\x83Q\xb4`A\xd0\thb@~\x1aA6\xab>mM\xb4`A\xd0\xf7Sc4~\x1aA&u\x02\xccG\xb4`A\x10jMs\x10~\x1aA\xbak\tm%\xb4`A u\x02ZL~\x1aA\xb4\xc8v\xc2\x1d\xb4`A`\xe5\xd0b\xe8~\x1aAh"lN\x1a\xb4`A\x90Std\xc8\x7f\x1aA\xde\xe0\x0b/\x14\xb4`A`\xe5\xd0b\xd4\x7f\x1aAjM\xf3n\x10\xb4`AP\x9d\x80f\x14\x7f\x1aAX[\xb1q\xf8\xb3`A\xe0\xce\xf7S\xa4~\x1aA\x08\xac\x1c\x9e\xf3\xb3`A`\xb1\xbflP~\x1aAvq\x1b\x95\xf2\xb3`Aph\x91m\x98}\x1aA\xd2\x91\\\x12\xf1\xb3`A\xd0\xcc\xccL }\x1aA\x02\x9a\x08\xa1\xf0\xb3`A@\xd6\xc5m\xf8{\x1aA\xf6\xb9\xda\x12\xf2\xb3`A`\x19\xe2X\\{\x1aA*\xa9\x13\xc8\xf4\xb3`AP\xd1\x91\\Tz\x1aA\nh"@\xfc\xb3`A \xfd\xf6u\xe0y\x1aA\xe8\xfb\xa9\xd3\xfd\xb3`A`\xd3\xbcc\x8cy\x1aA\x8a\x8e\xe4\xca\xfc\xb3`A\x90\x18\x04V\x8cx\x1aA\xce\x19Qd\xf6\xb3`A\x90\xd2\xde`\x90s\x1aA\xaa\xf1\xd2\xa7\xe7\xb3`A\xa0\xcd\xaaO\x00r\x1aA8\xf8\xc2\x9c\xe6\xb3`A\x80\xd9=y\x10q\x1aA@\x13a\x95\xe6\xb3`AP\xd1\x91\\\x08n\x1aA\xf6\x97\xdd}\xf3\xb3`A\xa0#\xb9|xn\x1aAZ\xf5\xb9P\xf8\xb3`A0\x99*X\x10o\x1aA\nF%\x9b\xfd\xb3`A\xe0\xce\xf7Slo\x1aA\x00o\x81`\x0c\xb4`A\xc0\x8d\x06p`o\x1aAl\t\xf9\x14\x19\xb4`A\xb0\xc8v~\\p\x1aAp\xf0\x853&\xb4`Ap\x1b\r`\x94q\x1aA\xc8):\x804\xb4`A\x80\xf4\xdbW@r\x1aA\xca\xa1E\xc29\xb4`APb\x10X\x98s\x1aA\x80H\xbfaD\xb4`A \xa0\x89p\xb8s\x1aA\x88c].Z\xb4`A\xe0\x9c\x11e\\s\x1aAF\x03x\xe9f\xb4`A\x90\x87\x85Z,s\x1aA\x9e\x80&\xa4l\xb4`A0\xf6\x97]\xe8r\x1aA\xbc\x96\x90\xc3q\xb4`A\xd0V\xecoTo\x1aA\xaa\xcf\xd5\x10\x90\xb4`A0\xff!}\xd4k\x1aA:\x01M\xf4\xac\xb4`A0w-a$k\x1aA\xbak\t\x87\xae\xb4`A\xa0y\xc7i\x94j\x1aA"\xfd\xf6\x0f\xad\xb4`A`\xb1\xbfl\xaci\x1aAT\xe3\xa5/\xa9\xb4`A0\x90\xa0x\x18i\x1aA.!\x1f\x10\xa5\xb4`A`)\xcbPXh\x1aAb2U\xfe\x96\xb4`A\x00\xaa\xf1RLh\x1aAx\x0b$\x1c\x92\xb4`A\xc0[ \x81\x8ci\x1aA\x90\xa0\xf8\xd3\x90\xb4`A\xc0 \xb0rxj\x1aA\xda\x8a\xfd\xaf\x8f\xb4`Ap4\x80\xb7 k\x1aAN\xd1\x91 \x8e\xb4`A\xe0\xf2\x1fRXl\x1aA\xf2\xd2M\xfa|\xb4`A\xd02\xc4qdl\x1aA:#JUy\xb4`A@Gry\x10l\x1aA0*\xa91x\xb4`A\xc0t\x93X@k\x1aA\xa2#\xb9\x04}\xb4`A A\xf1c\xeci\x1aA\xa0\xab\xad\xe6\x85\xb4`A\xf0\xd2Mb\x8ch\x1aA@\x13a\xcb\x89\xb4`A0\x1a\xc0[\xd8g\x1aA\x82sF\xbc\x8a\xb4`A\xa0^)K,g\x1aA$\x97\xffz\x85\xb4`A\xb0\x8b\xdbh\x08g\x1aA\x1cZd/~\xb4`A\xa0N@SPg\x1aA\x06\x81\x95\x81{\xb4`A\x80\xae\xb6b h\x1aA$(~$~\xb4`A\xd0\x00\xde\x82\x98h\x1aA\x80&\xc2\x94~\xb4`A`\x17\xb7Q\xbch\x1aAz\xa5,\xdb{\xb4`A\x90\x97nRhg\x1aA\xec\x9e<\x9er\xb4`A`\xcc]Ktf\x1aA\\\xb1\xbf\xdaq\xb4`ApV}n\x98e\x1aA\x00\x00\x00\xccq\xb4`A\xa0p=J,d\x1aA\xf4JY<q\xb4`A\x10\xb5\xa6y\xfcc\x1aA\x04V\x0e\xb1m\xb4`A0\x116|\x90d\x1aA\xfe\xd4xSh\xb4`A\x90\xf6\x06_lh\x1aAxz\xa5bX\xb4`A@W[q\x80i\x1aA\xd6\xe7j-W\xb4`A\xa0\xdf\xbeN(j\x1aA\xb6\x15\xfb=Y\xb4`A\xf0/\xbbg\xe0k\x1aA\x9a\x08\x1b\xc8a\xb4`A\xb0@\x82b\x80l\x1aA\x02+\x87ha\xb4`A\x80\xe9&q\xf4l\x1aA\x02\t\x8a\xef_\xb4`A@p\xceH@n\x1aA\xbe\x9f\x1a;S\xb4`A\xb0\x9d\xefg8n\x1aA\xe0\x9c\x11\'P\xb4`A@\xcffU\x88m\x1aAvO\x1e>@\xb4`A\xa0\xe8Hnxl\x1aA\x82QIi2\xb4`Ap\xd7\x12r\x0cl\x1aA\xbaI\x0c\xb0-\xb4`A\x90\xd2\xde`|k\x1aA\xce\xaa\xcfI-\xb4`A\x00\x10\xe9w\x84h\x1aA~\x8c\xb9\xcf-\xb4`Ap\xf9\x0fi\xecg\x1aA\xeeZB(1\xb4`A\x80\xd0\xb3Y\xc4d\x1aA\x8cl\xe7\xe5H\xb4`A\xb0@\x82b\x0cd\x1aA\xbe0\x99\xc6P\xb4`A\xa0N@S\x8cc\x1aA\xf6(\\\xbfV\xb4`A S\x05c<b\x1aAx\x0b$\xe8`\xb4`A\xd0\xde\xe0K\xa0a\x1aA\x8a\x1fc\xbac\xb4`A0\x99*X\x80a\x1aA\xa6y\xc7!^\xb4`AP\xf3\x8eS\xa8`\x1aA2U0\x80V\xb4`A\x90\x97nR4_\x1aA\xc2\x86\xa7{I\xb4`A\x00\xbc\x05Rx]\x1aA\xf2A\xcfZG\xb4`A\xb0PkZp_\x1aA\xe2X\x17\x81[\xb4`A\xc0\x8d\x06p\x90_\x1aA\xfa\\m\xed_\xb4`A\x80QI]\x90^\x1aA0\xbb\'\x05k\xb4`A\xd0f\xd5gT]\x1aA\xa0\xf81hl\xb4`Apxze\x00]\x1aA\x8c\xb9k\xc9Y\xb4`Ap+\xf6W\xfc\\\x1aA A\xf1\xdfW\xb4`A\xd0v\xbe_\x80[\x1aA\xfe\xf6u\x80F\xb4`A\xb0@\x82b\xb8Z\x1aAL\xa6\njF\xb4`A\x10X9t\x94X\x1aA\xf4\xfd\xd4\x08L\xb4`A\xe0\xf2\x1fR\xb0X\x1aA\x9aw\x9c\x9cO\xb4`A Zd{ Y\x1aA\xba\xfc\x87nT\xb4`A\xa0\xa2#y\x08Y\x1aA@5^\xae\\\xb4`A\xf0(\\O\xa4X\x1aA\x02M\x84;f\xb4`A\xc09#J\x88W\x1aA\xfa~j\xdau\xb4`A\x90!\x8eutV\x1aA\xb8@\x82\x8e\x80\xb4`A\x10\xd0DX<V\x1aA\xc2d\xaa\x1a\x83\xb4`Ap\xd7\x12rlU\x1aA\x10\xc7\xba\xc8\x90\xb4`A\xd0T\xc1h\xbcT\x1aADiob\x9c\xb4`A\xc0\xfc\x87t\x90U\x1aA\xec\xe26j\xaa\xb4`A\x80?5^8V\x1aA.\x90\xa0d\xae\xb4`A\xe0\x1b|a\xccV\x1aA\xb8\xd1\x00\xc4\xb1\xb4`A\x90\x06\xf0V\x90W\x1aA\x82\x95CA\xb8\xb4`A\xd0\xf7Sc\xc0W\x1aA\xde\x02\t\xa0\xba\xb4`A\xc0\x17&SlX\x1aA"\xdb\xf9\x00\xca\xb4`A\xd0T\xc1h\x08X\x1aA\x00"\xfd\xe2\xed\xb4`A\xd0MbPTW\x1aA\xa8\xe8H\x9c\xfe\xb4`A0\xcd;N\xe0V\x1aAt\x93\x18\xba\x00\xb5`A`\x7f\xd9}\xa4V\x1aAF\x03x\xef\x00\xb5`ApF\x94vPV\x1aAv\xbe\x9f\xcc\xff\xb4`A\xb0\xf3\xfdT4V\x1aA|\xd0\xb3\x1d\xfc\xb4`A\xe0\xae%d\x90V\x1aA\xe8H.a\xef\xb4`A\xb0\x82Q\x89\x94V\x1aA\x0e\xbe0\x15\xe9\xb4`A0U0j\x14U\x1aAb\x10X%\xc3\xb4`A0n\xa3\x81\x98T\x1aA \xf4l\xf4\xaf\xb4`A\x90n\x12\x83\x10T\x1aA\xa2#\xb9\xd4\xa8\xb4`A\x10\x1b\x9e^|R\x1aA\x82sF\xdc\x9e\xb4`A\x90\xf6\x06_\x04R\x1aA\xe4\x83\x9e\xa3\x9e\xb4`A\x00o\x81\x84\x08O\x1aA\x14\xd0D2\xa7\xb4`A\xb0PkZpN\x1aA\x98L\x15\x04\xaa\xb4`A\x00\xc3djPM\x1aA\xae\xd8_D\xb0\xb4`A\xc0\xc1\x17f\x1cM\x1aA\x80\xb7@\xea\xb2\xb4`AP\x05\xa3R8M\x1aA\xd4\x9a\xe6}\xb6\xb4`A\xe0\xac\xfa\\\xa0M\x1aAV0*\xdf\xb8\xb4`A\xd0x\xe9f@O\x1aA`\x07\xce\xdf\xbe\xb4`A\x10&S\x85\x8cO\x1aA\xce\x88\xd24\xc6\xb4`A\x90\x8e\xe4r\x98N\x1aAz6\xab\xae\xd7\xb4`AP}\xaev$N\x1aA.\xff!)\xd9\xb4`A\xe0\xfb\xa9q\xd4M\x1aA:\x01ML\xd9\xb4`A0\x116|\xccL\x1aA\x10\xe9\xb7\x0b\xd8\xb4`A0\xe6\xaee\xfcK\x1aA\x1c\r\xe0\x7f\xd3\xb4`A \xc0[`\xd8H\x1aAt$\x97\x85\xc0\xb4`A\x80|\xd0s\xb8H\x1aAZB>\xac\xbb\xb4`A\xe0X\x17wdI\x1aA\xcc\xee\xc9\x89\xb7\xb4`A\x90\x8e\xe4rXI\x1aAd\xeeZ\x8c\xb2\xb4`A\xb0\xbf\xec^\xc8H\x1aAZ\xf5\xb9"\xa8\xb4`A\xe0\x9c\x11eLH\x1aA6\x1a\xc0\xe5\xa5\xb4`A \xe4\x83^\xb4D\x1aAH\xbf}\x1f\xb0\xb4`A\xc0d\xaa`\xfcC\x1aAt\xb5\x15_\xb7\xb4`A\xf0\xd2Mb\xc4C\x1aA\xfc\xa9\xf1\x06\xba\xb4`A\x00\xc3dj`B\x1aA\xb8\xd1\x00d\xbb\xb4`A\xf0\x16HP\xbcA\x1aA\xd64\xef\xdc\xb9\xb4`A\x90\x1fcnxA\x1aA\x9a\x99\x99%\xae\xb4`A\x80\xebQx\xd0@\x1aA:p\xce\x88\xa9\xb4`A\x80\xc0\xcaaX?\x1aA\xb2.n]\xa3\xb4`A\xb0%\xe4\x83\xdc<\x1aA\xf0\x16HT\x9d\xb4`A\xa03\xa2t\xc4;\x1aA\xf6u\xe0H\x9d\xb4`A\xe0\xac\xfa\\\x8c:\x1aA\xfe\xb2{"\xa1\xb4`A\x90C\x8bl\x9c8\x1aA`TRc\xa3\xb4`A \xc9\xe5\x7f\x184\x1aA\xe26\x1a\x0e\xa6\xb4`A\xe0?\xa4_D2\x1aA\xb8\xaf\x03\xff\xab\xb4`A`\x98L\x15\xf31\x1aAjM\xf3\xde\xaf\xb4`A@\x9bU_\x002\x1aAlV} \xb1\xb4`A\x90\xb0\xe1it2\x1aAh"lH\xb0\xb4`A@\xc6\xdcu\xc43\x1aA\xeeZBN\xae\xb4`A\xd0\xd5Vl\xcc4\x1aA\xfeC\xfa_\xae\xb4`APt$W\xc85\x1aA\xc8\x98\xbb^\xb3\xb4`A\xe0\x93\x87\x85\xd85\x1aAD\xd8\xf0\xee\xc4\xb4`A\xc0\xb1.n\xa85\x1aA\xf6(\\\x07\xca\xb4`A0\xd4\x9af\xa46\x1aA\x02\t\x8a\xdf\xd7\xb4`A@\xcffUD7\x1aA\xd8\x81s|\xd7\xb4`A\xd0]K\x88|7\x1aA\xc8\x07=\x93\xd5\xb4`Ap\x9aw\\\xac7\x1aA2\xe6\xae_\xd0\xb4`A\xe06\x1a\x80\x1c8\x1aA\xf4JY\xce\xcb\xb4`A\x80\xc0\xcaa\xb88\x1aA\xb2{\xf2@\xca\xb4`A\x90\xd4\th\xa89\x1aAv\x02\x9aB\xca\xb4`A\xe0\x8c(m\xbc:\x1aA\x1c\x9e^\xe1\xd1\xb4`A@\xd6\xc5mH<\x1aA\xc0\xca\xa1I\xe1\xb4`A\x106<}(<\x1aA\xfe\xf6u.\xe5\xb4`A`\xf5\xb9Z\xa4;\x1aA\xde$\x06\x81\xe8\xb4`A\x90\xc2\xf5hd9\x1aA@\xa4\xdf\x00\xeb\xb4`A`\x07\xceY\x808\x1aA\xe0\x0b\x93\x7f\xe6\xb4`A@W[q\x087\x1aA\xb8\xd1\x00\x8c\xe0\xb4`A@,\xd4ZT5\x1aA,C\x1c}\xda\xb4`A\xf0|?u\xc84\x1aA\xd0D\xd8N\xda\xb4`A`\xcc]\x8b\xac3\x1aA8\x89A4\xe1\xb4`A\xe0_vO\xac3\x1aAD\xd8\xf0z\xea\xb4`A\x90\xd4\th\x184\x1aA\xf0\xa7\xc6\x81\xff\xb4`A\xf0\xc9\xc3\x82 5\x1aA\x96!\x8e\x0f.\xb5`A\x90\xed|\x7f\x885\x1aA\xe4\x14\x1d\xcb7\xb5`A\xc0B\xadi06\x1aAx-!g<\xb5`A\x90\xdd\x93\x87H7\x1aA\x18\x95\xd4/E\xb5`A\xf0\xe4aa\xb87\x1aA\xf6(\\AI\xb5`Ap4\x80w\xec7\x1aAPk\x9a\x8fO\xb5`A@%u\x82\xb47\x1aA\xfe\xb2{LP\xb5`A\xb0\xad\xd8_\xa85\x1aA\xb4\xeas!F\xb5`A\xd0\xa3p}\x984\x1aAn\x12\x83\x10A\xb5`A\x90\x8e\xe4r03\x1aA:#J\xe9A\xb5`A\x80\x85ZS\x882\x1aA\xea\xb7\xaf\xdbG\xb5`Ap\xe7\xfbi\x002\x1aAT\xc1\xa8\x1eR\xb5`A\x90\xfdewx1\x1aA\xd2Mb\x06U\xb5`A\xa0\x08\x1b^\xec0\x1aA\xe4\xf2\x1f\xfeS\xb5`A\x90A`e(0\x1aA\xac\xad\xd8\x83M\xb5`A Zd{0/\x1aA>\x9bU\rA\xb5`A\xb0\xf1\xd2\x8d\x0c/\x1aA\xc6K7\xd3:\xb5`A\xc0\x1e\x85k\x94.\x1aA\x04x\x0b\xc29\xb5`A\xb0\x03\xe7\x8c\xd8-\x1aA\xdeq\x8aP?\xb5`A\x90\xb2\x0cq\xb8-\x1aA\x9c3\xa2FD\xb5`AP\xfc\x18s\x94.\x1aA@\xc6\xdc\x85L\xb5`A\x90n\x12\x83h0\x1aA\x044\x11\xb4X\xb5`Ap\x00o\x81\x8c0\x1aA0\x99*\xee^\xb5`A0\xa2\xb4w\xc40\x1aA$J{Kf\xb5`A@Gry\xf40\x1aA\x9a*\x18\xf1i\xb5`A\xc0\x8f1w81\x1aAz\x14\xae\x8dm\xb5`A\xb0.nc\x982\x1aA\xfc\xa9\xf1\x1c{\xb5`A\x00\x9a\x08[\x043\x1aA*\xcb\x10\x1f~\xb5`A\xc0\x8f1wD7\x1aA&\xe4\x83\xd0\x8a\xb5`A\x80\xe9&q\xc8:\x1aA\xea\xb7\xaf\x8d\x91\xb5`A \xb0rh\xc8;\x1aA\xf2c\xcc\xff\x90\xb5`A\x00;pN\x08=\x1aAx\x0b$:\x90\xb5`A\x80Z\xd3|\xf8=\x1aA\x82\xe2\xc7\x10\x87\xb5`A@Gry\x8c>\x1aAR\xb8\x1ei\x80\xb5`AP\xda\x1b|,?\x1aA\x9e\x80&\xecw\xb5`A\x10\x9c3bLB\x1aA\xc6m4\xa4n\xb5`A\xa0W\xcar\xa8F\x1aA\xf8\xc2d,l\xb5`A@\xfa\xedk\xb0J\x1aA\x8c(\xed%p\xb5`A\x90\xfdew\x10K\x1aA\xa8\xc6K\x8dw\xb5`A@\xb4\xc8v`K\x1aA\xb2\xbf\xech\x7f\xb5`A\xa0\x9b\xc4`TK\x1aA\x14?\xc6D\x83\xb5`A@\xd6\xc5m\xe0J\x1aA\xc6\x8f1c\x85\xb5`A Zd{\xb0I\x1aA\x1e\xa7\xe8\x0c\x95\xb5`A\xb0%\xe4\x03GJ\x1aA\xbct\x93r\xa7\xb5`A\xa0,C\\|J\x1aA>yX^\xc1\xb5`A\xf0\xe26ZLJ\x1aAL\xa6\n\x1a\xc7\xb5`A0\xc4\xb1n8J\x1aA<\xbdR(\xd1\xb5`A\xb0{\xf2p@J\x1aA&\xc2\x86\'\xd6\xb5`A\xb0\x1cZd\x00K\x1aA\xeas\xb5\x01\xdc\xb5`A \x85\xebQ\xacK\x1aA\xce\x19Q\\\xe1\xb5`A`\xf7\xe4a\xdcK\x1aA\xd0\xd5V\x02\xe5\xb5`A\xf0lV}dK\x1aAh\xb3\xeam\x17\xb6`A\x806\xab~\xccJ\x1aA\xb8\xd1\x00\xce$\xb6`A \r\xe0m\x84J\x1aA\xaa\xcf\xd5L)\xb6`A\xe0\xf9~\xaa\xe3I\x1aATt$o(\xb6`A\xc0t\x93\x18\x05Q\x1aA\xe0\x9c\x11\xffX\xb6`A\xa0\x1a/\x1d^R\x1aAz\xc7)lo\xb6`A\xc0k\tysS\x1aA~j\xbc\xcc\x87\xb6`A\x10\xc7\xba8\x16T\x1aA\xa2E\xb6%\x98\xb6`A`\xd5\xe7j,T\x1aA\xe0-\x90\x8c\x97\xb6`A \x9e^iDV\x1aA\x84\xc0\xca#\x95\xb6`A\xc0\xe3\x14]\xa4W\x1aA\xd2\x91\\\xc4\x91\xb6`A \xeb\xe2v\x8cX\x1aA\x14\xd0D,\x8e\xb6`A\x90C\x8bl\xa0X\x1aA\x0c\x02+\xcd\x8c\xb6`Ap4\x80w\x18Y\x1aA\xba\xda\x8a\x8d\x84\xb6`A\x00\x9a\x08[\xd4Y\x1aA\xd0\xd5V\x02\x7f\xb6`A\xe0\xc7\x98{\xe0Z\x1aA*\x18\x95.z\xb6`A \xc0[`\x08\\\x1aA\xb6\x84|Dv\xb6`Ap\xce\x88R\x04^\x1aA\xfc:p\xfeq\xb6`A\xe0\x1b|a\xec^\x1aA\x82\x95C\xc3m\xb6`A0U0j\x88`\x1aA\xce\x88\xd2\x04a\xb6`A\xe0a\xa1VXb\x1aA\xe8\xd9\xac\x80G\xb6`A\x90\x87\x85Z\x90b\x1aAlxz=>\xb6`A\x00D\xfam\x08c\x1aA\xa6y\xc7K5\xb6`A\x90\xb2\x0cq\xdcc\x1aA^K\xc8/\'\xb6`A\x0b\x00\x00\x00@p\xceH\xf7Y\x1aAN@\x13\x05\x8f\xb4`A\xd0\xc3B-\xf2Y\x1aA\x0cq\xac\x11\x8e\xb4`A\x90\xb9k\t\x08Z\x1aA\xe2\xc7\x98\xd1\x8d\xb4`A@W[15Z\x1aA\x98\xff\x90\xf4\x8d\xb4`A@\xadi\xde[Z\x1aAJ{\x83\x87\x8e\xb4`A@p\xceHnZ\x1aA \xf4l\x90\x8f\xb4`A@\xf1c\x0cpZ\x1aAN\xd1\x91\xa0\x90\xb4`A\xe0\x1b|aSZ\x1aA\x9a\x99\x99\xe3\x90\xb4`A\xa0\xd64/&Z\x1aANb\x10\x8a\x90\xb4`A \xf4lV\x06Z\x1aA\x8euq\x0f\x90\xb4`A@p\xceH\xf7Y\x1aAN@\x13\x05\x8f\xb4`A\x16\x00\x00\x00\x00\x88\xf4[\xe8^\x1aA,\x87\x16{\xe2\xb4`A\x90\x87\x85Z\x14^\x1aA\x14\xaeG\xc3\xdc\xb4`A\xe0\x14\x1dI\xa8]\x1aA0L\xa6\xda\xd9\xb4`A\xc0\xdc\xb5\x84\x1c]\x1aA\x98n\x12\x13\xc8\xb4`A \x1f\xf4l<]\x1aA:\xb4\xc8.\xc4\xb4`A\x002\xe6n\xa0]\x1aA\x86\xa7W*\xbb\xb4`A\xc0\xfe\xb2{\x88]\x1aA\x1cZd/\xb1\xb4`A\xc0\x17&S\xf8\\\x1aA\xce\x19Q<\xa6\xb4`A\x10\xd0DXl\\\x1aAf\x19\xe2^\x9e\xb4`A\x806\xab~<\\\x1aA\xc8v\xbe\xd3\x9a\xb4`A\x90Std0^\x1aA\xbe\x0e\x9c\x05\x99\xb4`A\xe0\xe0\x0bS\xa8^\x1aAV\x0e-Z\x99\xb4`A\x90~\xfbz\xd4^\x1aA\xa8\xa4N2\x9b\xb4`A \x1f\xf4lP^\x1aA>yX\xca\x9f\xb4`A\xa0\x9b\xc4`\xe8]\x1aA\xb8\x1e\x85A\xa6\xb4`A |ar\x04^\x1aA\xe0\x0b\x93\xaf\xaa\xb4`Ap\x9c\xa2cd^\x1aA\xf0\x16H\xea\xb8\xb4`A\x90\xb0\xe1i\x00_\x1aA\xaa\x82QI\xc1\xb4`A0\xf6\x97]\\_\x1aA|?5$\xc6\xb4`A`\xd5\xe7j\xb8_\x1aAf\xd5\xe7\xa6\xdd\xb4`A\x10O\xafTp_\x1aA\xba\xfc\x87\x9c\xe1\xb4`A\x00\x88\xf4[\xe8^\x1aA,\x87\x16{\xe2\xb4`A\x07\x00\x00\x00\xe0\xb5\x84|pi\x1aAX\xca2\xb0\xe6\xb4`AP\x9f\xabm\xbci\x1aA\xa0\xf81H\xe5\xb4`A\xa0\x11\xa5}\xe4i\x1aA\x16jM\x93\xe4\xb4`A\xe0\xf0\xf4J4j\x1aA\xce\xf7S\x9d\xe5\xb4`A\x80\xae\xb6b\xc4i\x1aA\x9e\xcd\xaa\xa3\xe9\xb4`APP\xfcXti\x1aA|?5"\xe9\xb4`A\xe0\xb5\x84|pi\x1aAX\xca2\xb0\xe6\xb4`A\r\x00\x00\x00 J{\x83(D\x1aA\xf4lVo\xf8\xb4`A\xa0\xdf\xbeN\xc8B\x1aA\x10\x0b\xb5\x9a\xfb\xb4`A\xc0\x9f\x1ao\x00B\x1aAR\xda\x1b*\xfc\xb4`A\xd0\xf7SclA\x1aA\xec\x9e<\xe6\x00\xb5`A\xc0B\xadil@\x1aATt$)\xfb\xb4`A\xf0\x9e<l\\@\x1aA\xec\xe26B\xf4\xb4`A\xa0#\xb9|\xa8@\x1aA\xc0\xec\x9e\xac\xf1\xb4`A0U0j\x1cB\x1aA\xbeR\x96\x83\xe5\xb4`A`d;_XB\x1aA\xb2.n!\xe4\xb4`A\xb0%\xe4\x83pC\x1aA\xdch\x00u\xe5\xb4`A`\x7f\xd9}lD\x1aA\xd6\xc5m\x90\xea\xb4`A0\\\x8f\x82\x84D\x1aA(\x0f\x0b/\xf5\xb4`A J{\x83(D\x1aA\xf4lVo\xf8\xb4`A\n\x00\x00\x000U0j\x98R\x1aA\x06\x12\x14\xc5\x03\xb5`Ap\xd7\x12rXQ\x1aA\x94\x87\x85l\x04\xb5`A\x90n\x12\x83\xc8P\x1aA\xea\x044S\x02\xb5`A0\xd4\x9af\x90P\x1aA\xd0\xb3Y\xc5\xfc\xb4`A\x90l\xe7{\xc4P\x1aA`\x98L\xf3\xf8\xb4`A \xfd\xf6uHR\x1aA\\\xfeCl\xf2\xb4`A\x106<}\xdcR\x1aAx-!o\xf6\xb4`A\xa0E\xb6s\xd4R\x1aA\xc2\xa8\xa4\x90\xfb\xb4`A\x10\x93\xa9\x82\xbcR\x1aA\xde\x93\x87\x11\x03\xb5`A0U0j\x98R\x1aA\x06\x12\x14\xc5\x03\xb5`A', b'\x01\x03\x00\x00\x00\x06\x00\x00\x00\xd3\x01\x00\x00\xa0\nF\xa5\xefj\x1aA>\n\xd7\xf7`\xb5`A\xf0(\\\x8f\x7fl\x1aA\xf6(\\/\\\xb5`A0\\\x8f\xc2&m\x1aA\xd8\xa3p\rZ\xb5`A\x00\x00\x00\x00Em\x1aAR\xb8\x1e\xd5X\xb5`A@\xe1z\x14gm\x1aAp=\noT\xb5`A0\\\x8f\xc2ym\x1aA\xc2\xf5(\x0cS\xb5`A \x85\xebQGn\x1aA\x00\x00\x00XL\xb5`A\xc0\xf5(\\do\x1aA(\\\x8f*F\xb5`A\xd0\xcc\xcc\xccsp\x1aAfff\x06?\xb5`A\xc0\x1e\x85\xeb\x99q\x1aA\x1e\x85\xeba6\xb5`A@\n\xd7\xa3\xccr\x1aA\xe2z\x14\xfe,\xb5`A 8g\x84\xf4r\x1aAH.\xff\x8b+\xb5`A \xb9\xfc\x87,s\x1aA\x06\x12\x145)\xb5`A0333\xd4s\x1aAH\xe1z\xfc \xb5`A\xf0\xd9\xac\xfa\x08u\x1aAB\xf1c\x1e\x14\xb5`A@\xdfOM\x98u\x1aA\x868\xd6\xbf\r\xb5`A \x06\x81Utv\x1aA\xda\x8a\xfd\xe5\x03\xb5`A\xa0\xc6Kw4w\x1aA\x90\x0fz\xd4\xf5\xb4`A\xe0\x1d\xa7h\xa8x\x1aA\x92\\\xfe\x87\xe8\xb4`A\xb0\x94eH\xc5y\x1aA2\xe6\xaeA\xe6\xb4`AP\xb8\x1e\x85\xd9y\x1aA\x90\xc2\xf5\x80\xe5\xb4`A@\xe1z\x14T{\x1aA\x9a\x99\x999\xe1\xb4`A\xf0Q\xb8\x1e\xa0{\x1aAfff\xbe\xe0\xb4`A@\xe1z\x14\xce{\x1aAR\xb8\x1e\x95\xe0\xb4`AP\xfc\x18\xb3\x8b|\x1aA\x14\xd0Dv\xe2\xb4`A\xc0\xa8\xa4N\x88}\x1aA\xbe\xc1\x17"\xe4\xb4`A\xa0\x9b\xc4`\x94~\x1aA\x88\xf4\xdb\t\xe6\xb4`A\xb0\xf3\xfdT8\x7f\x1aA.\xff!\xc1\xe8\xb4`Ap\xd7\x122\x1f\x80\x1aATt$\xbf\xec\xb4`A\xd0;N\xd1\xe6\x80\x1aA\x04x\x0bn\xf1\xb4`A`K\xc8\x87\xf9\x80\x1aA\xa0g\xb3\x02\xf2\xb4`A \x85\xebQ\xfc\x80\x1aA\xb8\x1e\x85\xfb\xf1\xb4`A\xe0z\x14\xae\xfc\x80\x1aA\xd8\xa3p\r\xec\xb4`A\x10\xaeG\xe1\xbf\x80\x1aA\xc2\xf5(L\xe3\xb4`A\xe0\xa5\x9b\x04\xa5\x80\x1aA\xda=y\xe4\xe2\xb4`A\x80/Lf`\x7f\x1aA\xa6,Cj\xdf\xb4`A`\xb3\xeas\xd2~\x1aA~j\xbc\xb2\xdf\xb4`A@\xe1z\x14_~\x1aAfff\x8e\xe0\xb4`A0333\xdd}\x1aA\x00\x00\x00X\xe1\xb4`A\xc0\xf5(\\\\}\x1aA\xd8\xa3p\xe5\xdf\xb4`A\xf0Q\xb8\x1e\xbc|\x1aA\x9a\x99\x99\x01\xde\xb4`A\x00\x00\x00\x00F|\x1aA(\\\x8f\x92\xdc\xb4`A@\xe1z\x14&|\x1aA\xc2\xf5(\x8c\xdb\xb4`AP\xb8\x1e\x85\xf6{\x1aA\xaeG\xe1\x02\xd7\xb4`A\xf0Q\xb8\x1e\xfa{\x1aA\xc2\xf5(\x1c\xd6\xb4`A@\n\xd7\xa3\x81|\x1aA\xb8\x1e\x85\xc3\xcf\xb4`A\x80\x9e\xcd*\x9c\x7f\x1aAl\x9aw`\xb3\xb4`A\xf0\x06_X\xac\x80\x1aA\xd8\xf0\xf4\xe8\xa6\xb4`A`\xbaI\x8c\xd2\x80\x1aA\xaa\xcf\xd5\xf2\xa1\xb4`A\x10\xaeG\xe1\x1c\x81\x1aAH\xe1z\xb4\x8f\xb4`A\xf0Q\xb8\x1e\x17\x81\x1aAp=\nG\x8e\xb4`A\xf0(\\\x8fp\x80\x1aA\xf6(\\\xdf\x82\xb4`AP\xb8\x1e\x85\xf3\x7f\x1aA\xaeG\xe1\x8a|\xb4`A0333\xdf\x7f\x1aA\x00\x00\x00\x80{\xb4`A\xf0(\\\x8f\x99\x7f\x1aA\xd8\xa3p\xa5u\xb4`A@\xe1z\x14\x92\x7f\x1aA\xe2z\x14\xa6r\xb4`A0\\\x8f\xc2\xdd\x7f\x1aA\x90\xc2\xf5\xc0n\xb4`A\xf0(\\\x8f\x9a\x80\x1aA(\\\x8f\xdah\xb4`A0\\\x8f\xc2\x86\x81\x1aAp=\n\xa7g\xb4`A\x00f\xf7\xe4\x99\x81\x1aA2U0\x96g\xb4`A\xd0\xaa\xcfU\x07\x82\x1aAB>\xe8\xabf\xb4`A@\xe1z\x14[\x82\x1aA\x90\xc2\xf5\xb8e\xb4`A\xf0Q\xb8\x1eu\x82\x1aA\x90\xc2\xf5(e\xb4`A \x85\xebQz\x82\x1aAp=\n\xf7c\xb4`A\xe0z\x14\xae<\x81\x1aAfffvV\xb4`A\xd0\xa3p=(\x81\x1aA\xc2\xf5(\xbcU\xb4`A\x00\x00\x00\x00\xf6\x80\x1aAH\xe1z\x9cU\xb4`A0\\\x8f\xc2\xa4\x80\x1aA\x1e\x85\xeb\x11W\xb4`AP\xb8\x1e\x85.\x80\x1aA\xb8\x1e\x85KY\xb4`A\xd0\xcc\xcc\xcc\x10\x80\x1aA\xc2\xf5(\xacY\xb4`A\xf0Q\xb8\x1ek~\x1aA\x9a\x99\x99QQ\xb4`A\x10\xd7\xa3pX~\x1aAfff\xd6P\xb4`A \x85\xebQ\x0f~\x1aA\x1e\x85\xeb\xa1L\xb4`A@\n\xd7\xa3\xb7}\x1aAR\xb8\x1e\x15%\xb4`A\x10\xd7\xa3p\xc0}\x1aA\n\xd7\xa3p#\xb4`A\xe0z\x14\xaeE~\x1aAp=\n7\x1d\xb4`A\xf0(\\\x8f\xb9~\x1aAfff6\x19\xb4`A\x10\xd7\xa3p\xa5\x7f\x1aA433\x1b\x0e\xb4`A\xb0\xcf\xd5\xd6\x95\x7f\x1aAX\xca2\x9e\x08\xb4`AP\x9d\x80f\x14\x7f\x1aAX[\xb1q\xf8\xb3`A\x00V\x0e\xad\xa8~\x1aA\xbaI\x0c\xce\xf3\xb3`A0\xc4\xb1n\x97~\x1aA\xf8\xe4au\xf3\xb3`A`\xb1\xbflP~\x1aAvq\x1b\x95\xf2\xb3`A\x80/L&\x99}\x1aA\xd2\xde\xe0\x13\xf1\xb3`A\xe0\x93\x87\x05\x97}\x1aA\x02\x9a\x08\x11\xf1\xb3`A\xd0\xcc\xccL }\x1aA\x02\x9a\x08\xa1\xf0\xb3`A@\xd6\xc5m\xf8{\x1aA\xf6\xb9\xda\x12\xf2\xb3`A`\x19\xe2X\\{\x1aA*\xa9\x13\xc8\xf4\xb3`AP\xd1\x91\\Tz\x1aA\nh"@\xfc\xb3`A \xfd\xf6u\xe0y\x1aA\xe8\xfb\xa9\xd3\xfd\xb3`A`\xd3\xbcc\x8cy\x1aA\x8a\x8e\xe4\xca\xfc\xb3`A\x90\x18\x04V\x8cx\x1aA\xce\x19Qd\xf6\xb3`A\x90\xd4\thGw\x1aA\xc0\xca\xa1\xa3\xf2\xb3`A0\\\x8f\xc2\x83u\x1aA\xf6(\\\xc7\xee\xb3`A\xf0(\\\x8fUt\x1aA433\x93\xea\xb3`A\xa0\x08\x1b\x9eWs\x1aA\xfc\xcb\xee\x81\xe7\xb3`A\xa0\xcd\xaaO\x00r\x1aA8\xf8\xc2\x9c\xe6\xb3`A\x80\xd9=y\x10q\x1aA@\x13a\x95\xe6\xb3`A\x90\xfdew\x89n\x1aA\xe8j+X\xf1\xb3`A\xa0\xab\xadX[n\x1aA\x84\xc0\xca\x0f\xf7\xb3`A\xa0#\xb9|xn\x1aAZ\xf5\xb9P\xf8\xb3`A0\x99*X\x10o\x1aA\nF%\x9b\xfd\xb3`A\xe0\xce\xf7Slo\x1aA\x00o\x81`\x0c\xb4`A\xc0\x8d\x06p`o\x1aAl\t\xf9\x14\x19\xb4`A\xb0\xc8v~\\p\x1aAp\xf0\x853&\xb4`Ap\x1b\r`\x94q\x1aA\xc8):\x804\xb4`A\x80\xf4\xdbW@r\x1aA\xca\xa1E\xc29\xb4`APb\x10X\x98s\x1aA\x80H\xbfaD\xb4`A\x10q\xac\x0b\xa2s\x1aA\xe4a\xa1\xf8J\xb4`A\xc0\xf5(\\\xb7s\x1aA\xc2\xf5(\xbcP\xb4`A\xd0\xa3p=\xc5s\x1aA\xc2\xf5(<V\xb4`A\x00\x00\x00\x00\xc0s\x1aA\x1e\x85\xeb\x81X\xb4`A\xd0\x7fH\xff\xb7s\x1aA\xd8\xa3p\xe1Y\xb4`A \xa0\x89p\xb8s\x1aA\x88c].Z\xb4`APR\' \xads\x1aA\xfee\xf7\xbe[\xb4`A\x10\xaeG\xe1\x88s\x1aAp=\n\xf7a\xb4`A \x1f\xf4,zs\x1aAn\xc5\xfe\xcab\xb4`A\xe0\x9c\x11e\\s\x1aAF\x03x\xe9f\xb4`A\x90\x87\x85Z,s\x1aA\x9e\x80&\xa4l\xb4`A0\xf6\x97]\xe8r\x1aA\xbc\x96\x90\xc3q\xb4`A\xd0V\xecoTo\x1aA\xaa\xcf\xd5\x10\x90\xb4`A\x80|\xd0\xb3\x85n\x1aA\xa8\xc6K\xbb\x96\xb4`A\xd0\xcc\xcc\xcchn\x1aAfff\x16\x98\xb4`A\x10\xaeG!\x04m\x1aA A\xf1)\xa3\xb4`A0\xff!}\xd4k\x1aA:\x01M\xf4\xac\xb4`A\x80\xebQx\x95k\x1aA\xfa~j\x84\xad\xb4`A\x10\xaeG\xe1\xeej\x1aAH\xe1z\x9c\xb0\xb4`A\x00\x00\x00\x00{j\x1aA\x00\x00\x000\xb0\xb4`A \x85\xebQ\xc0h\x1aAR\xb8\x1e5\xa6\xb4`A@\xe1z\x14\x99h\x1aA\xb8\x1e\x85\x9b\xa4\xb4`A@\n\xd7\xa3\\h\x1aA\x9a\x99\x99\xe9\xa0\xb4`AP\xb8\x1e\x85\xf8g\x1aAH\xe1z\xe4\x98\xb4`A@\n\xd7\xa3\x81g\x1aA\x9a\x99\x99\x91\x89\xb4`A\x80X\xa8\xf5vg\x1aA\\m\xc5\xc2\x87\xb4`A\xa0^)K,g\x1aA$\x97\xffz\x85\xb4`A\xf0S\xe3%\ng\x1aA\xd2\xde\xe0\x89~\xb4`AP\xb8\x1e\x85qf\x1aA\xd8\xa3p\xedu\xb4`A\xd0\xa3p=\x9be\x1aA\xe2z\x14\xceq\xb4`A\x10\xd7\xa3p\xcbd\x1aA\n\xd7\xa3\x98q\xb4`A \x85\xebQid\x1aA\x90\xc2\xf5Hs\xb4`A\xc0\xf5(\\:d\x1aAR\xb8\x1e\x9ds\xb4`A\x00\x00\x00\x00\xe2c\x1aA\xb8\x1e\x85\xabs\xb4`A\xf0Q\xb8\x1e\xa3c\x1aAR\xb8\x1e\xa5r\xb4`A\xd0\xa3p=\x8dc\x1aAR\xb8\x1eeq\xb4`AP\xb8\x1e\x85\xc5c\x1aA\x9a\x99\x99aj\xb4`A\xf0(\\\x8fUf\x1aA\x90\xc2\xf5pV\xb4`A\xc0\xf5(\\~f\x1aA\xf6(\\\xafU\xb4`A\xc0\xf5(\\\xech\x1aA\xaeG\xe1\xc2O\xb4`A\xe0z\x14\xae\ni\x1aAR\xb8\x1e\x95O\xb4`A@\n\xd7\xa3[j\x1aA\xd8\xa3p\x1dT\xb4`A\x10\xd7\xa3p\xbfj\x1aA\x00\x00\x00hX\xb4`A\xf0Q\xb8\x1e\xbej\x1aA\x00\x00\x00\xa0Z\xb4`A\x80\x04\xc5O\x9fj\x1aA\x9a\xe6\x1d\x8d[\xb4`A\xe0F\x038\xf9j\x1aA\x10\xe9\xb7K]\xb4`A@\xe1z\x14=k\x1aA\x1e\x85\xeb\xc1]\xb4`A\xd0\xcc\xcc\xcc\x07l\x1aAH\xe1z\x04_\xb4`A \x85\xebQ0l\x1aA\x1e\x85\xeba^\xb4`A\xd0\xcc\xcc\xcc\x18m\x1aA(\\\x8frY\xb4`A\xf0(\\\x8f\x83m\x1aAfff\x16W\xb4`A\x10\xaeG\xe1\xe4m\x1aAfff\x86S\xb4`A\x00\x00\x00\x00\x03n\x1aAp=\n_R\xb4`A@\n\xd7\xa3\xf8m\x1aA\xc2\xf5(\xacK\xb4`A\xc0\x1e\x85\xeb\xecm\x1aA\x1e\x85\xebiI\xb4`A \xe4\x83\xde\xebm\x1aA,\xd4\x9a<I\xb4`Ap\xb5\x15{\xcam\x1aA\x80\xb7@8F\xb4`A \x85\xebQml\x1aAfff\xa62\xb4`A\x00\xde\x02\xc9\xfek\x1aAd\xeeZ\xa6-\xb4`A\x90\xd2\xde`|k\x1aA\xce\xaa\xcfI-\xb4`A\xb0\x8b\xdb(\xb8i\x1aA$\x06\x81\x99-\xb4`A\xf0(\\\x8f\x18h\x1aAp=\no0\xb4`A\x00\xf0\x16\x88\xd7g\x1aA\xa8\xc6K\xc51\xb4`A\xe0\xd0"\xdb\xd3e\x1aA\xd0f\xd5\xeb@\xb4`A\xf0Q\xb8\x1e\x1ae\x1aA\xf6(\\\xefF\xb4`A\xd0\xa3p=\xe8c\x1aA\xf6(\\\xefU\xb4`A@\xe1z\x14\x8ba\x1aA\x90\xc2\xf5\xb8l\xb4`AP\xb8\x1e\x85ka\x1aA\xd8\xa3p\x95l\xb4`A\xf0(\\\x8fGa\x1aA\x00\x00\x00hj\xb4`A@\xe1z\x14w`\x1aAp=\n\xb7U\xb4`A@`\xe5\x90\xf3^\x1aA\xea&1,I\xb4`A\x00\xbc\x05Rx]\x1aA\xf2A\xcfZG\xb4`A\xb0PkZp_\x1aA\xe2X\x17\x81[\xb4`A\xc0\x8d\x06p\x90_\x1aA\xfa\\m\xed_\xb4`A\x80QI]\x90^\x1aA0\xbb\'\x05k\xb4`A\xe0\x8c(\xad\x06^\x1aA\x1c\r\xe0\x9fk\xb4`A@\xe1z\x14A]\x1aA\xb8\x1e\x85co\xb4`A\x10\xd7\xa3p\x0f]\x1aA(\\\x8f\nk\xb4`A\xc0\xf5(\\\x1d]\x1aAH\xe1z\xech\xb4`A\xc0\xf5(\\"]\x1aA\n\xd7\xa3xe\xb4`A@\xe1z\x14\xe1\\\x1aA\xb8\x1e\x85\x83\\\xb4`A\xd0\xcc\xcc\xcc\x82\\\x1aAfff\x0eU\xb4`A0w-!\x03\\\x1aA\xd64\xefzL\xb4`A\x90\xb0\xe1\xa9\x86[\x1aA*\xa9\x13\xcaF\xb4`A\x90\x8e\xe4\xb2p[\x1aAX9\xb4~F\xb4`A\xb0@\x82b\xb8Z\x1aAL\xa6\njF\xb4`A\x10X9t\x94X\x1aA\xf4\xfd\xd4\x08L\xb4`A\x10\xd7\xa3\xb0\xafX\x1aA@\x82\xe2\x87O\xb4`A@\xe1z\x14\xbaX\x1aA\xaeG\xe1\xc2O\xb4`A\xe0z\x14\xae\xd6X\x1aA\x9a\x99\x99\xb1P\xb4`A\xf0Q\xb8\x1e\x01Y\x1aAp=\n\xd7R\xb4`Ap\x00o\xc1\x03Y\x1aAJ\x9d\x802S\xb4`A Zd{ Y\x1aA\xba\xfc\x87nT\xb4`A\x90\x1fc\xee\x1aY\x1aA\xa8W\xcaVV\xb4`A0\\\x8f\xc21Y\x1aAp=\noY\xb4`A\xd0\xa3p=\xcfX\x1aA\x90\xc2\xf5\x88g\xb4`A\x10\xaeG\xe1WX\x1aA\n\xd7\xa3\xe8j\xb4`A\xa0\xb478NX\x1aAx\x9c\xa2\xf7j\xb4`A\xc09#J\x88W\x1aA\xfa~j\xdau\xb4`A\x90!\x8eutV\x1aA\xb8@\x82\x8e\x80\xb4`A\x10\xd0DX<V\x1aA\xc2d\xaa\x1a\x83\xb4`Ap\xd7\x12rlU\x1aA\x10\xc7\xba\xc8\x90\xb4`A\xd0T\xc1h\xbcT\x1aADiob\x9c\xb4`A\xc0\xfc\x87t\x90U\x1aA\xec\xe26j\xaa\xb4`A\x80?5^8V\x1aA.\x90\xa0d\xae\xb4`A\xe0\x1b|a\xccV\x1aA\xb8\xd1\x00\xc4\xb1\xb4`A\x90\x06\xf0V\x90W\x1aA\x82\x95CA\xb8\xb4`A\xd0\xf7Sc\xc0W\x1aA\xde\x02\t\xa0\xba\xb4`A\xc0\x17&SlX\x1aA"\xdb\xf9\x00\xca\xb4`A\xd0T\xc1h\x08X\x1aA\x00"\xfd\xe2\xed\xb4`A\xe0q\x8a\x0e\x90W\x1aAr\x1b\r\x10\xf9\xb4`A\xe0z\x14\xaeRW\x1aA\xf6(\\W\xff\xb4`A\x10\xaeG\xe1-W\x1aA\x90\xc2\xf5\xd0\x01\xb5`A\xf0Q\xb8\x1eZV\x1aA\x9a\x99\x99\x89\t\xb5`A\x10\xd7\xa3p@V\x1aA\x90\xc2\xf5\x10\n\xb5`A\xd0\xa3p=\x85U\x1aA\x90\xc2\xf5h\t\xb5`A\x10\xd7\xa3pkU\x1aAR\xb8\x1e\xad\x08\xb5`A\x10\xaeG\xe1IU\x1aA\x90\xc2\xf5\x88\x05\xb5`A\x00\x00\x00\x00DU\x1aA(\\\x8fb\x03\xb5`A\xd0\xcc\xcc\xcc\xc4U\x1aA\xc2\xf5(\xbc\xf2\xb4`A0\\\x8f\xc2\tV\x1aAfff\xa6\xee\xb4`A\x10\xd7\xa3p-V\x1aA\x00\x00\x000\xeb\xb4`A\xf0Q\xb8\x1e\x0cU\x1aA\xf6(\\\xc7\xd0\xb4`A\xe0z\x14\xae\'T\x1aA\xb8\x1e\x85\xb3\xaf\xb4`A\xf0Q\xb8\x1e\x1eT\x1aAR\xb8\x1e\xb5\xad\xb4`A\x80\xf2\xb0\xd0LR\x1aA\xaa\xf1\xd2\xc5\x9e\xb4`A\x90\xf6\x06_\x04R\x1aA\xe4\x83\x9e\xa3\x9e\xb4`A\x00o\x81\x84\x08O\x1aA\x14\xd0D2\xa7\xb4`A\xb0PkZpN\x1aA\x98L\x15\x04\xaa\xb4`A\x00\xc3djPM\x1aA\xae\xd8_D\xb0\xb4`A\xc0\xc1\x17f\x1cM\x1aA\x80\xb7@\xea\xb2\xb4`AP\x1e\x16\xaa#M\x1aA$(~\xd8\xb3\xb4`A@\n\xd7\xa3.M\x1aA\xb8\x1e\x85#\xb4\xb4`AP\xb8\x1e\x85\x8bM\x1aA\xe2z\x14\xf6\xb5\xb4`A\xe0z\x14\xaeUN\x1aA\x1e\x85\xeb\xf1\xb9\xb4`A@\xe1z\x14\x9bN\x1aA\xd8\xa3p\xed\xbb\xb4`A@Gr\xf9\xbfN\x1aAj\xbct\x05\xbd\xb4`A\xd0x\xe9f@O\x1aA`\x07\xce\xdf\xbe\xb4`A\x10&S\x85\x8cO\x1aA\xce\x88\xd24\xc6\xb4`A\xd02\xc4qNO\x1aAV}\xae\xa6\xca\xb4`A\xe0z\x14\xae\x89N\x1aAH\xe1z\x04\xe2\xb4`A\xc0\xf5(\\FN\x1aA\xf6(\\\x9f\xe2\xb4`A@\n\xd7\xa3\x05N\x1aAfff\xd6\xe1\xb4`A\xc0\xf5(\\\x92M\x1aA\xe2z\x14\xa6\xdf\xb4`A \x85\xebQgM\x1aAH\xe1z|\xde\xb4`A@\xe1z\x14aM\x1aA(\\\x8f\x1a\xdd\xb4`A0\\\x8f\xc2\x17M\x1aAR\xb8\x1eu\xda\xb4`A\xd0\xcc\xcc\xcc\xd1L\x1aA\xc2\xf5(<\xd8\xb4`A\x00\xde\x02\tvL\x1aA\x0e\x9c3(\xd6\xb4`A@\x13a\xc32L\x1aA\xd8\x12\xf2\xaf\xd4\xb4`A\xd0\xa3p=\rG\x1aAH\xe1z\xc4\xb8\xb4`A\xc0k\t9\xd0C\x1aA433w\xb9\xb4`A\xf0\xd2Mb\xc4C\x1aA\xfc\xa9\xf1\x06\xba\xb4`A\x00\xc3dj`B\x1aA\xb8\xd1\x00d\xbb\xb4`A\xb0i\xde\xf1^B\x1aA\x92\xcb\x7f`\xbb\xb4`A@\n\xd7\xa3\xacA\x1aA\xf6(\\\xd7\xbc\xb4`A \x85\xebQ\x8bA\x1aAfff&\xbc\xb4`A@\xe1z\x14\xd2@\x1aA\n\xd7\xa3\x98\xb7\xb4`A0333?@\x1aAH\xe1z\xb4\xb2\xb4`A \x85\xebQ:@\x1aA\x1e\x85\xeb\xf9\xb1\xb4`A\xd0\xa3p=S@\x1aA\x1e\x85\xeb\xd9\xb0\xb4`A \x85\xebQ\xa3@\x1aA\x00\x00\x00\xf8\xaf\xb4`A\xe0z\x14\xae\xf0@\x1aAp=\n\x17\xb0\xb4`A\xf0Q\xb8\x1e3A\x1aA\xc2\xf5(\xfc\xaf\xb4`A\xd0\xcc\xcc\xccUA\x1aA\n\xd7\xa3\xc0\xaf\xb4`A@\xe1z\x14rA\x1aA\xe2z\x14\xfe\xad\xb4`A0\xcb\x10\xc7qA\x1aA\x86Z\xd3\xf6\xad\xb4`A\x80\xebQx\xd0@\x1aA:p\xce\x88\xa9\xb4`A\x80\xc0\xcaaX?\x1aA\xb2.n]\xa3\xb4`A\xb0%\xe4\x83\xdc<\x1aA\xf0\x16HT\x9d\xb4`A\xa03\xa2t\xc4;\x1aA\xf6u\xe0H\x9d\xb4`A\xe0\xac\xfa\\\x8c:\x1aA\xfe\xb2{"\xa1\xb4`A\xe0\xbe\x0e\x1c\x06:\x1aAT\x05\xa3\xbe\xa1\xb4`A@\xe1z\x14\xe59\x1aA\xe2z\x14\x0e\xa2\xb4`A`\xeeZ\x02\xa29\x1aA*\xcb\x103\xa2\xb4`A\x90C\x8bl\x9c8\x1aA`TRc\xa3\xb4`A \xc9\xe5\x7f\x184\x1aA\xe26\x1a\x0e\xa6\xb4`A0\x87\x16Y\xdd3\x1aA\xf0\x16H\xce\xa6\xb4`A\x10\xd7\xa3p\xe33\x1aAH\xe1z\\\xa9\xb4`A@\xe1z\x14\t4\x1aA\xaeG\xe1J\xaa\xb4`AP\xb8\x1e\x85\x926\x1aAp=\n?\xb5\xb4`A\xd0\xcc\xcc\xcc/9\x1aA\n\xd7\xa38\xc6\xb4`A\xf0Q\xb8\x1e[;\x1aA\xb8\x1e\x85\x83\xd5\xb4`A\x00\x00\x00\x00\x98;\x1aAR\xb8\x1ee\xd7\xb4`A\x10\xd7\xa3p\xc0;\x1aA\x90\xc2\xf5`\xd9\xb4`A\xf0(\\\x8fS<\x1aA\xb8\x1e\x85\x13\xe1\xb4`A\x00\x00\x00\x00\\<\x1aA\x9a\x99\x99\x91\xe2\xb4`A0*\xa9\xd3+<\x1aA\x84/L\xc6\xe4\xb4`A\x106<}(<\x1aA\xfe\xf6u.\xe5\xb4`A\x10\xfb\xcb.\x1c<\x1aAz\x14\xae}\xe5\xb4`A@\n\xd7\xa3\t<\x1aAp=\nW\xe6\xb4`A\xe0\x9c\x11\xa5\xd6;\x1aA`\x98L=\xe7\xb4`A`\xf5\xb9Z\xa4;\x1aA\xde$\x06\x81\xe8\xb4`A\xc0\x8f1\xf7\x87;\x1aA\xe0-\x90\xa0\xe8\xb4`A\xf0(\\\x8fU;\x1aA\xc2\xf5(\x84\xe9\xb4`A@\xe1z\x14\xed:\x1aA\x90\xc2\xf5\xb0\xea\xb4`A\x00\x00\x00\x00\xa4:\x1aA\xb8\x1e\x85\xd3\xea\xb4`A\x00\xa1g\xb3\xf29\x1aA^)\xcbb\xea\xb4`A\x90\xc2\xf5hd9\x1aA@\xa4\xdf\x00\xeb\xb4`A`\x07\xceY\x808\x1aA\xe0\x0b\x93\x7f\xe6\xb4`A@W[q\x087\x1aA\xb8\xd1\x00\x8c\xe0\xb4`A@,\xd4ZT5\x1aA,C\x1c}\xda\xb4`A\xf0|?u\xc84\x1aA\xd0D\xd8N\xda\xb4`A\xe0\xac\xfa\\N4\x1aA\x04x\x0bF\xdd\xb4`A \xe4\x83^\xac3\x1aAl\xe7\xfb%\xe8\xb4`A\xe0_vO\xac3\x1aAD\xd8\xf0z\xea\xb4`A\x90\xd4\th\x184\x1aA\xf0\xa7\xc6\x81\xff\xb4`A\xf0\xc9\xc3\x82 5\x1aA\x96!\x8e\x0f.\xb5`Ap\xa3\x01\xbcK5\x1aA|a2\x1b2\xb5`AP\xb8\x1e\x85\xe15\x1aAp=\n/8\xb5`A0333\x867\x1aA\x1e\x85\xeb\xa1E\xb5`A\xf0(\\\x8f\xa37\x1aA\xb8\x1e\x85[G\xb5`A@\xe1z\x14\'8\x1aA\xd8\xa3p\x1dO\xb5`A\x10\xd7\xa3p58\x1aAfff\x16P\xb5`A\xf0Q\xb8\x1e!8\x1aA\xd8\xa3pUQ\xb5`A\x10\xd7\xa3p\xb37\x1aAH\xe1z<Q\xb5`A0333Y7\x1aA\x9a\x99\x99\xc9P\xb5`A0333\xab6\x1aA\xaeG\xe1BL\xb5`A\xa0y\xc7ic6\x1aA\xf4JY\xc2I\xb5`A\xb0\xad\xd8_\xa85\x1aA\xb4\xeas!F\xb5`A\xd0\xa3p}\x984\x1aAn\x12\x83\x10A\xb5`A\x90\x8e\xe4r03\x1aA:#J\xe9A\xb5`A\x80\x85ZS\x882\x1aA\xea\xb7\xaf\xdbG\xb5`Ap\xe7\xfbi\x002\x1aAT\xc1\xa8\x1eR\xb5`A\x90\xfdewx1\x1aA\xd2Mb\x06U\xb5`A\xa0\x08\x1b^\xec0\x1aA\xe4\xf2\x1f\xfeS\xb5`A\x10\x02+G\xcd0\x1aA\x96\xb2\x0c\xf7R\xb5`A\xd0\xcc\xcc\xcc\xb50\x1aA\xf6(\\\xafS\xb5`A\xd0\xa3p=\x990\x1aA\xe2z\x14\xc6T\xb5`A\xc0\xf5(\\\x8a0\x1aA\xb8\x1e\x85\xb3V\xb5`A \x85\xebQ\x880\x1aAfff\x9eW\xb5`A\x00\x00\x00\x00\x9e0\x1aA\x00\x00\x00\xe0[\xb5`A\x10\xd7\xa3p\xe40\x1aA\xaeG\xe1\x9ag\xb5`A\xc0\x1e\x85\xeb\xfc0\x1aA\x90\xc2\xf5\x90i\xb5`A`\xf5\xb9\x1aJ2\x1aA\x14?\xc6\x18x\xb5`A\xf0\r\xbe\xb0v2\x1aAr\x8a\x8e\xd0y\xb5`A\xa0\xa2#9\xb22\x1aA~\x1d8\xd5{\xb5`A\x00\x9a\x08[\x043\x1aA*\xcb\x10\x1f~\xb5`A\xd0\xee\xc9\x83\xf53\x1aA6\xab>\xef\x80\xb5`A\x10\xd7\xa3pd7\x1aA\x1e\x85\xeb\xd1\x88\xb5`A\xe0z\x14\xae\x1f9\x1aAR\xb8\x1e}\x8c\xb5`A \x85\xebQ\x01;\x1aA\x9a\x99\x99y\x90\xb5`Ap$\x97\x7f\xa3;\x1aA\xeeZB\x14\x91\xb5`A \xb0rh\xc8;\x1aA\xf2c\xcc\xff\x90\xb5`A\x00;pN\x08=\x1aAx\x0b$:\x90\xb5`A\x80Z\xd3|\xf8=\x1aA\x82\xe2\xc7\x10\x87\xb5`A\xe0\xc7\x98;\x01>\x1aA\xe26\x1a\xac\x86\xb5`A\xc0\x1e\x85\xeb*>\x1aAH\xe1z\\\x81\xb5`A\xc0\x1e\x85\xebP>\x1aA\xc2\xf5(l}\xb5`A0\\\x8f\xc2i>\x1aA\xaeG\xe1\xca{\xb5`A\x10\xd7\xa3p\x1c?\x1aA\x00\x00\x00\xe0u\xb5`A@\xe1z\x14\xacA\x1aA\xe2z\x14\x9eo\xb5`A\x00\xee\xeb\x80\x18B\x1aA\xf2\xd2M>o\xb5`A\x10\x9c3bLB\x1aA\xc6m4\xa4n\xb5`A\xa0W\xcar\xa8F\x1aA\xf8\xc2d,l\xb5`A\x10\x02+\x87\xf1F\x1aA\xd8\x81stl\xb5`A\xd0\xcc\xcc\xcc\x04G\x1aA(\\\x8fZl\xb5`A0\\\x8f\xc27H\x1aA\xf6(\\\xe7h\xb5`A@\xe1z\x14iH\x1aA\n\xd7\xa3(h\xb5`A@\n\xd7\xa3\xdeH\x1aA\x90\xc2\xf5\xa0d\xb5`A0\\\x8f\xc2yI\x1aAfff\xe6b\xb5`A0\\\x8f\xc2\xb4I\x1aA\x9a\x99\x99\xb9b\xb5`AP\xb8\x1e\x85JJ\x1aA\xb8\x1e\x853d\xb5`A@\n\xd7\xa3\xd6J\x1aA\x1e\x85\xeb\xa9f\xb5`A\xc0\x1e\x85\xeb\x90K\x1aAfff~l\xb5`A\xd0\xa3p=#L\x1aA\x1e\x85\xeb\xf9s\xb5`A@\xe1z\x14rL\x1aA\xf6(\\\xafy\xb5`A\xc0\xf5(\\\x89L\x1aA\xb8\x1e\x85\x9b{\xb5`A@\n\xd7\xa3\x93L\x1aA\x90\xc2\xf5\x00\x80\xb5`A\xc0\x1e\x85\xebSL\x1aA\n\xd7\xa3\xf8\x94\xb5`AP\xb8\x1e\x85"L\x1aA\xb8\x1e\x85\x83\x9f\xb5`A\xc0\xf5(\\\xf4K\x1aA\x9a\x99\x99\x11\xa5\xb5`A\x10\xd7\xa3p\xbcK\x1aA\x9a\x99\x99\xa1\xa6\xb5`AP\xb8\x1e\x85)K\x1aA\xc2\xf5(T\xc8\xb5`A\xc0\x1e\x85\xebFK\x1aA\x90\xc2\xf5\xc0\xcf\xb5`A\xf0Q\xb8\x1eJL\x1aA(\\\x8f\xea\xee\xb5`A\xf0Q\xb8\x1e2M\x1aA\n\xd7\xa3H\x08\xb6`AP\xb8\x1e\x85\x96M\x1aA\n\xd7\xa3\x98\x0c\xb6`A\xf0(\\\x8f\xb9M\x1aA\n\xd7\xa3\x98\x0e\xb6`A\xf0(\\\x8f\x11N\x1aAH\xe1zt\x15\xb6`A\xe0z\x14\xae"N\x1aA\x90\xc2\xf5\xb8\x17\xb6`A\xc0\x1e\x85\xeb\'N\x1aAfffn\x1b\xb6`A\xc0\xf5(\\ N\x1aA\x90\xc2\xf5\xd8\x1c\xb6`A@\n\xd7\xa3\xf6M\x1aA\xaeG\xe1\xe2 \xb6`A \x85\xebQ\xd0M\x1aA(\\\x8fr&\xb6`A@\xe1z\x14\xd7M\x1aA\n\xd7\xa3\x98(\xb6`A\x10\xd7\xa3pWN\x1aAR\xb8\x1e\x1d1\xb6`A\xc0\x1e\x85\xeb\x15P\x1aA\xf6(\\g,\xb6`A\xf0(\\\x8f\xf9P\x1aAfff\xde(\xb6`A0333\x0bQ\x1aAp=\n\xaf\x17\xb6`A\x10\xd7\xa3pRQ\x1aAfff\x96\x05\xb6`A@\xe1z\x14\x9dQ\x1aA\n\xd7\xa30\xf7\xb5`A\xc0\x1e\x85\xeb\xa4Q\x1aA\n\xd7\xa3\xd0\xee\xb5`A@\n\xd7\xa3sQ\x1aA\xb8\x1e\x85\xb3\xe8\xb5`A\xd0\xcc\xcc\xcc+Q\x1aA\x1e\x85\xeb\xd9\xe1\xb5`A\x00\x00\x00\x00\xfdP\x1aA\x1e\x85\xeb\x91\xde\xb5`A\xe0z\x14\xae\xdeP\x1aA\x90\xc2\xf5(\xdd\xb5`A\xd0\xa3p=\xadP\x1aA\xb8\x1e\x85\x83\xdc\xb5`A@\xe1z\x14YP\x1aA\x00\x00\x00\xc0\xd9\xb5`A\xc0\x1e\x85\xeb\x98O\x1aA\x9a\x99\x99i\xd2\xb5`A\x10\xaeG\xe1nO\x1aAp=\n\x8f\xd0\xb5`AP\xb8\x1e\x85^O\x1aA\x90\xc2\xf5\xf0\xcd\xb5`A0333hO\x1aA\xc2\xf5(\x9c\xcb\xb5`A\xf0Q\xb8\x1e}O\x1aA\x1e\x85\xeb\xd1\xc9\xb5`A\x10\xd7\xa3p\xccO\x1aA\xe2z\x146\xc6\xb5`A0\\\x8f\xc23P\x1aA\xf6(\\\xa7\xc1\xb5`A\xe0z\x14\xae5Q\x1aAp=\n\x7f\xba\xb5`A\x10\xd7\xa3pGQ\x1aA\x00\x00\x00 \xba\xb5`A\xc0\x1e\x85\xeb\xeaQ\x1aAfff\x0e\xbb\xb5`A\xd0\xcc\xcc\xcc\xb3R\x1aA\xd8\xa3p\xbd\xbf\xb5`A\xf0(\\\x8f\x1cS\x1aAH\xe1z\x94\xc5\xb5`A\x00\x00\x00\x00%S\x1aA\x90\xc2\xf5@\xc9\xb5`A\xe0z\x14\xae\x17S\x1aA\x90\xc2\xf5\x08\xcb\xb5`A\x10\xd7\xa3pES\x1aA\xb8\x1e\x85{\xce\xb5`A\x00\x00\x00\x00lS\x1aA\xc2\xf5(\xac\xd0\xb5`AP\xb8\x1e\x85\x93S\x1aA\x90\xc2\xf5\x90\xd0\xb5`A\xc0\xf5(\\\xb1S\x1aA\xd8\xa3p%\xd0\xb5`A \x85\xebQ\xdeS\x1aAp=\n\'\xcd\xb5`AP\xb8\x1e\x85\x14T\x1aAp=\n\xcf\xc7\xb5`A0333$T\x1aA\xb8\x1e\x85\x0b\xc4\xb5`A\xf0Q\xb8\x1euT\x1aA\xc2\xf5(\xd4\xc5\xb5`A\xe0z\x14\xae\x83T\x1aAH\xe1z\x0c\xca\xb5`A@\n\xd7\xa3~T\x1aA\xb8\x1e\x85\xfb\xd6\xb5`A\xd0\xcc\xcc\xcc\x87T\x1aA\xd8\xa3pM\xde\xb5`A \x85\xebQ\xc9T\x1aA\xb8\x1e\x85{\xe9\xb5`A\xf0(\\\x8f\xf8T\x1aAH\xe1zd\xee\xb5`A\xc0\xf5(\\\x10U\x1aA\x1e\x85\xeb\x81\xf0\xb5`A@\xe1z\x14\xf6V\x1aA\x1e\x85\xeb\xd9\x11\xb6`A \x85\xebQ\x95X\x1aA\xe2z\x14\x06(\xb6`A\xc0\xf5(\\\x88Z\x1aA\x90\xc2\xf5\xa8.\xb6`A0333H\\\x1aAfff\xe60\xb6`A\xf0Q\xb8\x1e\xf0]\x1aA\xb8\x1e\x85k+\xb6`A03332^\x1aA\n\xd7\xa3H*\xb6`A\x00\x00\x00\x00\xb4a\x1aA\x00\x00\x00\xd0\x14\xb6`A0333\xdfa\x1aA\xe2z\x14\x8e\x13\xb6`A0333\x1ab\x1aAH\xe1z\x84\x10\xb6`A\x10\xaeG\xe1<b\x1aAH\xe1z\x9c\x0e\xb6`A\xf0(\\\x8f\xb0b\x1aA\x1e\x85\xeb\xa1\xfb\xb5`A \x85\xebQ\x83b\x1aA\x00\x00\x00p\xe5\xb5`A\xd0\xa3p=jb\x1aA(\\\x8fZ\xde\xb5`A\xf0(\\\x8f]b\x1aA\xe2z\x14^\xdb\xb5`A@\n\xd7\xa31b\x1aAp=\no\xd5\xb5`A\xc0\xf5(\\\xe9a\x1aA\xd8\xa3p\x85\xc3\xb5`A\xd0\xcc\xcc\xcc\xaca\x1aAH\xe1z\xf4\xa7\xb5`A\x00\x00\x00\x00\xb0a\x1aAR\xb8\x1ee\xa4\xb5`A@\xe1z\x14\xeaa\x1aA\xe2z\x14v\x9d\xb5`A\x00\x00\x00\x00\rb\x1aA\xaeG\xe1\x02\x9a\xb5`A\xe0z\x14\xaeyb\x1aAR\xb8\x1eE\x91\xb5`AP\xb8\x1e\x85\x19c\x1aA(\\\x8fB\x89\xb5`A \x85\xebQ\xe8d\x1aA\xd8\xa3p\xe5y\xb5`A\xf0(\\\x8f:e\x1aAR\xb8\x1emw\xb5`A@\xe1z\x14\xdef\x1aAfff\xaem\xb5`A\xe0z\x14\xae\x84h\x1aAH\xe1z\xc4e\xb5`A\xd0\xa3p=\x06i\x1aA\n\xd7\xa3\xd0c\xb5`A@\xe1z\x14\xcci\x1aAp=\n\x1fb\xb5`A\xd0\xcc\xcc\xcc\x0bj\x1aA\xf6(\\\xefa\xb5`A\xc0\x1e\x85\xeb\'j\x1aA\xaeG\xe1\xe2b\xb5`A\xa0<,\xd4Fj\x1aA\xac\xfa\\\xc9b\xb5`A\xa0\nF\xa5\xefj\x1aA>\n\xd7\xf7`\xb5`A\x0b\x00\x00\x00\x90\xb9k\t\x08Z\x1aA\xe2\xc7\x98\xd1\x8d\xb4`A@W[15Z\x1aA\x98\xff\x90\xf4\x8d\xb4`A@\xadi\xde[Z\x1aAJ{\x83\x87\x8e\xb4`A@p\xceHnZ\x1aA \xf4l\x90\x8f\xb4`A@\xf1c\x0cpZ\x1aAN\xd1\x91\xa0\x90\xb4`A\xe0\x1b|aSZ\x1aA\x9a\x99\x99\xe3\x90\xb4`A\xa0\xd64/&Z\x1aANb\x10\x8a\x90\xb4`A \xf4lV\x06Z\x1aA\x8euq\x0f\x90\xb4`A@p\xceH\xf7Y\x1aAN@\x13\x05\x8f\xb4`A\xd0\xc3B-\xf2Y\x1aA\x0cq\xac\x11\x8e\xb4`A\x90\xb9k\t\x08Z\x1aA\xe2\xc7\x98\xd1\x8d\xb4`A*\x00\x00\x000333\x8d^\x1aA(\\\x8fB\xba\xb4`A\x90St\xa4\x91^\x1aA\xf4\xdb\xd7W\xbb\xb4`Apq\x1b\r\xdd^\x1aA\x08=\x9bc\xbf\xb4`A\xf0(\\\x8f\x1d_\x1aA\xf6(\\\x1f\xc0\xb4`A\xe0z\x14\xae\xb4_\x1aA\x00\x00\x00\xa0\xc4\xb4`A@\xe1z\x14\xd5_\x1aA\xe2z\x14\x96\xc7\xb4`A \x85\xebQ\xe9_\x1aA\x1e\x85\xeb\x01\xca\xb4`A\xe0z\x14\xaee`\x1aA\xd8\xa3p\x9d\xdb\xb4`AP\xb8\x1e\x85e`\x1aA\x00\x00\x00\xf8\xdf\xb4`A\xd0\xa3p=\x1d`\x1aA(\\\x8f\x1a\xe5\xb4`A\xc0\x1e\x85\xeb\xf2]\x1aAfff&\xf6\xb4`A\xf0(\\\x8f\x7f]\x1aA\x00\x00\x000\xf7\xb4`A\xc0\x1e\x85\xebI]\x1aA\n\xd7\xa3\xd8\xf6\xb4`A\xc0\xf5(\\\x1b]\x1aA\xaeG\xe1\xda\xf5\xb4`A\xf0Q\xb8\x1e\xed\\\x1aAfff\xde\xf2\xb4`A\x00\x00\x00\x00\xd6\\\x1aA\n\xd7\xa3\x10\xf1\xb4`A\xc0\x1e\x85\xebr\\\x1aAR\xb8\x1e\xf5\xdf\xb4`A\x00\x00\x00\x00Z\\\x1aA(\\\x8fb\xda\xb4`A\xd0\xcc\xcc\xcc\xa8\\\x1aA\x90\xc2\xf5\x80\xcf\xb4`A@\xe1z\x14\xfe\\\x1aA\xf6(\\W\xc5\xb4`A@\n\xd7\xa3a]\x1aA\n\xd7\xa3\xc0\xbb\xb4`A\xd0\xa3p=c]\x1aA\xaeG\xe12\xb9\xb4`A\x10\xaeG\xe16]\x1aA\x9a\x99\x99\x19\xaf\xb4`AP\xb8\x1e\x85\x8a\\\x1aAfff&\xa4\xb4`A\xd0\xa3p=A\\\x1aA\x00\x00\x00\xe0\xa0\xb4`A0333\x11\\\x1aA\x90\xc2\xf5\xc8\xa0\xb4`A \x85\xebQ\xcb[\x1aA\x00\x00\x00\x00\x9f\xb4`A0333n[\x1aA\xaeG\xe1z\x98\xb4`A\xe0z\x14\xae\x87[\x1aA\x9a\x99\x99\x01\x97\xb4`A\xf0(\\\x8f\xd1]\x1aAfffn\x97\xb4`A\xe0z\x14\xae\xa6^\x1aA\x1e\x85\xeb\xb1\x98\xb4`A \x85\xebQ\xc9_\x1aA\x90\xc2\xf5p\x9a\xb4`A\xc0\x1e\x85\xeb\xe2_\x1aA\xaeG\xe1\xea\x9a\xb4`A0\\\x8f\xc2\xdc_\x1aA\xd8\xa3p\xbd\x9b\xb4`A \x85\xebQ\xa4_\x1aA\xaeG\xe1\x02\x9d\xb4`A\xc0\xf5(\\R_\x1aA\x90\xc2\xf5\xf0\x9d\xb4`A \x85\xebQ:_\x1aA\n\xd7\xa3H\x9d\xb4`A\xc0\xf5(\\\xb4^\x1aA\xb8\x1e\x853\x9d\xb4`A@\xe1z\x14\x97^\x1aA\xaeG\xe1\xfa\x9d\xb4`A\x10\xd7\xa3pf^\x1aA\xd8\xa3p-\xa7\xb4`A@\xe1z\x14h^\x1aA\x9a\x99\x999\xad\xb4`A0333\x8d^\x1aA(\\\x8fB\xba\xb4`A\x07\x00\x00\x00\xa0\x11\xa5}\xe4i\x1aA\x16jM\x93\xe4\xb4`A\xe0\xf0\xf4J4j\x1aA\xce\xf7S\x9d\xe5\xb4`A\x80\xae\xb6b\xc4i\x1aA\x9e\xcd\xaa\xa3\xe9\xb4`APP\xfcXti\x1aA|?5"\xe9\xb4`A\xe0\xb5\x84|pi\x1aAX\xca2\xb0\xe6\xb4`AP\x9f\xabm\xbci\x1aA\xa0\xf81H\xe5\xb4`A\xa0\x11\xa5}\xe4i\x1aA\x16jM\x93\xe4\xb4`A\x15\x00\x00\x00\xf0(\\\x8f\x0fE\x1aA\xb8\x1e\x85\x03\xf7\xb4`A\x10\xaeG\xe1\x80D\x1aAH\xe1z\xb4\xfb\xb4`A \x85\xebQ\xd6B\x1aA\xb8\x1e\x85\xfb\x02\xb5`A0333cA\x1aA\xd8\xa3p\xfd\x03\xb5`A\x10\xaeG\xe1\xea?\x1aA\x90\xc2\xf50\x00\xb5`A@\xe1z\x14\x95?\x1aA(\\\x8f\xb2\xfd\xb4`A@\xe1z\x14\x8f?\x1aAfffv\xfb\xb4`A\xe0z\x14\xae\xb0?\x1aAfff\xde\xf7\xb4`A\xf0(\\\x8f\xd3?\x1aAfffF\xf6\xb4`A\xd0\xa3p=8@\x1aA\xaeG\xe1\xf2\xf1\xb4`AP\xb8\x1e\x85\xbeA\x1aA\xf6(\\\'\xe3\xb4`A\xc0\xf5(\\SB\x1aA\xb8\x1e\x85\x9b\xe0\xb4`A\xc0\x1e\x85\xeb\xa4B\x1aAp=\nO\xe0\xb4`A@\n\xd7\xa3\nC\x1aA\xf6(\\\xf7\xdf\xb4`A\xf0Q\xb8\x1e\x93C\x1aA\xaeG\xe1\x9a\xe2\xb4`A\xd0\xa3p=\xecC\x1aA\x00\x00\x00\xd8\xe4\xb4`A\xc0\x1e\x85\xeb\x15E\x1aA\xe2z\x14\x8e\xec\xb4`A@\xe1z\x14,E\x1aA\x1e\x85\xeb\xe1\xed\xb4`A\xe0z\x14\xae9E\x1aA\x1e\x85\xeb\xf9\xef\xb4`A0333%E\x1aA\xd8\xa3p-\xf6\xb4`A\xf0(\\\x8f\x0fE\x1aA\xb8\x1e\x85\x03\xf7\xb4`A\n\x00\x00\x00\x90l\xe7{\xc4P\x1aA`\x98L\xf3\xf8\xb4`A \xfd\xf6uHR\x1aA\\\xfeCl\xf2\xb4`A\x106<}\xdcR\x1aAx-!o\xf6\xb4`A\xa0E\xb6s\xd4R\x1aA\xc2\xa8\xa4\x90\xfb\xb4`A\x10\x93\xa9\x82\xbcR\x1aA\xde\x93\x87\x11\x03\xb5`A0U0j\x98R\x1aA\x06\x12\x14\xc5\x03\xb5`Ap\xd7\x12rXQ\x1aA\x94\x87\x85l\x04\xb5`A\x90n\x12\x83\xc8P\x1aA\xea\x044S\x02\xb5`A0\xd4\x9af\x90P\x1aA\xd0\xb3Y\xc5\xfc\xb4`A\x90l\xe7{\xc4P\x1aA`\x98L\xf3\xf8\xb4`A', b'\x01\x03\x00\x00\x00\x06\x00\x00\x00\xb4\x01\x00\x00P2]S-L\x1aA\xd87*B\xbd\xb5`AP2]S-L\x1aA\xbaS\xe8a\xcf\xb5`A\x80H\x1b~\xc1L\x1aA\xec-\xd8d\xd6\xb5`A\x10\xb6\x07\xcb\xb2M\x1aA\x88\xc5\xc7k\xdb\xb5`A\x10\x90{\xa0\x9bN\x1aA\xa0K\xfaB\xd6\xb5`A0O\x0b\xa9\xd2N\x1aAr\xf3\xc5\x87\xcd\xb5`A0XW\xed\rO\x1aA\xd2\xb5n\xfa\xbe\xb5`AP\x80\xad\xa0\x18P\x1aA>\xa0:;\xb8\xb5`A@\x04X\x18\x9eQ\x1aA\x10\x1b:C\xb4\xb5`A@\xbdR\x96\xbdR\x1aA\xfc\xe4a\xfb\xbb\xb5`AP\x84\r\xcfoS\x1aA\x9e\xcd\xaa1\xc2\xb5`A\xe0\xd9\xacz\x06T\x1aAD\x8bl1\xc9\xb5`A\x80V}nmT\x1aA\xc8\xba\xb8\xf9\xcd\xb5`Ap\xac\x8b\xdb\x81T\x1aA:^\xba\xb9\xce\xb5`ApvO\x9e\x7fU\x1aA\x06\x12\x14\x0b\xd8\xb5`A\x10a\x81C\x90W\x1aA\x98?\xa1\xd7\xeb\xb5`A\xf0:\xf5\x18yX\x1aA,\xa6M\x12\xf9\xb5`A`\x8f\xb9\xe3<Y\x1aAD]N\x87\xfe\xb5`A@\x95\xf3\\uZ\x1aAP\x18}\xfb\xfc\xb5`A`bL\xd2\x8fZ\x1aA\x987\xfcH\xf6\xb5`A@\xc0\xb3g\x19[\x1aA\xfe\x04\xd1;\xf2\xb5`A\xd0\xb6\x10\x9dS[\x1aAT\xfd{\x8c\xf4\xb5`A\xb03{\x02\xf5[\x1aA\xe6Z}\xf7\xfe\xb5`A \xba\x882\\\\\x1aA\xa2)\xa8\n\x00\xb6`A\xd0\x9cA\xad\xc8\\\x1aA\xd0\x9cRc\xfe\xb5`A\x90\xbc\xa2\xa2"]\x1aA\xf0J\xa8\x08\x01\xb6`A\xc0%iM\xf6]\x1aA\xecSS\xd8\x03\xb6`A\xe0\x11\xc5\x92(^\x1aA\x0e\xf0R\xde\x00\xb6`A np\xdd-^\x1aA\xf08Ri\xfb\xb5`A\x10[*H\xa2^\x1aA\x9e\x1e|\x8a\xf5\xb5`A0f\x89]\xec^\x1aA\x0e\xd5Qo\xf8\xb5`A\xc0\x0b\x90A\x10_\x1aA\xbcs\xfe\xe6\xff\xb5`AP\x91Ih\x90_\x1aAFCSY\x03\xb6`A0@\xfd2\xd5_\x1aA\xf4:\xd3\x19\x03\xb6`A\xc0\x93c\xd8V`\x1aA"\xa5\xd2\xa2\xfe\xb5`A\xa0V\xbb]i`\x1aA\x06\xee\xd1-\xf9\xb5`A\x00\x1b\xcf-\x00a\x1aAz\xa4\xa7\x12\xfc\xb5`A`\x82\xd9\x8dOa\x1aA\xbc\xc3&`\xf5\xb5`A\xf0\x97\xc9\xf0\x05b\x1aA\xc0\xa8\xfe6\xf3\xb5`A\x90\xde\xdeDMb\x1aAT\x06K\xff\xe3\xb5`A\xe0\x04\xa8\xff\x87a\x1aA<\xb2,\xd3\xcb\xb5`A\xd0E\n\xd4\xbfa\x1aA\xb2\xb4\xd0\x9d\xb0\xb5`A\xd0\xcc\xcc\xcc\xaca\x1aAH\xe1z\xf4\xa7\xb5`A\x00\x00\x00\x00\xb0a\x1aAR\xb8\x1ee\xa4\xb5`A@\xe1z\x14\xeaa\x1aA\xe4z\x14v\x9d\xb5`A\x10\x00\x00\x00\rb\x1aA\xaeG\xe1\x02\x9a\xb5`A\x00{\x14\xaeyb\x1aAV\xb8\x1eE\x91\xb5`AP\xb8\x1e\x85\x19c\x1aA(\\\x8fB\x89\xb5`A@\x85\xebQ\xe8d\x1aA\xdc\xa3p\xe5y\xb5`A\x00)\\\x8f:e\x1aAR\xb8\x1emw\xb5`A@\xe1z\x14\xdef\x1aAjff\xaem\xb5`A\xe0z\x14\xae\x84h\x1aAH\xe1z\xc4e\xb5`A\xe0\xa3p=\x06i\x1aA\n\xd7\xa3\xd0c\xb5`AP\xe1z\x14\xcci\x1aAp=\n\x1fb\xb5`A\xd0\xcc\xcc\xcc\x0bj\x1aA\xfa(\\\xefa\xb5`A\xc0\x1e\x85\xeb\'j\x1aA\xaeG\xe1\xe2b\xb5`A\xb0<,\xd4Fj\x1aA\xac\xfa\\\xc9b\xb5`A\xb0\nF\xa5\xefj\x1aA>\n\xd7\xf7`\xb5`A\xf0(\\\x8f\x7fl\x1aA\xfa(\\/\\\xb5`A@\\\x8f\xc2&m\x1aA\xd8\xa3p\rZ\xb5`A\x10\x00\x00\x00Em\x1aAR\xb8\x1e\xd5X\xb5`A@\xe1z\x14gm\x1aAr=\noT\xb5`A0\\\x8f\xc2ym\x1aA\xc2\xf5(\x0cS\xb5`A \x85\xebQGn\x1aA\x00\x00\x00XL\xb5`A\xc0\xf5(\\do\x1aA,\\\x8f*F\xb5`A\xd0\xcc\xcc\xccsp\x1aAjff\x06?\xb5`A\xc0\x1e\x85\xeb\x99q\x1aA\x1e\x85\xeba6\xb5`AP\n\xd7\xa3\xccr\x1aA\xe2z\x14\xfe,\xb5`A@8g\x84\xf4r\x1aAH.\xff\x8b+\xb5`A \xb9\xfc\x87,s\x1aA\n\x12\x145)\xb5`A 333\xd4s\x1aAH\xe1z\xfc \xb5`A\xe0\xd9\xac\xfa\x08u\x1aAD\xf1c\x1e\x14\xb5`A@\xdfOM\x98u\x1aA\x868\xd6\xbf\r\xb5`A0\x06\x81Utv\x1aA\xda\x8a\xfd\xe5\x03\xb5`A\xb0\xc6Kw4w\x1aA\x90\x0fz\xd4\xf5\xb4`A\xf0\x1d\xa7h\xa8x\x1aA\x92\\\xfe\x87\xe8\xb4`A\xc0\x94eH\xc5y\x1aA2\xe6\xaeA\xe6\xb4`A`\xb8\x1e\x85\xd9y\x1aA\x94\xc2\xf5\x80\xe5\xb4`AP\xe1z\x14T{\x1aA\x9a\x99\x999\xe1\xb4`A\x00R\xb8\x1e\xa0{\x1aAfff\xbe\xe0\xb4`A@\xe1z\x14\xce{\x1aAR\xb8\x1e\x95\xe0\xb4`A`\xfc\x18\xb3\x8b|\x1aA\x14\xd0Dv\xe2\xb4`A\xd0\xa8\xa4N\x88}\x1aA\xbe\xc1\x17"\xe4\xb4`A\xa0\x9b\xc4`\x94~\x1aA\x8a\xf4\xdb\t\xe6\xb4`A\xd0\xf3\xfdT8\x7f\x1aA.\xff!\xc1\xe8\xb4`Ap\xd7\x122\x1f\x80\x1aATt$\xbf\xec\xb4`A\xe0;N\xd1\xe6\x80\x1aA\x04x\x0bn\xf1\xb4`A\x80K\xc8\x87\xf9\x80\x1aA\xa0g\xb3\x02\xf2\xb4`A \x85\xebQ\xfc\x80\x1aA\xb8\x1e\x85\xfb\xf1\xb4`A\xd0z\x14\xae\xfc\x80\x1aA\xdc\xa3p\r\xec\xb4`A \xaeG\xe1\xbf\x80\x1aA\xc4\xf5(L\xe3\xb4`A\x00\xa6\x9b\x04\xa5\x80\x1aA\xdc=y\xe4\xe2\xb4`A\x80/Lf`\x7f\x1aA\xa6,Cj\xdf\xb4`A\x80\xb3\xeas\xd2~\x1aA~j\xbc\xb2\xdf\xb4`AP\xe1z\x14_~\x1aAfff\x8e\xe0\xb4`A0333\xdd}\x1aA\x00\x00\x00X\xe1\xb4`A\xd0\xf5(\\\\}\x1aA\xd8\xa3p\xe5\xdf\xb4`A\x10R\xb8\x1e\xbc|\x1aA\x9a\x99\x99\x01\xde\xb4`A\x10\x00\x00\x00F|\x1aA*\\\x8f\x92\xdc\xb4`AP\xe1z\x14&|\x1aA\xc2\xf5(\x8c\xdb\xb4`AP\xb8\x1e\x85\xf6{\x1aA\xaeG\xe1\x02\xd7\xb4`A\xf0Q\xb8\x1e\xfa{\x1aA\xc4\xf5(\x1c\xd6\xb4`AP\n\xd7\xa3\x81|\x1aA\xb8\x1e\x85\xc3\xcf\xb4`A\x90\x9e\xcd*\x9c\x7f\x1aAl\x9aw`\xb3\xb4`A\xf0\x06_X\xac\x80\x1aA\xd8\xf0\xf4\xe8\xa6\xb4`Ap\xbaI\x8c\xd2\x80\x1aA\xaa\xcf\xd5\xf2\xa1\xb4`A \xaeG\xe1\x1c\x81\x1aAL\xe1z\xb4\x8f\xb4`A\x00R\xb8\x1e\x17\x81\x1aAt=\nG\x8e\xb4`A\xf0(\\\x8fp\x80\x1aA\xf6(\\\xdf\x82\xb4`A`\xb8\x1e\x85\xf3\x7f\x1aA\xaeG\xe1\x8a|\xb4`A0333\xdf\x7f\x1aA\x00\x00\x00\x80{\xb4`A\x00)\\\x8f\x99\x7f\x1aA\xdc\xa3p\xa5u\xb4`A@\xe1z\x14\x92\x7f\x1aA\xe2z\x14\xa6r\xb4`A0\\\x8f\xc2\xdd\x7f\x1aA\x90\xc2\xf5\xc0n\xb4`A\x00)\\\x8f\x9a\x80\x1aA(\\\x8f\xdah\xb4`A@\\\x8f\xc2\x86\x81\x1aAt=\n\xa7g\xb4`A\x10f\xf7\xe4\x99\x81\x1aA2U0\x96g\xb4`A\xe0\xaa\xcfU\x07\x82\x1aAB>\xe8\xabf\xb4`AP\xe1z\x14[\x82\x1aA\x90\xc2\xf5\xb8e\xb4`A\x10R\xb8\x1eu\x82\x1aA\x90\xc2\xf5(e\xb4`A \x85\xebQz\x82\x1aAt=\n\xf7c\xb4`A\xf0z\x14\xae<\x81\x1aAfffvV\xb4`A\xd0\xa3p=(\x81\x1aA\xc2\xf5(\xbcU\xb4`A\x00\x00\x00\x00\xf6\x80\x1aAL\xe1z\x9cU\xb4`A@\\\x8f\xc2\xa4\x80\x1aA\x1e\x85\xeb\x11W\xb4`A`\xb8\x1e\x85.\x80\x1aA\xb8\x1e\x85KY\xb4`A\xe0\xcc\xcc\xcc\x10\x80\x1aA\xc6\xf5(\xacY\xb4`A\x00R\xb8\x1ek~\x1aA\x9a\x99\x99QQ\xb4`A \xd7\xa3pX~\x1aAfff\xd6P\xb4`A \x85\xebQ\x0f~\x1aA"\x85\xeb\xa1L\xb4`A`\n\xd7\xa3\xb7}\x1aAV\xb8\x1e\x15%\xb4`A \xd7\xa3p\xc0}\x1aA\n\xd7\xa3p#\xb4`A\xe0z\x14\xaeE~\x1aAp=\n7\x1d\xb4`A\xf0(\\\x8f\xb9~\x1aAfff6\x19\xb4`A \xd7\xa3p\xa5\x7f\x1aA433\x1b\x0e\xb4`A\xb0\xcf\xd5\xd6\x95\x7f\x1aAX\xca2\x9e\x08\xb4`AP\x9d\x80f\x14\x7f\x1aA\\[\xb1q\xf8\xb3`A V\x0e\xad\xa8~\x1aA\xbcI\x0c\xce\xf3\xb3`A0\xc4\xb1n\x97~\x1aA\xfa\xe4au\xf3\xb3`Ap\xb1\xbflP~\x1aAvq\x1b\x95\xf2\xb3`A\x90/L&\x99}\x1aA\xd4\xde\xe0\x13\xf1\xb3`A\xf0\x93\x87\x05\x97}\x1aA\x02\x9a\x08\x11\xf1\xb3`A\xe0\xcc\xccL }\x1aA\x02\x9a\x08\xa1\xf0\xb3`AP\xd6\xc5m\xf8{\x1aA\xf6\xb9\xda\x12\xf2\xb3`A`\x19\xe2X\\{\x1aA.\xa9\x13\xc8\xf4\xb3`AP\xd1\x91\\Tz\x1aA\nh"@\xfc\xb3`A@\xfd\xf6u\xe0y\x1aA\xe8\xfb\xa9\xd3\xfd\xb3`Ap\xd3\xbcc\x8cy\x1aA\x8a\x8e\xe4\xca\xfc\xb3`A\x90\x18\x04V\x8cx\x1aA\xce\x19Qd\xf6\xb3`A\x90\xd4\thGw\x1aA\xc0\xca\xa1\xa3\xf2\xb3`A@\\\x8f\xc2\x83u\x1aA\xf6(\\\xc7\xee\xb3`A\x00)\\\x8fUt\x1aA433\x93\xea\xb3`A\xb0\x08\x1b\x9eWs\x1aA\xfc\xcb\xee\x81\xe7\xb3`A\xa0\xcd\xaaO\x00r\x1aA8\xf8\xc2\x9c\xe6\xb3`A\x90\xd9=y\x10q\x1aA@\x13a\x95\xe6\xb3`A\x90\xfdew\x89n\x1aA\xe8j+X\xf1\xb3`A\xb0\xab\xadX[n\x1aA\x84\xc0\xca\x0f\xf7\xb3`A\xb0#\xb9|xn\x1aAZ\xf5\xb9P\xf8\xb3`AP\x99*X\x10o\x1aA\nF%\x9b\xfd\xb3`A\xf0\xce\xf7Slo\x1aA\x04o\x81`\x0c\xb4`A\xd0\x8d\x06p`o\x1aAl\t\xf9\x14\x19\xb4`A\xb0\xc8v~\\p\x1aAp\xf0\x853&\xb4`Ap\x1b\r`\x94q\x1aA\xc8):\x804\xb4`A\x80\xf4\xdbW@r\x1aA\xca\xa1E\xc29\xb4`APb\x10X\x98s\x1aA\x80H\xbfaD\xb4`A\x10q\xac\x0b\xa2s\x1aA\xe4a\xa1\xf8J\xb4`A\xd0\xf5(\\\xb7s\x1aA\xc2\xf5(\xbcP\xb4`A\xd0\xa3p=\xc5s\x1aA\xc2\xf5(<V\xb4`A\x00\x00\x00\x00\xc0s\x1aA"\x85\xeb\x81X\xb4`A\xe0\x7fH\xff\xb7s\x1aA\xda\xa3p\xe1Y\xb4`A0\xa0\x89p\xb8s\x1aA\x8cc].Z\xb4`APR\' \xads\x1aA\xfee\xf7\xbe[\xb4`A\x10\xaeG\xe1\x88s\x1aAr=\n\xf7a\xb4`A \x1f\xf4,zs\x1aAn\xc5\xfe\xcab\xb4`A\xf0\x9c\x11e\\s\x1aAF\x03x\xe9f\xb4`A\xa0\x87\x85Z,s\x1aA\xa2\x80&\xa4l\xb4`A0\xf6\x97]\xe8r\x1aA\xbc\x96\x90\xc3q\xb4`A\xe0V\xecoTo\x1aA\xaa\xcf\xd5\x10\x90\xb4`A\x80|\xd0\xb3\x85n\x1aA\xa8\xc6K\xbb\x96\xb4`A\xd0\xcc\xcc\xcchn\x1aAfff\x16\x98\xb4`A \xaeG!\x04m\x1aA"A\xf1)\xa3\xb4`A@\xff!}\xd4k\x1aA<\x01M\xf4\xac\xb4`A\x80\xebQx\x95k\x1aA\xfa~j\x84\xad\xb4`A\x10\xaeG\xe1\xeej\x1aAH\xe1z\x9c\xb0\xb4`A\xf0\xff\xff\xffzj\x1aA\x00\x00\x000\xb0\xb4`A0\x85\xebQ\xc0h\x1aAR\xb8\x1e5\xa6\xb4`A`\xe1z\x14\x99h\x1aA\xbc\x1e\x85\x9b\xa4\xb4`AP\n\xd7\xa3\\h\x1aA\x9e\x99\x99\xe9\xa0\xb4`A@\xb8\x1e\x85\xf8g\x1aAH\xe1z\xe4\x98\xb4`A@\n\xd7\xa3\x81g\x1aA\x9a\x99\x99\x91\x89\xb4`A\x80X\xa8\xf5vg\x1aA\\m\xc5\xc2\x87\xb4`A\xb0^)K,g\x1aA$\x97\xffz\x85\xb4`A\x00T\xe3%\ng\x1aA\xd2\xde\xe0\x89~\xb4`A`\xb8\x1e\x85qf\x1aA\xda\xa3p\xedu\xb4`A\xd0\xa3p=\x9be\x1aA\xe2z\x14\xceq\xb4`A\x00\xd7\xa3p\xcbd\x1aA\n\xd7\xa3\x98q\xb4`A0\x85\xebQid\x1aA\x90\xc2\xf5Hs\xb4`A\xc0\xf5(\\:d\x1aAR\xb8\x1e\x9ds\xb4`A \x00\x00\x00\xe2c\x1aA\xb8\x1e\x85\xabs\xb4`A\x00R\xb8\x1e\xa3c\x1aAR\xb8\x1e\xa5r\xb4`A\xd0\xa3p=\x8dc\x1aAR\xb8\x1eeq\xb4`AP\xb8\x1e\x85\xc5c\x1aA\x9a\x99\x99aj\xb4`A\x00)\\\x8fUf\x1aA\x90\xc2\xf5pV\xb4`A\xc0\xf5(\\~f\x1aA\xf6(\\\xafU\xb4`A\xc0\xf5(\\\xech\x1aA\xb0G\xe1\xc2O\xb4`A\xf0z\x14\xae\ni\x1aAR\xb8\x1e\x95O\xb4`AP\n\xd7\xa3[j\x1aA\xd8\xa3p\x1dT\xb4`A\x00\xd7\xa3p\xbfj\x1aA\x00\x00\x00hX\xb4`A\x00R\xb8\x1e\xbej\x1aA\x02\x00\x00\xa0Z\xb4`A\x80\x04\xc5O\x9fj\x1aA\x9a\xe6\x1d\x8d[\xb4`A\xf0F\x038\xf9j\x1aA\x10\xe9\xb7K]\xb4`AP\xe1z\x14=k\x1aA\x1e\x85\xeb\xc1]\xb4`A\xe0\xcc\xcc\xcc\x07l\x1aAH\xe1z\x04_\xb4`A0\x85\xebQ0l\x1aA \x85\xeba^\xb4`A\xd0\xcc\xcc\xcc\x18m\x1aA(\\\x8frY\xb4`A\x00)\\\x8f\x83m\x1aAjff\x16W\xb4`A \xaeG\xe1\xe4m\x1aAfff\x86S\xb4`A\x10\x00\x00\x00\x03n\x1aAp=\n_R\xb4`A@\n\xd7\xa3\xf8m\x1aA\xc8\xf5(\xacK\xb4`A\xc0\x1e\x85\xeb\xecm\x1aA\x1e\x85\xebiI\xb4`A0\xe4\x83\xde\xebm\x1aA,\xd4\x9a<I\xb4`Ap\xb5\x15{\xcam\x1aA\x82\xb7@8F\xb4`A\x10\x85\xebQml\x1aAhff\xa62\xb4`A\xf0\xdd\x02\xc9\xfek\x1aAd\xeeZ\xa6-\xb4`A\x90\xd2\xde`|k\x1aA\xd0\xaa\xcfI-\xb4`A\xd0\x8b\xdb(\xb8i\x1aA(\x06\x81\x99-\xb4`A\x00)\\\x8f\x18h\x1aAt=\no0\xb4`A\xf0\xef\x16\x88\xd7g\x1aA\xa8\xc6K\xc51\xb4`A\xf0\xd0"\xdb\xd3e\x1aA\xd0f\xd5\xeb@\xb4`A\x00R\xb8\x1e\x1ae\x1aA\xf6(\\\xefF\xb4`A\xd0\xa3p=\xe8c\x1aA\xf8(\\\xefU\xb4`A`\xe1z\x14\x8ba\x1aA\x90\xc2\xf5\xb8l\xb4`A`\xb8\x1e\x85ka\x1aA\xdc\xa3p\x95l\xb4`A\x00)\\\x8fGa\x1aA\x02\x00\x00hj\xb4`A`\xe1z\x14w`\x1aAp=\n\xb7U\xb4`AP`\xe5\x90\xf3^\x1aA\xea&1,I\xb4`A\x10\xbc\x05Rx]\x1aA\xf2A\xcfZG\xb4`A\xc0PkZp_\x1aA\xe2X\x17\x81[\xb4`A\xc0\x8d\x06p\x90_\x1aA\xfa\\m\xed_\xb4`A\x80QI]\x90^\x1aA2\xbb\'\x05k\xb4`A\xf0\x8c(\xad\x06^\x1aA\x1e\r\xe0\x9fk\xb4`AP\xe1z\x14A]\x1aA\xb8\x1e\x85co\xb4`A \xd7\xa3p\x0f]\x1aA*\\\x8f\nk\xb4`A\xd0\xf5(\\\x1d]\x1aAL\xe1z\xech\xb4`A\xd0\xf5(\\"]\x1aA\n\xd7\xa3xe\xb4`A@\xe1z\x14\xe1\\\x1aA\xb8\x1e\x85\x83\\\xb4`A\xf0\xcc\xcc\xcc\x82\\\x1aAfff\x0eU\xb4`A0w-!\x03\\\x1aA\xd84\xefzL\xb4`A\xa0\xb0\xe1\xa9\x86[\x1aA*\xa9\x13\xcaF\xb4`A\xa0\x8e\xe4\xb2p[\x1aAX9\xb4~F\xb4`A\xb0@\x82b\xb8Z\x1aAL\xa6\njF\xb4`A X9t\x94X\x1aA\xf8\xfd\xd4\x08L\xb4`A\x10\xd7\xa3\xb0\xafX\x1aAD\x82\xe2\x87O\xb4`A@\xe1z\x14\xbaX\x1aA\xb0G\xe1\xc2O\xb4`A\xe0z\x14\xae\xd6X\x1aA\x9c\x99\x99\xb1P\xb4`A\xf0Q\xb8\x1e\x01Y\x1aAp=\n\xd7R\xb4`Ap\x00o\xc1\x03Y\x1aAP\x9d\x802S\xb4`A Zd{ Y\x1aA\xbc\xfc\x87nT\xb4`A\x90\x1fc\xee\x1aY\x1aA\xacW\xcaVV\xb4`A \\\x8f\xc21Y\x1aAp=\noY\xb4`A\xe0\xa3p=\xcfX\x1aA\x90\xc2\xf5\x88g\xb4`A \xaeG\xe1WX\x1aA\x0e\xd7\xa3\xe8j\xb4`A\xa0\xb478NX\x1aA|\x9c\xa2\xf7j\xb4`A\xe09#J\x88W\x1aA\xfa~j\xdau\xb4`A\xa0!\x8eutV\x1aA\xb8@\x82\x8e\x80\xb4`A0\xd0DX<V\x1aA\xc2d\xaa\x1a\x83\xb4`Ap\xd7\x12rlU\x1aA\x10\xc7\xba\xc8\x90\xb4`A\xe0T\xc1h\xbcT\x1aADiob\x9c\xb4`A\xc0\xfc\x87t\x90U\x1aA\xec\xe26j\xaa\xb4`A\xa0?5^8V\x1aA0\x90\xa0d\xae\xb4`A\xf0\x1b|a\xccV\x1aA\xbc\xd1\x00\xc4\xb1\xb4`A\xa0\x06\xf0V\x90W\x1aA\x82\x95CA\xb8\xb4`A\xf0\xf7Sc\xc0W\x1aA\xe2\x02\t\xa0\xba\xb4`A\xd0\x17&SlX\x1aA"\xdb\xf9\x00\xca\xb4`A\xd0T\xc1h\x08X\x1aA\x00"\xfd\xe2\xed\xb4`A\x00r\x8a\x0e\x90W\x1aAr\x1b\r\x10\xf9\xb4`A\xe0z\x14\xaeRW\x1aA\xf6(\\W\xff\xb4`A\x10\xaeG\xe1-W\x1aA\x94\xc2\xf5\xd0\x01\xb5`A\xe0Q\xb8\x1eZV\x1aA\x9a\x99\x99\x89\t\xb5`A\x10\xd7\xa3p@V\x1aA\x94\xc2\xf5\x10\n\xb5`A\xe0\xa3p=\x85U\x1aA\x94\xc2\xf5h\t\xb5`A \xd7\xa3pkU\x1aAR\xb8\x1e\xad\x08\xb5`A \xaeG\xe1IU\x1aA\x90\xc2\xf5\x88\x05\xb5`A\x00\x00\x00\x00DU\x1aA(\\\x8fb\x03\xb5`A\xd0\xcc\xcc\xcc\xc4U\x1aA\xc2\xf5(\xbc\xf2\xb4`A \\\x8f\xc2\tV\x1aAhff\xa6\xee\xb4`A\x10\xd7\xa3p-V\x1aA\x00\x00\x000\xeb\xb4`A\xf0Q\xb8\x1e\x0cU\x1aA\xf6(\\\xc7\xd0\xb4`A\xf0z\x14\xae\'T\x1aA\xb8\x1e\x85\xb3\xaf\xb4`A\x10R\xb8\x1e\x1eT\x1aAR\xb8\x1e\xb5\xad\xb4`A\x90\xf2\xb0\xd0LR\x1aA\xaa\xf1\xd2\xc5\x9e\xb4`A\xb0\xf6\x06_\x04R\x1aA\xe6\x83\x9e\xa3\x9e\xb4`A\x00o\x81\x84\x08O\x1aA\x1a\xd0D2\xa7\xb4`A\xb0PkZpN\x1aA\x98L\x15\x04\xaa\xb4`A\x10\xc3djPM\x1aA\xae\xd8_D\xb0\xb4`A\xc0\xc1\x17f\x1cM\x1aA\x80\xb7@\xea\xb2\xb4`Ap\x1e\x16\xaa#M\x1aA$(~\xd8\xb3\xb4`A@\n\xd7\xa3.M\x1aA\xb8\x1e\x85#\xb4\xb4`AP\xb8\x1e\x85\x8bM\x1aA\xe2z\x14\xf6\xb5\xb4`A\x00{\x14\xaeUN\x1aA\x1e\x85\xeb\xf1\xb9\xb4`A`\xe1z\x14\x9bN\x1aA\xd8\xa3p\xed\xbb\xb4`A`Gr\xf9\xbfN\x1aAl\xbct\x05\xbd\xb4`A\xd0x\xe9f@O\x1aAb\x07\xce\xdf\xbe\xb4`A\x10&S\x85\x8cO\x1aA\xce\x88\xd24\xc6\xb4`A\xd02\xc4qNO\x1aAZ}\xae\xa6\xca\xb4`A\x00{\x14\xae\x89N\x1aAH\xe1z\x04\xe2\xb4`A\xd0\xf5(\\FN\x1aA\xf6(\\\x9f\xe2\xb4`A@\n\xd7\xa3\x05N\x1aAjff\xd6\xe1\xb4`A\xc0\xf5(\\\x92M\x1aA\xe2z\x14\xa6\xdf\xb4`A@\x85\xebQgM\x1aAH\xe1z|\xde\xb4`A@\xe1z\x14aM\x1aA,\\\x8f\x1a\xdd\xb4`A0\\\x8f\xc2\x17M\x1aAR\xb8\x1eu\xda\xb4`A\xd0\xcc\xcc\xcc\xd1L\x1aA\xc2\xf5(<\xd8\xb4`A\x00\xde\x02\tvL\x1aA\x0e\x9c3(\xd6\xb4`A@\x13a\xc32L\x1aA\xdc\x12\xf2\xaf\xd4\xb4`A\xe0\xa3p=\rG\x1aAL\xe1z\xc4\xb8\xb4`A\xd0k\t9\xd0C\x1aA433w\xb9\xb4`A\x00\xd3Mb\xc4C\x1aA\xfc\xa9\xf1\x06\xba\xb4`A\x00\xc3dj`B\x1aA\xb8\xd1\x00d\xbb\xb4`A\xb0i\xde\xf1^B\x1aA\x92\xcb\x7f`\xbb\xb4`A`\n\xd7\xa3\xacA\x1aA\xf6(\\\xd7\xbc\xb4`A0\x85\xebQ\x8bA\x1aAhff&\xbc\xb4`AP\xe1z\x14\xd2@\x1aA\n\xd7\xa3\x98\xb7\xb4`A@333?@\x1aAH\xe1z\xb4\xb2\xb4`A \x85\xebQ:@\x1aA\x1e\x85\xeb\xf9\xb1\xb4`A\xd0\xa3p=S@\x1aA\x1e\x85\xeb\xd9\xb0\xb4`A \x85\xebQ\xa3@\x1aA\x00\x00\x00\xf8\xaf\xb4`A\x00{\x14\xae\xf0@\x1aAp=\n\x17\xb0\xb4`A\x00R\xb8\x1e3A\x1aA\xc2\xf5(\xfc\xaf\xb4`A\xe0\xcc\xcc\xccUA\x1aA\x0c\xd7\xa3\xc0\xaf\xb4`A0\xe1z\x14rA\x1aA\xe2z\x14\xfe\xad\xb4`A \xcb\x10\xc7qA\x1aA\x86Z\xd3\xf6\xad\xb4`A\x80\xebQx\xd0@\x1aA:p\xce\x88\xa9\xb4`A\x80\xc0\xcaaX?\x1aA\xb6.n]\xa3\xb4`A\xc0%\xe4\x83\xdc<\x1aA\xf0\x16HT\x9d\xb4`A\xb03\xa2t\xc4;\x1aA\xf6u\xe0H\x9d\xb4`A\xe0\xac\xfa\\\x8c:\x1aA\x02\xb3{"\xa1\xb4`A\xf0\xbe\x0e\x1c\x06:\x1aAT\x05\xa3\xbe\xa1\xb4`AP\xe1z\x14\xe59\x1aA\xe2z\x14\x0e\xa2\xb4`Ap\xeeZ\x02\xa29\x1aA*\xcb\x103\xa2\xb4`A\xa0C\x8bl\x9c8\x1aA`TRc\xa3\xb4`A0\xc9\xe5\x7f\x184\x1aA\xe26\x1a\x0e\xa6\xb4`A@\x87\x16Y\xdd3\x1aA\xf0\x16H\xce\xa6\xb4`A\x00\xd7\xa3p\xe33\x1aAL\xe1z\\\xa9\xb4`A@\xe1z\x14\t4\x1aA\xb0G\xe1J\xaa\xb4`A`\xb8\x1e\x85\x926\x1aAp=\n?\xb5\xb4`A\xd0\xcc\xcc\xcc/9\x1aA\n\xd7\xa38\xc6\xb4`A\x10R\xb8\x1e[;\x1aA\xb8\x1e\x85\x83\xd5\xb4`A\x10\x00\x00\x00\x98;\x1aAR\xb8\x1ee\xd7\xb4`A\x10\xd7\xa3p\xc0;\x1aA\x90\xc2\xf5`\xd9\xb4`A\x00)\\\x8fS<\x1aA\xb8\x1e\x85\x13\xe1\xb4`A\x10\x00\x00\x00\\<\x1aA\x9a\x99\x99\x91\xe2\xb4`A@*\xa9\xd3+<\x1aA\x84/L\xc6\xe4\xb4`A\x106<}(<\x1aA\xfe\xf6u.\xe5\xb4`A\x10\xfb\xcb.\x1c<\x1aA~\x14\xae}\xe5\xb4`A@\n\xd7\xa3\t<\x1aAp=\nW\xe6\xb4`A\x00\x9d\x11\xa5\xd6;\x1aA`\x98L=\xe7\xb4`A\x80\xf5\xb9Z\xa4;\x1aA\xde$\x06\x81\xe8\xb4`A\xc0\x8f1\xf7\x87;\x1aA\xe0-\x90\xa0\xe8\xb4`A\xf0(\\\x8fU;\x1aA\xc2\xf5(\x84\xe9\xb4`A`\xe1z\x14\xed:\x1aA\x90\xc2\xf5\xb0\xea\xb4`A\x10\x00\x00\x00\xa4:\x1aA\xb8\x1e\x85\xd3\xea\xb4`A\x00\xa1g\xb3\xf29\x1aA^)\xcbb\xea\xb4`A\x90\xc2\xf5hd9\x1aAB\xa4\xdf\x00\xeb\xb4`Ap\x07\xceY\x808\x1aA\xe2\x0b\x93\x7f\xe6\xb4`APW[q\x087\x1aA\xb8\xd1\x00\x8c\xe0\xb4`A@,\xd4ZT5\x1aA,C\x1c}\xda\xb4`A\x10}?u\xc84\x1aA\xd0D\xd8N\xda\xb4`A\xf0\xac\xfa\\N4\x1aA\x06x\x0bF\xdd\xb4`A \xe4\x83^\xac3\x1aAl\xe7\xfb%\xe8\xb4`A\xe0_vO\xac3\x1aAD\xd8\xf0z\xea\xb4`A\xb0\xd4\th\x184\x1aA\xf0\xa7\xc6\x81\xff\xb4`A\xf0\xc9\xc3\x82 5\x1aA\x9a!\x8e\x0f.\xb5`A\x80\xa3\x01\xbcK5\x1aA|a2\x1b2\xb5`Ap\xb8\x1e\x85\xe15\x1aAp=\n/8\xb5`A@333\x867\x1aA\x1e\x85\xeb\xa1E\xb5`A\xe0(\\\x8f\xa37\x1aA\xb8\x1e\x85[G\xb5`AP\xe1z\x14\'8\x1aA\xd8\xa3p\x1dO\xb5`A\x10\xd7\xa3p58\x1aAfff\x16P\xb5`A\xf0Q\xb8\x1e!8\x1aA\xda\xa3pUQ\xb5`A \xd7\xa3p\xb37\x1aAN\xe1z<Q\xb5`AP333Y7\x1aA\x9a\x99\x99\xc9P\xb5`A@333\xab6\x1aA\xb0G\xe1BL\xb5`A\xc0y\xc7ic6\x1aA\xf4JY\xc2I\xb5`A\xd0\xad\xd8_\xa85\x1aA\xb4\xeas!F\xb5`A\xe0\xa3p}\x984\x1aAn\x12\x83\x10A\xb5`A\xa0\x8e\xe4r03\x1aA<#J\xe9A\xb5`A\x80\x85ZS\x882\x1aA\xea\xb7\xaf\xdbG\xb5`A\x80\xe7\xfbi\x002\x1aAT\xc1\xa8\x1eR\xb5`A\x90\xfdewx1\x1aA\xd4Mb\x06U\xb5`A\xb0\x08\x1b^\xec0\x1aA\xe4\xf2\x1f\xfeS\xb5`A\x10\x02+G\xcd0\x1aA\x9a\xb2\x0c\xf7R\xb5`A\xf0\xcc\xcc\xcc\xb50\x1aA\xf6(\\\xafS\xb5`A\xe0\xa3p=\x990\x1aA\xe4z\x14\xc6T\xb5`A\xd0\xf5(\\\x8a0\x1aA\xba\x1e\x85\xb3V\xb5`A0\x85\xebQ\x880\x1aAfff\x9eW\xb5`A \x00\x00\x00\x9e0\x1aA\x00\x00\x00\xe0[\xb5`A\x10\xd7\xa3p\xe40\x1aA\xaeG\xe1\x9ag\xb5`A\xc0\x1e\x85\xeb\xfc0\x1aA\x90\xc2\xf5\x90i\xb5`A`\xf5\xb9\x1aJ2\x1aA\x18?\xc6\x18x\xb5`A\xf0\r\xbe\xb0v2\x1aAr\x8a\x8e\xd0y\xb5`A\xa0\xa2#9\xb22\x1aA\x80\x1d8\xd5{\xb5`A\x00\x9a\x08[\x043\x1aA.\xcb\x10\x1f~\xb5`A\xd0\xee\xc9\x83\xf53\x1aA6\xab>\xef\x80\xb5`A \xd7\xa3pd7\x1aA \x85\xeb\xd1\x88\xb5`A\xe0z\x14\xae\x1f9\x1aAR\xb8\x1e}\x8c\xb5`A@\x85\xebQ\x01;\x1aA\x9a\x99\x99y\x90\xb5`Ap$\x97\x7f\xa3;\x1aA\xeeZB\x14\x91\xb5`A \xb0rh\xc8;\x1aA\xf2c\xcc\xff\x90\xb5`A\x10;pN\x08=\x1aAx\x0b$:\x90\xb5`A\x80Z\xd3|\xf8=\x1aA\x82\xe2\xc7\x10\x87\xb5`A\xf0\xc7\x98;\x01>\x1aA\xe26\x1a\xac\x86\xb5`A\xd0\x1e\x85\xeb*>\x1aAJ\xe1z\\\x81\xb5`A\xd0\x1e\x85\xebP>\x1aA\xc2\xf5(l}\xb5`A0\\\x8f\xc2i>\x1aA\xaeG\xe1\xca{\xb5`A\x10\xd7\xa3p\x1c?\x1aA\x02\x00\x00\xe0u\xb5`AP\xe1z\x14\xacA\x1aA\xe6z\x14\x9eo\xb5`A\x10\xee\xeb\x80\x18B\x1aA\xf2\xd2M>o\xb5`A0\x9c3bLB\x1aA\xcam4\xa4n\xb5`A\xa0W\xcar\xa8F\x1aA\xf8\xc2d,l\xb5`A \x02+\x87\xf1F\x1aA\xd8\x81stl\xb5`A\xd0\xcc\xcc\xcc\x04G\x1aA,\\\x8fZl\xb5`A0\\\x8f\xc27H\x1aA\xf6(\\\xe7h\xb5`AP\xe1z\x14iH\x1aA\n\xd7\xa3(h\xb5`A@\n\xd7\xa3\xdeH\x1aA\x90\xc2\xf5\xa0d\xb5`A0\\\x8f\xc2yI\x1aAfff\xe6b\xb5`A0\\\x8f\xc2\xb4I\x1aA\x9c\x99\x99\xb9b\xb5`AP\xb8\x1e\x85JJ\x1aA\xba\x1e\x853d\xb5`A@\n\xd7\xa3\xd6J\x1aA\x1e\x85\xeb\xa9f\xb5`A\xe0\x1e\x85\xeb\x90K\x1aAhff~l\xb5`A\xe0\xa3p=#L\x1aA\x1e\x85\xeb\xf9s\xb5`AP\xe1z\x14rL\x1aA\xf6(\\\xafy\xb5`A\xd0\xf5(\\\x89L\x1aA\xb8\x1e\x85\x9b{\xb5`AP\n\xd7\xa3\x93L\x1aA\x90\xc2\xf5\x00\x80\xb5`A\xf0\x17\xd6\x1cwL\x1aA\xe2\'\x10d\x89\xb5`AP2]S-L\x1aA\xd87*B\xbd\xb5`A\x0b\x00\x00\x00\xa0\xb9k\t\x08Z\x1aA\xe2\xc7\x98\xd1\x8d\xb4`A@W[15Z\x1aA\x9c\xff\x90\xf4\x8d\xb4`AP\xadi\xde[Z\x1aAJ{\x83\x87\x8e\xb4`A`p\xceHnZ\x1aA \xf4l\x90\x8f\xb4`AP\xf1c\x0cpZ\x1aAN\xd1\x91\xa0\x90\xb4`A\xe0\x1b|aSZ\x1aA\x9c\x99\x99\xe3\x90\xb4`A\xb0\xd64/&Z\x1aARb\x10\x8a\x90\xb4`A \xf4lV\x06Z\x1aA\x8euq\x0f\x90\xb4`APp\xceH\xf7Y\x1aAP@\x13\x05\x8f\xb4`A\xd0\xc3B-\xf2Y\x1aA\x0cq\xac\x11\x8e\xb4`A\xa0\xb9k\t\x08Z\x1aA\xe2\xc7\x98\xd1\x8d\xb4`A*\x00\x00\x00@333\x8d^\x1aA(\\\x8fB\xba\xb4`A\xa0St\xa4\x91^\x1aA\xf6\xdb\xd7W\xbb\xb4`Apq\x1b\r\xdd^\x1aA\x0c=\x9bc\xbf\xb4`A\x00)\\\x8f\x1d_\x1aA\xf6(\\\x1f\xc0\xb4`A\x00{\x14\xae\xb4_\x1aA\x00\x00\x00\xa0\xc4\xb4`A@\xe1z\x14\xd5_\x1aA\xe2z\x14\x96\xc7\xb4`A \x85\xebQ\xe9_\x1aA\x1e\x85\xeb\x01\xca\xb4`A\x00{\x14\xaee`\x1aA\xdc\xa3p\x9d\xdb\xb4`A`\xb8\x1e\x85e`\x1aA\x00\x00\x00\xf8\xdf\xb4`A\xd0\xa3p=\x1d`\x1aA(\\\x8f\x1a\xe5\xb4`A\xc0\x1e\x85\xeb\xf2]\x1aAfff&\xf6\xb4`A\x00)\\\x8f\x7f]\x1aA\x00\x00\x000\xf7\xb4`A\xd0\x1e\x85\xebI]\x1aA\n\xd7\xa3\xd8\xf6\xb4`A\xd0\xf5(\\\x1b]\x1aA\xb0G\xe1\xda\xf5\xb4`A\xf0Q\xb8\x1e\xed\\\x1aAjff\xde\xf2\xb4`A\x00\x00\x00\x00\xd6\\\x1aA\n\xd7\xa3\x10\xf1\xb4`A\xe0\x1e\x85\xebr\\\x1aAT\xb8\x1e\xf5\xdf\xb4`A\x00\x00\x00\x00Z\\\x1aA(\\\x8fb\xda\xb4`A\xe0\xcc\xcc\xcc\xa8\\\x1aA\x90\xc2\xf5\x80\xcf\xb4`AP\xe1z\x14\xfe\\\x1aA\xfa(\\W\xc5\xb4`AP\n\xd7\xa3a]\x1aA\n\xd7\xa3\xc0\xbb\xb4`A\xd0\xa3p=c]\x1aA\xb2G\xe12\xb9\xb4`A \xaeG\xe16]\x1aA\x9a\x99\x99\x19\xaf\xb4`A`\xb8\x1e\x85\x8a\\\x1aAfff&\xa4\xb4`A\xf0\xa3p=A\\\x1aA\x00\x00\x00\xe0\xa0\xb4`AP333\x11\\\x1aA\x92\xc2\xf5\xc8\xa0\xb4`A0\x85\xebQ\xcb[\x1aA\x00\x00\x00\x00\x9f\xb4`A0333n[\x1aA\xaeG\xe1z\x98\xb4`A\xe0z\x14\xae\x87[\x1aA\x9a\x99\x99\x01\x97\xb4`A\x10)\\\x8f\xd1]\x1aAhffn\x97\xb4`A\xf0z\x14\xae\xa6^\x1aA\x1e\x85\xeb\xb1\x98\xb4`A \x85\xebQ\xc9_\x1aA\x92\xc2\xf5p\x9a\xb4`A\xe0\x1e\x85\xeb\xe2_\x1aA\xaeG\xe1\xea\x9a\xb4`AP\\\x8f\xc2\xdc_\x1aA\xd8\xa3p\xbd\x9b\xb4`A0\x85\xebQ\xa4_\x1aA\xaeG\xe1\x02\x9d\xb4`A\xe0\xf5(\\R_\x1aA\x90\xc2\xf5\xf0\x9d\xb4`A0\x85\xebQ:_\x1aA\n\xd7\xa3H\x9d\xb4`A\xd0\xf5(\\\xb4^\x1aA\xb8\x1e\x853\x9d\xb4`AP\xe1z\x14\x97^\x1aA\xb0G\xe1\xfa\x9d\xb4`A \xd7\xa3pf^\x1aA\xda\xa3p-\xa7\xb4`AP\xe1z\x14h^\x1aA\x9e\x99\x999\xad\xb4`A@333\x8d^\x1aA(\\\x8fB\xba\xb4`A\x07\x00\x00\x00\xa0\x11\xa5}\xe4i\x1aA\x1ajM\x93\xe4\xb4`A\x00\xf1\xf4J4j\x1aA\xce\xf7S\x9d\xe5\xb4`A\x80\xae\xb6b\xc4i\x1aA\x9e\xcd\xaa\xa3\xe9\xb4`A`P\xfcXti\x1aA|?5"\xe9\xb4`A\xf0\xb5\x84|pi\x1aA\\\xca2\xb0\xe6\xb4`Ap\x9f\xabm\xbci\x1aA\xa0\xf81H\xe5\xb4`A\xa0\x11\xa5}\xe4i\x1aA\x1ajM\x93\xe4\xb4`A\x15\x00\x00\x00\xf0(\\\x8f\x0fE\x1aA\xba\x1e\x85\x03\xf7\xb4`A \xaeG\xe1\x80D\x1aAJ\xe1z\xb4\xfb\xb4`A \x85\xebQ\xd6B\x1aA\xb8\x1e\x85\xfb\x02\xb5`A0333cA\x1aA\xd8\xa3p\xfd\x03\xb5`A \xaeG\xe1\xea?\x1aA\x94\xc2\xf50\x00\xb5`A@\xe1z\x14\x95?\x1aA.\\\x8f\xb2\xfd\xb4`AP\xe1z\x14\x8f?\x1aAfffv\xfb\xb4`A\xe0z\x14\xae\xb0?\x1aAhff\xde\xf7\xb4`A\xf0(\\\x8f\xd3?\x1aAfffF\xf6\xb4`A\xd0\xa3p=8@\x1aA\xb0G\xe1\xf2\xf1\xb4`AP\xb8\x1e\x85\xbeA\x1aA\xf6(\\\'\xe3\xb4`A\xd0\xf5(\\SB\x1aA\xbc\x1e\x85\x9b\xe0\xb4`A\xc0\x1e\x85\xeb\xa4B\x1aAp=\nO\xe0\xb4`A@\n\xd7\xa3\nC\x1aA\xf6(\\\xf7\xdf\xb4`A\xf0Q\xb8\x1e\x93C\x1aA\xaeG\xe1\x9a\xe2\xb4`A\xe0\xa3p=\xecC\x1aA\x00\x00\x00\xd8\xe4\xb4`A\xc0\x1e\x85\xeb\x15E\x1aA\xe2z\x14\x8e\xec\xb4`A@\xe1z\x14,E\x1aA\x1e\x85\xeb\xe1\xed\xb4`A\x00{\x14\xae9E\x1aA\x1e\x85\xeb\xf9\xef\xb4`A@333%E\x1aA\xd8\xa3p-\xf6\xb4`A\xf0(\\\x8f\x0fE\x1aA\xba\x1e\x85\x03\xf7\xb4`A\n\x00\x00\x00\xa0l\xe7{\xc4P\x1aA`\x98L\xf3\xf8\xb4`A@\xfd\xf6uHR\x1aA`\xfeCl\xf2\xb4`A\x006<}\xdcR\x1aAx-!o\xf6\xb4`A\xa0E\xb6s\xd4R\x1aA\xc4\xa8\xa4\x90\xfb\xb4`A \x93\xa9\x82\xbcR\x1aA\xde\x93\x87\x11\x03\xb5`APU0j\x98R\x1aA\x06\x12\x14\xc5\x03\xb5`A\x80\xd7\x12rXQ\x1aA\x94\x87\x85l\x04\xb5`A\xa0n\x12\x83\xc8P\x1aA\xec\x044S\x02\xb5`AP\xd4\x9af\x90P\x1aA\xd0\xb3Y\xc5\xfc\xb4`A\xa0l\xe7{\xc4P\x1aA`\x98L\xf3\xf8\xb4`A'], [b'\x01\x03\x00\x00\x00\x01\x00\x00\x00\xa4\x00\x00\x00\xc0\xba\xb8M(\xcc\x1aA\x08\xac\x1c\x08Y\xb5`A\xb0\x82QI\xf4\xcd\x1aA\xda\x1b|\xa7X\xb5`A\xd0\xee\xc9C\xc0\xcf\x1aAn4\x80\xa3W\xb5`Ap\xf0\x85I\xf8\xd0\x1aA\xb8\x1e\x85eT\xb5`A\xc0\xe3\x14]l\xd1\x1aA\x9a\x99\x99MR\xb5`A`K\xc8G(\xd2\x1aA<N\xd1CL\xb5`A\xa0\xbb\x96P\x90\xd2\x1aA\x86\xa7W.E\xb5`A\xd02\xc41\xcc\xd2\x1aA\nF%\x9b;\xb5`A \x85\xebQ\xf0\xd2\x1aA\xa0g\xb3\x881\xb5`A\xd0]KHh\xd3\x1aA\x88c]\xde\'\xb5`A\x90\x06\xf0V\xc4\xd4\x1aAb\xa1\xd6\xea\x19\xb5`A`m\xc5>p\xd5\x1aA|\x83/\xfa\x0c\xb5`A Zd;D\xd5\x1aA\x08\xac\x1c\x02\xf9\xb4`A\xa0\xef\xa7F\x0c\xd5\x1aA\xae%\xe4\xa1\xf1\xb4`A\xb0\xeas5\xb4\xd3\x1aAP\x1e\x16\xde\xd6\xb4`A\xd0v\xbe_\xbc\xd2\x1aA\x02\x9a\x08\x11\xc9\xb4`A\xb0\x82QI\xac\xd0\x1aA\xf4\xdb\xd7\x81\xb5\xb4`A\xd0]KHt\xcf\x1aA\xb4\xc8v\x86\xa6\xb4`A c\xeeZx\xcc\x1aA\xac\xad\xd8k\x81\xb4`A\x90\xfde7\xe8\xcb\x1aA\xb6b\x7f\xfbv\xb4`A\x80\x1d8gP\xcb\x1aA\x12\x14?\x92i\xb4`A\xe0a\xa1V\x98\xca\x1aA\x10\x0b\xb5.M\xb4`A\x806\xab>d\xca\x1aA\xd64\xef~5\xb4`A\xb0\x13\xd0D\x08\xcb\x1aA\x92:\x01\xa1\x1c\xb4`A\x80\xf4\xdbW\x18\xcb\x1aA\xfee\xf7\xca\x1a\xb4`A \x97\xffP\xb4\xcb\x1aA\xb2{\xf2\xca\x0f\xb4`A`9\xb4H`\xcc\x1aA\xec\x9e<\xde\x0c\xb4`AP\xa6\nF\x88\xce\x1aA`vO\x84\x08\xb4`A\xe0\xe9\x952\xcc\xd0\x1aA\xda\xac\xfa\xda\x07\xb4`A0<\xbdR\x94\xd4\x1aA"\x1f\xf4\xc4\n\xb4`A\xd0\x12\xf2A@\xd6\x1aA\xc2\x86\xa7]\x0c\xb4`A@%uBd\xd8\x1aA\xea\x044}\x0f\xb4`AP\xfc\x183\xd4\xd9\x1aA\x10X9\xbc\x13\xb4`A`\xcc]K\xc4\xdb\x1aA\x14?\xc6"\x1a\xb4`A\xa0\xcd\xaaO\x10\xdd\x1aA\xc8\x07=\x8b\x1e\xb4`A@\xcffU\xdc\xdd\x1aA\xe26\x1a\xf2\x1f\xb4`ApO\x1eV\xd0\xe0\x1aA,\xd4\x9aJ\x1e\xb4`A\xc0\x05\x12T\xdc\xe1\x1aA\x16\x8cJ\xac\x18\xb4`APR\'`\xbc\xe2\x1aA\x9c3\xa2\xf2\x11\xb4`A\xf0|?5<\xe3\x1aAR\xb8\x1e\x01\x0c\xb4`A\xd0;NQ\xbc\xe3\x1aA\xac\xad\xd8k\x05\xb4`A\xf0\xdb\xd7A<\xe4\x1aAX9\xb4\x04\xf8\xb3`A\xa0\xab\xadX\xbc\xe4\x1aA\xfe\xd4x\xf5\xdf\xb3`Ap\x91\xed<\xf4\xe4\x1aA\xbak\t\x1d\xd5\xb3`A\xd0\xe7j+\xa4\xe4\x1aA\x04\xe7\x8c\xda\xcb\xb3`A\xd0MbP\x04\xe4\x1aA\xb2\x0cq\x90\xc3\xb3`A0\xcd;N\xdc\xe2\x1aAh\xb3\xea\xa5\xbc\xb3`A\xd0v\xbe_\xf0\xe0\x1aA\xa4\x01\xbc\xaf\xb8\xb3`A`\x19\xe2X\xfc\xde\x1aA\xe4\x14\x1d\x93\xb8\xb3`A\x00"\xfd6\x14\xde\x1aA\xfa\xa0g\xc1\xbc\xb3`Ap\x12\x83@\xf4\xdd\x1aAV\x9f\xab\xa3\xc0\xb3`A`\x98LU\xc0\xdd\x1aA&\xc2\x86\x8d\xc4\xb3`A\xf0\xe26ZH\xdd\x1aA\xa4\xdf\xbe2\xc4\xb3`A\xf0\xb7\xafCl\xda\x1aADio\x88\xbf\xb3`A\x10\x1b\x9e^\xc8\xd9\x1aAJ{\x83S\xbd\xb3`A\xc0\x96\x90O\xb8\xd9\x1aAx\x9c\xa2\x87\xb6\xb3`A\xc0K7I8\xda\x1aA\xa0\x89\xb0\xc1\xb1\xb3`AP\x0e-2\x90\xdb\x1aA4\x80\xb7\x1a\xaa\xb3`A\xb0G\xe1:\xb4\xdb\x1aA\xa4p=~\xa7\xb3`A`)\xcbP\x94\xda\x1aAD\xd8\xf0\x06\x9b\xb3`A\xe0O\x8dW\xfc\xd9\x1aA\\ Au\x96\xb3`A\xf0\x16HP\\\xd9\x1aA\xfc\xcb\xee)\x96\xb3`A`\x07\xceY\x90\xd8\x1aA\xdc\xb5\x84\xac\x9e\xb3`A\xb0b\x7fY\xb8\xd7\x1aA\xde\x93\x87S\xb1\xb3`A\xd0\x91\\>T\xd7\x1aA\xf2\xd2M~\xbb\xb3`A \x04VNH\xd7\x1aA4\xef8\x89\xbd\xb3`A\xd0\xb3Y5\xfc\xd6\x1aAp\xf0\x85\xbd\xc0\xb3`A\x10\xf2AO\x88\xd6\x1aAf\x19\xe2\xa8\xc1\xb3`A\x00\xce\x19Q\xf0\xd4\x1aA\x1e\x85\xeb\x03\xb6\xb3`A\xa0N@S\x0c\xd3\x1aA\x8a\xb0\xe1\xa5\x99\xb3`A\xa0W\xca2\xfc\xd2\x1aA\xe0\x9c\x11\x1b\x92\xb3`Ap\xc5\xfe2\x8c\xd3\x1aAx-!\xdb\x8a\xb3`A\xb0\x94eH`\xd5\x1aA*\x18\x95\xa0t\xb3`A@\x94\xf6F\x88\xd6\x1aAN@\x13\th\xb3`A\x80\x83/L\xe0\xd7\x1aAn\x12\x83\xa4W\xb3`A\xb0\xf3\xfdTh\xd8\x1aA\x044\x11lM\xb3`Ap\x8a\x8ed\xa8\xd8\x1aA.n\xa31>\xb3`A`\xfeC:t\xd8\x1aA\xb4Y\xf5\xfb7\xb3`A@>\xe8Y\x18\xd8\x1aA~j\xbc\xf01\xb3`Ap\x91\xed<P\xd7\x1aA\xb2.n\x9b)\xb3`A\x90Std@\xd7\x1aAV0*s#\xb3`A\x10\xbe0Y\xac\xd7\x1aA\x1c|a,\x1e\xb3`A\x80\xd0\xb3Y\xa8\xd8\x1aA\x16\x8cJR\x19\xb3`A0\xdd$FT\xd9\x1aA\xb6\x15\xfb\x03\x15\xb3`A\xd0\x00\xdeBH\xd9\x1aA\xdch\x00i\x11\xb3`A@5^:(\xd8\x1aA\x1a\xe2X\xbb\x04\xb3`A\xe0X\x177\xe8\xd7\x1aA\xaa`T`\x02\xb3`A\xe0\xac\xfa\\H\xd7\x1aA\x84/L0\x02\xb3`A s\xd7R\\\xd6\x1aA c\xee\x90\x04\xb3`A\x90\x0fz6(\xd6\x1aA6^\xba_\x08\xb3`A\x00\xce\x19Q\x9c\xd4\x1aA\x84\rO\xc5\x12\xb3`A\xa0<,T\x80\xd3\x1aA0\x99*\x06\x12\xb3`A \x85\xebQ\xa4\xd1\x1aA,\xf6\x97q\x14\xb3`A\xe0q\x8aN\xcc\xd0\x1aAN@\x13\xcb\x16\xb3`A\x90n\x12C\x9c\xd0\x1aA\nh"<\x1b\xb3`A\xd0\x12\xf2A\x90\xd0\x1aA\x9c\xc4 \x00)\xb3`Apq\x1bMx\xd0\x1aA*\x18\x95\xca.\xb3`A`\xd3\xbcc\x08\xd0\x1aA\x126<\x134\xb3`A\xd0o_G\x10\xcf\x1aA\x04V\x0eI8\xb3`A\x10\x8cJj\xe4\xcc\x1aA\\\xfeC\xd4:\xb3`A`)\xcbPx\xcc\x1aA\xe2\xe9\x95\x8a8\xb3`A\xf0&1H\xec\xc9\x1aA\xb0\x94e ;\xb3`A\xf0s\xb5U\xa0\xc7\x1aA\xbe0\x99LJ\xb3`A\xe0z\x14n\xc8\xc5\x1aA\xa2#\xb9\xb4O\xb3`A\xc0\xf5(\\\x00\xc5\x1aA\x8a\xb0\xe1\xf1N\xb3`A\xb0\xd1\x00^\\\xc4\x1aAF%u\xeaM\xb3`A\xb0G\xe1:\x08\xc2\x1aA\xb6\x84|@O\xb3`A\xa0\xef\xa7F\x04\xc0\x1aA\xd8_vGR\xb3`Ap\xdeqJ\xc8\xbf\x1aA\xa0\xab\xad\x02S\xb3`A\x80a2Up\xba\x1aA\xcc\xee\xc9\xa3j\xb3`A\xb0\xc8v>\xf4\xb9\x1aA\xc2\x17&\x81r\xb3`A\xc0t\x93X0\xba\x1aA|\xf2\xb0&{\xb3`A\xf0\xeb\xc09\x14\xbd\x1aA\xe8\xfb\xa9\x9d\x95\xb3`A@\xbdRV\x14\xbe\x1aA:p\xce\xae\x9c\xb3`A\xc0\xdc\xb5D\x10\xbf\x1aA\x16jM\xbb\xa1\xb3`APR\'`p\xc0\x1aA\x92\xcb\x7ft\xa5\xb3`A\x80\xd0\xb3Y\xfc\xc0\x1aAN@\x13\x07\xa5\xb3`AP\xe3\xa5[\xc0\xc1\x1aA\xf2\x1f\xd2\xd3\xac\xb3`A\x90\xed|?\xa8\xbf\x1aA(\\\x8f\x1a\xca\xb3`A0\\\x8fB`\xbd\x1aAP\xaf\x94\x9b\xd1\xb3`Ap\x9c\xa2c\xc0\xbc\x1aA8\xf8\xc2\xb4\xd2\xb3`A\xd0MbP\xf4\xb9\x1aA\xe6?\xa4c\xcb\xb3`A\xd0\x19QZ\xe0\xb8\x1aA\xd0\xb3Y\x91\xc4\xb3`A0\xf6\x97]\xe8\xb8\x1aA\x9e\x80&\xe8\xbe\xb3`Ap\x1b\r`\xb0\xb8\x1aA\xf2\x1f\xd2\xcf\xb8\xb3`ApO\x1eV\x04\xb8\x1aA\xa85\xcdm\xb3\xb3`A\xc0\xe3\x14]d\xb5\x1aA\xd4\x9a\xe6\xb1\xa4\xb3`AP\x9f\xabm\x98\xb4\x1aA\xb4Y\xf5\xf1\xa3\xb3`A@\x13aC\xa8\xb2\x1aA\xb4\xeas\xbd\xa6\xb3`A\x80\xf4\xdbWd\xb2\x1aA\xfeC\xfa\xc9\xaa\xb3`A\xc0\xba\xb8MP\xb2\x1aAx\x0b$\x86\xce\xb3`AP\x15\x8cJx\xb2\x1aA\xc2d\xaa\xc0\xe1\xb3`A@\x03xKH\xb3\x1aA\xbc\x05\x12\\\xf5\xb3`A0\xab>W\x8c\xb3\x1aA\xd2o_C\xfa\xb3`A\xf0H.?\xec\xb4\x1aA\x0c\x93\xa9@\x07\xb4`A\x00M\x84M\xe0\xb6\x1aA\xb4\xc8v\xea\x18\xb4`A\xc0\xd3+e\xc8\xb7\x1aA\x1c\xeb\xe2\x90\x1d\xb4`A\x80j\xbc4h\xb8\x1aAN@\x13\x1b\x1d\xb4`A\xf0H.?\xb4\xb8\x1aA`vO\x9a\x1b\xb4`A\x00+\x87V,\xb9\x1aA\x86Z\xd3j\x1b\xb4`A\xf0u\xe0\\\xac\xb9\x1aA\x9e^)\xf3\x1e\xb4`A\x80\x04\xc5O\xdc\xb9\x1aA8gD\xc7#\xb4`A\x80\xb7@BD\xba\x1aA>\n\xd7\x037\xb4`A\x80\x16\xd9NX\xbb\x1aA c\xee\x80|\xb4`A\xe0\x83\x9eM\xb8\xbb\x1aA\x80\xb7@\x80\x9d\xb4`A`\xf7\xe4a\xcc\xbb\x1aA\x88\xd2\xdeP\xa6\xb4`A\x10\xc7\xba8\xa0\xbb\x1aA\x1aQ\xda{\xae\xb4`A\x10\x83\xc0J\x08\xbb\x1aATR\'\x80\xc3\xb4`A\xa0\nFeP\xba\x1aA\xba\xda\x8a\xd1\xca\xb4`A\xf0A\xcff\x0c\xba\x1aA\x80H\xbf\xad\xd0\xb4`A0e\x19b\x88\xb9\x1aA\x80H\xbf\xd1\xdc\xb4`A\xe0\xd0"[\xe0\xb8\x1aA\xa2E\xb6\xc7\xf3\xb4`A\xa0\xbd\xc1W\xac\xb8\x1aA\xce\xaa\xcfo\x00\xb5`A \xe2XW\xe4\xb8\x1aA\x14a\xc3\xed\x19\xb5`A`\x17\xb7Q\x08\xba\x1aA\xfa\x0f\xe9\x071\xb5`A\xe0\xf2\x1fRP\xbb\x1aAx-!\xe3<\xb5`A@\x9bU_|\xbd\x1aA\x84/L0M\xb5`A\x80\xc0\xcaa\xa0\xc2\x1aA\xdeq\x8a4l\xb5`A\xf0\x044Q<\xc5\x1aA\xb2\x0cqLp\xb5`A\xd0]KH\x94\xc6\x1aA\xea\x044_q\xb5`A lx:\x80\xc7\x1aA\xd2Mb\xa0o\xb5`A\xf0\x06_Xl\xc9\x1aA\xde$\x06\xefj\xb5`A\xe0\x02\tJ`\xcb\x1aA\xaei\xde\xa5a\xb5`A\xc0\xba\xb8M(\xcc\x1aA\x08\xac\x1c\x08Y\xb5`A', b'\x01\x03\x00\x00\x00\x01\x00\x00\x00\xc9\x00\x00\x00\xb0\x82Q\t\xa4\xcb\x1aA@\xa4\xdf\xf0\x10\xb4`A \x97\xffP\xb4\xcb\x1aA\xb2{\xf2\xca\x0f\xb4`Apq\x1b\r\xe9\xcb\x1aA\xd0\xb3Y\xe5\x0e\xb4`A\xf0(\\\x8f|\xcc\x1aAfff\x86\n\xb4`A\xc0\xf5(\\\xda\xcc\x1aA\xf6(\\W\t\xb4`A\x00\x00\x00\x00.\xcf\x1aA\xf6(\\\xe7\x03\xb4`A@\n\xd7\xa3\xea\xcf\x1aA\xb8\x1e\x85;\x03\xb4`A\xf0Q\xb8\x1e:\xd4\x1aA>\n\xd7\x1b\x06\xb4`A0\\\x8f\xc2-\xd5\x1aA\x14\xaeGa\x07\xb4`A\xc0\x1e\x85\xeb\xa6\xd8\x1aA\x9a\x99\x99\xa1\r\xb4`A@\n\xd7\xa3\x08\xd9\x1aA\x9a\x99\x99\xb9\x0e\xb4`A\x00\x00\x00\x00\xc0\xd9\x1aA\x9a\x99\x99\xa1\x11\xb4`A\x10\xaeG\xe1\x95\xdb\x1aAfffn\x19\xb4`A\xd0\x9a\xe6]\xa1\xdb\x1aAhDi\xaf\x19\xb4`A`\xcc]K\xc4\xdb\x1aA\x14?\xc6"\x1a\xb4`A\xa0\xcd\xaaO\x10\xdd\x1aA\xc8\x07=\x8b\x1e\xb4`A@\xcffU\xdc\xdd\x1aA\xe26\x1a\xf2\x1f\xb4`A\x80\xa7W\xca\xe3\xdf\x1aA\xe4\x14\x1d\xcf\x1e\xb4`A 8gD\xfb\xe0\x1aA\xa0\xf81d\x1d\xb4`A\xc0\x05\x12T\xdc\xe1\x1aA\x16\x8cJ\xac\x18\xb4`APR\'`\xbc\xe2\x1aA\x9c3\xa2\xf2\x11\xb4`A\xf0|?5<\xe3\x1aAR\xb8\x1e\x01\x0c\xb4`A\xd0;NQ\xbc\xe3\x1aA\xac\xad\xd8k\x05\xb4`A\xf0\xdb\xd7A<\xe4\x1aAX9\xb4\x04\xf8\xb3`A\xb0\xf3\xfdT\x8e\xe4\x1aAt\x93\x18\x9a\xe8\xb3`A\xd0\xa3p=\xc3\xe3\x1aA\xecQ\xb8\xf6\xdc\xb3`A\x00\x00\x00\x00\x97\xe3\x1aA\xcc\xcc\xcc\x8c\xd1\xb3`A\x10\xaeG\xe1\x9d\xe3\x1aA\xd8\xa3p\xd5\xcd\xb3`A0333\xc3\xe3\x1aA\x14\xaeG\x89\xca\xb3`A`)\xcb\x90,\xe4\x1aA\xf0\x85\xc9\xa6\xc5\xb3`A\xd0MbP\x04\xe4\x1aA\xb2\x0cq\x90\xc3\xb3`A0\xcd;N\xdc\xe2\x1aAh\xb3\xea\xa5\xbc\xb3`A\x00\xe7\x8c(\xb6\xe1\x1aA\x00\x91~G\xba\xb3`A\xe0z\x14\xae8\xe1\x1aA\xa4p=\n\xbc\xb3`AP\xb8\x1e\x85\xb2\xe0\x1aAR\xb8\x1em\xbf\xb3`A\xc0\xf5(\\p\xdf\x1aA\x1e\x85\xeb\x11\xcb\xb3`A\xc0\x1e\x85\xeb\xc3\xde\x1aAR\xb8\x1eU\xd0\xb3`A0\\\x8f\xc2d\xdc\x1aA\xe2z\x14\x8e\xc8\xb3`A\x10\xd7\xa3pC\xdc\x1aA\n\xd7\xa3\x10\xc8\xb3`AP\xb8\x1e\x85k\xdb\x1aAR\xb8\x1eE\xc3\xb3`A0\\\x8f\xc2A\xdb\x1aAz\x14\xae\'\xc2\xb3`A\x10\xa5\xbd\xc1!\xdb\x1aA\xdc\xb5\x84\xb0\xc0\xb3`A \xc9\xe5\xff\x81\xda\x1aAf\xf7\xe4\xab\xbf\xb3`A\xf0(\\\x8f\x0b\xda\x1aA\xaeG\xe1*\xc0\xb3`A0333\x11\xd7\x1aA\xaeG\xe1:\xc1\xb3`A\x90\xd2\xde`\xf8\xd6\x1aA\x16jM\xc5\xc0\xb3`A\x10\xf2AO\x88\xd6\x1aAf\x19\xe2\xa8\xc1\xb3`A\x00\xce\x19Q\xf0\xd4\x1aA\x1e\x85\xeb\x03\xb6\xb3`A\xa0N@S\x0c\xd3\x1aA\x8a\xb0\xe1\xa5\x99\xb3`A0\xcd;N\x04\xd3\x1aA4\xa2\xb4\xe5\x95\xb3`A\x10\xd7\xa3p\xff\xd2\x1aA\xb8\x1e\x85\xa3\x95\xb3`A\xf0Q\xb8\x1e\xcf\xd2\x1aA\n\xd7\xa3\xd8\x92\xb3`A\xc0\x1e\x85\xeb\xc5\xd2\x1aA433\x13\x91\xb3`A0333\xdb\xd2\x1aA\x1e\x85\xebQ\x8f\xb3`A\xc0\x05\x12\xd4\x04\xd5\x1aA\x1e8g\xf8x\xb3`A\xb0\x94eH`\xd5\x1aA*\x18\x95\xa0t\xb3`A@\x94\xf6F\x88\xd6\x1aAN@\x13\th\xb3`A\x80\x83/L\xe0\xd7\x1aAn\x12\x83\xa4W\xb3`A\xe0h\x00/K\xd8\x1aA2\xc4\xb1\x9cO\xb3`A0\\\x8f\xc2`\xd8\x1aAfffnH\xb3`AP\xb8\x1e\x85d\xd8\x1aA\xf6(\\\xa7=\xb3`A \x85\xebQ]\xd8\x1aA(\\\x8f\x1a<\xb3`A@\x03xK\xf7\xd7\x1aA\x18\x04V\x900\xb3`Ap\x91\xed<P\xd7\x1aA\xb2.n\x9b)\xb3`A\x90Std@\xd7\x1aAV0*s#\xb3`A\xc0\xc1\x17&o\xd7\x1aAR\x96!*!\xb3`A\xd0\xa3p=g\xd7\x1aAR\xb8\x1eE \xb3`A@\n\xd7\xa3\\\xd6\x1aA\x9a\x99\x99\x91\x13\xb3`A\xd0+e\xd9\x9c\xd4\x1aA\xec/\xbb\xc1\x12\xb3`A\x00\xce\x19Q\x9c\xd4\x1aA\x84\rO\xc5\x12\xb3`Ap\x12\x83\x00\x8a\xd4\x1aA\x90~\xfb\xb8\x12\xb3`AP\x9d\x80\xe6`\xd3\x1aA*\xcb\x10/\x12\xb3`A\xc0\'\x0f\x8b\x15\xd2\x1aA8\x89A\xde\x13\xb3`A \x85\xebQ\xa4\xd0\x1aA\x86\xebQ\xe0%\xb3`A0\\\x8f\xc2\x97\xd0\x1aA\\\x8f\xc2\r\'\xb3`A\xe0z\x14\xae\xc8\xd0\x1aA\x00\x00\x00\xb0,\xb3`A\x10\xaeG\xe1\xe7\xd0\x1aA\x1e\x85\xebI.\xb3`A\xf0Q\xb8\x1e\xae\xd0\x1aA(\\\x8f\x8a0\xb3`A\xc0\xf5(\\#\xd0\x1aA\x9a\x99\x99\xb94\xb3`A\xc0\xf5(\\?\xcf\x1aA\xc2\xf5(\\8\xb3`A\xf0Q\xb8\x1e\n\xcf\x1aA\n\xd7\xa3\x009\xb3`A\xc0\xf5(\\\x8a\xcd\x1aAp=\n\xb7<\xb3`A\x80&\xc2\x86\xed\xcb\x1aAj\xbct\x179\xb3`A\xd0\x7fH\xffS\xcb\x1aA\x82QI\xb39\xb3`A\xf0Q\xb8\x1e)\xc9\x1aA\xcc\xcc\xcc$D\xb3`A\xc0\xf5(\\\x8f\xc8\x1aA\xc2\xf5(\xbcH\xb3`A0\\\x8f\xc2S\xc8\x1aAR\xb8\x1e\xf5J\xb3`A\xe0z\x14\xae\xcb\xc6\x1aAfff^O\xb3`AP\xb8\x1e\x85\xd9\xc5\x1aA\x14\xaeG\xe1O\xb3`A\x10\xd7\xa3p\xc0\xc4\x1aA\x9a\x99\x99\x01P\xb3`A0\\\x8f\xc2\xd5\xc3\x1aA\x1e\x85\xeb1Q\xb3`A\x00\x00\x00\x00\r\xc1\x1aA\xe2z\x14FY\xb3`A0\\\x8f\xc2\x94\xbd\x1aA\n\xd7\xa3\x18a\xb3`A\xf0Q\xb8\x1e0\xbd\x1aA\xc2\xf5(\x9ca\xb3`A\xc0\x1e\x85\xeb\xf7\xbc\x1aA\x9a\x99\x999b\xb3`A\xc0\xf5(\\\x1f\xbb\x1aA\x14\xaeG\x01o\xb3`A\x10\xaeG\xe1g\xba\x1aAR\xb8\x1e}|\xb3`A\x90\xa9\x82\xd1\xa0\xba\x1aA*\x18\x95,\x7f\xb3`A\xf0\xeb\xc09\x14\xbd\x1aA\xe8\xfb\xa9\x9d\x95\xb3`A@\xbdRV\x14\xbe\x1aA:p\xce\xae\x9c\xb3`A\xc0\xdc\xb5D\x10\xbf\x1aA\x16jM\xbb\xa1\xb3`APR\'`p\xc0\x1aA\x92\xcb\x7ft\xa5\xb3`A\x80\xd0\xb3Y\xfc\xc0\x1aAN@\x13\x07\xa5\xb3`A\x80sF\xd4R\xc1\x1aAL\xa6\nx\xa8\xb3`A\xc0\x1e\x85\xeb2\xc2\x1aA\xc2\xf5(\xf4\xa6\xb3`A\x00\x00\x00\x00\xe8\xc2\x1aA\xe2z\x14\x16\xa4\xb3`A\xd0\xcc\xcc\xcc\x91\xc3\x1aA>\n\xd7;\xa1\xb3`A\x10\xaeG\xe1K\xc3\x1aA\x86\xebQ\xe8\xab\xb3`A\x00\x00\x00\x00/\xc3\x1aA\n\xd7\xa3\x90\xae\xb3`AP\xb8\x1e\x85n\xc2\x1aA\xc2\xf5(\x94\xb7\xb3`A@\n\xd7\xa3\xc1\xc0\x1aAR\xb8\x1eM\xcb\xb3`A\xd0\xa3p=\x12\xc0\x1aA\n\xd7\xa3\xf8\xcf\xb3`AP\xb8\x1e\x85\n\xbf\x1aA\x9a\x99\x99\xd9\xd5\xb3`A\xc0\xf5(\\x\xbd\x1aA\xe2z\x14\x1e\xd8\xb3`A\xc0\xf5(\\\xcc\xbc\x1aAH\xe1z\xb4\xd6\xb3`A\xe0z\x14\xae-\xba\x1aA\xc2\xf5(d\xcd\xb3`A\x00o\x81\xc4\x9a\xb9\x1aA\x00"\xfd,\xc9\xb3`A\xd0\x19QZ\xe0\xb8\x1aA\xd0\xb3Y\x91\xc4\xb3`A0\xf6\x97]\xe8\xb8\x1aA\x9e\x80&\xe8\xbe\xb3`Ap\x1b\r`\xb0\xb8\x1aA\xf2\x1f\xd2\xcf\xb8\xb3`ApO\x1eV\x04\xb8\x1aA\xa85\xcdm\xb3\xb3`A\xc0\xe3\x14]d\xb5\x1aA\xd4\x9a\xe6\xb1\xa4\xb3`A\xb0`T\x92\xad\xb4\x1aA\x88\xf4\xdb\x05\xa4\xb3`A\xf0(\\\x8fh\xb2\x1aA\x9a\x99\x991\xab\xb3`A\xb0\xf1\xd2\rd\xb2\x1aA A\xf1M\xab\xb3`A\x90~\xfb\xfa^\xb2\x1aAx\x0b$Z\xb4\xb3`A\xf0(\\\x8f\xa3\xb2\x1aA(\\\x8f\x8a\xb5\xb3`A\xf0(\\\x8f\xfc\xb2\x1aAp=\n\'\xc9\xb3`A\xd0\xcc\xcc\xcc\xfe\xb2\x1aA\xe2z\x14N\xca\xb3`A\x00\x00\x00\x00\xe6\xb2\x1aA\x86\xebQ\x00\xcf\xb3`A\xd0\xa3p=\xca\xb2\x1aA\xa4p=Z\xcf\xb3`A@\xe1z\x14\x9e\xb2\x1aA\xaeG\xe1\xaa\xe0\xb3`A\xf0(\\\x8f\xb6\xb2\x1aA\xd8\xa3p\r\xe7\xb3`A\x00\x00\x00\x00i\xb3\x1aAH\xe1z\xcc\xf5\xb3`A\x90St$9\xb4\x1aA\xa4p=\xa4\x00\xb4`A\xf0H.?\xec\xb4\x1aA\x0c\x93\xa9@\x07\xb4`A\x90\xdbh\x80E\xb5\x1aA\\\x8f\xc2g\n\xb4`AP\xb8\x1e\x85\x11\xb7\x1aA\xe2z\x14~\x17\xb4`A\x10\xaeG\xe1\x92\xb7\x1aA\x9a\x99\x99A\x1a\xb4`A\x00\xa1g\xb3/\xb8\x1aA\x10\xc7\xbaD\x1d\xb4`A\x80j\xbc4h\xb8\x1aAN@\x13\x1b\x1d\xb4`A\xf0H.?\xb4\xb8\x1aA`vO\x9a\x1b\xb4`A\x00+\x87V,\xb9\x1aA\x86Z\xd3j\x1b\xb4`A\x90\xdbh\xc0\x9d\xb9\x1aAF\xb6\xf3\x8b\x1e\xb4`A\xd0\xcc\xcc\xccN\xba\x1aA\xd8\xa3p}\x1f\xb4`A\x00\x00\x00\x00\x88\xba\x1aA\xf6(\\\xcf \xb4`A\x00\x00\x00\x00\xc7\xba\x1aA\xc2\xf5(\xf4#\xb4`A\xd0\xcc\xcc\xccP\xbb\x1aAR\xb8\x1e\r5\xb4`AP\xb8\x1e\x85T\xbb\x1aA(\\\x8f\x82=\xb4`A\xd0\xcc\xcc\xcc\x1e\xbb\x1aAfffv<\xb4`A\x10\xaeG\xe1\xad\xba\x1aAH\xe1zdA\xb4`A\x00\x00\x00\x00\xa0\xba\x1aA\x1e\x85\xebiC\xb4`A\xf0(\\\x8f_\xbb\x1aA\x90\xc2\xf5\xa0e\xb4`AP\xb8\x1e\x85.\xbc\x1aA\xaeG\xe1\xc2\x80\xb4`A0333|\xbc\x1aA\xf6(\\\xef\x87\xb4`A \x85\xebQ\x11\xbd\x1aAH\xe1z<\xa7\xb4`A\x00\x00\x00\x00#\xbd\x1aA(\\\x8f\xc2\xaf\xb4`A\xe0z\x14\xae\x19\xbd\x1aA\xb8\x1e\x85\x83\xb3\xb4`A\xd0\xcc\xcc\xcc\x1e\xbd\x1aA\x90\xc2\xf5 \xbc\xb4`A\xe0z\x14\xae>\xbd\x1aA\x9a\x99\x99\xd9\xc0\xb4`A\x10\xd7\xa3p&\xbe\x1aAR\xb8\x1e\r\xc8\xb4`A\xe0z\x14\xae\xae\xbe\x1aA\xe2z\x14f\xc7\xb4`A@\n\xd7\xa3\xfa\xbe\x1aA\x90\xc2\xf5\xa0\xc5\xb4`A\xc0\x1e\x85\xebG\xbf\x1aAR\xb8\x1e\xd5\xc5\xb4`A\x00\x00\x00\x00\xad\xbf\x1aA\xe2z\x14\xd6\xc6\xb4`A\x00\x00\x00\x00$\xc0\x1aAp=\n?\xc9\xb4`A@\xe1z\x14r\xc0\x1aA\xe2z\x14\xee\xca\xb4`A\xf0Q\xb8\x1e\xc3\xc1\x1aA\xf6(\\\x07\xda\xb4`A\xc0\xf5(\\X\xc2\x1aA\x9a\x99\x99\x19\xe2\xb4`A\x00\x00\x00\x00\x81\xc2\x1aAR\xb8\x1e5\xe8\xb4`A@\xe1z\x14\xc6\xc2\x1aA\x1e\x85\xeb!\xef\xb4`A\x10\xaeG\xe1\x8d\xc3\x1aAfffV\xfc\xb4`A@\xe1z\x14\x95\xc4\x1aA\n\xd7\xa3\xd0\x03\xb5`A\xc0\x1e\x85\xeb\x0c\xc5\x1aA\xf6(\\\x97\x01\xb5`A\xf0Q\xb8\x1e\xb2\xc6\x1aA\xc2\xf5(l\xf9\xb4`A@\xe1z\x14\x10\xc7\x1aA\xc2\xf5(\xac\xf6\xb4`A0333u\xc8\x1aA\xf6(\\\xdf\xe8\xb4`A \x85\xebQ\xfe\xc8\x1aA\x1e\x85\xeb\xd1\xe1\xb4`A\x10\xaeG\xe1M\xc9\x1aA\xaeG\xe1\x02\xdf\xb4`A\xc0\xf5(\\\x90\xc9\x1aA\xe2z\x14\xce\xdd\xb4`A\x10\xaeG\xe1T\xca\x1aA\xc2\xf5(\xcc\xdb\xb4`A\x10\xd7\xa3p\xcf\xca\x1aA\xaeG\xe1r\xdb\xb4`A\xe0z\x14\xae\x81\xcb\x1aA\xe2z\x14>\xda\xb4`A\xe0z\x14\xaeZ\xcc\x1aA\xe2z\x14^\xd5\xb4`A\xd0\xcc\xcc\xcc\x9a\xcd\x1aA\xf6(\\\xbf\xcc\xb4`AP\xb8\x1e\x85\x9f\xce\x1aA\xb8\x1e\x85\xb3\xc2\xb4`A\xe0z\x14\xae\xac\xce\x1aA\xb8\x1e\x85\xdb\xc1\xb4`A0333\xb5\xce\x1aAR\xb8\x1e\xb5\xb7\xb4`A\xc0\xf5(\\\x9d\xce\x1aA\x00\x00\x00\x08\xb3\xb4`A\xd0\xa3p=\xf1\xcd\x1aA\xf6(\\\x97\x9e\xb4`A\xd0\xa3p=M\xcd\x1aA\x90\xc2\xf5x\x91\xb4`A\x00\x00\x00\x00\xf1\xcc\x1aAfff6\x8d\xb4`A\x10\xd7\xa3p\x18\xcc\x1aA\x9a\x99\x99)\x84\xb4`A\x00\x00\x00\x00E\xcb\x1aA\xb8\x1e\x85S{\xb4`A\x00\x00\x00\x00\xec\xca\x1aA\n\xd7\xa3Pt\xb4`A\xf0(\\\x8f\xa1\xca\x1aA\n\xd7\xa3(X\xb4`A\xf0Q\xb8\x1eD\xca\x1aAR\xb8\x1e]0\xb4`A\x00\x00\x00\x00J\xca\x1aA(\\\x8fZ*\xb4`A\xd0\xa3p=\x0f\xcb\x1aA\x90\xc2\xf5 \x1b\xb4`A@\n\xd7\xa3\x95\xcb\x1aA\xe2z\x14^\x11\xb4`A\xb0\x82Q\t\xa4\xcb\x1aA@\xa4\xdf\xf0\x10\xb4`A', b'\x01\x03\x00\x00\x00\x01\x00\x00\x00\xbd\x00\x00\x00 \x85\xebQ\x11\xbd\x1aAH\xe1z<\xa7\xb4`A u\x02\xda\x14\xbd\x1aA\xf6\x06_\xf0\xa8\xb4`A\xa0\x80&B\x05\xbe\x1aA\x10\xe9\xb7o\xa7\xb4`A\xf0\x95\xb2L\x99\xbe\x1aA\xb47\xf8\x04\xb1\xb4`A\xf0\x16H\x10M\xbf\x1aAX9\xb4P\xb5\xb4`A0\xdd$F@\xc0\x1aA\xae\xd8_\xb0\xb0\xb4`A`\xcc]K\x8a\xc0\x1aA\xdeq\x8a\x00\xb3\xb4`A\x00\xf0\x16\xc8]\xc1\x1aA\xb47\xf8\x04\xb1\xb4`A`\xd5\xe7jF\xc2\x1aAt\xb5\x15\xa3\xb6\xb4`A\xa0L\x15\xcc\x98\xc3\x1aA|a2A\xbc\xb4`A\xd0\xc3B-\xeb\xc4\x1aA\x06\xa3\x92\xae\xd7\xb4`A\x10\x8a\x1fc\xde\xc5\x1aA\x8c(\xed\xa7\xda\xb4`A\xe0\x9c\x11\xe5\xfb\xc6\x1aAv\xbe\x9f`\xd4\xb4`A\xa0\xe6\x1dg\x19\xc8\x1aA\xe8\xd9\xac\x12\xd1\xb4`A\xb07\xf8\xc2!\xc9\x1aA\xb0\x94e$\xc9\xb4`A0<\xbd\xd2\xff\xc9\x1aA\xca\xc3B-\xc5\xb4`Ap\x02\x9a\x08\xf3\xca\x1aA\xa8\xe8H\x86\xc3\xb4`A\x10\xd7\xa3\xb0%\xcc\x1aA\x12\xa5\xbd\xe3\xbf\xb4`A\xd0\x19Q\x9a\xee\xcc\x1aA\x90~\xfb>\xbd\xb4`A /\xdd\xa4\x82\xcd\x1aA\xd8\x12\xf2\xab\xb2\xb4`A\xd0\xa1E\xf6\xf6\xcd\x1aA\n\x8a\x1f\x1b\xa7\xb4`A@Gr\xf9\x18\xce\x1aA>\x9bUO\xa3\xb4`A\xd0\xa3p=\xf1\xcd\x1aA\xf6(\\\x97\x9e\xb4`A\xd0\xa3p=M\xcd\x1aA\x90\xc2\xf5x\x91\xb4`A\x00\x00\x00\x00\xf1\xcc\x1aAfff6\x8d\xb4`A\x10\xd7\xa3p\x18\xcc\x1aA\x9a\x99\x99)\x84\xb4`A\x00\x00\x00\x00E\xcb\x1aA\xb8\x1e\x85S{\xb4`A\x00\x00\x00\x00\xec\xca\x1aA\n\xd7\xa3Pt\xb4`A\xf0(\\\x8f\xa1\xca\x1aA\n\xd7\xa3(X\xb4`A\xf0Q\xb8\x1eD\xca\x1aAR\xb8\x1e]0\xb4`A\x00\x00\x00\x00J\xca\x1aA(\\\x8fZ*\xb4`A\xd0\xa3p=\x0f\xcb\x1aA\x90\xc2\xf5 \x1b\xb4`A@\n\xd7\xa3\x95\xcb\x1aA\xe2z\x14^\x11\xb4`A\xb0\x82Q\t\xa4\xcb\x1aA@\xa4\xdf\xf0\x10\xb4`A \x97\xffP\xb4\xcb\x1aA\xb2{\xf2\xca\x0f\xb4`Apq\x1b\r\xe9\xcb\x1aA\xd0\xb3Y\xe5\x0e\xb4`A\xf0(\\\x8f|\xcc\x1aAfff\x86\n\xb4`A\xc0\xf5(\\\xda\xcc\x1aA\xf6(\\W\t\xb4`A\x00\x00\x00\x00.\xcf\x1aA\xf6(\\\xe7\x03\xb4`A@\n\xd7\xa3\xea\xcf\x1aA\xb8\x1e\x85;\x03\xb4`A\xf0Q\xb8\x1e:\xd4\x1aA>\n\xd7\x1b\x06\xb4`A0\\\x8f\xc2-\xd5\x1aA\x14\xaeGa\x07\xb4`A\xc0\x1e\x85\xeb\xa6\xd8\x1aA\x9a\x99\x99\xa1\r\xb4`A@\n\xd7\xa3\x08\xd9\x1aA\x9a\x99\x99\xb9\x0e\xb4`A\x00\x00\x00\x00\xc0\xd9\x1aA\x9a\x99\x99\xa1\x11\xb4`A\x10\xaeG\xe1\x95\xdb\x1aAfffn\x19\xb4`A\xd0\x9a\xe6]\xa1\xdb\x1aAhDi\xaf\x19\xb4`A`\xcc]K\xc4\xdb\x1aA\x14?\xc6"\x1a\xb4`A\xa0\xcd\xaaO\x10\xdd\x1aA\xc8\x07=\x8b\x1e\xb4`A@\xcffU\xdc\xdd\x1aA\xe26\x1a\xf2\x1f\xb4`A\x80\xa7W\xca\xe3\xdf\x1aA\xe4\x14\x1d\xcf\x1e\xb4`A 8gD\xfb\xe0\x1aA\xa0\xf81d\x1d\xb4`A\xc0\x05\x12T\xdc\xe1\x1aA\x16\x8cJ\xac\x18\xb4`APR\'`\xbc\xe2\x1aA\x9c3\xa2\xf2\x11\xb4`A\xf0|?5<\xe3\x1aAR\xb8\x1e\x01\x0c\xb4`A\xd0;NQ\xbc\xe3\x1aA\xac\xad\xd8k\x05\xb4`A\xf0\xdb\xd7A<\xe4\x1aAX9\xb4\x04\xf8\xb3`A\xb0\xf3\xfdT\x8e\xe4\x1aAt\x93\x18\x9a\xe8\xb3`A\xd0\xa3p=\xc3\xe3\x1aA\xecQ\xb8\xf6\xdc\xb3`A\x00\x00\x00\x00\x97\xe3\x1aA\xcc\xcc\xcc\x8c\xd1\xb3`A\x10\xaeG\xe1\x9d\xe3\x1aA\xd8\xa3p\xd5\xcd\xb3`A0333\xc3\xe3\x1aA\x14\xaeG\x89\xca\xb3`A`)\xcb\x90,\xe4\x1aA\xf0\x85\xc9\xa6\xc5\xb3`A\xd0MbP\x04\xe4\x1aA\xb2\x0cq\x90\xc3\xb3`A0\xcd;N\xdc\xe2\x1aAh\xb3\xea\xa5\xbc\xb3`A\x00\xe7\x8c(\xb6\xe1\x1aA\x00\x91~G\xba\xb3`A\xe0z\x14\xae8\xe1\x1aA\xa4p=\n\xbc\xb3`AP\xb8\x1e\x85\xb2\xe0\x1aAR\xb8\x1em\xbf\xb3`A\xc0\xf5(\\p\xdf\x1aA\x1e\x85\xeb\x11\xcb\xb3`A\xc0\x1e\x85\xeb\xc3\xde\x1aAR\xb8\x1eU\xd0\xb3`A0\\\x8f\xc2d\xdc\x1aA\xe2z\x14\x8e\xc8\xb3`A\x10\xd7\xa3pC\xdc\x1aA\n\xd7\xa3\x10\xc8\xb3`AP\xb8\x1e\x85k\xdb\x1aAR\xb8\x1eE\xc3\xb3`A0\\\x8f\xc2A\xdb\x1aAz\x14\xae\'\xc2\xb3`A\x10\xa5\xbd\xc1!\xdb\x1aA\xdc\xb5\x84\xb0\xc0\xb3`A \xc9\xe5\xff\x81\xda\x1aAf\xf7\xe4\xab\xbf\xb3`A\xf0(\\\x8f\x0b\xda\x1aA\xaeG\xe1*\xc0\xb3`A0333\x11\xd7\x1aA\xaeG\xe1:\xc1\xb3`A\x90\xd2\xde`\xf8\xd6\x1aA\x16jM\xc5\xc0\xb3`A\x10\xf2AO\x88\xd6\x1aAf\x19\xe2\xa8\xc1\xb3`A\x00\xce\x19Q\xf0\xd4\x1aA\x1e\x85\xeb\x03\xb6\xb3`A\xa0N@S\x0c\xd3\x1aA\x8a\xb0\xe1\xa5\x99\xb3`A0\xcd;N\x04\xd3\x1aA4\xa2\xb4\xe5\x95\xb3`A\x10\xd7\xa3p\xff\xd2\x1aA\xb8\x1e\x85\xa3\x95\xb3`A\xf0Q\xb8\x1e\xcf\xd2\x1aA\n\xd7\xa3\xd8\x92\xb3`A\xc0\x1e\x85\xeb\xc5\xd2\x1aA433\x13\x91\xb3`A0333\xdb\xd2\x1aA\x1e\x85\xebQ\x8f\xb3`A\xc0\x05\x12\xd4\x04\xd5\x1aA\x1e8g\xf8x\xb3`A\xb0\x94eH`\xd5\x1aA*\x18\x95\xa0t\xb3`A@\x94\xf6F\x88\xd6\x1aAN@\x13\th\xb3`A\x80\x83/L\xe0\xd7\x1aAn\x12\x83\xa4W\xb3`A\xe0h\x00/K\xd8\x1aA2\xc4\xb1\x9cO\xb3`A0\\\x8f\xc2`\xd8\x1aAfffnH\xb3`AP\xb8\x1e\x85d\xd8\x1aA\xf6(\\\xa7=\xb3`A \x85\xebQ]\xd8\x1aA(\\\x8f\x1a<\xb3`A@\x03xK\xf7\xd7\x1aA\x18\x04V\x900\xb3`Ap\x91\xed<P\xd7\x1aA\xb2.n\x9b)\xb3`A\x90Std@\xd7\x1aAV0*s#\xb3`A\xc0\xc1\x17&o\xd7\x1aAR\x96!*!\xb3`A\xd0\xa3p=g\xd7\x1aAR\xb8\x1eE \xb3`A@\n\xd7\xa3\\\xd6\x1aA\x9a\x99\x99\x91\x13\xb3`A\xd0+e\xd9\x9c\xd4\x1aA\xec/\xbb\xc1\x12\xb3`A\x00\xce\x19Q\x9c\xd4\x1aA\x84\rO\xc5\x12\xb3`Ap\x12\x83\x00\x8a\xd4\x1aA\x90~\xfb\xb8\x12\xb3`AP\x9d\x80\xe6`\xd3\x1aA*\xcb\x10/\x12\xb3`A\xc0\'\x0f\x8b\x15\xd2\x1aA8\x89A\xde\x13\xb3`A \x85\xebQ\xa4\xd0\x1aA\x86\xebQ\xe0%\xb3`A0\\\x8f\xc2\x97\xd0\x1aA\\\x8f\xc2\r\'\xb3`A\xe0z\x14\xae\xc8\xd0\x1aA\x00\x00\x00\xb0,\xb3`A\x10\xaeG\xe1\xe7\xd0\x1aA\x1e\x85\xebI.\xb3`A\xf0Q\xb8\x1e\xae\xd0\x1aA(\\\x8f\x8a0\xb3`A\xc0\xf5(\\#\xd0\x1aA\x9a\x99\x99\xb94\xb3`A\xc0\xf5(\\?\xcf\x1aA\xc2\xf5(\\8\xb3`A\xf0Q\xb8\x1e\n\xcf\x1aA\n\xd7\xa3\x009\xb3`A\xc0\xf5(\\\x8a\xcd\x1aAp=\n\xb7<\xb3`A\x80&\xc2\x86\xed\xcb\x1aAj\xbct\x179\xb3`A\xd0\x7fH\xffS\xcb\x1aA\x82QI\xb39\xb3`A\xf0Q\xb8\x1e)\xc9\x1aA\xcc\xcc\xcc$D\xb3`A\xc0\xf5(\\\x8f\xc8\x1aA\xc2\xf5(\xbcH\xb3`A0\\\x8f\xc2S\xc8\x1aAR\xb8\x1e\xf5J\xb3`A\xe0z\x14\xae\xcb\xc6\x1aAfff^O\xb3`AP\xb8\x1e\x85\xd9\xc5\x1aA\x14\xaeG\xe1O\xb3`A\x10\xd7\xa3p\xc0\xc4\x1aA\x9a\x99\x99\x01P\xb3`A0\\\x8f\xc2\xd5\xc3\x1aA\x1e\x85\xeb1Q\xb3`A\x00\x00\x00\x00\r\xc1\x1aA\xe2z\x14FY\xb3`A0\\\x8f\xc2\x94\xbd\x1aA\n\xd7\xa3\x18a\xb3`A\xf0Q\xb8\x1e0\xbd\x1aA\xc2\xf5(\x9ca\xb3`A\xc0\x1e\x85\xeb\xf7\xbc\x1aA\x9a\x99\x999b\xb3`A\xc0\xf5(\\\x1f\xbb\x1aA\x14\xaeG\x01o\xb3`A\x10\xaeG\xe1g\xba\x1aAR\xb8\x1e}|\xb3`A\x90\xa9\x82\xd1\xa0\xba\x1aA*\x18\x95,\x7f\xb3`A\xf0\xeb\xc09\x14\xbd\x1aA\xe8\xfb\xa9\x9d\x95\xb3`A@\xbdRV\x14\xbe\x1aA:p\xce\xae\x9c\xb3`A\xc0\xdc\xb5D\x10\xbf\x1aA\x16jM\xbb\xa1\xb3`APR\'`p\xc0\x1aA\x92\xcb\x7ft\xa5\xb3`A\x80\xd0\xb3Y\xfc\xc0\x1aAN@\x13\x07\xa5\xb3`A\x80sF\xd4R\xc1\x1aAL\xa6\nx\xa8\xb3`A\xc0\x1e\x85\xeb2\xc2\x1aA\xc2\xf5(\xf4\xa6\xb3`A\x00\x00\x00\x00\xe8\xc2\x1aA\xe2z\x14\x16\xa4\xb3`A\xd0\xcc\xcc\xcc\x91\xc3\x1aA>\n\xd7;\xa1\xb3`A\x10\xaeG\xe1K\xc3\x1aA\x86\xebQ\xe8\xab\xb3`A\x00\x00\x00\x00/\xc3\x1aA\n\xd7\xa3\x90\xae\xb3`AP\xb8\x1e\x85n\xc2\x1aA\xc2\xf5(\x94\xb7\xb3`A@\n\xd7\xa3\xc1\xc0\x1aAR\xb8\x1eM\xcb\xb3`A\xd0\xa3p=\x12\xc0\x1aA\n\xd7\xa3\xf8\xcf\xb3`AP\xb8\x1e\x85\n\xbf\x1aA\x9a\x99\x99\xd9\xd5\xb3`A\xc0\xf5(\\x\xbd\x1aA\xe2z\x14\x1e\xd8\xb3`A\xc0\xf5(\\\xcc\xbc\x1aAH\xe1z\xb4\xd6\xb3`A\xe0z\x14\xae-\xba\x1aA\xc2\xf5(d\xcd\xb3`A\x00o\x81\xc4\x9a\xb9\x1aA\x00"\xfd,\xc9\xb3`A\xd0\x19QZ\xe0\xb8\x1aA\xd0\xb3Y\x91\xc4\xb3`A0\xf6\x97]\xe8\xb8\x1aA\x9e\x80&\xe8\xbe\xb3`Ap\x1b\r`\xb0\xb8\x1aA\xf2\x1f\xd2\xcf\xb8\xb3`ApO\x1eV\x04\xb8\x1aA\xa85\xcdm\xb3\xb3`A\xc0\xe3\x14]d\xb5\x1aA\xd4\x9a\xe6\xb1\xa4\xb3`A\xb0`T\x92\xad\xb4\x1aA\x88\xf4\xdb\x05\xa4\xb3`A\xf0(\\\x8fh\xb2\x1aA\x9a\x99\x991\xab\xb3`A\xb0\xf1\xd2\rd\xb2\x1aA A\xf1M\xab\xb3`A\x90~\xfb\xfa^\xb2\x1aAx\x0b$Z\xb4\xb3`A\xf0(\\\x8f\xa3\xb2\x1aA(\\\x8f\x8a\xb5\xb3`A\xf0(\\\x8f\xfc\xb2\x1aAp=\n\'\xc9\xb3`A\xd0\xcc\xcc\xcc\xfe\xb2\x1aA\xe2z\x14N\xca\xb3`A\x00\x00\x00\x00\xe6\xb2\x1aA\x86\xebQ\x00\xcf\xb3`A\xd0\xa3p=\xca\xb2\x1aA\xa4p=Z\xcf\xb3`A@\xe1z\x14\x9e\xb2\x1aA\xaeG\xe1\xaa\xe0\xb3`A\xf0(\\\x8f\xb6\xb2\x1aA\xd8\xa3p\r\xe7\xb3`A\x00\x00\x00\x00i\xb3\x1aAH\xe1z\xcc\xf5\xb3`A\x90St$9\xb4\x1aA\xa4p=\xa4\x00\xb4`A\xf0H.?\xec\xb4\x1aA\x0c\x93\xa9@\x07\xb4`A\x90\xdbh\x80E\xb5\x1aA\\\x8f\xc2g\n\xb4`AP\xb8\x1e\x85\x11\xb7\x1aA\xe2z\x14~\x17\xb4`A\x10\xaeG\xe1\x92\xb7\x1aA\x9a\x99\x99A\x1a\xb4`A\x00\xa1g\xb3/\xb8\x1aA\x10\xc7\xbaD\x1d\xb4`A\x80j\xbc4h\xb8\x1aAN@\x13\x1b\x1d\xb4`A\xf0H.?\xb4\xb8\x1aA`vO\x9a\x1b\xb4`A\x00+\x87V,\xb9\x1aA\x86Z\xd3j\x1b\xb4`A\x90\xdbh\xc0\x9d\xb9\x1aAF\xb6\xf3\x8b\x1e\xb4`A\xd0\xcc\xcc\xccN\xba\x1aA\xd8\xa3p}\x1f\xb4`A\x00\x00\x00\x00\x88\xba\x1aA\xf6(\\\xcf \xb4`A\x00\x00\x00\x00\xc7\xba\x1aA\xc2\xf5(\xf4#\xb4`A\xd0\xcc\xcc\xccP\xbb\x1aAR\xb8\x1e\r5\xb4`AP\xb8\x1e\x85T\xbb\x1aA(\\\x8f\x82=\xb4`A\xd0\xcc\xcc\xcc\x1e\xbb\x1aAfffv<\xb4`A\x10\xaeG\xe1\xad\xba\x1aAH\xe1zdA\xb4`A\x00\x00\x00\x00\xa0\xba\x1aA\x1e\x85\xebiC\xb4`A\xf0(\\\x8f_\xbb\x1aA\x90\xc2\xf5\xa0e\xb4`AP\xb8\x1e\x85.\xbc\x1aA\xaeG\xe1\xc2\x80\xb4`A0333|\xbc\x1aA\xf6(\\\xef\x87\xb4`A \x85\xebQ\x11\xbd\x1aAH\xe1z<\xa7\xb4`A'], [b'\x01\x03\x00\x00\x00\x01\x00\x00\x00\x93\x00\x00\x00 Q\xda[\x10\xa6\x1aA\xbc\x96\x90kh\xb3`A\x00\x12\x14?\x94\xa7\x1aA^\xdcF{b\xb3`A\xf0(\\O\xa8\xac\x1aA\x98\xbb\x96&b\xb3`A\xe0_vOd\xae\x1aA\\\xb1\xbfjb\xb3`A\xf08EG\x80\xb2\x1aA\xf0\x16H\x80_\xb3`A\xa0\xa2#9\xb4\xb5\x1aA\xe2\xc7\x98}U\xb3`A\xd0f\xd5g\x80\xb6\x1aA\xfc:p\xd0U\xb3`AP\xa6\nF\x14\xb7\x1aA\xa0\x89\xb0aZ\xb3`A\x10\xe9\xb7o\xbc\xb7\x1aA\x0cq\xac\xf3e\xb3`A\xc0\x86\xa7W@\xb8\x1aA*\x18\x95\xa6j\xb3`A\xc0\xd3+e\xdc\xb8\x1aA\x9c\x11\xa5Mj\xb3`A\xd0;NQL\xb9\x1aA\x868\xd6\x03e\xb3`A0\xf6\x97]h\xb9\x1aA\x8c\xb9k\xb5`\xb3`Ap\x81\x04ET\xb9\x1aA\xaa\x13\xd0\xe4W\xb3`A0n\xa3A\xf8\xb8\x1aA\xfa\xa0g\xbfQ\xb3`A c\xeeZ\xdc\xb8\x1aA\x82\xe2\xc7*N\xb3`A`9\xb4H\xfc\xb8\x1aAj+\xf6GJ\xb3`A@\xdfOM@\xba\x1aA\x88\xd2\xde\xe69\xb3`A@\x94\xf6FX\xbb\x1aA6<\xbd\x840\xb3`A\xa0\xef\xa7F|\xbc\x1aA\xde\x02\t\xc4,\xb3`A\xf0\xb7\xafC\x18\xbe\x1aA\xb4\xc8v\x00*\xb3`A \xc9\xe5?\x04\xbf\x1aA\x901w\x9d\'\xb3`A\x10z6kP\xbf\x1aA$(~\x94%\xb3`A J{CH\xbf\x1aA\xf2c\xcc\x1d!\xb3`Ap=\nW\xb8\xbe\x1aA\xd4\x9a\xe6+\x18\xb3`A\xe0_vOd\xbe\x1aAr\x8a\x8e\xa4\r\xb3`A\xd0\x07=[\x80\xbe\x1aA0\xdd$\xac\x06\xb3`A\xa0#\xb9<8\xbf\x1aA\xce\xf7S[\xff\xb2`A\x80\x95CKp\xbf\x1aAF\xb6\xf3\xfd\xfd\xb2`A\xc0\xca\xa1E\xec\xbf\x1aA\xf6u\xe0@\x00\xb3`Apq\x1bM\x8c\xc0\x1aA.!\x1f\xa4\x08\xb3`A\xf0/\xbbg@\xc2\x1aAp_\x07T\x0f\xb3`A\x80\xa7WJ \xc5\x1aA\x80&\xc2&\x1f\xb3`A\xb0\xd1\x00^4\xc6\x1aAJ\xea\x04r%\xb3`A@\x01MD$\xc7\x1aAt\x93\x18\xde$\xb3`Ap\x00oA\xe0\xc7\x1aA\xe6\xd0"\x1b \xb3`ApM\xf3N`\xc8\x1aA\xe4\xf2\x1f(\x1a\xb3`A c\xeeZ\xc8\xc8\x1aAd\xeeZ\x12\x13\xb3`A\x10\xe0-Pl\xc8\x1aA\xbe\x9f\x1aO\x0e\xb3`A\xd0\xee\xc9C\x88\xc7\x1aAB\xadid\n\xb3`A\xa0\x1a/]$\xc7\x1aA6\xcd;J\x0b\xb3`A \x16jM\xec\xc6\x1aA\xc0[ K\r\xb3`A\xb0>W[(\xc6\x1aA\x0c\x93\xa9\xb2\r\xb3`A`d;_|\xc5\x1aAb2U\xb2\t\xb3`ApF\x946 \xc4\x1aA\x12\xf2A\xdd\xfd\xb2`A\xb0\xd8_6\x00\xc4\x1aA\x1a\xc0[\xfc\xf6\xb2`A`d;_\x1c\xc4\x1aA\\\x8f\xc2Q\xf3\xb2`A\x10\xe0-P|\xc4\x1aA\xca\xa1E\x82\xf0\xb2`A\x00\xf0\x16H\xc0\xc5\x1aA^\xdcF\x9d\xf1\xb2`A\x10\xa5\xbdA\x8c\xc6\x1aA\xea\xb7\xaf\x1d\xf3\xb2`A\x80\xb7@B$\xc8\x1aA\xeeZBd\xff\xb2`APR\'`P\xc9\x1aA\x9cU\x9f\x91\x07\xb3`AP\xaf\x94eH\xca\x1aA\xc8\x98\xbbt\x0b\xb3`A`)\xcbP\xf4\xcb\x1aA0\xdd$d\x0f\xb3`A@\x1c\xebbt\xcf\x1aA\xfee\xf7n\x14\xb3`A\x10\xac\x1cZt\xd0\x1aA*\xa9\x132\x13\xb3`A`\x868V4\xd4\x1aAfff\x8c\t\xb3`A`]\xdcF\x1c\xd5\x1aA(\xed\rB\x05\xb3`A\xd0v\xbe_\x10\xd6\x1aA\xe0\x0b\x93S\xfd\xb2`A\xe0\x14\x1dI\xb0\xd6\x1aA\x08\xac\x1cj\xf5\xb2`A\x00\xce\x19QX\xd7\x1aA:\x01M\x90\xe6\xb2`A\x10a\xc3S@\xd7\x1aA\xe4\xa5\x9b\x0c\xdc\xb2`A`\xfeCz\xeb\xd6\x1aAlV}\xfc\xd0\xb2`A\x10\xb7\xd1@\xfc\xd3\x1aA\xdch\x00\xc1\xb0\xb2`A\xd0+eY\x90\xd3\x1aA\xc6K7\xd3\xad\xb2`A@`\xe5P$\xd1\x1aA\xaa\x13\xd0\x8a\xae\xb2`A\x10$(>L\xd0\x1aA\xa8\xa4N\xe4\xb0\xb2`A\x80sFT\xc8\xcf\x1aA\xee|?\xed\xb4\xb2`AP\x15\x8cJ\xbc\xcf\x1aA\xde\x02\t\xc8\xb8\xb2`A\xf0\x8eS48\xd0\x1aA\xf4\xdb\xd7\xdd\xc1\xb2`A\x80\x16\xd9NP\xd0\x1aAV0*\x05\xcd\xb2`A\x10&SE\x18\xd0\x1aA\xdc\xd7\x81\xa9\xcf\xb2`A`]\xdcFx\xcf\x1aA \xf4l\x02\xd0\xb2`A\xf0\x044Q\x10\xcf\x1aAv\x02\x9a.\xcd\xb2`A\xe0\xa5\x9bD\xdc\xce\x1aA\x9a\x08\x1b\xe4\xc8\xb2`A\xc0I\x0cB\xa0\xce\x1aA.!\x1f>\xc0\xb2`A0\x1a\xc0[\x0c\xce\x1aA\x1e\xc9\xe53\xbc\xb2`A\x90\x06\xf0Vx\xcc\x1aA\xf2\xb0P\xef\xb9\xb2`A\x00o\x81D\x9c\xcb\x1aA\xca\xe5?F\xb2\xb2`A\xd0\xa1E6\x80\xcb\x1aA\xfc\xa9\xf1z\xae\xb2`AP\xe3\xa5[\xf0\xcb\x1aA\xc4 \xb0\x94\xaa\xb2`A`\x19\xe2X\xb4\xcc\x1aAF\xb6\xf3\x89\xa9\xb2`A (~L@\xcf\x1aA\x94\xa9\x82#\xad\xb2`A\x90\xa9\x82Q\xb4\xcf\x1aA\xfa\\m\xaf\xab\xb2`A@\x94\xf6F\xac\xcf\x1aA\x044\x11\x80\xa8\xb2`A\x90\xcb\x7fH\xc4\xce\x1aA\xf8\xc2d\xc6\xa2\xb2`Ap\x93\x18D\xb4\xc6\x1aA\x8c\xdbh\xdc\x91\xb2`A@\x94\xf6F \xc5\x1aA\x0c\x93\xa9<\x90\xb2`A\x10\x02+G\x80\xc1\x1aA\xc6\xfe\xb2\xbf\x8c\xb2`A\xe0q\x8aNh\xc0\x1aA\x96\x90\x0f\xc0\x8c\xb2`Ap-!_\x18\xbe\x1aA\x94\x18\x04\xd0\x91\xb2`A\xd0\xd5VlX\xbc\x1aA(\xed\r\xd4\x97\xb2`A\xa0\xe6\x1dg\x88\xb9\x1aA\x1cZd\x91\xa1\xb2`A\x10\xf9\xa0g,\xb8\x1aAb\x7f\xd9\xaf\xa6\xb2`A\xa0N@St\xb6\x1aA\xc0[ \xc9\xaf\xb2`A \x16jM\x1c\xb5\x1aAB\xcff\xa1\xb8\xb2`A \x97\xffP4\xb4\x1aAhDi\xa7\xbb\xb2`A\xa0\x80&B\xe8\xb1\x1aA\x06\x81\x95\x9d\xc0\xb2`A\x808\xd6E\x1c\xb1\x1aAb\xc3\xd3\xdd\xbf\xb2`A\xd0\x7fH?\x0c\xb0\x1aA\xca\xa1E~\xbb\xb2`A`\x98LU\xcc\xae\x1aA\x1a/\xdd\xec\xba\xb2`A\xb0\x0cql\x1c\xae\x1aA|\xd0\xb3\x95\xbc\xb2`A@\x13aCt\xad\x1aAV0*\xdb\xc1\xb2`AP\xa6\nF\x94\xad\x1aAd;\xdf\xbb\xc8\xb2`A\xa0\xbd\xc1W\xc8\xad\x1aAj\xbct\xa9\xcd\xb2`A\x10\xf9\xa0g\xb0\xad\x1aA\xae\xb6b\xd5\xdc\xb2`A\x80\x83/L@\xad\x1aA\xb8@\x82\x04\xe2\xb2`A\xf0\xdb\xd7A\xe4\xac\x1aA\xa85\xcd[\xe5\xb2`A\x00_\x98LH\xac\x1aAL7\x89\xe1\xe6\xb2`APP\xfcXl\xab\x1aA\x1a\xc0[\xcc\xe6\xb2`A \x16jMP\xaa\x1aA\xa85\xcd\xe5\xe4\xb2`A\xc0\x05\x12TL\xa9\x1aA\x04\xe7\x8c\x84\xe5\xb2`A`d;_\xc4\xa7\x1aA\x8e\x06\xf0\x8a\xe9\xb2`A\xb0\xcf\xd5V0\xa7\x1aA\xdc\xf9~l\xef\xb2`A\xc0t\x93X`\xa2\x1aAHr\xf9g\xfd\xb2`A\xd0T\xc1h\xfc\xa0\x1aA\xbe\xc1\x17\xd2\xfe\xb2`Ap\t\xf9`\x14\x9f\x1aA\xf0\x85\xc9\x8a\xfb\xb2`A\xa0\xdf\xbeN\x80\x9c\x1aA\x82QI\x87\xf3\xb2`A\xb0\xa6yG\x1c\x9b\x1aA\x82QI\xbd\xec\xb2`AP\x0c\x02k\x98\x97\x1aA\x9e\x80&\xac\xd2\xb2`A A\xf1cd\x96\x1aAL\xc8\x07)\xc6\xb2`A\x80\x16\xd9N\x88\x95\x1aAp\xf0\x85\xc5\xbd\xb2`A\x00;pN`\x94\x1aAd;\xdf\xe3\xb6\xb2`APP\xfcXP\x93\x1aAt\xb5\x15+\xb3\xb2`A\x00_\x98Lx\x90\x1aA\x82\xe2\xc7\x1c\xaf\xb2`Ap\xe0\x9cQ@\x8e\x1aAF\x94\xf6@\xad\xb2`A\xc0\x96\x90O\x80\x8d\x1aA~\x1d8{\xaf\xb2`A\xc0\x05\x12T\xc4\x8c\x1aA\xda\x1b|\xa5\xb5\xb2`Ap\xbe\x9fZ\x80\x8c\x1aA\xd8\xa3p\x0b\xbc\xb2`A@\xcffU\xa0\x8c\x1aA2\x08\xacF\xca\xb2`A\xa0\xbb\x96P`\x8d\x1aA\xc6m4\x9c\xd7\xb2`A\xb0\x0cqld\x8e\x1aA\xde\x02\t\xac\xe8\xb2`A\x10\x83\xc0J4\x8f\x1aA\xe6\xd0"\xfb\xf5\xb2`A\x80\x0b$h\\\x90\x1aA \xd2om\x04\xb3`A\xb0\x03\xe7L\xa8\x91\x1aA\x98\xbb\x96\x9a\x12\xb3`Ap\x9c\xa2c4\x94\x1aA\xba\xda\x8aI*\xb3`A\x00\xde\x02I\x10\x96\x1aA\x8e\xe4\xf2\xdf8\xb3`A\xd0\xcc\xccL\xcc\x97\x1aA\x90\xa0\xf8\xe3C\xb3`A\x00\xe7\x8ch\xb4\x98\x1aA\x08\xac\x1c\x10I\xb3`A\xd0\xd5VlD\x9a\x1aAh\xb3\xea\xf3P\xb3`A\xb0`TR\x08\x9d\x1aA\xc2d\xaa&]\xb3`A@\xdfOM\xcc\x9e\x1aA\xea\x044gb\xb3`A\x00M\x84M\x00\xa1\x1aA\x00\xde\x02]b\xb3`A\x00\xbc\x05RX\xa2\x1aAV\x0e-*d\xb3`A\xa0\x99\x99Y\x08\xa4\x1aA\xb6\xf3\xfd\x8ei\xb3`A\xf0u\xe0\\\xfc\xa4\x1aA\x1c\r\xe0\xc5j\xb3`A Q\xda[\x10\xa6\x1aA\xbc\x96\x90kh\xb3`A', b'\x01\x03\x00\x00\x00\x01\x00\x00\x00\xc3\x00\x00\x00\xe0\x8c(ma\xb6\x1aA\xaei\xde\xc3U\xb3`A\xc0\xf5(\\f\xb6\x1aAR\xb8\x1e\xbdU\xb3`A\xd0\xa3p=\xa5\xb6\x1aA\x1e\x85\xeb\xc9U\xb3`A\xc0\x1e\x85\xeb\xcf\xb6\x1aA\x00\x00\x00\xe0U\xb3`A\xf0Q\xb8\x1e\x11\xb7\x1aA\xc2\xf5(<X\xb3`A\xe0z\x14\xae\xd7\xb7\x1aAR\xb8\x1eMc\xb3`A\x10\xd0D\x18\xd2\xb7\x1aAV\xec/\xb9f\xb3`A\xc0\x86\xa7W@\xb8\x1aA*\x18\x95\xa6j\xb3`A\xc0\xd3+e\xdc\xb8\x1aA\x9c\x11\xa5Mj\xb3`A\xd0;NQL\xb9\x1aA\x868\xd6\x03e\xb3`A0\xf6\x97]h\xb9\x1aA\x8c\xb9k\xb5`\xb3`Ap\x81\x04ET\xb9\x1aA\xaa\x13\xd0\xe4W\xb3`A0n\xa3A\xf8\xb8\x1aA\xfa\xa0g\xbfQ\xb3`A c\xeeZ\xdc\xb8\x1aA\x82\xe2\xc7*N\xb3`A`9\xb4H\xfc\xb8\x1aAj+\xf6GJ\xb3`A@\xdfOM@\xba\x1aA\x88\xd2\xde\xe69\xb3`A@\x94\xf6FX\xbb\x1aA6<\xbd\x840\xb3`A\xa0\xef\xa7F|\xbc\x1aA\xde\x02\t\xc4,\xb3`A\xf0\xb7\xafC\x18\xbe\x1aA\xb4\xc8v\x00*\xb3`A \xc9\xe5?\x04\xbf\x1aA\x901w\x9d\'\xb3`A\x10z6kP\xbf\x1aA$(~\x94%\xb3`A J{CH\xbf\x1aA\xf2c\xcc\x1d!\xb3`Ap=\nW\xb8\xbe\x1aA\xd4\x9a\xe6+\x18\xb3`A\xe0_vOd\xbe\x1aAr\x8a\x8e\xa4\r\xb3`A\xd0\x07=[\x80\xbe\x1aA0\xdd$\xac\x06\xb3`A\xa0#\xb9<8\xbf\x1aA\xce\xf7S[\xff\xb2`A\x80\x95CKp\xbf\x1aAF\xb6\xf3\xfd\xfd\xb2`A\xe0\xa5\x9b\x04\xec\xbf\x1aAX[\xb1?\x00\xb3`A\xe0z\x14\xae(\xc0\x1aA\n\xd7\xa3`\x00\xb3`A\xd0\xa3p=\x81\xc0\x1aAR\xb8\x1e\xfd\x00\xb3`A\xd0\xa3p=\xb3\xc0\x1aA\x00\x00\x00p\x02\xb3`A\x10\xaeG\xe1\x9b\xc0\x1aA\x14\xaeG\x89\x04\xb3`A\x00\x00\x00\x00\x9b\xc0\x1aAR\xb8\x1e\xb5\x06\xb3`A\x10\xaeG\xe1\xda\xc0\x1aA\x9a\x99\x99y\t\xb3`A\xa0W\xca\xb2\x02\xc1\x1aA\x1c\xeb\xe2t\n\xb3`A\xf0/\xbbg@\xc2\x1aAp_\x07T\x0f\xb3`A\x80\xf4\xdb\xd7*\xc3\x1aA\xb8@\x82^\x14\xb3`A0\\\x8f\xc2\xea\xc3\x1aA\xa4p=\xca\x17\xb3`A \x85\xebQ{\xc6\x1aA\xaeG\xe1\xb2"\xb3`A\xc0\xf5(\\\x0c\xc7\x1aA\x9a\x99\x99y$\xb3`A\x10&S\xc5.\xc7\x1aA$\xb9\xfc\x99$\xb3`Ap\x00oA\xe0\xc7\x1aA\xe6\xd0"\x1b \xb3`ApM\xf3N`\xc8\x1aA\xe4\xf2\x1f(\x1a\xb3`A c\xeeZ\xc8\xc8\x1aAd\xeeZ\x12\x13\xb3`A\x10\xe0-Pl\xc8\x1aA\xbe\x9f\x1aO\x0e\xb3`A`TR\'`\xc8\x1aA\xe6?\xa4\x19\x0e\xb3`A\xe0z\x14\xaeE\xc8\x1aA\xecQ\xb8V\x0e\xb3`A\x00\x00\x00\x00\xf2\xc7\x1aA(\\\x8f2\x11\xb3`A\xc0\xf5(\\\xc5\xc7\x1aA\x1e\x85\xeb\xe9\x12\xb3`A\xc0\x1e\x85\xeb\xe2\xc6\x1aA(\\\x8fJ\x14\xb3`A\xf0(\\\x8f\xb9\xc6\x1aA\xaeG\xe1b\x14\xb3`A\xe0z\x14\xae\x84\xc6\x1aA\xf6(\\7\x13\xb3`A\x80\x9e\xcd\xaa\xba\xc5\x1aA\xf6(\\%\x0b\xb3`A`d;_|\xc5\x1aAb2U\xb2\t\xb3`ApF\x946 \xc4\x1aA\x12\xf2A\xdd\xfd\xb2`A\xb0\xd8_6\x00\xc4\x1aA\x1a\xc0[\xfc\xf6\xb2`A`d;_\x1c\xc4\x1aA\\\x8f\xc2Q\xf3\xb2`A\x10\xe0-P|\xc4\x1aA\xca\xa1E\x82\xf0\xb2`A\x00\xf0\x16H\xc0\xc5\x1aA^\xdcF\x9d\xf1\xb2`A\x10\xa5\xbdA\x8c\xc6\x1aA\xea\xb7\xaf\x1d\xf3\xb2`A\xf0|?u5\xc7\x1aA\xd64\xef4\xf8\xb2`A\xc0\xf5(\\\x9d\xc7\x1aA\xb8\x1e\x85k\xfa\xb2`A0\\\x8f\xc21\xc8\x1aA\xc2\xf5(\xb4\xfe\xb2`Ap\x02\x9a\xc8\xb7\xc8\x1aA8gDi\x03\xb3`APR\'`P\xc9\x1aA\x9cU\x9f\x91\x07\xb3`AP\xaf\x94eH\xca\x1aA\xc8\x98\xbbt\x0b\xb3`A`)\xcbP\xf4\xcb\x1aA0\xdd$d\x0f\xb3`A@\x1c\xebbt\xcf\x1aA\xfee\xf7n\x14\xb3`A\x10\xac\x1cZt\xd0\x1aA*\xa9\x132\x13\xb3`A`\x868V4\xd4\x1aAfff\x8c\t\xb3`A`]\xdcF\x1c\xd5\x1aA(\xed\rB\x05\xb3`A\xd0v\xbe_\x10\xd6\x1aA\xe0\x0b\x93S\xfd\xb2`A\xe0\x14\x1dI\xb0\xd6\x1aA\x08\xac\x1cj\xf5\xb2`A\x00\xce\x19QX\xd7\x1aA:\x01M\x90\xe6\xb2`A\x10a\xc3S@\xd7\x1aA\xe4\xa5\x9b\x0c\xdc\xb2`A`\xfeCz\xeb\xd6\x1aAlV}\xfc\xd0\xb2`A\xa0N@\xd3\xd5\xd6\x1aAT\xc1\xa8\x0e\xd0\xb2`A0333z\xd6\x1aA\xaeG\xe1\xd2\xcd\xb2`A\x00\x00\x00\x00B\xd5\x1aA\n\xd7\xa3\xc8\xc4\xb2`A@\xe1z\x14\x9f\xd4\x1aA\x14\xaeG\xf1\xbe\xb2`A\xc0\x1e\x85\xebz\xd4\x1aA(\\\x8f\x92\xbd\xb2`A@\xe1z\x14\xbf\xd4\x1aA\xaeG\xe1\xea\xba\xb2`A@\xe1z\x14\x94\xd2\x1aAz\x14\xae\x17\xaf\xb2`A\xf0(\\\x8f\xf9\xd1\x1aA\xecQ\xb8\x1e\xaf\xb2`A\xe0z\x14\xaea\xd1\x1aAH\xe1z\xb4\xaf\xb2`A\xf0Q\xb8\x1e\x06\xd1\x1aA\xc2\xf5(\x8c\xb0\xb2`A\xe0z\x14\xae\xd8\xd0\x1aA\xf6(\\\xf7\xb0\xb2`A\x10\xd7\xa3p\xb2\xd0\x1aA\x90\xc2\xf5\xd0\xb1\xb2`A0333\xa5\xd0\x1aA433+\xb4\xb2`A\xc0\x1e\x85\xeb\x9a\xd0\x1aA\x86\xebQ\xf0\xc7\xb2`A\xf0(\\\x8f\xda\xd0\x1aA\xecQ\xb8\xe6\xca\xb2`AP\xb8\x1e\x85\xf9\xd0\x1aA\n\xd7\xa3\xb0\xcc\xb2`A\xe0z\x14\xae\xef\xd0\x1aA\xc2\xf5(\xdc\xd2\xb2`A\xe0z\x14\xae\xea\xd0\x1aA\xe2z\x14\xa6\xd3\xb2`A\x10\xd7\xa3p\xbe\xd0\x1aA\xaeG\xe1\xca\xd4\xb2`A\xf0(\\\x8f\x8a\xd0\x1aA\n\xd7\xa3\xf8\xd4\xb2`A@\n\xd7\xa3o\xcf\x1aA\xcc\xcc\xcc\xec\xd1\xb2`AP\xb8\x1e\x85O\xcf\x1aAR\xb8\x1eE\xd1\xb2`A\xc0\x1e\x85\xeb-\xcd\x1aA\x86\xebQH\xc1\xb2`A0\\\x8f\xc2\xd8\xcb\x1aAfff>\xb5\xb2`A0n\xa3\xc1\xdd\xcb\x1aA\xf2\x1f\xd2\x8d\xb4\xb2`A\x00o\x81D\x9c\xcb\x1aA\xca\xe5?F\xb2\xb2`A\xd0\xa1E6\x80\xcb\x1aA\xfc\xa9\xf1z\xae\xb2`AP\xe3\xa5[\xf0\xcb\x1aA\xc4 \xb0\x94\xaa\xb2`A`\x19\xe2X\xb4\xcc\x1aAF\xb6\xf3\x89\xa9\xb2`A (~L@\xcf\x1aA\x94\xa9\x82#\xad\xb2`A\x90\xa9\x82Q\xb4\xcf\x1aA\xfa\\m\xaf\xab\xb2`A@\x94\xf6F\xac\xcf\x1aA\x044\x11\x80\xa8\xb2`A\xe0\xe0\x0bSG\xcf\x1aA\x82sF\x02\xa6\xb2`AP\xb8\x1e\x85\xeb\xce\x1aAp=\n\x17\xa5\xb2`A\xc0\xf5(\\\x13\xcc\x1aA\x86\xebQ\xd0\x9e\xb2`A\x10\xd7\xa3p\x18\xc8\x1aA(\\\x8f\xea\x97\xb2`A@\n\xd7\xa3\x0b\xc7\x1aA\x14\xaeG9\x96\xb2`AP\xb8\x1e\x85\xc0\xc2\x1aAR\xb8\x1e-\x91\xb2`A@\n\xd7\xa3O\xc2\x1aA>\n\xd73\x91\xb2`A\xe0z\x14\xae{\xbe\x1aA\xb8\x1e\x85\xe3\x95\xb2`A\xc0\xf5(\\\x1c\xbe\x1aA\x9a\x99\x99\xa9\x96\xb2`A \x85\xebQZ\xbc\x1aA\x00\x00\x00\x00\x9b\xb2`A \x85\xebQ\xaa\xbb\x1aA\xa4p="\x9d\xb2`A\xf0(\\\x8f;\xbb\x1aA>\n\xd7k\xa0\xb2`A\xf0(\\\x8f\xb5\xba\x1aA433\xfb\xa3\xb2`A\xd0\xcc\xcc\xccY\xb5\x1aA\xaeG\xe1\xb2\xc1\xb2`A \x85\xebQ\xbb\xb4\x1aA\xc2\xf5(\\\xc4\xb2`A0\\\x8f\xc2m\xb3\x1aA\xcc\xcc\xcc\xa4\xc6\xb2`A\x10\xaeG\xe1$\xb3\x1aA\x86\xebQ\x88\xc6\xb2`A\xf0Q\xb8\x1e\xa8\xb2\x1aA>\n\xd7+\xc6\xb2`A\x10\xd7\xa3p\x86\xb2\x1aA\xf6(\\\xc7\xc5\xb2`A\xd0\xcc\xcc\xcce\xb2\x1aA\xecQ\xb8\xee\xc3\xb2`A\xd0\xcc\xcc\xccP\xb2\x1aAR\xb8\x1eu\xc2\xb2`A\xa0\xc6Kw\xe0\xb1\x1aA\xeeZB\x96\xc0\xb2`A\x808\xd6E\x1c\xb1\x1aAb\xc3\xd3\xdd\xbf\xb2`Ap\x9c\xa2#\xcf\xb0\x1aA\xae\xd8_\xa0\xbe\xb2`A\xc0\x1e\x85\xeb\xa2\xb0\x1aA\x00\x00\x00\x98\xbe\xb2`A0333\xd5\xaf\x1aAR\xb8\x1e\x1d\xbf\xb2`A@\xe1z\x14\x81\xaf\x1aAR\xb8\x1e\xfd\xc0\xb2`A\x10\xd7\xa3pu\xaf\x1aA(\\\x8fr\xc1\xb2`A\xf0(\\\x8f\x12\xaf\x1aA\xaeG\xe1\xc2\xc7\xb2`A\xf0Q\xb8\x1e\xf0\xae\x1aA\xaeG\xe1*\xca\xb2`A0333\xe6\xae\x1aA\xa4p=\x8a\xcc\xb2`A0\\\x8f\xc2\xed\xae\x1aA\xf6(\\\xa7\xce\xb2`A0\\\x8f\xc2$\xaf\x1aA433;\xd4\xb2`A\x00\x00\x00\x00\x1b\xaf\x1aA\x00\x00\x00(\xe3\xb2`A\xf0(\\\x8f\x14\xaf\x1aA\x86\xebQ\xa0\xe4\xb2`AP\xb8\x1e\x85\x8e\xae\x1aA\xb8\x1e\x85s\xec\xb2`A\xd0\xcc\xcc\xcc\xf8\xad\x1aA\xf6(\\\xaf\xee\xb2`A0333\xca\xad\x1aA\xa4p=2\xef\xb2`A \x85\xebQ\xb1\xac\x1aA\n\xd7\xa3h\xef\xb2`A0333P\xac\x1aA\x86\xebQX\xef\xb2`A\xe0z\x14\xaeC\xab\x1aA(\\\x8fB\xee\xb2`A\xd0\xcc\xcc\xcc\xdd\xaa\x1aA\xb8\x1e\x85\xa3\xec\xb2`A0\\\x8f\xc2T\xaa\x1aAR\xb8\x1e\xf5\xe8\xb2`A\xd0\xa3p=/\xaa\x1aAfff\xde\xe7\xb2`AP\xb8\x1e\x85\xc2\xa8\x1aAfff\x86\xeb\xb2`AP\xb8\x1e\x85i\xa8\x1aA\n\xd7\xa3\xf8\xf4\xb2`A\x10\xaeG\xe1_\xa8\x1aA\xecQ\xb86\xf6\xb2`A \x85\xebQ(\xa8\x1aA\xf6(\\\xa7\xf8\xb2`A\xc0\xf5(\\\xac\xa6\x1aA\x9a\x99\x99q\xff\xb2`A\xf0Q\xb8\x1e\x84\xa6\x1aA\xf6(\\\xff\xff\xb2`A0\\\x8f\xc2\x15\xa2\x1aAfffF\x0c\xb3`A\xc0\xf5(\\-\xa1\x1aAH\xe1z\x14\x0e\xb3`AP\xb8\x1e\x85\xf0\xa0\x1aA433\xdb\r\xb3`A \x85\xebQ\xbb\x9d\x1aA\xc2\xf5(4\x07\xb3`A\xf0(\\\x8f7\x9c\x1aA\xd8\xa3p\xc5\x01\xb3`AP\xb8\x1e\x85J\x9a\x1aA\xf6(\\\xa7\xf7\xb2`A\xc0\xf5(\\\xd8\x98\x1aA\x1e\x85\xeba\xee\xb2`A\xf0Q\xb8\x1e\x9d\x98\x1aA433\x1b\xed\xb2`A0\\\x8f\xc2\x08\x97\x1aA\x90\xc2\xf5\xf8\xe8\xb2`A\xe0z\x14\xaeQ\x96\x1aA\xaeG\xe1\x82\xe7\xb2`A\xf0Q\xb8\x1e\xf2\x95\x1aAz\x14\xae\x0f\xe7\xb2`A \x85\xebQ\xc2\x95\x1aA\xaeG\xe1\xb2\xe7\xb2`AP\xb8\x1e\x85\x92\x94\x1aA\x1e\x85\xeb\x99\xf1\xb2`A\xd0\xa3p=w\x94\x1aA\x9a\x99\x99\xf1\xf2\xb2`A\xd0\xcc\xcc\xcc\xf7\x93\x1aA\xe2z\x14V\xfe\xb2`A@\xe1z\x14\xb7\x93\x1aA\n\xd7\xa3\xa8\x04\xb3`A0333\xb1\x93\x1aAfff\x86\x07\xb3`A@\xe1z\x14\x05\x95\x1aA\x86\xebQ\xa8\x1c\xb3`A\xd0\xa3p=\x87\x96\x1aAH\xe1z\xbc1\xb3`A\x10\xaeG\xe1m\x97\x1aAR\xb8\x1e\x8d:\xb3`A0333\xe0\x98\x1aA>\n\xd7KC\xb3`A0333\r\x9b\x1aA\xf6(\\\x8fO\xb3`A\xc0\x1e\x85\xeb\xb9\x9b\x1aA\xc2\xf5(,S\xb3`A@\xe1z\x14\x98\x9c\x1aA\xaeG\xe12W\xb3`A\xf0Q\xb8\x1e5\x9e\x1aA\xaeG\xe1:]\xb3`A\xe06\x1a\xc0>\xa0\x1aA\xb8@\x82`b\xb3`A\x00M\x84M\x00\xa1\x1aA\x00\xde\x02]b\xb3`A\x00\xbc\x05RX\xa2\x1aAV\x0e-*d\xb3`A\xa0\x99\x99Y\x08\xa4\x1aA\xb6\xf3\xfd\x8ei\xb3`A\xf0u\xe0\\\xfc\xa4\x1aA\x1c\r\xe0\xc5j\xb3`A Q\xda[\x10\xa6\x1aA\xbc\x96\x90kh\xb3`A\x00\x12\x14?\x94\xa7\x1aA^\xdcF{b\xb3`A\xf0(\\O\xa8\xac\x1aA\x98\xbb\x96&b\xb3`A\xe0_vOd\xae\x1aA\\\xb1\xbfjb\xb3`A\xf08EG\x80\xb2\x1aA\xf0\x16H\x80_\xb3`A\xa0\xa2#9\xb4\xb5\x1aA\xe2\xc7\x98}U\xb3`A\xe0\x8c(ma\xb6\x1aA\xaei\xde\xc3U\xb3`A', b'\x01\x03\x00\x00\x00\x01\x00\x00\x00\xbd\x00\x00\x00\x80j\xbc\xf4\xdf\x9a\x1aA\x86\xa7W\x90N\xb3`A0333\r\x9b\x1aA\xf6(\\\x8fO\xb3`A\xc0\x1e\x85\xeb\xb9\x9b\x1aA\xc2\xf5(,S\xb3`A@\xe1z\x14\x98\x9c\x1aA\xaeG\xe12W\xb3`A\xf0Q\xb8\x1e5\x9e\x1aA\xaeG\xe1:]\xb3`A\xe06\x1a\xc0>\xa0\x1aA\xb8@\x82`b\xb3`A\x00M\x84M\x00\xa1\x1aA\x00\xde\x02]b\xb3`A\x00\xbc\x05RX\xa2\x1aAV\x0e-*d\xb3`A\xa0\x99\x99Y\x08\xa4\x1aA\xb6\xf3\xfd\x8ei\xb3`A\xf0u\xe0\\\xfc\xa4\x1aA\x1c\r\xe0\xc5j\xb3`A Q\xda[\x10\xa6\x1aA\xbc\x96\x90kh\xb3`A\x00\x12\x14?\x94\xa7\x1aA^\xdcF{b\xb3`A\xf0(\\O\xa8\xac\x1aA\x98\xbb\x96&b\xb3`A\xe0_vOd\xae\x1aA\\\xb1\xbfjb\xb3`A\xf08EG\x80\xb2\x1aA\xf0\x16H\x80_\xb3`A\xa0\xa2#9\xb4\xb5\x1aA\xe2\xc7\x98}U\xb3`A\xe0\x8c(ma\xb6\x1aA\xaei\xde\xc3U\xb3`A\xc0\xf5(\\f\xb6\x1aAR\xb8\x1e\xbdU\xb3`A\xd0\xa3p=\xa5\xb6\x1aA\x1e\x85\xeb\xc9U\xb3`A\xc0\x1e\x85\xeb\xcf\xb6\x1aA\x00\x00\x00\xe0U\xb3`A\xf0Q\xb8\x1e\x11\xb7\x1aA\xc2\xf5(<X\xb3`A\xe0z\x14\xae\xd7\xb7\x1aAR\xb8\x1eMc\xb3`A\x10\xd0D\x18\xd2\xb7\x1aAV\xec/\xb9f\xb3`A\xc0\x86\xa7W@\xb8\x1aA*\x18\x95\xa6j\xb3`A\xc0\xd3+e\xdc\xb8\x1aA\x9c\x11\xa5Mj\xb3`A\xd0;NQL\xb9\x1aA\x868\xd6\x03e\xb3`A0\xf6\x97]h\xb9\x1aA\x8c\xb9k\xb5`\xb3`Ap\x81\x04ET\xb9\x1aA\xaa\x13\xd0\xe4W\xb3`A0n\xa3A\xf8\xb8\x1aA\xfa\xa0g\xbfQ\xb3`A c\xeeZ\xdc\xb8\x1aA\x82\xe2\xc7*N\xb3`A`9\xb4H\xfc\xb8\x1aAj+\xf6GJ\xb3`A@\xdfOM@\xba\x1aA\x88\xd2\xde\xe69\xb3`A@\x94\xf6FX\xbb\x1aA6<\xbd\x840\xb3`A\xa0\xef\xa7F|\xbc\x1aA\xde\x02\t\xc4,\xb3`A\xf0\xb7\xafC\x18\xbe\x1aA\xb4\xc8v\x00*\xb3`A \xc9\xe5?\x04\xbf\x1aA\x901w\x9d\'\xb3`A\x10z6kP\xbf\x1aA$(~\x94%\xb3`A J{CH\xbf\x1aA\xf2c\xcc\x1d!\xb3`Ap=\nW\xb8\xbe\x1aA\xd4\x9a\xe6+\x18\xb3`A\xe0_vOd\xbe\x1aAr\x8a\x8e\xa4\r\xb3`A\xd0\x07=[\x80\xbe\x1aA0\xdd$\xac\x06\xb3`A\xa0#\xb9<8\xbf\x1aA\xce\xf7S[\xff\xb2`A\x80\x95CKp\xbf\x1aAF\xb6\xf3\xfd\xfd\xb2`A\xe0\xa5\x9b\x04\xec\xbf\x1aAX[\xb1?\x00\xb3`A\xe0z\x14\xae(\xc0\x1aA\n\xd7\xa3`\x00\xb3`A\xd0\xa3p=\x81\xc0\x1aAR\xb8\x1e\xfd\x00\xb3`A\xd0\xa3p=\xb3\xc0\x1aA\x00\x00\x00p\x02\xb3`A\x10\xaeG\xe1\x9b\xc0\x1aA\x14\xaeG\x89\x04\xb3`A\x00\x00\x00\x00\x9b\xc0\x1aAR\xb8\x1e\xb5\x06\xb3`A\x10\xaeG\xe1\xda\xc0\x1aA\x9a\x99\x99y\t\xb3`A\xa0W\xca\xb2\x02\xc1\x1aA\x1c\xeb\xe2t\n\xb3`A\xf0/\xbbg@\xc2\x1aAp_\x07T\x0f\xb3`A\x80\xf4\xdb\xd7*\xc3\x1aA\xb8@\x82^\x14\xb3`A0\\\x8f\xc2\xea\xc3\x1aA\xa4p=\xca\x17\xb3`A \x85\xebQ{\xc6\x1aA\xaeG\xe1\xb2"\xb3`A\xc0\xf5(\\\x0c\xc7\x1aA\x9a\x99\x99y$\xb3`A\x10&S\xc5.\xc7\x1aA$\xb9\xfc\x99$\xb3`Ap\x00oA\xe0\xc7\x1aA\xe6\xd0"\x1b \xb3`ApM\xf3N`\xc8\x1aA\xe4\xf2\x1f(\x1a\xb3`A c\xeeZ\xc8\xc8\x1aAd\xeeZ\x12\x13\xb3`A\x10\xe0-Pl\xc8\x1aA\xbe\x9f\x1aO\x0e\xb3`A`TR\'`\xc8\x1aA\xe6?\xa4\x19\x0e\xb3`A\xe0z\x14\xaeE\xc8\x1aA\xecQ\xb8V\x0e\xb3`A\x00\x00\x00\x00\xf2\xc7\x1aA(\\\x8f2\x11\xb3`A\xc0\xf5(\\\xc5\xc7\x1aA\x1e\x85\xeb\xe9\x12\xb3`A\xc0\x1e\x85\xeb\xe2\xc6\x1aA(\\\x8fJ\x14\xb3`A\xf0(\\\x8f\xb9\xc6\x1aA\xaeG\xe1b\x14\xb3`A\xe0z\x14\xae\x84\xc6\x1aA\xf6(\\7\x13\xb3`A\x80\x9e\xcd\xaa\xba\xc5\x1aA\xf6(\\%\x0b\xb3`A`d;_|\xc5\x1aAb2U\xb2\t\xb3`ApF\x946 \xc4\x1aA\x12\xf2A\xdd\xfd\xb2`A\xb0\xd8_6\x00\xc4\x1aA\x1a\xc0[\xfc\xf6\xb2`A`d;_\x1c\xc4\x1aA\\\x8f\xc2Q\xf3\xb2`A\x10\xe0-P|\xc4\x1aA\xca\xa1E\x82\xf0\xb2`A\x00\xf0\x16H\xc0\xc5\x1aA^\xdcF\x9d\xf1\xb2`A\x10\xa5\xbdA\x8c\xc6\x1aA\xea\xb7\xaf\x1d\xf3\xb2`A\xf0|?u5\xc7\x1aA\xd64\xef4\xf8\xb2`A\xc0\xf5(\\\x9d\xc7\x1aA\xb8\x1e\x85k\xfa\xb2`A0\\\x8f\xc21\xc8\x1aA\xc2\xf5(\xb4\xfe\xb2`Ap\x02\x9a\xc8\xb7\xc8\x1aA8gDi\x03\xb3`APR\'`P\xc9\x1aA\x9cU\x9f\x91\x07\xb3`AP\xaf\x94eH\xca\x1aA\xc8\x98\xbbt\x0b\xb3`A`)\xcbP\xf4\xcb\x1aA0\xdd$d\x0f\xb3`A@\x1c\xebbt\xcf\x1aA\xfee\xf7n\x14\xb3`A\x10\xac\x1cZt\xd0\x1aA*\xa9\x132\x13\xb3`A`\x868V4\xd4\x1aAfff\x8c\t\xb3`A`]\xdcF\x1c\xd5\x1aA(\xed\rB\x05\xb3`A\xd0v\xbe_\x10\xd6\x1aA\xe0\x0b\x93S\xfd\xb2`A\xe0\x14\x1dI\xb0\xd6\x1aA\x08\xac\x1cj\xf5\xb2`A\x00\xce\x19QX\xd7\x1aA:\x01M\x90\xe6\xb2`A\x10a\xc3S@\xd7\x1aA\xe4\xa5\x9b\x0c\xdc\xb2`A`\xfeCz\xeb\xd6\x1aAlV}\xfc\xd0\xb2`A\xa0N@\xd3\xd5\xd6\x1aAT\xc1\xa8\x0e\xd0\xb2`A0333z\xd6\x1aA\xaeG\xe1\xd2\xcd\xb2`A\x00\x00\x00\x00B\xd5\x1aA\n\xd7\xa3\xc8\xc4\xb2`A@\xe1z\x14\x9f\xd4\x1aA\x14\xaeG\xf1\xbe\xb2`A\xc0\x1e\x85\xebz\xd4\x1aA(\\\x8f\x92\xbd\xb2`A@\xe1z\x14\xbf\xd4\x1aA\xaeG\xe1\xea\xba\xb2`A@\xe1z\x14\x94\xd2\x1aAz\x14\xae\x17\xaf\xb2`A\xf0(\\\x8f\xf9\xd1\x1aA\xecQ\xb8\x1e\xaf\xb2`A\xe0z\x14\xaea\xd1\x1aAH\xe1z\xb4\xaf\xb2`A\xf0Q\xb8\x1e\x06\xd1\x1aA\xc2\xf5(\x8c\xb0\xb2`A\xe0z\x14\xae\xd8\xd0\x1aA\xf6(\\\xf7\xb0\xb2`A\x10\xd7\xa3p\xb2\xd0\x1aA\x90\xc2\xf5\xd0\xb1\xb2`A0333\xa5\xd0\x1aA433+\xb4\xb2`A\xc0\x1e\x85\xeb\x9a\xd0\x1aA\x86\xebQ\xf0\xc7\xb2`A\xf0(\\\x8f\xda\xd0\x1aA\xecQ\xb8\xe6\xca\xb2`AP\xb8\x1e\x85\xf9\xd0\x1aA\n\xd7\xa3\xb0\xcc\xb2`A\xe0z\x14\xae\xef\xd0\x1aA\xc2\xf5(\xdc\xd2\xb2`A\xe0z\x14\xae\xea\xd0\x1aA\xe2z\x14\xa6\xd3\xb2`A\x10\xd7\xa3p\xbe\xd0\x1aA\xaeG\xe1\xca\xd4\xb2`A\xf0(\\\x8f\x8a\xd0\x1aA\n\xd7\xa3\xf8\xd4\xb2`A@\n\xd7\xa3o\xcf\x1aA\xcc\xcc\xcc\xec\xd1\xb2`AP\xb8\x1e\x85O\xcf\x1aAR\xb8\x1eE\xd1\xb2`A\xc0\x1e\x85\xeb-\xcd\x1aA\x86\xebQH\xc1\xb2`A0\\\x8f\xc2\xd8\xcb\x1aAfff>\xb5\xb2`A0n\xa3\xc1\xdd\xcb\x1aA\xf2\x1f\xd2\x8d\xb4\xb2`A\x00o\x81D\x9c\xcb\x1aA\xca\xe5?F\xb2\xb2`A\xd0\xa1E6\x80\xcb\x1aA\xfc\xa9\xf1z\xae\xb2`AP\xe3\xa5[\xf0\xcb\x1aA\xc4 \xb0\x94\xaa\xb2`A`\x19\xe2X\xb4\xcc\x1aAF\xb6\xf3\x89\xa9\xb2`A (~L@\xcf\x1aA\x94\xa9\x82#\xad\xb2`A\x90\xa9\x82Q\xb4\xcf\x1aA\xfa\\m\xaf\xab\xb2`A@\x94\xf6F\xac\xcf\x1aA\x044\x11\x80\xa8\xb2`A\xe0\xe0\x0bSG\xcf\x1aA\x82sF\x02\xa6\xb2`AP\xb8\x1e\x85\xeb\xce\x1aAp=\n\x17\xa5\xb2`A\xc0\xf5(\\\x13\xcc\x1aA\x86\xebQ\xd0\x9e\xb2`A\x10\xd7\xa3p\x18\xc8\x1aA(\\\x8f\xea\x97\xb2`A@\n\xd7\xa3\x0b\xc7\x1aA\x14\xaeG9\x96\xb2`AP\xb8\x1e\x85\xc0\xc2\x1aAR\xb8\x1e-\x91\xb2`A@\n\xd7\xa3O\xc2\x1aA>\n\xd73\x91\xb2`A\xe0z\x14\xae{\xbe\x1aA\xb8\x1e\x85\xe3\x95\xb2`A\xc0\xf5(\\\x1c\xbe\x1aA\x9a\x99\x99\xa9\x96\xb2`A \x85\xebQZ\xbc\x1aA\x00\x00\x00\x00\x9b\xb2`A \x85\xebQ\xaa\xbb\x1aA\xa4p="\x9d\xb2`A\xf0(\\\x8f;\xbb\x1aA>\n\xd7k\xa0\xb2`A\xf0(\\\x8f\xb5\xba\x1aA433\xfb\xa3\xb2`A\xd0\xcc\xcc\xccY\xb5\x1aA\xaeG\xe1\xb2\xc1\xb2`A \x85\xebQ\xbb\xb4\x1aA\xc2\xf5(\\\xc4\xb2`A0\\\x8f\xc2m\xb3\x1aA\xcc\xcc\xcc\xa4\xc6\xb2`A\x10\xaeG\xe1$\xb3\x1aA\x86\xebQ\x88\xc6\xb2`A\xf0Q\xb8\x1e\xa8\xb2\x1aA>\n\xd7+\xc6\xb2`A\x10\xd7\xa3p\x86\xb2\x1aA\xf6(\\\xc7\xc5\xb2`A\xd0\xcc\xcc\xcce\xb2\x1aA\xecQ\xb8\xee\xc3\xb2`A\xd0\xcc\xcc\xccP\xb2\x1aAR\xb8\x1eu\xc2\xb2`A\xa0\xc6Kw\xe0\xb1\x1aA\xeeZB\x96\xc0\xb2`A\x808\xd6E\x1c\xb1\x1aAb\xc3\xd3\xdd\xbf\xb2`Ap\x9c\xa2#\xcf\xb0\x1aA\xae\xd8_\xa0\xbe\xb2`A\xc0\x1e\x85\xeb\xa2\xb0\x1aA\x00\x00\x00\x98\xbe\xb2`A0333\xd5\xaf\x1aAR\xb8\x1e\x1d\xbf\xb2`A@\xe1z\x14\x81\xaf\x1aAR\xb8\x1e\xfd\xc0\xb2`A\x10\xd7\xa3pu\xaf\x1aA(\\\x8fr\xc1\xb2`A\xf0(\\\x8f\x12\xaf\x1aA\xaeG\xe1\xc2\xc7\xb2`A\xf0Q\xb8\x1e\xf0\xae\x1aA\xaeG\xe1*\xca\xb2`A0333\xe6\xae\x1aA\xa4p=\x8a\xcc\xb2`A0\\\x8f\xc2\xed\xae\x1aA\xf6(\\\xa7\xce\xb2`A0\\\x8f\xc2$\xaf\x1aA433;\xd4\xb2`A\x00\x00\x00\x00\x1b\xaf\x1aA\x00\x00\x00(\xe3\xb2`A\xf0(\\\x8f\x14\xaf\x1aA\x86\xebQ\xa0\xe4\xb2`AP\xb8\x1e\x85\x8e\xae\x1aA\xb8\x1e\x85s\xec\xb2`A\xd0\xcc\xcc\xcc\xf8\xad\x1aA\xf6(\\\xaf\xee\xb2`A0333\xca\xad\x1aA\xa4p=2\xef\xb2`A \x85\xebQ\xb1\xac\x1aA\n\xd7\xa3h\xef\xb2`A0333P\xac\x1aA\x86\xebQX\xef\xb2`A\xe0z\x14\xaeC\xab\x1aA(\\\x8fB\xee\xb2`A\xd0\xcc\xcc\xcc\xdd\xaa\x1aA\xb8\x1e\x85\xa3\xec\xb2`A0\\\x8f\xc2T\xaa\x1aAR\xb8\x1e\xf5\xe8\xb2`A\xd0\xa3p=/\xaa\x1aAfff\xde\xe7\xb2`AP\xb8\x1e\x85\xc2\xa8\x1aAfff\x86\xeb\xb2`AP\xb8\x1e\x85i\xa8\x1aA\n\xd7\xa3\xf8\xf4\xb2`A\x10\xaeG\xe1_\xa8\x1aA\xecQ\xb86\xf6\xb2`A \x85\xebQ(\xa8\x1aA\xf6(\\\xa7\xf8\xb2`A\xc0\xf5(\\\xac\xa6\x1aA\x9a\x99\x99q\xff\xb2`A\xf0Q\xb8\x1e\x84\xa6\x1aA\xf6(\\\xff\xff\xb2`A0\\\x8f\xc2\x15\xa2\x1aAfffF\x0c\xb3`A\xc0\xf5(\\-\xa1\x1aAH\xe1z\x14\x0e\xb3`AP\xb8\x1e\x85\xf0\xa0\x1aA433\xdb\r\xb3`A \x85\xebQ\xbb\x9d\x1aA\xc2\xf5(4\x07\xb3`A\xf0(\\\x8f7\x9c\x1aA\xd8\xa3p\xc5\x01\xb3`A\x10F%\xf5\x96\x9b\x1aA6\x1a\xc0y\xfe\xb2`A \x06\x81\x953\x9a\x1aA.\xff!\xe1\xfe\xb2`A`]\xdc\x86\xee\x97\x1aA\xe8\xfb\xa9\x97\x00\xb3`A`ff&4\x97\x1aAl\t\xf9\x12\x06\xb3`A\x90\xd4\th\xe7\x96\x1aA`\xe5\xd0D\r\xb3`A\xe0\xac\xfa\x1c?\x97\x1aA\xa8W\xcaP\x1b\xb3`A`]\xdc\x86\xee\x97\x1aA\x02+\x87N\'\xb3`Ap"l\xb8\xdf\x98\x1aA\xa6,CL3\xb3`A`K\xc8Gc\x99\x1aAhDi\xf9?\xb3`A\x80j\xbc\xf4\xdf\x9a\x1aA\x86\xa7W\x90N\xb3`A'], [b'\x01\x06\x00\x00\x00\x02\x00\x00\x00\x01\x03\x00\x00\x00\x04\x00\x00\x00\xb5\x00\x00\x00\xc0\x0e\x9c\xf36\xae\x1aA\\\xfeCd\xc4\xb5`A\xd0\xaa\xcf\x95\x05\xb0\x1aA\x90\x0fz\x92\xbd\xb5`A\x10\x14?F\xf4\xb2\x1aA\xe0\xbe\x0eL\xb1\xb5`Ap\x8a\x8e$\xfa\xb3\x1aA\xe4\xa5\x9b\xee\xa9\xb5`A\x806\xab~t\xb7\x1aA\xea&1\xbe\x83\xb5`AP\x96!\x0e\xc3\xb7\x1aA\x88\x85Z1k\xb5`A\xc09#J\xfa\xb6\x1aAX\xa85GN\xb5`A \xa0\x89pT\xb6\x1aA\xc4\xd3+\xe9:\xb5`Ap\xa3\x01<\xda\xb5\x1aA\x126<\x171\xb5`A\x00\xe7\x8c\xe8\xc2\xb4\x1aAd\xcc]s\x1d\xb5`A\xb0Pk\xda\xa2\xb3\x1aA\xe4a\xa1r\x0e\xb5`A0\xd4\x9a\xe6\xbf\xb2\x1aA433\xcf\x03\xb5`A\xa0,C\\x\xb1\x1aA|a2\x89\xf8\xb4`A@\xa4\xdf>,\xb0\x1aA,\xf6\x97;\xf2\xb4`A\xa0\xe6\x1dg\x18\xae\x1aA\x16jM5\xe5\xb4`A\xb0.nc@\xad\x1aA\xc4\xb1.r\xdd\xb4`A\x10\xbe0Y\x9c\xac\x1aA\xee\r\xbe&\xd3\xb4`A0\x18\x95T\x1c\xac\x1aA\\\x8f\xc2\xe1\xc6\xb4`Ap\x9aw\\\xd8\xab\x1aAB\xadi(\xbb\xb4`A\x10&SE\xdc\xab\x1aA\xb6\xf3\xfd\xbc\xaa\xb4`APb\x10X\x18\xac\x1aA(~\x8c\xe7\xa1\xb4`A`\xbaIL\xd4\xad\x1aA\x1c\x9e^\x1f\x89\xb4`A`\xe5\xd0b\xb4\xae\x1aA\x02+\x874\x81\xb4`A\xe0O\x8dW\xb4\xaf\x1aA\xd0D\xd8\x08~\xb4`A Q\xda[\x80\xb1\x1aAb\xa1\xd6F~\xb4`A\x00\xce\x19Qd\xb2\x1aA\xfc\x87\xf4\xe7\x80\xb4`A\xa0\x9b\xc4`\xec\xb2\x1aA\xbc\x05\x12\x0e\x80\xb4`APb\x10X\x18\xb3\x1aAd\xaa`\no\xb4`Ap=\nW\x1c\xb2\x1aA\xa8\xa4N\x08O\xb4`AP\xaf\x94e\xe4\xb1\x1aA\xe26\x1a\xf0H\xb4`A\xe0\xd0"[d\xb1\x1aAV\x0e-hE\xb4`A@Gr9\xb4\xb0\x1aA\x0e\x9c3\xdc>\xb4`AP\xc1\xa8dT\xb0\x1aAJY\x86\x8c7\xb4`A\xa0\xdf\xbeN$\xb0\x1aA \xd2o\'+\xb4`A\xa0w\x9cb\xec\xaf\x1aA\xe0O\x8dk$\xb4`A0L\xa6JX\xaf\x1aA\xf2\xd2M\xa4\x1f\xb4`Ap\xe0\x9cQ(\xae\x1aA\x8cl\xe7\xcb\x1f\xb4`A\xc0m4@|\xad\x1aA(~\x8c\x9f"\xb4`A0L\xa6J\xb0\xac\x1aA\x96\xb2\x0c\xc5!\xb4`A0:\x92K\x1c\xac\x1aA\x8e\x06\xf0\xbc\x1d\xb4`A\xf0\x044Q\x14\xac\x1aA\xf6u\xe0\xa8\x1a\xb4`A\xa0\xe6\x1dg\xb4\xad\x1aA\xd0\xb3Y\x8d\xfd\xb3`A\x10\x0b\xb5f\xb8\xae\x1aA\xd0f\xd5\x8d\xf3\xb3`A\xd0+eY\x9c\xae\x1aAl\x9aw\xc4\xe7\xb3`A\xb0\xeasu\x04\xae\x1aA\x86\xc9T\x15\xd9\xb3`A\xc0\xc1\x17f\xe4\xac\x1aA\xf8S\xe3\x11\xc5\xb3`A\xc0\x17&S|\xac\x1aAn\xc5\xfe\x08\xc2\xb3`A\xe0\x83\x9eM\x10\xab\x1aA\xb8\x1e\x85\x01\xc1\xb3`A\x80\x85ZS4\xaa\x1aA\x98\xbb\x96\xec\xc0\xb3`A\x90l\xe7;\xb0\xa9\x1aAr\x8a\x8e\xdc\xc4\xb3`A\x80\xf4\xdbWP\xa9\x1aA\x02+\x87j\xd0\xb3`A\x80\xa7WJ\x00\xa9\x1aA\xa0\xab\xad \xe2\xb3`A@\xbdRV\xfc\xa8\x1aATt$\xcd\xf1\xb3`A\x10\xf9\xa0gH\xa8\x1aA\x8eSt\xd4\xf2\xb3`A\x00\xe7\x8ch\xac\xa7\x1aAH\xe1z.\xf3\xb3`A`9\xb4H|\xa6\x1aA\x8a\xfde\xbf\xe9\xb3`A\xa0\xab\xadX\xac\xa3\x1aA\x9cU\x9f+\xcf\xb3`A\xd0;NQ\xe0\xa3\x1aA\x84\xc0\xca\x87\xcc\xb3`A\x90\xcb\x7fH\x88\xa4\x1aA\xbe0\x99\x82\xc6\xb3`A`\xf5\xb9Z\xb8\xa4\x1aA\xe2X\x17\xc9\xc0\xb3`A\x10\x02+Gl\xa4\x1aAj+\xf6\x9d\xba\xb3`A\xc0I\x0cB(\xa4\x1aA\xd6\xc5m\xfe\xb6\xb3`A\x10\x1d\xc9e\\\xa3\x1aA\x80H\xbf\x13\xb5\xb3`A0\x99*XX\xa1\x1aAB\xf1cb\xb7\xb3`A\x00\xee\xeb@D\x9f\x1aA2\xe6\xae[\xba\xb3`A\x80X\xa8u\xd0\x9e\x1aA:\x92\xcb\xf3\xbd\xb3`A`\x19\xe2X\xa4\x9d\x1aA^K\xc8\x03\xd0\xb3`A\x10\xa5\xbdA\x08\x9d\x1aA\x0c\xb5\xa6\xbf\xd9\xb3`A\x00f\xf7dD\x9c\x1aA\xb4\xc8v\xee\xe4\xb3`A\xd0]KH\xa8\x9b\x1aA\xaei\xde\xfd\xe6\xb3`A\x80\x85ZS\x08\x9a\x1aA\x1c|a\xe4\xe9\xb3`Ap=\nW\x90\x99\x1aA\xe8H.\xe9\xe8\xb3`A\xe0$\x06Ap\x99\x1aA\xa6,C|\xe4\xb3`A\xe0\xe0\x0bS\x14\x9a\x1aAp_\x07\xa8\xdc\xb3`A\xc0\x1e\x85k\xac\x9a\x1aA&S\x05\xaf\xd8\xb3`A\xb0%\xe4C\xd4\x9b\x1aA\xf2c\xcc\xdf\xcd\xb3`A\xc0\x98\xbbVH\x9c\x1aA$\xb9\xfc\x07\xc3\xb3`A\x00;pNP\x9c\x1aA\x16HP\x02\xbe\xb3`A\xd0\x81sF\x00\x9c\x1aA6^\xba\xc1\xb4\xb3`A\x10O\xafT\x14\x9b\x1aA\x04V\x0e\xc7\xad\xb3`A\xc0\x96\x90Op\x99\x1aA\xd8\x12\xf2\xa3\xa4\xb3`A\xe0q\x8aN\xb4\x98\x1aAt\xb5\x15}\xa2\xb3`A\x90\xed|?\xa0\x96\x1aA\xfe\xd4x\x1d\x9e\xb3`A\xb0\x9d\xefg\xb8\x94\x1aA\xe4\xa5\x9b4\x9a\xb3`Ap\x9c\xa2c\xc4\x92\x1aA\x1aQ\xda\xaf\x9a\xb3`A\x90\xc2\xf5hL\x91\x1aA:\xb4\xc8P\x9d\xb3`A\x80\xfb:p\xf8\x8c\x1aAh\x91\xedP\xac\xb3`AP\xd1\x91\\\x9c\x8b\x1aA8EG\xa2\xb2\xb3`A0\x18\x95T\x0c\x8b\x1aA\xbc\xe3\x14C\xb9\xb3`AP0*i\xb8\x8a\x1aA\xfe\xb2{\x12\xc1\xb3`A@\xd6\xc5m\xfc\x8a\x1aA\xc2\xa8\xa4N\xc3\xb3`A0\x08\xac\\<\x8b\x1aA\x044\x11\x04\xc5\xb3`A S\x05c\x1c\x8a\x1aAt\xb5\x15\'\xf7\xb3`A\xb0@\x82b\xf8\x89\x1aAB`\xe5\xc4\xf9\xb3`A@\x03xKX\x89\x1aA\x04\xe7\x8c"\xfa\xb3`A0\x87\x16Y\x98\x88\x1aAF\x94\xf6\x8a\xf5\xb3`A\xa0y\xc7i\xf0\x87\x1aAR\'\xa0\xcf\xe8\xb3`A\xa0y\xc7iX\x87\x1aA\x80\xb7@\x0c\xe4\xb3`A\x80\xebQx\xe0\x86\x1aA\xfc\xcb\xee\x11\xe3\xb3`A\xb0{\xf2p,\x85\x1aA\xf0\x85\xc9\x8c\xe6\xb3`A\xe0\xc7\x98{ \x84\x1aAN@\x13\xf3\xf4\xb3`A\x80\x8c\xb9k(\x82\x1aA\xf6u\xe0r\x1f\xb4`A\x00\x88\xf4[\x00\x82\x1aA\xa6,CF2\xb4`A\x10\x1d\xc9eH\x82\x1aA\xc4 \xb0*7\xb4`A`B>h\x8c\x83\x1aA\xf8S\xe3q@\xb4`A s\xd7R\x8c\x89\x1aA \xb0r<Y\xb4`A\xb0\xf1\xd2Ml\x8b\x1aA\xe6?\xa4#X\xb4`A\xe0\xe0\x0bS\xd4\x8c\x1aA\x16\xd9\xce\xfbW\xb4`A\x80a2UD\x8e\x1aA\x82\x04\xc5_Z\xb4`A\xb0.nc(\x8f\x1aA<,\xd4\xe8^\xb4`A \x97\xffPT\x91\x1aA\x90\xc2\xf5"[\xb4`A\xa0y\xc7i\x9c\x93\x1aA\xb8\x8d\x06RW\xb4`A\xd0\xd5VlT\x94\x1aAB>\xe8MX\xb4`A\xc0B\xadi\xb8\x98\x1aA\xbe0\x990c\xb4`A`\xbaIL\x98\x99\x1aA\xdcF\x03\xdei\xb4`APt$W<\x9a\x1aA\x1a\xc0[(t\xb4`AP\xc1\xa8d\x00\x9b\x1aA:#J\xc9\x8c\xb4`A\xe0\xce\xf7SX\x9b\x1aA\x9a\x99\x99\xc1\x99\xb4`A\xb0\x15\xfbKL\x9b\x1aA\xf2c\xcc\xdd\x9c\xb4`A\x97\xdd\xe0K\x83\x9b\x1aA-\x07=\x1b\xb8\xb4`A@\x04\xeeOm\x9b\x1aAFXR:\xae\xb4`A\x00)\\\x8fQ\x9b\x1aA833\x0b\xb2\xb4`A\x00)\\\x8f\x15\x9b\x1aA433K\xbc\xb4`A\xf0(\\\x8f\x81\x9a\x1aA433\x8b\xc1\xb4`A\xf0(\\\x8f\xf9\x99\x1aA633\x8b\xc2\xb4`A\xf0(\\\x8f\xc9\x98\x1aA833K\xc1\xb4`A\x00)\\\x8f]\x98\x1aA833k\xbe\xb4`A\xf0(\\\x8f\xdd\x97\x1aA433\xeb\xba\xb4`A\x10)\\\x8f\xad\x96\x1aA833\x0b\xb9\xb4`A\xf0(\\\x8f\xf1\x95\x1aA433\xab\xb5\xb4`A\xf0(\\\x8fY\x95\x1aA833k\xb0\xb4`A\x00)\\\x8f\xf9\x94\x1aA\xbc\x1e\x85+\xa9\xb4`A\xf0(\\\x8f\x11\x94\x1aA\xbc\x1e\x85\xab\xa4\xb4`A\x90\x99\x99\x99I\x93\x1aA\xb8\x1e\x85k\xa4\xb4`A\xc0\x99\x99\x99}\x92\x1aA\xb8\x1e\x85k\xa2\xb4`A\xc0\x99\x99\x99\xb1\x91\x1aA\xbc\x1e\x85+\xa2\xb4`A\xa0\x99\x99\x99\xcd\x90\x1aA\xbc\x1e\x85\xab\x9d\xb4`A\xb0\x99\x99\x99%\x90\x1aA\xb8\x1e\x85\x8b\x9b\xb4`A\xb0\x99\x99\x99\x11\x8f\x1aA\xb8\x1e\x85k\x9d\xb4`A\xb0\x99\x99\x99\x81\x8e\x1aA\xb8\x1e\x85\x8b\x9a\xb4`A\xc0\x99\x99\x99-\x8e\x1aA\xb8\x1e\x85+\x9a\xb4`A\x90\x99\x99\x99\r\x8e\x1aA\xb8\x1e\x85\xab\x9c\xb4`A\xb0\x99\x99\x99\x81\x8e\x1aA\xb8\x1e\x85K\xa3\xb4`A\xa0\x99\x99\x99q\x8e\x1aA\xba\x1e\x85\xeb\xa5\xb4`A\xb0\x99\x99\x99\x11\x8e\x1aA\xb8\x1e\x85\x8b\xa8\xb4`A\xb0\x99\x99\x99%\x8d\x1aA\xbc\x1e\x85k\xaa\xb4`A\xb0\x99\x99\x99\x05\x8d\x1aA\xba\x1e\x85+\xae\xb4`A\xa0\x99\x99\x99\t\x8e\x1aA\xb8\x1e\x85+\xb5\xb4`A\xa0\x99\x99\x99\xad\x8e\x1aA\xb8\x1e\x85K\xb7\xb4`A\xa0\x99\x99\x995\x8f\x1aA433\xeb\xbd\xb4`A\xc0\x99\x99\x99\x9d\x90\x1aA433K\xbe\xb4`A\xb0\x99\x99\x99Y\x91\x1aA433\x0b\xc1\xb4`A\xc0\x99\x99\x99\x91\x92\x1aA833\xcb\xce\xb4`A\xa0\x99\x99\x99\x8d\x93\x1aA433+\xd5\xb4`A\xb0\x99\x99\x99a\x94\x1aA833\x0b\xd9\xb4`A\x00)\\\x8f\r\x96\x1aA433\x8b\xe6\xb4`A\x00)\\\x8f\xc5\x96\x1aA433\x0b\xe8\xb4`A\xf0(\\\x8f\xe9\x97\x1aA633k\xec\xb4`A\xf0(\\\x8f\x9d\x98\x1aA433\x8b\xec\xb4`A\x00)\\\x8f\xad\x99\x1aA\xb2G\xe1\xaa\xf1\xb4`A\xf0(\\\x8f\xb5\x9a\x1aA\xaeG\xe1\x8a\xf3\xb4`A\x00)\\\x8f!\x9c\x1aA\xaeG\xe1\n\xf4\xb4`A\x00)\\\x8f\x99\x9c\x1aA\xaeG\xe1j\xf4\xb4`A\x00)\\\x8f)\x9d\x1aA\xaeG\xe1\x8a\xf6\xb4`A\x80\x03F\xc6\xc8\x9d\x1aA\xe4\xb0\xd4C\xfb\xb4`A\xeb@o%,\x9d\x1aA&7\x11s\xf1\xb4`A\x80\x04\xc5O\xf0\x9d\x1aAvO\x1e\xbe\xfd\xb4`A Q\xda[4\xa0\x1aA@\xc6\xdc\r)\xb5`A\xf0\xb9\xdaJ\x88\xa0\x1aA\\m\xc5\x1c4\xb5`A\xd0\xe7jk\xe4\xa0\x1aAx\x9c\xa23K\xb5`A\x00\x81\x95C\x08\xa1\x1aA\xa6y\xc7[m\xb5`A\x80\x1d8\xe7q\xa0\x1aA\xa0\x1a/\x11~\xb5`Ap\xe0\x9cQ\x0f\x9e\x1aAp\xce\x88:\xa4\xb5`A0^\xbaI\xf4\x9e\x1aA\xbeR\x96\xdb\xb1\xb5`A\xb0@\x82\xa2-\xa2\x1aA\x90\xa0\xf8c\xbe\xb5`A\xf0s\xb5Uy\xa3\x1aA\x8euq{\xc2\xb5`A\xd0f\xd5\'b\xa5\x1aAD\xfa\xed\xef\xc4\xb5`A\xe0\xb5\x84<\xe5\xa8\x1aA*\xa9\x13\xf0\xc7\xb5`A\xd0\x88\xd2\xde\xb3\xaa\x1aA^\xbaI\x1e\xc1\xb5`A@EG2\xcb\xab\x1aA^)\xcbL\xc0\xb5`A\xc0\x0e\x9c\xf36\xae\x1aA\\\xfeCd\xc4\xb5`A\x05\x00\x00\x00P\xda\x1b<I\x9c\x1aA\xec\xc09\r\xda\xb4`A\xf2Z<d{\x9c\x1aA\x1e\x89KE\xe0\xb4`AP\xda\x1b<I\x9c\x1aA\xee\xc09\r\xda\xb4`A\xd1\xfb\x82]\x14\x9c\x1aA\xd9U\x1f\xfc\xd0\xb4`AP\xda\x1b<I\x9c\x1aA\xec\xc09\r\xda\xb4`A\x07\x00\x00\x00P@\x13aH\xaa\x1aA\xb8\x8d\x06\xce\xca\xb3`A u\x02Z\x9c\xaa\x1aA(\xed\rP\xcb\xb3`A\xb0\x13\xd0D\xac\xaa\x1aA\x84\rOc\xd3\xb3`A\xe0_vOP\xaa\x1aA\xfc\x18s\x9f\xd6\xb3`A\xf0\xe4aa \xaa\x1aA$\x97\xff\x12\xd3\xb3`A \xb9\xfcG$\xaa\x1aA\xec\xe26\x80\xcb\xb3`AP@\x13aH\xaa\x1aA\xb8\x8d\x06\xce\xca\xb3`A\x10\x00\x00\x00@W[q<\xa4\x1aA`\x07\xceq\x19\xb4`A\x00_\x98LD\xa5\x1aA\x98\xbb\x96\xa0\x1a\xb4`A\x10\x02+G\x84\xa6\x1aAz\x14\xae\xc1"\xb4`A A\xf1c\xec\xa8\x1aA.!\x1fJ(\xb4`A\xc0B\xadiT\xaa\x1aAt\xd7\x12n)\xb4`A\x00\x81\x95C\xd4\xaa\x1aA\xd8\x81s\xda,\xb4`A\x90\xb0\xe1i\x90\xaa\x1aAx\x9c\xa2o1\xb4`A0C\x1ck\x9c\xa9\x1aA(\x0f\x0b\xb3A\xb4`A\x80\x85ZS\x18\xa9\x1aA\xae\xb6b\xffD\xb4`A\x00\xbc\x05R\x14\xa8\x1aA~\xfb:BF\xb4`A\xa0\nFe \xa7\x1aA\xf6\x97\xdd\xefD\xb4`AP0*il\xa6\x1aA\xd2\x00\xdeN;\xb4`A |a\xb2\xb5\xa5\x1aA\x00\xde\x02\xaf1\xb4`A\xb0\x15\xfbK\xdc\xa3\x1aA\xb4\xeas\x9d#\xb4`A\xa0p=J\xbc\xa3\x1aA\\\xfeC\x04\x1e\xb4`A@W[q<\xa4\x1aA`\x07\xceq\x19\xb4`A\x01\x03\x00\x00\x00\x01\x00\x00\x00\x1c\x00\x00\x00\xf6(\\\x8f\xd5\x9a\x1aA\xaeG\xe1\xca\x1c\xb5`A\xf6(\\\x8f\xd5\x99\x1aA\xaeG\xe1\xea\x15\xb5`A\xf6(\\\x8f\xa1\x98\x1aA\xaeG\xe1\x8a\x11\xb5`A\xf6(\\\x8f\x11\x98\x1aA\xaeG\xe1\xaa\x10\xb5`A\xf6(\\\x8f\xf1\x96\x1aA\xaeG\xe1\xea\x0c\xb5`A\x9a\x99\x99\x99Q\x96\x1aA\xaeG\xe1*\r\xb5`A\x9a\x99\x99\x99\x85\x95\x1aA\xaeG\xe1j\x0c\xb5`A\x9a\x99\x99\x991\x95\x1aA\xaeG\xe1\xaa\n\xb5`A\x9a\x99\x99\x99\x11\x95\x1aA\xaeG\xe1\xea\x03\xb5`A\x9a\x99\x99\x99\xcd\x94\x1aA\xaeG\xe1J\x00\xb5`A\x9a\x99\x99\x99!\x94\x1aA\xaeG\xe1J\xfc\xb4`A\x9a\x99\x99\x99\xa9\x93\x1aA\xaeG\xe1\xea\xfb\xb4`A\x9a\x99\x99\x99U\x93\x1aA\xaeG\xe1j\x02\xb5`A\x9a\x99\x99\x99)\x93\x1aA\xaeG\xe1\xea\t\xb5`A\x9a\x99\x99\x99\t\x93\x1aA\xaeG\xe1\xca\r\xb5`A\x9a\x99\x99\x99\x15\x93\x1aA\xaeG\xe1\xca\x12\xb5`A\x9a\x99\x99\x99\x99\x93\x1aA\xaeG\xe1\xca\x18\xb5`A\x9a\x99\x99\x99\xcd\x93\x1aA\xaeG\xe1j&\xb5`A\x9a\x99\x99\x99M\x94\x1aA\xaeG\xe1\xea)\xb5`A\x9a\x99\x99\x99\x1d\x95\x1aA\xaeG\xe1\xca-\xb5`A\x9a\x99\x99\x99%\x96\x1aA\xaeG\xe1\x8a8\xb5`A\x9a\x99\x99\x991\x97\x1aA\xaeG\xe1\n;\xb5`A\xf6(\\\x8f9\x98\x1aA)\\\x8fj<\xb5`A\xf6(\\\x8fy\x99\x1aA)\\\x8f\xea<\xb5`A\xf6(\\\x8f1\x9a\x1aA\xaeG\xe1j4\xb5`A\xf6(\\\x8f\x91\x9a\x1aA\xaeG\xe1\xca*\xb5`A\xf6(\\\x8f\xe5\x9a\x1aA\xaeG\xe1\xaa#\xb5`A\xf6(\\\x8f\xd5\x9a\x1aA\xaeG\xe1\xca\x1c\xb5`A', b'\x01\x06\x00\x00\x00\x03\x00\x00\x00\x01\x03\x00\x00\x00\x01\x00\x00\x00\xe2\x00\x00\x00\xa0\xe6\x1dg\x18\xae\x1aA\x16jM5\xe5\xb4`A\xb0.nc@\xad\x1aA\xc4\xb1.r\xdd\xb4`A\x10\xbe0Y\x9c\xac\x1aA\xee\r\xbe&\xd3\xb4`A0\x18\x95T\x1c\xac\x1aA\\\x8f\xc2\xe1\xc6\xb4`AP\'\xa0\xc9\x11\xac\x1aA\x10X9\x10\xc5\xb4`A\x90\xc2\xf5(\r\xac\x1aA\x90\xc2\xf5\xe8\xc4\xb4`A\x90\xc2\xf5(\xbc\xab\x1aA(\\\x8fj\xbf\xb4`A\x80\xebQ\xb8\x92\xab\x1aA(\\\x8fz\xb9\xb4`A\xd0\xa3p=g\xab\x1aAp=\n\xa7\xa4\xb4`AP\xb8\x1e\x85d\xab\x1aAH\xe1zd\xa1\xb4`A@\xe1z\x14\x8a\xab\x1aA\x1e\x85\xeb\x81\x9b\xb4`A\xf0(\\\x8f\xac\xab\x1aA\x90\xc2\xf5\x08\x9a\xb4`A\xd0\xcc\xcc\xcc1\xac\x1aA\xf6(\\\x8f\x94\xb4`A\xd0\xcc\xcc\xccS\xac\x1aA\x9a\x99\x99\x89\x93\xb4`A\xe0z\x14\xae\x9c\xad\x1aA\x9a\x99\x99\t\x8b\xb4`A\xd0Mb\xd0\xc2\xad\x1aA~\x1d8\x19\x8a\xb4`A`\xbaIL\xd4\xad\x1aA\x1c\x9e^\x1f\x89\xb4`A`\xe5\xd0b\xb4\xae\x1aA\x02+\x874\x81\xb4`A\xe0O\x8dW\xb4\xaf\x1aA\xd0D\xd8\x08~\xb4`A033s<\xb0\x1aAV\xec/\x1b~\xb4`A\xf0(\\\x8f\xe9\xb0\x1aA\x9a\x99\x999{\xb4`A0333\xb7\xb1\x1aA\x00\x00\x00\xa0{\xb4`A@\xe1z\x14A\xb2\x1aA\xf6(\\\x17|\xb4`A@\n\xd7\xa3\x8e\xb2\x1aAH\xe1z\xccw\xb4`A\x00\xce\x19\x91\x17\xb3\x1aA\xf6(\\Wo\xb4`APb\x10X\x18\xb3\x1aAd\xaa`\no\xb4`Ap=\nW\x1c\xb2\x1aA\xa8\xa4N\x08O\xb4`AP\xaf\x94e\xe4\xb1\x1aA\xe26\x1a\xf0H\xb4`A\xe0\xd0"[d\xb1\x1aAV\x0e-hE\xb4`A@Gr9\xb4\xb0\x1aA\x0e\x9c3\xdc>\xb4`AP\xc1\xa8dT\xb0\x1aAJY\x86\x8c7\xb4`A\xc0\x17&\x13&\xb0\x1aA(\xed\r\x9c+\xb4`A\x10\xaeG\xe1,\xaf\x1aA\xc2\xf5(,!\xb4`A@EG\xb2\xcf\xad\x1aA\x9aw\x9c@!\xb4`A\xc0m4@|\xad\x1aA(~\x8c\x9f"\xb4`A0L\xa6J\xb0\xac\x1aA\x96\xb2\x0c\xc5!\xb4`A\xb0Pk\xda\x9f\xac\x1aA\x8c\xdbhR!\xb4`A\xd0\xa3p=\x0f\xac\x1aA\xaeG\xe1Z!\xb4`A0333\xbb\xab\x1aA\x00\x00\x00\xf0"\xb4`A\xc0\xf5(\\p\xab\x1aA\x1e\x85\xeby%\xb4`A\xc0\xf5(\\<\xab\x1aAR\xb8\x1eU(\xb4`A\xd0\xcc\xcc\xcc\xa5\xaa\x1aA\xaeG\xe1\x9a6\xb4`A\xd0\xa3p=\xa8\xaa\x1aA\x1e\x85\xeb\x81=\xb4`A@\n\xd7\xa3\xcb\xaa\x1aA\x1e\x85\xeb\xa1@\xb4`A0333\xfb\xaa\x1aA\xf6(\\\x17B\xb4`AP\xb8\x1e\x85\xfc\xaa\x1aA\xb8\x1e\x85CF\xb4`A\xd0\xa3p=\xef\xaa\x1aAH\xe1z\xc4G\xb4`A\x10\xd7\xa3p\xb5\xaa\x1aA\x9a\x99\x99iJ\xb4`A@\xe1z\x14\xa7\xa9\x1aA\xb8\x1e\x85\xb3K\xb4`A \x85\xebQ\x81\xa9\x1aA\x9a\x99\x99\x91K\xb4`Ap-!\x9f\xca\xa7\x1aAH.\xff\xdbE\xb4`A\xa0\nFe \xa7\x1aA\xf6\x97\xdd\xefD\xb4`Ap\x9aw\x9c\xa9\xa6\x1aA(\x0f\x0b\x95>\xb4`A0333\x8b\xa4\x1aA\xf6(\\\x87.\xb4`A\xe0z\x14\xaeP\xa4\x1aAR\xb8\x1e\xdd+\xb4`A\x10\xd7\xa3p\x05\xa4\x1aAH\xe1z\xcc&\xb4`Ap\x02\x9a\xc8\xe1\xa3\x1aA|a2\xc7#\xb4`A\xb0\x15\xfbK\xdc\xa3\x1aA\xb4\xeas\x9d#\xb4`A\xe0\xd7\x81\xf3\xd8\xa3\x1aA\x9c\x11\xa5\x07#\xb4`A0\\\x8f\xc2\xa3\xa3\x1aA\xe2z\x14\x86\x1e\xb4`A0333\xa9\xa3\x1aA(\\\x8fJ\x1d\xb4`A\xd0\xa3p=\xc9\xa3\x1aAfff\x9e\x1b\xb4`A\xd0\xcc\xcc\xcc\x12\xa4\x1aA\x90\xc2\xf5H\x18\xb4`A\xe0z\x14\xae5\xa4\x1aAR\xb8\x1e\x8d\x17\xb4`A\x00\x00\x00\x00v\xa4\x1aA\xb8\x1e\x85c\x17\xb4`A@\n\xd7\xa3\xfd\xa5\x1aA\xc2\xf5(\x1c\x1b\xb4`A@\n\xd7\xa30\xa6\x1aA\n\xd7\xa3\xe8\x1b\xb4`A@\xe1z\x14\x87\xa6\x1aA\xaeG\xe1\xb2\x1e\xb4`A\xd0\xcc\xcc\xcc\xfe\xa6\x1aA\x90\xc2\xf5\xa0!\xb4`A@\n\xd7\xa3\xc4\xa8\x1aAH\xe1z\\&\xb4`A\xe0z\x14\xae\x7f\xa9\x1aA\xaeG\xe1\xb2\'\xb4`A\xd0\xa3p=p\xaa\x1aA\xe2z\x14\x96&\xb4`A@\n\xd7\xa3\xa2\xab\x1aA\x90\xc2\xf5\xe0 \xb4`AP\xb8\x1e\x85\xe1\xab\x1aA\xc2\xf5(,\x1e\xb4`A\xe0z\x14\xee\x16\xac\x1aA\xb47\xf8\xaa\x1b\xb4`A\xf0\x044Q\x14\xac\x1aA\xf6u\xe0\xa8\x1a\xb4`A\xa0\xe6\x1dg\xb4\xad\x1aA\xd0\xb3Y\x8d\xfd\xb3`A\x10\x0b\xb5f\xb8\xae\x1aA\xd0f\xd5\x8d\xf3\xb3`A\xd0+eY\x9c\xae\x1aAl\x9aw\xc4\xe7\xb3`A\xb0\xeasu\x04\xae\x1aA\x86\xc9T\x15\xd9\xb3`A\xc0R\x96a\xef\xad\x1aAj\xdeq\x9e\xd7\xb3`A\xd0\xcc\xcc\xcc\xdd\xac\x1aAfff\xc6\xd1\xb3`A\xc0\x1e\x85\xab\x9f\xaa\x1aA&S\x05\xff\xcc\xb3`A\xb0\x13\xd0D\xac\xaa\x1aA\x84\rOc\xd3\xb3`A\xe0_vOP\xaa\x1aA\xfc\x18s\x9f\xd6\xb3`A\xf0\xe4aa \xaa\x1aA$\x97\xff\x12\xd3\xb3`A`\x98L\x15!\xaa\x1aAR\'\xa0\xb5\xd1\xb3`A\xf0Q\xb8\x1e\xc0\xa9\x1aA\\\x8f\xc2E\xda\xb3`A\x10\xd7\xa3p\xca\xa9\x1aA>\n\xd7\x93\xdb\xb3`A@\n\xd7\xa3\x02\xaa\x1aA\xaeG\xe1*\xdc\xb3`A\xf0(\\\x8f$\xaa\x1aA\xe2z\x14\xf6\xdd\xb3`A\xc0\xf5(\\$\xaa\x1aAR\xb8\x1e]\xdf\xb3`A0\\\x8f\xc2{\xa9\x1aA\n\xd7\xa3p\xf4\xb3`A@\xe1z\x14(\xa9\x1aA\x86\xebQX\xf6\xb3`A\x10\xd7\xa3p\xa2\xa8\x1aA\xf6(\\\xf7\xf5\xb3`A\xf0Q\xb8\x1e$\xa8\x1aA\n\xd7\xa3\xf8\xf3\xb3`A\x10\xd7\xa3\xb0\xf6\xa7\x1aAv\xe0\x9c\x03\xf3\xb3`A\x00\xe7\x8ch\xac\xa7\x1aAH\xe1z.\xf3\xb3`A`9\xb4H|\xa6\x1aA\x8a\xfde\xbf\xe9\xb3`A\x90:\x01M!\xa4\x1aA\xb0\x03\xe7|\xd3\xb3`A\xc0\xf5(\\\n\xa4\x1aA\x14\xaeG\xf9\xd2\xb3`A\x10\xaeG\xe1\xa7\xa3\x1aA\xaeG\xe1\xb2\xd1\xb3`A\xd0\xa3p=\xfa\xa2\x1aA\xf6(\\\xbf\xbc\xb3`AP\xb8\x1e\x85\x83\xa2\x1aA\xc2\xf5(l\xba\xb3`A\xc0\x1e\x85\xeb_\xa2\x1aA\x00\x00\x00\x10\xba\xb3`A\xd0\xa3p=l\xa0\x1aA\\\x8f\xc2\x8d\xba\xb3`A \x85\xebQH\xa0\x1aA\xaeG\xe1\xda\xba\xb3`A0333\x96\x9f\x1aA\xecQ\xb8&\xbd\xb3`A\xd0\xcc\xcc\xccq\x9f\x1aA\xecQ\xb8\xe6\xbd\xb3`A0\\\x8f\xc2e\x9f\x1aA\xc2\xf5(\xa4\xbf\xb3`A0333o\x9f\x1aA\xf6(\\\xe7\xc0\xb3`A\xd0\xa3p=\x9f\x9f\x1aA\x14\xaeG)\xc3\xb3`A\xd0\xa3p=\xd8\x9f\x1aA\x90\xc2\xf5P\xc5\xb3`A\xd0\xcc\xcc\xcc\xf5\x9f\x1aA\xf6(\\\x0f\xc7\xb3`A\xd0\xa3p=\x00\xa0\x1aA\xe2z\x14n\xc8\xb3`A\x00\x00\x00\x00\x06\xa0\x1aA\xe2z\x14f\xca\xb3`A\xc0\x1e\x85\xeb\xc1\x9f\x1aA433\x9b\xd5\xb3`A\xd0\xa3p=\xb3\x9f\x1aA\x9a\x99\x99q\xd6\xb3`A\xf0(\\\x8f\x8e\x9d\x1aA\xa4p=*\xe4\xb3`A\x10\xaeG\xe1=\x9d\x1aA\x90\xc2\xf5\xe0\xe5\xb3`A\xd0\xa3p=\x8d\x9c\x1aA\\\x8f\xc2\xbd\xe8\xb3`A\x10\xaeG\xe1\x98\x9a\x1aA\\\x8f\xc2\x85\xea\xb3`A\xc0\x1e\x85\xeb\xee\x99\x1aA\x9a\x99\x99\xa1\xea\xb3`AP\xb8\x1e\x85\xc0\x99\x1aA\x14\xaeG\x91\xea\xb3`A\x10\xaeG\xe1\x86\x99\x1aA\n\xd7\xa3x\xe9\xb3`A \x85\xebQ\x9a\x98\x1aA\xa4p=R\xe4\xb3`A\xd0\xcc\xcc\xcc\xac\x98\x1aA\x90\xc2\xf5p\xe2\xb3`A\xc0\xf5(\\\xef\x98\x1aA\xe2z\x14\xde\xe0\xb3`A\xc0\x1e\x85\xeb\xac\x9a\x1aA\xecQ\xb8\x1e\xd8\xb3`A\x10a\xc3\x93\xc4\x9a\x1aA*\xcb\x10\xcd\xd7\xb3`A\xb0%\xe4C\xd4\x9b\x1aA\xf2c\xcc\xdf\xcd\xb3`A\xc0\x98\xbbVH\x9c\x1aA$\xb9\xfc\x07\xc3\xb3`A\x00;pNP\x9c\x1aA\x16HP\x02\xbe\xb3`A\xc0\xd3+\xe5\x00\x9c\x1aA\xe2z\x14\xd4\xb4\xb3`A\xb0\xe1\xe9\x95\xfb\x9b\x1aA\xec\xe26\x9e\xb4\xb3`A\x10O\xafT\x14\x9b\x1aA\x04V\x0e\xc7\xad\xb3`A\xc0\x96\x90Op\x99\x1aA\xd8\x12\xf2\xa3\xa4\xb3`A\xe0q\x8aN\xb4\x98\x1aAt\xb5\x15}\xa2\xb3`A\x90\xed|?\xa0\x96\x1aA\xfe\xd4x\x1d\x9e\xb3`A\xb0\x9d\xefg\xb8\x94\x1aA\xe4\xa5\x9b4\x9a\xb3`Ap\x00o\x81\xc4\x92\x1aA\xaa\xf1\xd2\xaf\x9a\xb3`A\xc0\x1e\x85\xebk\x8c\x1aA\xf6(\\\xd7\xb4\xb3`A\xf0Q\xb8\x1e\x12\x8c\x1aA\xd8\xa3p\x85\xb6\xb3`A\xc0\xf5(\\\xb8\x8b\x1aA\xcc\xcc\xccL\xb8\xb3`A\xd0\x81sF9\x8b\x1aA\xb2{\xf2\xee\xc4\xb3`A0\x08\xac\\<\x8b\x1aA\x044\x11\x04\xc5\xb3`A S\x05c\x1c\x8a\x1aAt\xb5\x15\'\xf7\xb3`A\xb0@\x82b\xf8\x89\x1aAB`\xe5\xc4\xf9\xb3`A\xc0[ \xc1\xb8\x89\x1aA.!\x1f\xea\xf9\xb3`A\x10\xd7\xa3p\xa6\x89\x1aA\xaeG\xe1\xca\xfa\xb3`A\x10\xd7\xa3pv\x89\x1aA\x14\xaeG\x81\xfb\xb3`A\xf0Q\xb8\x1e\x1f\x89\x1aA\n\xd7\xa3\x80\xfa\xb3`A\x10\xd7\xa3p\xd4\x88\x1aAfff\xfe\xf7\xb3`A`Di\xef\x9c\x88\x1aA\x04V\x0e\xa7\xf5\xb3`A0\x87\x16Y\x98\x88\x1aAF\x94\xf6\x8a\xf5\xb3`AP\xe3\xa5\xdb\x95\x88\x1aA\n\xd7\xa3Z\xf5\xb3`A\xd0\xcc\xcc\xcc\xa8\x87\x1aA\xaeG\xe1Z\xeb\xb3`A\x10\xd7\xa3p\x90\x87\x1aAfff\xf6\xe9\xb3`A\xc0\xf5(\\{\x87\x1aAp=\n\x17\xe8\xb3`A\x10\xaeG\xe1u\x87\x1aA\xc2\xf5(\xdc\xe6\xb3`A\xa0W\xca\xf2\x88\x87\x1aA\xbe\x0e\x9c\x91\xe5\xb3`A\xa0y\xc7iX\x87\x1aA\x80\xb7@\x0c\xe4\xb3`A\x80\xebQx\xe0\x86\x1aA\xfc\xcb\xee\x11\xe3\xb3`A\xb0{\xf2p,\x85\x1aA\xf0\x85\xc9\x8c\xe6\xb3`A\xe0\xc7\x98{ \x84\x1aAN@\x13\xf3\xf4\xb3`A\x00\xd5x),\x82\x1aA\xe4\xf2\x1f"\x1f\xb4`A \x85\xebQJ\x82\x1aA\xe2z\x14\xe60\xb4`A\xd0\xcc\xcc\xccX\x82\x1aA\x9a\x99\x99\xd94\xb4`A\xc0\x1e\x85\xebb\x82\x1aA\x00\x00\x00\xe06\xb4`AP\xda\x1b|~\x82\x1aA\xa0\x1a/\xb78\xb4`A`B>h\x8c\x83\x1aA\xf8S\xe3q@\xb4`A\x90\x18\x04\xd6\xe5\x83\x1aA\xd6\xe7j\xe3A\xb4`A0333\x15\x84\x1aA\x00\x00\x00xB\xb4`A\x10\xaeG\xe1\xa0\x84\x1aA\xd8\xa3p-D\xb4`A@\xe1z\x14X\x85\x1aA\xe2z\x14\x86E\xb4`A@\n\xd7\xa3\xcd\x86\x1aA\xaeG\xe1\xcaK\xb4`A@\n\xd7\xa3~\x87\x1aA\xb8\x1e\x85sO\xb4`A\x00\x00\x00\x00\x91\x87\x1aA\xd8\xa3p=P\xb4`A\xe06\x1a\x00\xa0\x87\x1aAvO\x1eJQ\xb4`A s\xd7R\x8c\x89\x1aA \xb0r<Y\xb4`A\xb0\xf1\xd2Ml\x8b\x1aA\xe6?\xa4#X\xb4`A\xe0\xe0\x0bS\xd4\x8c\x1aA\x16\xd9\xce\xfbW\xb4`A\x80a2UD\x8e\x1aA\x82\x04\xc5_Z\xb4`A\xb0.nc(\x8f\x1aA<,\xd4\xe8^\xb4`A \x97\xffPT\x91\x1aA\x90\xc2\xf5"[\xb4`A\xa0y\xc7i\x9c\x93\x1aA\xb8\x8d\x06RW\xb4`A\xb0\xad\xd8\x1f\xc3\x93\x1aA\xb8\xaf\x03\x87W\xb4`A\x00\x00\x00\x00\xf7\x93\x1aAp=\n\x1fW\xb4`A\xc0\x1e\x85\xeb\xdf\x98\x1aAp=\n7a\xb4`AP\xb8\x1e\x85\x11\x99\x1aA\x00\x00\x00\x08b\xb4`AP\xb8\x1e\x85@\x9a\x1aAR\xb8\x1eEs\xb4`A \x85\xebQZ\x9b\x1aA\xb8\x1e\x85\x1b\x8f\xb4`A0\\\x8f\xc2!\x9c\x1aA(\\\x8f\x12\xa9\xb4`A\x10\xaeG\xe1;\x9c\x1aA\x00\x00\x00\x00\xb5\xb4`AP\xb8\x1e\x85\xa6\x9c\x1aA\x90\xc2\xf5X\xc1\xb4`A@\xe1z\x14\xc8\x9d\x1aAH\xe1zT\xde\xb4`A\xc0\x1e\x85\xeb\x10\x9e\x1aA\xc2\xf5(\xa4\xe4\xb4`A \x85\xebQa\x9e\x1aA\xf6(\\\xaf\xea\xb4`A@\xe1z\x14B\x9f\x1aA\x90\xc2\xf5\xd8\xf6\xb4`AP\xb8\x1e\x85\x80\xa0\x1aA\xc2\xf5(,\r\xb5`A\xc0\xf5(\\\xdd\xa0\x1aA\xe2z\x14\x96\x15\xb5`A\xd0\xcc\xcc\xcc\x9f\xa1\x1aA\xb8\x1e\x85+1\xb5`A \x85\xebQ\xf9\xa1\x1aA\x9a\x99\x99qB\xb5`A\xf0Q\xb8\x1eC\xa2\x1aAp=\n\xdfS\xb5`A\x10\xd7\xa3pK\xa2\x1aA\x90\xc2\xf5`\\\xb5`A\xe0z\x14\xaeg\xa2\x1aA\xe2z\x14\xc6f\xb5`AP\xb8\x1e\x85\x8e\xa2\x1aA(\\\x8f\xa2p\xb5`A0\\\x8f\xc2\r\xa3\x1aA\xc2\xf5(\xe4|\xb5`A@\n\xd7\xa3s\xa3\x1aA(\\\x8fJ\x7f\xb5`A\xd0\xa3p=q\xa4\x1aAH\xe1zD\x7f\xb5`A\x00\x00\x00\x00x\xa8\x1aA\xc2\xf5(\xa4z\xb5`A@\xe1z\x14\x04\xa9\x1aA\xe2z\x14\x0ey\xb5`A\xc0\x1e\x85\xeb\xe3\xa9\x1aA(\\\x8f\xc2u\xb5`A\xc0\xf5(\\\x14\xab\x1aA\xc2\xf5(\xccp\xb5`A\xd0\xcc\xcc\xcc\x00\xae\x1aA\xe2z\x14F\\\xb5`A\xc0\x1e\x85\xebB\xae\x1aA\x9a\x99\x99AZ\xb5`A\x00\x00\x00\x00I\xae\x1aA\x00\x00\x00\x00X\xb5`A\x10\xd7\xa3pB\xb0\x1aAp=\nW@\xb5`A\xc0\xf5(\\N\xb0\x1aA\x1e\x85\xeb\x11?\xb5`A \x85\xebQq\xb0\x1aA\xaeG\xe1\x12/\xb5`A@\n\xd7\xa3W\xb0\x1aA\x9a\x99\x99\x89\x17\xb5`AP\xb8\x1e\x85h\xaf\x1aA\x1e\x85\xeb\t\xf7\xb4`A \x85\xebQX\xaf\x1aA\x1e\x85\xebQ\xf5\xb4`Ap=\n\xd7\xf8\xae\x1aA\x00\x00\x00\xc0\xee\xb4`A \xe4\x83\xde\x99\xae\x1aA\xb47\xf8`\xe8\xb4`A\xa0\xe6\x1dg\x18\xae\x1aA\x16jM5\xe5\xb4`A\x01\x03\x00\x00\x00\x01\x00\x00\x00E\x00\x00\x00\x10)\\\x8f\x85\x91\x1aAr=\nW\xc5\xb4`A\xc0\xf5(\\\x99\x91\x1aA \x85\xeby\xc7\xb4`A0333\x8d\x91\x1aA\xf8(\\g\xc9\xb4`A`\xb8\x1e\x85\xaf\x91\x1aA\xb0G\xe1B\xcb\xb4`A\x00R\xb8\x1e\xb7\x91\x1aA\x02\x00\x00\xe0\xcd\xb4`A@333\xe3\x91\x1aA\x0c\xd7\xa3@\xcf\xb4`A\x10\xaeG\xe1Q\x92\x1aA\x0c\xd7\xa3\x88\xcf\xb4`A\x00T95\xc5\x92\x1aA\xb2\xd2\x11\xfd\xd1\xb4`A\xe0\xa3p=\x8b\x93\x1aA\xc6\xf5(4\xd6\xb4`A`\xc6K\xb8\xc8\x93\x1aA\xb4\xb8g(\xd8\xb4`A\xf0\x9f\xa6\xf2j\x94\x1aA\xca\xd8hP\xdd\xb4`A0333\xc7\x94\x1aAr=\n?\xe0\xb4`A@\x119\xc7X\x95\x1aA\x18\x13\xc7\x08\xe3\xb4`A \xaeG\xe1N\x96\x1aA\xf6(\\\xbf\xe7\xb4`A@\xe1z\x14\xab\x97\x1aA\xc4\xf5(\\\xec\xb4`A\xc0\xd6\xc7\xc0!\x98\x1aA\xce:\xb1\x0b\xed\xb4`A\xf0\x1d6;m\x98\x1aAb\x86U{\xed\xb4`A \xaeG\xe1\xd8\x98\x1aA(\\\x8f\x1a\xee\xb4`A\xf0\xb9x\xce>\x99\x1aA$\x08P\x87\xef\xb4`A\x00\xd7\xa3pK\x9a\x1aA\x0c\xd7\xa3H\xf3\xb4`A0\xaeG\xe1\xee\x9a\x1aA\x90\xc2\xf5\x98\xf0\xb4`A\x00\x00\x00\x00X\x9b\x1aA \x85\xebQ\xe8\xb4`A\x10\xaeG\xe1>\x9b\x1aA\x92\xc2\xf5P\xdb\xb4`A\xe0\x1e\x85\xebB\x9b\x1aA\xf6(\\\xc7\xd4\xb4`A\xd0\xf5(\\u\x9a\x1aA\x00\x00\x00P\xcf\xb4`A\xf0\xc5$w%\x9a\x1aAt}";\xcd\xb4`A\xf0\xcc\xcc\xccR\x99\x1aA\xe4z\x14\xbe\xc7\xb4`A@\x16\xbd\xa8\xc2\x98\x1aA\x9c\x08\x80x\xc5\xb4`A\xa0\xf6\x14v\x0e\x98\x1aA&\xf6o\xa1\xc2\xb4`A\xa0\x82\x07\xc8\xda\x97\x1aA6Q\xeb\xd0\xc1\xb4`A\xe0\xa3p=\xa7\x97\x1aA\x92\xc2\xf5\x00\xc1\xb4`A \xa2m\xa7\x8f\x97\x1aA\x84\x8d\x0fk\xc0\xb4`AP\n\xd7\xa3y\x96\x1aA\xc6\xf5(\x84\xb9\xb4`A\x80g\x97\t"\x96\x1aA\xb4\x10\x80\xc7\xb7\xb4`A\xc0j, \xdf\x95\x1aA*<\xdds\xb6\xb4`AP\xe1z\x14_\x95\x1aA"\x85\xeb\xe9\xb3\xb4`A@\xc3\x87q/\x95\x1aA2\x00\xe6\xe1\xb1\xb4`A\xf0Q\xb8\x1e\x04\x95\x1aA\x90\xc2\xf5\x08\xb0\xb4`A \x85\xebQ\xed\x94\x1aA\x00\x00\x00\x18\xaa\xb4`A`\xa0fez\x94\x1aAX\x1e\x82\xc4\xa8\xb4`AP\n\xd7\xa3I\x94\x1aAH\xe1z4\xa8\xb4`A\x00)\\\x8f|\x93\x1aA\xb8\x1e\x85\xcb\xa7\xb4`A\xc0\x1e\x85\xeb\xd2\x92\x1aAR\xb8\x1e5\xa4\xb4`APZ/\xee\xc4\x91\x1aA\x14\x87\xa3\xbc\xa2\xb4`A\xf0Q\xb8\x1es\x91\x1aA(\\\x8fJ\xa2\xb4`A\xb0\xb0$\xa4\xeb\x90\x1aA\x9a}\xb1\x00\x9f\xb4`A\x00\xe0\xc4\\\xcd\x90\x1aA\x18`\x8aD\x9e\xb4`A\x10\x00\x00\x00\x85\x90\x1aA\xb0G\xe1\x82\x9c\xb4`A\xe0\xef\x9c\xd7=\x90\x1aA\x18\xad\xc1\xb2\x9c\xb4`Ap\x12\xc7\r\x1a\x90\x1aA8\xf7\xd5\xca\x9c\xb4`A\x10\xd7\xa3pD\x8f\x1aA(\\\x8fZ\x9d\xb4`A03337\x8e\x1aA \x85\xebQ\xa1\xb4`A\x00R\xb8\x1e\x19\x8e\x1aAp=\n7\xa7\xb4`A\x10\xaeG\xe16\x8d\x1aA\xc4\xf5(\xd4\xaa\xb4`A\x00\x00\x00\x00\xcb\x8c\x1aAT\xb8\x1e\x05\xab\xb4`Ap\xa4\xa1P\xef\x8c\x1aA\xd2\x7f\xa5a\xaf\xb4`A0\xb9!T\xfc\x8c\x1aAV\x92\xc2\xf1\xb0\xb4`A\xd0\x1e\x85\xeb\x11\x8d\x1aA\x9a\x99\x99\x89\xb3\xb4`A\x10\xfa\xd2u\xb9\x8d\x1aA:\x9c\xfdV\xb4\xb4`A`\n\xd7\xa3\x0f\x8e\x1aA\n\xd7\xa3\xc0\xb4\xb4`A@-\xdb\xe3m\x8e\x1aA\xf4"\xf2K\xbb\xb4`A \xaeG\xe1\x87\x8e\x1aA \x85\xeb\x19\xbd\xb4`Ap;\xd3\t\x02\x90\x1aA\xb2\xc6C\xd7\xbd\xb4`A\x00)\\\x8fO\x90\x1aA\xe2z\x14\xfe\xbd\xb4`A\x90\xe53^\xc7\x90\x1aA\xd0\x91P\x8e\xbf\xb4`A\x10~\xd1\xf4\xde\x90\x1aALa\x1d\xdd\xbf\xb4`AP\xe1z\x14p\x91\x1aA \x85\xeb\xc1\xc1\xb4`A \xd7\xa3p\x90\x91\x1aA(\\\x8f\x9a\xc2\xb4`A\x10)\\\x8f\x85\x91\x1aAr=\nW\xc5\xb4`A\x01\x03\x00\x00\x00\x01\x00\x00\x00O\x00\x00\x00\xf0\xcc\xcc\xcc\xce\x93\x1aAR\xb8\x1e\r\x1d\xb5`A\xe0\xa3p=\xba\x93\x1aA\xc4\xf5(\\\x1c\xb5`A\x00\x00\x00\x00\x9e\x93\x1aA\x00\x00\x00\x10\x1c\xb5`A \xd7\xa3p\x8a\x93\x1aAV\xb8\x1eE\x1c\xb5`A\xf0Q\xb8\x1e\xbb\x93\x1aA\xbc\x1e\x85k\x1f\xb5`A\x10)\\\x8f\xe1\x93\x1aAH\xe1z$ \xb5`A\xd0\xf5(\\\xc2\x93\x1aA\xc8\xf5(T!\xb5`A0\xaeG\xe1\xcc\x93\x1aA\xc4\xf5(\xfc&\xb5`A@\\\x8f\xc2\x96\x93\x1aAp=\n_*\xb5`AP\xf0j\x80U\x94\x1aA\x8c\xcc\r%,\xb5`A \x85\xebQ\x9d\x94\x1aA\x02\x00\x00\xd0,\xb5`A\xd0\xa5\x185:\x95\x1aA\xe2b\x9c\xf02\xb5`A0\\\x8f\xc2\x8b\x95\x1aA\x00\x00\x00 6\xb5`Ap\x8b\x9d\x11\x99\x95\x1aA\xbc\xc1\x8346\xb5`A\x00)\\\x8f\xbe\x97\x1aA\xba\x1e\x85\x839\xb5`A\xb0\xcb\xf5/\xb1\x98\x1aA\xe8\xc9aE<\xb5`A\xb0|!\xd7\xbf\x98\x1aA`\xdb\x02p<\xb5`A\xa0\x0f\x14\xa9\x0f\x99\x1aA\xd0.:X=\xb5`AP\xe1z\x14\xfb\x99\x1aAT\xb8\x1e\x05@\xb5`A\xe0\xf5(\\j\x9a\x1aA \x85\xeb\x01=\xb5`A\xc0V\xa85?\x9a\x1aA6\x11\xdf\x02<\xb5`A\xa0\xb4v\x0b)\x9a\x1aAb\xaa\xdc\x7f;\xb5`A\x00R\xb8\x1e\xf4\x99\x1aAt=\nG:\xb5`A0\x0b\xb9\x02\x8e\x99\x1aA\xbeY\xd6\x1b6\xb5`A\xb0[\xd4\xd8\x81\x99\x1aA\x88J\xb5\x9c5\xb5`A\xd0\x1e\x85\xeb\x1a\x99\x1aA\x90\xc2\xf5h1\xb5`A`\x17\xb9]\x80\x99\x1aAh_z\x80)\xb5`A\xd0\xcc\xcc\xcc\xb0\x99\x1aA \x85\xeb\xb9%\xb5`A\xd0\xf5(\\\xc5\x99\x1aA \x85\xeb\x11!\xb5`A\xe0\xcc\xcc\xcc\xcc\x99\x1aA\x90\xc2\xf5\x80 \xb5`A\x00{\x14\xae\'\x9a\x1aA\xaeG\xe1\x8a\x1f\xb5`AP\xe1z\x142\x9a\x1aA\x94\xc2\xf5\x90\x1e\xb5`AP\n\xd7\xa3f\x9a\x1aA\xd8\xa3p]\x1e\xb5`A\x10\xaeG\xe1n\x9a\x1aA\xc8\xf5(4\x1d\xb5`A\xf0\xa3p=?\x9a\x1aA(\\\x8f\xe2\x1c\xb5`A0\xd7\xa3p#\x9a\x1aA(\\\x8fj\x1b\xb5`A\xe0Q\xb8\x1e\xf0\x99\x1aA\xe0z\x14V\x1a\xb5`A\xe0\xa3p=\xdc\x99\x1aA\x0e\xd7\xa3\x98\x18\xb5`A0\xe1z\x14\xbd\x99\x1aAR\xb8\x1e\x85\x17\xb5`A\x10\x00\x00\x00\x94\x99\x1aA\x94\xc2\xf5\x90\x17\xb5`A\xe0\x1e\x85\xeb}\x99\x1aA(\\\x8f\n\x18\xb5`A`\n\xd7\xa3\x87\x99\x1aA\xb8\x1e\x85\xfb\x19\xb5`A\xc0\xf6\x10\xf7\xfa\x98\x1aA\xc8\xd5\xc3\x1f\x18\xb5`A\x90\xcd\xde\xa5\xe2\x97\x1aA\xc4I\xbfk\x14\xb5`Ap\xf7\xb8+\xa7\x97\x1aA0D\x99\xa2\x13\xb5`A@\xe1z\x14N\x96\x1aA\xb8\x1e\x85\x13\x0f\xb5`AP\xe1z\x14=\x96\x1aA\xaeG\xe1\xca\x10\xb5`A0333S\x96\x1aAH\xe1z\x8c\x11\xb5`A0333+\x96\x1aA\x9a\x99\x99\xb9\x12\xb5`A\xd0\xcc\xcc\xcc\xd6\x95\x1aA\xe2z\x14\xee\x12\xb5`A@\xe1z\x14\xb7\x95\x1aA\x9a\x99\x99A\x12\xb5`A \x85\xebQ\xa5\x95\x1aA\xf6(\\\x8f\x10\xb5`Ap\xf6n\x80j\x95\x1aAt\x1e\xef\xbc\x0e\xb5`A0"3\xca\xf4\x94\x1aA(M|\x17\x0b\xb5`A\xd0\xf5(\\\xbc\x94\x1aA\x00\x00\x00X\t\xb5`A\x10\xd7\xa3p\xdb\x94\x1aA\xf6(\\\xc7\x02\xb5`A\x90NnW\x8a\x94\x1aA\x16\xa1Y\xd7\x01\xb5`A\xd0Tiom\x94\x1aA\xfc]\xcd\x81\x01\xb5`A \xb4\n\x07\xde\x93\x1aA\x1a\x95c\xd9\xff\xb4`A@333\xb6\x93\x1aA\xb8\x1e\x85c\xff\xb4`A\x10\x00\x00\x00\xa1\x93\x1aA\x9c\x99\x99\xf9\xfe\xb4`A\xe0\xa3p=~\x93\x1aA\xba\x1e\x85C\xff\xb4`A\xc0t\x1f\x9e\x96\x93\x1aA\x14\xd75X\x03\xb5`ApB\xfd\x8d\x95\x93\x1aA\xfck\x8e|\x03\xb5`A\x80\rn5W\x93\x1aAL\x91=\xd0\x0b\xb5`A`\x10\xe2\x99A\x93\x1aA\x18\xf4\x07\xb3\x0e\xb5`Ap?Q22\x93\x1aA\xe0O\xbb\xc1\x10\xb5`A\x00R\xb8\x1e!\x93\x1aA\x9e\x99\x99\t\x13\xb5`A@\n\xd7\xa39\x93\x1aA\xd8\xa3pM\x15\xb5`AP\xb8\x1e\x85O\x93\x1aA\xb8\x1e\x85S\x16\xb5`A\x00R\xb8\x1e\x84\x93\x1aA\xd8\xa3p5\x15\xb5`A@\n\xd7\xa3 \x94\x1aA\x00\x00\x00\xa0\x13\xb5`A\xf0z\x14\xaeR\x94\x1aA\xe4z\x14N\x13\xb5`AP\xb8\x1e\x85}\x94\x1aA\x9a\x99\x99\xa9\x13\xb5`A\xe0z\x14\xae\x8c\x94\x1aA\x0c\xd7\xa3\x88\x14\xb5`A\xd0\x1e\x85\xebt\x94\x1aA\xe0z\x14>\x1c\xb5`A0\\\x8f\xc2I\x94\x1aAfff6\x1d\xb5`A`\xb8\x1e\x85+\x94\x1aA\xdc\xa3p\xcd\x1f\xb5`A\xf0\xcc\xcc\xcc\xce\x93\x1aAR\xb8\x1e\r\x1d\xb5`A', b'\x01\x06\x00\x00\x00\x03\x00\x00\x00\x01\x03\x00\x00\x00\x01\x00\x00\x00\xe6\x00\x00\x00\xb0\xfa\\\xad\xde\xa1\x1aAJ{\x83M=\xb5`A\xe0?\xa4_\xb2\xa2\x1aA\x9c\xc4 TH\xb5`A\x90\xb2\x0c\xb1&\xa3\x1aAr\xf9\x0f\x83Y\xb5`A\xb0\x82QI{\xa3\x1aA\x0e\x9c3z]\xb5`A@\xd6\xc5-\xfa\xa3\x1aA\x08=\x9b%]\xb5`A\xa0\xbb\x96\xd0\xe2\xa4\x1aA\xce\x19Q\x18c\xb5`AP\'\xa0\x89\x02\xa5\x1aAV\x9f\xab\x11f\xb5`A\xa0\xab\xad\x98f\xa6\x1aA\xec\x9e<\x02g\xb5`A\x00\x12\x14?\x01\xa7\x1aAx\x9c\xa2\x97d\xb5`A\xa0W\xca\xf2\x95\xa7\x1aA\xf0\x16H\x9ea\xb5`A@\x94\xf6\x06r\xa8\x1aADio\xc2_\xb5`A\xe0\x93\x87\x85\x1e\xa9\x1aA\x8c\xb9k\x87]\xb5`A\xd0\x81sF\xad\xa9\x1aA\x126<\xedZ\xb5`A0\xa2\xb4\xb7_\xaa\x1aA\xb4Y\xf5\x05W\xb5`A\xa0\x08\x1b^\xfa\xaa\x1aA \xd2o\xadS\xb5`A\xa0\xbd\xc1W\xe2\xab\x1aA\x06\xa3\x92\x96O\xb5`A\x80Z\xd3\xfc\xc9\xac\x1aAz\xa5,\xf3I\xb5`A0w-\xe1H\xad\x1aA\xb4\xc8v\x00D\xb5`A\xe0\xe9\x952\xbd\xad\x1aA\x16\xd9\xce\xbf:\xb5`A\xb0\x82Q\x89{\xae\x1aA\xde\x93\x87\xd12\xb5`A\xa0,C\x1c\x86\xae\x1aA@\xa4\xdf\x90)\xb5`A\x10a\xc3\x93\x0f\xaf\x1aA\x1c|a\xa0"\xb5`A\xd0x\xe9\xa6\xba\xae\x1aAb2U\xe8\x17\xb5`A\xa0\xdf\xbe\xce\xa8\xae\x1aA\xf4JY\x0e\x0e\xb5`A \xe4\x83\x1e\x85\xae\x1aA\xac\x8b\xdb\x16\x03\xb5`A0\xed\r\xbe=\xae\x1aA\xca\xa1E\xd2\xf6\xb4`A\xd0\xc3B\xad\xd2\xad\x1aA\x14a\xc3\x9f\xe9\xb4`A\xd0T\xc1h\x80\xad\x1aA,C\x1c\xbf\xdf\xb4`A\xb0.nc@\xad\x1aA\xc4\xb1.r\xdd\xb4`A\x10\xbe0Y\x9c\xac\x1aA\xee\r\xbe&\xd3\xb4`A0\x18\x95T\x1c\xac\x1aA\\\x8f\xc2\xe1\xc6\xb4`AP\'\xa0\xc9\x11\xac\x1aA\x10X9\x10\xc5\xb4`A\x90\xc2\xf5(\r\xac\x1aA\x90\xc2\xf5\xe8\xc4\xb4`A\x90\xc2\xf5(\xbc\xab\x1aA(\\\x8fj\xbf\xb4`A\x80\xebQ\xb8\x92\xab\x1aA(\\\x8fz\xb9\xb4`A\xd0\xa3p=g\xab\x1aAp=\n\xa7\xa4\xb4`AP\xb8\x1e\x85d\xab\x1aAH\xe1zd\xa1\xb4`A@\xe1z\x14\x8a\xab\x1aA\x1e\x85\xeb\x81\x9b\xb4`A\xf0(\\\x8f\xac\xab\x1aA\x90\xc2\xf5\x08\x9a\xb4`A\xd0\xcc\xcc\xcc1\xac\x1aA\xf6(\\\x8f\x94\xb4`A\xd0\xcc\xcc\xccS\xac\x1aA\x9a\x99\x99\x89\x93\xb4`A\xe0z\x14\xae\x9c\xad\x1aA\x9a\x99\x99\t\x8b\xb4`A\xd0Mb\xd0\xc2\xad\x1aA~\x1d8\x19\x8a\xb4`A`\xbaIL\xd4\xad\x1aA\x1c\x9e^\x1f\x89\xb4`A`\xe5\xd0b\xb4\xae\x1aA\x02+\x874\x81\xb4`A\xe0O\x8dW\xb4\xaf\x1aA\xd0D\xd8\x08~\xb4`A033s<\xb0\x1aAV\xec/\x1b~\xb4`A\xf0(\\\x8f\xe9\xb0\x1aA\x9a\x99\x999{\xb4`A0333\xb7\xb1\x1aA\x00\x00\x00\xa0{\xb4`A@\xe1z\x14A\xb2\x1aA\xf6(\\\x17|\xb4`A@\n\xd7\xa3\x8e\xb2\x1aAH\xe1z\xccw\xb4`A\x00\xce\x19\x91\x17\xb3\x1aA\xf6(\\Wo\xb4`APb\x10X\x18\xb3\x1aAd\xaa`\no\xb4`Ap=\nW\x1c\xb2\x1aA\xa8\xa4N\x08O\xb4`AP\xaf\x94e\xe4\xb1\x1aA\xe26\x1a\xf0H\xb4`A\xe0\xd0"[d\xb1\x1aAV\x0e-hE\xb4`A@Gr9\xb4\xb0\x1aA\x0e\x9c3\xdc>\xb4`AP\xc1\xa8dT\xb0\x1aAJY\x86\x8c7\xb4`A\xc0\x17&\x13&\xb0\x1aA(\xed\r\x9c+\xb4`A\x10\xaeG\xe1,\xaf\x1aA\xc2\xf5(,!\xb4`A@EG\xb2\xcf\xad\x1aA\x9aw\x9c@!\xb4`A\xc0m4@|\xad\x1aA(~\x8c\x9f"\xb4`A0L\xa6J\xb0\xac\x1aA\x96\xb2\x0c\xc5!\xb4`A\xb0Pk\xda\x9f\xac\x1aA\x8c\xdbhR!\xb4`A\xd0\xa3p=\x0f\xac\x1aA\xaeG\xe1Z!\xb4`A0333\xbb\xab\x1aA\x00\x00\x00\xf0"\xb4`A\xc0\xf5(\\p\xab\x1aA\x1e\x85\xeby%\xb4`A\xc0\xf5(\\<\xab\x1aAR\xb8\x1eU(\xb4`A\xd0\xcc\xcc\xcc\xa5\xaa\x1aA\xaeG\xe1\x9a6\xb4`A\xd0\xa3p=\xa8\xaa\x1aA\x1e\x85\xeb\x81=\xb4`A@\n\xd7\xa3\xcb\xaa\x1aA\x1e\x85\xeb\xa1@\xb4`A0333\xfb\xaa\x1aA\xf6(\\\x17B\xb4`AP\xb8\x1e\x85\xfc\xaa\x1aA\xb8\x1e\x85CF\xb4`A\xd0\xa3p=\xef\xaa\x1aAH\xe1z\xc4G\xb4`A\x10\xd7\xa3p\xb5\xaa\x1aA\x9a\x99\x99iJ\xb4`A@\xe1z\x14\xa7\xa9\x1aA\xb8\x1e\x85\xb3K\xb4`A \x85\xebQ\x81\xa9\x1aA\x9a\x99\x99\x91K\xb4`Ap-!\x9f\xca\xa7\x1aAH.\xff\xdbE\xb4`A\xa0\nFe \xa7\x1aA\xf6\x97\xdd\xefD\xb4`Ap\x9aw\x9c\xa9\xa6\x1aA(\x0f\x0b\x95>\xb4`A0333\x8b\xa4\x1aA\xf6(\\\x87.\xb4`A\xe0z\x14\xaeP\xa4\x1aAR\xb8\x1e\xdd+\xb4`A\x10\xd7\xa3p\x05\xa4\x1aAH\xe1z\xcc&\xb4`Ap\x02\x9a\xc8\xe1\xa3\x1aA|a2\xc7#\xb4`A\xb0\x15\xfbK\xdc\xa3\x1aA\xb4\xeas\x9d#\xb4`A\xe0\xd7\x81\xf3\xd8\xa3\x1aA\x9c\x11\xa5\x07#\xb4`A0\\\x8f\xc2\xa3\xa3\x1aA\xe2z\x14\x86\x1e\xb4`A0333\xa9\xa3\x1aA(\\\x8fJ\x1d\xb4`A\xd0\xa3p=\xc9\xa3\x1aAfff\x9e\x1b\xb4`A\xd0\xcc\xcc\xcc\x12\xa4\x1aA\x90\xc2\xf5H\x18\xb4`A\xe0z\x14\xae5\xa4\x1aAR\xb8\x1e\x8d\x17\xb4`A\x00\x00\x00\x00v\xa4\x1aA\xb8\x1e\x85c\x17\xb4`A@\n\xd7\xa3\xfd\xa5\x1aA\xc2\xf5(\x1c\x1b\xb4`A@\n\xd7\xa30\xa6\x1aA\n\xd7\xa3\xe8\x1b\xb4`A@\xe1z\x14\x87\xa6\x1aA\xaeG\xe1\xb2\x1e\xb4`A\xd0\xcc\xcc\xcc\xfe\xa6\x1aA\x90\xc2\xf5\xa0!\xb4`A@\n\xd7\xa3\xc4\xa8\x1aAH\xe1z\\&\xb4`A\xe0z\x14\xae\x7f\xa9\x1aA\xaeG\xe1\xb2\'\xb4`A\xd0\xa3p=p\xaa\x1aA\xe2z\x14\x96&\xb4`A@\n\xd7\xa3\xa2\xab\x1aA\x90\xc2\xf5\xe0 \xb4`AP\xb8\x1e\x85\xe1\xab\x1aA\xc2\xf5(,\x1e\xb4`A\xe0z\x14\xee\x16\xac\x1aA\xb47\xf8\xaa\x1b\xb4`A\xf0\x044Q\x14\xac\x1aA\xf6u\xe0\xa8\x1a\xb4`A\xa0\xe6\x1dg\xb4\xad\x1aA\xd0\xb3Y\x8d\xfd\xb3`A\x10\x0b\xb5f\xb8\xae\x1aA\xd0f\xd5\x8d\xf3\xb3`A\xd0+eY\x9c\xae\x1aAl\x9aw\xc4\xe7\xb3`A\xb0\xeasu\x04\xae\x1aA\x86\xc9T\x15\xd9\xb3`A\xc0R\x96a\xef\xad\x1aAj\xdeq\x9e\xd7\xb3`A\xd0\xcc\xcc\xcc\xdd\xac\x1aAfff\xc6\xd1\xb3`A\xc0\x1e\x85\xab\x9f\xaa\x1aA&S\x05\xff\xcc\xb3`A\xb0\x13\xd0D\xac\xaa\x1aA\x84\rOc\xd3\xb3`A\xe0_vOP\xaa\x1aA\xfc\x18s\x9f\xd6\xb3`A\xf0\xe4aa \xaa\x1aA$\x97\xff\x12\xd3\xb3`A`\x98L\x15!\xaa\x1aAR\'\xa0\xb5\xd1\xb3`A\xf0Q\xb8\x1e\xc0\xa9\x1aA\\\x8f\xc2E\xda\xb3`A\x10\xd7\xa3p\xca\xa9\x1aA>\n\xd7\x93\xdb\xb3`A@\n\xd7\xa3\x02\xaa\x1aA\xaeG\xe1*\xdc\xb3`A\xf0(\\\x8f$\xaa\x1aA\xe2z\x14\xf6\xdd\xb3`A\xc0\xf5(\\$\xaa\x1aAR\xb8\x1e]\xdf\xb3`A0\\\x8f\xc2{\xa9\x1aA\n\xd7\xa3p\xf4\xb3`A@\xe1z\x14(\xa9\x1aA\x86\xebQX\xf6\xb3`A\x10\xd7\xa3p\xa2\xa8\x1aA\xf6(\\\xf7\xf5\xb3`A\xf0Q\xb8\x1e$\xa8\x1aA\n\xd7\xa3\xf8\xf3\xb3`A\x10\xd7\xa3\xb0\xf6\xa7\x1aAv\xe0\x9c\x03\xf3\xb3`A\x00\xe7\x8ch\xac\xa7\x1aAH\xe1z.\xf3\xb3`A`9\xb4H|\xa6\x1aA\x8a\xfde\xbf\xe9\xb3`A\x90:\x01M!\xa4\x1aA\xb0\x03\xe7|\xd3\xb3`A\xc0\xf5(\\\n\xa4\x1aA\x14\xaeG\xf9\xd2\xb3`A\x10\xaeG\xe1\xa7\xa3\x1aA\xaeG\xe1\xb2\xd1\xb3`A\xd0\xa3p=\xfa\xa2\x1aA\xf6(\\\xbf\xbc\xb3`AP\xb8\x1e\x85\x83\xa2\x1aA\xc2\xf5(l\xba\xb3`A\xc0\x1e\x85\xeb_\xa2\x1aA\x00\x00\x00\x10\xba\xb3`A\xd0\xa3p=l\xa0\x1aA\\\x8f\xc2\x8d\xba\xb3`A \x85\xebQH\xa0\x1aA\xaeG\xe1\xda\xba\xb3`A0333\x96\x9f\x1aA\xecQ\xb8&\xbd\xb3`A\xd0\xcc\xcc\xccq\x9f\x1aA\xecQ\xb8\xe6\xbd\xb3`A0\\\x8f\xc2e\x9f\x1aA\xc2\xf5(\xa4\xbf\xb3`A0333o\x9f\x1aA\xf6(\\\xe7\xc0\xb3`A\xd0\xa3p=\x9f\x9f\x1aA\x14\xaeG)\xc3\xb3`A\xd0\xa3p=\xd8\x9f\x1aA\x90\xc2\xf5P\xc5\xb3`A\xd0\xcc\xcc\xcc\xf5\x9f\x1aA\xf6(\\\x0f\xc7\xb3`A\xd0\xa3p=\x00\xa0\x1aA\xe2z\x14n\xc8\xb3`A\x00\x00\x00\x00\x06\xa0\x1aA\xe2z\x14f\xca\xb3`A\xc0\x1e\x85\xeb\xc1\x9f\x1aA433\x9b\xd5\xb3`A\xd0\xa3p=\xb3\x9f\x1aA\x9a\x99\x99q\xd6\xb3`A\xf0(\\\x8f\x8e\x9d\x1aA\xa4p=*\xe4\xb3`A\x10\xaeG\xe1=\x9d\x1aA\x90\xc2\xf5\xe0\xe5\xb3`A\xd0\xa3p=\x8d\x9c\x1aA\\\x8f\xc2\xbd\xe8\xb3`A\x10\xaeG\xe1\x98\x9a\x1aA\\\x8f\xc2\x85\xea\xb3`A\xc0\x1e\x85\xeb\xee\x99\x1aA\x9a\x99\x99\xa1\xea\xb3`AP\xb8\x1e\x85\xc0\x99\x1aA\x14\xaeG\x91\xea\xb3`A\x10\xaeG\xe1\x86\x99\x1aA\n\xd7\xa3x\xe9\xb3`A \x85\xebQ\x9a\x98\x1aA\xa4p=R\xe4\xb3`A\xd0\xcc\xcc\xcc\xac\x98\x1aA\x90\xc2\xf5p\xe2\xb3`A\xc0\xf5(\\\xef\x98\x1aA\xe2z\x14\xde\xe0\xb3`A\xc0\x1e\x85\xeb\xac\x9a\x1aA\xecQ\xb8\x1e\xd8\xb3`A\x10a\xc3\x93\xc4\x9a\x1aA*\xcb\x10\xcd\xd7\xb3`A\xb0%\xe4C\xd4\x9b\x1aA\xf2c\xcc\xdf\xcd\xb3`A\xc0\x98\xbbVH\x9c\x1aA$\xb9\xfc\x07\xc3\xb3`A\x00;pNP\x9c\x1aA\x16HP\x02\xbe\xb3`A\xc0\xd3+\xe5\x00\x9c\x1aA\xe2z\x14\xd4\xb4\xb3`A\xb0\xe1\xe9\x95\xfb\x9b\x1aA\xec\xe26\x9e\xb4\xb3`A\x10O\xafT\x14\x9b\x1aA\x04V\x0e\xc7\xad\xb3`A\xc0\x96\x90Op\x99\x1aA\xd8\x12\xf2\xa3\xa4\xb3`A\xe0q\x8aN\xb4\x98\x1aAt\xb5\x15}\xa2\xb3`A\x90\xed|?\xa0\x96\x1aA\xfe\xd4x\x1d\x9e\xb3`A\xb0\x9d\xefg\xb8\x94\x1aA\xe4\xa5\x9b4\x9a\xb3`Ap\x00o\x81\xc4\x92\x1aA\xaa\xf1\xd2\xaf\x9a\xb3`A\xc0\x1e\x85\xebk\x8c\x1aA\xf6(\\\xd7\xb4\xb3`A\xf0Q\xb8\x1e\x12\x8c\x1aA\xd8\xa3p\x85\xb6\xb3`A\xc0\xf5(\\\xb8\x8b\x1aA\xcc\xcc\xccL\xb8\xb3`A\xd0\x81sF9\x8b\x1aA\xb2{\xf2\xee\xc4\xb3`A0\x08\xac\\<\x8b\x1aA\x044\x11\x04\xc5\xb3`A S\x05c\x1c\x8a\x1aAt\xb5\x15\'\xf7\xb3`A\xb0@\x82b\xf8\x89\x1aAB`\xe5\xc4\xf9\xb3`A\xc0[ \xc1\xb8\x89\x1aA.!\x1f\xea\xf9\xb3`A\x10\xd7\xa3p\xa6\x89\x1aA\xaeG\xe1\xca\xfa\xb3`A\x10\xd7\xa3pv\x89\x1aA\x14\xaeG\x81\xfb\xb3`A\xf0Q\xb8\x1e\x1f\x89\x1aA\n\xd7\xa3\x80\xfa\xb3`A\x10\xd7\xa3p\xd4\x88\x1aAfff\xfe\xf7\xb3`A`Di\xef\x9c\x88\x1aA\x04V\x0e\xa7\xf5\xb3`A0\x87\x16Y\x98\x88\x1aAF\x94\xf6\x8a\xf5\xb3`AP\xe3\xa5\xdb\x95\x88\x1aA\n\xd7\xa3Z\xf5\xb3`A\xd0\xcc\xcc\xcc\xa8\x87\x1aA\xaeG\xe1Z\xeb\xb3`A\x10\xd7\xa3p\x90\x87\x1aAfff\xf6\xe9\xb3`A\xc0\xf5(\\{\x87\x1aAp=\n\x17\xe8\xb3`A\x10\xaeG\xe1u\x87\x1aA\xc2\xf5(\xdc\xe6\xb3`A\xa0W\xca\xf2\x88\x87\x1aA\xbe\x0e\x9c\x91\xe5\xb3`A\xa0y\xc7iX\x87\x1aA\x80\xb7@\x0c\xe4\xb3`A\x80\xebQx\xe0\x86\x1aA\xfc\xcb\xee\x11\xe3\xb3`A\xb0{\xf2p,\x85\x1aA\xf0\x85\xc9\x8c\xe6\xb3`A\xe0\xc7\x98{ \x84\x1aAN@\x13\xf3\xf4\xb3`A\x00\xd5x),\x82\x1aA\xe4\xf2\x1f"\x1f\xb4`A \x85\xebQJ\x82\x1aA\xe2z\x14\xe60\xb4`A\xd0\xcc\xcc\xccX\x82\x1aA\x9a\x99\x99\xd94\xb4`A\xc0\x1e\x85\xebb\x82\x1aA\x00\x00\x00\xe06\xb4`AP\xda\x1b|~\x82\x1aA\xa0\x1a/\xb78\xb4`A`B>h\x8c\x83\x1aA\xf8S\xe3q@\xb4`A\x90\x18\x04\xd6\xe5\x83\x1aA\xd6\xe7j\xe3A\xb4`A0333\x15\x84\x1aA\x00\x00\x00xB\xb4`A\x10\xaeG\xe1\xa0\x84\x1aA\xd8\xa3p-D\xb4`A@\xe1z\x14X\x85\x1aA\xe2z\x14\x86E\xb4`A@\n\xd7\xa3\xcd\x86\x1aA\xaeG\xe1\xcaK\xb4`A@\n\xd7\xa3~\x87\x1aA\xb8\x1e\x85sO\xb4`A\x00\x00\x00\x00\x91\x87\x1aA\xd8\xa3p=P\xb4`A\xe06\x1a\x00\xa0\x87\x1aAvO\x1eJQ\xb4`A s\xd7R\x8c\x89\x1aA \xb0r<Y\xb4`A\xb0\xf1\xd2Ml\x8b\x1aA\xe6?\xa4#X\xb4`A\xe0\xe0\x0bS\xd4\x8c\x1aA\x16\xd9\xce\xfbW\xb4`A\x80a2UD\x8e\x1aA\x82\x04\xc5_Z\xb4`A\xb0.nc(\x8f\x1aA<,\xd4\xe8^\xb4`A \x97\xffPT\x91\x1aA\x90\xc2\xf5"[\xb4`A\xa0y\xc7i\x9c\x93\x1aA\xb8\x8d\x06RW\xb4`A\xb0\xad\xd8\x1f\xc3\x93\x1aA\xb8\xaf\x03\x87W\xb4`A\x00\x00\x00\x00\xf7\x93\x1aAp=\n\x1fW\xb4`A\xc0\x1e\x85\xeb\xdf\x98\x1aAp=\n7a\xb4`AP\xb8\x1e\x85\x11\x99\x1aA\x00\x00\x00\x08b\xb4`AP\xb8\x1e\x85@\x9a\x1aAR\xb8\x1eEs\xb4`A \x85\xebQZ\x9b\x1aA\xb8\x1e\x85\x1b\x8f\xb4`A0\\\x8f\xc2!\x9c\x1aA(\\\x8f\x12\xa9\xb4`A\x10\xaeG\xe1;\x9c\x1aA\x00\x00\x00\x00\xb5\xb4`AP\xb8\x1e\x85\xa6\x9c\x1aA\x90\xc2\xf5X\xc1\xb4`A@\xe1z\x14\xc8\x9d\x1aAH\xe1zT\xde\xb4`A\xc0\x1e\x85\xeb\x10\x9e\x1aA\xc2\xf5(\xa4\xe4\xb4`A \x85\xebQa\x9e\x1aA\xf6(\\\xaf\xea\xb4`A@\xe1z\x14B\x9f\x1aA\x90\xc2\xf5\xd8\xf6\xb4`AP\xb8\x1e\x85\x80\xa0\x1aA\xc2\xf5(,\r\xb5`A\xc0\xf5(\\\xdd\xa0\x1aA\xe2z\x14\x96\x15\xb5`A\xd0\xcc\xcc\xcc\x9f\xa1\x1aA\xb8\x1e\x85+1\xb5`A\xb0\xfa\\\xad\xde\xa1\x1aAJ{\x83M=\xb5`A\x01\x03\x00\x00\x00\x01\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x006\x99\x1aA\xb8\x1e\x85\x83\xee\xb4`AP\x061\x08[\x9a\x1aA0\x9cH\xe6\xf2\xb4`Apq=!\xc1\x9a\x1aA\x96,\x12\\\xee\xb4`A \\\xe4\xba&\x9b\x1aA\xda\x13\x99\xec\xe1\xb4`A\x10,\xa7\x87\xda\x9a\x1aAR\x02\xdc\xbc\xd7\xb4`A`\x08wv\xed\x99\x1aA\x10$u*\xd4\xb4`A\xe0R\x96!\xb1\x99\x1aAv\xe0\x9c\xe5\xcd\xb4`A\x90\xd1V"8\x99\x1aA\xd8\x9aB~\xbe\xb4`A\xf0%W+o\x96\x1aA\x10\xf8\xaeZ\xb5\xb4`APt>\x8e\x83\x95\x1aA\\\xe3\xbb\x15\xad\xb4`A@\xef8E$\x95\x1aA\x02f\xf7\xf2\xab\xb4`A0\xc9\xe5\xff\x82\x91\x1aAh\xeeZ\xdc\x9e\xb4`A\xe0\xac\xfa\x1cC\x8f\x1aA\xc0}\x1dh\x9c\xb4`AP\xb6\xf3}*\x8d\x1aA\x90\xb9k\xf3\xa2\xb4`AP\xb6\xf3}*\x8d\x1aA"\xdb\xf9\xe6\xb2\xb4`A\x80\xa3\x01\xbc[\x91\x1aAt\xce\x88\xda\xc2\xb4`Ap\xe7\xfb\xe92\x93\x1aA\x9cU\x9f\xd9\xd4\xb4`A\x80\x1b\r 7\x96\x1aA\xda=yd\xe4\xb4`A\x90\x05\x0e\xa5\x9c\x98\x1aA>\x9f.\x10\xea\xb4`A\x00\x00\x00\x006\x99\x1aA\xb8\x1e\x85\x83\xee\xb4`A\x01\x03\x00\x00\x00\x01\x00\x00\x00\x0f\x00\x00\x00\xc0\x99\x99\x99!\x94\x1aA\xaeG\xe1J\xfc\xb4`A\xb0\x99\x99\x99\xa9\x93\x1aA\xb2G\xe1\xea\xfb\xb4`A\xb0\x99\x99\x99U\x93\x1aA\xaeG\xe1j\x02\xb5`A\xa0\x99\x99\x99)\x93\x1aA\xb2G\xe1\xea\t\xb5`A\xa0\x99\x99\x99\x15\x93\x1aA\xaeG\xe1\xca\x12\xb5`A\xa0\x99\x99\x99\x99\x93\x1aA\xaeG\xe1\xca\x18\xb5`APr\xf9\x0f\xdd\x93\x1aA8\xcd;>&\xb5`A\xb0\x90\x0f\xfa\x8c\x95\x1aAJ\xea\x04\xb21\xb5`A`\x98LU~\x97\x1aA,\xd4\x9a\xe00\xb5`AP\x92\xcb\xbf\x0c\x9a\x1aAx\x9c\xa2\x1b \xb5`A0v\x01\xf0\xb2\x9a\x1aA\x9a\x1aW\x16\x1c\xb5`A@p\x04q\x1a\x98\x1aA\xb49O\x8d\x0e\xb5`A@\xef8E$\x95\x1aA\xe6\x1d\xa7b\x08\xb5`A\xf0\xb4/\xa5\xc8\x94\x1aAN\xcba-\x00\xb5`A\xc0\x99\x99\x99!\x94\x1aA\xaeG\xe1J\xfc\xb4`A'], [b'\x01\x03\x00\x00\x00\x02\x00\x00\x00>\x00\x00\x00 \x04VN\xd8z\x1aA\xe8\xd9\xac|\xd4\xb3`A\xf0\x9e<l4~\x1aA\xf0\x16H0\xcb\xb3`A\xb0rhQx\x81\x1aAL\xc8\x07E\xbf\xb3`A\xa0\x08\x1b^`\x83\x1aA\xfee\xf7$\xb9\xb3`A\xe0\xf2\x1fRd\x84\x1aA\x1a\xe2X\x9d\xb8\xb3`A\xa0L\x15L\xac\x85\x1aAL\xc8\x07=\xbc\xb3`A@\xe8\xd9l\xec\x85\x1aA\xde\x93\x87\r\xbe\xb3`A \xb0rh\x98\x86\x1aA\xfee\xf7P\xc3\xb3`A\xd0;NQ\xa4\x88\x1aAf\x19\xe2<\xc5\xb3`A\xb0\xfa\\m\xf4\x88\x1aA\xb6b\x7f\xef\xc3\xb3`A0\xbb\'Od\x89\x1aA\x9e\xef\xa7\xba\xc1\xb3`A`;\xdfO\xd8\x89\x1aA\x1e8g\xe0\xbe\xb3`A\x90\x87\x85Z\xd4\x89\x1aA~\x8c\xb9\x89\xbc\xb3`A\x90\xf6\x06_\xf4\x89\x1aA\xa8\xa4N\x8c\xb0\xb3`A\x80\x16\xd9N\x1c\x8a\x1aA\x10z6\xff\xa6\xb3`A\xd0o_G\xac\x8a\x1aAT\xc1\xa8\xba\x9f\xb3`Ap\xbe\x9fZL\x8b\x1aA*\x18\x95\xa4\xa0\xb3`A \x06\x81U\x00\x8c\x1aA@\xa4\xdf>\xa0\xb3`APR\'`L\x8c\x1aArh\x91O\x9e\xb3`AP\xfc\x18sX\x8c\x1aA\x12\xf2A3\x9b\xb3`A\x00M\x84M\x0c\x8c\x1aA\x88\x85Z\xc1\x93\xb3`A\x00\xf7u`\x98\x89\x1aA\xae\xd8_dv\xb3`A\xb0i\xdeq\x94\x87\x1aA,\xd4\x9a\xcen\xb3`A0*\xa9S\x9c\x86\x1aA\x84/L\x1el\xb3`A0\xe6\xaeeD\x85\x1aA~\xfb:pj\xb3`A\xa0E\xb6s\x84\x82\x1aA\xea\x95\xb22j\xb3`A\x80\x0b$h\xc0\x80\x1aAx\xe9&\x11m\xb3`A\x10O\xafT\xd8\x7f\x1aA\xa8W\xca\xa4p\xb3`A\xb0\xfa\\ml\x7f\x1aAZ\xd3\xbc\xefu\xb3`A\x90Std\xa0~\x1aA\nh"N}\xb3`A\xc0\xc1\x17fL}\x1aA\x82\xe2\xc7\xd0\x86\xb3`A0\xdd$F<|\x1aA\x94\x18\x04\xfe\x8a\xb3`A\x80z\xa5l\x84z\x1aA0L\xa6\x08\x8c\xb3`A s\xd7R\xa8y\x1aA:\xb4\xc8\xdc\x8b\xb3`A\x00=\x9bU\xdcx\x1aA\xca2\xc4!\x8b\xb3`A\x00\xf7u`,w\x1aA@5^\xc4\x85\xb3`A\xd0+eY\x04v\x1aA0L\xa6B~\xb3`A\x10\x8a\x1fc\xbcs\x1aA\x16\xfb\xcb$l\xb3`A\xa0\x9b\xc4`pp\x1aA\x06\xf0\x16\x02X\xb3`A\xe0\x9c\x11e\x0co\x1aA\x14\x1d\xc9\x85R\xb3`A\xa0\xd64o\x18n\x1aA\xd6\xc5m\xb0P\xb3`A0\x89A`\x9cl\x1aA\x12\xa5\xbd\xc9P\xb3`A\xd0\xc3Bm\xfci\x1aA,C\x1c\xc9T\xb3`A\xc00\x99j\xdci\x1aA433\xadX\xb3`AP\x96!N\xc8j\x1aAF\x03x\xbdg\xb3`A\xe0\xfb\xa9q\xb4k\x1aA\xdch\x00\xcfn\xb3`A\x808\xd6E\x18m\x1aA\xa8W\xca\x1av\xb3`A\x10\x1d\xc9e\xccl\x1aA\xca2\xc4\x87\x81\xb3`A`9\xb4H8l\x1aA\xf0\xf4J\x9d\x85\xb3`AP\x84\rO@l\x1aA"lx\x9c\x8a\xb3`A\x90C\x8bl\xdcl\x1aA\xb4\xc8v,\x91\xb3`A\xc0R\x96\xe1\xfdo\x1aA\xb4Y\xf5\xf7\xae\xb3`A\x00\x12\x14\x7fLq\x1aA\xbct\x934\xbb\xb3`AP\x8d\x97n\x10r\x1aA\xb4Y\xf5\xb3\xc1\xb3`A\xa0<,Tdr\x1aA\xde\x02\t\x04\xc4\xb3`A@\x9bU_\xe0v\x1aAh"l\xcc\xd6\xb3`AP\x96!N\x00x\x1aA433{\xda\xb3`Ap\xbctSLx\x1aA\x9c\xc4 \x9c\xd9\xb3`A \xe2XW\xe8x\x1aA\\\xb1\xbf\xe6\xd6\xb3`A\xe0\x14\x1dI\xb0y\x1aA\xc6\xfe\xb2\xff\xd6\xb3`A\x90\xa9\x82QXz\x1aA&\xe4\x83\xfc\xda\xb3`A \x04VN\xd8z\x1aA\xe8\xd9\xac|\xd4\xb3`A\x06\x00\x00\x00P\xbf}]\xf8\x87\x1aA\xb0Pk\x06x\xb3`A\xb0@\x82b\xb0\x88\x1aA\xb47\xf8\xcax\xb3`A\x00\xe7\x8ch\xc8\x88\x1aA\x9cU\x9f\xf3{\xb3`A\x10\x1d\xc9e\xa4\x88\x1aA\x00\x00\x00J}\xb3`A\xf0\xe4aa\xec\x87\x1aAj\xdeq\xc6{\xb3`AP\xbf}]\xf8\x87\x1aA\xb0Pk\x06x\xb3`A', b'\x01\x03\x00\x00\x00\x02\x00\x00\x00A\x00\x00\x00 \xe2XW\xe8x\x1aA\\\xb1\xbf\xe6\xd6\xb3`A\xe0\x14\x1dI\xb0y\x1aA\xc6\xfe\xb2\xff\xd6\xb3`A\x80\xf2\xb0\xd0\xd8y\x1aA\x1e\x85\xeb\xf5\xd7\xb3`A\x90Std\x9dz\x1aA\x04\xe7\x8cz\xd7\xb3`A \x04VN\xd8z\x1aA\xe8\xd9\xac|\xd4\xb3`A\xf0\x9e<l4~\x1aA\xf0\x16H0\xcb\xb3`A\xc00\x99\xeaL~\x1aA@\xa4\xdf\xd6\xca\xb3`A\xd0\xa3p=8\x7f\x1aA\xc2\xf5(D\xc7\xb3`A\x10\xd7\xa3p\xe4\x82\x1aAp=\n\x07\xba\xb3`A0333#\x83\x1aA\xaeG\xe1\xe2\xb9\xb3`A \r\xe0\xed$\x83\x1aA\xb2\x9d\xef\xe3\xb9\xb3`A\xa0\x08\x1b^`\x83\x1aA\xfee\xf7$\xb9\xb3`A\xe0\xf2\x1fRd\x84\x1aA\x1a\xe2X\x9d\xb8\xb3`A\xa0L\x15L\xac\x85\x1aAL\xc8\x07=\xbc\xb3`A@\xe8\xd9l\xec\x85\x1aA\xde\x93\x87\r\xbe\xb3`A \xb0rh\x98\x86\x1aA\xfee\xf7P\xc3\xb3`A\xd0;NQ\xa4\x88\x1aAf\x19\xe2<\xc5\xb3`A\xb0\xfa\\m\xf4\x88\x1aA\xb6b\x7f\xef\xc3\xb3`A0\xbb\'Od\x89\x1aA\x9e\xef\xa7\xba\xc1\xb3`A`;\xdfO\xd8\x89\x1aA\x1e8g\xe0\xbe\xb3`A\x90\x87\x85Z\xd4\x89\x1aA~\x8c\xb9\x89\xbc\xb3`A\x90\xf6\x06_\xf4\x89\x1aA\xa8\xa4N\x8c\xb0\xb3`A\x80\x16\xd9N\x1c\x8a\x1aA\x10z6\xff\xa6\xb3`A\xd0o_G\xac\x8a\x1aAT\xc1\xa8\xba\x9f\xb3`Ap\xbe\x9fZL\x8b\x1aA*\x18\x95\xa4\xa0\xb3`A \x06\x81U\x00\x8c\x1aA@\xa4\xdf>\xa0\xb3`A\x90uq\x9b\x10\x8c\x1aA\xf6u\xe0\xd4\x9f\xb3`A\x10O\xafT&\x8c\x1aA\xaa\x13\xd0L\x96\xb3`A\x00\x7fj<\x1e\x8c\x1aA4\x116\x82\x95\xb3`A@r\xf9Oy\x8b\x1aAX\x17\xb7\xe1\x8c\xb3`A\xa0#\xb9\xfc\xf3\x89\x1aAN\x84\r\xadz\xb3`A\x00\x00\x00\x00)\x88\x1aA\n\xd7\xa3 s\xb3`A\xf0(\\\x8f\xb4\x86\x1aA\xf6(\\\xa7q\xb3`A@\xe1z\x14\xfa\x85\x1aA\xaeG\xe1Jq\xb3`A\x10\xaeG\xe1?\x85\x1aA\n\xd7\xa3\x80w\xb3`A\x10\xaeG\xe1\xfd\x83\x1aAfff\xfew\xb3`A\x00\x00\x00\x00\xe6\x80\x1aA\x00\x00\x00H\x7f\xb3`A\x10\xd7\xa3pw\x7f\x1aA\xe2z\x14F\x8a\xb3`A\x10\xaeG\xe1]\x7f\x1aA433\xd3\x8a\xb3`A\x00\x00\x00\x00\xbf}\x1aA\x1e\x85\xeb\xb9\x8b\xb3`A@\xe1z\x145|\x1aA\xaeG\xe1\xa2\x8e\xb3`A\x00\x00\x00\x00\xcbz\x1aAR\xb8\x1eU\x8f\xb3`A\xf0(\\\x8f\xday\x1aAp=\n\xef\x8e\xb3`A\x10\xaeG\xe1\xacx\x1aA\x14\xaeGi\x8d\xb3`A\xd0\xa3p=\xd5v\x1aA\xb8\x1e\x85\xe3\x8a\xb3`A\xf0(\\\x8f\xa6v\x1aA\x14\xaeG\x91\x87\xb3`A\xd0\xa3p=\x88u\x1aA\n\xd7\xa3\x18~\xb3`A0333Ks\x1aA\x9a\x99\x99\xb1q\xb3`A\x10\xd7\xa3p\xabp\x1aA\x90\xc2\xf5\x18i\xb3`A\xe0z\x14\xae0p\x1aA\xaeG\xe1*h\xb3`A0\\\x8f\xc2\xbco\x1aA\n\xd7\xa3\x08h\xb3`A\xd0\xcc\xcc\xcc\x10o\x1aAR\xb8\x1emh\xb3`A\xd0\xcc\xcc\xcc\xb8n\x1aA\xc2\xf5(\xdcj\xb3`A0333wm\x1aA\x9a\x99\x99i\x8c\xb3`A@\n\xd7\xa3\x9am\x1aAR\xb8\x1e\xbd\x94\xb3`A\x00\x00\x00\x00\xbfm\x1aAfff\xe6\x96\xb3`A@%u\xc2\xban\x1aA\xcc\xcc\xcc\xf4\xa2\xb3`A\xc0R\x96\xe1\xfdo\x1aA\xb4Y\xf5\xf7\xae\xb3`A\x00\x12\x14\x7fLq\x1aA\xbct\x934\xbb\xb3`AP\x8d\x97n\x10r\x1aA\xb4Y\xf5\xb3\xc1\xb3`A\xa0<,Tdr\x1aA\xde\x02\t\x04\xc4\xb3`A@\x9bU_\xe0v\x1aAh"l\xcc\xd6\xb3`A\xe0h\x00\xefrw\x1aA\xa8\xa4N\xac\xd8\xb3`A \x06\x81U\x89x\x1aA\x00"\xfd\x8c\xd8\xb3`A \xe2XW\xe8x\x1aA\\\xb1\xbf\xe6\xd6\xb3`A\x06\x00\x00\x00\x00\xe7\x8ch\xc8\x88\x1aA\x9cU\x9f\xf3{\xb3`A\x10\x1d\xc9e\xa4\x88\x1aA\x00\x00\x00J}\xb3`A\xf0\xe4aa\xec\x87\x1aAj\xdeq\xc6{\xb3`AP\xbf}]\xf8\x87\x1aA\xb0Pk\x06x\xb3`A\xb0@\x82b\xb0\x88\x1aA\xb47\xf8\xcax\xb3`A\x00\xe7\x8ch\xc8\x88\x1aA\x9cU\x9f\xf3{\xb3`A', b'\x01\x03\x00\x00\x00\x02\x00\x00\x00G\x00\x00\x00\xc0R\x96\xe1\xfdo\x1aA\xb4Y\xf5\xf7\xae\xb3`A\x00\x12\x14\x7fLq\x1aA\xbct\x934\xbb\xb3`AP\x8d\x97n\x10r\x1aA\xb4Y\xf5\xb3\xc1\xb3`A\xa0<,Tdr\x1aA\xde\x02\t\x04\xc4\xb3`A@\x9bU_\xe0v\x1aAh"l\xcc\xd6\xb3`A\xe0h\x00\xefrw\x1aA\xa8\xa4N\xac\xd8\xb3`A \x06\x81U\x89x\x1aA\x00"\xfd\x8c\xd8\xb3`A \xe2XW\xe8x\x1aA\\\xb1\xbf\xe6\xd6\xb3`A\xe0\x14\x1dI\xb0y\x1aA\xc6\xfe\xb2\xff\xd6\xb3`A\x80\xf2\xb0\xd0\xd8y\x1aA\x1e\x85\xeb\xf5\xd7\xb3`A\x90Std\x9dz\x1aA\x04\xe7\x8cz\xd7\xb3`A \x04VN\xd8z\x1aA\xe8\xd9\xac|\xd4\xb3`A\xf0\x9e<l4~\x1aA\xf0\x16H0\xcb\xb3`A\xc00\x99\xeaL~\x1aA@\xa4\xdf\xd6\xca\xb3`A\xd0\xa3p=8\x7f\x1aA\xc2\xf5(D\xc7\xb3`A\x10\xd7\xa3p\xe4\x82\x1aAp=\n\x07\xba\xb3`A0333#\x83\x1aA\xaeG\xe1\xe2\xb9\xb3`A \r\xe0\xed$\x83\x1aA\xb2\x9d\xef\xe3\xb9\xb3`A\xa0\x08\x1b^`\x83\x1aA\xfee\xf7$\xb9\xb3`A\xe0\xf2\x1fRd\x84\x1aA\x1a\xe2X\x9d\xb8\xb3`A\xa0L\x15L\xac\x85\x1aAL\xc8\x07=\xbc\xb3`A@\xe8\xd9l\xec\x85\x1aA\xde\x93\x87\r\xbe\xb3`A \xb0rh\x98\x86\x1aA\xfee\xf7P\xc3\xb3`A\xd0;NQ\xa4\x88\x1aAf\x19\xe2<\xc5\xb3`A\xb0\xfa\\m\xf4\x88\x1aA\xb6b\x7f\xef\xc3\xb3`A0\xbb\'Od\x89\x1aA\x9e\xef\xa7\xba\xc1\xb3`A`;\xdfO\xd8\x89\x1aA\x1e8g\xe0\xbe\xb3`A\x90\x87\x85Z\xd4\x89\x1aA~\x8c\xb9\x89\xbc\xb3`A\x90\xf6\x06_\xf4\x89\x1aA\xa8\xa4N\x8c\xb0\xb3`A\x80\x16\xd9N\x1c\x8a\x1aA\x10z6\xff\xa6\xb3`A\xd0o_G\xac\x8a\x1aAT\xc1\xa8\xba\x9f\xb3`Ap\xbe\x9fZL\x8b\x1aA*\x18\x95\xa4\xa0\xb3`A \x06\x81U\x00\x8c\x1aA@\xa4\xdf>\xa0\xb3`A\x90uq\x9b\x10\x8c\x1aA\xf6u\xe0\xd4\x9f\xb3`A\x10O\xafT&\x8c\x1aA\xaa\x13\xd0L\x96\xb3`A\x00\x7fj<\x1e\x8c\x1aA4\x116\x82\x95\xb3`A@r\xf9Oy\x8b\x1aAX\x17\xb7\xe1\x8c\xb3`A\xa0#\xb9\xfc\xf3\x89\x1aAN\x84\r\xadz\xb3`A\x00\x00\x00\x00)\x88\x1aA\n\xd7\xa3 s\xb3`A\xf0(\\\x8f\xb4\x86\x1aA\xf6(\\\xa7q\xb3`A@\xe1z\x14\xfa\x85\x1aA\xaeG\xe1Jq\xb3`A\x10\xaeG\xe1?\x85\x1aA\n\xd7\xa3\x80w\xb3`A\x10\xaeG\xe1\xfd\x83\x1aAfff\xfew\xb3`A\x00\x00\x00\x00\xe6\x80\x1aA\x00\x00\x00H\x7f\xb3`A\x10\xd7\xa3pw\x7f\x1aA\xe2z\x14F\x8a\xb3`A\x10\xaeG\xe1]\x7f\x1aA433\xd3\x8a\xb3`A\x00\x00\x00\x00\xbf}\x1aA\x1e\x85\xeb\xb9\x8b\xb3`A@\xe1z\x145|\x1aA\xaeG\xe1\xa2\x8e\xb3`A\x00\x00\x00\x00\xcbz\x1aAR\xb8\x1eU\x8f\xb3`A\xf0(\\\x8f\xday\x1aAp=\n\xef\x8e\xb3`A\x10\xaeG\xe1\xacx\x1aA\x14\xaeGi\x8d\xb3`A\xd0\xa3p=\xd5v\x1aA\xb8\x1e\x85\xe3\x8a\xb3`A\xf0(\\\x8f\xa6v\x1aA\x14\xaeG\x91\x87\xb3`A\xd0\xa3p=\x88u\x1aA\n\xd7\xa3\x18~\xb3`A\xf0\xb0Pk\xfes\x1aA\xbe0\x99\x92u\xb3`A@\xc6\xdcu\x02s\x1aA\xd8_v\x91r\xb3`A\xf0\x8eS4\x9cq\x1aA\xa0\x89\xb0\xabp\xb3`A \xc0[\xe0/p\x1aAx\xe9&\xcfq\xb3`A\xf0\x95\xb2L\xffo\x1aA\x8a\x1fc\xd8t\xb3`A\x00\xc5\x8fq\x0bp\x1aA\xec\x9e<fy\xb3`A\x90\xc2\xf5\xa8\x1dp\x1aA\x84|\xd0\x85~\xb3`A0\x87\x16\x99lp\x1aA\x18\xb7\xd1t\x83\xb3`A\xb0\x84|\xd0~p\x1aA\x10\x0b\xb5V\x89\xb3`A\x10&S\x05<p\x1aA\xb6\x15\xfb\xb3\x8d\xb3`A\xc09#J\xaao\x1aAV\x9f\xab\xf1\x8c\xb3`AP\xb8\x1eE\x00o\x1aAJ\xea\x04\x08\x8f\xb3`A0\\\x8fB\xabn\x1aA.n\xa3{\x95\xb3`A\xb0%\xe4\xc3\xd5n\x1aA\xc2\xa8\xa4j\x9a\xb3`A`\xb3\xea\xb3$o\x1aA\x92\\\xfeo\xa1\xb3`A\xb0b\x7fYAo\x1aA\xc6\xfe\xb2\xf5\xa7\xb3`A\xc0R\x96\xe1\xfdo\x1aA\xb4Y\xf5\xf7\xae\xb3`A\x06\x00\x00\x00\x00\xe7\x8ch\xc8\x88\x1aA\x9cU\x9f\xf3{\xb3`A\x10\x1d\xc9e\xa4\x88\x1aA\x00\x00\x00J}\xb3`A\xf0\xe4aa\xec\x87\x1aAj\xdeq\xc6{\xb3`AP\xbf}]\xf8\x87\x1aA\xb0Pk\x06x\xb3`A\xb0@\x82b\xb0\x88\x1aA\xb47\xf8\xcax\xb3`A\x00\xe7\x8ch\xc8\x88\x1aA\x9cU\x9f\xf3{\xb3`A']], dtype=object)
- namePandasIndex
PandasIndex(Index(['Austre Brøggerbreen', 'Austre Lovenbreen', 'Edithbreen', 'Midtre Lovenbreen', 'Steenbreen'], dtype='object', name='name'))
- yearPandasIndex
PandasIndex(Index([1936.0, 1990.0, 2007.0], dtype='float64', name='year'))
- spatial_refCRSIndex (crs=EPSG:32633)
CRSIndex <Projected CRS: EPSG:32633> Name: WGS 84 / UTM zone 33N Axis Info [cartesian]: - E[east]: Easting (metre) - N[north]: Northing (metre) Area of Use: - name: Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore. Austria. Bosnia and Herzegovina. Cameroon. Central African Republic. Chad. Congo. Croatia. Czechia. Democratic Republic of the Congo (Zaire). Gabon. Germany. Hungary. Italy. Libya. Malta. Niger. Nigeria. Norway. Poland. San Marino. Slovakia. Slovenia. Svalbard. Sweden. Vatican City State. - bounds: (12.0, 0.0, 18.0, 84.0) Coordinate Operation: - name: UTM zone 33N - method: Transverse Mercator Datum: World Geodetic System 1984 ensemble - Ellipsoid: WGS 84 - Prime Meridian: Greenwich
Write to a Zarr file.
encoded_wkb.to_zarr("glaciers.zarr", mode="w")
<xarray.backends.zarr.ZarrStore at 0x1502181f0>
As above, the object can be losslessly roundtripped via Zarr.
roundtripped_wkb = xr.open_zarr("glaciers.zarr").xvec.decode_wkb()
roundtripped_wkb
<xarray.Dataset> Size: 472B Dimensions: (name: 5, year: 3) Coordinates: * name (name) object 40B 'Austre Brøggerbreen' ... 'Steenbreen' * spatial_ref int64 8B ... * summary_geometry (name) object 40B POLYGON ((431324.8682000004 8762430.3... * year (year) float64 24B 1.936e+03 1.99e+03 2.007e+03 Data variables: fwidth (name, year) float64 120B dask.array<chunksize=(5, 3), meta=np.ndarray> geometry (name, year) object 120B POLYGON ((432375.11039999966 8... length (name, year) float64 120B dask.array<chunksize=(5, 3), meta=np.ndarray> Indexes: spatial_ref CRSIndex (crs=EPSG:32633) summary_geometry GeometryIndex (crs=EPSG:32633)
- name: 5
- year: 3
- name(name)object'Austre Brøggerbreen' ... 'Steen...
array(['Austre Brøggerbreen', 'Austre Lovenbreen', 'Edithbreen', 'Midtre Lovenbreen', 'Steenbreen'], dtype=object)
- spatial_ref()int64...
[1 values with dtype=int64]
- summary_geometry(name)objectPOLYGON ((431324.8682000004 8762...
- crs :
- {"$schema": "https://proj.org/schemas/v0.7/projjson.schema.json", "type": "ProjectedCRS", "name": "WGS 84 / UTM zone 33N", "base_crs": {"name": "WGS 84", "datum_ensemble": {"name": "World Geodetic System 1984 ensemble", "members": [{"name": "World Geodetic System 1984 (Transit)", "id": {"authority": "EPSG", "code": 1166}}, {"name": "World Geodetic System 1984 (G730)", "id": {"authority": "EPSG", "code": 1152}}, {"name": "World Geodetic System 1984 (G873)", "id": {"authority": "EPSG", "code": 1153}}, {"name": "World Geodetic System 1984 (G1150)", "id": {"authority": "EPSG", "code": 1154}}, {"name": "World Geodetic System 1984 (G1674)", "id": {"authority": "EPSG", "code": 1155}}, {"name": "World Geodetic System 1984 (G1762)", "id": {"authority": "EPSG", "code": 1156}}, {"name": "World Geodetic System 1984 (G2139)", "id": {"authority": "EPSG", "code": 1309}}, {"name": "World Geodetic System 1984 (G2296)", "id": {"authority": "EPSG", "code": 1383}}], "ellipsoid": {"name": "WGS 84", "semi_major_axis": 6378137, "inverse_flattening": 298.257223563}, "accuracy": "2.0", "id": {"authority": "EPSG", "code": 6326}}, "coordinate_system": {"subtype": "ellipsoidal", "axis": [{"name": "Geodetic latitude", "abbreviation": "Lat", "direction": "north", "unit": "degree"}, {"name": "Geodetic longitude", "abbreviation": "Lon", "direction": "east", "unit": "degree"}]}, "id": {"authority": "EPSG", "code": 4326}}, "conversion": {"name": "UTM zone 33N", "method": {"name": "Transverse Mercator", "id": {"authority": "EPSG", "code": 9807}}, "parameters": [{"name": "Latitude of natural origin", "value": 0, "unit": "degree", "id": {"authority": "EPSG", "code": 8801}}, {"name": "Longitude of natural origin", "value": 15, "unit": "degree", "id": {"authority": "EPSG", "code": 8802}}, {"name": "Scale factor at natural origin", "value": 0.9996, "unit": "unity", "id": {"authority": "EPSG", "code": 8805}}, {"name": "False easting", "value": 500000, "unit": "metre", "id": {"authority": "EPSG", "code": 8806}}, {"name": "False northing", "value": 0, "unit": "metre", "id": {"authority": "EPSG", "code": 8807}}]}, "coordinate_system": {"subtype": "Cartesian", "axis": [{"name": "Easting", "abbreviation": "E", "direction": "east", "unit": "metre"}, {"name": "Northing", "abbreviation": "N", "direction": "north", "unit": "metre"}]}, "scope": "Navigation and medium accuracy spatial referencing.", "area": "Between 12\u00b0E and 18\u00b0E, northern hemisphere between equator and 84\u00b0N, onshore and offshore. Austria. Bosnia and Herzegovina. Cameroon. Central African Republic. Chad. Congo. Croatia. Czechia. Democratic Republic of the Congo (Zaire). Gabon. Germany. Hungary. Italy. Libya. Malta. Niger. Nigeria. Norway. Poland. San Marino. Slovakia. Slovenia. Svalbard. Sweden. Vatican City State.", "bbox": {"south_latitude": 0, "west_longitude": 12, "north_latitude": 84, "east_longitude": 18}, "id": {"authority": "EPSG", "code": 32633}}
array([<POLYGON ((431324.868 8762430.398, 431365.555 8762561.178, 431505.103 876253...>, <POLYGON ((437890.08 8759688.247, 437972.08 8759783.098, 438111.093 8759913....>, <POLYGON ((435306.075 8755348.831, 435469.097 8755538.298, 435588.071 875565...>, <POLYGON ((436099.83 8760609.829, 436157.072 8760718.862, 436363.409 8760819...>, <POLYGON ((433235.124 8756697.643, 433284.108 8756749.624, 433305.082 875676...>], dtype=object)
- year(year)float641.936e+03 1.99e+03 2.007e+03
array([1936., 1990., 2007.])
- fwidth(name, year)float64dask.array<chunksize=(5, 3), meta=np.ndarray>
Array Chunk Bytes 120 B 120 B Shape (5, 3) (5, 3) Dask graph 1 chunks in 2 graph layers Data type float64 numpy.ndarray - geometry(name, year)objectPOLYGON ((432375.11039999966 876...
array([[<POLYGON ((432375.11 8761657.493, 432374.075 8761556.916, 432359.094 8761317...>, <POLYGON ((432827.911 8760071.745, 432927.89 8760033.48, 432969.69 8760016.4...>, <POLYGON ((430859.331 8760810.068, 430859.331 8760955.06, 430896.373 8761011...>], [<POLYGON ((439050.076 8760008.254, 439165.072 8760005.234, 439280.066 875999...>, <POLYGON ((439017.009 8757383.527, 439021.079 8757374.342, 439034.263 875736...>, <POLYGON ((438084.33 8758585.89, 438085.213 8758599.512, 438145.315 8758587....>], [<POLYGON ((436612.09 8756035.361, 436709.062 8755987.852, 437034.077 8755985...>, <POLYGON ((437656.357 8755886.121, 437657.59 8755885.91, 437673.31 8755886.3...>, <POLYGON ((435895.989 8755828.511, 435907.3 8755836.48, 435950.48 8755865.38...>], [<MULTIPOLYGON (((437133.738 8760867.133, 437249.396 8760812.577, 437437.069 ...>, <MULTIPOLYGON (((437126.101 8759081.666, 437072.097 8759019.568, 437031.087 ...>, <MULTIPOLYGON (((436343.669 8759786.422, 436396.593 8759874.629, 436425.673 ...>], [<POLYGON ((433846.077 8756899.896, 434061.106 8756825.509, 434270.08 8756730...>, <POLYGON ((433722.085 8756919.211, 433772.071 8756919.991, 433782.204 875692...>, <POLYGON ((433151.47 8756599.749, 433235.124 8756697.643, 433284.108 8756749...>]], dtype=object)
- length(name, year)float64dask.array<chunksize=(5, 3), meta=np.ndarray>
Array Chunk Bytes 120 B 120 B Shape (5, 3) (5, 3) Dask graph 1 chunks in 2 graph layers Data type float64 numpy.ndarray
- namePandasIndex
PandasIndex(Index(['Austre Brøggerbreen', 'Austre Lovenbreen', 'Edithbreen', 'Midtre Lovenbreen', 'Steenbreen'], dtype='object', name='name'))
- yearPandasIndex
PandasIndex(Index([1936.0, 1990.0, 2007.0], dtype='float64', name='year'))
- spatial_refCRSIndex (crs=EPSG:32633)
CRSIndex <Projected CRS: EPSG:32633> Name: WGS 84 / UTM zone 33N Axis Info [cartesian]: - E[east]: Easting (metre) - N[north]: Northing (metre) Area of Use: - name: Between 12°E and 18°E, northern hemisphere between equator and 84°N, onshore and offshore. Austria. Bosnia and Herzegovina. Cameroon. Central African Republic. Chad. Congo. Croatia. Czechia. Democratic Republic of the Congo (Zaire). Gabon. Germany. Hungary. Italy. Libya. Malta. Niger. Nigeria. Norway. Poland. San Marino. Slovakia. Slovenia. Svalbard. Sweden. Vatican City State. - bounds: (12.0, 0.0, 18.0, 84.0) Coordinate Operation: - name: UTM zone 33N - method: Transverse Mercator Datum: World Geodetic System 1984 ensemble - Ellipsoid: WGS 84 - Prime Meridian: Greenwich
- summary_geometryGeometryIndex (crs=EPSG:32633)
GeometryIndex( [<POLYGON ((431324.868 8762430.398, 431365.555 8762561.178, 431505.103 876253...> <POLYGON ((437890.08 8759688.247, 437972.08 8759783.098, 438111.093 8759913....> <POLYGON ((435306.075 8755348.831, 435469.097 8755538.298, 435588.071 875565...> <POLYGON ((436099.83 8760609.829, 436157.072 8760718.862, 436363.409 8760819...> <POLYGON ((433235.124 8756697.643, 433284.108 8756749.624, 433305.082 875676...>], crs=EPSG:32633)
roundtripped_wkb.identical(glaciers)
True
GIS file formats#
Another option is to convert the data to a GeoDataFrame and save it to any geospatial file format or a GeoParquet if there are multiple geometry columns.
Long table form#
Long table form needs to save each value in a row with all its dimension coordinates. While this option is possible, it can be inefficient, leading to a high degree of repetition and very long tables. However, it is readily supported by Xarray and Xvec.
long = cube.xvec.to_geodataframe()
long
county | population | unemployment | divorce | age | |
---|---|---|---|---|---|
year | |||||
1960 | POLYGON ((-95.34258 48.5467, -95.34081 48.7151... | 4304 | 7.900000 | 1.858974 | 28.800000 |
1970 | POLYGON ((-95.34258 48.5467, -95.34081 48.7151... | 3987 | 9.000000 | 2.619808 | 30.500000 |
1980 | POLYGON ((-95.34258 48.5467, -95.34081 48.7151... | 3764 | 5.902579 | 3.746594 | 34.500000 |
1990 | POLYGON ((-95.34258 48.5467, -95.34081 48.7151... | 4076 | 3.894790 | 7.388535 | 35.500000 |
1960 | POLYGON ((-118.8505 47.94969, -118.84732 48.47... | 3889 | 8.200000 | 2.863278 | 25.900000 |
... | ... | ... | ... | ... | ... |
1990 | POLYGON ((-77.53178 38.56506, -77.72094 38.840... | 250377 | 3.353981 | 5.750177 | 28.466667 |
1960 | POLYGON ((-111.37152 44.74516, -111.36839 45.3... | 39260 | 5.218039 | 2.777586 | 28.250000 |
1970 | POLYGON ((-111.37152 44.74516, -111.36839 45.3... | 43766 | 5.444291 | 2.724604 | 26.400000 |
1980 | POLYGON ((-111.37152 44.74516, -111.36839 45.3... | 55800 | 7.017943 | 4.782264 | 28.966667 |
1990 | POLYGON ((-111.37152 44.74516, -111.36839 45.3... | 65077 | 5.488553 | 7.414559 | 35.333333 |
12340 rows × 5 columns
You can see that the result is longer than the original GeoDataFrame that had each year encoded as a column.
You can then save it using to_file
or to_parquet
.
long.to_file("cube.gpkg")
or
long.to_parquet("cube.parquet")
You can then re-create the Dataset using the from_dataframe
method with the geometry column set as an index.
xr.Dataset.from_dataframe(long.set_index("county", append=True)).xvec.set_geom_indexes(
"county", crs=long.crs
)
<xarray.Dataset> Size: 370kB Dimensions: (year: 4, county: 3085) Coordinates: * year (year) int64 32B 1960 1970 1980 1990 * county (county) object 25kB MULTIPOLYGON (((-97.25125122070312 26.... Data variables: population (year, county) int32 49kB 151098 20084 180904 ... 30167 62496 unemployment (year, county) float64 99kB 8.4 4.0 6.3 ... 4.464 6.393 4.379 divorce (year, county) float64 99kB 1.584 1.219 1.148 ... 7.917 8.998 age (year, county) float64 99kB 20.5 18.9 19.8 ... 37.0 27.2 34.1 Indexes: county GeometryIndex (crs=EPSG:4326)
- year: 4
- county: 3085
- year(year)int641960 1970 1980 1990
array([1960, 1970, 1980, 1990])
- county(county)objectMULTIPOLYGON (((-97.251251220703...
- crs :
- EPSG:4326
array([<MULTIPOLYGON (((-97.251 26.419, -97.232 26.418, -97.195 26.259, -97.172 26....>, <MULTIPOLYGON (((-97.869 26.348, -97.874 26.447, -98.005 26.464, -97.989 26....>, <POLYGON ((-98.6 26.26, -98.341 26.787, -97.991 26.786, -97.992 26.617, -97....>, ..., <POLYGON ((-81.52 29.626, -81.521 29.755, -81.563 29.806, -81.582 29.842, -8...>, <MULTIPOLYGON (((-81.529 30.721, -81.537 30.706, -81.601 30.725, -81.605 30....>, <POLYGON ((-81.536 31.077, -81.561 31.085, -81.564 31.121, -81.639 31.112, -...>], dtype=object)
- population(year, county)int32151098 20084 180904 ... 30167 62496
array([[151098, 20084, 180904, ..., 30034, 9975, 41954], [140368, 15570, 181535, ..., 31035, 11334, 50528], [209727, 17495, 283229, ..., 51303, 13371, 54981], [260120, 17705, 383545, ..., 83829, 30167, 62496]], dtype=int32)
- unemployment(year, county)float648.4 4.0 6.3 ... 4.464 6.393 4.379
array([[ 8.4 , 4. , 6.3 , ..., 4.7 , 6.5 , 5.9 ], [ 6.6 , 7.3 , 5.9 , ..., 3.6 , 3.5 , 3. ], [ 7.75660487, 11.33037329, 8.46864875, ..., 4.91240744, 6.96691176, 4.89821146], [13.32703973, 15.10072274, 14.32961266, ..., 4.46391627, 6.39348523, 4.37875589]])
- divorce(year, county)float641.584 1.219 1.148 ... 7.917 8.998
array([[1.58380698, 1.21930567, 1.14778151, ..., 2.16183453, 1.62022035, 2.02576951], [1.90981927, 0.95937947, 1.31687243, ..., 3.09188981, 2.49451754, 2.50172931], [3.20959126, 2.08742194, 2.53856077, ..., 6.21791514, 5.03355705, 6.65581939], [4.39243717, 3.49016253, 3.57331943, ..., 9.62774751, 7.91690999, 8.99766695]])
- age(year, county)float6420.5 18.9 19.8 ... 37.0 27.2 34.1
array([[20.5, 18.9, 19.8, ..., 30.9, 21.8, 25.1], [21.8, 20.9, 20.7, ..., 32.1, 23.6, 25.3], [25. , 24.7, 24.1, ..., 33.4, 26.8, 30.1], [27.4, 27.5, 26.1, ..., 37. , 27.2, 34.1]])
- yearPandasIndex
PandasIndex(Index([1960, 1970, 1980, 1990], dtype='int64', name='year'))
- countyGeometryIndex (crs=EPSG:4326)
GeometryIndex( [<MULTIPOLYGON (((-97.251 26.419, -97.232 26.418, -97.195 26.259, -97.172 26....> <MULTIPOLYGON (((-97.869 26.348, -97.874 26.447, -98.005 26.464, -97.989 26....> <POLYGON ((-98.6 26.26, -98.341 26.787, -97.991 26.786, -97.992 26.617, -97....> <POLYGON ((-98.6 26.26, -98.678 26.242, -98.82 26.375, -98.909 26.36, -98.93...> ... <POLYGON ((-81.11 29.43, -81.151 29.418, -81.146 29.264, -81.413 29.263, -81...> <POLYGON ((-81.52 29.626, -81.521 29.755, -81.563 29.806, -81.582 29.842, -8...> <MULTIPOLYGON (((-81.529 30.721, -81.537 30.706, -81.601 30.725, -81.605 30....> <POLYGON ((-81.536 31.077, -81.561 31.085, -81.564 31.121, -81.639 31.112, -...>], crs=EPSG:4326)
Wide table form#
The other option is to create a wide table form which is what we started with. Each combination of coordinate and data variables except geometry is encoded as a column (e.g. ["population_1960", "population_1970", "population_1980", "population_1990"]
or using the MultiIndex
like below). However, this works only when the Dataset or DataArray is indexed by one geometry dimension only.
To create a valid GeoDataFrame, you would need to do something like this:
wide = cube.xvec.to_geodataframe(long=False)
wide
county | population | unemployment | divorce | age | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
year | 1960 | 1970 | 1980 | 1990 | 1960 | 1970 | 1980 | 1990 | 1960 | 1970 | 1980 | 1990 | 1960 | 1970 | 1980 | 1990 | |
0 | POLYGON ((-95.34258 48.5467, -95.34081 48.7151... | 4304 | 3987 | 3764 | 4076 | 7.900000 | 9.000000 | 5.902579 | 3.894790 | 1.858974 | 2.619808 | 3.746594 | 7.388535 | 28.80 | 30.5 | 34.500000 | 35.500000 |
1 | POLYGON ((-118.8505 47.94969, -118.84732 48.47... | 3889 | 3655 | 5811 | 6295 | 8.200000 | 15.400000 | 15.422886 | 16.811594 | 2.863278 | 3.686007 | 6.625442 | 11.543135 | 25.90 | 27.1 | 27.200000 | 32.800000 |
2 | POLYGON ((-117.43777 48.04422, -117.54113 48.0... | 17884 | 17405 | 28979 | 30948 | 10.100000 | 9.000000 | 13.574064 | 10.700794 | 2.711447 | 2.976378 | 5.448223 | 9.123212 | 29.60 | 31.8 | 28.700000 | 34.500000 |
3 | POLYGON ((-118.97096 47.93928, -118.97293 47.9... | 25520 | 25867 | 30639 | 33350 | 7.500000 | 10.500000 | 12.700195 | 10.203544 | 3.372041 | 4.090386 | 7.122333 | 9.245627 | 29.40 | 31.1 | 31.200000 | 35.000000 |
4 | POLYGON ((-117.4375 49, -117.03098 49, -117.02... | 6914 | 6025 | 8580 | 8915 | 10.600000 | 13.400000 | 18.148999 | 14.991023 | 3.008988 | 4.010695 | 5.287860 | 10.158351 | 31.20 | 33.8 | 31.300000 | 36.100000 |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
3080 | POLYGON ((-114.51984 33.02767, -114.5583 33.03... | 46235 | 60827 | 90554 | 120739 | 4.600000 | 4.800000 | 8.012906 | 10.910351 | 3.702838 | 4.160574 | 5.730308 | 7.798840 | 25.70 | 24.6 | 27.900000 | 33.900000 |
3081 | POLYGON ((-107.19484 34.58352, -107.7178 34.58... | 39085 | 40576 | 61115 | 69029 | 6.100000 | 3.800000 | 8.375127 | 11.002271 | 1.880621 | 2.274648 | 5.372952 | 9.078873 | 20.10 | 21.7 | 25.500000 | 30.450000 |
3082 | POLYGON ((-76.39569 37.10771, -76.4027 37.0905... | 21583 | 33203 | 44189 | 53427 | 2.500000 | 3.105065 | 5.037045 | 4.102888 | 1.113223 | 1.550323 | 3.257639 | 4.850746 | 24.40 | 24.4 | 29.800000 | 34.000000 |
3083 | POLYGON ((-77.53178 38.56506, -77.72094 38.840... | 50164 | 111102 | 166665 | 250377 | 3.300000 | 2.361559 | 3.708886 | 3.353981 | 1.672391 | 1.468343 | 3.742207 | 5.750177 | 22.30 | 21.8 | 25.666667 | 28.466667 |
3084 | POLYGON ((-111.37152 44.74516, -111.36839 45.3... | 39260 | 43766 | 55800 | 65077 | 5.218039 | 5.444291 | 7.017943 | 5.488553 | 2.777586 | 2.724604 | 4.782264 | 7.414559 | 28.25 | 26.4 | 28.966667 | 35.333333 |
3085 rows × 17 columns
And a re-creation of the Dataset.
wide.set_index("county", append=True).stack().reset_index(
level=0, drop=True
).to_xarray().xvec.set_geom_indexes("county", crs=wide.crs)
/var/folders/2f/fhks6w_d0k556plcv3rfmshw0000gn/T/ipykernel_28128/2455462364.py:1: FutureWarning: The previous implementation of stack is deprecated and will be removed in a future version of pandas. See the What's New notes for pandas 2.1.0 for details. Specify future_stack=True to adopt the new implementation and silence this warning.
wide.set_index("county", append=True).stack().reset_index(
<xarray.Dataset> Size: 370kB Dimensions: (county: 3085, year: 4) Coordinates: * county (county) object 25kB MULTIPOLYGON (((-97.25125122070312 26.... * year (year) object 32B 1960 1970 1980 1990 Data variables: population (county, year) int32 49kB 151098 140368 209727 ... 54981 62496 unemployment (county, year) float64 99kB 8.4 6.6 7.757 ... 3.0 4.898 4.379 divorce (county, year) float64 99kB 1.584 1.91 3.21 ... 6.656 8.998 age (county, year) float64 99kB 20.5 21.8 25.0 ... 25.3 30.1 34.1 Indexes: county GeometryIndex (crs=EPSG:4326)
- county: 3085
- year: 4
- county(county)objectMULTIPOLYGON (((-97.251251220703...
- crs :
- EPSG:4326
array([<MULTIPOLYGON (((-97.251 26.419, -97.232 26.418, -97.195 26.259, -97.172 26....>, <MULTIPOLYGON (((-97.869 26.348, -97.874 26.447, -98.005 26.464, -97.989 26....>, <POLYGON ((-98.6 26.26, -98.341 26.787, -97.991 26.786, -97.992 26.617, -97....>, ..., <POLYGON ((-81.52 29.626, -81.521 29.755, -81.563 29.806, -81.582 29.842, -8...>, <MULTIPOLYGON (((-81.529 30.721, -81.537 30.706, -81.601 30.725, -81.605 30....>, <POLYGON ((-81.536 31.077, -81.561 31.085, -81.564 31.121, -81.639 31.112, -...>], dtype=object)
- year(year)object1960 1970 1980 1990
array([1960, 1970, 1980, 1990], dtype=object)
- population(county, year)int32151098 140368 ... 54981 62496
array([[151098, 140368, 209727, 260120], [ 20084, 15570, 17495, 17705], [180904, 181535, 283229, 383545], ..., [ 30034, 31035, 51303, 83829], [ 9975, 11334, 13371, 30167], [ 41954, 50528, 54981, 62496]], dtype=int32)
- unemployment(county, year)float648.4 6.6 7.757 ... 3.0 4.898 4.379
array([[ 8.4 , 6.6 , 7.75660487, 13.32703973], [ 4. , 7.3 , 11.33037329, 15.10072274], [ 6.3 , 5.9 , 8.46864875, 14.32961266], ..., [ 4.7 , 3.6 , 4.91240744, 4.46391627], [ 6.5 , 3.5 , 6.96691176, 6.39348523], [ 5.9 , 3. , 4.89821146, 4.37875589]])
- divorce(county, year)float641.584 1.91 3.21 ... 6.656 8.998
array([[1.58380698, 1.90981927, 3.20959126, 4.39243717], [1.21930567, 0.95937947, 2.08742194, 3.49016253], [1.14778151, 1.31687243, 2.53856077, 3.57331943], ..., [2.16183453, 3.09188981, 6.21791514, 9.62774751], [1.62022035, 2.49451754, 5.03355705, 7.91690999], [2.02576951, 2.50172931, 6.65581939, 8.99766695]])
- age(county, year)float6420.5 21.8 25.0 ... 25.3 30.1 34.1
array([[20.5, 21.8, 25. , 27.4], [18.9, 20.9, 24.7, 27.5], [19.8, 20.7, 24.1, 26.1], ..., [30.9, 32.1, 33.4, 37. ], [21.8, 23.6, 26.8, 27.2], [25.1, 25.3, 30.1, 34.1]])
- yearPandasIndex
PandasIndex(Index([1960, 1970, 1980, 1990], dtype='object', name='year'))
- countyGeometryIndex (crs=EPSG:4326)
GeometryIndex( [<MULTIPOLYGON (((-97.251 26.419, -97.232 26.418, -97.195 26.259, -97.172 26....> <MULTIPOLYGON (((-97.869 26.348, -97.874 26.447, -98.005 26.464, -97.989 26....> <POLYGON ((-98.6 26.26, -98.341 26.787, -97.991 26.786, -97.992 26.617, -97....> <POLYGON ((-98.6 26.26, -98.678 26.242, -98.82 26.375, -98.909 26.36, -98.93...> ... <POLYGON ((-81.11 29.43, -81.151 29.418, -81.146 29.264, -81.413 29.263, -81...> <POLYGON ((-81.52 29.626, -81.521 29.755, -81.563 29.806, -81.582 29.842, -8...> <MULTIPOLYGON (((-81.529 30.721, -81.537 30.706, -81.601 30.725, -81.605 30....> <POLYGON ((-81.536 31.077, -81.561 31.085, -81.564 31.121, -81.639 31.112, -...>], crs=EPSG:4326)