Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
<use xlink:href="#glyph0-1" x="319.167969" y="571.826172"/>
<use xlink:href="#glyph0-30" x="325.167969" y="571.826172"/>
<use xlink:href="#glyph0-10" x="330.167969" y="571.826172"/>
<use xlink:href="#glyph0-31" x="333.167969" y="571.826172"/>
<use xlink:href="#glyph0-6" x="338.167969" y="571.826172"/>
<use xlink:href="#glyph0-5" x="340.167969" y="571.826172"/>
<use xlink:href="#glyph0-3" x="345.167969" y="571.826172"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(39.215686%,35.294118%,62.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 72.148438 L 332.5 72.148438 L 332.5 87.890625 L 319.167969 87.890625 Z M 319.167969 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(56.078431%,45.882353%,75.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 72.148438 L 345.832031 72.148438 L 345.832031 87.890625 L 332.5 87.890625 Z M 332.5 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(71.372549%,58.823529%,83.921569%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 72.148438 L 359.164062 72.148438 L 359.164062 87.890625 L 345.832031 87.890625 Z M 345.832031 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(85.882353%,72.54902%,92.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 72.148438 L 372.5 72.148438 L 372.5 87.890625 L 359.167969 87.890625 Z M 359.167969 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,88.627451%,98.431373%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 72.148438 L 385.832031 72.148438 L 385.832031 87.890625 L 372.5 87.890625 Z M 372.5 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(34.509804%,23.529412%,53.333333%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 103.628906 L 332.5 103.628906 L 332.5 119.371094 L 319.167969 119.371094 Z M 319.167969 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(61.568627%,31.372549%,65.098039%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 103.628906 L 345.832031 103.628906 L 345.832031 119.371094 L 332.5 119.371094 Z M 332.5 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(80%,47.058824%,68.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 103.628906 L 359.164062 103.628906 L 359.164062 119.371094 L 345.832031 119.371094 Z M 345.832031 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(92.941176%,65.490196%,72.941176%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 103.628906 L 372.5 103.628906 L 372.5 119.371094 L 359.167969 119.371094 Z M 359.167969 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(97.254902%,86.27451%,85.098039%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 103.628906 L 385.832031 103.628906 L 385.832031 119.371094 L 372.5 119.371094 Z M 372.5 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(43.921569%,30.196078%,61.960784%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 135.109375 L 332.5 135.109375 L 332.5 150.851562 L 319.167969 150.851562 Z M 319.167969 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(73.72549%,35.294118%,66.27451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 135.109375 L 345.832031 135.109375 L 345.832031 150.851562 L 332.5 150.851562 Z M 332.5 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(92.941176%,48.627451%,59.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 135.109375 L 359.164062 135.109375 L 359.164062 150.851562 L 345.832031 150.851562 Z M 345.832031 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,69.803922%,50.980392%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 135.109375 L 372.5 135.109375 L 372.5 150.851562 L 359.167969 150.851562 Z M 359.167969 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(95.294118%,90.588235%,60.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 135.109375 L 385.832031 135.109375 L 385.832031 150.851562 L 372.5 150.851562 Z M 372.5 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(42.745098%,10.980392%,40.784314%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 166.59375 L 332.5 166.59375 L 332.5 182.335938 L 319.167969 182.335938 Z M 319.167969 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(61.960784%,26.27451%,52.941176%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 166.59375 L 345.832031 166.59375 L 345.832031 182.335938 L 332.5 182.335938 Z M 332.5 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(79.607843%,42.352941%,63.529412%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 166.59375 L 359.164062 166.59375 L 359.164062 182.335938 L 345.832031 182.335938 Z M 345.832031 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(91.372549%,60.784314%,72.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 166.59375 L 372.5 166.59375 L 372.5 182.335938 L 359.167969 182.335938 Z M 359.167969 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(95.294118%,79.215686%,82.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 166.59375 L 385.832031 166.59375 L 385.832031 182.335938 L 372.5 182.335938 Z M 372.5 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(49.019608%,11.372549%,40.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 198.074219 L 332.5 198.074219 L 332.5 213.816406 L 319.167969 213.816406 Z M 319.167969 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(76.078431%,16.862745%,47.45098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 198.074219 L 345.832031 198.074219 L 345.832031 213.816406 L 332.5 213.816406 Z M 332.5 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,35.294118%,42.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 198.074219 L 359.164062 198.074219 L 359.164062 213.816406 L 345.832031 213.816406 Z M 345.832031 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,62.745098%,46.27451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 198.074219 L 372.5 198.074219 L 372.5 213.816406 L 359.167969 213.816406 Z M 359.167969 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,85.098039%,62.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 198.074219 L 385.832031 198.074219 L 385.832031 213.816406 L 372.5 213.816406 Z M 372.5 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(29.411765%,11.372549%,56.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 229.554688 L 332.5 229.554688 L 332.5 245.296875 L 319.167969 245.296875 Z M 319.167969 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(65.882353%,7.45098%,61.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 229.554688 L 345.832031 229.554688 L 345.832031 245.296875 L 332.5 245.296875 Z M 332.5 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(89.803922%,27.843137%,52.941176%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 229.554688 L 359.164062 229.554688 L 359.164062 245.296875 L 345.832031 245.296875 Z M 345.832031 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(95.294118%,57.647059%,37.254902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 229.554688 L 372.5 229.554688 L 372.5 245.296875 L 359.167969 245.296875 Z M 359.167969 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(90.588235%,82.745098%,60.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 229.554688 L 385.832031 229.554688 L 385.832031 245.296875 L 372.5 245.296875 Z M 372.5 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(32.941176%,10.980392%,22.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 261.035156 L 332.5 261.035156 L 332.5 276.777344 L 319.167969 276.777344 Z M 319.167969 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(55.294118%,27.45098%,32.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 261.035156 L 345.832031 261.035156 L 345.832031 276.777344 L 332.5 276.777344 Z M 332.5 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(74.117647%,47.058824%,39.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 261.035156 L 359.164062 261.035156 L 359.164062 276.777344 L 345.832031 276.777344 Z M 345.832031 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(83.921569%,69.411765%,56.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 261.035156 L 372.5 261.035156 L 372.5 276.777344 L 359.167969 276.777344 Z M 359.167969 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(92.156863%,88.627451%,79.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 261.035156 L 385.832031 261.035156 L 385.832031 276.777344 L 372.5 276.777344 Z M 372.5 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(49.019608%,0%,14.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 292.519531 L 332.5 292.519531 L 332.5 308.261719 L 319.167969 308.261719 Z M 319.167969 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(85.490196%,20.784314%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 292.519531 L 345.832031 292.519531 L 345.832031 308.261719 L 332.5 308.261719 Z M 332.5 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(95.294118%,57.647059%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 292.519531 L 359.164062 292.519531 L 359.164062 308.261719 L 345.832031 308.261719 Z M 345.832031 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,83.921569%,49.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 292.519531 L 372.5 292.519531 L 372.5 308.261719 L 359.167969 308.261719 Z M 359.167969 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,78.431373%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 292.519531 L 385.832031 292.519531 L 385.832031 308.261719 L 372.5 308.261719 Z M 372.5 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(40.784314%,15.294118%,7.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 324 L 332.5 324 L 332.5 339.742188 L 319.167969 339.742188 Z M 319.167969 324 "/>
<path style="fill-rule:nonzero;fill:rgb(78.039216%,36.078431%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 324 L 345.832031 324 L 345.832031 339.742188 L 332.5 339.742188 Z M 332.5 324 "/>
<path style="fill-rule:nonzero;fill:rgb(94.901961%,64.313725%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 324 L 359.164062 324 L 359.164062 339.742188 L 345.832031 339.742188 Z M 345.832031 324 "/>
<path style="fill-rule:nonzero;fill:rgb(98.039216%,87.843137%,58.039216%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 324 L 372.5 324 L 372.5 339.742188 L 359.167969 339.742188 Z M 359.167969 324 "/>
<path style="fill-rule:nonzero;fill:rgb(99.607843%,99.607843%,89.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 324 L 385.832031 324 L 385.832031 339.742188 L 372.5 339.742188 Z M 372.5 324 "/>
<path style="fill-rule:nonzero;fill:rgb(53.333333%,0%,17.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 355.480469 L 332.5 355.480469 L 332.5 371.222656 L 319.167969 371.222656 Z M 319.167969 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(86.666667%,23.137255%,14.117647%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 355.480469 L 345.832031 355.480469 L 345.832031 371.222656 L 332.5 371.222656 Z M 332.5 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(99.607843%,58.039216%,36.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 355.480469 L 359.164062 355.480469 L 359.164062 371.222656 L 345.832031 371.222656 Z M 345.832031 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,82.745098%,65.490196%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 355.480469 L 372.5 355.480469 L 372.5 371.222656 L 359.167969 371.222656 Z M 359.167969 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(99.215686%,96.078431%,92.156863%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 355.480469 L 385.832031 355.480469 L 385.832031 371.222656 L 372.5 371.222656 Z M 372.5 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(50.196078%,16.470588%,2.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 386.964844 L 332.5 386.964844 L 332.5 402.707031 L 319.167969 402.707031 Z M 319.167969 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(82.745098%,31.372549%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 386.964844 L 345.832031 386.964844 L 345.832031 402.707031 L 332.5 402.707031 Z M 332.5 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(96.862745%,57.254902%,11.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 386.964844 L 359.164062 386.964844 L 359.164062 402.707031 L 345.832031 402.707031 Z M 345.832031 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,80.392157%,63.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 386.964844 L 372.5 386.964844 L 372.5 402.707031 L 359.167969 402.707031 Z M 359.167969 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(99.607843%,96.078431%,92.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 386.964844 L 385.832031 386.964844 L 385.832031 402.707031 L 372.5 402.707031 Z M 372.5 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,27.058824%,20%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 418.445312 L 332.5 418.445312 L 332.5 434.1875 L 319.167969 434.1875 Z M 319.167969 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(15.294118%,55.686275%,34.117647%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 418.445312 L 345.832031 418.445312 L 345.832031 434.1875 L 332.5 434.1875 Z M 332.5 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(52.156863%,78.431373%,46.27451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 418.445312 L 359.164062 418.445312 L 359.164062 434.1875 L 345.832031 434.1875 Z M 345.832031 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(84.705882%,92.941176%,71.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 418.445312 L 372.5 418.445312 L 372.5 434.1875 L 359.167969 434.1875 Z M 359.167969 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(99.607843%,99.607843%,89.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 418.445312 L 385.832031 418.445312 L 385.832031 434.1875 L 372.5 434.1875 Z M 372.5 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(14.901961%,9.411765%,37.254902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 449.925781 L 332.5 449.925781 L 332.5 465.667969 L 319.167969 465.667969 Z M 319.167969 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,49.411765%,70.196078%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 449.925781 L 345.832031 449.925781 L 345.832031 465.667969 L 332.5 465.667969 Z M 332.5 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(9.411765%,74.117647%,69.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 449.925781 L 359.164062 449.925781 L 359.164062 465.667969 L 345.832031 465.667969 Z M 345.832031 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(73.72549%,91.372549%,77.254902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 449.925781 L 372.5 449.925781 L 372.5 465.667969 L 359.167969 465.667969 Z M 359.167969 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(98.823529%,100%,86.666667%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 449.925781 L 385.832031 449.925781 L 385.832031 465.667969 L 372.5 465.667969 Z M 372.5 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(42.745098%,0%,14.901961%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 481.40625 L 332.5 481.40625 L 332.5 497.148438 L 319.167969 497.148438 Z M 319.167969 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(80%,10.196078%,21.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 481.40625 L 345.832031 481.40625 L 345.832031 497.148438 L 332.5 497.148438 Z M 332.5 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,45.882353%,37.254902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 481.40625 L 359.164062 481.40625 L 359.164062 497.148438 L 345.832031 497.148438 Z M 345.832031 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,75.686275%,67.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 481.40625 L 372.5 481.40625 L 372.5 497.148438 L 359.167969 497.148438 Z M 359.167969 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(98.823529%,96.078431%,94.901961%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 481.40625 L 385.832031 481.40625 L 385.832031 497.148438 L 372.5 497.148438 Z M 372.5 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(28.627451%,0%,38.431373%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 512.890625 L 332.5 512.890625 L 332.5 528.632812 L 319.167969 528.632812 Z M 319.167969 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(66.666667%,10.980392%,59.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 512.890625 L 345.832031 512.890625 L 345.832031 528.632812 L 332.5 528.632812 Z M 332.5 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(92.941176%,43.921569%,66.27451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 512.890625 L 359.164062 512.890625 L 359.164062 528.632812 L 345.832031 528.632812 Z M 345.832031 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,75.294118%,75.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 512.890625 L 372.5 512.890625 L 372.5 528.632812 L 359.167969 528.632812 Z M 359.167969 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(98.823529%,96.078431%,94.901961%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 512.890625 L 385.832031 512.890625 L 385.832031 528.632812 L 372.5 528.632812 Z M 372.5 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(38.039216%,7.45098%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 544.371094 L 332.5 544.371094 L 332.5 560.113281 L 319.167969 560.113281 Z M 319.167969 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(83.529412%,0%,41.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 544.371094 L 345.832031 544.371094 L 345.832031 560.113281 L 332.5 560.113281 Z M 332.5 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(85.882353%,41.568627%,75.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 544.371094 L 359.164062 544.371094 L 359.164062 560.113281 L 345.832031 560.113281 Z M 345.832031 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(84.313725%,74.901961%,89.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 544.371094 L 372.5 544.371094 L 372.5 560.113281 L 359.167969 560.113281 Z M 359.167969 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,96.470588%,98.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 544.371094 L 385.832031 544.371094 L 385.832031 560.113281 L 372.5 560.113281 Z M 372.5 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(23.921569%,9.019608%,47.058824%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.167969 575.851562 L 332.5 575.851562 L 332.5 591.59375 L 319.167969 591.59375 Z M 319.167969 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(44.313725%,36.470588%,66.666667%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 575.851562 L 345.832031 575.851562 L 345.832031 591.59375 L 332.5 591.59375 Z M 332.5 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098039%,61.568627%,80%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.832031 575.851562 L 359.164062 575.851562 L 359.164062 591.59375 L 345.832031 591.59375 Z M 345.832031 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(84.705882%,83.137255%,92.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.167969 575.851562 L 372.5 575.851562 L 372.5 591.59375 L 359.167969 591.59375 Z M 359.167969 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(98.823529%,98.431373%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.5 575.851562 L 385.832031 575.851562 L 385.832031 591.59375 L 372.5 591.59375 Z M 372.5 575.851562 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="419.882812" y="68.123047"/>
<use xlink:href="#glyph0-30" x="425.882812" y="68.123047"/>
<use xlink:href="#glyph0-29" x="430.882812" y="68.123047"/>
<use xlink:href="#glyph0-30" x="436.882812" y="68.123047"/>
<use xlink:href="#glyph0-25" x="441.882812" y="68.123047"/>
<use xlink:href="#glyph0-21" x="448.882812" y="68.123047"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="419.882812" y="99.603516"/>
<use xlink:href="#glyph0-30" x="425.882812" y="99.603516"/>
<use xlink:href="#glyph0-29" x="430.882812" y="99.603516"/>
<use xlink:href="#glyph0-30" x="436.882812" y="99.603516"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="419.882812" y="131.087891"/>
<use xlink:href="#glyph0-10" x="426.882812" y="131.087891"/>
<use xlink:href="#glyph0-5" x="429.882812" y="131.087891"/>
<use xlink:href="#glyph0-5" x="434.882812" y="131.087891"/>
<use xlink:href="#glyph0-21" x="439.882812" y="131.087891"/>
<use xlink:href="#glyph0-3" x="444.882812" y="131.087891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="419.882812" y="162.568359"/>
<use xlink:href="#glyph0-30" x="425.882812" y="162.568359"/>
<use xlink:href="#glyph0-25" x="430.882812" y="162.568359"/>
<use xlink:href="#glyph0-21" x="437.882812" y="162.568359"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="419.882812" y="194.048828"/>
<use xlink:href="#glyph0-21" x="426.882812" y="194.048828"/>
<use xlink:href="#glyph0-29" x="431.882812" y="194.048828"/>
<use xlink:href="#glyph0-30" x="437.882812" y="194.048828"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="419.882812" y="225.529297"/>
<use xlink:href="#glyph0-30" x="425.882812" y="225.529297"/>
<use xlink:href="#glyph0-1" x="430.882812" y="225.529297"/>
<use xlink:href="#glyph0-30" x="436.882812" y="225.529297"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="419.882812" y="257.013672"/>
<use xlink:href="#glyph0-6" x="425.882812" y="257.013672"/>
<use xlink:href="#glyph0-30" x="427.882812" y="257.013672"/>
<use xlink:href="#glyph0-5" x="432.882812" y="257.013672"/>
<use xlink:href="#glyph0-3" x="437.882812" y="257.013672"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="419.882812" y="288.494141"/>
<use xlink:href="#glyph0-2" x="424.882812" y="288.494141"/>
<use xlink:href="#glyph0-44" x="429.882812" y="288.494141"/>
<use xlink:href="#glyph0-18" x="431.882812" y="288.494141"/>
<use xlink:href="#glyph0-6" x="436.882812" y="288.494141"/>
<use xlink:href="#glyph0-6" x="438.882812" y="288.494141"/>
<use xlink:href="#glyph0-2" x="440.882812" y="288.494141"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="419.882812" y="319.974609"/>
<use xlink:href="#glyph0-30" x="423.882812" y="319.974609"/>
<use xlink:href="#glyph0-10" x="428.882812" y="319.974609"/>
<use xlink:href="#glyph0-11" x="431.882812" y="319.974609"/>
<use xlink:href="#glyph0-30" x="435.882812" y="319.974609"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="419.882812" y="351.455078"/>
<use xlink:href="#glyph0-2" x="425.882812" y="351.455078"/>
<use xlink:href="#glyph0-36" x="430.882812" y="351.455078"/>
<use xlink:href="#glyph0-2" x="436.882812" y="351.455078"/>
<use xlink:href="#glyph0-22" x="441.882812" y="351.455078"/>
<use xlink:href="#glyph0-22" x="443.882812" y="351.455078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="419.882812" y="382.939453"/>
<use xlink:href="#glyph0-2" x="425.882812" y="382.939453"/>
<use xlink:href="#glyph0-4" x="430.882812" y="382.939453"/>
<use xlink:href="#glyph0-6" x="432.882812" y="382.939453"/>
<use xlink:href="#glyph0-18" x="434.882812" y="382.939453"/>
<use xlink:href="#glyph0-36" x="439.882812" y="382.939453"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="419.882812" y="414.419922"/>
<use xlink:href="#glyph0-6" x="425.882812" y="414.419922"/>
<use xlink:href="#glyph0-30" x="427.882812" y="414.419922"/>
<use xlink:href="#glyph0-5" x="432.882812" y="414.419922"/>
<use xlink:href="#glyph0-34" x="437.882812" y="414.419922"/>
<use xlink:href="#glyph0-32" x="440.882812" y="414.419922"/>
<use xlink:href="#glyph0-5" x="446.882812" y="414.419922"/>
<use xlink:href="#glyph0-19" x="451.882812" y="414.419922"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="419.882812" y="445.900391"/>
<use xlink:href="#glyph0-6" x="425.882812" y="445.900391"/>
<use xlink:href="#glyph0-30" x="427.882812" y="445.900391"/>
<use xlink:href="#glyph0-5" x="432.882812" y="445.900391"/>
<use xlink:href="#glyph0-34" x="437.882812" y="445.900391"/>
<use xlink:href="#glyph0-32" x="440.882812" y="445.900391"/>
<use xlink:href="#glyph0-5" x="446.882812" y="445.900391"/>
<use xlink:href="#glyph0-19" x="451.882812" y="445.900391"/>
<use xlink:href="#glyph0-7" x="456.882812" y="445.900391"/>
<use xlink:href="#glyph0-12" x="458.882812" y="445.900391"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="419.882812" y="477.380859"/>
<use xlink:href="#glyph0-6" x="425.882812" y="477.380859"/>
<use xlink:href="#glyph0-30" x="427.882812" y="477.380859"/>
<use xlink:href="#glyph0-5" x="432.882812" y="477.380859"/>
<use xlink:href="#glyph0-34" x="437.882812" y="477.380859"/>
<use xlink:href="#glyph0-32" x="440.882812" y="477.380859"/>
<use xlink:href="#glyph0-5" x="446.882812" y="477.380859"/>
<use xlink:href="#glyph0-19" x="451.882812" y="477.380859"/>
<use xlink:href="#glyph0-7" x="456.882812" y="477.380859"/>
<use xlink:href="#glyph0-13" x="458.882812" y="477.380859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="419.882812" y="508.865234"/>
<use xlink:href="#glyph0-5" x="425.882812" y="508.865234"/>
<use xlink:href="#glyph0-19" x="430.882812" y="508.865234"/>
<use xlink:href="#glyph0-34" x="435.882812" y="508.865234"/>
<use xlink:href="#glyph0-25" x="438.882812" y="508.865234"/>
<use xlink:href="#glyph0-10" x="445.882812" y="508.865234"/>
<use xlink:href="#glyph0-5" x="448.882812" y="508.865234"/>
<use xlink:href="#glyph0-5" x="453.882812" y="508.865234"/>
<use xlink:href="#glyph0-21" x="458.882812" y="508.865234"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="419.882812" y="540.345703"/>
<use xlink:href="#glyph0-30" x="425.882812" y="540.345703"/>
<use xlink:href="#glyph0-10" x="430.882812" y="540.345703"/>
<use xlink:href="#glyph0-31" x="433.882812" y="540.345703"/>
<use xlink:href="#glyph0-6" x="438.882812" y="540.345703"/>
<use xlink:href="#glyph0-5" x="440.882812" y="540.345703"/>
<use xlink:href="#glyph0-34" x="445.882812" y="540.345703"/>
<use xlink:href="#glyph0-25" x="448.882812" y="540.345703"/>
<use xlink:href="#glyph0-10" x="455.882812" y="540.345703"/>
<use xlink:href="#glyph0-5" x="458.882812" y="540.345703"/>
<use xlink:href="#glyph0-5" x="463.882812" y="540.345703"/>
<use xlink:href="#glyph0-21" x="468.882812" y="540.345703"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="419.882812" y="571.826172"/>
<use xlink:href="#glyph0-30" x="425.882812" y="571.826172"/>
<use xlink:href="#glyph0-10" x="430.882812" y="571.826172"/>
<use xlink:href="#glyph0-31" x="433.882812" y="571.826172"/>
<use xlink:href="#glyph0-6" x="438.882812" y="571.826172"/>
<use xlink:href="#glyph0-5" x="440.882812" y="571.826172"/>
<use xlink:href="#glyph0-34" x="445.882812" y="571.826172"/>
<use xlink:href="#glyph0-29" x="448.882812" y="571.826172"/>
<use xlink:href="#glyph0-10" x="454.882812" y="571.826172"/>
<use xlink:href="#glyph0-18" x="457.882812" y="571.826172"/>
<use xlink:href="#glyph0-36" x="462.882812" y="571.826172"/>
<use xlink:href="#glyph0-21" x="468.882812" y="571.826172"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,27.058824%,20%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 72.148438 L 433.214844 72.148438 L 433.214844 87.890625 L 419.882812 87.890625 Z M 419.882812 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,50.980392%,54.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 72.148438 L 446.546875 72.148438 L 446.546875 87.890625 L 433.214844 87.890625 Z M 433.214844 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(46.27451%,65.098039%,81.568627%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 72.148438 L 459.878906 72.148438 L 459.878906 87.890625 L 446.546875 87.890625 Z M 446.546875 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(84.313725%,80.784314%,91.372549%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 72.148438 L 473.214844 72.148438 L 473.214844 87.890625 L 459.882812 87.890625 Z M 459.882812 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,96.862745%,99.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 72.148438 L 486.546875 72.148438 L 486.546875 87.890625 L 473.214844 87.890625 Z M 473.214844 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(5.490196%,24.705882%,36.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 103.628906 L 433.214844 103.628906 L 433.214844 119.371094 L 419.882812 119.371094 Z M 419.882812 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(6.666667%,45.098039%,69.803922%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 103.628906 L 446.546875 103.628906 L 446.546875 119.371094 L 433.214844 119.371094 Z M 433.214844 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(53.72549%,63.529412%,80.784314%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 103.628906 L 459.878906 103.628906 L 459.878906 119.371094 L 446.546875 119.371094 Z M 446.546875 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(79.607843%,82.352941%,90.588235%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 103.628906 L 473.214844 103.628906 L 473.214844 119.371094 L 459.882812 119.371094 Z M 459.882812 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(97.254902%,97.647059%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 103.628906 L 486.546875 103.628906 L 486.546875 119.371094 L 473.214844 119.371094 Z M 473.214844 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,27.45098%,8.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 135.109375 L 433.214844 135.109375 L 433.214844 150.851562 L 419.882812 150.851562 Z M 419.882812 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(18.823529%,53.72549%,23.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 135.109375 L 446.546875 135.109375 L 446.546875 150.851562 L 433.214844 150.851562 Z M 433.214844 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(50.588235%,75.294118%,47.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 135.109375 L 459.878906 135.109375 L 459.878906 150.851562 L 446.546875 150.851562 Z M 446.546875 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(79.215686%,90.980392%,75.686275%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 135.109375 L 473.214844 135.109375 L 473.214844 150.851562 L 459.882812 150.851562 Z M 459.882812 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,98.431373%,95.686275%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 135.109375 L 486.546875 135.109375 L 486.546875 150.851562 L 473.214844 150.851562 Z M 473.214844 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(10.588235%,26.666667%,7.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 166.59375 L 433.214844 166.59375 L 433.214844 182.335938 L 419.882812 182.335938 Z M 419.882812 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,56.470588%,32.156863%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 166.59375 L 446.546875 166.59375 L 446.546875 182.335938 L 433.214844 182.335938 Z M 433.214844 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(43.921569%,77.254902%,67.45098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 166.59375 L 459.878906 166.59375 L 459.878906 182.335938 L 446.546875 182.335938 Z M 446.546875 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(77.647059%,91.764706%,89.803922%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 166.59375 L 473.214844 166.59375 L 473.214844 182.335938 L 459.882812 182.335938 Z M 459.882812 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(94.901961%,98.431373%,98.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 166.59375 L 486.546875 166.59375 L 486.546875 182.335938 L 473.214844 182.335938 Z M 473.214844 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(18.431373%,19.607843%,49.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 198.074219 L 433.214844 198.074219 L 433.214844 213.816406 L 419.882812 213.816406 Z M 419.882812 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,56.470588%,72.941176%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 198.074219 L 446.546875 198.074219 L 446.546875 213.816406 L 433.214844 213.816406 Z M 433.214844 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(32.941176%,79.215686%,74.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 198.074219 L 459.878906 198.074219 L 459.878906 213.816406 L 446.546875 213.816406 Z M 446.546875 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(78.039216%,92.54902%,81.568627%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 198.074219 L 473.214844 198.074219 L 473.214844 213.816406 L 459.882812 213.816406 Z M 459.882812 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(96.078431%,97.254902%,91.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 198.074219 L 486.546875 198.074219 L 486.546875 213.816406 L 473.214844 213.816406 Z M 473.214844 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(32.941176%,0%,27.45098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 229.554688 L 433.214844 229.554688 L 433.214844 245.296875 L 419.882812 245.296875 Z M 419.882812 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(51.372549%,27.45098%,63.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 229.554688 L 446.546875 229.554688 L 446.546875 245.296875 L 433.214844 245.296875 Z M 433.214844 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(56.470588%,60%,79.215686%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 229.554688 L 459.878906 229.554688 L 459.878906 245.296875 L 446.546875 245.296875 Z M 446.546875 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(74.509804%,83.921569%,90.196078%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 229.554688 L 473.214844 229.554688 L 473.214844 245.296875 L 459.882812 245.296875 Z M 459.882812 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(94.901961%,98.431373%,98.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 229.554688 L 486.546875 229.554688 L 486.546875 245.296875 L 473.214844 245.296875 Z M 473.214844 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(15.294118%,21.960784%,44.313725%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 261.035156 L 433.214844 261.035156 L 433.214844 276.777344 L 419.882812 276.777344 Z M 419.882812 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(20.784314%,45.098039%,72.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 261.035156 L 446.546875 261.035156 L 446.546875 276.777344 L 433.214844 276.777344 Z M 433.214844 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(49.803922%,67.058824%,82.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 261.035156 L 459.878906 261.035156 L 459.878906 276.777344 L 446.546875 276.777344 Z M 446.546875 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(75.686275%,85.882353%,92.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 261.035156 L 473.214844 261.035156 L 473.214844 276.777344 L 459.882812 276.777344 Z M 459.882812 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(95.686275%,98.039216%,99.607843%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 261.035156 L 486.546875 261.035156 L 486.546875 276.777344 L 473.214844 276.777344 Z M 473.214844 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(98.823529%,100%,78.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 292.519531 L 433.214844 292.519531 L 433.214844 308.261719 L 419.882812 308.261719 Z M 419.882812 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(90.980392%,75.686275%,40.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 292.519531 L 446.546875 292.519531 L 446.546875 308.261719 L 433.214844 308.261719 Z M 433.214844 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(83.921569%,45.882353%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 292.519531 L 459.878906 292.519531 L 459.878906 308.261719 L 446.546875 308.261719 Z M 446.546875 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(56.862745%,21.176471%,25.098039%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 292.519531 L 473.214844 292.519531 L 473.214844 308.261719 L 459.882812 308.261719 Z M 459.882812 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(11.372549%,4.313725%,7.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 292.519531 L 486.546875 292.519531 L 486.546875 308.261719 L 473.214844 308.261719 Z M 473.214844 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,91.372549%,91.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 324 L 433.214844 324 L 433.214844 339.742188 L 419.882812 339.742188 Z M 419.882812 324 "/>
<path style="fill-rule:nonzero;fill:rgb(91.764706%,67.843137%,53.72549%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 324 L 446.546875 324 L 446.546875 339.742188 L 433.214844 339.742188 Z M 433.214844 324 "/>
<path style="fill-rule:nonzero;fill:rgb(57.254902%,50.980392%,38.039216%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 324 L 459.878906 324 L 459.878906 339.742188 L 446.546875 339.742188 Z M 446.546875 324 "/>
<path style="fill-rule:nonzero;fill:rgb(29.411765%,29.803922%,25.098039%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 324 L 473.214844 324 L 473.214844 339.742188 L 459.882812 339.742188 Z M 459.882812 324 "/>
<path style="fill-rule:nonzero;fill:rgb(1.568627%,1.568627%,1.568627%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 324 L 486.546875 324 L 486.546875 339.742188 L 473.214844 339.742188 Z M 473.214844 324 "/>
<path style="fill-rule:nonzero;fill:rgb(54.509804%,0%,41.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 355.480469 L 433.214844 355.480469 L 433.214844 371.222656 L 419.882812 371.222656 Z M 419.882812 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(65.490196%,33.333333%,16.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 355.480469 L 446.546875 355.480469 L 446.546875 371.222656 L 433.214844 371.222656 Z M 433.214844 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(60.392157%,59.607843%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 355.480469 L 459.878906 355.480469 L 459.878906 371.222656 L 446.546875 371.222656 Z M 446.546875 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(36.470588%,82.352941%,56.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 355.480469 L 473.214844 355.480469 L 473.214844 371.222656 L 459.882812 371.222656 Z M 459.882812 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(69.019608%,95.686275%,98.039216%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 355.480469 L 486.546875 355.480469 L 486.546875 371.222656 L 473.214844 371.222656 Z M 473.214844 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(12.54902%,6.666667%,34.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 386.964844 L 433.214844 386.964844 L 433.214844 402.707031 L 419.882812 402.707031 Z M 419.882812 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,36.862745%,36.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 386.964844 L 446.546875 386.964844 L 446.546875 402.707031 L 433.214844 402.707031 Z M 433.214844 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(34.117647%,54.509804%,12.941176%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 386.964844 L 459.878906 386.964844 L 459.878906 402.707031 L 446.546875 402.707031 Z M 446.546875 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(90.980392%,61.960784%,41.960784%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 386.964844 L 473.214844 386.964844 L 473.214844 402.707031 L 459.882812 402.707031 Z M 459.882812 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,80.784314%,95.686275%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 386.964844 L 486.546875 386.964844 L 486.546875 402.707031 L 473.214844 402.707031 Z M 473.214844 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,24.705882%,64.705882%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 418.445312 L 433.214844 418.445312 L 433.214844 434.1875 L 419.882812 434.1875 Z M 419.882812 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(63.137255%,65.098039%,78.431373%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 418.445312 L 446.546875 418.445312 L 446.546875 434.1875 L 433.214844 434.1875 Z M 433.214844 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,88.627451%,88.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 418.445312 L 459.878906 418.445312 L 459.878906 434.1875 L 446.546875 434.1875 Z M 446.546875 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(79.215686%,61.176471%,64.313725%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 418.445312 L 473.214844 418.445312 L 473.214844 434.1875 L 459.882812 434.1875 Z M 459.882812 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(55.686275%,2.352941%,23.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 418.445312 L 486.546875 418.445312 L 486.546875 434.1875 L 473.214844 434.1875 Z M 473.214844 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(29.019608%,43.529412%,89.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 449.925781 L 433.214844 449.925781 L 433.214844 465.667969 L 419.882812 465.667969 Z M 419.882812 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(61.568627%,65.882353%,88.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 449.925781 L 446.546875 449.925781 L 446.546875 465.667969 L 433.214844 465.667969 Z M 433.214844 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,88.627451%,88.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 449.925781 L 459.878906 449.925781 L 459.878906 465.667969 L 446.546875 465.667969 Z M 446.546875 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(89.411765%,58.431373%,64.705882%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 449.925781 L 473.214844 449.925781 L 473.214844 465.667969 L 459.882812 465.667969 Z M 459.882812 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(82.745098%,24.705882%,41.568627%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 449.925781 L 486.546875 449.925781 L 486.546875 465.667969 L 473.214844 465.667969 Z M 473.214844 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,18.431373%,43.921569%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 481.40625 L 433.214844 481.40625 L 433.214844 497.148438 L 419.882812 497.148438 Z M 419.882812 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(52.941176%,62.352941%,85.882353%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 481.40625 L 446.546875 481.40625 L 446.546875 497.148438 L 433.214844 497.148438 Z M 433.214844 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,96.470588%,96.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 481.40625 L 459.878906 481.40625 L 459.878906 497.148438 L 446.546875 497.148438 Z M 446.546875 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(85.490196%,54.117647%,54.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 481.40625 L 473.214844 481.40625 L 473.214844 497.148438 L 459.882812 497.148438 Z M 459.882812 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(37.254902%,7.843137%,8.235294%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 481.40625 L 486.546875 481.40625 L 486.546875 497.148438 L 473.214844 497.148438 Z M 473.214844 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(51.764706%,9.411765%,34.901961%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 512.890625 L 433.214844 512.890625 L 433.214844 528.632812 L 419.882812 528.632812 Z M 419.882812 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(95.294118%,59.607843%,76.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 512.890625 L 446.546875 512.890625 L 446.546875 528.632812 L 433.214844 528.632812 Z M 433.214844 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,96.470588%,96.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 512.890625 L 459.878906 512.890625 L 459.878906 528.632812 L 446.546875 528.632812 Z M 446.546875 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(48.627451%,77.254902%,49.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 512.890625 L 473.214844 512.890625 L 473.214844 528.632812 L 459.882812 528.632812 Z M 459.882812 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,33.72549%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 512.890625 L 486.546875 512.890625 L 486.546875 528.632812 L 473.214844 528.632812 Z M 473.214844 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(28.627451%,12.54902%,31.372549%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 544.371094 L 433.214844 544.371094 L 433.214844 560.113281 L 419.882812 560.113281 Z M 419.882812 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(76.862745%,56.470588%,81.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 544.371094 L 446.546875 544.371094 L 446.546875 560.113281 L 433.214844 560.113281 Z M 433.214844 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 544.371094 L 459.878906 544.371094 L 459.878906 560.113281 L 446.546875 560.113281 Z M 446.546875 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(44.705882%,69.411765%,45.098039%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 544.371094 L 473.214844 544.371094 L 473.214844 560.113281 L 459.882812 560.113281 Z M 459.882812 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(0.784314%,22.352941%,1.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 544.371094 L 486.546875 544.371094 L 486.546875 560.113281 L 473.214844 560.113281 Z M 473.214844 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(19.215686%,16.470588%,33.72549%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.882812 575.851562 L 433.214844 575.851562 L 433.214844 591.59375 L 419.882812 591.59375 Z M 419.882812 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(61.176471%,57.254902%,87.45098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.214844 575.851562 L 446.546875 575.851562 L 446.546875 591.59375 L 433.214844 591.59375 Z M 433.214844 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.546875 575.851562 L 459.878906 575.851562 L 459.878906 591.59375 L 446.546875 591.59375 Z M 446.546875 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(80.392157%,55.294118%,35.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.882812 575.851562 L 473.214844 575.851562 L 473.214844 591.59375 L 459.882812 591.59375 Z M 459.882812 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(28.627451%,16.078431%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 473.214844 575.851562 L 486.546875 575.851562 L 486.546875 591.59375 L 473.214844 591.59375 Z M 473.214844 575.851562 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="520.59375" y="68.123047"/>
<use xlink:href="#glyph0-10" x="527.59375" y="68.123047"/>
<use xlink:href="#glyph0-5" x="530.59375" y="68.123047"/>
<use xlink:href="#glyph0-5" x="535.59375" y="68.123047"/>
<use xlink:href="#glyph0-21" x="540.59375" y="68.123047"/>
<use xlink:href="#glyph0-34" x="545.59375" y="68.123047"/>
<use xlink:href="#glyph0-29" x="548.59375" y="68.123047"/>
<use xlink:href="#glyph0-10" x="554.59375" y="68.123047"/>
<use xlink:href="#glyph0-18" x="557.59375" y="68.123047"/>
<use xlink:href="#glyph0-36" x="562.59375" y="68.123047"/>
<use xlink:href="#glyph0-21" x="568.59375" y="68.123047"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="520.59375" y="99.603516"/>
<use xlink:href="#glyph0-6" x="526.59375" y="99.603516"/>
<use xlink:href="#glyph0-30" x="528.59375" y="99.603516"/>
<use xlink:href="#glyph0-5" x="533.59375" y="99.603516"/>
<use xlink:href="#glyph0-34" x="538.59375" y="99.603516"/>
<use xlink:href="#glyph0-35" x="540.59375" y="99.603516"/>
<use xlink:href="#glyph0-5" x="545.59375" y="99.603516"/>
<use xlink:href="#glyph0-6" x="550.59375" y="99.603516"/>
<use xlink:href="#glyph0-6" x="552.59375" y="99.603516"/>
<use xlink:href="#glyph0-18" x="554.59375" y="99.603516"/>
<use xlink:href="#glyph0-36" x="559.59375" y="99.603516"/>
<use xlink:href="#glyph0-7" x="565.59375" y="99.603516"/>
<use xlink:href="#glyph0-12" x="567.59375" y="99.603516"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="520.59375" y="131.087891"/>
<use xlink:href="#glyph0-6" x="526.59375" y="131.087891"/>
<use xlink:href="#glyph0-30" x="528.59375" y="131.087891"/>
<use xlink:href="#glyph0-5" x="533.59375" y="131.087891"/>
<use xlink:href="#glyph0-34" x="538.59375" y="131.087891"/>
<use xlink:href="#glyph0-35" x="540.59375" y="131.087891"/>
<use xlink:href="#glyph0-5" x="545.59375" y="131.087891"/>
<use xlink:href="#glyph0-6" x="550.59375" y="131.087891"/>
<use xlink:href="#glyph0-6" x="552.59375" y="131.087891"/>
<use xlink:href="#glyph0-18" x="554.59375" y="131.087891"/>
<use xlink:href="#glyph0-36" x="559.59375" y="131.087891"/>
<use xlink:href="#glyph0-7" x="565.59375" y="131.087891"/>
<use xlink:href="#glyph0-13" x="567.59375" y="131.087891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="520.59375" y="162.568359"/>
<use xlink:href="#glyph0-10" x="527.59375" y="162.568359"/>
<use xlink:href="#glyph0-5" x="530.59375" y="162.568359"/>
<use xlink:href="#glyph0-5" x="535.59375" y="162.568359"/>
<use xlink:href="#glyph0-21" x="540.59375" y="162.568359"/>
<use xlink:href="#glyph0-34" x="545.59375" y="162.568359"/>
<use xlink:href="#glyph0-33" x="548.59375" y="162.568359"/>
<use xlink:href="#glyph0-10" x="555.59375" y="162.568359"/>
<use xlink:href="#glyph0-2" x="558.59375" y="162.568359"/>
<use xlink:href="#glyph0-21" x="563.59375" y="162.568359"/>
<use xlink:href="#glyph0-27" x="568.59375" y="162.568359"/>
<use xlink:href="#glyph0-5" x="573.59375" y="162.568359"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="520.59375" y="194.048828"/>
<use xlink:href="#glyph0-24" x="526.59375" y="194.048828"/>
<use xlink:href="#glyph0-2" x="530.59375" y="194.048828"/>
<use xlink:href="#glyph0-21" x="535.59375" y="194.048828"/>
<use xlink:href="#glyph0-34" x="540.59375" y="194.048828"/>
<use xlink:href="#glyph0-41" x="543.59375" y="194.048828"/>
<use xlink:href="#glyph0-2" x="550.59375" y="194.048828"/>
<use xlink:href="#glyph0-27" x="555.59375" y="194.048828"/>
<use xlink:href="#glyph0-5" x="560.59375" y="194.048828"/>
<use xlink:href="#glyph0-21" x="565.59375" y="194.048828"/>
<use xlink:href="#glyph0-4" x="570.59375" y="194.048828"/>
<use xlink:href="#glyph0-2" x="572.59375" y="194.048828"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="520.59375" y="225.529297"/>
<use xlink:href="#glyph0-10" x="524.59375" y="225.529297"/>
<use xlink:href="#glyph0-18" x="527.59375" y="225.529297"/>
<use xlink:href="#glyph0-31" x="532.59375" y="225.529297"/>
<use xlink:href="#glyph0-22" x="537.59375" y="225.529297"/>
<use xlink:href="#glyph0-23" x="539.59375" y="225.529297"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="520.59375" y="257.013672"/>
<use xlink:href="#glyph0-10" x="526.59375" y="257.013672"/>
<use xlink:href="#glyph0-18" x="529.59375" y="257.013672"/>
<use xlink:href="#glyph0-23" x="534.59375" y="257.013672"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="520.59375" y="288.494141"/>
<use xlink:href="#glyph0-18" x="526.59375" y="288.494141"/>
<use xlink:href="#glyph0-10" x="531.59375" y="288.494141"/>
<use xlink:href="#glyph0-11" x="534.59375" y="288.494141"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-38" x="520.59375" y="319.974609"/>
<use xlink:href="#glyph0-22" x="526.59375" y="319.974609"/>
<use xlink:href="#glyph0-11" x="528.59375" y="319.974609"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="520.59375" y="351.455078"/>
<use xlink:href="#glyph0-5" x="526.59375" y="351.455078"/>
<use xlink:href="#glyph0-10" x="531.59375" y="351.455078"/>
<use xlink:href="#glyph0-6" x="534.59375" y="351.455078"/>
<use xlink:href="#glyph0-22" x="536.59375" y="351.455078"/>
<use xlink:href="#glyph0-21" x="538.59375" y="351.455078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="520.59375" y="382.939453"/>
<use xlink:href="#glyph0-22" x="525.59375" y="382.939453"/>
<use xlink:href="#glyph0-3" x="527.59375" y="382.939453"/>
<use xlink:href="#glyph0-45" x="531.59375" y="382.939453"/>
<use xlink:href="#glyph0-18" x="536.59375" y="382.939453"/>
<use xlink:href="#glyph0-21" x="541.59375" y="382.939453"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="520.59375" y="414.419922"/>
<use xlink:href="#glyph0-18" x="524.59375" y="414.419922"/>
<use xlink:href="#glyph0-46" x="529.59375" y="414.419922"/>
<use xlink:href="#glyph0-21" x="533.59375" y="414.419922"/>
<use xlink:href="#glyph0-18" x="538.59375" y="414.419922"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-47" x="520.59375" y="445.900391"/>
<use xlink:href="#glyph0-10" x="526.59375" y="445.900391"/>
<use xlink:href="#glyph0-16" x="529.59375" y="445.900391"/>
<use xlink:href="#glyph0-24" x="536.59375" y="445.900391"/>
<use xlink:href="#glyph0-32" x="540.59375" y="445.900391"/>
<use xlink:href="#glyph0-18" x="546.59375" y="445.900391"/>
<use xlink:href="#glyph0-3" x="551.59375" y="445.900391"/>
<use xlink:href="#glyph0-5" x="555.59375" y="445.900391"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-42" x="520.59375" y="477.380859"/>
<use xlink:href="#glyph0-2" x="526.59375" y="477.380859"/>
<use xlink:href="#glyph0-10" x="531.59375" y="477.380859"/>
<use xlink:href="#glyph0-4" x="534.59375" y="477.380859"/>
<use xlink:href="#glyph0-28" x="536.59375" y="477.380859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-48" x="520.59375" y="508.865234"/>
<use xlink:href="#glyph0-2" x="525.59375" y="508.865234"/>
<use xlink:href="#glyph0-6" x="530.59375" y="508.865234"/>
<use xlink:href="#glyph0-6" x="532.59375" y="508.865234"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="520.59375" y="540.345703"/>
<use xlink:href="#glyph0-5" x="527.59375" y="540.345703"/>
<use xlink:href="#glyph0-24" x="531.59375" y="540.345703"/>
<use xlink:href="#glyph0-3" x="535.59375" y="540.345703"/>
<use xlink:href="#glyph0-5" x="539.59375" y="540.345703"/>
<use xlink:href="#glyph0-10" x="544.59375" y="540.345703"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="520.59375" y="571.826172"/>
<use xlink:href="#glyph0-5" x="524.59375" y="571.826172"/>
<use xlink:href="#glyph0-2" x="529.59375" y="571.826172"/>
<use xlink:href="#glyph0-6" x="534.59375" y="571.826172"/>
<use xlink:href="#glyph0-32" x="536.59375" y="571.826172"/>
<use xlink:href="#glyph0-18" x="542.59375" y="571.826172"/>
<use xlink:href="#glyph0-3" x="547.59375" y="571.826172"/>
<use xlink:href="#glyph0-5" x="551.59375" y="571.826172"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(0%,29.411765%,25.098039%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 72.148438 L 533.925781 72.148438 L 533.925781 87.890625 L 520.59375 87.890625 Z M 520.59375 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(18.039216%,74.509804%,69.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 72.148438 L 547.261719 72.148438 L 547.261719 87.890625 L 533.929688 87.890625 Z M 533.929688 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,96.470588%,96.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 72.148438 L 560.59375 72.148438 L 560.59375 87.890625 L 547.261719 87.890625 Z M 547.261719 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(79.607843%,64.313725%,42.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 72.148438 L 573.925781 72.148438 L 573.925781 87.890625 L 560.59375 87.890625 Z M 560.59375 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(32.54902%,21.176471%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 72.148438 L 587.261719 72.148438 L 587.261719 87.890625 L 573.929688 87.890625 Z M 573.929688 72.148438 "/>
<path style="fill-rule:nonzero;fill:rgb(30.980392%,32.54902%,71.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 103.628906 L 533.925781 103.628906 L 533.925781 119.371094 L 520.59375 119.371094 Z M 520.59375 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(66.666667%,67.058824%,83.529412%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 103.628906 L 547.261719 103.628906 L 547.261719 119.371094 L 533.929688 119.371094 Z M 533.929688 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 103.628906 L 560.59375 103.628906 L 560.59375 119.371094 L 547.261719 119.371094 Z M 547.261719 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(70.980392%,68.627451%,50.196078%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 103.628906 L 573.925781 103.628906 L 573.925781 119.371094 L 560.59375 119.371094 Z M 560.59375 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(41.960784%,38.039216%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 103.628906 L 587.261719 103.628906 L 587.261719 119.371094 L 573.929688 119.371094 Z M 573.929688 103.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(62.352941%,63.529412%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 135.109375 L 533.925781 135.109375 L 533.925781 150.851562 L 520.59375 150.851562 Z M 520.59375 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(84.313725%,85.098039%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 135.109375 L 547.261719 135.109375 L 547.261719 150.851562 L 533.929688 150.851562 Z M 533.929688 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 135.109375 L 560.59375 135.109375 L 560.59375 150.851562 L 547.261719 150.851562 Z M 547.261719 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(91.764706%,88.235294%,56.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 135.109375 L 573.925781 135.109375 L 573.925781 150.851562 L 560.59375 150.851562 Z M 560.59375 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(72.941176%,68.235294%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 135.109375 L 587.261719 135.109375 L 587.261719 150.851562 L 573.929688 150.851562 Z M 573.929688 135.109375 "/>
<path style="fill-rule:nonzero;fill:rgb(6.666667%,77.647059%,21.960784%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 166.59375 L 533.925781 166.59375 L 533.925781 182.335938 L 520.59375 182.335938 Z M 520.59375 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(58.431373%,83.921569%,60.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 166.59375 L 547.261719 166.59375 L 547.261719 182.335938 L 533.929688 182.335938 Z M 533.929688 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,88.627451%,88.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 166.59375 L 560.59375 166.59375 L 560.59375 182.335938 L 547.261719 182.335938 Z M 547.261719 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(94.117647%,73.72549%,58.431373%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 166.59375 L 573.925781 166.59375 L 573.925781 182.335938 L 560.59375 182.335938 Z M 560.59375 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(93.72549%,59.215686%,3.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 166.59375 L 587.261719 166.59375 L 587.261719 182.335938 L 573.929688 182.335938 Z M 573.929688 166.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(5.882353%,81.176471%,75.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 198.074219 L 533.925781 198.074219 L 533.925781 213.816406 L 520.59375 213.816406 Z M 520.59375 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(73.72549%,89.803922%,87.45098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 198.074219 L 547.261719 198.074219 L 547.261719 213.816406 L 533.929688 213.816406 Z M 533.929688 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 198.074219 L 560.59375 198.074219 L 560.59375 213.816406 L 547.261719 213.816406 Z M 547.261719 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(96.078431%,82.745098%,90.588235%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 198.074219 L 573.925781 198.074219 L 573.925781 213.816406 L 560.59375 213.816406 Z M 560.59375 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(96.862745%,61.176471%,83.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 198.074219 L 587.261719 198.074219 L 587.261719 213.816406 L 573.929688 213.816406 Z M 573.929688 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,60.784314%,62.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 229.554688 L 533.925781 229.554688 L 533.925781 245.296875 L 520.59375 245.296875 Z M 520.59375 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(49.019608%,77.254902%,78.039216%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 229.554688 L 547.261719 229.554688 L 547.261719 245.296875 L 533.929688 245.296875 Z M 533.929688 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 229.554688 L 560.59375 229.554688 L 560.59375 245.296875 L 547.261719 245.296875 Z M 547.261719 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(87.058824%,66.27451%,80%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 229.554688 L 573.925781 229.554688 L 573.925781 245.296875 L 560.59375 245.296875 Z M 560.59375 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(78.039216%,36.470588%,66.666667%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 229.554688 L 587.261719 229.554688 L 587.261719 245.296875 L 573.929688 245.296875 Z M 573.929688 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,16.862745%,29.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 261.035156 L 533.925781 261.035156 L 533.925781 276.777344 L 520.59375 276.777344 Z M 520.59375 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(39.215686%,51.372549%,62.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 261.035156 L 547.261719 261.035156 L 547.261719 276.777344 L 533.929688 276.777344 Z M 533.929688 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 261.035156 L 560.59375 261.035156 L 560.59375 276.777344 L 547.261719 276.777344 Z M 547.261719 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(51.372549%,50.980392%,32.941176%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 261.035156 L 573.925781 261.035156 L 573.925781 276.777344 L 560.59375 276.777344 Z M 560.59375 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(16.078431%,15.686275%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 261.035156 L 587.261719 261.035156 L 587.261719 276.777344 L 573.929688 276.777344 Z M 573.929688 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,16.078431%,30.196078%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 292.519531 L 533.925781 292.519531 L 533.925781 308.261719 L 520.59375 308.261719 Z M 520.59375 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(41.568627%,55.294118%,71.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 292.519531 L 547.261719 292.519531 L 547.261719 308.261719 L 533.929688 308.261719 Z M 533.929688 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 292.519531 L 560.59375 292.519531 L 560.59375 308.261719 L 547.261719 308.261719 Z M 547.261719 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(39.607843%,59.215686%,37.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 292.519531 L 573.925781 292.519531 L 573.925781 308.261719 L 560.59375 308.261719 Z M 560.59375 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,18.431373%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 292.519531 L 587.261719 292.519531 L 587.261719 308.261719 L 573.929688 308.261719 Z M 573.929688 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,18.039216%,37.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 324 L 533.925781 324 L 533.925781 339.742188 L 520.59375 339.742188 Z M 520.59375 324 "/>
<path style="fill-rule:nonzero;fill:rgb(35.294118%,56.470588%,73.333333%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 324 L 547.261719 324 L 547.261719 339.742188 L 533.929688 339.742188 Z M 533.929688 324 "/>
<path style="fill-rule:nonzero;fill:rgb(94.509804%,94.509804%,94.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 324 L 560.59375 324 L 560.59375 339.742188 L 547.261719 339.742188 Z M 547.261719 324 "/>
<path style="fill-rule:nonzero;fill:rgb(66.27451%,52.156863%,30.196078%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 324 L 573.925781 324 L 573.925781 339.742188 L 560.59375 339.742188 Z M 560.59375 324 "/>
<path style="fill-rule:nonzero;fill:rgb(24.313725%,12.54902%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 324 L 587.261719 324 L 587.261719 339.742188 L 573.929688 339.742188 Z M 573.929688 324 "/>
<path style="fill-rule:nonzero;fill:rgb(49.803922%,74.901961%,96.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 355.480469 L 533.925781 355.480469 L 533.925781 371.222656 L 520.59375 371.222656 Z M 520.59375 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,29.411765%,45.098039%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 355.480469 L 547.261719 355.480469 L 547.261719 371.222656 L 533.929688 371.222656 Z M 533.929688 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(6.666667%,6.666667%,6.666667%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 355.480469 L 560.59375 355.480469 L 560.59375 371.222656 L 547.261719 371.222656 Z M 547.261719 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(44.313725%,20.392157%,18.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 355.480469 L 573.925781 355.480469 L 573.925781 371.222656 L 560.59375 371.222656 Z M 560.59375 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(97.254902%,63.529412%,61.960784%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 355.480469 L 587.261719 355.480469 L 587.261719 371.222656 L 573.929688 371.222656 Z M 573.929688 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,98.823529%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 386.964844 L 533.925781 386.964844 L 533.925781 402.707031 L 520.59375 402.707031 Z M 520.59375 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(39.607843%,50.980392%,61.568627%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 386.964844 L 547.261719 386.964844 L 547.261719 402.707031 L 533.929688 402.707031 Z M 533.929688 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(9.411765%,9.411765%,9.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 386.964844 L 560.59375 386.964844 L 560.59375 402.707031 L 547.261719 402.707031 Z M 547.261719 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(50.980392%,50.588235%,33.72549%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 386.964844 L 573.925781 386.964844 L 573.925781 402.707031 L 560.59375 402.707031 Z M 560.59375 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(98.823529%,98.823529%,82.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 386.964844 L 587.261719 386.964844 L 587.261719 402.707031 L 573.929688 402.707031 Z M 573.929688 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(83.921569%,87.843137%,100%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 418.445312 L 533.925781 418.445312 L 533.925781 434.1875 L 520.59375 434.1875 Z M 520.59375 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(40%,43.137255%,60.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 418.445312 L 547.261719 418.445312 L 547.261719 434.1875 L 533.929688 434.1875 Z M 533.929688 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(6.666667%,6.666667%,6.666667%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 418.445312 L 560.59375 418.445312 L 560.59375 434.1875 L 547.261719 434.1875 Z M 547.261719 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(33.333333%,47.843137%,27.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 418.445312 L 573.925781 418.445312 L 573.925781 434.1875 L 560.59375 434.1875 Z M 560.59375 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(76.078431%,93.72549%,70.588235%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 418.445312 L 587.261719 418.445312 L 587.261719 434.1875 L 573.929688 434.1875 Z M 573.929688 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(83.921569%,41.176471%,50.980392%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 449.925781 L 533.925781 449.925781 L 533.925781 465.667969 L 520.59375 465.667969 Z M 520.59375 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(89.803922%,66.27451%,70.588235%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 449.925781 L 547.261719 449.925781 L 547.261719 465.667969 L 533.929688 465.667969 Z M 533.929688 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(97.254902%,98.823529%,89.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 449.925781 L 560.59375 449.925781 L 560.59375 465.667969 L 547.261719 465.667969 Z M 547.261719 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(70.980392%,74.509804%,49.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 449.925781 L 573.925781 449.925781 L 573.925781 465.667969 L 560.59375 465.667969 Z M 560.59375 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(47.45098%,50.980392%,20%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 449.925781 L 587.261719 449.925781 L 587.261719 465.667969 L 573.929688 465.667969 Z M 573.929688 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(63.921569%,41.960784%,16.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 481.40625 L 533.925781 481.40625 L 533.925781 497.148438 L 520.59375 497.148438 Z M 520.59375 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(77.647059%,66.666667%,45.490196%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 481.40625 L 547.261719 481.40625 L 547.261719 497.148438 L 533.929688 497.148438 Z M 533.929688 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(92.941176%,91.764706%,76.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 481.40625 L 560.59375 481.40625 L 560.59375 497.148438 L 547.261719 497.148438 Z M 547.261719 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(58.039216%,72.54902%,65.490196%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 481.40625 L 573.925781 481.40625 L 573.925781 497.148438 L 560.59375 497.148438 Z M 560.59375 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(14.901961%,52.54902%,62.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 481.40625 L 587.261719 481.40625 L 587.261719 497.148438 L 573.929688 497.148438 Z M 573.929688 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(23.529412%,34.901961%,25.490196%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 512.890625 L 533.925781 512.890625 L 533.925781 528.632812 L 520.59375 528.632812 Z M 520.59375 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(58.039216%,63.921569%,49.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 512.890625 L 547.261719 512.890625 L 547.261719 528.632812 L 533.929688 528.632812 Z M 533.929688 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(98.431373%,94.901961%,76.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 512.890625 L 560.59375 512.890625 L 560.59375 528.632812 L 547.261719 528.632812 Z M 547.261719 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(85.882353%,65.882353%,43.921569%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 512.890625 L 573.925781 512.890625 L 573.925781 528.632812 L 560.59375 528.632812 Z M 560.59375 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(78.039216%,32.156863%,16.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 512.890625 L 587.261719 512.890625 L 587.261719 528.632812 L 573.929688 528.632812 Z M 573.929688 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,52.156863%,52.156863%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 544.371094 L 533.925781 544.371094 L 533.925781 560.113281 L 520.59375 560.113281 Z M 520.59375 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(60.784314%,72.941176%,62.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 544.371094 L 547.261719 544.371094 L 547.261719 560.113281 L 533.929688 560.113281 Z M 533.929688 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(98.431373%,94.901961%,76.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 544.371094 L 560.59375 544.371094 L 560.59375 560.113281 L 547.261719 560.113281 Z M 547.261719 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(87.058824%,65.882353%,40.784314%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 544.371094 L 573.925781 544.371094 L 573.925781 560.113281 L 560.59375 560.113281 Z M 560.59375 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(78.039216%,32.156863%,16.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 544.371094 L 587.261719 544.371094 L 587.261719 560.113281 L 573.929688 560.113281 Z M 573.929688 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,58.431373%,57.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.59375 575.851562 L 533.925781 575.851562 L 533.925781 591.59375 L 520.59375 591.59375 Z M 520.59375 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(62.352941%,73.72549%,64.313725%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 533.929688 575.851562 L 547.261719 575.851562 L 547.261719 591.59375 L 533.929688 591.59375 Z M 533.929688 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(93.72549%,91.372549%,78.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 547.261719 575.851562 L 560.59375 575.851562 L 560.59375 591.59375 L 547.261719 591.59375 Z M 547.261719 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(85.098039%,67.058824%,56.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.59375 575.851562 L 573.925781 575.851562 L 573.925781 591.59375 L 560.59375 591.59375 Z M 560.59375 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(82.745098%,36.078431%,47.45098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.929688 575.851562 L 587.261719 575.851562 L 587.261719 591.59375 L 573.929688 591.59375 Z M 573.929688 575.851562 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-37" x="621.308594" y="194.048828"/>
<use xlink:href="#glyph0-5" x="625.308594" y="194.048828"/>
<use xlink:href="#glyph0-16" x="630.308594" y="194.048828"/>
<use xlink:href="#glyph0-31" x="637.308594" y="194.048828"/>
<use xlink:href="#glyph0-3" x="642.308594" y="194.048828"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="621.308594" y="225.529297"/>
<use xlink:href="#glyph0-30" x="627.308594" y="225.529297"/>
<use xlink:href="#glyph0-33" x="632.308594" y="225.529297"/>
<use xlink:href="#glyph0-10" x="639.308594" y="225.529297"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="621.308594" y="257.013672"/>
<use xlink:href="#glyph0-19" x="627.308594" y="257.013672"/>
<use xlink:href="#glyph0-29" x="632.308594" y="257.013672"/>
<use xlink:href="#glyph0-30" x="638.308594" y="257.013672"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="621.308594" y="288.494141"/>
<use xlink:href="#glyph0-19" x="627.308594" y="288.494141"/>
<use xlink:href="#glyph0-25" x="632.308594" y="288.494141"/>
<use xlink:href="#glyph0-24" x="638.308594" y="288.494141"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="621.308594" y="319.974609"/>
<use xlink:href="#glyph0-22" x="626.308594" y="319.974609"/>
<use xlink:href="#glyph0-35" x="628.308594" y="319.974609"/>
<use xlink:href="#glyph0-25" x="633.308594" y="319.974609"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="621.308594" y="351.455078"/>
<use xlink:href="#glyph0-32" x="626.308594" y="351.455078"/>
<use xlink:href="#glyph0-25" x="632.308594" y="351.455078"/>
<use xlink:href="#glyph0-21" x="639.308594" y="351.455078"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="621.308594" y="382.939453"/>
<use xlink:href="#glyph0-10" x="627.308594" y="382.939453"/>
<use xlink:href="#glyph0-29" x="630.308594" y="382.939453"/>
<use xlink:href="#glyph0-25" x="636.308594" y="382.939453"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="621.308594" y="414.419922"/>
<use xlink:href="#glyph0-19" x="627.308594" y="414.419922"/>
<use xlink:href="#glyph0-35" x="632.308594" y="414.419922"/>
<use xlink:href="#glyph0-6" x="638.308594" y="414.419922"/>
<use xlink:href="#glyph0-29" x="640.308594" y="414.419922"/>
<use xlink:href="#glyph0-30" x="646.308594" y="414.419922"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="621.308594" y="445.900391"/>
<use xlink:href="#glyph0-19" x="627.308594" y="445.900391"/>
<use xlink:href="#glyph0-35" x="632.308594" y="445.900391"/>
<use xlink:href="#glyph0-6" x="638.308594" y="445.900391"/>
<use xlink:href="#glyph0-25" x="640.308594" y="445.900391"/>
<use xlink:href="#glyph0-21" x="647.308594" y="445.900391"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="621.308594" y="477.380859"/>
<use xlink:href="#glyph0-31" x="627.308594" y="477.380859"/>
<use xlink:href="#glyph0-5" x="632.308594" y="477.380859"/>
<use xlink:href="#glyph0-23" x="637.308594" y="477.380859"/>
<use xlink:href="#glyph0-4" x="641.308594" y="477.380859"/>
<use xlink:href="#glyph0-10" x="643.308594" y="477.380859"/>
<use xlink:href="#glyph0-2" x="646.308594" y="477.380859"/>
<use xlink:href="#glyph0-6" x="651.308594" y="477.380859"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-49" x="621.308594" y="508.865234"/>
<use xlink:href="#glyph0-22" x="626.308594" y="508.865234"/>
<use xlink:href="#glyph0-3" x="628.308594" y="508.865234"/>
<use xlink:href="#glyph0-3" x="632.308594" y="508.865234"/>
<use xlink:href="#glyph0-18" x="636.308594" y="508.865234"/>
<use xlink:href="#glyph0-30" x="641.308594" y="508.865234"/>
<use xlink:href="#glyph0-7" x="646.308594" y="508.865234"/>
<use xlink:href="#glyph0-8" x="648.308594" y="508.865234"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="621.308594" y="540.345703"/>
<use xlink:href="#glyph0-22" x="627.308594" y="540.345703"/>
<use xlink:href="#glyph0-50" x="629.308594" y="540.345703"/>
<use xlink:href="#glyph0-22" x="633.308594" y="540.345703"/>
<use xlink:href="#glyph0-19" x="635.308594" y="540.345703"/>
<use xlink:href="#glyph0-22" x="640.308594" y="540.345703"/>
<use xlink:href="#glyph0-3" x="642.308594" y="540.345703"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-32" x="621.308594" y="571.826172"/>
<use xlink:href="#glyph0-18" x="627.308594" y="571.826172"/>
<use xlink:href="#glyph0-16" x="632.308594" y="571.826172"/>
<use xlink:href="#glyph0-2" x="639.308594" y="571.826172"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(3.137255%,57.647059%,57.254902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 198.074219 L 634.640625 198.074219 L 634.640625 213.816406 L 621.308594 213.816406 Z M 621.308594 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(42.352941%,76.470588%,50.980392%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 198.074219 L 647.976562 198.074219 L 647.976562 213.816406 L 634.644531 213.816406 Z M 634.644531 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(91.764706%,88.627451%,61.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 198.074219 L 661.308594 198.074219 L 661.308594 213.816406 L 647.976562 213.816406 Z M 647.976562 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(91.372549%,62.352941%,41.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 198.074219 L 674.640625 198.074219 L 674.640625 213.816406 L 661.308594 213.816406 Z M 661.308594 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(81.176471%,34.901961%,49.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 198.074219 L 687.976562 198.074219 L 687.976562 213.816406 L 674.644531 213.816406 Z M 674.644531 198.074219 "/>
<path style="fill-rule:nonzero;fill:rgb(45.490196%,21.568627%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 229.554688 L 634.640625 229.554688 L 634.640625 245.296875 L 621.308594 245.296875 Z M 621.308594 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(94.901961%,61.960784%,31.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 229.554688 L 647.976562 229.554688 L 647.976562 245.296875 L 634.644531 245.296875 Z M 634.644531 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 229.554688 L 661.308594 229.554688 L 661.308594 245.296875 L 647.976562 245.296875 Z M 647.976562 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(59.215686%,57.254902%,74.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 229.554688 L 674.640625 229.554688 L 674.640625 245.296875 L 661.308594 245.296875 Z M 661.308594 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(10.980392%,5.098039%,31.764706%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 229.554688 L 687.976562 229.554688 L 687.976562 245.296875 L 674.644531 245.296875 Z M 674.644531 229.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(38.039216%,7.45098%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 261.035156 L 634.640625 261.035156 L 634.640625 276.777344 L 621.308594 276.777344 Z M 621.308594 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(87.45098%,50.980392%,44.313725%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 261.035156 L 647.976562 261.035156 L 647.976562 276.777344 L 634.644531 276.777344 Z M 634.644531 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 261.035156 L 661.308594 261.035156 L 661.308594 276.777344 L 647.976562 276.777344 Z M 647.976562 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(43.529412%,68.627451%,81.960784%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 261.035156 L 674.640625 261.035156 L 674.640625 276.777344 L 661.308594 276.777344 Z M 661.308594 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,20.784314%,37.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 261.035156 L 687.976562 261.035156 L 687.976562 276.777344 L 674.644531 276.777344 Z M 674.644531 261.035156 "/>
<path style="fill-rule:nonzero;fill:rgb(40.784314%,0%,11.372549%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 292.519531 L 634.640625 292.519531 L 634.640625 308.261719 L 621.308594 308.261719 Z M 621.308594 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(88.627451%,50.980392%,34.901961%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 292.519531 L 647.976562 292.519531 L 647.976562 308.261719 L 634.644531 308.261719 Z M 634.644531 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 292.519531 L 661.308594 292.519531 L 661.308594 308.261719 L 647.976562 308.261719 Z M 647.976562 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(60.784314%,60.784314%,60.784314%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 292.519531 L 674.640625 292.519531 L 674.640625 308.261719 L 661.308594 308.261719 Z M 661.308594 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(18.823529%,18.823529%,18.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 292.519531 L 687.976562 292.519531 L 687.976562 308.261719 L 674.644531 308.261719 Z M 674.644531 292.519531 "/>
<path style="fill-rule:nonzero;fill:rgb(56.470588%,0%,36.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 324 L 634.640625 324 L 634.640625 339.742188 L 621.308594 339.742188 Z M 621.308594 324 "/>
<path style="fill-rule:nonzero;fill:rgb(91.764706%,60%,75.294118%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 324 L 647.976562 324 L 647.976562 339.742188 L 634.644531 339.742188 Z M 634.644531 324 "/>
<path style="fill-rule:nonzero;fill:rgb(97.647059%,97.647059%,97.647059%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 324 L 661.308594 324 L 661.308594 339.742188 L 647.976562 339.742188 Z M 647.976562 324 "/>
<path style="fill-rule:nonzero;fill:rgb(58.039216%,78.823529%,43.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 324 L 674.640625 324 L 674.640625 339.742188 L 661.308594 339.742188 Z M 661.308594 324 "/>
<path style="fill-rule:nonzero;fill:rgb(19.215686%,36.470588%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 324 L 687.976562 324 L 687.976562 339.742188 L 674.644531 339.742188 Z M 674.644531 324 "/>
<path style="fill-rule:nonzero;fill:rgb(25.490196%,5.490196%,28.235294%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 355.480469 L 634.640625 355.480469 L 634.640625 371.222656 L 621.308594 371.222656 Z M 621.308594 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(69.019608%,52.156863%,72.54902%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 355.480469 L 647.976562 355.480469 L 647.976562 371.222656 L 634.644531 371.222656 Z M 634.644531 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,96.470588%,96.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 355.480469 L 661.308594 355.480469 L 661.308594 371.222656 L 647.976562 371.222656 Z M 647.976562 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(48.627451%,74.901961%,48.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 355.480469 L 674.640625 355.480469 L 674.640625 371.222656 L 661.308594 371.222656 Z M 661.308594 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(9.019608%,26.666667%,9.019608%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 355.480469 L 687.976562 355.480469 L 687.976562 371.222656 L 674.644531 371.222656 Z M 674.644531 355.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(32.54902%,21.176471%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 386.964844 L 634.640625 386.964844 L 634.640625 402.707031 L 621.308594 402.707031 Z M 621.308594 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(81.960784%,63.921569%,34.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 386.964844 L 647.976562 386.964844 L 647.976562 402.707031 L 634.644531 402.707031 Z M 634.644531 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(96.470588%,96.470588%,96.470588%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 386.964844 L 661.308594 386.964844 L 661.308594 402.707031 L 647.976562 402.707031 Z M 647.976562 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(40.392157%,69.803922%,66.27451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 386.964844 L 674.640625 386.964844 L 674.640625 402.707031 L 661.308594 402.707031 Z M 661.308594 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,23.921569%,20.392157%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 386.964844 L 687.976562 386.964844 L 687.976562 402.707031 L 674.644531 402.707031 Z M 674.644531 386.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(64.705882%,6.666667%,13.333333%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 418.445312 L 634.640625 418.445312 L 634.640625 434.1875 L 621.308594 434.1875 Z M 621.308594 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(92.156863%,61.176471%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 418.445312 L 647.976562 418.445312 L 647.976562 434.1875 L 634.644531 434.1875 Z M 634.644531 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(99.607843%,99.215686%,74.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 418.445312 L 661.308594 418.445312 L 661.308594 434.1875 L 647.976562 434.1875 Z M 647.976562 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(41.176471%,73.333333%,67.058824%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 418.445312 L 674.640625 418.445312 L 674.640625 434.1875 L 661.308594 434.1875 Z M 661.308594 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(19.607843%,30.196078%,62.745098%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 418.445312 L 687.976562 418.445312 L 687.976562 434.1875 L 674.644531 434.1875 Z M 674.644531 418.445312 "/>
<path style="fill-rule:nonzero;fill:rgb(64.705882%,6.666667%,13.333333%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 449.925781 L 634.640625 449.925781 L 634.640625 465.667969 L 621.308594 465.667969 Z M 621.308594 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(92.156863%,61.176471%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 449.925781 L 647.976562 449.925781 L 647.976562 465.667969 L 634.644531 465.667969 Z M 634.644531 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(99.607843%,99.215686%,74.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 449.925781 L 661.308594 449.925781 L 661.308594 465.667969 L 647.976562 465.667969 Z M 647.976562 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(52.156863%,73.72549%,27.843137%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 449.925781 L 674.640625 449.925781 L 674.640625 465.667969 L 661.308594 465.667969 Z M 661.308594 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,38.431373%,15.686275%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 449.925781 L 687.976562 449.925781 L 687.976562 465.667969 L 674.644531 465.667969 Z M 674.644531 449.925781 "/>
<path style="fill-rule:nonzero;fill:rgb(65.490196%,10.588235%,29.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 481.40625 L 634.640625 481.40625 L 634.640625 497.148438 L 621.308594 497.148438 Z M 621.308594 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(95.294118%,60.784314%,16.078431%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 481.40625 L 647.976562 481.40625 L 647.976562 497.148438 L 634.644531 497.148438 Z M 634.644531 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(99.607843%,99.215686%,74.509804%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 481.40625 L 661.308594 481.40625 L 661.308594 497.148438 L 647.976562 497.148438 Z M 647.976562 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(13.333333%,76.862745%,70.196078%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 481.40625 L 674.640625 481.40625 L 674.640625 497.148438 L 661.308594 497.148438 Z M 661.308594 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(34.509804%,29.411765%,62.352941%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 481.40625 L 687.976562 481.40625 L 687.976562 497.148438 L 674.644531 497.148438 Z M 674.644531 481.40625 "/>
<path style="fill-rule:nonzero;fill:rgb(23.137255%,60%,69.411765%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 512.890625 L 634.640625 512.890625 L 634.640625 528.632812 L 621.308594 528.632812 Z M 621.308594 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(48.627451%,72.941176%,58.823529%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 512.890625 L 647.976562 512.890625 L 647.976562 528.632812 L 634.644531 528.632812 Z M 634.644531 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(91.764706%,79.607843%,16.862745%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 512.890625 L 661.308594 512.890625 L 661.308594 528.632812 L 647.976562 528.632812 Z M 647.976562 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(90.588235%,56.078431%,3.921569%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 512.890625 L 674.640625 512.890625 L 674.640625 528.632812 L 661.308594 528.632812 Z M 661.308594 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(96.078431%,9.803922%,10.980392%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 512.890625 L 687.976562 512.890625 L 687.976562 528.632812 L 674.644531 528.632812 Z M 674.644531 512.890625 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,12.941176%,30.588235%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 544.371094 L 634.640625 544.371094 L 634.640625 560.113281 L 621.308594 560.113281 Z M 621.308594 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(24.313725%,29.803922%,43.137255%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 544.371094 L 647.976562 544.371094 L 647.976562 560.113281 L 634.644531 560.113281 Z M 634.644531 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(48.627451%,48.627451%,48.627451%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 544.371094 L 661.308594 544.371094 L 661.308594 560.113281 L 647.976562 560.113281 Z M 647.976562 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(74.901961%,69.411765%,43.921569%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 544.371094 L 674.640625 544.371094 L 674.640625 560.113281 L 661.308594 560.113281 Z M 661.308594 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(100%,91.372549%,24.705882%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 544.371094 L 687.976562 544.371094 L 687.976562 560.113281 L 674.644531 560.113281 Z M 674.644531 544.371094 "/>
<path style="fill-rule:nonzero;fill:rgb(49.019608%,0.392157%,7.058824%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 621.308594 575.851562 L 634.640625 575.851562 L 634.640625 591.59375 L 621.308594 591.59375 Z M 621.308594 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(77.254902%,63.921569%,25.490196%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 634.644531 575.851562 L 647.976562 575.851562 L 647.976562 591.59375 L 634.644531 591.59375 Z M 634.644531 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(83.921569%,93.72549%,81.176471%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 647.976562 575.851562 L 661.308594 575.851562 L 661.308594 591.59375 L 647.976562 591.59375 Z M 647.976562 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,66.666667%,67.058824%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 661.308594 575.851562 L 674.640625 575.851562 L 674.640625 591.59375 L 661.308594 591.59375 Z M 661.308594 575.851562 "/>
<path style="fill-rule:nonzero;fill:rgb(12.156863%,15.686275%,63.529412%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 674.644531 575.851562 L 687.976562 575.851562 L 687.976562 591.59375 L 674.644531 591.59375 Z M 674.644531 575.851562 "/>
</g>
</svg>