Project

General

Profile

« Previous | Next » 

Revision 7772

Added schemas/BIEN2/ERD/

View differences:

schemas/BIEN2/ERD/BIEN2_ERD.sql
1
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
2
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
3
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL';
4

  
5
CREATE SCHEMA IF NOT EXISTS `default_schema` ;
6
USE `default_schema` ;
7

  
8
-- -----------------------------------------------------
9
-- Table `default_schema`.`bien_genus_family`
10
-- -----------------------------------------------------
11
CREATE  TABLE IF NOT EXISTS `default_schema`.`bien_genus_family` (
12
  `family` VARCHAR(250) CHARACTER SET 'utf8' NOT NULL ,
13
  `genus` VARCHAR(150) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
14
  `tot_families` INT(1) NULL DEFAULT NULL ,
15
  INDEX `genus` (`genus` ASC) ,
16
  INDEX `family` (`family` ASC) ,
17
  INDEX `tot_families` (`tot_families` ASC) )
18
ENGINE = InnoDB
19
DEFAULT CHARACTER SET = latin1;
20

  
21

  
22
-- -----------------------------------------------------
23
-- Table `default_schema`.`clade`
24
-- -----------------------------------------------------
25
CREATE  TABLE IF NOT EXISTS `default_schema`.`clade` (
26
  `cladeID` INT(11) UNSIGNED NOT NULL ,
27
  `parentCladeID` INT(11) UNSIGNED NULL DEFAULT NULL ,
28
  `cladeNameStd` VARCHAR(250) NOT NULL ,
29
  `rank` VARCHAR(50) NULL DEFAULT NULL ,
30
  `isHybrid` INT(1) UNSIGNED NOT NULL ,
31
  `family` VARCHAR(100) NULL DEFAULT NULL ,
32
  `leftIndex` INT(11) UNSIGNED NULL DEFAULT NULL ,
33
  `rightIndex` INT(11) UNSIGNED NULL DEFAULT NULL ,
34
  `source` VARCHAR(25) NULL DEFAULT NULL ,
35
  `majorPlantGroup` VARCHAR(45) NULL DEFAULT NULL ,
36
  `embryophytes` VARCHAR(45) NULL DEFAULT NULL ,
37
  `vascularPlants` VARCHAR(45) NULL DEFAULT NULL ,
38
  `seedPlants` VARCHAR(45) NULL DEFAULT NULL ,
39
  `floweringPlants` VARCHAR(45) NULL DEFAULT NULL ,
40
  PRIMARY KEY USING BTREE (`cladeID`) ,
41
  INDEX `nameStaging_isHybrid` (`isHybrid` ASC) ,
42
  INDEX `nameStaging_family` (`family` ASC) ,
43
  INDEX `nameStaging_leftIndex` (`leftIndex` ASC) ,
44
  INDEX `nameStaging_rightIndex` (`rightIndex` ASC) ,
45
  INDEX `idx_source` (`source` ASC) ,
46
  INDEX `nameStaging_rank` USING BTREE (`rank` ASC) ,
47
  INDEX `Index_majorPlantGroup` USING BTREE (`majorPlantGroup` ASC) ,
48
  INDEX `Index_embryophytes` USING BTREE (`embryophytes` ASC) ,
49
  INDEX `Index_seedPlants` USING BTREE (`seedPlants` ASC) ,
50
  INDEX `Index_vascularPlants` USING BTREE (`vascularPlants` ASC) ,
51
  INDEX `Index_floweringPlants` USING BTREE (`floweringPlants` ASC) ,
52
  INDEX `nameStaging_parentCladeID` USING BTREE (`parentCladeID` ASC) ,
53
  INDEX `nameStaging_cladeNameStd` USING BTREE (`cladeNameStd` ASC) )
54
ENGINE = InnoDB
55
DEFAULT CHARACTER SET = utf8;
56

  
57

  
58
-- -----------------------------------------------------
59
-- Table `default_schema`.`cladeName`
60
-- -----------------------------------------------------
61
CREATE  TABLE IF NOT EXISTS `default_schema`.`cladeName` (
62
  `cladeNameID` INT(11) NOT NULL AUTO_INCREMENT ,
63
  `cladeID` INT(10) UNSIGNED NOT NULL ,
64
  `cladeName` VARCHAR(250) NOT NULL ,
65
  `cladeNameUnique` VARCHAR(300) NULL DEFAULT NULL ,
66
  `nameStatus` VARCHAR(50) NULL DEFAULT NULL ,
67
  `source` VARCHAR(45) NULL DEFAULT NULL ,
68
  PRIMARY KEY USING BTREE (`cladeNameID`) ,
69
  INDEX `idx_cladeID` USING BTREE (`cladeID` ASC) ,
70
  INDEX `Index_source` (`source` ASC) ,
71
  INDEX `idx_name` USING BTREE (`cladeName` ASC) ,
72
  INDEX `idx_nameStatus` USING BTREE (`nameStatus` ASC) ,
73
  CONSTRAINT `cladeName_ibfk_1`
74
    FOREIGN KEY (`cladeID` )
75
    REFERENCES `default_schema`.`clade` (`cladeID` )
76
    ON DELETE CASCADE
77
    ON UPDATE CASCADE)
78
ENGINE = InnoDB
79
DEFAULT CHARACTER SET = utf8;
80

  
81

  
82
-- -----------------------------------------------------
83
-- Table `default_schema`.`DataSource`
84
-- -----------------------------------------------------
85
CREATE  TABLE IF NOT EXISTS `default_schema`.`DataSource` (
86
  `DataSourceID` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT ,
87
  `DataSourceName` VARCHAR(255) NOT NULL ,
88
  `DataSourceType` VARCHAR(255) NOT NULL ,
89
  PRIMARY KEY (`DataSourceID`) ,
90
  INDEX `DataSourceName` (`DataSourceName` ASC) ,
91
  INDEX `DataSourceType` (`DataSourceType` ASC) )
92
ENGINE = InnoDB
93
DEFAULT CHARACTER SET = utf8, 
94
COMMENT = 'Data sources for plots or specimens' ;
95

  
96

  
97
-- -----------------------------------------------------
98
-- Table `default_schema`.`PlotMetaDataDimension`
99
-- -----------------------------------------------------
100
CREATE  TABLE IF NOT EXISTS `default_schema`.`PlotMetaDataDimension` (
101
  `DBPlotID` INT(11) NOT NULL AUTO_INCREMENT ,
102
  `DBSourceName` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
103
  `ContactName` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
104
  `ContactEmail` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
105
  `ContactTelephone` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
106
  `Continent` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
107
  `Country` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
108
  `StateProvince` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
109
  `verbatimCountry` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
110
  `County` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
111
  `Locality` VARCHAR(256) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
112
  `VegetationCategory` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
113
  `PlotCD` BIGINT(32) NULL DEFAULT NULL ,
114
  `PlotName` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
115
  `PlotCensusMethod` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
116
  `PlotArea` VARCHAR(10) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
117
  `PlotAreaUnits` VARCHAR(10) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
118
  `PlotShape` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
119
  `PlotDecimalLatitude` DECIMAL(10,5) NULL DEFAULT NULL ,
120
  `PlotDecimalLongitude` DECIMAL(10,5) NULL DEFAULT NULL ,
121
  `CoordinateUncertainty` DECIMAL(10,5) NULL DEFAULT NULL ,
122
  `CoordinateUncertaintyUnits` VARCHAR(10) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
123
  `PlotReferenceX` DECIMAL(10,5) NULL DEFAULT NULL ,
124
  `PlotReferenceY` DECIMAL(10,5) NULL DEFAULT NULL ,
125
  `PlotMaxDBH` DECIMAL(10,5) NULL DEFAULT NULL ,
126
  `PlotMinDBH` DECIMAL(10,5) NULL DEFAULT NULL ,
127
  `test` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' ,
128
  PRIMARY KEY (`DBPlotID`) ,
129
  INDEX `DBSourceName` (`DBSourceName` ASC) ,
130
  INDEX `PlotName_2` (`PlotName` ASC, `DBSourceName` ASC) )
131
ENGINE = InnoDB
132
DEFAULT CHARACTER SET = utf8
133
COLLATE = utf8_bin;
134

  
135

  
136
-- -----------------------------------------------------
137
-- Table `default_schema`.`geoIndividualObservation`
138
-- -----------------------------------------------------
139
CREATE  TABLE IF NOT EXISTS `default_schema`.`geoIndividualObservation` (
140
  `ID` INT(11) NOT NULL COMMENT 'Links 1:1 with DBPlotID' ,
141
  `countryISO` VARCHAR(25) NULL DEFAULT NULL ,
142
  `countryStd` VARCHAR(150) NULL DEFAULT NULL ,
143
  `isInCountry` INT(1) NULL DEFAULT NULL ,
144
  `countryDistError` DOUBLE NULL DEFAULT NULL ,
145
  `stateProvinceStd` VARCHAR(150) NULL DEFAULT NULL ,
146
  `isInStateProvince` INT(1) NULL DEFAULT NULL ,
147
  `stateProvinceDistError` DOUBLE NULL DEFAULT NULL ,
148
  `countyParishStd` VARCHAR(150) NULL DEFAULT NULL ,
149
  `isInCountyParish` INT(1) NULL DEFAULT NULL ,
150
  `countyParishDistError` DOUBLE NULL DEFAULT NULL ,
151
  `isValidLatLong` INT(1) NULL DEFAULT NULL ,
152
  `isCultivated` INT(1) NULL DEFAULT '0' ,
153
  `isCultivatedReason` VARCHAR(255) NULL DEFAULT NULL ,
154
  PRIMARY KEY (`ID`) ,
155
  INDEX `geoI_countryISO_NDX` (`countryISO` ASC) ,
156
  INDEX `geoI_countryStd_NDX` (`countryStd` ASC) ,
157
  INDEX `geoI_isInCountry_NDX` (`isInCountry` ASC) ,
158
  INDEX `geoI_countryDistError_NDX` (`countryDistError` ASC) ,
159
  INDEX `geoI_stateProvinceStd_NDX` (`stateProvinceStd` ASC) ,
160
  INDEX `geoI_isInStateProvince_NDX` (`isInStateProvince` ASC) ,
161
  INDEX `geoI_stateProvinceDistError_NDX` (`stateProvinceDistError` ASC) ,
162
  INDEX `geoI_countyParishStd_NDX` (`countyParishStd` ASC) ,
163
  INDEX `geoI_isInCountyParish_NDX` (`isInCountyParish` ASC) ,
164
  INDEX `geoI_countyParishDistError_NDX` (`countyParishDistError` ASC) ,
165
  INDEX `geoI_isValidLatLong_NDX` (`isValidLatLong` ASC) ,
166
  INDEX `geoI_isCultivated` (`isCultivated` ASC) ,
167
  INDEX `geoI_isCultivatedReason` (`isCultivatedReason` ASC) ,
168
  CONSTRAINT `geoindividualobservation_ibfk_1`
169
    FOREIGN KEY (`ID` )
170
    REFERENCES `default_schema`.`PlotMetaDataDimension` (`DBPlotID` )
171
    ON DELETE CASCADE
172
    ON UPDATE CASCADE)
173
ENGINE = InnoDB
174
DEFAULT CHARACTER SET = utf8;
175

  
176

  
177
-- -----------------------------------------------------
178
-- Table `default_schema`.`geoPlotMetaDataDimension`
179
-- -----------------------------------------------------
180
CREATE  TABLE IF NOT EXISTS `default_schema`.`geoPlotMetaDataDimension` (
181
  `ID` INT(11) NOT NULL COMMENT 'Links 1:1 with DBPlotID' ,
182
  `countryISO` VARCHAR(25) NULL DEFAULT NULL ,
183
  `countryStd` VARCHAR(150) NULL DEFAULT NULL ,
184
  `isInCountry` INT(1) NULL DEFAULT NULL ,
185
  `countryDistError` DOUBLE NULL DEFAULT NULL ,
186
  `stateProvinceStd` VARCHAR(150) NULL DEFAULT NULL ,
187
  `isInStateProvince` INT(1) NULL DEFAULT NULL ,
188
  `stateProvinceDistError` DOUBLE NULL DEFAULT NULL ,
189
  `countyParishStd` VARCHAR(150) NULL DEFAULT NULL ,
190
  `isInCountyParish` INT(1) NULL DEFAULT NULL ,
191
  `countyParishDistError` DOUBLE NULL DEFAULT NULL ,
192
  `isValidLatLong` INT(1) NULL DEFAULT NULL ,
193
  `isCultivated` INT(1) NULL DEFAULT '0' ,
194
  `isCultivatedReason` VARCHAR(255) NULL DEFAULT NULL ,
195
  PRIMARY KEY (`ID`) ,
196
  INDEX `geoP_countryISO_NDX` (`countryISO` ASC) ,
197
  INDEX `geoP_countryStd_NDX` (`countryStd` ASC) ,
198
  INDEX `geoP_isInCountry_NDX` (`isInCountry` ASC) ,
199
  INDEX `geoP_countryDistError_NDX` (`countryDistError` ASC) ,
200
  INDEX `geoP_stateProvinceStd_NDX` (`stateProvinceStd` ASC) ,
201
  INDEX `geoP_isInStateProvince_NDX` (`isInStateProvince` ASC) ,
202
  INDEX `geoP_stateProvinceDistError_NDX` (`stateProvinceDistError` ASC) ,
203
  INDEX `geoP_countyParishStd_NDX` (`countyParishStd` ASC) ,
204
  INDEX `geoP_isInCountyParish_NDX` (`isInCountyParish` ASC) ,
205
  INDEX `geoP_countyParishDistError_NDX` (`countyParishDistError` ASC) ,
206
  INDEX `geoP_isValidLatLong_NDX` (`isValidLatLong` ASC) ,
207
  INDEX `geoP_isCultivated` (`isCultivated` ASC) ,
208
  INDEX `geo_isCultivatedReason` (`isCultivatedReason` ASC) ,
209
  CONSTRAINT `geoplotmetadatadimension_ibfk_1`
210
    FOREIGN KEY (`ID` )
211
    REFERENCES `default_schema`.`PlotMetaDataDimension` (`DBPlotID` )
212
    ON DELETE CASCADE
213
    ON UPDATE CASCADE)
214
ENGINE = InnoDB
215
DEFAULT CHARACTER SET = utf8;
216

  
217

  
218
-- -----------------------------------------------------
219
-- Table `default_schema`.`TaxonDimension`
220
-- -----------------------------------------------------
221
CREATE  TABLE IF NOT EXISTS `default_schema`.`TaxonDimension` (
222
  `TaxonomyID` INT(11) NOT NULL AUTO_INCREMENT ,
223
  `FamilyName` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
224
  `GenusName` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
225
  `SpecificEpithet` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
226
  `InfraspecificEpithet` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
227
  `InfraspecificRank` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
228
  `Authority` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
229
  `is_plotName` INT(1) UNSIGNED NULL DEFAULT '0' ,
230
  `taxonAuthorityVerbatim` VARCHAR(250) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
231
  `taxonMatched` VARCHAR(250) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
232
  `taxonMatchedAuthority` VARCHAR(250) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
233
  `unmatchedTerms` VARCHAR(250) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
234
  `matchScore` DECIMAL(3,2) NULL DEFAULT NULL ,
235
  `taxonMatchedAcceptance` VARCHAR(1) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
236
  `familyCorrected` VARCHAR(50) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
237
  `genusCorrected` VARCHAR(150) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
238
  `speciesCorrected` VARCHAR(255) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
239
  `taxonCorrected` VARCHAR(250) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
240
  `authorityCorrected` VARCHAR(250) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
241
  `taxonCorrectedTnrsID` INT(10) UNSIGNED NULL DEFAULT NULL ,
242
  `taxonCorrectedRank` VARCHAR(25) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
243
  `taxonCorrectedAcceptance` VARCHAR(1) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
244
  `morphospecies` VARCHAR(250) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
245
  `taxonMorphospecies` VARCHAR(250) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
246
  `is_scrubbed` INT(1) UNSIGNED NOT NULL DEFAULT '0' ,
247
  PRIMARY KEY (`TaxonomyID`) ,
248
  INDEX `FamilyName` (`FamilyName` ASC) ,
249
  INDEX `GenusName` (`GenusName` ASC) ,
250
  INDEX `SpecificEpithet` (`SpecificEpithet` ASC) ,
251
  INDEX `InfraspecificRank` (`InfraspecificRank` ASC) ,
252
  INDEX `FamilyName_2` (`FamilyName` ASC, `GenusName` ASC, `SpecificEpithet` ASC, `InfraspecificEpithet` ASC, `InfraspecificRank` ASC, `Authority` ASC) ,
253
  INDEX `InfraspecificEpithet` (`InfraspecificEpithet` ASC) ,
254
  INDEX `taxonAuthorityVerbatim` (`taxonAuthorityVerbatim` ASC) ,
255
  INDEX `taxonCorrected` (`taxonCorrected` ASC) ,
256
  INDEX `taxonMorphospecies` (`taxonMorphospecies` ASC) ,
257
  INDEX `is_scrubbed` (`is_scrubbed` ASC) ,
258
  INDEX `TD_familyCorrected` (`familyCorrected` ASC) ,
259
  INDEX `TD_taxonMatchedAcceptance` (`taxonMatchedAcceptance` ASC) ,
260
  INDEX `TD_taxonCorrectedAcceptance` (`taxonCorrectedAcceptance` ASC) ,
261
  INDEX `TD_taxonCorrectedRank` (`taxonCorrectedRank` ASC) ,
262
  INDEX `taxonCorrectedTnrsID` (`taxonCorrectedTnrsID` ASC) ,
263
  INDEX `TD_is_plotName` (`is_plotName` ASC) ,
264
  INDEX `genusCorrected_idx` (`genusCorrected` ASC) ,
265
  INDEX `speciesCorrected` (`speciesCorrected` ASC) )
266
ENGINE = InnoDB
267
DEFAULT CHARACTER SET = utf8
268
COLLATE = utf8_bin
269
ROW_FORMAT = FIXED;
270

  
271

  
272
-- -----------------------------------------------------
273
-- Table `default_schema`.`SpecimenSourceData`
274
-- -----------------------------------------------------
275
CREATE  TABLE IF NOT EXISTS `default_schema`.`SpecimenSourceData` (
276
  `DBSourceID` INT(11) NOT NULL AUTO_INCREMENT ,
277
  `DBSourceName` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
278
  `ContactName` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
279
  `ContactEmail` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
280
  `ContactTelephone` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
281
  `SpecimenInstitutionCD` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
282
  `SpecimenCollectionCD` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
283
  `test` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' ,
284
  PRIMARY KEY (`DBSourceID`) ,
285
  INDEX `DBSourceName` (`DBSourceName` ASC) ,
286
  INDEX `SpecimenInstitutionCD` (`SpecimenInstitutionCD` ASC, `SpecimenCollectionCD` ASC, `DBSourceName` ASC) )
287
ENGINE = InnoDB
288
DEFAULT CHARACTER SET = utf8
289
COLLATE = utf8_bin;
290

  
291

  
292
-- -----------------------------------------------------
293
-- Table `default_schema`.`ObservationSpecimen`
294
-- -----------------------------------------------------
295
CREATE  TABLE IF NOT EXISTS `default_schema`.`ObservationSpecimen` (
296
  `ObservationSpecimenID` INT(11) NOT NULL AUTO_INCREMENT ,
297
  `DBSourceID` INT(11) NOT NULL ,
298
  `Continent` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
299
  `Country` VARCHAR(100) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
300
  `StateProvince` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
301
  `verbatimCountry` VARCHAR(100) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
302
  `County` VARCHAR(100) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
303
  `Locality` VARCHAR(1024) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
304
  `Collector` VARCHAR(256) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
305
  `IdentifiedBy` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
306
  `IdentifiedDate` DATE NULL DEFAULT NULL ,
307
  `CoordinateUncertainty` DECIMAL(10,5) NULL DEFAULT NULL ,
308
  `CoordinateUncertaintyUnits` VARCHAR(10) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
309
  `VegetationCategory` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
310
  `test` TINYINT(3) UNSIGNED NOT NULL ,
311
  `Cultivated` INT(1) NOT NULL ,
312
  `CollectionNumber` VARCHAR(24) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
313
  PRIMARY KEY (`ObservationSpecimenID`) ,
314
  INDEX `RefSpecimenSourceData421` (`DBSourceID` ASC) ,
315
  INDEX `DBSourceID` (`DBSourceID` ASC, `Continent` ASC, `Country` ASC, `StateProvince` ASC, `County` ASC, `Locality`(255) ASC, `Collector`(255) ASC, `IdentifiedBy` ASC, `IdentifiedDate` ASC, `CoordinateUncertainty` ASC, `CoordinateUncertaintyUnits` ASC, `VegetationCategory` ASC) ,
316
  CONSTRAINT `observationspecimen_ibfk_1`
317
    FOREIGN KEY (`DBSourceID` )
318
    REFERENCES `default_schema`.`SpecimenSourceData` (`DBSourceID` )
319
    ON DELETE CASCADE
320
    ON UPDATE CASCADE)
321
ENGINE = InnoDB
322
DEFAULT CHARACTER SET = utf8
323
COLLATE = utf8_bin;
324

  
325

  
326
-- -----------------------------------------------------
327
-- Table `default_schema`.`IndividualObservation`
328
-- -----------------------------------------------------
329
CREATE  TABLE IF NOT EXISTS `default_schema`.`IndividualObservation` (
330
  `ObservationID` INT(11) NOT NULL AUTO_INCREMENT ,
331
  `ObservationType` INT(11) NULL DEFAULT NULL ,
332
  `PlotTreeTag` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
333
  `DBPlotID` INT(11) NULL DEFAULT NULL ,
334
  `SpecimenCatalogNO` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
335
  `ObservationSpecimenID` INT(11) NULL DEFAULT NULL ,
336
  `LatestDateCollected` DATE NULL DEFAULT NULL ,
337
  `DecimalLatitude` DECIMAL(10,5) NULL DEFAULT NULL ,
338
  `DecimalLongitude` DECIMAL(10,5) NULL DEFAULT NULL ,
339
  `NumberOfStems` INT(11) NULL DEFAULT NULL ,
340
  `BasalDiameter` DECIMAL(10,5) NULL DEFAULT NULL ,
341
  `Height` DECIMAL(10,5) NULL DEFAULT NULL ,
342
  `TaxonomyID` INT(11) NOT NULL ,
343
  `RawTreeID` INT(10) NULL DEFAULT NULL ,
344
  `test` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' ,
345
  PRIMARY KEY (`ObservationID`) ,
346
  INDEX `RefPlotMetaDataDimension411` (`DBPlotID` ASC) ,
347
  INDEX `RefTaxonDimension381` (`TaxonomyID` ASC) ,
348
  INDEX `ObservationSpecimenID` (`ObservationSpecimenID` ASC) ,
349
  CONSTRAINT `individualobservation_ibfk_3`
350
    FOREIGN KEY (`TaxonomyID` )
351
    REFERENCES `default_schema`.`TaxonDimension` (`TaxonomyID` )
352
    ON DELETE CASCADE
353
    ON UPDATE CASCADE,
354
  CONSTRAINT `individualobservation_ibfk_1`
355
    FOREIGN KEY (`ObservationSpecimenID` )
356
    REFERENCES `default_schema`.`ObservationSpecimen` (`ObservationSpecimenID` )
357
    ON DELETE CASCADE
358
    ON UPDATE CASCADE,
359
  CONSTRAINT `individualobservation_ibfk_2`
360
    FOREIGN KEY (`DBPlotID` )
361
    REFERENCES `default_schema`.`PlotMetaDataDimension` (`DBPlotID` )
362
    ON DELETE CASCADE
363
    ON UPDATE CASCADE)
364
ENGINE = InnoDB
365
DEFAULT CHARACTER SET = utf8
366
COLLATE = utf8_bin;
367

  
368

  
369
-- -----------------------------------------------------
370
-- Table `default_schema`.`IndividualObservationMeasurement`
371
-- -----------------------------------------------------
372
CREATE  TABLE IF NOT EXISTS `default_schema`.`IndividualObservationMeasurement` (
373
  `ObservationID` INT(11) NOT NULL ,
374
  `StemNO` INT(11) NOT NULL AUTO_INCREMENT ,
375
  `ObservationNO` INT(11) NOT NULL ,
376
  `PrimaryStem` INT(11) NULL DEFAULT NULL ,
377
  `DBH` DECIMAL(10,5) NULL DEFAULT NULL ,
378
  `HOM` DECIMAL(10,5) NULL DEFAULT NULL ,
379
  `test` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' ,
380
  PRIMARY KEY (`StemNO`) ,
381
  UNIQUE INDEX `ObservationID` (`ObservationID` ASC, `StemNO` ASC, `ObservationNO` ASC) ,
382
  INDEX `RefIndividualObservation11` (`ObservationID` ASC) ,
383
  CONSTRAINT `IndividualObservationMeasurement_ibfk_1`
384
    FOREIGN KEY (`ObservationID` )
385
    REFERENCES `default_schema`.`IndividualObservation` (`ObservationID` )
386
    ON DELETE CASCADE
387
    ON UPDATE CASCADE)
388
ENGINE = InnoDB
389
DEFAULT CHARACTER SET = utf8
390
COLLATE = utf8_bin;
391

  
392

  
393
-- -----------------------------------------------------
394
-- Table `default_schema`.`PlotTimeDimension`
395
-- -----------------------------------------------------
396
CREATE  TABLE IF NOT EXISTS `default_schema`.`PlotTimeDimension` (
397
  `PlotTimeID` INT(11) NOT NULL AUTO_INCREMENT ,
398
  `CensusID` INT(11) NULL DEFAULT NULL ,
399
  `CensusName` VARCHAR(32) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
400
  `CensusStartDate` DATE NULL DEFAULT NULL ,
401
  `CensusEndDate` DATE NULL DEFAULT NULL ,
402
  `DBPlotID` INT(11) NOT NULL ,
403
  `test` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' ,
404
  PRIMARY KEY (`PlotTimeID`) ,
405
  INDEX `Ref613` (`DBPlotID` ASC) ,
406
  INDEX `CensusName_2` (`CensusName` ASC, `DBPlotID` ASC, `CensusID` ASC) ,
407
  INDEX `CensusName_5` (`CensusName` ASC, `CensusID` ASC) ,
408
  CONSTRAINT `plottimedimension_ibfk_1`
409
    FOREIGN KEY (`DBPlotID` )
410
    REFERENCES `default_schema`.`PlotMetaDataDimension` (`DBPlotID` )
411
    ON DELETE CASCADE
412
    ON UPDATE CASCADE)
413
ENGINE = InnoDB
414
DEFAULT CHARACTER SET = utf8
415
COLLATE = utf8_bin;
416

  
417

  
418
-- -----------------------------------------------------
419
-- Table `default_schema`.`PlotAggregateFact`
420
-- -----------------------------------------------------
421
CREATE  TABLE IF NOT EXISTS `default_schema`.`PlotAggregateFact` (
422
  `DBPlotID` INT(11) NOT NULL ,
423
  `PlotTimeID` INT(11) NOT NULL ,
424
  `TotalIndividuals` INT(11) NULL DEFAULT NULL ,
425
  `TotalIndividualsAbove1cm` INT(11) NULL DEFAULT NULL ,
426
  `TotalIndividualsAbove2.5cm` INT(11) NULL DEFAULT NULL ,
427
  `TotalIndividualsAbove10cm` INT(11) NULL DEFAULT NULL ,
428
  `PercentCover` DECIMAL(10,5) NULL DEFAULT NULL ,
429
  `TaxonomyID` INT(11) NOT NULL ,
430
  `del` INT(1) UNSIGNED NULL DEFAULT NULL ,
431
  `test` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' ,
432
  PRIMARY KEY (`DBPlotID`, `PlotTimeID`, `TaxonomyID`) ,
433
  INDEX `RefPlotMetaDataDimension61` (`DBPlotID` ASC) ,
434
  INDEX `RefPlotTimeDimension371` (`PlotTimeID` ASC) ,
435
  INDEX `RefTaxonDimension181` (`TaxonomyID` ASC) ,
436
  CONSTRAINT `plotaggregatefact_ibfk_3`
437
    FOREIGN KEY (`TaxonomyID` )
438
    REFERENCES `default_schema`.`TaxonDimension` (`TaxonomyID` )
439
    ON DELETE CASCADE
440
    ON UPDATE CASCADE,
441
  CONSTRAINT `plotaggregatefact_ibfk_1`
442
    FOREIGN KEY (`DBPlotID` )
443
    REFERENCES `default_schema`.`PlotMetaDataDimension` (`DBPlotID` )
444
    ON DELETE CASCADE
445
    ON UPDATE CASCADE,
446
  CONSTRAINT `plotaggregatefact_ibfk_2`
447
    FOREIGN KEY (`PlotTimeID` )
448
    REFERENCES `default_schema`.`PlotTimeDimension` (`PlotTimeID` )
449
    ON DELETE CASCADE
450
    ON UPDATE CASCADE)
451
ENGINE = InnoDB
452
DEFAULT CHARACTER SET = utf8
453
COLLATE = utf8_bin;
454

  
455

  
456
-- -----------------------------------------------------
457
-- Table `default_schema`.`TaxonDataSource`
458
-- -----------------------------------------------------
459
CREATE  TABLE IF NOT EXISTS `default_schema`.`TaxonDataSource` (
460
  `TaxonDataSourceID` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT ,
461
  `DataSourceID` INT(10) UNSIGNED NOT NULL ,
462
  `TaxonomyID` INT(11) NOT NULL ,
463
  `TotalObservations` INT(10) UNSIGNED NULL DEFAULT NULL ,
464
  `GeoreferencedObservations` INT(10) UNSIGNED NULL DEFAULT NULL ,
465
  PRIMARY KEY (`TaxonDataSourceID`) ,
466
  INDEX `DataSourceID` (`DataSourceID` ASC) ,
467
  INDEX `TaxonomyID` (`TaxonomyID` ASC) ,
468
  CONSTRAINT `TaxonDataSource_ibfk_2`
469
    FOREIGN KEY (`TaxonomyID` )
470
    REFERENCES `default_schema`.`TaxonDimension` (`TaxonomyID` )
471
    ON DELETE CASCADE
472
    ON UPDATE CASCADE,
473
  CONSTRAINT `TaxonDataSource_ibfk_1`
474
    FOREIGN KEY (`DataSourceID` )
475
    REFERENCES `default_schema`.`DataSource` (`DataSourceID` )
476
    ON DELETE CASCADE
477
    ON UPDATE CASCADE)
478
ENGINE = InnoDB
479
DEFAULT CHARACTER SET = utf8, 
480
COMMENT = 'Links taxa to data sources in which they are used' ;
481

  
482

  
483
-- -----------------------------------------------------
484
-- Table `default_schema`.`TaxonObservation`
485
-- -----------------------------------------------------
486
CREATE  TABLE IF NOT EXISTS `default_schema`.`TaxonObservation` (
487
  `TaxonomyObservationID` INT(11) NOT NULL AUTO_INCREMENT ,
488
  `TaxonomyID` INT(11) NULL DEFAULT NULL ,
489
  `PlotOrSpecimenFlag` INT(11) NULL DEFAULT NULL ,
490
  `DBPlotID` INT(11) NOT NULL ,
491
  `DBSourceID` INT(11) NOT NULL ,
492
  `GBIFScientificNameOriginal` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
493
  `GBIFFamilyOriginal` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
494
  `GBIFGenusOriginal` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL ,
495
  `test` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' ,
496
  PRIMARY KEY (`TaxonomyObservationID`) ,
497
  INDEX `RefTaxonDimension301` (`TaxonomyID` ASC) ,
498
  INDEX `Ref614` (`DBPlotID` ASC) ,
499
  INDEX `TaxonomyID_2` (`TaxonomyID` ASC, `DBPlotID` ASC) ,
500
  INDEX `DBSourceID` (`DBSourceID` ASC) ,
501
  CONSTRAINT `taxonobservation_ibfk_3`
502
    FOREIGN KEY (`TaxonomyID` )
503
    REFERENCES `default_schema`.`TaxonDimension` (`TaxonomyID` )
504
    ON DELETE CASCADE
505
    ON UPDATE CASCADE,
506
  CONSTRAINT `taxonobservation_ibfk_1`
507
    FOREIGN KEY (`DBPlotID` )
508
    REFERENCES `default_schema`.`PlotMetaDataDimension` (`DBPlotID` )
509
    ON DELETE CASCADE
510
    ON UPDATE CASCADE,
511
  CONSTRAINT `taxonobservation_ibfk_2`
512
    FOREIGN KEY (`DBSourceID` )
513
    REFERENCES `default_schema`.`SpecimenSourceData` (`DBSourceID` )
514
    ON DELETE CASCADE
515
    ON UPDATE CASCADE)
516
ENGINE = InnoDB
517
DEFAULT CHARACTER SET = utf8
518
COLLATE = utf8_bin;
519

  
520

  
521
-- -----------------------------------------------------
522
-- Table `default_schema`.`TraitObservation`
523
-- -----------------------------------------------------
524
CREATE  TABLE IF NOT EXISTS `default_schema`.`TraitObservation` (
525
  `TraitObservationID` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT ,
526
  `TaxonomyID` INT(11) NOT NULL ,
527
  `Family` VARCHAR(100) NULL DEFAULT NULL ,
528
  `Genus` VARCHAR(100) NULL DEFAULT NULL ,
529
  `SpecificEpithet` VARCHAR(100) NULL DEFAULT NULL ,
530
  `InfraspecificRank` VARCHAR(25) NULL DEFAULT NULL ,
531
  `InfraspecificEpithet` VARCHAR(100) NULL DEFAULT NULL ,
532
  `Taxon` VARCHAR(255) NULL DEFAULT NULL ,
533
  `AuthorOfScientificName` VARCHAR(255) NULL DEFAULT NULL ,
534
  `TaxonAuthor` VARCHAR(255) NULL DEFAULT NULL ,
535
  `Habit` VARCHAR(50) NULL DEFAULT NULL ,
536
  `TraitName` VARCHAR(200) NULL DEFAULT NULL ,
537
  `TraitValue` VARCHAR(100) NULL DEFAULT NULL ,
538
  `Unit` VARCHAR(100) NULL DEFAULT NULL ,
539
  `Method` VARCHAR(255) NULL DEFAULT NULL ,
540
  `Region` VARCHAR(100) NULL DEFAULT NULL ,
541
  `Country` VARCHAR(100) NULL DEFAULT NULL ,
542
  `StateProvince` VARCHAR(100) NULL DEFAULT NULL ,
543
  `LowerPolitical` VARCHAR(100) NULL DEFAULT NULL ,
544
  `LocalityDescription` VARCHAR(100) NULL DEFAULT NULL ,
545
  `VerbatimLatitude` VARCHAR(150) NULL DEFAULT NULL ,
546
  `VerbatimLongitude` VARCHAR(150) NULL DEFAULT NULL ,
547
  `VerbatimElevation` VARCHAR(150) NULL DEFAULT NULL ,
548
  `Source` VARCHAR(100) NULL DEFAULT NULL ,
549
  `URLSource` VARCHAR(100) NULL DEFAULT NULL ,
550
  `SourceCitation` VARCHAR(1000) NULL DEFAULT NULL ,
551
  `SourceID` VARCHAR(255) NULL DEFAULT NULL ,
552
  `VisitingDate` VARCHAR(100) NULL DEFAULT NULL ,
553
  `ReferenceID` INT(11) UNSIGNED NULL DEFAULT NULL ,
554
  `Access` VARCHAR(100) NULL DEFAULT NULL ,
555
  `Project_PI` VARCHAR(255) NULL DEFAULT NULL ,
556
  `Project_PI_contact` VARCHAR(100) NULL DEFAULT NULL ,
557
  `Observation` VARCHAR(255) NULL DEFAULT NULL ,
558
  `Authorship` VARCHAR(255) NULL DEFAULT NULL ,
559
  `AuthorshipContact` VARCHAR(100) NULL DEFAULT NULL ,
560
  PRIMARY KEY (`TraitObservationID`) ,
561
  INDEX `TaxonomyID` (`TaxonomyID` ASC) ,
562
  INDEX `Family` (`Family` ASC) ,
563
  INDEX `Taxon` (`Taxon` ASC) ,
564
  INDEX `TraitName` (`TraitName` ASC) ,
565
  INDEX `ReferenceID` (`ReferenceID` ASC) ,
566
  INDEX `TaxonAuthor` (`TaxonAuthor` ASC) ,
567
  CONSTRAINT `traitobservation_ibfk_1`
568
    FOREIGN KEY (`TaxonomyID` )
569
    REFERENCES `default_schema`.`TaxonDimension` (`TaxonomyID` )
570
    ON DELETE CASCADE
571
    ON UPDATE CASCADE)
572
ENGINE = InnoDB
573
DEFAULT CHARACTER SET = utf8, 
574
COMMENT = 'Species trait observations' ;
575

  
576

  
577
-- -----------------------------------------------------
578
-- Table `default_schema`.`viewFullOccurrence`
579
-- -----------------------------------------------------
580
CREATE  TABLE IF NOT EXISTS `default_schema`.`viewFullOccurrence` (
581
  `OccurID` INT(11) NOT NULL AUTO_INCREMENT ,
582
  `DBPlotID` INT(11) NOT NULL ,
583
  `ObservationID` INT(11) NULL DEFAULT NULL ,
584
  `Family` VARCHAR(64) NULL DEFAULT NULL ,
585
  `TaxonomyID` INT(11) NOT NULL ,
586
  `OrigGenus` VARCHAR(64) NULL DEFAULT NULL ,
587
  `OrigSpecies` VARCHAR(64) NULL DEFAULT NULL ,
588
  `TaxonCorrected` VARCHAR(250) NULL DEFAULT NULL ,
589
  `Genus` VARCHAR(64) NULL DEFAULT NULL ,
590
  `Species` VARCHAR(64) NULL DEFAULT NULL ,
591
  `Latin` VARCHAR(64) NULL DEFAULT NULL ,
592
  `Rank` VARCHAR(16) NULL DEFAULT NULL ,
593
  `Accepted` VARCHAR(2) NULL DEFAULT NULL ,
594
  `TaxonMorphoSpecies` VARCHAR(255) NULL DEFAULT NULL ,
595
  `isCultivated` INT(1) NULL DEFAULT '0' ,
596
  `isCultivatedReason` VARCHAR(255) NULL DEFAULT NULL ,
597
  `CountryOrig` VARCHAR(100) NULL DEFAULT NULL ,
598
  `CountryStd` VARCHAR(150) NULL DEFAULT NULL ,
599
  `CountryError` DOUBLE NULL DEFAULT NULL ,
600
  `ProvinceStd` VARCHAR(64) NULL DEFAULT NULL ,
601
  `ProvinceError` DOUBLE NULL DEFAULT NULL ,
602
  `County` VARCHAR(64) NULL DEFAULT NULL ,
603
  `Plot` VARCHAR(32) NULL DEFAULT NULL ,
604
  `PlotArea` VARCHAR(10) NULL DEFAULT NULL ,
605
  `Latitude` DECIMAL(10,5) NULL DEFAULT NULL ,
606
  `Longitude` DECIMAL(10,5) NULL DEFAULT NULL ,
607
  `isValidLatLong` INT(1) NULL DEFAULT NULL ,
608
  `Date` DATE NULL DEFAULT NULL ,
609
  `SurveyType` VARCHAR(10) NULL DEFAULT NULL ,
610
  `Abund` INT(11) NULL DEFAULT NULL ,
611
  `Abund1` INT(11) NULL DEFAULT NULL ,
612
  `Abund2.5` INT(11) NULL DEFAULT NULL ,
613
  `Abund10` INT(11) NULL DEFAULT NULL ,
614
  `PctCover` DECIMAL(10,5) NULL DEFAULT NULL ,
615
  `DataSource` VARCHAR(128) NULL DEFAULT NULL ,
616
  PRIMARY KEY (`OccurID`) ,
617
  INDEX `DBPlotID` (`DBPlotID` ASC) ,
618
  INDEX `ObservationID` (`ObservationID` ASC) ,
619
  INDEX `Family` (`Family`(16) ASC) ,
620
  INDEX `TaxonCorrected` (`TaxonCorrected`(25) ASC) ,
621
  INDEX `Latin` (`Latin`(25) ASC) ,
622
  INDEX `TaxonomyID` (`TaxonomyID` ASC) ,
623
  INDEX `Genus` (`Genus`(16) ASC) ,
624
  INDEX `Species` (`Species`(20) ASC) ,
625
  INDEX `ORIGLATIN` (`OrigGenus`(16) ASC, `OrigSpecies`(20) ASC) ,
626
  INDEX `CountryStd` (`CountryStd` ASC) ,
627
  INDEX `SurveyType` (`SurveyType` ASC) ,
628
  INDEX `DataSource` (`DataSource` ASC) ,
629
  INDEX `Rank` (`Rank` ASC) ,
630
  INDEX `Accepted` (`Accepted` ASC) ,
631
  INDEX `isCultivated` (`isCultivated` ASC) ,
632
  INDEX `isCultivatedReason` (`isCultivatedReason` ASC) ,
633
  INDEX `isValidLatLong` (`isValidLatLong` ASC) ,
634
  INDEX `CountryError` (`CountryError` ASC) ,
635
  INDEX `ProvinceError` (`ProvinceError` ASC) ,
636
  CONSTRAINT `viewFullOccurrence_ibfk_1`
637
    FOREIGN KEY (`ObservationID` )
638
    REFERENCES `default_schema`.`IndividualObservation` (`ObservationID` )
639
    ON DELETE CASCADE
640
    ON UPDATE CASCADE,
641
  CONSTRAINT `viewFullOccurrence_ibfk_3`
642
    FOREIGN KEY (`DBPlotID` )
643
    REFERENCES `default_schema`.`PlotMetaDataDimension` (`DBPlotID` )
644
    ON DELETE CASCADE
645
    ON UPDATE CASCADE,
646
  CONSTRAINT `viewFullOccurrence_ibfk_2`
647
    FOREIGN KEY (`TaxonomyID` )
648
    REFERENCES `default_schema`.`TaxonDimension` (`TaxonomyID` )
649
    ON DELETE CASCADE
650
    ON UPDATE CASCADE)
651
ENGINE = InnoDB
652
DEFAULT CHARACTER SET = utf8;
653

  
654

  
655

  
656
SET SQL_MODE=@OLD_SQL_MODE;
657
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
658
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
schemas/BIEN2/ERD/BIEN2_ERD.svg
1
<?xml version="1.0" encoding="UTF-8"?>
2
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1117.984252pt" height="782.900787pt" viewBox="0 0 1117.984252 782.900787" version="1.1">
3
<defs>
4
<g>
5
<symbol overflow="visible" id="glyph0-0">
6
<path style="stroke:none;" d=""/>
7
</symbol>
8
<symbol overflow="visible" id="glyph0-1">
9
<path style="stroke:none;" d="M 3.515625 -3.1875 C 3.785156 -2.84375 3.917969 -2.398438 3.917969 -1.855469 C 3.917969 -1.292969 3.785156 -0.828125 3.519531 -0.457031 C 3.253906 -0.0898438 2.882812 0.0976562 2.410156 0.0976562 C 2.109375 0.0976562 1.867188 0.0351562 1.6875 -0.0820312 C 1.578125 -0.152344 1.460938 -0.277344 1.335938 -0.457031 L 1.335938 0 L 0.410156 0 L 0.410156 -4.890625 L 1.351562 -4.890625 L 1.351562 -3.148438 C 1.472656 -3.316406 1.601562 -3.445312 1.746094 -3.535156 C 1.917969 -3.644531 2.136719 -3.699219 2.398438 -3.699219 C 2.875 -3.699219 3.246094 -3.527344 3.515625 -3.1875 Z M 2.722656 -0.980469 C 2.859375 -1.175781 2.925781 -1.4375 2.925781 -1.757812 C 2.925781 -2.015625 2.894531 -2.226562 2.828125 -2.394531 C 2.699219 -2.714844 2.46875 -2.875 2.128906 -2.875 C 1.785156 -2.875 1.550781 -2.71875 1.421875 -2.40625 C 1.355469 -2.238281 1.320312 -2.023438 1.320312 -1.761719 C 1.320312 -1.449219 1.390625 -1.195312 1.527344 -0.988281 C 1.664062 -0.785156 1.875 -0.683594 2.15625 -0.683594 C 2.398438 -0.683594 2.589844 -0.78125 2.722656 -0.980469 Z M 2.722656 -0.980469 "/>
10
</symbol>
11
<symbol overflow="visible" id="glyph0-2">
12
<path style="stroke:none;" d="M 1.414062 -4.050781 L 0.457031 -4.050781 L 0.457031 -4.925781 L 1.414062 -4.925781 Z M 0.457031 -3.621094 L 1.414062 -3.621094 L 1.414062 0 L 0.457031 0 Z M 0.457031 -3.621094 "/>
13
</symbol>
14
<symbol overflow="visible" id="glyph0-3">
15
<path style="stroke:none;" d="M 1.359375 -2.730469 C 1.238281 -2.59375 1.164062 -2.40625 1.132812 -2.171875 L 2.605469 -2.171875 C 2.589844 -2.421875 2.511719 -2.613281 2.375 -2.742188 C 2.238281 -2.871094 2.070312 -2.9375 1.871094 -2.9375 C 1.652344 -2.9375 1.480469 -2.867188 1.359375 -2.730469 Z M 2.683594 -3.546875 C 2.925781 -3.433594 3.125 -3.257812 3.28125 -3.011719 C 3.421875 -2.796875 3.515625 -2.550781 3.558594 -2.265625 C 3.582031 -2.097656 3.59375 -1.859375 3.585938 -1.546875 L 1.109375 -1.546875 C 1.121094 -1.183594 1.238281 -0.929688 1.453125 -0.785156 C 1.582031 -0.695312 1.738281 -0.648438 1.921875 -0.648438 C 2.117188 -0.648438 2.277344 -0.703125 2.398438 -0.8125 C 2.464844 -0.875 2.523438 -0.957031 2.574219 -1.0625 L 3.542969 -1.0625 C 3.515625 -0.847656 3.40625 -0.628906 3.207031 -0.410156 C 2.894531 -0.0585938 2.460938 0.121094 1.902344 0.121094 C 1.441406 0.121094 1.035156 -0.0273438 0.683594 -0.324219 C 0.332031 -0.621094 0.15625 -1.105469 0.15625 -1.773438 C 0.15625 -2.402344 0.316406 -2.882812 0.632812 -3.214844 C 0.949219 -3.550781 1.363281 -3.71875 1.871094 -3.71875 C 2.171875 -3.71875 2.441406 -3.660156 2.683594 -3.546875 Z M 2.683594 -3.546875 "/>
16
</symbol>
17
<symbol overflow="visible" id="glyph0-4">
18
<path style="stroke:none;" d="M 3.367188 -3.414062 C 3.605469 -3.21875 3.722656 -2.890625 3.722656 -2.4375 L 3.722656 0 L 2.753906 0 L 2.753906 -2.203125 C 2.753906 -2.394531 2.726562 -2.539062 2.675781 -2.640625 C 2.582031 -2.828125 2.40625 -2.917969 2.144531 -2.917969 C 1.824219 -2.917969 1.605469 -2.785156 1.484375 -2.511719 C 1.421875 -2.367188 1.390625 -2.183594 1.390625 -1.960938 L 1.390625 0 L 0.449219 0 L 0.449219 -3.613281 L 1.363281 -3.613281 L 1.363281 -3.085938 C 1.484375 -3.273438 1.597656 -3.40625 1.707031 -3.488281 C 1.902344 -3.632812 2.148438 -3.707031 2.449219 -3.707031 C 2.824219 -3.707031 3.128906 -3.609375 3.367188 -3.414062 Z M 3.367188 -3.414062 "/>
19
</symbol>
20
<symbol overflow="visible" id="glyph0-5">
21
<path style="stroke:none;" d="M 0 0.851562 L 0 0.515625 L 3.785156 0.515625 L 3.785156 0.851562 Z M 0 0.851562 "/>
22
</symbol>
23
<symbol overflow="visible" id="glyph0-6">
24
<path style="stroke:none;" d="M 2.558594 -1.027344 C 2.710938 -1.195312 2.785156 -1.460938 2.785156 -1.828125 C 2.785156 -2.171875 2.714844 -2.429688 2.570312 -2.609375 C 2.425781 -2.789062 2.230469 -2.878906 1.988281 -2.878906 C 1.65625 -2.878906 1.425781 -2.722656 1.300781 -2.410156 C 1.234375 -2.246094 1.199219 -2.039062 1.199219 -1.796875 C 1.199219 -1.585938 1.234375 -1.398438 1.304688 -1.234375 C 1.433594 -0.929688 1.664062 -0.777344 1.996094 -0.777344 C 2.21875 -0.777344 2.40625 -0.859375 2.558594 -1.027344 Z M 2.234375 -3.625 C 2.464844 -3.527344 2.652344 -3.355469 2.792969 -3.097656 L 2.792969 -3.621094 L 3.714844 -3.621094 L 3.714844 -0.1875 C 3.714844 0.28125 3.636719 0.632812 3.476562 0.871094 C 3.207031 1.277344 2.691406 1.480469 1.921875 1.480469 C 1.460938 1.480469 1.082031 1.390625 0.789062 1.210938 C 0.496094 1.027344 0.335938 0.757812 0.304688 0.394531 L 1.335938 0.394531 C 1.363281 0.503906 1.40625 0.585938 1.464844 0.632812 C 1.566406 0.71875 1.738281 0.765625 1.980469 0.765625 C 2.320312 0.765625 2.550781 0.648438 2.664062 0.421875 C 2.738281 0.277344 2.777344 0.03125 2.777344 -0.316406 L 2.777344 -0.546875 C 2.6875 -0.394531 2.589844 -0.277344 2.484375 -0.199219 C 2.296875 -0.0546875 2.050781 0.015625 1.75 0.015625 C 1.285156 0.015625 0.914062 -0.148438 0.636719 -0.472656 C 0.359375 -0.800781 0.21875 -1.242188 0.21875 -1.800781 C 0.21875 -2.339844 0.351562 -2.789062 0.621094 -3.15625 C 0.890625 -3.523438 1.269531 -3.707031 1.761719 -3.707031 C 1.941406 -3.707031 2.101562 -3.679688 2.234375 -3.625 Z M 2.234375 -3.625 "/>
25
</symbol>
26
<symbol overflow="visible" id="glyph0-7">
27
<path style="stroke:none;" d="M 1.386719 -3.621094 L 1.386719 -1.4375 C 1.386719 -1.230469 1.410156 -1.078125 1.457031 -0.972656 C 1.542969 -0.789062 1.714844 -0.699219 1.964844 -0.699219 C 2.289062 -0.699219 2.511719 -0.828125 2.632812 -1.089844 C 2.695312 -1.230469 2.722656 -1.417969 2.722656 -1.652344 L 2.722656 -3.621094 L 3.683594 -3.621094 L 3.683594 0 L 2.765625 0 L 2.765625 -0.511719 C 2.753906 -0.5 2.734375 -0.46875 2.699219 -0.410156 C 2.664062 -0.355469 2.621094 -0.308594 2.570312 -0.265625 C 2.421875 -0.132812 2.28125 -0.0429688 2.140625 0.0078125 C 2.003906 0.0546875 1.839844 0.078125 1.652344 0.078125 C 1.117188 0.078125 0.757812 -0.113281 0.570312 -0.5 C 0.46875 -0.710938 0.414062 -1.023438 0.414062 -1.4375 L 0.414062 -3.621094 Z M 1.386719 -3.621094 "/>
28
</symbol>
29
<symbol overflow="visible" id="glyph0-8">
30
<path style="stroke:none;" d="M 1.179688 -1.15625 C 1.199219 -0.988281 1.242188 -0.867188 1.308594 -0.796875 C 1.425781 -0.671875 1.644531 -0.609375 1.960938 -0.609375 C 2.144531 -0.609375 2.292969 -0.636719 2.402344 -0.691406 C 2.511719 -0.746094 2.566406 -0.828125 2.566406 -0.941406 C 2.566406 -1.046875 2.523438 -1.128906 2.433594 -1.183594 C 2.347656 -1.238281 2.015625 -1.332031 1.449219 -1.46875 C 1.039062 -1.570312 0.75 -1.699219 0.582031 -1.851562 C 0.414062 -2 0.328125 -2.21875 0.328125 -2.5 C 0.328125 -2.835938 0.460938 -3.125 0.722656 -3.363281 C 0.984375 -3.605469 1.355469 -3.722656 1.832031 -3.722656 C 2.28125 -3.722656 2.648438 -3.632812 2.933594 -3.453125 C 3.21875 -3.273438 3.382812 -2.960938 3.425781 -2.519531 L 2.476562 -2.519531 C 2.464844 -2.640625 2.429688 -2.734375 2.375 -2.808594 C 2.269531 -2.9375 2.09375 -3 1.84375 -3 C 1.636719 -3 1.492188 -2.96875 1.402344 -2.902344 C 1.316406 -2.839844 1.273438 -2.765625 1.273438 -2.675781 C 1.273438 -2.566406 1.320312 -2.492188 1.410156 -2.441406 C 1.503906 -2.390625 1.832031 -2.304688 2.398438 -2.179688 C 2.773438 -2.089844 3.058594 -1.957031 3.246094 -1.777344 C 3.433594 -1.59375 3.523438 -1.367188 3.523438 -1.097656 C 3.523438 -0.738281 3.390625 -0.445312 3.125 -0.21875 C 2.859375 0.0078125 2.445312 0.121094 1.886719 0.121094 C 1.316406 0.121094 0.898438 0.00390625 0.625 -0.238281 C 0.355469 -0.476562 0.21875 -0.785156 0.21875 -1.15625 Z M 1.179688 -1.15625 "/>
31
</symbol>
32
<symbol overflow="visible" id="glyph0-9">
33
<path style="stroke:none;" d="M 1.941406 -4.941406 C 1.988281 -4.9375 2.054688 -4.933594 2.140625 -4.925781 L 2.140625 -4.15625 C 2.085938 -4.164062 1.996094 -4.167969 1.871094 -4.171875 C 1.746094 -4.175781 1.660156 -4.144531 1.613281 -4.085938 C 1.566406 -4.027344 1.542969 -3.964844 1.542969 -3.894531 C 1.542969 -3.824219 1.542969 -3.71875 1.542969 -3.585938 L 2.164062 -3.585938 L 2.164062 -2.917969 L 1.542969 -2.917969 L 1.542969 0 L 0.597656 0 L 0.597656 -2.917969 L 0.0703125 -2.917969 L 0.0703125 -3.585938 L 0.589844 -3.585938 L 0.589844 -3.820312 C 0.589844 -4.207031 0.652344 -4.472656 0.785156 -4.621094 C 0.921875 -4.835938 1.253906 -4.945312 1.777344 -4.945312 C 1.835938 -4.945312 1.890625 -4.945312 1.941406 -4.941406 Z M 1.941406 -4.941406 "/>
34
</symbol>
35
<symbol overflow="visible" id="glyph0-10">
36
<path style="stroke:none;" d="M 2.4375 -1.761719 C 2.378906 -1.722656 2.316406 -1.691406 2.257812 -1.667969 C 2.195312 -1.644531 2.113281 -1.625 2.007812 -1.605469 L 1.792969 -1.566406 C 1.59375 -1.53125 1.453125 -1.484375 1.367188 -1.433594 C 1.21875 -1.347656 1.144531 -1.214844 1.144531 -1.03125 C 1.144531 -0.871094 1.191406 -0.753906 1.28125 -0.683594 C 1.371094 -0.609375 1.480469 -0.574219 1.609375 -0.574219 C 1.8125 -0.574219 2 -0.632812 2.171875 -0.753906 C 2.34375 -0.875 2.429688 -1.089844 2.4375 -1.410156 Z M 1.863281 -2.203125 C 2.039062 -2.226562 2.164062 -2.253906 2.238281 -2.285156 C 2.375 -2.34375 2.441406 -2.433594 2.441406 -2.554688 C 2.441406 -2.703125 2.390625 -2.804688 2.285156 -2.863281 C 2.183594 -2.917969 2.03125 -2.945312 1.832031 -2.945312 C 1.609375 -2.945312 1.453125 -2.890625 1.359375 -2.78125 C 1.292969 -2.699219 1.246094 -2.585938 1.226562 -2.449219 L 0.3125 -2.449219 C 0.332031 -2.765625 0.421875 -3.023438 0.578125 -3.230469 C 0.828125 -3.546875 1.257812 -3.707031 1.867188 -3.707031 C 2.261719 -3.707031 2.617188 -3.628906 2.921875 -3.472656 C 3.230469 -3.316406 3.386719 -3.015625 3.386719 -2.582031 L 3.386719 -0.921875 C 3.386719 -0.804688 3.386719 -0.664062 3.390625 -0.5 C 3.398438 -0.378906 3.417969 -0.292969 3.449219 -0.25 C 3.480469 -0.207031 3.527344 -0.167969 3.585938 -0.140625 L 3.585938 0 L 2.558594 0 C 2.527344 -0.0742188 2.507812 -0.140625 2.496094 -0.207031 C 2.484375 -0.269531 2.476562 -0.34375 2.472656 -0.425781 C 2.339844 -0.285156 2.191406 -0.164062 2.019531 -0.0625 C 1.816406 0.0546875 1.585938 0.113281 1.328125 0.113281 C 1 0.113281 0.730469 0.0195312 0.515625 -0.167969 C 0.300781 -0.355469 0.195312 -0.621094 0.195312 -0.964844 C 0.195312 -1.410156 0.367188 -1.730469 0.710938 -1.929688 C 0.898438 -2.039062 1.175781 -2.117188 1.542969 -2.164062 Z M 1.863281 -2.203125 "/>
37
</symbol>
38
<symbol overflow="visible" id="glyph0-11">
39
<path style="stroke:none;" d="M 4.960938 -3.609375 C 5.113281 -3.546875 5.253906 -3.4375 5.382812 -3.28125 C 5.484375 -3.15625 5.550781 -3 5.585938 -2.816406 C 5.609375 -2.695312 5.621094 -2.515625 5.621094 -2.28125 L 5.613281 0 L 4.644531 0 L 4.644531 -2.304688 C 4.644531 -2.441406 4.621094 -2.554688 4.578125 -2.644531 C 4.492188 -2.8125 4.339844 -2.898438 4.113281 -2.898438 C 3.851562 -2.898438 3.671875 -2.789062 3.570312 -2.570312 C 3.519531 -2.457031 3.496094 -2.316406 3.496094 -2.15625 L 3.496094 0 L 2.542969 0 L 2.542969 -2.15625 C 2.542969 -2.371094 2.519531 -2.527344 2.476562 -2.625 C 2.394531 -2.800781 2.238281 -2.886719 2.007812 -2.886719 C 1.738281 -2.886719 1.554688 -2.800781 1.460938 -2.625 C 1.410156 -2.523438 1.386719 -2.375 1.386719 -2.179688 L 1.386719 0 L 0.425781 0 L 0.425781 -3.613281 L 1.34375 -3.613281 L 1.34375 -3.085938 C 1.460938 -3.273438 1.574219 -3.410156 1.675781 -3.488281 C 1.859375 -3.628906 2.097656 -3.699219 2.390625 -3.699219 C 2.667969 -3.699219 2.890625 -3.640625 3.0625 -3.519531 C 3.199219 -3.40625 3.304688 -3.261719 3.375 -3.082031 C 3.5 -3.296875 3.652344 -3.453125 3.835938 -3.550781 C 4.03125 -3.652344 4.25 -3.699219 4.488281 -3.699219 C 4.648438 -3.699219 4.804688 -3.667969 4.960938 -3.609375 Z M 4.960938 -3.609375 "/>
40
</symbol>
41
<symbol overflow="visible" id="glyph0-12">
42
<path style="stroke:none;" d="M 1.410156 0 L 0.460938 0 L 0.460938 -4.894531 L 1.410156 -4.894531 Z M 1.410156 0 "/>
43
</symbol>
44
<symbol overflow="visible" id="glyph0-13">
45
<path style="stroke:none;" d="M 0.589844 0.695312 L 0.707031 0.699219 C 0.800781 0.703125 0.890625 0.703125 0.972656 0.691406 C 1.058594 0.679688 1.128906 0.65625 1.1875 0.613281 C 1.242188 0.578125 1.292969 0.5 1.339844 0.378906 C 1.386719 0.257812 1.40625 0.1875 1.398438 0.160156 L 0.0703125 -3.621094 L 1.121094 -3.621094 L 1.914062 -0.949219 L 2.660156 -3.621094 L 3.667969 -3.621094 L 2.425781 -0.0585938 C 2.1875 0.628906 1.996094 1.050781 1.855469 1.21875 C 1.71875 1.382812 1.4375 1.464844 1.019531 1.464844 C 0.9375 1.464844 0.867188 1.464844 0.816406 1.464844 C 0.765625 1.460938 0.691406 1.457031 0.589844 1.453125 Z M 0.589844 0.695312 "/>
46
</symbol>
47
<symbol overflow="visible" id="glyph0-14">
48
<path style="stroke:none;" d="M 2.605469 -2.320312 C 2.585938 -2.457031 2.542969 -2.578125 2.46875 -2.6875 C 2.363281 -2.832031 2.195312 -2.90625 1.972656 -2.90625 C 1.652344 -2.90625 1.4375 -2.75 1.320312 -2.429688 C 1.257812 -2.261719 1.226562 -2.039062 1.226562 -1.761719 C 1.226562 -1.496094 1.257812 -1.28125 1.320312 -1.121094 C 1.433594 -0.820312 1.644531 -0.667969 1.957031 -0.667969 C 2.179688 -0.667969 2.335938 -0.726562 2.429688 -0.847656 C 2.523438 -0.96875 2.578125 -1.121094 2.597656 -1.3125 L 3.5625 -1.3125 C 3.542969 -1.023438 3.4375 -0.75 3.253906 -0.496094 C 2.957031 -0.0820312 2.515625 0.125 1.933594 0.125 C 1.351562 0.125 0.921875 -0.046875 0.648438 -0.390625 C 0.375 -0.738281 0.234375 -1.1875 0.234375 -1.738281 C 0.234375 -2.359375 0.386719 -2.84375 0.691406 -3.1875 C 0.996094 -3.535156 1.414062 -3.707031 1.945312 -3.707031 C 2.398438 -3.707031 2.773438 -3.605469 3.0625 -3.402344 C 3.351562 -3.199219 3.519531 -2.839844 3.574219 -2.320312 Z M 2.605469 -2.320312 "/>
49
</symbol>
50
<symbol overflow="visible" id="glyph0-15">
51
<path style="stroke:none;" d="M 2.363281 -3.5625 C 2.53125 -3.464844 2.671875 -3.332031 2.777344 -3.164062 L 2.777344 -4.890625 L 3.738281 -4.890625 L 3.738281 0 L 2.816406 0 L 2.816406 -0.5 C 2.683594 -0.285156 2.527344 -0.128906 2.355469 -0.0351562 C 2.183594 0.0625 1.96875 0.113281 1.710938 0.113281 C 1.289062 0.113281 0.933594 -0.0585938 0.644531 -0.398438 C 0.355469 -0.742188 0.210938 -1.179688 0.210938 -1.71875 C 0.210938 -2.335938 0.351562 -2.820312 0.636719 -3.175781 C 0.921875 -3.53125 1.300781 -3.707031 1.777344 -3.707031 C 1.996094 -3.707031 2.191406 -3.660156 2.363281 -3.5625 Z M 2.59375 -0.984375 C 2.734375 -1.183594 2.804688 -1.441406 2.804688 -1.757812 C 2.804688 -2.199219 2.691406 -2.515625 2.46875 -2.707031 C 2.332031 -2.824219 2.171875 -2.878906 1.988281 -2.878906 C 1.710938 -2.878906 1.511719 -2.777344 1.378906 -2.566406 C 1.25 -2.355469 1.1875 -2.097656 1.1875 -1.789062 C 1.1875 -1.453125 1.25 -1.183594 1.382812 -0.984375 C 1.515625 -0.785156 1.714844 -0.683594 1.984375 -0.683594 C 2.25 -0.683594 2.453125 -0.785156 2.59375 -0.984375 Z M 2.59375 -0.984375 "/>
52
</symbol>
53
<symbol overflow="visible" id="glyph0-16">
54
<path style="stroke:none;" d="M 0.5 -4.894531 L 1.574219 -4.894531 L 3.523438 -1.476562 L 3.523438 -4.894531 L 4.476562 -4.894531 L 4.476562 0 L 3.453125 0 L 1.453125 -3.476562 L 1.453125 0 L 0.5 0 Z M 0.5 -4.894531 "/>
55
</symbol>
56
<symbol overflow="visible" id="glyph0-17">
57
<path style="stroke:none;" d="M 1.511719 -4.046875 L 1.511719 -0.851562 L 2.453125 -0.851562 C 2.9375 -0.851562 3.273438 -1.089844 3.464844 -1.566406 C 3.570312 -1.828125 3.621094 -2.136719 3.621094 -2.496094 C 3.621094 -2.996094 3.542969 -3.378906 3.386719 -3.644531 C 3.230469 -3.914062 2.917969 -4.046875 2.453125 -4.046875 Z M 3.386719 -4.789062 C 3.730469 -4.675781 4.007812 -4.46875 4.21875 -4.167969 C 4.390625 -3.925781 4.503906 -3.660156 4.566406 -3.378906 C 4.628906 -3.09375 4.660156 -2.824219 4.660156 -2.566406 C 4.660156 -1.917969 4.53125 -1.367188 4.269531 -0.914062 C 3.914062 -0.304688 3.367188 0 2.628906 0 L 0.519531 0 L 0.519531 -4.894531 L 2.628906 -4.894531 C 2.929688 -4.890625 3.183594 -4.855469 3.386719 -4.789062 Z M 3.386719 -4.789062 "/>
58
</symbol>
59
<symbol overflow="visible" id="glyph0-18">
60
<path style="stroke:none;" d="M 0.0703125 -2.914062 L 0.0703125 -3.585938 L 0.574219 -3.585938 L 0.574219 -4.597656 L 1.511719 -4.597656 L 1.511719 -3.585938 L 2.097656 -3.585938 L 2.097656 -2.914062 L 1.511719 -2.914062 L 1.511719 -1 C 1.511719 -0.851562 1.53125 -0.757812 1.566406 -0.722656 C 1.605469 -0.6875 1.722656 -0.667969 1.914062 -0.667969 C 1.941406 -0.667969 1.972656 -0.667969 2.003906 -0.667969 C 2.035156 -0.671875 2.070312 -0.671875 2.097656 -0.675781 L 2.097656 0.0351562 L 1.652344 0.0507812 C 1.203125 0.0664062 0.898438 -0.0117188 0.734375 -0.183594 C 0.628906 -0.292969 0.574219 -0.457031 0.574219 -0.683594 L 0.574219 -2.914062 Z M 0.0703125 -2.914062 "/>
61
</symbol>
62
<symbol overflow="visible" id="glyph0-19">
63
<path style="stroke:none;" d="M 1.257812 -1.511719 C 1.289062 -1.289062 1.351562 -1.121094 1.441406 -1.011719 C 1.609375 -0.808594 1.890625 -0.707031 2.296875 -0.707031 C 2.539062 -0.707031 2.734375 -0.734375 2.882812 -0.789062 C 3.167969 -0.890625 3.3125 -1.078125 3.3125 -1.355469 C 3.3125 -1.515625 3.242188 -1.640625 3.097656 -1.730469 C 2.957031 -1.816406 2.734375 -1.894531 2.429688 -1.960938 L 1.914062 -2.074219 C 1.402344 -2.191406 1.050781 -2.316406 0.855469 -2.453125 C 0.527344 -2.679688 0.363281 -3.03125 0.363281 -3.511719 C 0.363281 -3.949219 0.523438 -4.3125 0.839844 -4.605469 C 1.160156 -4.894531 1.628906 -5.039062 2.246094 -5.039062 C 2.761719 -5.039062 3.203125 -4.902344 3.566406 -4.628906 C 3.929688 -4.355469 4.121094 -3.957031 4.140625 -3.4375 L 3.15625 -3.4375 C 3.136719 -3.734375 3.007812 -3.941406 2.769531 -4.066406 C 2.609375 -4.148438 2.414062 -4.1875 2.175781 -4.1875 C 1.914062 -4.1875 1.703125 -4.136719 1.542969 -4.03125 C 1.386719 -3.921875 1.308594 -3.773438 1.308594 -3.585938 C 1.308594 -3.410156 1.386719 -3.277344 1.542969 -3.191406 C 1.640625 -3.132812 1.855469 -3.066406 2.179688 -2.988281 L 3.023438 -2.785156 C 3.394531 -2.699219 3.671875 -2.578125 3.859375 -2.429688 C 4.152344 -2.199219 4.296875 -1.867188 4.296875 -1.433594 C 4.296875 -0.984375 4.128906 -0.613281 3.785156 -0.316406 C 3.441406 -0.0195312 2.960938 0.125 2.335938 0.125 C 1.699219 0.125 1.195312 -0.0195312 0.832031 -0.3125 C 0.464844 -0.601562 0.28125 -1.003906 0.28125 -1.511719 Z M 1.257812 -1.511719 "/>
64
</symbol>
65
<symbol overflow="visible" id="glyph0-20">
66
<path style="stroke:none;" d="M 2.703125 -0.964844 C 2.851562 -1.160156 2.925781 -1.441406 2.925781 -1.804688 C 2.925781 -2.167969 2.851562 -2.445312 2.703125 -2.640625 C 2.554688 -2.835938 2.34375 -2.9375 2.066406 -2.9375 C 1.789062 -2.9375 1.578125 -2.839844 1.425781 -2.640625 C 1.277344 -2.445312 1.203125 -2.167969 1.203125 -1.804688 C 1.203125 -1.441406 1.277344 -1.160156 1.425781 -0.964844 C 1.574219 -0.765625 1.789062 -0.667969 2.066406 -0.667969 C 2.34375 -0.667969 2.554688 -0.765625 2.703125 -0.964844 Z M 3.460938 -0.441406 C 3.15625 -0.0625 2.691406 0.125 2.070312 0.125 C 1.449219 0.125 0.984375 -0.0625 0.675781 -0.441406 C 0.371094 -0.816406 0.21875 -1.273438 0.21875 -1.804688 C 0.21875 -2.328125 0.371094 -2.777344 0.675781 -3.164062 C 0.984375 -3.546875 1.445312 -3.738281 2.070312 -3.738281 C 2.691406 -3.738281 3.15625 -3.546875 3.460938 -3.164062 C 3.765625 -2.78125 3.917969 -2.328125 3.917969 -1.804688 C 3.917969 -1.273438 3.765625 -0.816406 3.460938 -0.441406 Z M 3.460938 -0.441406 "/>
67
</symbol>
68
<symbol overflow="visible" id="glyph0-21">
69
<path style="stroke:none;" d="M 2.453125 -3.707031 C 2.464844 -3.703125 2.492188 -3.703125 2.535156 -3.699219 L 2.535156 -2.730469 C 2.476562 -2.738281 2.421875 -2.742188 2.375 -2.742188 C 2.328125 -2.746094 2.289062 -2.746094 2.261719 -2.746094 C 1.882812 -2.746094 1.625 -2.625 1.496094 -2.375 C 1.421875 -2.234375 1.386719 -2.019531 1.386719 -1.730469 L 1.386719 0 L 0.433594 0 L 0.433594 -3.621094 L 1.335938 -3.621094 L 1.335938 -2.988281 C 1.480469 -3.230469 1.609375 -3.394531 1.71875 -3.484375 C 1.894531 -3.632812 2.125 -3.707031 2.410156 -3.707031 C 2.425781 -3.707031 2.441406 -3.707031 2.453125 -3.707031 Z M 2.453125 -3.707031 "/>
70
</symbol>
71
<symbol overflow="visible" id="glyph0-22">
72
<path style="stroke:none;" d="M 1.453125 0 L 0.4375 0 L 0.4375 -4.894531 L 1.453125 -4.894531 Z M 1.453125 0 "/>
73
</symbol>
74
<symbol overflow="visible" id="glyph0-23">
75
<path style="stroke:none;" d="M 2.675781 -3.621094 L 3.691406 -3.621094 L 2.386719 0 L 1.386719 0 L 0.0859375 -3.621094 L 1.148438 -3.621094 L 1.902344 -0.949219 Z M 2.675781 -3.621094 "/>
76
</symbol>
77
<symbol overflow="visible" id="glyph0-24">
78
<path style="stroke:none;" d="M 3.648438 -1.179688 C 3.886719 -1.476562 4.007812 -1.902344 4.007812 -2.453125 C 4.007812 -3.003906 3.886719 -3.429688 3.648438 -3.730469 C 3.410156 -4.03125 3.089844 -4.179688 2.683594 -4.179688 C 2.277344 -4.179688 1.957031 -4.03125 1.714844 -3.730469 C 1.472656 -3.429688 1.351562 -3.007812 1.351562 -2.453125 C 1.351562 -1.902344 1.472656 -1.476562 1.714844 -1.179688 C 1.957031 -0.878906 2.277344 -0.730469 2.683594 -0.730469 C 3.089844 -0.730469 3.410156 -0.878906 3.648438 -1.179688 Z M 4.289062 -0.433594 C 3.917969 -0.0546875 3.382812 0.136719 2.683594 0.136719 C 1.984375 0.136719 1.449219 -0.0546875 1.078125 -0.433594 C 0.582031 -0.902344 0.335938 -1.574219 0.335938 -2.453125 C 0.335938 -3.351562 0.582031 -4.023438 1.078125 -4.472656 C 1.449219 -4.855469 1.984375 -5.046875 2.683594 -5.046875 C 3.382812 -5.046875 3.917969 -4.855469 4.289062 -4.472656 C 4.78125 -4.023438 5.027344 -3.351562 5.027344 -2.453125 C 5.027344 -1.574219 4.78125 -0.902344 4.289062 -0.433594 Z M 4.289062 -0.433594 "/>
79
</symbol>
80
<symbol overflow="visible" id="glyph0-25">
81
<path style="stroke:none;" d="M 3.074219 -3.882812 C 2.941406 -3.992188 2.753906 -4.046875 2.511719 -4.046875 L 1.558594 -4.046875 L 1.558594 -2.605469 L 2.511719 -2.605469 C 2.753906 -2.605469 2.941406 -2.664062 3.074219 -2.78125 C 3.207031 -2.898438 3.273438 -3.082031 3.273438 -3.339844 C 3.273438 -3.59375 3.207031 -3.773438 3.074219 -3.882812 Z M 3.851562 -2.121094 C 3.558594 -1.878906 3.140625 -1.761719 2.597656 -1.761719 L 1.558594 -1.761719 L 1.558594 0 L 0.542969 0 L 0.542969 -4.894531 L 2.675781 -4.894531 C 3.167969 -4.894531 3.558594 -4.769531 3.851562 -4.519531 C 4.144531 -4.265625 4.289062 -3.875 4.289062 -3.34375 C 4.289062 -2.765625 4.140625 -2.359375 3.851562 -2.121094 Z M 3.851562 -2.121094 "/>
82
</symbol>
83
<symbol overflow="visible" id="glyph0-26">
84
<path style="stroke:none;" d="M 3.761719 -4.894531 L 5.234375 -4.894531 L 5.234375 0 L 4.28125 0 L 4.28125 -3.3125 C 4.28125 -3.40625 4.28125 -3.539062 4.285156 -3.710938 C 4.289062 -3.882812 4.289062 -4.015625 4.289062 -4.109375 L 3.363281 0 L 2.367188 0 L 1.449219 -4.109375 C 1.449219 -4.015625 1.449219 -3.882812 1.453125 -3.710938 C 1.453125 -3.539062 1.453125 -3.40625 1.453125 -3.3125 L 1.453125 0 L 0.5 0 L 0.5 -4.894531 L 1.988281 -4.894531 L 2.878906 -1.046875 Z M 3.761719 -4.894531 "/>
85
</symbol>
86
<symbol overflow="visible" id="glyph0-27">
87
<path style="stroke:none;" d="M 2.746094 -2.550781 C 2.617188 -2.765625 2.410156 -2.875 2.125 -2.875 C 1.78125 -2.875 1.546875 -2.710938 1.417969 -2.386719 C 1.351562 -2.214844 1.320312 -1.992188 1.320312 -1.726562 C 1.320312 -1.304688 1.429688 -1.011719 1.652344 -0.839844 C 1.785156 -0.742188 1.945312 -0.691406 2.125 -0.691406 C 2.390625 -0.691406 2.589844 -0.792969 2.730469 -0.996094 C 2.867188 -1.199219 2.9375 -1.472656 2.9375 -1.808594 C 2.9375 -2.089844 2.871094 -2.335938 2.746094 -2.550781 Z M 3.472656 -3.230469 C 3.765625 -2.917969 3.914062 -2.460938 3.914062 -1.855469 C 3.914062 -1.21875 3.769531 -0.734375 3.484375 -0.398438 C 3.195312 -0.0625 2.828125 0.101562 2.375 0.101562 C 2.085938 0.101562 1.847656 0.03125 1.65625 -0.113281 C 1.554688 -0.191406 1.453125 -0.308594 1.351562 -0.460938 L 1.351562 1.425781 L 0.414062 1.425781 L 0.414062 -3.621094 L 1.320312 -3.621094 L 1.320312 -3.085938 C 1.421875 -3.242188 1.53125 -3.367188 1.648438 -3.457031 C 1.859375 -3.621094 2.109375 -3.699219 2.398438 -3.699219 C 2.820312 -3.699219 3.179688 -3.542969 3.472656 -3.230469 Z M 3.472656 -3.230469 "/>
88
</symbol>
89
<symbol overflow="visible" id="glyph0-28">
90
<path style="stroke:none;" d="M 1.855469 -1.851562 L 3.097656 -1.851562 L 2.488281 -3.777344 Z M 1.921875 -4.894531 L 3.074219 -4.894531 L 4.808594 0 L 3.699219 0 L 3.386719 -1.007812 L 1.582031 -1.007812 L 1.242188 0 L 0.171875 0 Z M 1.921875 -4.894531 "/>
91
</symbol>
92
<symbol overflow="visible" id="glyph0-29">
93
<path style="stroke:none;" d="M 0.519531 -4.890625 L 3.988281 -4.890625 L 3.988281 -4.03125 L 1.535156 -4.03125 L 1.535156 -2.902344 L 3.683594 -2.902344 L 3.683594 -2.054688 L 1.535156 -2.054688 L 1.535156 0 L 0.519531 0 Z M 0.519531 -4.890625 "/>
94
</symbol>
95
<symbol overflow="visible" id="glyph0-30">
96
<path style="stroke:none;" d="M 4.074219 -4.894531 L 4.074219 -4.03125 L 2.609375 -4.03125 L 2.609375 0 L 1.582031 0 L 1.582031 -4.03125 L 0.109375 -4.03125 L 0.109375 -4.894531 Z M 4.074219 -4.894531 "/>
97
</symbol>
98
<symbol overflow="visible" id="glyph0-31">
99
<path style="stroke:none;" d="M 0.0859375 0 L 1.320312 -1.832031 L 0.140625 -3.613281 L 1.300781 -3.613281 L 1.902344 -2.566406 L 2.496094 -3.613281 L 3.621094 -3.613281 L 2.429688 -1.851562 L 3.667969 0 L 2.488281 0 L 1.863281 -1.085938 L 1.234375 0 Z M 0.0859375 0 "/>
100
</symbol>
101
<symbol overflow="visible" id="glyph0-32">
102
<path style="stroke:none;" d="M 2.148438 -3.621094 L 3.109375 -3.621094 L 3.660156 -1.011719 L 4.226562 -3.621094 L 5.210938 -3.621094 L 4.164062 0 L 3.1875 0 L 2.621094 -2.636719 L 2.046875 0 L 1.0625 0 L 0.046875 -3.621094 L 1.0625 -3.621094 L 1.628906 -1.023438 Z M 2.148438 -3.621094 "/>
103
</symbol>
104
<symbol overflow="visible" id="glyph1-0">
105
<path style="stroke:none;" d=""/>
106
</symbol>
107
<symbol overflow="visible" id="glyph1-1">
108
<path style="stroke:none;" d="M 0.65625 -4.257812 C 0.785156 -4.445312 1.03125 -4.535156 1.398438 -4.535156 C 1.433594 -4.535156 1.46875 -4.535156 1.503906 -4.535156 C 1.539062 -4.53125 1.582031 -4.527344 1.628906 -4.523438 L 1.628906 -4.027344 C 1.570312 -4.03125 1.53125 -4.03125 1.503906 -4.03125 C 1.480469 -4.035156 1.457031 -4.035156 1.433594 -4.035156 C 1.265625 -4.035156 1.167969 -3.992188 1.136719 -3.90625 C 1.105469 -3.820312 1.085938 -3.597656 1.085938 -3.246094 L 1.628906 -3.246094 L 1.628906 -2.8125 L 1.082031 -2.8125 L 1.082031 0 L 0.539062 0 L 0.539062 -2.8125 L 0.0859375 -2.8125 L 0.0859375 -3.246094 L 0.539062 -3.246094 L 0.539062 -3.757812 C 0.546875 -3.984375 0.585938 -4.152344 0.65625 -4.257812 Z M 0.65625 -4.257812 "/>
109
</symbol>
110
<symbol overflow="visible" id="glyph1-2">
111
<path style="stroke:none;" d="M 0.996094 -0.492188 C 1.113281 -0.402344 1.25 -0.355469 1.40625 -0.355469 C 1.597656 -0.355469 1.785156 -0.402344 1.96875 -0.492188 C 2.273438 -0.640625 2.425781 -0.882812 2.425781 -1.21875 L 2.425781 -1.660156 C 2.359375 -1.617188 2.269531 -1.582031 2.164062 -1.554688 C 2.058594 -1.523438 1.957031 -1.503906 1.855469 -1.492188 L 1.523438 -1.449219 C 1.324219 -1.421875 1.175781 -1.382812 1.074219 -1.324219 C 0.90625 -1.230469 0.820312 -1.078125 0.820312 -0.867188 C 0.820312 -0.710938 0.878906 -0.585938 0.996094 -0.492188 Z M 2.148438 -1.976562 C 2.273438 -1.992188 2.359375 -2.046875 2.402344 -2.132812 C 2.425781 -2.183594 2.4375 -2.253906 2.4375 -2.34375 C 2.4375 -2.53125 2.371094 -2.667969 2.238281 -2.75 C 2.105469 -2.835938 1.917969 -2.878906 1.667969 -2.878906 C 1.382812 -2.878906 1.179688 -2.800781 1.058594 -2.644531 C 0.992188 -2.558594 0.949219 -2.433594 0.929688 -2.265625 L 0.417969 -2.265625 C 0.425781 -2.667969 0.558594 -2.945312 0.808594 -3.105469 C 1.058594 -3.261719 1.351562 -3.339844 1.679688 -3.339844 C 2.0625 -3.339844 2.375 -3.265625 2.617188 -3.121094 C 2.855469 -2.976562 2.972656 -2.746094 2.972656 -2.4375 L 2.972656 -0.558594 C 2.972656 -0.503906 2.984375 -0.457031 3.007812 -0.421875 C 3.03125 -0.386719 3.078125 -0.371094 3.15625 -0.371094 C 3.179688 -0.371094 3.207031 -0.371094 3.238281 -0.375 C 3.269531 -0.378906 3.300781 -0.382812 3.335938 -0.390625 L 3.335938 0.015625 C 3.25 0.0390625 3.183594 0.0546875 3.140625 0.0625 C 3.09375 0.0664062 3.035156 0.0703125 2.957031 0.0703125 C 2.769531 0.0703125 2.632812 0.00390625 2.546875 -0.132812 C 2.5 -0.203125 2.46875 -0.300781 2.453125 -0.433594 C 2.339844 -0.285156 2.179688 -0.160156 1.96875 -0.0507812 C 1.761719 0.0546875 1.53125 0.109375 1.277344 0.109375 C 0.976562 0.109375 0.730469 0.0195312 0.539062 -0.164062 C 0.347656 -0.347656 0.25 -0.578125 0.25 -0.855469 C 0.25 -1.15625 0.34375 -1.394531 0.53125 -1.558594 C 0.722656 -1.726562 0.96875 -1.828125 1.277344 -1.867188 Z M 2.148438 -1.976562 "/>
112
</symbol>
113
<symbol overflow="visible" id="glyph1-3">
114
<path style="stroke:none;" d="M 0.402344 -3.261719 L 0.945312 -3.261719 L 0.945312 -2.796875 C 1.074219 -2.957031 1.191406 -3.074219 1.296875 -3.148438 C 1.476562 -3.273438 1.683594 -3.335938 1.914062 -3.335938 C 2.171875 -3.335938 2.382812 -3.269531 2.539062 -3.140625 C 2.628906 -3.070312 2.710938 -2.960938 2.78125 -2.820312 C 2.90625 -2.996094 3.046875 -3.125 3.210938 -3.207031 C 3.375 -3.292969 3.5625 -3.335938 3.765625 -3.335938 C 4.203125 -3.335938 4.503906 -3.175781 4.660156 -2.859375 C 4.746094 -2.6875 4.789062 -2.460938 4.789062 -2.171875 L 4.789062 0 L 4.21875 0 L 4.21875 -2.265625 C 4.21875 -2.484375 4.167969 -2.632812 4.058594 -2.714844 C 3.949219 -2.792969 3.816406 -2.835938 3.660156 -2.835938 C 3.445312 -2.835938 3.257812 -2.761719 3.105469 -2.617188 C 2.949219 -2.472656 2.871094 -2.234375 2.871094 -1.898438 L 2.871094 0 L 2.3125 0 L 2.3125 -2.128906 C 2.3125 -2.351562 2.289062 -2.511719 2.234375 -2.613281 C 2.152344 -2.765625 1.996094 -2.839844 1.769531 -2.839844 C 1.5625 -2.839844 1.375 -2.761719 1.203125 -2.601562 C 1.035156 -2.441406 0.949219 -2.148438 0.949219 -1.730469 L 0.949219 0 L 0.402344 0 Z M 0.402344 -3.261719 "/>
115
</symbol>
116
<symbol overflow="visible" id="glyph1-4">
117
<path style="stroke:none;" d="M 0.402344 -3.246094 L 0.960938 -3.246094 L 0.960938 0 L 0.402344 0 Z M 0.402344 -4.472656 L 0.960938 -4.472656 L 0.960938 -3.851562 L 0.402344 -3.851562 Z M 0.402344 -4.472656 "/>
118
</symbol>
119
<symbol overflow="visible" id="glyph1-5">
120
<path style="stroke:none;" d="M 0.417969 -4.472656 L 0.964844 -4.472656 L 0.964844 0 L 0.417969 0 Z M 0.417969 -4.472656 "/>
121
</symbol>
122
<symbol overflow="visible" id="glyph1-6">
123
<path style="stroke:none;" d="M 2.4375 -3.261719 L 3.046875 -3.261719 C 2.96875 -3.050781 2.796875 -2.574219 2.53125 -1.828125 C 2.332031 -1.269531 2.164062 -0.8125 2.03125 -0.460938 C 1.714844 0.371094 1.492188 0.878906 1.359375 1.0625 C 1.230469 1.246094 1.007812 1.335938 0.691406 1.335938 C 0.613281 1.335938 0.554688 1.332031 0.511719 1.328125 C 0.472656 1.320312 0.421875 1.308594 0.359375 1.292969 L 0.359375 0.792969 C 0.453125 0.820312 0.523438 0.835938 0.566406 0.84375 C 0.609375 0.851562 0.648438 0.851562 0.679688 0.851562 C 0.78125 0.851562 0.855469 0.835938 0.902344 0.800781 C 0.949219 0.769531 0.992188 0.726562 1.023438 0.679688 C 1.035156 0.664062 1.070312 0.578125 1.132812 0.429688 C 1.195312 0.277344 1.242188 0.167969 1.269531 0.09375 L 0.0625 -3.261719 L 0.683594 -3.261719 L 1.558594 -0.605469 Z M 2.4375 -3.261719 "/>
124
</symbol>
125
<symbol overflow="visible" id="glyph1-7">
126
<path style="stroke:none;" d=""/>
127
</symbol>
128
<symbol overflow="visible" id="glyph1-8">
129
<path style="stroke:none;" d="M 0.828125 -4.472656 L 2.113281 -0.664062 L 3.382812 -4.472656 L 4.0625 -4.472656 L 2.429688 0 L 1.789062 0 L 0.160156 -4.472656 Z M 0.828125 -4.472656 "/>
130
</symbol>
131
<symbol overflow="visible" id="glyph1-9">
132
<path style="stroke:none;" d="M 2.769531 -1.832031 L 2.09375 -3.808594 L 1.371094 -1.832031 Z M 1.773438 -4.472656 L 2.460938 -4.472656 L 4.082031 0 L 3.417969 0 L 2.964844 -1.339844 L 1.195312 -1.339844 L 0.710938 0 L 0.0898438 0 Z M 1.773438 -4.472656 "/>
133
</symbol>
134
<symbol overflow="visible" id="glyph1-10">
135
<path style="stroke:none;" d="M 2.554688 -2.425781 C 2.839844 -2.425781 3.0625 -2.480469 3.230469 -2.59375 C 3.394531 -2.707031 3.476562 -2.914062 3.476562 -3.210938 C 3.476562 -3.527344 3.363281 -3.746094 3.128906 -3.859375 C 3.007812 -3.921875 2.839844 -3.953125 2.632812 -3.953125 L 1.152344 -3.953125 L 1.152344 -2.425781 Z M 0.546875 -4.472656 L 2.617188 -4.472656 C 2.960938 -4.472656 3.242188 -4.421875 3.460938 -4.324219 C 3.882812 -4.132812 4.09375 -3.78125 4.09375 -3.265625 C 4.09375 -3 4.039062 -2.78125 3.925781 -2.609375 C 3.816406 -2.4375 3.660156 -2.300781 3.460938 -2.199219 C 3.636719 -2.128906 3.769531 -2.035156 3.855469 -1.917969 C 3.945312 -1.800781 3.992188 -1.613281 4.003906 -1.355469 L 4.027344 -0.753906 C 4.03125 -0.585938 4.046875 -0.457031 4.066406 -0.375 C 4.105469 -0.234375 4.167969 -0.140625 4.261719 -0.101562 L 4.261719 0 L 3.519531 0 C 3.5 -0.0390625 3.484375 -0.0898438 3.472656 -0.148438 C 3.460938 -0.210938 3.449219 -0.328125 3.441406 -0.503906 L 3.40625 -1.25 C 3.390625 -1.542969 3.28125 -1.738281 3.078125 -1.835938 C 2.960938 -1.890625 2.78125 -1.917969 2.535156 -1.917969 L 1.152344 -1.917969 L 1.152344 0 L 0.546875 0 Z M 0.546875 -4.472656 "/>
136
</symbol>
137
<symbol overflow="visible" id="glyph1-11">
138
<path style="stroke:none;" d="M 3.679688 -4.148438 C 3.992188 -3.847656 4.164062 -3.511719 4.199219 -3.128906 L 3.609375 -3.128906 C 3.542969 -3.417969 3.40625 -3.648438 3.207031 -3.816406 C 3.007812 -3.984375 2.726562 -4.066406 2.367188 -4.066406 C 1.925781 -4.066406 1.570312 -3.914062 1.296875 -3.605469 C 1.027344 -3.292969 0.890625 -2.820312 0.890625 -2.179688 C 0.890625 -1.65625 1.015625 -1.230469 1.257812 -0.90625 C 1.503906 -0.582031 1.867188 -0.417969 2.355469 -0.417969 C 2.800781 -0.417969 3.140625 -0.589844 3.375 -0.933594 C 3.5 -1.113281 3.589844 -1.351562 3.652344 -1.644531 L 4.242188 -1.644531 C 4.1875 -1.171875 4.015625 -0.777344 3.71875 -0.460938 C 3.363281 -0.078125 2.882812 0.117188 2.28125 0.117188 C 1.761719 0.117188 1.324219 -0.0429688 0.972656 -0.355469 C 0.507812 -0.773438 0.273438 -1.414062 0.273438 -2.285156 C 0.273438 -2.945312 0.449219 -3.484375 0.796875 -3.90625 C 1.175781 -4.367188 1.695312 -4.59375 2.359375 -4.59375 C 2.925781 -4.59375 3.367188 -4.445312 3.679688 -4.148438 Z M 3.679688 -4.148438 "/>
139
</symbol>
140
<symbol overflow="visible" id="glyph1-12">
141
<path style="stroke:none;" d="M 0.492188 -4.472656 L 1.101562 -4.472656 L 1.101562 -2.625 L 3.429688 -2.625 L 3.429688 -4.472656 L 4.039062 -4.472656 L 4.039062 0 L 3.429688 0 L 3.429688 -2.09375 L 1.101562 -2.09375 L 1.101562 0 L 0.492188 0 Z M 0.492188 -4.472656 "/>
142
</symbol>
143
<symbol overflow="visible" id="glyph1-13">
144
<path style="stroke:none;" d="M 1.84375 -4.546875 C 1.527344 -3.925781 1.320312 -3.472656 1.222656 -3.179688 C 1.078125 -2.734375 1.007812 -2.222656 1.007812 -1.636719 C 1.007812 -1.050781 1.089844 -0.511719 1.253906 -0.0234375 C 1.355469 0.277344 1.554688 0.707031 1.855469 1.273438 L 1.484375 1.273438 C 1.1875 0.808594 1.007812 0.515625 0.933594 0.386719 C 0.863281 0.257812 0.785156 0.0859375 0.703125 -0.132812 C 0.589844 -0.433594 0.511719 -0.753906 0.464844 -1.097656 C 0.441406 -1.273438 0.433594 -1.441406 0.433594 -1.601562 C 0.433594 -2.203125 0.527344 -2.738281 0.714844 -3.207031 C 0.835938 -3.503906 1.085938 -3.953125 1.464844 -4.546875 Z M 1.84375 -4.546875 "/>
145
</symbol>
146
<symbol overflow="visible" id="glyph1-14">
147
<path style="stroke:none;" d="M 0.429688 -0.980469 C 0.5625 -1.257812 0.828125 -1.511719 1.21875 -1.738281 L 1.800781 -2.078125 C 2.0625 -2.230469 2.25 -2.359375 2.355469 -2.464844 C 2.519531 -2.632812 2.601562 -2.828125 2.601562 -3.046875 C 2.601562 -3.300781 2.527344 -3.5 2.375 -3.648438 C 2.222656 -3.796875 2.019531 -3.875 1.765625 -3.875 C 1.390625 -3.875 1.128906 -3.730469 0.988281 -3.445312 C 0.910156 -3.292969 0.867188 -3.082031 0.859375 -2.8125 L 0.300781 -2.8125 C 0.308594 -3.191406 0.378906 -3.503906 0.511719 -3.742188 C 0.75 -4.164062 1.167969 -4.375 1.769531 -4.375 C 2.269531 -4.375 2.632812 -4.242188 2.863281 -3.972656 C 3.09375 -3.703125 3.210938 -3.398438 3.210938 -3.070312 C 3.210938 -2.71875 3.085938 -2.421875 2.839844 -2.175781 C 2.699219 -2.03125 2.445312 -1.855469 2.078125 -1.652344 L 1.660156 -1.417969 C 1.460938 -1.308594 1.304688 -1.203125 1.191406 -1.105469 C 0.988281 -0.929688 0.859375 -0.734375 0.808594 -0.519531 L 3.1875 -0.519531 L 3.1875 0 L 0.195312 0 C 0.214844 -0.375 0.292969 -0.703125 0.429688 -0.980469 Z M 0.429688 -0.980469 "/>
148
</symbol>
149
<symbol overflow="visible" id="glyph1-15">
150
<path style="stroke:none;" d="M 0.769531 -1.113281 C 0.808594 -0.800781 0.953125 -0.582031 1.207031 -0.460938 C 1.335938 -0.402344 1.484375 -0.371094 1.65625 -0.371094 C 1.980469 -0.371094 2.222656 -0.476562 2.378906 -0.683594 C 2.535156 -0.890625 2.613281 -1.117188 2.613281 -1.371094 C 2.613281 -1.675781 2.519531 -1.910156 2.335938 -2.078125 C 2.148438 -2.242188 1.925781 -2.328125 1.664062 -2.328125 C 1.476562 -2.328125 1.316406 -2.289062 1.179688 -2.214844 C 1.042969 -2.144531 0.929688 -2.042969 0.835938 -1.914062 L 0.359375 -1.941406 L 0.691406 -4.289062 L 2.957031 -4.289062 L 2.957031 -3.757812 L 1.101562 -3.757812 L 0.917969 -2.546875 C 1.019531 -2.625 1.113281 -2.679688 1.207031 -2.71875 C 1.367188 -2.785156 1.554688 -2.820312 1.769531 -2.820312 C 2.167969 -2.820312 2.507812 -2.691406 2.785156 -2.433594 C 3.0625 -2.175781 3.203125 -1.847656 3.203125 -1.453125 C 3.203125 -1.039062 3.074219 -0.675781 2.820312 -0.363281 C 2.566406 -0.046875 2.160156 0.109375 1.601562 0.109375 C 1.246094 0.109375 0.933594 0.0078125 0.660156 -0.191406 C 0.386719 -0.390625 0.234375 -0.699219 0.199219 -1.113281 Z M 0.769531 -1.113281 "/>
151
</symbol>
152
<symbol overflow="visible" id="glyph1-16">
153
<path style="stroke:none;" d="M 2.910156 -3.664062 C 3.105469 -3.304688 3.203125 -2.8125 3.203125 -2.1875 C 3.203125 -1.59375 3.113281 -1.101562 2.9375 -0.714844 C 2.683594 -0.160156 2.265625 0.117188 1.683594 0.117188 C 1.160156 0.117188 0.769531 -0.109375 0.515625 -0.5625 C 0.300781 -0.941406 0.195312 -1.453125 0.195312 -2.09375 C 0.195312 -2.585938 0.257812 -3.011719 0.386719 -3.367188 C 0.625 -4.03125 1.058594 -4.359375 1.6875 -4.359375 C 2.25 -4.359375 2.660156 -4.128906 2.910156 -3.664062 Z M 2.359375 -0.757812 C 2.527344 -1.011719 2.613281 -1.480469 2.613281 -2.164062 C 2.613281 -2.660156 2.550781 -3.066406 2.429688 -3.386719 C 2.308594 -3.707031 2.070312 -3.867188 1.71875 -3.867188 C 1.398438 -3.867188 1.160156 -3.714844 1.011719 -3.410156 C 0.863281 -3.109375 0.789062 -2.660156 0.789062 -2.070312 C 0.789062 -1.625 0.835938 -1.269531 0.933594 -1 C 1.078125 -0.585938 1.328125 -0.378906 1.679688 -0.378906 C 1.964844 -0.378906 2.191406 -0.507812 2.359375 -0.757812 Z M 2.359375 -0.757812 "/>
154
</symbol>
155
<symbol overflow="visible" id="glyph1-17">
156
<path style="stroke:none;" d="M 0.214844 1.273438 C 0.539062 0.644531 0.746094 0.183594 0.839844 -0.105469 C 0.980469 -0.539062 1.054688 -1.050781 1.054688 -1.636719 C 1.054688 -2.222656 0.972656 -2.761719 0.808594 -3.25 C 0.707031 -3.550781 0.503906 -3.980469 0.207031 -4.546875 L 0.574219 -4.546875 C 0.886719 -4.046875 1.078125 -3.738281 1.144531 -3.621094 C 1.210938 -3.503906 1.28125 -3.34375 1.359375 -3.140625 C 1.457031 -2.886719 1.523438 -2.636719 1.566406 -2.386719 C 1.609375 -2.140625 1.628906 -1.902344 1.628906 -1.671875 C 1.628906 -1.070312 1.535156 -0.535156 1.34375 -0.0625 C 1.222656 0.238281 0.972656 0.683594 0.597656 1.273438 Z M 0.214844 1.273438 "/>
157
</symbol>
158
<symbol overflow="visible" id="glyph1-18">
159
<path style="stroke:none;" d="M 2.222656 -3.128906 C 2.328125 -3.058594 2.433594 -2.957031 2.539062 -2.820312 L 2.539062 -3.230469 L 3.046875 -3.230469 L 3.046875 -0.265625 C 3.046875 0.148438 2.984375 0.476562 2.863281 0.714844 C 2.636719 1.15625 2.207031 1.378906 1.574219 1.378906 C 1.222656 1.378906 0.925781 1.300781 0.6875 1.144531 C 0.449219 0.988281 0.316406 0.738281 0.285156 0.40625 L 0.84375 0.40625 C 0.871094 0.550781 0.921875 0.664062 1 0.742188 C 1.125 0.863281 1.320312 0.925781 1.585938 0.925781 C 2.007812 0.925781 2.28125 0.777344 2.410156 0.480469 C 2.488281 0.304688 2.523438 -0.00390625 2.519531 -0.453125 C 2.410156 -0.285156 2.277344 -0.164062 2.121094 -0.0820312 C 1.96875 0 1.765625 0.0390625 1.511719 0.0390625 C 1.15625 0.0390625 0.847656 -0.0859375 0.582031 -0.335938 C 0.316406 -0.585938 0.1875 -1 0.1875 -1.582031 C 0.1875 -2.128906 0.320312 -2.554688 0.585938 -2.859375 C 0.851562 -3.164062 1.175781 -3.320312 1.554688 -3.320312 C 1.808594 -3.320312 2.03125 -3.257812 2.222656 -3.128906 Z M 2.289062 -2.542969 C 2.125 -2.738281 1.910156 -2.835938 1.652344 -2.835938 C 1.265625 -2.835938 1.003906 -2.652344 0.863281 -2.292969 C 0.789062 -2.101562 0.75 -1.847656 0.75 -1.535156 C 0.75 -1.167969 0.824219 -0.886719 0.972656 -0.695312 C 1.121094 -0.503906 1.324219 -0.40625 1.574219 -0.40625 C 1.96875 -0.40625 2.246094 -0.585938 2.40625 -0.941406 C 2.496094 -1.140625 2.539062 -1.375 2.539062 -1.644531 C 2.539062 -2.046875 2.457031 -2.347656 2.289062 -2.542969 Z M 2.289062 -2.542969 "/>
160
</symbol>
161
<symbol overflow="visible" id="glyph1-19">
162
<path style="stroke:none;" d="M 2.433594 -3.171875 C 2.652344 -3.0625 2.816406 -2.921875 2.929688 -2.75 C 3.039062 -2.585938 3.113281 -2.394531 3.148438 -2.175781 C 3.179688 -2.023438 3.199219 -1.785156 3.199219 -1.457031 L 0.808594 -1.457031 C 0.816406 -1.125 0.894531 -0.859375 1.042969 -0.660156 C 1.1875 -0.460938 1.414062 -0.359375 1.71875 -0.359375 C 2.007812 -0.359375 2.234375 -0.453125 2.40625 -0.640625 C 2.503906 -0.75 2.570312 -0.878906 2.613281 -1.023438 L 3.152344 -1.023438 C 3.136719 -0.902344 3.089844 -0.769531 3.011719 -0.621094 C 2.929688 -0.476562 2.839844 -0.355469 2.742188 -0.261719 C 2.574219 -0.0976562 2.367188 0.0117188 2.121094 0.0664062 C 1.988281 0.0976562 1.839844 0.117188 1.675781 0.117188 C 1.269531 0.117188 0.925781 -0.03125 0.640625 -0.328125 C 0.359375 -0.621094 0.21875 -1.035156 0.21875 -1.566406 C 0.21875 -2.089844 0.363281 -2.515625 0.644531 -2.84375 C 0.929688 -3.171875 1.300781 -3.335938 1.761719 -3.335938 C 1.992188 -3.335938 2.214844 -3.28125 2.433594 -3.171875 Z M 2.632812 -1.890625 C 2.609375 -2.128906 2.558594 -2.316406 2.480469 -2.460938 C 2.328125 -2.722656 2.078125 -2.855469 1.726562 -2.855469 C 1.476562 -2.855469 1.265625 -2.765625 1.09375 -2.582031 C 0.921875 -2.402344 0.832031 -2.171875 0.820312 -1.890625 Z M 2.632812 -1.890625 "/>
163
</symbol>
164
<symbol overflow="visible" id="glyph1-20">
165
<path style="stroke:none;" d="M 0.402344 -3.261719 L 0.921875 -3.261719 L 0.921875 -2.796875 C 1.078125 -2.988281 1.242188 -3.125 1.414062 -3.210938 C 1.585938 -3.292969 1.777344 -3.335938 1.988281 -3.335938 C 2.453125 -3.335938 2.765625 -3.171875 2.925781 -2.851562 C 3.015625 -2.675781 3.058594 -2.421875 3.058594 -2.09375 L 3.058594 0 L 2.503906 0 L 2.503906 -2.054688 C 2.503906 -2.253906 2.472656 -2.414062 2.414062 -2.535156 C 2.316406 -2.738281 2.140625 -2.839844 1.886719 -2.839844 C 1.753906 -2.839844 1.648438 -2.828125 1.566406 -2.800781 C 1.414062 -2.757812 1.28125 -2.667969 1.167969 -2.535156 C 1.078125 -2.425781 1.019531 -2.316406 0.992188 -2.199219 C 0.964844 -2.085938 0.949219 -1.921875 0.949219 -1.707031 L 0.949219 0 L 0.402344 0 Z M 0.402344 -3.261719 "/>
166
</symbol>
167
<symbol overflow="visible" id="glyph1-21">
168
<path style="stroke:none;" d="M 0.949219 -3.261719 L 0.949219 -1.097656 C 0.949219 -0.929688 0.976562 -0.792969 1.027344 -0.6875 C 1.125 -0.492188 1.308594 -0.394531 1.574219 -0.394531 C 1.957031 -0.394531 2.214844 -0.566406 2.355469 -0.90625 C 2.429688 -1.089844 2.464844 -1.339844 2.464844 -1.660156 L 2.464844 -3.261719 L 3.015625 -3.261719 L 3.015625 0 L 2.496094 0 L 2.503906 -0.480469 C 2.433594 -0.355469 2.34375 -0.253906 2.238281 -0.167969 C 2.027344 0.00390625 1.773438 0.0898438 1.476562 0.0898438 C 1.011719 0.0898438 0.695312 -0.0664062 0.527344 -0.378906 C 0.4375 -0.542969 0.390625 -0.765625 0.390625 -1.042969 L 0.390625 -3.261719 Z M 0.949219 -3.261719 "/>
169
</symbol>
170
<symbol overflow="visible" id="glyph1-22">
171
<path style="stroke:none;" d="M 0.726562 -1.023438 C 0.742188 -0.839844 0.789062 -0.699219 0.863281 -0.601562 C 1.003906 -0.425781 1.242188 -0.339844 1.582031 -0.339844 C 1.785156 -0.339844 1.964844 -0.382812 2.121094 -0.46875 C 2.273438 -0.558594 2.351562 -0.695312 2.351562 -0.878906 C 2.351562 -1.019531 2.289062 -1.125 2.164062 -1.199219 C 2.085938 -1.246094 1.929688 -1.296875 1.695312 -1.355469 L 1.261719 -1.464844 C 0.984375 -1.535156 0.777344 -1.609375 0.644531 -1.695312 C 0.410156 -1.84375 0.292969 -2.050781 0.292969 -2.3125 C 0.292969 -2.621094 0.402344 -2.871094 0.625 -3.058594 C 0.847656 -3.25 1.148438 -3.347656 1.523438 -3.347656 C 2.015625 -3.347656 2.367188 -3.203125 2.585938 -2.914062 C 2.722656 -2.730469 2.789062 -2.535156 2.78125 -2.324219 L 2.265625 -2.324219 C 2.253906 -2.449219 2.210938 -2.558594 2.132812 -2.660156 C 2.007812 -2.804688 1.789062 -2.878906 1.480469 -2.878906 C 1.273438 -2.878906 1.117188 -2.839844 1.007812 -2.757812 C 0.902344 -2.679688 0.847656 -2.574219 0.847656 -2.445312 C 0.847656 -2.304688 0.917969 -2.1875 1.058594 -2.105469 C 1.140625 -2.054688 1.261719 -2.007812 1.417969 -1.96875 L 1.78125 -1.882812 C 2.175781 -1.785156 2.4375 -1.695312 2.574219 -1.605469 C 2.785156 -1.464844 2.894531 -1.246094 2.894531 -0.945312 C 2.894531 -0.652344 2.78125 -0.402344 2.5625 -0.191406 C 2.34375 0.0195312 2.007812 0.125 1.554688 0.125 C 1.070312 0.125 0.726562 0.015625 0.523438 -0.207031 C 0.324219 -0.425781 0.214844 -0.699219 0.199219 -1.023438 Z M 0.726562 -1.023438 "/>
172
</symbol>
173
<symbol overflow="visible" id="glyph1-23">
174
<path style="stroke:none;" d="M 0.597656 -3.085938 L 0.597656 -3.507812 C 0.992188 -3.546875 1.269531 -3.609375 1.425781 -3.703125 C 1.582031 -3.792969 1.699219 -4.003906 1.773438 -4.34375 L 2.207031 -4.34375 L 2.207031 0 L 1.621094 0 L 1.621094 -3.085938 Z M 0.597656 -3.085938 "/>
175
</symbol>
176
<symbol overflow="visible" id="glyph1-24">
177
<path style="stroke:none;" d="M 0.511719 -4.171875 L 1.066406 -4.171875 L 1.066406 -3.261719 L 1.585938 -3.261719 L 1.585938 -2.8125 L 1.066406 -2.8125 L 1.066406 -0.683594 C 1.066406 -0.570312 1.105469 -0.496094 1.179688 -0.457031 C 1.222656 -0.433594 1.296875 -0.421875 1.394531 -0.421875 C 1.421875 -0.421875 1.449219 -0.421875 1.480469 -0.425781 C 1.511719 -0.425781 1.546875 -0.429688 1.585938 -0.433594 L 1.585938 0 C 1.523438 0.0195312 1.457031 0.03125 1.390625 0.0390625 C 1.320312 0.046875 1.25 0.0507812 1.167969 0.0507812 C 0.914062 0.0507812 0.738281 -0.015625 0.648438 -0.144531 C 0.558594 -0.277344 0.511719 -0.445312 0.511719 -0.65625 L 0.511719 -2.8125 L 0.0703125 -2.8125 L 0.0703125 -3.261719 L 0.511719 -3.261719 Z M 0.511719 -4.171875 "/>
178
</symbol>
179
<symbol overflow="visible" id="glyph1-25">
180
<path style="stroke:none;" d="M 2.445312 -0.765625 C 2.578125 -1.039062 2.644531 -1.347656 2.644531 -1.683594 C 2.644531 -1.988281 2.597656 -2.234375 2.5 -2.425781 C 2.34375 -2.726562 2.078125 -2.878906 1.703125 -2.878906 C 1.367188 -2.878906 1.125 -2.75 0.972656 -2.492188 C 0.820312 -2.238281 0.742188 -1.929688 0.742188 -1.566406 C 0.742188 -1.21875 0.820312 -0.933594 0.972656 -0.699219 C 1.125 -0.46875 1.363281 -0.351562 1.695312 -0.351562 C 2.058594 -0.351562 2.308594 -0.492188 2.445312 -0.765625 Z M 2.78125 -2.933594 C 3.074219 -2.65625 3.21875 -2.242188 3.21875 -1.699219 C 3.21875 -1.171875 3.089844 -0.738281 2.835938 -0.394531 C 2.578125 -0.0507812 2.183594 0.117188 1.644531 0.117188 C 1.195312 0.117188 0.839844 -0.03125 0.574219 -0.335938 C 0.3125 -0.640625 0.179688 -1.046875 0.179688 -1.558594 C 0.179688 -2.105469 0.320312 -2.542969 0.597656 -2.867188 C 0.875 -3.191406 1.25 -3.355469 1.71875 -3.355469 C 2.136719 -3.355469 2.492188 -3.214844 2.78125 -2.933594 Z M 2.78125 -2.933594 "/>
181
</symbol>
182
<symbol overflow="visible" id="glyph1-26">
183
<path style="stroke:none;" d="M 0 0.78125 L 0 0.472656 L 3.46875 0.472656 L 3.46875 0.78125 Z M 0 0.78125 "/>
184
</symbol>
185
<symbol overflow="visible" id="glyph1-27">
186
<path style="stroke:none;" d="M 0.613281 -4.472656 L 1.222656 -4.472656 L 1.222656 0 L 0.613281 0 Z M 0.613281 -4.472656 "/>
187
</symbol>
188
<symbol overflow="visible" id="glyph1-28">
189
<path style="stroke:none;" d="M 0.476562 -4.472656 L 1.191406 -4.472656 L 3.449219 -0.847656 L 3.449219 -4.472656 L 4.027344 -4.472656 L 4.027344 0 L 3.347656 0 L 1.054688 -3.621094 L 1.054688 0 L 0.476562 0 Z M 0.476562 -4.472656 "/>
190
</symbol>
191
<symbol overflow="visible" id="glyph1-29">
192
<path style="stroke:none;" d="M 3.730469 -4.472656 L 3.730469 -3.941406 L 2.222656 -3.941406 L 2.222656 0 L 1.609375 0 L 1.609375 -3.941406 L 0.101562 -3.941406 L 0.101562 -4.472656 Z M 3.730469 -4.472656 "/>
193
</symbol>
194
<symbol overflow="visible" id="glyph1-30">
195
<path style="stroke:none;" d="M 2.554688 -3.085938 C 2.785156 -2.910156 2.925781 -2.601562 2.972656 -2.164062 L 2.4375 -2.164062 C 2.40625 -2.367188 2.332031 -2.53125 2.214844 -2.664062 C 2.101562 -2.796875 1.914062 -2.867188 1.660156 -2.867188 C 1.3125 -2.867188 1.0625 -2.695312 0.910156 -2.355469 C 0.8125 -2.132812 0.765625 -1.859375 0.765625 -1.535156 C 0.765625 -1.207031 0.832031 -0.933594 0.972656 -0.710938 C 1.109375 -0.488281 1.328125 -0.375 1.621094 -0.375 C 1.851562 -0.375 2.03125 -0.445312 2.164062 -0.582031 C 2.296875 -0.722656 2.386719 -0.914062 2.4375 -1.152344 L 2.972656 -1.152344 C 2.910156 -0.722656 2.757812 -0.40625 2.515625 -0.207031 C 2.273438 -0.0078125 1.960938 0.09375 1.582031 0.09375 C 1.15625 0.09375 0.8125 -0.0625 0.558594 -0.371094 C 0.304688 -0.683594 0.179688 -1.074219 0.179688 -1.539062 C 0.179688 -2.113281 0.320312 -2.558594 0.597656 -2.878906 C 0.875 -3.195312 1.230469 -3.355469 1.660156 -3.355469 C 2.027344 -3.355469 2.324219 -3.265625 2.554688 -3.085938 Z M 2.554688 -3.085938 "/>
196
</symbol>
197
<symbol overflow="visible" id="glyph1-31">
198
<path style="stroke:none;" d="M 0.972656 -0.714844 C 1.121094 -0.480469 1.355469 -0.363281 1.683594 -0.363281 C 1.9375 -0.363281 2.144531 -0.472656 2.308594 -0.691406 C 2.472656 -0.910156 2.554688 -1.222656 2.554688 -1.628906 C 2.554688 -2.042969 2.46875 -2.347656 2.300781 -2.542969 C 2.132812 -2.742188 1.925781 -2.839844 1.679688 -2.839844 C 1.402344 -2.839844 1.179688 -2.734375 1.007812 -2.523438 C 0.835938 -2.3125 0.75 -2.003906 0.75 -1.59375 C 0.75 -1.242188 0.824219 -0.949219 0.972656 -0.714844 Z M 2.203125 -3.160156 C 2.300781 -3.101562 2.410156 -2.992188 2.535156 -2.839844 L 2.535156 -4.488281 L 3.058594 -4.488281 L 3.058594 0 L 2.566406 0 L 2.566406 -0.453125 C 2.4375 -0.253906 2.289062 -0.109375 2.113281 -0.0195312 C 1.9375 0.0703125 1.738281 0.117188 1.511719 0.117188 C 1.148438 0.117188 0.835938 -0.0351562 0.570312 -0.34375 C 0.304688 -0.648438 0.171875 -1.054688 0.171875 -1.5625 C 0.171875 -2.039062 0.292969 -2.449219 0.535156 -2.796875 C 0.777344 -3.144531 1.125 -3.320312 1.574219 -3.320312 C 1.824219 -3.320312 2.03125 -3.265625 2.203125 -3.160156 Z M 2.203125 -3.160156 "/>
199
</symbol>
200
<symbol overflow="visible" id="glyph1-32">
201
<path style="stroke:none;" d="M 2.191406 -0.519531 C 2.398438 -0.519531 2.566406 -0.539062 2.699219 -0.582031 C 2.933594 -0.660156 3.125 -0.8125 3.277344 -1.039062 C 3.398438 -1.21875 3.484375 -1.449219 3.535156 -1.734375 C 3.566406 -1.902344 3.582031 -2.058594 3.582031 -2.203125 C 3.582031 -2.757812 3.472656 -3.1875 3.25 -3.492188 C 3.03125 -3.800781 2.675781 -3.953125 2.1875 -3.953125 L 1.113281 -3.953125 L 1.113281 -0.519531 Z M 0.503906 -4.472656 L 2.3125 -4.472656 C 2.929688 -4.472656 3.40625 -4.253906 3.746094 -3.820312 C 4.046875 -3.425781 4.199219 -2.921875 4.199219 -2.304688 C 4.199219 -1.828125 4.109375 -1.402344 3.929688 -1.015625 C 3.617188 -0.339844 3.074219 0 2.308594 0 L 0.503906 0 Z M 0.503906 -4.472656 "/>
202
</symbol>
203
<symbol overflow="visible" id="glyph1-33">
204
<path style="stroke:none;" d="M 2.417969 -0.691406 C 2.585938 -0.90625 2.671875 -1.222656 2.671875 -1.652344 C 2.671875 -1.910156 2.632812 -2.132812 2.558594 -2.320312 C 2.414062 -2.679688 2.15625 -2.859375 1.777344 -2.859375 C 1.398438 -2.859375 1.140625 -2.667969 1 -2.289062 C 0.925781 -2.085938 0.886719 -1.828125 0.886719 -1.515625 C 0.886719 -1.265625 0.921875 -1.050781 1 -0.875 C 1.140625 -0.539062 1.402344 -0.367188 1.777344 -0.367188 C 2.035156 -0.367188 2.246094 -0.476562 2.417969 -0.691406 Z M 0.359375 -3.246094 L 0.890625 -3.246094 L 0.890625 -2.8125 C 1 -2.960938 1.121094 -3.078125 1.25 -3.15625 C 1.4375 -3.277344 1.652344 -3.339844 1.902344 -3.339844 C 2.273438 -3.339844 2.585938 -3.199219 2.84375 -2.914062 C 3.101562 -2.632812 3.230469 -2.226562 3.230469 -1.703125 C 3.230469 -0.992188 3.046875 -0.484375 2.671875 -0.179688 C 2.4375 0.0117188 2.164062 0.109375 1.851562 0.109375 C 1.605469 0.109375 1.398438 0.0546875 1.234375 -0.0507812 C 1.136719 -0.113281 1.027344 -0.21875 0.90625 -0.367188 L 0.90625 1.300781 L 0.359375 1.300781 Z M 0.359375 -3.246094 "/>
205
</symbol>
206
<symbol overflow="visible" id="glyph1-34">
207
<path style="stroke:none;" d="M 0.417969 -3.261719 L 0.9375 -3.261719 L 0.9375 -2.699219 C 0.980469 -2.808594 1.085938 -2.941406 1.25 -3.097656 C 1.417969 -3.253906 1.609375 -3.335938 1.828125 -3.335938 C 1.835938 -3.335938 1.855469 -3.332031 1.878906 -3.332031 C 1.902344 -3.328125 1.945312 -3.324219 2.003906 -3.320312 L 2.003906 -2.742188 C 1.972656 -2.746094 1.941406 -2.75 1.914062 -2.753906 C 1.886719 -2.753906 1.855469 -2.753906 1.824219 -2.753906 C 1.546875 -2.753906 1.335938 -2.667969 1.1875 -2.488281 C 1.039062 -2.3125 0.964844 -2.105469 0.964844 -1.875 L 0.964844 0 L 0.417969 0 Z M 0.417969 -3.261719 "/>
208
</symbol>
209
<symbol overflow="visible" id="glyph1-35">
210
<path style="stroke:none;" d="M 0.871094 -1.441406 C 0.886719 -1.1875 0.945312 -0.984375 1.050781 -0.824219 C 1.25 -0.527344 1.605469 -0.378906 2.113281 -0.378906 C 2.339844 -0.378906 2.546875 -0.414062 2.734375 -0.476562 C 3.097656 -0.601562 3.277344 -0.828125 3.277344 -1.152344 C 3.277344 -1.398438 3.199219 -1.570312 3.046875 -1.675781 C 2.894531 -1.777344 2.652344 -1.863281 2.324219 -1.941406 L 1.71875 -2.078125 C 1.320312 -2.167969 1.042969 -2.265625 0.878906 -2.371094 C 0.59375 -2.558594 0.449219 -2.839844 0.449219 -3.210938 C 0.449219 -3.613281 0.589844 -3.941406 0.867188 -4.199219 C 1.144531 -4.457031 1.539062 -4.585938 2.050781 -4.585938 C 2.519531 -4.585938 2.917969 -4.472656 3.246094 -4.246094 C 3.574219 -4.019531 3.734375 -3.65625 3.734375 -3.160156 L 3.167969 -3.160156 C 3.136719 -3.398438 3.070312 -3.585938 2.972656 -3.710938 C 2.789062 -3.945312 2.472656 -4.0625 2.03125 -4.0625 C 1.671875 -4.0625 1.417969 -3.988281 1.261719 -3.835938 C 1.105469 -3.6875 1.027344 -3.511719 1.027344 -3.3125 C 1.027344 -3.09375 1.117188 -2.933594 1.300781 -2.832031 C 1.421875 -2.765625 1.691406 -2.6875 2.113281 -2.589844 L 2.742188 -2.445312 C 3.042969 -2.375 3.277344 -2.28125 3.441406 -2.160156 C 3.726562 -1.953125 3.867188 -1.648438 3.867188 -1.25 C 3.867188 -0.753906 3.6875 -0.402344 3.328125 -0.1875 C 2.96875 0.0234375 2.546875 0.132812 2.070312 0.132812 C 1.515625 0.132812 1.078125 -0.0117188 0.765625 -0.296875 C 0.449219 -0.578125 0.296875 -0.960938 0.300781 -1.441406 Z M 0.871094 -1.441406 "/>
211
</symbol>
212
<symbol overflow="visible" id="glyph1-36">
213
<path style="stroke:none;" d="M 0.390625 -4.472656 L 0.917969 -4.472656 L 0.917969 -1.875 L 2.324219 -3.261719 L 3.023438 -3.261719 L 1.773438 -2.039062 L 3.09375 0 L 2.394531 0 L 1.375 -1.644531 L 0.917969 -1.222656 L 0.917969 0 L 0.390625 0 Z M 0.390625 -4.472656 "/>
214
</symbol>
215
<symbol overflow="visible" id="glyph1-37">
216
<path style="stroke:none;" d="M 0.359375 -4.488281 L 0.890625 -4.488281 L 0.890625 -2.867188 C 1.011719 -3.023438 1.15625 -3.140625 1.320312 -3.222656 C 1.488281 -3.304688 1.667969 -3.347656 1.863281 -3.347656 C 2.269531 -3.347656 2.597656 -3.207031 2.851562 -2.929688 C 3.105469 -2.648438 3.230469 -2.238281 3.230469 -1.691406 C 3.230469 -1.175781 3.105469 -0.75 2.855469 -0.40625 C 2.605469 -0.0664062 2.261719 0.105469 1.816406 0.105469 C 1.570312 0.105469 1.359375 0.0429688 1.191406 -0.0742188 C 1.089844 -0.148438 0.980469 -0.261719 0.863281 -0.417969 L 0.863281 0 L 0.359375 0 Z M 2.449219 -0.734375 C 2.597656 -0.96875 2.671875 -1.28125 2.671875 -1.664062 C 2.671875 -2.007812 2.597656 -2.292969 2.449219 -2.519531 C 2.300781 -2.742188 2.085938 -2.855469 1.800781 -2.855469 C 1.550781 -2.855469 1.332031 -2.765625 1.144531 -2.578125 C 0.957031 -2.394531 0.863281 -2.089844 0.863281 -1.664062 C 0.863281 -1.359375 0.898438 -1.109375 0.976562 -0.917969 C 1.121094 -0.558594 1.390625 -0.378906 1.785156 -0.378906 C 2.082031 -0.378906 2.300781 -0.5 2.449219 -0.734375 Z M 2.449219 -0.734375 "/>
217
</symbol>
218
<symbol overflow="visible" id="glyph1-38">
219
<path style="stroke:none;" d="M 0.0898438 -3.261719 L 0.800781 -3.261719 L 1.550781 -2.113281 L 2.308594 -3.261719 L 2.976562 -3.246094 L 1.875 -1.671875 L 3.023438 0 L 2.324219 0 L 1.511719 -1.222656 L 0.726562 0 L 0.0351562 0 L 1.179688 -1.671875 Z M 0.0898438 -3.261719 "/>
220
</symbol>
221
<symbol overflow="visible" id="glyph1-39">
222
<path style="stroke:none;" d="M 0.402344 -4.488281 L 0.949219 -4.488281 L 0.949219 -2.820312 C 1.078125 -2.984375 1.195312 -3.101562 1.300781 -3.167969 C 1.476562 -3.28125 1.695312 -3.339844 1.960938 -3.339844 C 2.433594 -3.339844 2.753906 -3.175781 2.921875 -2.84375 C 3.015625 -2.664062 3.058594 -2.414062 3.058594 -2.09375 L 3.058594 0 L 2.496094 0 L 2.496094 -2.054688 C 2.496094 -2.292969 2.464844 -2.46875 2.40625 -2.582031 C 2.304688 -2.761719 2.121094 -2.851562 1.84375 -2.851562 C 1.617188 -2.851562 1.410156 -2.773438 1.226562 -2.617188 C 1.042969 -2.460938 0.949219 -2.164062 0.949219 -1.730469 L 0.949219 0 L 0.402344 0 Z M 0.402344 -4.488281 "/>
223
</symbol>
224
<symbol overflow="visible" id="glyph1-40">
225
<path style="stroke:none;" d="M 0.949219 -3.839844 L 0.402344 -3.839844 L 0.402344 -4.472656 L 0.949219 -4.472656 Z M -0.117188 0.824219 C 0.128906 0.816406 0.277344 0.796875 0.328125 0.757812 C 0.378906 0.722656 0.402344 0.613281 0.402344 0.425781 L 0.402344 -3.246094 L 0.949219 -3.246094 L 0.949219 0.484375 C 0.949219 0.722656 0.910156 0.898438 0.835938 1.015625 C 0.707031 1.214844 0.464844 1.316406 0.105469 1.316406 C 0.078125 1.316406 0.0507812 1.3125 0.0234375 1.3125 C -0.0078125 1.308594 -0.0546875 1.304688 -0.117188 1.300781 Z M -0.117188 0.824219 "/>
226
</symbol>
227
<symbol overflow="visible" id="glyph1-41">
228
<path style="stroke:none;" d="M 0.53125 -4.472656 L 2.546875 -4.472656 C 2.945312 -4.472656 3.265625 -4.359375 3.507812 -4.136719 C 3.75 -3.914062 3.875 -3.597656 3.875 -3.191406 C 3.875 -2.84375 3.765625 -2.539062 3.546875 -2.277344 C 3.328125 -2.019531 2.996094 -1.890625 2.546875 -1.890625 L 1.140625 -1.890625 L 1.140625 0 L 0.53125 0 Z M 2.894531 -3.859375 C 2.761719 -3.921875 2.578125 -3.953125 2.34375 -3.953125 L 1.140625 -3.953125 L 1.140625 -2.402344 L 2.34375 -2.402344 C 2.617188 -2.402344 2.835938 -2.460938 3.007812 -2.574219 C 3.175781 -2.691406 3.261719 -2.894531 3.261719 -3.1875 C 3.261719 -3.515625 3.140625 -3.742188 2.894531 -3.859375 Z M 2.894531 -3.859375 "/>
229
</symbol>
230
<symbol overflow="visible" id="glyph1-42">
231
<path style="stroke:none;" d="M 3.5 -4.34375 C 3.945312 -4.109375 4.214844 -3.703125 4.316406 -3.117188 L 3.714844 -3.117188 C 3.640625 -3.445312 3.492188 -3.683594 3.261719 -3.832031 C 3.03125 -3.980469 2.742188 -4.054688 2.394531 -4.054688 C 1.980469 -4.054688 1.628906 -3.902344 1.347656 -3.589844 C 1.0625 -3.28125 0.921875 -2.816406 0.921875 -2.203125 C 0.921875 -1.671875 1.039062 -1.238281 1.273438 -0.902344 C 1.507812 -0.570312 1.886719 -0.402344 2.414062 -0.402344 C 2.820312 -0.402344 3.152344 -0.519531 3.417969 -0.753906 C 3.683594 -0.988281 3.820312 -1.367188 3.824219 -1.890625 L 2.425781 -1.890625 L 2.425781 -2.394531 L 4.386719 -2.394531 L 4.386719 0 L 4 0 L 3.851562 -0.574219 C 3.648438 -0.351562 3.464844 -0.195312 3.308594 -0.105469 C 3.042969 0.0429688 2.703125 0.117188 2.292969 0.117188 C 1.761719 0.117188 1.308594 -0.0546875 0.925781 -0.394531 C 0.507812 -0.824219 0.300781 -1.417969 0.300781 -2.167969 C 0.300781 -2.917969 0.503906 -3.511719 0.910156 -3.957031 C 1.296875 -4.378906 1.796875 -4.589844 2.410156 -4.589844 C 2.828125 -4.589844 3.191406 -4.507812 3.5 -4.34375 Z M 3.5 -4.34375 "/>
232
</symbol>
233
<symbol overflow="visible" id="glyph1-43">
234
<path style="stroke:none;" d="M 2.0625 -1.542969 L 2.0625 -3.519531 L 0.664062 -1.542969 Z M 2.070312 0 L 2.070312 -1.066406 L 0.160156 -1.066406 L 0.160156 -1.601562 L 2.15625 -4.371094 L 2.617188 -4.371094 L 2.617188 -1.542969 L 3.261719 -1.542969 L 3.261719 -1.066406 L 2.617188 -1.066406 L 2.617188 0 Z M 2.070312 0 "/>
235
</symbol>
236
<symbol overflow="visible" id="glyph1-44">
237
<path style="stroke:none;" d="M 0.667969 -3.261719 L 1.539062 -0.605469 L 2.453125 -3.261719 L 3.050781 -3.261719 L 1.820312 0 L 1.234375 0 L 0.0351562 -3.261719 Z M 0.667969 -3.261719 "/>
238
</symbol>
239
<symbol overflow="visible" id="glyph1-45">
240
<path style="stroke:none;" d="M 0.65625 -3.261719 L 1.28125 -0.691406 L 1.917969 -3.261719 L 2.535156 -3.261719 L 3.171875 -0.707031 L 3.839844 -3.261719 L 4.386719 -3.261719 L 3.441406 0 L 2.871094 0 L 2.207031 -2.523438 L 1.566406 0 L 0.996094 0 L 0.0546875 -3.261719 Z M 0.65625 -3.261719 "/>
241
</symbol>
242
<symbol overflow="visible" id="glyph1-46">
243
<path style="stroke:none;" d="M 1.132812 -4.472656 L 1.132812 -1.707031 C 1.132812 -1.382812 1.195312 -1.113281 1.316406 -0.898438 C 1.496094 -0.574219 1.800781 -0.410156 2.230469 -0.410156 C 2.742188 -0.410156 3.089844 -0.585938 3.277344 -0.9375 C 3.375 -1.128906 3.425781 -1.386719 3.425781 -1.707031 L 3.425781 -4.472656 L 4.039062 -4.472656 L 4.039062 -1.960938 C 4.039062 -1.410156 3.964844 -0.988281 3.820312 -0.691406 C 3.546875 -0.152344 3.03125 0.117188 2.277344 0.117188 C 1.523438 0.117188 1.011719 -0.152344 0.738281 -0.691406 C 0.589844 -0.988281 0.519531 -1.410156 0.519531 -1.960938 L 0.519531 -4.472656 Z M 1.132812 -4.472656 "/>
244
</symbol>
245
<symbol overflow="visible" id="glyph1-47">
246
<path style="stroke:none;" d="M 0.875 -0.878906 C 1.015625 -0.539062 1.265625 -0.367188 1.625 -0.367188 C 2.007812 -0.367188 2.269531 -0.546875 2.414062 -0.90625 C 2.492188 -1.101562 2.535156 -1.351562 2.535156 -1.660156 C 2.535156 -1.941406 2.488281 -2.175781 2.402344 -2.367188 C 2.253906 -2.6875 1.992188 -2.851562 1.621094 -2.851562 C 1.382812 -2.851562 1.179688 -2.746094 1.007812 -2.542969 C 0.839844 -2.335938 0.753906 -2.015625 0.753906 -1.585938 C 0.753906 -1.304688 0.792969 -1.066406 0.875 -0.878906 Z M 2.246094 -3.128906 C 2.347656 -3.058594 2.445312 -2.949219 2.539062 -2.808594 L 2.539062 -3.261719 L 3.058594 -3.261719 L 3.058594 1.300781 L 2.507812 1.300781 L 2.507812 -0.375 C 2.417969 -0.230469 2.292969 -0.113281 2.128906 -0.0273438 C 1.96875 0.0585938 1.765625 0.105469 1.527344 0.105469 C 1.179688 0.105469 0.867188 -0.03125 0.59375 -0.304688 C 0.320312 -0.578125 0.183594 -0.992188 0.183594 -1.546875 C 0.183594 -2.070312 0.3125 -2.496094 0.566406 -2.832031 C 0.824219 -3.167969 1.15625 -3.335938 1.566406 -3.335938 C 1.835938 -3.335938 2.0625 -3.265625 2.246094 -3.128906 Z M 2.246094 -3.128906 "/>
247
</symbol>
248
<symbol overflow="visible" id="glyph1-48">
249
<path style="stroke:none;" d="M 0.496094 -0.304688 C 0.265625 -0.589844 0.148438 -0.933594 0.148438 -1.339844 L 0.722656 -1.339844 C 0.746094 -1.058594 0.796875 -0.851562 0.878906 -0.726562 C 1.023438 -0.496094 1.277344 -0.378906 1.652344 -0.378906 C 1.9375 -0.378906 2.171875 -0.457031 2.34375 -0.613281 C 2.519531 -0.765625 2.605469 -0.964844 2.605469 -1.207031 C 2.605469 -1.507812 2.515625 -1.71875 2.332031 -1.839844 C 2.148438 -1.960938 1.890625 -2.019531 1.566406 -2.019531 C 1.527344 -2.019531 1.492188 -2.019531 1.453125 -2.015625 C 1.417969 -2.015625 1.378906 -2.015625 1.339844 -2.011719 L 1.339844 -2.496094 C 1.398438 -2.492188 1.445312 -2.488281 1.484375 -2.484375 C 1.523438 -2.484375 1.5625 -2.480469 1.609375 -2.480469 C 1.8125 -2.480469 1.980469 -2.515625 2.113281 -2.578125 C 2.34375 -2.691406 2.460938 -2.894531 2.460938 -3.1875 C 2.460938 -3.40625 2.382812 -3.574219 2.230469 -3.691406 C 2.074219 -3.808594 1.894531 -3.867188 1.691406 -3.867188 C 1.324219 -3.867188 1.070312 -3.746094 0.933594 -3.5 C 0.855469 -3.367188 0.8125 -3.175781 0.800781 -2.929688 L 0.257812 -2.929688 C 0.257812 -3.253906 0.324219 -3.53125 0.453125 -3.757812 C 0.675781 -4.164062 1.070312 -4.367188 1.632812 -4.367188 C 2.078125 -4.367188 2.421875 -4.269531 2.664062 -4.070312 C 2.90625 -3.871094 3.03125 -3.585938 3.03125 -3.210938 C 3.03125 -2.941406 2.957031 -2.722656 2.8125 -2.558594 C 2.722656 -2.453125 2.609375 -2.375 2.464844 -2.3125 C 2.695312 -2.25 2.875 -2.128906 3.003906 -1.949219 C 3.132812 -1.769531 3.199219 -1.550781 3.199219 -1.292969 C 3.199219 -0.875 3.058594 -0.535156 2.785156 -0.273438 C 2.511719 -0.0117188 2.125 0.117188 1.621094 0.117188 C 1.105469 0.117188 0.730469 -0.0234375 0.496094 -0.304688 Z M 0.496094 -0.304688 "/>
250
</symbol>
251
<symbol overflow="visible" id="glyph1-49">
252
<path style="stroke:none;" d="M 4.160156 -3.832031 C 4.457031 -3.4375 4.605469 -2.929688 4.605469 -2.3125 C 4.605469 -1.644531 4.433594 -1.089844 4.09375 -0.648438 C 3.695312 -0.128906 3.128906 0.132812 2.394531 0.132812 C 1.707031 0.132812 1.164062 -0.0976562 0.769531 -0.550781 C 0.417969 -0.988281 0.242188 -1.542969 0.242188 -2.214844 C 0.242188 -2.820312 0.394531 -3.335938 0.695312 -3.765625 C 1.082031 -4.320312 1.652344 -4.59375 2.40625 -4.59375 C 3.195312 -4.59375 3.78125 -4.339844 4.160156 -3.832031 Z M 3.625 -0.984375 C 3.863281 -1.367188 3.984375 -1.808594 3.984375 -2.304688 C 3.984375 -2.832031 3.84375 -3.253906 3.570312 -3.574219 C 3.296875 -3.894531 2.917969 -4.054688 2.441406 -4.054688 C 1.980469 -4.054688 1.601562 -3.898438 1.308594 -3.578125 C 1.015625 -3.261719 0.871094 -2.792969 0.871094 -2.175781 C 0.871094 -1.679688 0.996094 -1.261719 1.246094 -0.921875 C 1.496094 -0.582031 1.902344 -0.410156 2.464844 -0.410156 C 3 -0.410156 3.386719 -0.601562 3.625 -0.984375 Z M 3.625 -0.984375 "/>
253
</symbol>
254
<symbol overflow="visible" id="glyph1-50">
255
<path style="stroke:none;" d="M 0.53125 -4.472656 L 3.792969 -4.472656 L 3.792969 -3.925781 L 1.125 -3.925781 L 1.125 -2.566406 L 3.59375 -2.566406 L 3.59375 -2.050781 L 1.125 -2.050781 L 1.125 -0.53125 L 3.839844 -0.53125 L 3.839844 0 L 0.53125 0 Z M 0.53125 -4.472656 "/>
256
</symbol>
257
<symbol overflow="visible" id="glyph1-51">
258
<path style="stroke:none;" d="M 2.15625 -2.582031 C 2.410156 -2.582031 2.609375 -2.617188 2.753906 -2.6875 C 2.976562 -2.800781 3.085938 -3 3.085938 -3.292969 C 3.085938 -3.585938 2.96875 -3.78125 2.730469 -3.882812 C 2.597656 -3.9375 2.398438 -3.96875 2.132812 -3.96875 L 1.054688 -3.96875 L 1.054688 -2.582031 Z M 2.359375 -0.519531 C 2.730469 -0.519531 2.996094 -0.625 3.15625 -0.839844 C 3.253906 -0.976562 3.304688 -1.140625 3.304688 -1.332031 C 3.304688 -1.65625 3.160156 -1.878906 2.867188 -1.996094 C 2.714844 -2.058594 2.511719 -2.09375 2.257812 -2.09375 L 1.054688 -2.09375 L 1.054688 -0.519531 Z M 0.460938 -4.472656 L 2.382812 -4.472656 C 2.90625 -4.472656 3.277344 -4.316406 3.5 -4.003906 C 3.628906 -3.820312 3.695312 -3.605469 3.695312 -3.363281 C 3.695312 -3.082031 3.613281 -2.851562 3.453125 -2.671875 C 3.371094 -2.574219 3.25 -2.488281 3.09375 -2.410156 C 3.324219 -2.320312 3.496094 -2.222656 3.609375 -2.113281 C 3.808594 -1.917969 3.910156 -1.648438 3.910156 -1.304688 C 3.910156 -1.015625 3.820312 -0.757812 3.640625 -0.523438 C 3.371094 -0.175781 2.941406 0 2.351562 0 L 0.460938 0 Z M 0.460938 -4.472656 "/>
259
</symbol>
260
<symbol overflow="visible" id="glyph1-52">
261
<path style="stroke:none;" d="M 0.476562 -4.472656 L 1.082031 -4.472656 L 1.082031 -0.53125 L 3.347656 -0.53125 L 3.347656 0 L 0.476562 0 Z M 0.476562 -4.472656 "/>
262
</symbol>
263
<symbol overflow="visible" id="glyph1-53">
264
<path style="stroke:none;" d="M 2.84375 -4 C 3.035156 -3.746094 3.128906 -3.488281 3.128906 -3.21875 L 2.589844 -3.21875 C 2.554688 -3.390625 2.503906 -3.527344 2.433594 -3.625 C 2.300781 -3.808594 2.101562 -3.898438 1.832031 -3.898438 C 1.527344 -3.898438 1.28125 -3.757812 1.101562 -3.472656 C 0.921875 -3.191406 0.820312 -2.785156 0.800781 -2.257812 C 0.925781 -2.441406 1.085938 -2.578125 1.277344 -2.671875 C 1.449219 -2.753906 1.644531 -2.792969 1.859375 -2.792969 C 2.226562 -2.792969 2.542969 -2.675781 2.816406 -2.441406 C 3.089844 -2.207031 3.226562 -1.859375 3.226562 -1.398438 C 3.226562 -1.003906 3.097656 -0.652344 2.839844 -0.34375 C 2.582031 -0.0390625 2.210938 0.113281 1.734375 0.113281 C 1.328125 0.113281 0.976562 -0.0429688 0.679688 -0.351562 C 0.382812 -0.660156 0.234375 -1.183594 0.234375 -1.914062 C 0.234375 -2.457031 0.300781 -2.917969 0.433594 -3.292969 C 0.6875 -4.015625 1.148438 -4.378906 1.824219 -4.378906 C 2.3125 -4.378906 2.652344 -4.253906 2.84375 -4 Z M 2.429688 -0.664062 C 2.574219 -0.859375 2.644531 -1.089844 2.644531 -1.351562 C 2.644531 -1.574219 2.582031 -1.789062 2.453125 -1.988281 C 2.324219 -2.191406 2.09375 -2.292969 1.757812 -2.292969 C 1.523438 -2.292969 1.316406 -2.214844 1.136719 -2.058594 C 0.960938 -1.902344 0.871094 -1.667969 0.871094 -1.351562 C 0.871094 -1.074219 0.953125 -0.84375 1.113281 -0.65625 C 1.273438 -0.46875 1.5 -0.375 1.785156 -0.375 C 2.074219 -0.375 2.289062 -0.472656 2.429688 -0.664062 Z M 2.429688 -0.664062 "/>
265
</symbol>
266
<symbol overflow="visible" id="glyph1-54">
267
<path style="stroke:none;" d="M 0.460938 -4.472656 L 1.328125 -4.472656 L 2.613281 -0.691406 L 3.886719 -4.472656 L 4.746094 -4.472656 L 4.746094 0 L 4.171875 0 L 4.171875 -2.640625 C 4.171875 -2.730469 4.171875 -2.882812 4.179688 -3.09375 C 4.183594 -3.304688 4.183594 -3.53125 4.183594 -3.773438 L 2.90625 0 L 2.308594 0 L 1.023438 -3.773438 L 1.023438 -3.636719 C 1.023438 -3.527344 1.027344 -3.359375 1.03125 -3.136719 C 1.035156 -2.910156 1.039062 -2.746094 1.039062 -2.640625 L 1.039062 0 L 0.460938 0 Z M 0.460938 -4.472656 "/>
268
</symbol>
269
<symbol overflow="visible" id="glyph1-55">
270
<path style="stroke:none;" d="M 0.519531 0.636719 C 0.660156 0.613281 0.757812 0.511719 0.8125 0.339844 C 0.84375 0.25 0.859375 0.160156 0.859375 0.0742188 C 0.859375 0.0625 0.859375 0.0507812 0.855469 0.0390625 C 0.855469 0.0273438 0.855469 0.015625 0.847656 0 L 0.519531 0 L 0.519531 -0.664062 L 1.167969 -0.664062 L 1.167969 -0.046875 C 1.167969 0.195312 1.121094 0.40625 1.023438 0.585938 C 0.925781 0.769531 0.757812 0.882812 0.519531 0.925781 Z M 0.519531 0.636719 "/>
271
</symbol>
272
<symbol overflow="visible" id="glyph1-56">
273
<path style="stroke:none;" d="M 0.128906 -4.472656 L 0.835938 -4.472656 L 2.121094 -2.324219 L 3.40625 -4.472656 L 4.113281 -4.472656 L 2.425781 -1.800781 L 2.425781 0 L 1.816406 0 L 1.816406 -1.800781 Z M 0.128906 -4.472656 "/>
274
</symbol>
275
<symbol overflow="visible" id="glyph1-57">
276
<path style="stroke:none;" d="M 2.261719 -2.734375 C 2.398438 -2.871094 2.464844 -3.03125 2.464844 -3.21875 C 2.464844 -3.382812 2.402344 -3.53125 2.273438 -3.667969 C 2.140625 -3.804688 1.945312 -3.871094 1.679688 -3.871094 C 1.414062 -3.871094 1.222656 -3.800781 1.105469 -3.667969 C 0.988281 -3.53125 0.929688 -3.371094 0.929688 -3.1875 C 0.929688 -2.984375 1.003906 -2.824219 1.15625 -2.707031 C 1.308594 -2.589844 1.488281 -2.535156 1.695312 -2.535156 C 1.9375 -2.535156 2.125 -2.601562 2.261719 -2.734375 Z M 2.363281 -0.578125 C 2.53125 -0.714844 2.613281 -0.921875 2.613281 -1.195312 C 2.613281 -1.476562 2.527344 -1.691406 2.355469 -1.835938 C 2.183594 -1.980469 1.960938 -2.054688 1.691406 -2.054688 C 1.429688 -2.054688 1.214844 -1.980469 1.050781 -1.832031 C 0.882812 -1.683594 0.800781 -1.476562 0.800781 -1.210938 C 0.800781 -0.984375 0.875 -0.789062 1.027344 -0.621094 C 1.179688 -0.457031 1.414062 -0.375 1.730469 -0.375 C 1.984375 -0.375 2.195312 -0.441406 2.363281 -0.578125 Z M 0.59375 -2.550781 C 0.433594 -2.714844 0.351562 -2.925781 0.351562 -3.183594 C 0.351562 -3.507812 0.472656 -3.789062 0.707031 -4.023438 C 0.941406 -4.257812 1.277344 -4.371094 1.707031 -4.371094 C 2.125 -4.371094 2.453125 -4.261719 2.691406 -4.042969 C 2.929688 -3.820312 3.046875 -3.566406 3.046875 -3.269531 C 3.046875 -3 2.980469 -2.777344 2.839844 -2.609375 C 2.761719 -2.515625 2.644531 -2.421875 2.480469 -2.328125 C 2.660156 -2.246094 2.804688 -2.152344 2.90625 -2.042969 C 3.101562 -1.839844 3.199219 -1.578125 3.199219 -1.25 C 3.199219 -0.867188 3.070312 -0.542969 2.8125 -0.277344 C 2.554688 -0.0078125 2.1875 0.125 1.71875 0.125 C 1.292969 0.125 0.933594 0.0078125 0.640625 -0.222656 C 0.347656 -0.453125 0.199219 -0.785156 0.199219 -1.222656 C 0.199219 -1.480469 0.265625 -1.703125 0.390625 -1.890625 C 0.515625 -2.078125 0.703125 -2.222656 0.949219 -2.324219 C 0.796875 -2.386719 0.679688 -2.464844 0.59375 -2.550781 Z M 0.59375 -2.550781 "/>
277
</symbol>
278
<symbol overflow="visible" id="glyph1-58">
279
<path style="stroke:none;" d="M 0.53125 -0.664062 L 1.167969 -0.664062 L 1.167969 0 L 0.53125 0 Z M 0.53125 -0.664062 "/>
280
</symbol>
281
<symbol overflow="visible" id="glyph1-59">
282
<path style="stroke:none;" d="M 0.859375 0 L 0.128906 0 L 1.730469 -2.292969 L 0.226562 -4.472656 L 0.988281 -4.472656 L 2.128906 -2.761719 L 3.261719 -4.472656 L 3.984375 -4.472656 L 2.480469 -2.292969 L 4.054688 0 L 3.304688 0 L 2.097656 -1.839844 Z M 0.859375 0 "/>
283
</symbol>
284
<symbol overflow="visible" id="glyph1-60">
285
<path style="stroke:none;" d="M 0.53125 -4.472656 L 3.636719 -4.472656 L 3.636719 -3.925781 L 1.140625 -3.925781 L 1.140625 -2.566406 L 3.335938 -2.566406 L 3.335938 -2.035156 L 1.140625 -2.035156 L 1.140625 0 L 0.53125 0 Z M 0.53125 -4.472656 "/>
286
</symbol>
287
<symbol overflow="visible" id="glyph2-0">
288
<path style="stroke:none;" d=""/>
289
</symbol>
290
<symbol overflow="visible" id="glyph2-1">
291
<path style="stroke:none;" d="M 1.332031 0 L 0.402344 0 L 0.402344 -4.488281 L 1.332031 -4.488281 Z M 1.332031 0 "/>
292
</symbol>
293
<symbol overflow="visible" id="glyph2-2">
294
<path style="stroke:none;" d="M 3.085938 -3.128906 C 3.304688 -2.949219 3.414062 -2.652344 3.414062 -2.234375 L 3.414062 0 L 2.523438 0 L 2.523438 -2.019531 C 2.523438 -2.195312 2.5 -2.328125 2.453125 -2.421875 C 2.367188 -2.589844 2.207031 -2.675781 1.96875 -2.675781 C 1.671875 -2.675781 1.472656 -2.550781 1.359375 -2.300781 C 1.304688 -2.167969 1.277344 -2 1.277344 -1.796875 L 1.277344 0 L 0.410156 0 L 0.410156 -3.3125 L 1.25 -3.3125 L 1.25 -2.828125 C 1.359375 -3 1.464844 -3.121094 1.566406 -3.199219 C 1.746094 -3.332031 1.96875 -3.398438 2.246094 -3.398438 C 2.589844 -3.398438 2.867188 -3.308594 3.085938 -3.128906 Z M 3.085938 -3.128906 "/>
295
</symbol>
296
<symbol overflow="visible" id="glyph2-3">
297
<path style="stroke:none;" d="M 2.164062 -3.265625 C 2.320312 -3.175781 2.449219 -3.054688 2.546875 -2.898438 L 2.546875 -4.480469 L 3.425781 -4.480469 L 3.425781 0 L 2.582031 0 L 2.582031 -0.460938 C 2.457031 -0.261719 2.316406 -0.121094 2.160156 -0.03125 C 2 0.0585938 1.804688 0.105469 1.566406 0.105469 C 1.179688 0.105469 0.855469 -0.0546875 0.589844 -0.367188 C 0.324219 -0.679688 0.191406 -1.082031 0.191406 -1.574219 C 0.191406 -2.140625 0.320312 -2.585938 0.582031 -2.910156 C 0.84375 -3.234375 1.191406 -3.398438 1.628906 -3.398438 C 1.828125 -3.398438 2.007812 -3.355469 2.164062 -3.265625 Z M 2.378906 -0.902344 C 2.507812 -1.085938 2.570312 -1.320312 2.570312 -1.609375 C 2.570312 -2.015625 2.46875 -2.308594 2.261719 -2.480469 C 2.136719 -2.585938 1.992188 -2.640625 1.824219 -2.640625 C 1.570312 -2.640625 1.382812 -2.542969 1.265625 -2.351562 C 1.148438 -2.160156 1.085938 -1.921875 1.085938 -1.636719 C 1.085938 -1.332031 1.148438 -1.085938 1.269531 -0.902344 C 1.390625 -0.71875 1.570312 -0.628906 1.816406 -0.628906 C 2.0625 -0.628906 2.25 -0.71875 2.378906 -0.902344 Z M 2.378906 -0.902344 "/>
298
</symbol>
299
<symbol overflow="visible" id="glyph2-4">
300
<path style="stroke:none;" d="M 1.246094 -2.503906 C 1.136719 -2.378906 1.066406 -2.207031 1.039062 -1.992188 L 2.386719 -1.992188 C 2.371094 -2.222656 2.304688 -2.394531 2.179688 -2.515625 C 2.054688 -2.632812 1.898438 -2.691406 1.714844 -2.691406 C 1.511719 -2.691406 1.359375 -2.628906 1.246094 -2.503906 Z M 2.460938 -3.253906 C 2.683594 -3.148438 2.863281 -2.984375 3.007812 -2.761719 C 3.136719 -2.566406 3.222656 -2.335938 3.261719 -2.078125 C 3.285156 -1.925781 3.292969 -1.707031 3.289062 -1.417969 L 1.015625 -1.417969 C 1.027344 -1.085938 1.132812 -0.851562 1.332031 -0.71875 C 1.449219 -0.636719 1.59375 -0.59375 1.761719 -0.59375 C 1.941406 -0.59375 2.085938 -0.644531 2.199219 -0.746094 C 2.257812 -0.800781 2.3125 -0.878906 2.359375 -0.972656 L 3.246094 -0.972656 C 3.222656 -0.777344 3.121094 -0.578125 2.9375 -0.375 C 2.652344 -0.0507812 2.257812 0.109375 1.746094 0.109375 C 1.324219 0.109375 0.949219 -0.0273438 0.628906 -0.296875 C 0.304688 -0.570312 0.144531 -1.011719 0.144531 -1.625 C 0.144531 -2.199219 0.289062 -2.640625 0.578125 -2.949219 C 0.871094 -3.253906 1.25 -3.40625 1.714844 -3.40625 C 1.992188 -3.40625 2.238281 -3.355469 2.460938 -3.253906 Z M 2.460938 -3.253906 "/>
301
</symbol>
302
<symbol overflow="visible" id="glyph2-5">
303
<path style="stroke:none;" d="M 0.078125 0 L 1.210938 -1.679688 L 0.128906 -3.3125 L 1.191406 -3.3125 L 1.746094 -2.351562 L 2.285156 -3.3125 L 3.320312 -3.3125 L 2.230469 -1.695312 L 3.363281 0 L 2.28125 0 L 1.707031 -0.996094 L 1.132812 0 Z M 0.078125 0 "/>
304
</symbol>
305
<symbol overflow="visible" id="glyph2-6">
306
<path style="stroke:none;" d="M 1.082031 -1.058594 C 1.097656 -0.90625 1.140625 -0.796875 1.199219 -0.730469 C 1.308594 -0.613281 1.507812 -0.558594 1.796875 -0.558594 C 1.96875 -0.558594 2.101562 -0.582031 2.203125 -0.632812 C 2.304688 -0.683594 2.355469 -0.761719 2.355469 -0.863281 C 2.355469 -0.960938 2.3125 -1.035156 2.230469 -1.085938 C 2.148438 -1.136719 1.847656 -1.222656 1.328125 -1.347656 C 0.953125 -1.441406 0.6875 -1.554688 0.53125 -1.695312 C 0.378906 -1.832031 0.300781 -2.03125 0.300781 -2.292969 C 0.300781 -2.597656 0.421875 -2.863281 0.664062 -3.082031 C 0.902344 -3.304688 1.242188 -3.414062 1.679688 -3.414062 C 2.09375 -3.414062 2.429688 -3.332031 2.691406 -3.164062 C 2.953125 -3 3.101562 -2.714844 3.140625 -2.308594 L 2.273438 -2.308594 C 2.261719 -2.421875 2.226562 -2.507812 2.175781 -2.574219 C 2.082031 -2.691406 1.917969 -2.75 1.691406 -2.75 C 1.5 -2.75 1.367188 -2.71875 1.285156 -2.660156 C 1.207031 -2.601562 1.167969 -2.535156 1.167969 -2.453125 C 1.167969 -2.355469 1.207031 -2.28125 1.292969 -2.238281 C 1.378906 -2.191406 1.679688 -2.109375 2.199219 -1.996094 C 2.542969 -1.914062 2.800781 -1.792969 2.976562 -1.628906 C 3.144531 -1.460938 3.230469 -1.253906 3.230469 -1.003906 C 3.230469 -0.675781 3.109375 -0.40625 2.863281 -0.199219 C 2.617188 0.0078125 2.242188 0.113281 1.730469 0.113281 C 1.207031 0.113281 0.824219 0.00390625 0.574219 -0.21875 C 0.324219 -0.4375 0.199219 -0.71875 0.199219 -1.058594 Z M 1.082031 -1.058594 "/>
307
</symbol>
308
<symbol overflow="visible" id="glyph3-0">
309
<path style="stroke:none;" d=""/>
310
</symbol>
311
<symbol overflow="visible" id="glyph3-1">
312
<path style="stroke:none;" d="M 0.699219 -1.011719 C 0.734375 -0.726562 0.867188 -0.53125 1.097656 -0.421875 C 1.214844 -0.367188 1.351562 -0.335938 1.507812 -0.335938 C 1.800781 -0.335938 2.019531 -0.433594 2.160156 -0.621094 C 2.304688 -0.808594 2.375 -1.015625 2.375 -1.246094 C 2.375 -1.523438 2.289062 -1.738281 2.121094 -1.886719 C 1.953125 -2.039062 1.75 -2.113281 1.515625 -2.113281 C 1.34375 -2.113281 1.195312 -2.082031 1.074219 -2.015625 C 0.949219 -1.949219 0.84375 -1.855469 0.757812 -1.738281 L 0.328125 -1.761719 L 0.628906 -3.898438 L 2.6875 -3.898438 L 2.6875 -3.414062 L 1.003906 -3.414062 L 0.832031 -2.3125 C 0.925781 -2.382812 1.011719 -2.4375 1.097656 -2.472656 C 1.246094 -2.53125 1.414062 -2.5625 1.609375 -2.5625 C 1.972656 -2.5625 2.28125 -2.445312 2.53125 -2.210938 C 2.785156 -1.976562 2.914062 -1.679688 2.914062 -1.320312 C 2.914062 -0.945312 2.796875 -0.617188 2.566406 -0.328125 C 2.332031 -0.0429688 1.964844 0.101562 1.457031 0.101562 C 1.132812 0.101562 0.847656 0.0078125 0.597656 -0.171875 C 0.351562 -0.355469 0.210938 -0.632812 0.183594 -1.011719 Z M 0.699219 -1.011719 "/>
313
</symbol>
314
<symbol overflow="visible" id="glyph3-2">
315
<path style="stroke:none;" d=""/>
316
</symbol>
317
<symbol overflow="visible" id="glyph3-3">
318
<path style="stroke:none;" d="M 0.367188 -2.964844 L 0.859375 -2.964844 L 0.859375 -2.542969 C 0.976562 -2.6875 1.082031 -2.796875 1.179688 -2.863281 C 1.34375 -2.976562 1.53125 -3.03125 1.738281 -3.03125 C 1.972656 -3.03125 2.164062 -2.972656 2.308594 -2.855469 C 2.390625 -2.789062 2.464844 -2.691406 2.53125 -2.5625 C 2.640625 -2.722656 2.769531 -2.839844 2.921875 -2.917969 C 3.070312 -2.992188 3.238281 -3.03125 3.425781 -3.03125 C 3.824219 -3.03125 4.09375 -2.886719 4.238281 -2.597656 C 4.316406 -2.445312 4.355469 -2.234375 4.355469 -1.972656 L 4.355469 0 L 3.835938 0 L 3.835938 -2.058594 C 3.835938 -2.257812 3.789062 -2.394531 3.6875 -2.464844 C 3.589844 -2.539062 3.46875 -2.578125 3.328125 -2.578125 C 3.132812 -2.578125 2.964844 -2.511719 2.820312 -2.378906 C 2.679688 -2.25 2.609375 -2.03125 2.609375 -1.722656 L 2.609375 0 L 2.105469 0 L 2.105469 -1.933594 C 2.105469 -2.136719 2.078125 -2.28125 2.03125 -2.375 C 1.957031 -2.511719 1.816406 -2.582031 1.609375 -2.582031 C 1.421875 -2.582031 1.25 -2.511719 1.09375 -2.363281 C 0.941406 -2.21875 0.863281 -1.953125 0.863281 -1.574219 L 0.863281 0 L 0.367188 0 Z M 0.367188 -2.964844 "/>
319
</symbol>
320
<symbol overflow="visible" id="glyph3-4">
321
<path style="stroke:none;" d="M 2.222656 -0.695312 C 2.34375 -0.945312 2.40625 -1.222656 2.40625 -1.53125 C 2.40625 -1.808594 2.359375 -2.03125 2.273438 -2.207031 C 2.132812 -2.480469 1.890625 -2.617188 1.546875 -2.617188 C 1.242188 -2.617188 1.019531 -2.5 0.882812 -2.265625 C 0.746094 -2.035156 0.675781 -1.753906 0.675781 -1.425781 C 0.675781 -1.109375 0.746094 -0.847656 0.882812 -0.636719 C 1.019531 -0.425781 1.242188 -0.320312 1.542969 -0.320312 C 1.871094 -0.320312 2.097656 -0.445312 2.222656 -0.695312 Z M 2.53125 -2.667969 C 2.792969 -2.414062 2.925781 -2.039062 2.925781 -1.542969 C 2.925781 -1.066406 2.808594 -0.671875 2.578125 -0.359375 C 2.34375 -0.046875 1.984375 0.109375 1.496094 0.109375 C 1.085938 0.109375 0.761719 -0.03125 0.523438 -0.304688 C 0.285156 -0.582031 0.164062 -0.953125 0.164062 -1.417969 C 0.164062 -1.914062 0.289062 -2.3125 0.542969 -2.609375 C 0.796875 -2.902344 1.136719 -3.050781 1.5625 -3.050781 C 1.945312 -3.050781 2.265625 -2.921875 2.53125 -2.667969 Z M 2.53125 -2.667969 "/>
322
</symbol>
323
<symbol overflow="visible" id="glyph3-5">
324
<path style="stroke:none;" d="M 0.378906 -2.964844 L 0.851562 -2.964844 L 0.851562 -2.453125 C 0.890625 -2.550781 0.988281 -2.671875 1.136719 -2.816406 C 1.289062 -2.960938 1.464844 -3.03125 1.660156 -3.03125 C 1.667969 -3.03125 1.6875 -3.03125 1.707031 -3.027344 C 1.730469 -3.027344 1.769531 -3.023438 1.820312 -3.015625 L 1.820312 -2.492188 C 1.792969 -2.496094 1.765625 -2.5 1.738281 -2.503906 C 1.714844 -2.503906 1.6875 -2.503906 1.65625 -2.503906 C 1.40625 -2.503906 1.214844 -2.425781 1.078125 -2.261719 C 0.945312 -2.101562 0.878906 -1.914062 0.878906 -1.707031 L 0.878906 0 L 0.378906 0 Z M 0.378906 -2.964844 "/>
325
</symbol>
326
<symbol overflow="visible" id="glyph3-6">
327
<path style="stroke:none;" d="M 2.210938 -2.882812 C 2.410156 -2.785156 2.558594 -2.65625 2.664062 -2.5 C 2.761719 -2.351562 2.828125 -2.175781 2.863281 -1.976562 C 2.890625 -1.839844 2.90625 -1.621094 2.90625 -1.324219 L 0.734375 -1.324219 C 0.742188 -1.023438 0.8125 -0.78125 0.945312 -0.597656 C 1.078125 -0.417969 1.285156 -0.328125 1.5625 -0.328125 C 1.824219 -0.328125 2.03125 -0.414062 2.1875 -0.585938 C 2.277344 -0.683594 2.339844 -0.800781 2.375 -0.929688 L 2.863281 -0.929688 C 2.851562 -0.820312 2.808594 -0.699219 2.738281 -0.566406 C 2.664062 -0.433594 2.582031 -0.324219 2.492188 -0.238281 C 2.339844 -0.0898438 2.152344 0.0078125 1.929688 0.0625 C 1.808594 0.0898438 1.675781 0.105469 1.523438 0.105469 C 1.152344 0.105469 0.839844 -0.0273438 0.585938 -0.296875 C 0.328125 -0.566406 0.199219 -0.941406 0.199219 -1.425781 C 0.199219 -1.902344 0.328125 -2.289062 0.585938 -2.585938 C 0.84375 -2.882812 1.183594 -3.03125 1.601562 -3.03125 C 1.8125 -3.03125 2.015625 -2.980469 2.210938 -2.882812 Z M 2.394531 -1.71875 C 2.375 -1.933594 2.328125 -2.109375 2.253906 -2.238281 C 2.117188 -2.476562 1.890625 -2.597656 1.570312 -2.597656 C 1.339844 -2.597656 1.148438 -2.515625 0.992188 -2.347656 C 0.839844 -2.183594 0.757812 -1.972656 0.746094 -1.71875 Z M 2.394531 -1.71875 "/>
328
</symbol>
329
<symbol overflow="visible" id="glyph3-7">
330
<path style="stroke:none;" d="M 0.484375 -0.601562 L 1.0625 -0.601562 L 1.0625 0 L 0.484375 0 Z M 0.484375 -0.601562 "/>
331
</symbol>
332
</g>
333
<clipPath id="clip1">
334
  <path d="M 0 0 L 1117.984375 0 L 1117.984375 782.902344 L 0 782.902344 Z M 0 0 "/>
335
</clipPath>
336
</defs>
337
<g id="surface0">
338
<g clip-path="url(#clip1)" clip-rule="nonzero">
339
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 7.50217 0.498318 L 7.50217 31.497287 L 0.501736 31.497287 L 0.501736 61.497179 " transform="matrix(0.566929,0,0,0.566929,51.590551,515.338583)"/>
340
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.003092 0.00222439 L -0.000813802 9.999891 L 5.001465 0.00222439 " transform="matrix(0.566929,0,0,0.566929,55.559055,515.338583)"/>
341
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.003092 11.998047 L 5.001465 11.998047 " transform="matrix(0.566929,0,0,0.566929,55.559055,515.338583)"/>
342
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.001953 6.000271 L 3.997559 6.000271 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,51.590551,549.92126)"/>
343
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.001953 9.996582 L 3.997559 9.996582 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,51.590551,549.92126)"/>
344
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 13.499783 0.500922 L 13.499783 196.499295 L 0.497993 196.499295 L 0.497993 391.498589 " transform="matrix(0.566929,0,0,0.566929,206.362205,107.149606)"/>
345
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.998589 -0.00206163 L -0.00320095 10.002496 L 4.999078 -0.00206163 " transform="matrix(0.566929,0,0,0.566929,213.732283,107.149606)"/>
346
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.998589 12.000651 L 4.999078 12.000651 " transform="matrix(0.566929,0,0,0.566929,213.732283,107.149606)"/>
347
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.99821 5.998861 L 4.001302 5.998861 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,206.362205,328.818898)"/>
348
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.99821 10.002062 L 4.001302 10.002062 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,206.362205,328.818898)"/>
349
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 0.500868 0.502387 L 0.500868 27.498155 L 5.503147 27.498155 L 5.503147 53.501736 " transform="matrix(0.566929,0,0,0.566929,187.653543,525.543307)"/>
350
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.997504 -0.000596788 L -0.00211589 9.99707 L 5.000163 -0.000596788 " transform="matrix(0.566929,0,0,0.566929,187.653543,525.543307)"/>
351
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.997504 12.002116 L 5.000163 12.002116 " transform="matrix(0.566929,0,0,0.566929,187.653543,525.543307)"/>
352
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.003364 6.002604 L 4.003038 6.002604 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,190.488189,555.590551)"/>
353
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.003038 11.99707 C 4.003038 17.330078 -4.003364 17.330078 -4.003364 11.99707 C -4.003364 6.664063 4.003038 6.664063 4.003038 11.99707 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,190.488189,555.590551)"/>
354
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 0.49821 0.49821 L 465.503418 0.49821 L 465.503418 440.498915 L 929.502658 440.498915 " transform="matrix(0.566929,0,0,0.566929,244.346457,460.346457)"/>
355
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.997504 0.00211589 L -0.00211589 9.999783 L 5.000163 0.00211589 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,244.346457,460.346457)"/>
356
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.997504 11.997938 L 5.000163 11.997938 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,244.346457,460.346457)"/>
357
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.00038 6.001682 L 3.999132 6.001682 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,771.023622,709.795276)"/>
358
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.999132 12.003038 C 3.999132 17.336046 -4.00038 17.336046 -4.00038 12.003038 C -4.00038 6.67003 3.999132 6.67003 3.999132 12.003038 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,771.023622,709.795276)"/>
359
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.496636 0.497667 L 0.496636 227.501899 L 64.49962 227.501899 L 64.49962 453.500163 " transform="matrix(0.566929,0,0,0.566929,778.96063,185.385827)"/>
360
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001736 0.00157335 L 0.000542535 9.99924 L 5.002821 0.00157335 " transform="matrix(0.566929,0,0,0.566929,778.96063,185.385827)"/>
361
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001736 11.997396 L 5.002821 11.997396 " transform="matrix(0.566929,0,0,0.566929,778.96063,185.385827)"/>
362
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.999837 5.997287 L 3.999674 5.997287 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,815.244094,442.204724)"/>
363
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.999837 10.000488 L 3.999674 10.000488 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,815.244094,442.204724)"/>
364
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 95.499457 0.500705 L 95.499457 266.503418 L 0.497504 266.503418 L 0.497504 531.500163 " transform="matrix(0.566929,0,0,0.566929,858.897638,141.165354)"/>
365
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.998915 -0.00227865 L 0.00336372 10.002279 L 4.998752 -0.00227865 " transform="matrix(0.566929,0,0,0.566929,912.755906,141.165354)"/>
366
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.998915 12.000434 L 4.998752 12.000434 " transform="matrix(0.566929,0,0,0.566929,912.755906,141.165354)"/>
367
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.997721 5.997287 L 4.00179 5.997287 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,858.897638,442.204724)"/>
368
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.997721 10.000488 L 4.00179 10.000488 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,858.897638,442.204724)"/>
369
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.498969 0.497667 L 0.498969 689.502984 L 250.502658 689.502984 " transform="matrix(0.566929,0,0,0.566929,629.291339,185.385827)"/>
370
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.999403 0.00157335 L 0.00287543 9.99924 L 4.998264 0.00157335 " transform="matrix(0.566929,0,0,0.566929,629.291339,185.385827)"/>
371
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.999403 11.997396 L 4.998264 11.997396 " transform="matrix(0.566929,0,0,0.566929,629.291339,185.385827)"/>
372
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.003201 6.001682 L 4.003201 6.001682 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,771.023622,576)"/>
373
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.003201 9.997993 L 4.003201 9.997993 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,771.023622,576)"/>
374
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 51.496582 0.500326 L 51.496582 340.496799 L 0.502279 340.496799 " transform="matrix(0.566929,0,0,0.566929,902.551181,416.692913)"/>
375
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.00179 -0.00265842 L 0.000488281 10.001899 L 5.002767 -0.00265842 " transform="matrix(0.566929,0,0,0.566929,931.464567,416.692913)"/>
376
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.00179 12.000054 L 5.002767 12.000054 " transform="matrix(0.566929,0,0,0.566929,931.464567,416.692913)"/>
377
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.997016 6.000651 L 4.002496 6.000651 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,902.551181,609.448819)"/>
378
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.997016 9.996962 L 4.002496 9.996962 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,902.551181,609.448819)"/>
379
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 17.501573 0.500705 L 17.501573 151.49924 L 0.496582 151.49924 L 0.496582 301.498698 " transform="matrix(0.566929,0,0,0.566929,931.464567,141.165354)"/>
380
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.996799 -0.00227865 L -0.00141059 10.002279 L 5.000868 -0.00227865 " transform="matrix(0.566929,0,0,0.566929,941.102362,141.165354)"/>
381
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.996799 12.000434 L 5.000868 12.000434 " transform="matrix(0.566929,0,0,0.566929,941.102362,141.165354)"/>
382
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.996799 5.998752 L 4.002713 5.998752 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,931.464567,311.811024)"/>
383
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.996799 10.001953 L 4.002713 10.001953 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,931.464567,311.811024)"/>
384
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 0.499512 0.501953 L 34.502604 0.501953 L 34.502604 1.501031 L 68.498806 1.501031 " transform="matrix(0.566929,0,0,0.566929,256.251969,665.574803)"/>
385
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001248 0.00341797 L 0.00103082 10.001085 L 5.003309 0.00341797 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,256.251969,665.574803)"/>
386
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001248 11.99924 L 5.003309 11.99924 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,256.251969,665.574803)"/>
387
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.998264 5.998644 L 4.001248 5.998644 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,294.80315,666.141732)"/>
388
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.998264 10.001845 L 4.001248 10.001845 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,294.80315,666.141732)"/>
389
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 71.496691 0.503364 L 71.496691 46.502279 L 0.500163 46.502279 L 0.500163 91.502116 " transform="matrix(0.566929,0,0,0.566929,298.204724,84.472441)"/>
390
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001682 0.000379774 L 0.000596788 9.998047 L 5.002875 0.000379774 " transform="matrix(0.566929,0,0,0.566929,338.456693,84.472441)"/>
391
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001682 12.003092 L 5.002875 12.003092 " transform="matrix(0.566929,0,0,0.566929,338.456693,84.472441)"/>
392
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.00038 6.002224 L 3.999132 6.002224 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,298.204724,136.062992)"/>
393
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.00038 9.998535 L 3.999132 9.998535 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,298.204724,136.062992)"/>
394
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 0.496908 0.503364 L 0.496908 301.501356 L 466.501194 301.501356 " transform="matrix(0.566929,0,0,0.566929,376.440945,84.472441)"/>
395
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001465 0.000379774 L 0.000813802 9.998047 L 5.003092 0.000379774 " transform="matrix(0.566929,0,0,0.566929,376.440945,84.472441)"/>
396
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001465 12.003092 L 5.003092 12.003092 " transform="matrix(0.566929,0,0,0.566929,376.440945,84.472441)"/>
397
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.997938 6.003147 L 4.001573 6.003147 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,640.629921,255.11811)"/>
398
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.997938 9.999457 L 4.001573 9.999457 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,640.629921,255.11811)"/>
399
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 0.49821 0.501845 L 350.49924 0.501845 L 350.49924 84.500163 L 699.501194 84.500163 " transform="matrix(0.566929,0,0,0.566929,244.346457,394.582677)"/>
400
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001139 0.00211589 L 0.00113932 9.999783 L 5.003418 0.00211589 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,244.346457,394.582677)"/>
401
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001139 11.997938 L 5.003418 11.997938 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,244.346457,394.582677)"/>
402
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.999132 6.003147 L 4.00038 6.003147 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,640.629921,442.204724)"/>
403
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.999132 9.999457 L 4.00038 9.999457 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,640.629921,442.204724)"/>
404
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.497342 0.500705 L 206.497342 274.50293 L 0.501302 274.50293 " transform="matrix(0.566929,0,0,0.566929,767.622047,141.165354)"/>
405
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001031 -0.00227865 L 0.00124783 10.002279 L 4.996636 -0.00227865 " transform="matrix(0.566929,0,0,0.566929,884.409449,141.165354)"/>
406
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.001031 12.000434 L 4.996636 12.000434 " transform="matrix(0.566929,0,0,0.566929,884.409449,141.165354)"/>
407
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.003147 5.999674 L 4.003255 5.999674 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,767.622047,296.503937)"/>
408
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.003147 10.002875 L 4.003255 10.002875 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,767.622047,296.503937)"/>
409
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 0.501682 0.498481 L 0.501682 331.503255 L 262.501194 331.503255 " transform="matrix(0.566929,0,0,0.566929,492.094488,129.826772)"/>
410
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.996691 0.00238715 L -0.00130208 10.000054 L 5.000977 0.00238715 " transform="matrix(0.566929,0,0,0.566929,492.094488,129.826772)"/>
411
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.996691 11.99821 L 5.000977 11.99821 " transform="matrix(0.566929,0,0,0.566929,492.094488,129.826772)"/>
412
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.00293 6.003147 L 3.996582 6.003147 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,640.629921,317.480315)"/>
413
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 3.996582 11.997613 C 3.996582 17.330621 -4.00293 17.330621 -4.00293 11.997613 C -4.00293 6.664605 3.996582 6.664605 3.996582 11.997613 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,640.629921,317.480315)"/>
414
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 0.502387 0.498481 L 0.502387 669.501573 L 433.502658 669.501573 " transform="matrix(0.566929,0,0,0.566929,525.543307,129.826772)"/>
415
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.002875 0.00238715 L -0.000596788 10.000054 L 5.001682 0.00238715 " transform="matrix(0.566929,0,0,0.566929,525.543307,129.826772)"/>
416
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.002875 11.99821 L 5.001682 11.99821 " transform="matrix(0.566929,0,0,0.566929,525.543307,129.826772)"/>
417
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.997721 6.001682 L 4.00179 6.001682 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,771.023622,509.102362)"/>
418
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.997721 9.997993 L 4.00179 9.997993 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,771.023622,509.102362)"/>
419
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 180.500977 0.498481 L 180.500977 421.50293 L 0.501628 421.50293 L 0.501628 841.501411 " transform="matrix(0.566929,0,0,0.566929,356.598425,129.826772)"/>
420
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.997396 0.00238715 L -0.00200738 10.000054 L 5.000271 0.00238715 " transform="matrix(0.566929,0,0,0.566929,458.645669,129.826772)"/>
421
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.997396 11.99821 L 5.000271 11.99821 " transform="matrix(0.566929,0,0,0.566929,458.645669,129.826772)"/>
422
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.001845 6.00293 L 3.997667 6.00293 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,356.598425,606.614173)"/>
423
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.001845 9.99924 L 3.997667 9.99924 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,356.598425,606.614173)"/>
424
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 386.496691 0.501302 L 193.502441 0.501302 L 193.502441 241.499512 L 0.501302 241.499512 " transform="matrix(0.566929,0,0,0.566929,767.622047,263.622047)"/>
425
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.99707 -0.000596788 L -0.00168186 9.99707 L 5.000597 -0.000596788 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,986.456693,263.622047)"/>
426
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.99707 12.002116 L 5.000597 12.002116 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,986.456693,263.622047)"/>
427
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.999729 5.999674 L 3.999783 5.999674 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,767.622047,400.251969)"/>
428
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.999729 10.002875 L 3.999783 10.002875 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,767.622047,400.251969)"/>
429
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 0.501302 0.501628 L 86.497776 0.501628 L 86.497776 205.498589 " transform="matrix(0.566929,0,0,0.566929,119.622047,212.598425)"/>
430
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.000922 -0.00168186 L 0.00135634 10.002875 L 4.996745 -0.00168186 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,119.622047,212.598425)"/>
431
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.000922 12.001031 L 4.996745 12.001031 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,119.622047,212.598425)"/>
432
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.997993 5.998861 L 4.001519 5.998861 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,168.377953,328.818898)"/>
433
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.001519 12.000217 C 4.001519 17.333225 -3.997993 17.333225 -3.997993 12.000217 C -3.997993 6.667209 4.001519 6.667209 4.001519 12.000217 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,168.377953,328.818898)"/>
434
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 0.501302 0.499186 L 575.501519 0.499186 L 575.501519 592.497504 L 1149.502658 592.497504 " transform="matrix(0.566929,0,0,0.566929,119.622047,307.275591)"/>
435
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.998481 -0.00168186 L -0.00309245 10.002875 L 4.999186 -0.00168186 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,119.622047,307.275591)"/>
436
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.998481 12.001031 L 4.999186 12.001031 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,119.622047,307.275591)"/>
437
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.00179 6.001682 L 3.997721 6.001682 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,771.023622,642.897638)"/>
438
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.00179 9.997993 L 3.997721 9.997993 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,771.023622,642.897638)"/>
439
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 0.501302 0.497179 L 460.497342 0.497179 L 460.497342 462.498264 L 919.501194 462.498264 " transform="matrix(0.566929,0,0,0.566929,119.622047,117.92126)"/>
440
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.003364 -0.00168186 L -0.00108507 10.002875 L 5.001194 -0.00168186 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,119.622047,117.92126)"/>
441
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.003364 12.001031 L 5.001194 12.001031 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,119.622047,117.92126)"/>
442
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.001031 6.003147 L 3.998481 6.003147 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,640.629921,379.84252)"/>
443
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.001031 9.999457 L 3.998481 9.999457 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,640.629921,379.84252)"/>
444
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1780.501139 8.502496 C 1780.501139 4.078993 1784.084039 0.502984 1788.500651 0.502984 L 1930.500597 0.502984 L 1930.500597 0.502984 C 1934.917209 0.502984 1938.500109 4.078993 1938.500109 8.502496 L 1938.500109 101.499403 L 1938.500109 101.499403 C 1938.500109 105.916016 1934.917209 109.498915 1930.500597 109.498915 L 1788.500651 109.498915 L 1788.500651 109.498915 C 1784.084039 109.498915 1780.501139 105.916016 1780.501139 101.499403 L 1780.501139 8.502496 Z M 1780.501139 8.502496 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
445
<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.501139 8.502496 C 0.501139 4.078993 4.084039 0.502984 8.500651 0.502984 L 150.500597 0.502984 L 150.500597 0.502984 C 154.917209 0.502984 158.500109 4.078993 158.500109 8.502496 L 158.500109 24.501519 L 0.501139 24.501519 L 0.501139 8.502496 Z M 0.501139 8.502496 " transform="matrix(0.566929,0,0,0.566929,1009.133858,0)"/>
446
  <image width="16" height="16" transform="matrix(0.566929,0,0,0.566929,1012.535433,2.267717)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHSSURBVHjapJNLbhRBDIb/6u7JBBgRBAiNxHayZ8OSNZfgDFyFA7DgAKzYRMkFcoPsWPCQEhRBEAxMdT1c5nd1T5JmRUSp3VXttj+XXS7gP4ez19NnJ3oTp/vLHRy93d/n8kunqnjx8hRNQ5pzg4Vew+vVXGjLB4t7rf19TjmiQt27k6TbIbSKWbWn6nco+tMXvdgUPV8XPf0h+uGb6JvjtWFfUZ50NRCx603Gp/MNkijatsHenRnOvvdIWfFg7xbOLjxCUqwe34WkfJlOBdjW6Ic+FYQo6LoWuzsdfOA3AQvquRvEkLD2HinGS0BTASKQAkYbHCIjRBItYoi56kIkIEX0IUNymu5A6M3cK8TEapmFQp3Nqa5HsbW9JjvIeXBWjBAFazhCrkBbiNlPayC5RhlE6lGZTTQnEiO9bM6MYEWWvwGZnqwTPPONISA3Dr7v6zoxX+9b5h9q9QeATABqOZnMW0ZvS22czIJ1DQ1bHdcFbtbUFFWuAaz7Xh9+xIw/lw8X6Pt5zVm0waP5bgVndZjfdkOBmxm0lGkKX9kkB8efeRrCehTrThqhzkW3347dPPS434TpZeJYjb29usGdem93YQtYUJbj/K/jl93GPwIMALKlc/N8m1J8AAAAAElFTkSuQmCC"/>
447
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
448
  <use xlink:href="#glyph0-1" x="1024.441406" y="8.914062"/>
449
  <use xlink:href="#glyph0-2" x="1028.597041" y="8.914062"/>
450
  <use xlink:href="#glyph0-3" x="1030.487174" y="8.914062"/>
451
  <use xlink:href="#glyph0-4" x="1034.270762" y="8.914062"/>
452
  <use xlink:href="#glyph0-5" x="1038.426396" y="8.914062"/>
453
  <use xlink:href="#glyph0-6" x="1042.209984" y="8.914062"/>
454
  <use xlink:href="#glyph0-3" x="1046.365619" y="8.914062"/>
455
  <use xlink:href="#glyph0-4" x="1050.149206" y="8.914062"/>
456
  <use xlink:href="#glyph0-7" x="1054.304841" y="8.914062"/>
457
  <use xlink:href="#glyph0-8" x="1058.460476" y="8.914062"/>
458
  <use xlink:href="#glyph0-5" x="1062.244064" y="8.914062"/>
459
  <use xlink:href="#glyph0-9" x="1066.027651" y="8.914062"/>
460
  <use xlink:href="#glyph0-10" x="1068.293153" y="8.914062"/>
461
  <use xlink:href="#glyph0-11" x="1072.076741" y="8.914062"/>
462
  <use xlink:href="#glyph0-2" x="1078.12583" y="8.914062"/>
463
  <use xlink:href="#glyph0-12" x="1080.015963" y="8.914062"/>
464
  <use xlink:href="#glyph0-13" x="1081.906096" y="8.914062"/>
465
</g>
466
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.039008 15.723416 " transform="matrix(0.566929,0,0,0.566929,1021.03937,0)"/>
467
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 1089.921875 4.820312 L 1095.023438 4.820312 L 1092.472656 9.355469 Z M 1089.921875 4.820312 "/>
468
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,1011.401575,15.874016)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUZJREFUeNpi+v//PwOxmIUBCBgZGRlgoGnePNU/DAyzHz9+nDS/vv4xUOg3TI6JAQm0zp+vISYjs9ctNtZeWlNzr1lgoCZQmA0mz4KsUERaepeRi4vsZyDfIDBQ4e3//1u+///vc3nDhhtAoV/MDQ0NDCwKCmCFxkCF34CiIMXvmZgYWNXV+X+ysnr9+/Vr99ubN9+DnfHz379ZOo6OYBM/APEbIH4F9BCIL21uLi+mq1sOZPKDFd+/cydm16ZN9979/cvwFqrw058/DF9evGC4tGDB4cMtLXOBwpzgIAG53Tw4WDdz1aoHHb9+/a8G4vxHj/7b1dcfAsp5A7E+EAvCFIMAm25AgF4wUEPew4f/HRobkRUKATEzsmKwBnV/fz3bmppFQLYTEOvBFYLiA6QYOVKg4coPxBxA/AWIPwHxX5AEQIABAE3UoaJ0ooBMAAAAAElFTkSuQmCC"/>
469
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
470
  <use xlink:href="#glyph1-1" x="1018.773438" y="21.035156"/>
471
  <use xlink:href="#glyph1-2" x="1020.506059" y="21.035156"/>
472
  <use xlink:href="#glyph1-3" x="1023.974348" y="21.035156"/>
473
  <use xlink:href="#glyph1-4" x="1029.169168" y="21.035156"/>
474
  <use xlink:href="#glyph1-5" x="1030.554657" y="21.035156"/>
475
  <use xlink:href="#glyph1-6" x="1031.940145" y="21.035156"/>
476
  <use xlink:href="#glyph1-7" x="1035.058255" y="21.035156"/>
477
  <use xlink:href="#glyph1-8" x="1036.790877" y="21.035156"/>
478
  <use xlink:href="#glyph1-9" x="1040.950388" y="21.035156"/>
479
  <use xlink:href="#glyph1-10" x="1045.109898" y="21.035156"/>
480
  <use xlink:href="#glyph1-11" x="1049.613497" y="21.035156"/>
481
  <use xlink:href="#glyph1-12" x="1054.117095" y="21.035156"/>
482
  <use xlink:href="#glyph1-9" x="1058.620694" y="21.035156"/>
483
  <use xlink:href="#glyph1-10" x="1062.780204" y="21.035156"/>
484
  <use xlink:href="#glyph1-13" x="1067.283803" y="21.035156"/>
485
  <use xlink:href="#glyph1-14" x="1069.360513" y="21.035156"/>
486
  <use xlink:href="#glyph1-15" x="1072.828802" y="21.035156"/>
487
  <use xlink:href="#glyph1-16" x="1076.29709" y="21.035156"/>
488
  <use xlink:href="#glyph1-17" x="1079.765379" y="21.035156"/>
489
</g>
490
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.25217 13.103678 " transform="matrix(0.566929,0,0,0.566929,1016.503937,13.606299)"/>
491
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,1016.503937,13.606299)"/>
492
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,1011.401575,27.212598)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARdJREFUeNpi/P//PwOxgAVE2JWXwwVc7ez0333+vPzH58/BM9LS7tiWlf2GyTEh63S1tTXh5ODYWx0aqikoIXHYISND/3BXFxuGYpBCLk7OHdnOzsIizMwMlV5ewnoeHjst0tP14BpAbm7cvNmke8+eN9/+o4K3f/78T9q48Y1xWpoJUCkbWHH+smU3XgMlsIFDL1789546dTdQsShYcfKkSao1W7a8+oSm4cqbN//DZs++ClToBMRyDNCgY3HMyjLOA1r5FqoBpDB01qxrQDlvINYHYkGwYmDwgDSwAT1jAnIjyGqoiTCFQkDMDFcM0wDyjNeUKTugVuvBFILkGUGKkSMFGkz8QMwBxF+A+BNQ4V+QHECAAQCC17lBwBoXhgAAAABJRU5ErkJggg=="/>
493
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
494
  <use xlink:href="#glyph1-18" x="1018.773438" y="32.375"/>
495
  <use xlink:href="#glyph1-19" x="1022.241726" y="32.375"/>
496
  <use xlink:href="#glyph1-20" x="1025.710015" y="32.375"/>
497
  <use xlink:href="#glyph1-21" x="1029.178303" y="32.375"/>
498
  <use xlink:href="#glyph1-22" x="1032.646592" y="32.375"/>
499
  <use xlink:href="#glyph1-7" x="1035.764702" y="32.375"/>
500
  <use xlink:href="#glyph1-8" x="1037.497324" y="32.375"/>
501
  <use xlink:href="#glyph1-9" x="1041.656834" y="32.375"/>
502
  <use xlink:href="#glyph1-10" x="1045.816345" y="32.375"/>
503
  <use xlink:href="#glyph1-11" x="1050.319943" y="32.375"/>
504
  <use xlink:href="#glyph1-12" x="1054.823542" y="32.375"/>
505
  <use xlink:href="#glyph1-9" x="1059.327141" y="32.375"/>
506
  <use xlink:href="#glyph1-10" x="1063.486651" y="32.375"/>
507
  <use xlink:href="#glyph1-13" x="1067.99025" y="32.375"/>
508
  <use xlink:href="#glyph1-23" x="1070.06696" y="32.375"/>
509
  <use xlink:href="#glyph1-15" x="1073.535249" y="32.375"/>
510
  <use xlink:href="#glyph1-16" x="1077.003537" y="32.375"/>
511
  <use xlink:href="#glyph1-17" x="1080.471826" y="32.375"/>
512
</g>
513
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.492405 33.105903 " transform="matrix(0.566929,0,0,0.566929,1016.503937,13.606299)"/>
514
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,1016.503937,13.606299)"/>
515
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,1011.401575,38.551181)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARdJREFUeNpi/P//PwOxgAVE2JWXwwVc7ez0333+vPzH58/BM9LS7tiWlf2GyTEh63S1tTXh5ODYWx0aqikoIXHYISND/3BXFxuGYpBCLk7OHdnOzsIizMwMlV5ewnoeHjst0tP14BpAbm7cvNmke8+eN9/+o4K3f/78T9q48Y1xWpoJUCkbWHH+smU3XgMlsIFDL1789546dTdQsShYcfKkSao1W7a8+oSm4cqbN//DZs++ClToBMRyDNCgY3HMyjLOA1r5FqoBpDB01qxrQDlvINYHYkGwYmDwgDSwAT1jAnIjyGqoiTCFQkDMDFcM0wDyjNeUKTugVuvBFILkGUGKkSMFGkz8QMwBxF+A+BNQ4V+QHECAAQCC17lBwBoXhgAAAABJRU5ErkJggg=="/>
516
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
517
  <use xlink:href="#glyph1-24" x="1018.773438" y="43.664062"/>
518
  <use xlink:href="#glyph1-25" x="1020.506059" y="43.664062"/>
519
  <use xlink:href="#glyph1-24" x="1023.974348" y="43.664062"/>
520
  <use xlink:href="#glyph1-26" x="1025.70697" y="43.664062"/>
521
  <use xlink:href="#glyph1-1" x="1029.175258" y="43.664062"/>
522
  <use xlink:href="#glyph1-2" x="1030.90788" y="43.664062"/>
523
  <use xlink:href="#glyph1-3" x="1034.376169" y="43.664062"/>
524
  <use xlink:href="#glyph1-4" x="1039.570989" y="43.664062"/>
525
  <use xlink:href="#glyph1-5" x="1040.956478" y="43.664062"/>
526
  <use xlink:href="#glyph1-4" x="1042.341966" y="43.664062"/>
527
  <use xlink:href="#glyph1-19" x="1043.727454" y="43.664062"/>
528
  <use xlink:href="#glyph1-22" x="1047.195743" y="43.664062"/>
529
  <use xlink:href="#glyph1-7" x="1050.313853" y="43.664062"/>
530
  <use xlink:href="#glyph1-27" x="1052.046475" y="43.664062"/>
531
  <use xlink:href="#glyph1-28" x="1053.779097" y="43.664062"/>
532
  <use xlink:href="#glyph1-29" x="1058.282696" y="43.664062"/>
533
  <use xlink:href="#glyph1-13" x="1062.092028" y="43.664062"/>
534
  <use xlink:href="#glyph1-23" x="1064.168738" y="43.664062"/>
535
  <use xlink:href="#glyph1-17" x="1067.637026" y="43.664062"/>
536
</g>
537
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 93.858127 53.018555 " transform="matrix(0.566929,0,0,0.566929,1016.503937,13.606299)"/>
538
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,1016.503937,13.606299)"/>
539
<path style="fill-rule:nonzero;fill:rgb(77%,77%,77%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.501139 59.502224 L 158.500109 59.502224 L 158.500109 77.499403 L 0.501139 77.499403 Z M 0.501139 59.502224 " transform="matrix(0.566929,0,0,0.566929,1009.133858,13.606299)"/>
540
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
541
  <use xlink:href="#glyph2-1" x="1012.535156" y="54.464844"/>
542
  <use xlink:href="#glyph2-2" x="1014.267778" y="54.464844"/>
543
  <use xlink:href="#glyph2-3" x="1018.07711" y="54.464844"/>
544
  <use xlink:href="#glyph2-4" x="1021.886442" y="54.464844"/>
545
  <use xlink:href="#glyph2-5" x="1025.354731" y="54.464844"/>
546
  <use xlink:href="#glyph2-4" x="1028.823019" y="54.464844"/>
547
  <use xlink:href="#glyph2-6" x="1032.291308" y="54.464844"/>
548
</g>
549
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 46.961697 13.069933 " transform="matrix(0.566929,0,0,0.566929,1009.133858,47.055118)"/>
550
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 1089.921875 49.605469 L 1094.457031 52.15625 L 1089.921875 54.707031 Z M 1089.921875 49.605469 "/>
551
<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.500109 77.499403 L 158.500109 77.499403 L 158.500109 77.499403 C 158.500109 81.916016 154.917209 85.498915 150.500597 85.498915 L 8.500651 85.498915 L 8.500651 85.498915 C 4.084039 85.498915 0.501139 81.916016 0.501139 77.499403 L 0.501139 77.499403 Z M 158.500109 77.499403 " transform="matrix(0.566929,0,0,0.566929,1009.133858,13.606299)"/>
552
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.999512 4.998698 " transform="matrix(0.566929,0,0,0.566929,1009.133858,57.259843)"/>
553
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.502984 978.496691 C 0.502984 974.080078 4.078993 970.497179 8.502496 970.497179 L 173.501899 970.497179 L 173.501899 970.497179 C 177.918511 970.497179 181.501411 974.080078 181.501411 978.496691 L 181.501411 1291.497396 L 181.501411 1291.497396 C 181.501411 1295.920898 177.918511 1299.496908 173.501899 1299.496908 L 8.502496 1299.496908 L 8.502496 1299.496908 C 4.078993 1299.496908 0.502984 1295.920898 0.502984 1291.497396 L 0.502984 978.496691 Z M 0.502984 978.496691 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
554
<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.502984 8.496691 C 0.502984 4.080078 4.078993 0.497179 8.502496 0.497179 L 173.501899 0.497179 L 173.501899 0.497179 C 177.918511 0.497179 181.501411 4.080078 181.501411 8.496691 L 181.501411 24.502604 L 0.502984 24.502604 L 0.502984 8.496691 Z M 0.502984 8.496691 " transform="matrix(0.566929,0,0,0.566929,0,549.92126)"/>
555
  <image width="16" height="16" transform="matrix(0.566929,0,0,0.566929,3.401575,552.188976)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHSSURBVHjapJNLbhRBDIb/6u7JBBgRBAiNxHayZ8OSNZfgDFyFA7DgAKzYRMkFcoPsWPCQEhRBEAxMdT1c5nd1T5JmRUSp3VXttj+XXS7gP4ez19NnJ3oTp/vLHRy93d/n8kunqnjx8hRNQ5pzg4Vew+vVXGjLB4t7rf19TjmiQt27k6TbIbSKWbWn6nco+tMXvdgUPV8XPf0h+uGb6JvjtWFfUZ50NRCx603Gp/MNkijatsHenRnOvvdIWfFg7xbOLjxCUqwe34WkfJlOBdjW6Ic+FYQo6LoWuzsdfOA3AQvquRvEkLD2HinGS0BTASKQAkYbHCIjRBItYoi56kIkIEX0IUNymu5A6M3cK8TEapmFQp3Nqa5HsbW9JjvIeXBWjBAFazhCrkBbiNlPayC5RhlE6lGZTTQnEiO9bM6MYEWWvwGZnqwTPPONISA3Dr7v6zoxX+9b5h9q9QeATABqOZnMW0ZvS22czIJ1DQ1bHdcFbtbUFFWuAaz7Xh9+xIw/lw8X6Pt5zVm0waP5bgVndZjfdkOBmxm0lGkKX9kkB8efeRrCehTrThqhzkW3347dPPS434TpZeJYjb29usGdem93YQtYUJbj/K/jl93GPwIMALKlc/N8m1J8AAAAAElFTkSuQmCC"/>
556
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
557
  <use xlink:href="#glyph0-14" x="15.308594" y="559.351562"/>
558
  <use xlink:href="#glyph0-12" x="19.092181" y="559.351562"/>
559
  <use xlink:href="#glyph0-10" x="20.982314" y="559.351562"/>
560
  <use xlink:href="#glyph0-15" x="24.765902" y="559.351562"/>
561
  <use xlink:href="#glyph0-3" x="28.921537" y="559.351562"/>
562
</g>
563
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 36.691569 16.634006 " transform="matrix(0.566929,0,0,0.566929,11.905512,549.92126)"/>
564
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 93.828125 554.738281 L 98.929688 554.738281 L 96.378906 559.277344 Z M 93.828125 554.738281 "/>
565
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,2.267717,565.795276)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARtJREFUeNpi+v//PwMIw8Cb47yT3p7kX7hnDisXkMsIEwerQVb8+brpp193LP7+fGDx5+tZyX89JSyqQGEWmGImmM7Xh9kyOMUNeRg4ORkZ2XQZOVh5GX0c2KYDpfhgNsAVA8H3//8+MDAzMzIyfz3FxPDnD8P3H/9BCvlh6uCKRW1/Lfz85OTTfz+/Mvz/8pnh8/f3f2Irf8wCuQCmBtlkhrfPnrcxMrP9//759d+9p7/suXL7/3Wg8Ecg/oehmJeb4RfIdX/+//sVXPB7MlDoIcjfMNNRFDMzQQSZGRk4hQUYvkAV/sHqDHiYMvz/+/YDQhFWxUBPzvv+/um/Fx//nwaFDhD/RZZnQdfNq3NPGEgJQxX/QpYDCDAA5ux50WRpjnwAAAAASUVORK5CYII="/>
566
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
567
  <use xlink:href="#glyph1-30" x="9.636719" y="570.910156"/>
568
  <use xlink:href="#glyph1-5" x="12.754829" y="570.910156"/>
569
  <use xlink:href="#glyph1-2" x="14.140317" y="570.910156"/>
570
  <use xlink:href="#glyph1-31" x="17.608606" y="570.910156"/>
571
  <use xlink:href="#glyph1-19" x="21.076895" y="570.910156"/>
572
  <use xlink:href="#glyph1-27" x="24.545183" y="570.910156"/>
573
  <use xlink:href="#glyph1-32" x="26.277805" y="570.910156"/>
574
  <use xlink:href="#glyph1-7" x="30.781404" y="570.910156"/>
575
  <use xlink:href="#glyph1-27" x="32.514026" y="570.910156"/>
576
  <use xlink:href="#glyph1-28" x="34.246647" y="570.910156"/>
577
  <use xlink:href="#glyph1-29" x="38.750246" y="570.910156"/>
578
  <use xlink:href="#glyph1-13" x="42.559578" y="570.910156"/>
579
  <use xlink:href="#glyph1-23" x="44.636288" y="570.910156"/>
580
  <use xlink:href="#glyph1-23" x="48.104577" y="570.910156"/>
581
  <use xlink:href="#glyph1-17" x="51.572865" y="570.910156"/>
582
</g>
583
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 81.629883 13.022081 " transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
584
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
585
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,2.267717,577.133858)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARdJREFUeNpi/P//PwOxgAVE2JWXwwVc7ez0333+vPzH58/BM9LS7tiWlf2GyTEh63S1tTXh5ODYWx0aqikoIXHYISND/3BXFxuGYpBCLk7OHdnOzsIizMwMlV5ewnoeHjst0tP14BpAbm7cvNmke8+eN9/+o4K3f/78T9q48Y1xWpoJUCkbWHH+smU3XgMlsIFDL1789546dTdQsShYcfKkSao1W7a8+oSm4cqbN//DZs++ClToBMRyDNCgY3HMyjLOA1r5FqoBpDB01qxrQDlvINYHYkGwYmDwgDSwAT1jAnIjyGqoiTCFQkDMDFcM0wDyjNeUKTugVuvBFILkGUGKkSMFGkz8QMwBxF+A+BNQ4V+QHECAAQCC17lBwBoXhgAAAABJRU5ErkJggg=="/>
586
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
587
  <use xlink:href="#glyph1-33" x="9.636719" y="582.296875"/>
588
  <use xlink:href="#glyph1-2" x="13.105007" y="582.296875"/>
589
  <use xlink:href="#glyph1-34" x="16.573296" y="582.296875"/>
590
  <use xlink:href="#glyph1-19" x="18.650006" y="582.296875"/>
591
  <use xlink:href="#glyph1-20" x="22.118295" y="582.296875"/>
592
  <use xlink:href="#glyph1-24" x="25.586583" y="582.296875"/>
593
  <use xlink:href="#glyph1-11" x="27.319205" y="582.296875"/>
594
  <use xlink:href="#glyph1-5" x="31.822804" y="582.296875"/>
595
  <use xlink:href="#glyph1-2" x="33.208292" y="582.296875"/>
596
  <use xlink:href="#glyph1-31" x="36.676581" y="582.296875"/>
597
  <use xlink:href="#glyph1-19" x="40.14487" y="582.296875"/>
598
  <use xlink:href="#glyph1-27" x="43.613158" y="582.296875"/>
599
  <use xlink:href="#glyph1-32" x="45.34578" y="582.296875"/>
600
  <use xlink:href="#glyph1-7" x="49.849379" y="582.296875"/>
601
  <use xlink:href="#glyph1-27" x="51.582" y="582.296875"/>
602
  <use xlink:href="#glyph1-28" x="53.314622" y="582.296875"/>
603
  <use xlink:href="#glyph1-29" x="57.818221" y="582.296875"/>
604
  <use xlink:href="#glyph1-13" x="61.627553" y="582.296875"/>
605
  <use xlink:href="#glyph1-23" x="63.704263" y="582.296875"/>
606
  <use xlink:href="#glyph1-23" x="67.172552" y="582.296875"/>
607
  <use xlink:href="#glyph1-17" x="70.64084" y="582.296875"/>
608
</g>
609
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.267795 33.106988 " transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
610
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
611
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,2.267717,588.472441)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUZJREFUeNpi+v//PwOxmIUBCBgZGRlgoGnePNU/DAyzHz9+nDS/vv4xUOg3TI6JAQm0zp+vISYjs9ctNtZeWlNzr1lgoCZQmA0mz4KsUERaepeRi4vsZyDfIDBQ4e3//1u+///vc3nDhhtAoV/MDQ0NDCwKCmCFxkCF34CiIMXvmZgYWNXV+X+ysnr9+/Vr99ubN9+DnfHz379ZOo6OYBM/APEbIH4F9BCIL21uLi+mq1sOZPKDFd+/cydm16ZN9979/cvwFqrw058/DF9evGC4tGDB4cMtLXOBwpzgIAG53Tw4WDdz1aoHHb9+/a8G4vxHj/7b1dcfAsp5A7E+EAvCFIMAm25AgF4wUEPew4f/HRobkRUKATEzsmKwBnV/fz3bmppFQLYTEOvBFYLiA6QYOVKg4coPxBxA/AWIPwHxX5AEQIABAE3UoaJ0ooBMAAAAAElFTkSuQmCC"/>
612
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
613
  <use xlink:href="#glyph1-30" x="9.636719" y="593.632812"/>
614
  <use xlink:href="#glyph1-5" x="12.754829" y="593.632812"/>
615
  <use xlink:href="#glyph1-2" x="14.140317" y="593.632812"/>
616
  <use xlink:href="#glyph1-31" x="17.608606" y="593.632812"/>
617
  <use xlink:href="#glyph1-19" x="21.076895" y="593.632812"/>
618
  <use xlink:href="#glyph1-28" x="24.545183" y="593.632812"/>
619
  <use xlink:href="#glyph1-2" x="29.048782" y="593.632812"/>
620
  <use xlink:href="#glyph1-3" x="32.517071" y="593.632812"/>
621
  <use xlink:href="#glyph1-19" x="37.711891" y="593.632812"/>
622
  <use xlink:href="#glyph1-35" x="41.18018" y="593.632812"/>
623
  <use xlink:href="#glyph1-24" x="45.33969" y="593.632812"/>
624
  <use xlink:href="#glyph1-31" x="47.072312" y="593.632812"/>
625
  <use xlink:href="#glyph1-7" x="50.5406" y="593.632812"/>
626
  <use xlink:href="#glyph1-8" x="52.273222" y="593.632812"/>
627
  <use xlink:href="#glyph1-9" x="56.432733" y="593.632812"/>
628
  <use xlink:href="#glyph1-10" x="60.592243" y="593.632812"/>
629
  <use xlink:href="#glyph1-11" x="65.095842" y="593.632812"/>
630
  <use xlink:href="#glyph1-12" x="69.59944" y="593.632812"/>
631
  <use xlink:href="#glyph1-9" x="74.103039" y="593.632812"/>
632
  <use xlink:href="#glyph1-10" x="78.262549" y="593.632812"/>
633
  <use xlink:href="#glyph1-13" x="82.766148" y="593.632812"/>
634
  <use xlink:href="#glyph1-14" x="84.842858" y="593.632812"/>
635
  <use xlink:href="#glyph1-15" x="88.311147" y="593.632812"/>
636
  <use xlink:href="#glyph1-16" x="91.779435" y="593.632812"/>
637
  <use xlink:href="#glyph1-17" x="95.247724" y="593.632812"/>
638
</g>
639
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.669108 53.102322 " transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
640
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
641
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,2.267717,599.811024)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARdJREFUeNpi/P//PwOxgAVE2JWXwwVc7ez0333+vPzH58/BM9LS7tiWlf2GyTEh63S1tTXh5ODYWx0aqikoIXHYISND/3BXFxuGYpBCLk7OHdnOzsIizMwMlV5ewnoeHjst0tP14BpAbm7cvNmke8+eN9/+o4K3f/78T9q48Y1xWpoJUCkbWHH+smU3XgMlsIFDL1789546dTdQsShYcfKkSao1W7a8+oSm4cqbN//DZs++ClToBMRyDNCgY3HMyjLOA1r5FqoBpDB01qxrQDlvINYHYkGwYmDwgDSwAT1jAnIjyGqoiTCFQkDMDFcM0wDyjNeUKTugVuvBFILkGUGKkSMFGkz8QMwBxF+A+BNQ4V+QHECAAQCC17lBwBoXhgAAAABJRU5ErkJggg=="/>
642
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
643
  <use xlink:href="#glyph1-34" x="9.636719" y="604.972656"/>
644
  <use xlink:href="#glyph1-2" x="11.713429" y="604.972656"/>
645
  <use xlink:href="#glyph1-20" x="15.181718" y="604.972656"/>
646
  <use xlink:href="#glyph1-36" x="18.650006" y="604.972656"/>
647
  <use xlink:href="#glyph1-7" x="21.768116" y="604.972656"/>
648
  <use xlink:href="#glyph1-8" x="23.500738" y="604.972656"/>
649
  <use xlink:href="#glyph1-9" x="27.660249" y="604.972656"/>
650
  <use xlink:href="#glyph1-10" x="31.819759" y="604.972656"/>
651
  <use xlink:href="#glyph1-11" x="36.323358" y="604.972656"/>
652
  <use xlink:href="#glyph1-12" x="40.826956" y="604.972656"/>
653
  <use xlink:href="#glyph1-9" x="45.330555" y="604.972656"/>
654
  <use xlink:href="#glyph1-10" x="49.490065" y="604.972656"/>
655
  <use xlink:href="#glyph1-13" x="53.993664" y="604.972656"/>
656
  <use xlink:href="#glyph1-15" x="56.070374" y="604.972656"/>
657
  <use xlink:href="#glyph1-16" x="59.538663" y="604.972656"/>
658
  <use xlink:href="#glyph1-17" x="63.006951" y="604.972656"/>
659
</g>
660
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 101.797472 73.104546 " transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
661
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
662
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,2.267717,611.149606)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUZJREFUeNpi+v//PwOxmIUBCBgZGRlgoGnePNU/DAyzHz9+nDS/vv4xUOg3TI6JAQm0zp+vISYjs9ctNtZeWlNzr1lgoCZQmA0mz4KsUERaepeRi4vsZyDfIDBQ4e3//1u+///vc3nDhhtAoV/MDQ0NDCwKCmCFxkCF34CiIMXvmZgYWNXV+X+ysnr9+/Vr99ubN9+DnfHz379ZOo6OYBM/APEbIH4F9BCIL21uLi+mq1sOZPKDFd+/cydm16ZN9979/cvwFqrw058/DF9evGC4tGDB4cMtLXOBwpzgIAG53Tw4WDdz1aoHHb9+/a8G4vxHj/7b1dcfAsp5A7E+EAvCFIMAm25AgF4wUEPew4f/HRobkRUKATEzsmKwBnV/fz3bmppFQLYTEOvBFYLiA6QYOVKg4coPxBxA/AWIPwHxX5AEQIABAE3UoaJ0ooBMAAAAAElFTkSuQmCC"/>
663
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
664
  <use xlink:href="#glyph1-4" x="9.636719" y="616.261719"/>
665
  <use xlink:href="#glyph1-22" x="11.022207" y="616.261719"/>
666
  <use xlink:href="#glyph1-12" x="14.140317" y="616.261719"/>
667
  <use xlink:href="#glyph1-6" x="18.643916" y="616.261719"/>
668
  <use xlink:href="#glyph1-37" x="21.762026" y="616.261719"/>
669
  <use xlink:href="#glyph1-34" x="25.230315" y="616.261719"/>
670
  <use xlink:href="#glyph1-4" x="27.307025" y="616.261719"/>
671
  <use xlink:href="#glyph1-31" x="28.692514" y="616.261719"/>
672
  <use xlink:href="#glyph1-7" x="32.160802" y="616.261719"/>
673
  <use xlink:href="#glyph1-27" x="33.893424" y="616.261719"/>
674
  <use xlink:href="#glyph1-28" x="35.626046" y="616.261719"/>
675
  <use xlink:href="#glyph1-29" x="40.129644" y="616.261719"/>
676
  <use xlink:href="#glyph1-13" x="43.938976" y="616.261719"/>
677
  <use xlink:href="#glyph1-23" x="46.015687" y="616.261719"/>
678
  <use xlink:href="#glyph1-17" x="49.483975" y="616.261719"/>
679
</g>
680
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.950521 93.017198 " transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
681
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
682
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,2.267717,622.488189)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARdJREFUeNpi/P//PwOxgAVE2JWXwwVc7ez0333+vPzH58/BM9LS7tiWlf2GyTEh63S1tTXh5ODYWx0aqikoIXHYISND/3BXFxuGYpBCLk7OHdnOzsIizMwMlV5ewnoeHjst0tP14BpAbm7cvNmke8+eN9/+o4K3f/78T9q48Y1xWpoJUCkbWHH+smU3XgMlsIFDL1789546dTdQsShYcfKkSao1W7a8+oSm4cqbN//DZs++ClToBMRyDNCgY3HMyjLOA1r5FqoBpDB01qxrQDlvINYHYkGwYmDwgDSwAT1jAnIjyGqoiTCFQkDMDFcM0wDyjNeUKTugVuvBFILkGUGKkSMFGkz8QMwBxF+A+BNQ4V+QHECAAQCC17lBwBoXhgAAAABJRU5ErkJggg=="/>
683
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
684
  <use xlink:href="#glyph1-1" x="9.636719" y="627.648438"/>
685
  <use xlink:href="#glyph1-2" x="11.369341" y="627.648438"/>
686
  <use xlink:href="#glyph1-3" x="14.837629" y="627.648438"/>
687
  <use xlink:href="#glyph1-4" x="20.03245" y="627.648438"/>
688
  <use xlink:href="#glyph1-5" x="21.417938" y="627.648438"/>
689
  <use xlink:href="#glyph1-6" x="22.803426" y="627.648438"/>
690
  <use xlink:href="#glyph1-7" x="25.921537" y="627.648438"/>
691
  <use xlink:href="#glyph1-8" x="27.654158" y="627.648438"/>
692
  <use xlink:href="#glyph1-9" x="31.813669" y="627.648438"/>
693
  <use xlink:href="#glyph1-10" x="35.973179" y="627.648438"/>
694
  <use xlink:href="#glyph1-11" x="40.476778" y="627.648438"/>
695
  <use xlink:href="#glyph1-12" x="44.980376" y="627.648438"/>
696
  <use xlink:href="#glyph1-9" x="49.483975" y="627.648438"/>
697
  <use xlink:href="#glyph1-10" x="53.643485" y="627.648438"/>
698
  <use xlink:href="#glyph1-13" x="58.147084" y="627.648438"/>
699
  <use xlink:href="#glyph1-23" x="60.223794" y="627.648438"/>
700
  <use xlink:href="#glyph1-16" x="63.692083" y="627.648438"/>
701
  <use xlink:href="#glyph1-16" x="67.160372" y="627.648438"/>
702
  <use xlink:href="#glyph1-17" x="70.62866" y="627.648438"/>
703
</g>
704
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.247125 113.102105 " transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
705
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
706
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,2.267717,633.826772)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARdJREFUeNpi/P//PwOxgAVE2JWXwwVc7ez0333+vPzH58/BM9LS7tiWlf2GyTEh63S1tTXh5ODYWx0aqikoIXHYISND/3BXFxuGYpBCLk7OHdnOzsIizMwMlV5ewnoeHjst0tP14BpAbm7cvNmke8+eN9/+o4K3f/78T9q48Y1xWpoJUCkbWHH+smU3XgMlsIFDL1789546dTdQsShYcfKkSao1W7a8+oSm4cqbN//DZs++ClToBMRyDNCgY3HMyjLOA1r5FqoBpDB01qxrQDlvINYHYkGwYmDwgDSwAT1jAnIjyGqoiTCFQkDMDFcM0wDyjNeUKTugVuvBFILkGUGKkSMFGkz8QMwBxF+A+BNQ4V+QHECAAQCC17lBwBoXhgAAAABJRU5ErkJggg=="/>
707
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
708
  <use xlink:href="#glyph1-5" x="9.636719" y="638.941406"/>
709
  <use xlink:href="#glyph1-19" x="11.022207" y="638.941406"/>
710
  <use xlink:href="#glyph1-1" x="14.490496" y="638.941406"/>
711
  <use xlink:href="#glyph1-24" x="16.223118" y="638.941406"/>
712
  <use xlink:href="#glyph1-27" x="17.955739" y="638.941406"/>
713
  <use xlink:href="#glyph1-20" x="19.688361" y="638.941406"/>
714
  <use xlink:href="#glyph1-31" x="23.15665" y="638.941406"/>
715
  <use xlink:href="#glyph1-19" x="26.624938" y="638.941406"/>
716
  <use xlink:href="#glyph1-38" x="30.093227" y="638.941406"/>
717
  <use xlink:href="#glyph1-7" x="33.211337" y="638.941406"/>
718
  <use xlink:href="#glyph1-27" x="34.943959" y="638.941406"/>
719
  <use xlink:href="#glyph1-28" x="36.676581" y="638.941406"/>
720
  <use xlink:href="#glyph1-29" x="41.18018" y="638.941406"/>
721
  <use xlink:href="#glyph1-13" x="44.989512" y="638.941406"/>
722
  <use xlink:href="#glyph1-23" x="47.066222" y="638.941406"/>
723
  <use xlink:href="#glyph1-23" x="50.53451" y="638.941406"/>
724
  <use xlink:href="#glyph1-17" x="54.002799" y="638.941406"/>
725
</g>
726
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.915582 133.021647 " transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
727
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
728
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,2.267717,645.165354)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARdJREFUeNpi/P//PwOxgAVE2JWXwwVc7ez0333+vPzH58/BM9LS7tiWlf2GyTEh63S1tTXh5ODYWx0aqikoIXHYISND/3BXFxuGYpBCLk7OHdnOzsIizMwMlV5ewnoeHjst0tP14BpAbm7cvNmke8+eN9/+o4K3f/78T9q48Y1xWpoJUCkbWHH+smU3XgMlsIFDL1789546dTdQsShYcfKkSao1W7a8+oSm4cqbN//DZs++ClToBMRyDNCgY3HMyjLOA1r5FqoBpDB01qxrQDlvINYHYkGwYmDwgDSwAT1jAnIjyGqoiTCFQkDMDFcM0wDyjNeUKTugVuvBFILkGUGKkSMFGkz8QMwBxF+A+BNQ4V+QHECAAQCC17lBwBoXhgAAAABJRU5ErkJggg=="/>
729
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
730
  <use xlink:href="#glyph1-34" x="9.636719" y="650.277344"/>
731
  <use xlink:href="#glyph1-4" x="11.713429" y="650.277344"/>
732
  <use xlink:href="#glyph1-18" x="13.098917" y="650.277344"/>
733
  <use xlink:href="#glyph1-39" x="16.567206" y="650.277344"/>
734
  <use xlink:href="#glyph1-24" x="20.035495" y="650.277344"/>
735
  <use xlink:href="#glyph1-27" x="21.768116" y="650.277344"/>
736
  <use xlink:href="#glyph1-20" x="23.500738" y="650.277344"/>
737
  <use xlink:href="#glyph1-31" x="26.969027" y="650.277344"/>
738
  <use xlink:href="#glyph1-19" x="30.437315" y="650.277344"/>
739
  <use xlink:href="#glyph1-38" x="33.905604" y="650.277344"/>
740
  <use xlink:href="#glyph1-7" x="37.023714" y="650.277344"/>
741
  <use xlink:href="#glyph1-27" x="38.756336" y="650.277344"/>
742
  <use xlink:href="#glyph1-28" x="40.488958" y="650.277344"/>
743
  <use xlink:href="#glyph1-29" x="44.992557" y="650.277344"/>
744
  <use xlink:href="#glyph1-13" x="48.801889" y="650.277344"/>
745
  <use xlink:href="#glyph1-23" x="50.878599" y="650.277344"/>
746
  <use xlink:href="#glyph1-23" x="54.346887" y="650.277344"/>
747
  <use xlink:href="#glyph1-17" x="57.815176" y="650.277344"/>
748
</g>
749
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 92.640408 153.016981 " transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
750
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
751
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,2.267717,656.503937)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARdJREFUeNpi/P//PwOxgAVE2JWXwwVc7ez0333+vPzH58/BM9LS7tiWlf2GyTEh63S1tTXh5ODYWx0aqikoIXHYISND/3BXFxuGYpBCLk7OHdnOzsIizMwMlV5ewnoeHjst0tP14BpAbm7cvNmke8+eN9/+o4K3f/78T9q48Y1xWpoJUCkbWHH+smU3XgMlsIFDL1789546dTdQsShYcfKkSao1W7a8+oSm4cqbN//DZs++ClToBMRyDNCgY3HMyjLOA1r5FqoBpDB01qxrQDlvINYHYkGwYmDwgDSwAT1jAnIjyGqoiTCFQkDMDFcM0wDyjNeUKTugVuvBFILkGUGKkSMFGkz8QMwBxF+A+BNQ4V+QHECAAQCC17lBwBoXhgAAAABJRU5ErkJggg=="/>
752
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
753
  <use xlink:href="#glyph1-22" x="9.636719" y="661.664063"/>
754
  <use xlink:href="#glyph1-25" x="12.754829" y="661.664063"/>
755
  <use xlink:href="#glyph1-21" x="16.223118" y="661.664063"/>
756
  <use xlink:href="#glyph1-34" x="19.691406" y="661.664063"/>
757
  <use xlink:href="#glyph1-30" x="21.768116" y="661.664063"/>
758
  <use xlink:href="#glyph1-19" x="24.886227" y="661.664063"/>
759
  <use xlink:href="#glyph1-7" x="28.354515" y="661.664063"/>
760
  <use xlink:href="#glyph1-8" x="30.087137" y="661.664063"/>
761
  <use xlink:href="#glyph1-9" x="34.246647" y="661.664063"/>
762
  <use xlink:href="#glyph1-10" x="38.406158" y="661.664063"/>
763
  <use xlink:href="#glyph1-11" x="42.909756" y="661.664063"/>
764
  <use xlink:href="#glyph1-12" x="47.413355" y="661.664063"/>
765
  <use xlink:href="#glyph1-9" x="51.916954" y="661.664063"/>
766
  <use xlink:href="#glyph1-10" x="56.076464" y="661.664063"/>
767
  <use xlink:href="#glyph1-13" x="60.580063" y="661.664063"/>
768
  <use xlink:href="#glyph1-14" x="62.656773" y="661.664063"/>
769
  <use xlink:href="#glyph1-15" x="66.125062" y="661.664063"/>
770
  <use xlink:href="#glyph1-17" x="69.59335" y="661.664063"/>
771
</g>
772
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.421224 173.101888 " transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
773
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
774
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,2.267717,667.84252)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARdJREFUeNpi/P//PwOxgAVE2JWXwwVc7ez0333+vPzH58/BM9LS7tiWlf2GyTEh63S1tTXh5ODYWx0aqikoIXHYISND/3BXFxuGYpBCLk7OHdnOzsIizMwMlV5ewnoeHjst0tP14BpAbm7cvNmke8+eN9/+o4K3f/78T9q48Y1xWpoJUCkbWHH+smU3XgMlsIFDL1789546dTdQsShYcfKkSao1W7a8+oSm4cqbN//DZs++ClToBMRyDNCgY3HMyjLOA1r5FqoBpDB01qxrQDlvINYHYkGwYmDwgDSwAT1jAnIjyGqoiTCFQkDMDFcM0wDyjNeUKTugVuvBFILkGUGKkSMFGkz8QMwBxF+A+BNQ4V+QHECAAQCC17lBwBoXhgAAAABJRU5ErkJggg=="/>
775
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
776
  <use xlink:href="#glyph1-3" x="9.636719" y="673.003906"/>
777
  <use xlink:href="#glyph1-2" x="14.831539" y="673.003906"/>
778
  <use xlink:href="#glyph1-40" x="18.299828" y="673.003906"/>
779
  <use xlink:href="#glyph1-25" x="19.685316" y="673.003906"/>
780
  <use xlink:href="#glyph1-34" x="23.153605" y="673.003906"/>
781
  <use xlink:href="#glyph1-41" x="25.230315" y="673.003906"/>
782
  <use xlink:href="#glyph1-5" x="29.389825" y="673.003906"/>
783
  <use xlink:href="#glyph1-2" x="30.775314" y="673.003906"/>
784
  <use xlink:href="#glyph1-20" x="34.243602" y="673.003906"/>
785
  <use xlink:href="#glyph1-24" x="37.711891" y="673.003906"/>
786
  <use xlink:href="#glyph1-42" x="39.444513" y="673.003906"/>
787
  <use xlink:href="#glyph1-34" x="44.295245" y="673.003906"/>
788
  <use xlink:href="#glyph1-25" x="46.371955" y="673.003906"/>
789
  <use xlink:href="#glyph1-21" x="49.840244" y="673.003906"/>
790
  <use xlink:href="#glyph1-33" x="53.308532" y="673.003906"/>
791
  <use xlink:href="#glyph1-7" x="56.776821" y="673.003906"/>
792
  <use xlink:href="#glyph1-8" x="58.509443" y="673.003906"/>
793
  <use xlink:href="#glyph1-9" x="62.668953" y="673.003906"/>
794
  <use xlink:href="#glyph1-10" x="66.828463" y="673.003906"/>
795
  <use xlink:href="#glyph1-11" x="71.332062" y="673.003906"/>
796
  <use xlink:href="#glyph1-12" x="75.835661" y="673.003906"/>
797
  <use xlink:href="#glyph1-9" x="80.339259" y="673.003906"/>
798
  <use xlink:href="#glyph1-10" x="84.49877" y="673.003906"/>
799
  <use xlink:href="#glyph1-13" x="89.002368" y="673.003906"/>
800
  <use xlink:href="#glyph1-43" x="91.079078" y="673.003906"/>
801
  <use xlink:href="#glyph1-15" x="94.547367" y="673.003906"/>
802
  <use xlink:href="#glyph1-17" x="98.015656" y="673.003906"/>
803
</g>
804
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.554253 193.104112 " transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
805
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="" transform="matrix(0.566929,0,0,0.566929,7.370079,563.527559)"/>
806
  <image width="11" height="11" transform="matrix(0.566929,0,0,0.566929,2.267717,679.181102)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARdJREFUeNpi/P//PwOxgAVE2JWXwwVc7ez0333+vPzH58/BM9LS7tiWlf2GyTEh63S1tTXh5ODYWx0aqikoIXHYISND/3BXFxuGYpBCLk7OHdnOzsIizMwMlV5ewnoeHjst0tP14BpAbm7cvNmke8+eN9/+o4K3f/78T9q48Y1xWpoJUCkbWHH+smU3XgMlsIFDL1789546dTdQsShYcfKkSao1W7a8+oSm4cqbN//DZs++ClToBMRyDNCgY3HMyjLOA1r5FqoBpDB01qxrQDlvINYHYkGwYmDwgDSwAT1jAnIjyGqoiTCFQkDMDFcM0wDyjNeUKTugVuvBFILkGUGKkSMFGkz8QMwBxF+A+BNQ4V+QHECAAQCC17lBwBoXhgAAAABJRU5ErkJggg=="/>
807
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
808
  <use xlink:href="#glyph1-19" x="9.636719" y="684.34375"/>
809
  <use xlink:href="#glyph1-3" x="13.105007" y="684.34375"/>
810
  <use xlink:href="#glyph1-37" x="18.299828" y="684.34375"/>
811
  <use xlink:href="#glyph1-34" x="21.768116" y="684.34375"/>
812
  <use xlink:href="#glyph1-6" x="23.844827" y="684.34375"/>
813
  <use xlink:href="#glyph1-25" x="26.962937" y="684.34375"/>
814
  <use xlink:href="#glyph1-33" x="30.431225" y="684.34375"/>
815
  <use xlink:href="#glyph1-39" x="33.899514" y="684.34375"/>
816
  <use xlink:href="#glyph1-6" x="37.367803" y="684.34375"/>
817
  <use xlink:href="#glyph1-24" x="40.485913" y="684.34375"/>
818
  <use xlink:href="#glyph1-19" x="42.218535" y="684.34375"/>
819
  <use xlink:href="#glyph1-22" x="45.686823" y="684.34375"/>
820
  <use xlink:href="#glyph1-7" x="48.804934" y="684.34375"/>
821
  <use xlink:href="#glyph1-8" x="50.537555" y="684.34375"/>
822
  <use xlink:href="#glyph1-9" x="54.697066" y="684.34375"/>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff