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
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
"<circle clip-path=\"url(#clip482)\" cx=\"931.088\" cy=\"1363.3\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"944.127\" cy=\"1383.95\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"918.98\" cy=\"1374.16\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"936.676\" cy=\"1374.77\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"936.443\" cy=\"1374.68\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"911.413\" cy=\"1374.88\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"908.852\" cy=\"1365.4\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"920.028\" cy=\"1377.24\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"923.404\" cy=\"1361.75\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"918.864\" cy=\"1361.95\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"918.864\" cy=\"1351.2\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"912.344\" cy=\"1352.38\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"933.649\" cy=\"1352.56\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"913.625\" cy=\"1354.74\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"918.98\" cy=\"1360.95\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"910.016\" cy=\"1353.35\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"913.741\" cy=\"1350.92\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"915.953\" cy=\"1354.95\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"919.795\" cy=\"1346.97\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"919.795\" cy=\"1348.35\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"918.398\" cy=\"1344.16\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"913.858\" cy=\"1340.21\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"910.132\" cy=\"1346.37\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"935.163\" cy=\"1344.84\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"905.243\" cy=\"1342.56\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"916.535\" cy=\"1345.68\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"907.105\" cy=\"1349.79\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"905.126\" cy=\"1340.33\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"898.025\" cy=\"1343.77\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"896.628\" cy=\"1335.05\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"889.526\" cy=\"1334.26\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"907.105\" cy=\"1333.44\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"907.687\" cy=\"1338.83\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"893.018\" cy=\"1337.38\" r=\"14\" fill=\"#b63457\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"795.575\" cy=\"910.777\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"837.719\" cy=\"992.145\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"877.069\" cy=\"1084.78\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"905.01\" cy=\"1187.48\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"893.833\" cy=\"1292.14\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"919.562\" cy=\"1347.75\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"923.055\" cy=\"1372.87\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"910.016\" cy=\"1376.55\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"905.01\" cy=\"1373.66\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"910.016\" cy=\"1373.68\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"910.016\" cy=\"1371.22\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"915.255\" cy=\"1367.67\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"918.864\" cy=\"1358.31\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"896.511\" cy=\"1365.65\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"891.971\" cy=\"1353.84\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"909.783\" cy=\"1364.46\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"900.353\" cy=\"1354.14\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"897.442\" cy=\"1346.86\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"924.219\" cy=\"1348.17\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"908.619\" cy=\"1346.47\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"887.081\" cy=\"1340.64\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"909.667\" cy=\"1344.89\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"903.496\" cy=\"1353.52\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"920.261\" cy=\"1348.26\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"925.5\" cy=\"1335.99\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"918.282\" cy=\"1336.22\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"906.64\" cy=\"1337.99\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"902.565\" cy=\"1341.47\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"906.989\" cy=\"1340.26\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"907.222\" cy=\"1338.45\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"919.446\" cy=\"1331.05\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"899.189\" cy=\"1329.49\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"891.389\" cy=\"1329.77\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"892.553\" cy=\"1330.96\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"902.565\" cy=\"1332.62\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"896.278\" cy=\"1327.8\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"902.681\" cy=\"1334.48\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"902.565\" cy=\"1329.43\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"891.505\" cy=\"1327.19\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"896.045\" cy=\"1332.95\" r=\"14\" fill=\"#bf3951\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"777.529\" cy=\"886.256\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"818.393\" cy=\"962.131\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"873.343\" cy=\"1072.59\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"898.956\" cy=\"1171.57\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"910.249\" cy=\"1266.74\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"882.308\" cy=\"1339.28\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"903.031\" cy=\"1359.57\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"919.446\" cy=\"1367.41\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"900.702\" cy=\"1376.61\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"926.897\" cy=\"1366.58\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"904.078\" cy=\"1371.03\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"893.484\" cy=\"1352.22\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"890.108\" cy=\"1363.45\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"896.162\" cy=\"1360.78\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"873.46\" cy=\"1369.73\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"855.531\" cy=\"1355.19\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"881.959\" cy=\"1352.2\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"899.305\" cy=\"1350.59\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"891.039\" cy=\"1351.96\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"877.302\" cy=\"1354.36\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"865.66\" cy=\"1355.57\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"877.185\" cy=\"1347.6\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"881.26\" cy=\"1348.29\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"880.911\" cy=\"1347.79\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"880.794\" cy=\"1348.69\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"900.819\" cy=\"1350.99\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"908.27\" cy=\"1343.45\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"903.496\" cy=\"1342.56\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"914.323\" cy=\"1345.34\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"902.565\" cy=\"1347.45\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"901.866\" cy=\"1351.37\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"877.767\" cy=\"1348.56\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"881.842\" cy=\"1347.26\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"889.992\" cy=\"1345.15\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"881.842\" cy=\"1343.17\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"879.514\" cy=\"1343.81\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"859.839\" cy=\"1340.99\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"886.383\" cy=\"1344.12\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"887.197\" cy=\"1339.48\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"878.582\" cy=\"1345.08\" r=\"14\" fill=\"#c83f4b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"750.636\" cy=\"841.143\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"775.899\" cy=\"932.225\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"809.894\" cy=\"1051.92\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"865.31\" cy=\"1182.32\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"875.323\" cy=\"1268.61\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"889.759\" cy=\"1328.82\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"872.528\" cy=\"1366.95\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"887.78\" cy=\"1380.66\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"877.535\" cy=\"1365.22\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"859.955\" cy=\"1358.8\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"880.561\" cy=\"1361.4\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"884.869\" cy=\"1361.24\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"861.236\" cy=\"1363.06\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"863.331\" cy=\"1354.21\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"877.302\" cy=\"1355.94\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"878\" cy=\"1344.66\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"881.493\" cy=\"1354.92\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"884.171\" cy=\"1347.25\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"869.618\" cy=\"1345.28\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"870.433\" cy=\"1344.94\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"862.167\" cy=\"1345.14\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"866.242\" cy=\"1345.73\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"857.161\" cy=\"1338.6\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"863.681\" cy=\"1346.85\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"871.83\" cy=\"1345.19\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"858.791\" cy=\"1338.72\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"861.701\" cy=\"1335.79\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"854.134\" cy=\"1338.63\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"853.785\" cy=\"1334.98\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"846.567\" cy=\"1334.13\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"853.785\" cy=\"1339.97\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"840.746\" cy=\"1327.61\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"847.032\" cy=\"1328.62\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"842.376\" cy=\"1323.7\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"843.656\" cy=\"1329.55\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"847.498\" cy=\"1325.48\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"851.573\" cy=\"1322.28\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"855.88\" cy=\"1329.45\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"850.758\" cy=\"1323.31\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"867.057\" cy=\"1334.08\" r=\"14\" fill=\"#d14644\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"690.796\" cy=\"806.158\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"756.108\" cy=\"921.566\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"795.109\" cy=\"1051.59\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"814.667\" cy=\"1150.79\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"839.465\" cy=\"1259.41\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"876.603\" cy=\"1333.55\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"877.884\" cy=\"1356.46\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"854.949\" cy=\"1386.4\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"879.281\" cy=\"1370.49\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"861.003\" cy=\"1368.38\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"871.83\" cy=\"1365.65\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"866.242\" cy=\"1373.21\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"847.498\" cy=\"1354.81\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"857.51\" cy=\"1358.03\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"853.436\" cy=\"1358.01\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"877.069\" cy=\"1355.19\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"869.734\" cy=\"1351.68\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"846.334\" cy=\"1338.4\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"862.167\" cy=\"1350.67\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"865.776\" cy=\"1350.49\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"868.104\" cy=\"1350.83\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"858.791\" cy=\"1357.26\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"864.612\" cy=\"1355.14\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"846.567\" cy=\"1352.09\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"839.814\" cy=\"1356.27\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"844.704\" cy=\"1342.25\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"834.808\" cy=\"1333.87\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"846.567\" cy=\"1337.38\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"845.519\" cy=\"1331.44\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"852.97\" cy=\"1332.47\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"841.793\" cy=\"1341.11\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"836.555\" cy=\"1339.92\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"838.301\" cy=\"1346.88\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"848.546\" cy=\"1338.38\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"844.005\" cy=\"1341.68\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"840.862\" cy=\"1341.22\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"850.409\" cy=\"1345.6\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"855.997\" cy=\"1341.05\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"857.045\" cy=\"1336.36\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"855.764\" cy=\"1335.94\" r=\"14\" fill=\"#d94d3c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"676.476\" cy=\"783.204\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"714.197\" cy=\"887.068\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"750.52\" cy=\"1006.53\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"797.437\" cy=\"1144.04\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"850.525\" cy=\"1254.16\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"841.095\" cy=\"1322.06\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"851.224\" cy=\"1350.08\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"849.361\" cy=\"1360.6\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"867.755\" cy=\"1362.83\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"836.555\" cy=\"1365.62\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"841.677\" cy=\"1355.74\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"856.812\" cy=\"1352.72\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"836.555\" cy=\"1349.16\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"849.826\" cy=\"1334.7\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"826.193\" cy=\"1334.82\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"819.674\" cy=\"1334.28\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"831.548\" cy=\"1329.31\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"819.441\" cy=\"1331.2\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"841.677\" cy=\"1322.24\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"825.029\" cy=\"1331.28\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"829.104\" cy=\"1328.26\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"831.432\" cy=\"1330.78\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"814.784\" cy=\"1311.61\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"828.871\" cy=\"1315.81\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"836.322\" cy=\"1303.93\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"820.605\" cy=\"1302.97\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"828.871\" cy=\"1311.76\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"828.754\" cy=\"1316.68\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"839.116\" cy=\"1316.03\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"822.235\" cy=\"1306.12\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"813.503\" cy=\"1304.92\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"822.701\" cy=\"1310.48\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"833.528\" cy=\"1309.86\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"827.823\" cy=\"1319.02\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"832.946\" cy=\"1310.21\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"833.411\" cy=\"1315.24\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"847.847\" cy=\"1304.72\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"849.012\" cy=\"1300.08\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"847.498\" cy=\"1306.93\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"835.507\" cy=\"1309.66\" r=\"14\" fill=\"#e05535\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"677.291\" cy=\"746.948\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"733.522\" cy=\"864.438\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"749.356\" cy=\"971.7\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"782.303\" cy=\"1110.82\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"806.867\" cy=\"1236.82\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"807.566\" cy=\"1315.01\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"823.865\" cy=\"1333.32\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"804.888\" cy=\"1352.5\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"835.507\" cy=\"1341.97\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"820.256\" cy=\"1341.72\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"810.011\" cy=\"1342.36\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"827.707\" cy=\"1322.9\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"814.9\" cy=\"1322.05\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"811.524\" cy=\"1333.5\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"815.25\" cy=\"1327.42\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"843.074\" cy=\"1327.38\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"845.519\" cy=\"1315.46\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"835.972\" cy=\"1326.83\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"828.754\" cy=\"1327.56\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"828.056\" cy=\"1330.13\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"819.906\" cy=\"1324.96\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"820.954\" cy=\"1326.82\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"810.942\" cy=\"1324.19\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"811.408\" cy=\"1312.11\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"798.252\" cy=\"1303.68\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"787.774\" cy=\"1313.96\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"793.013\" cy=\"1310.78\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"807.682\" cy=\"1311.37\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"805.936\" cy=\"1316.06\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"818.626\" cy=\"1310.68\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"820.838\" cy=\"1311.08\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"827.241\" cy=\"1317.49\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"836.089\" cy=\"1322.56\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"816.297\" cy=\"1311.61\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"811.291\" cy=\"1309.32\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"805.005\" cy=\"1308.43\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"793.13\" cy=\"1305.47\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"794.294\" cy=\"1306.92\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"794.061\" cy=\"1303.02\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"778.344\" cy=\"1292.4\" r=\"14\" fill=\"#e75f2d\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"636.661\" cy=\"716.6\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"703.137\" cy=\"813.807\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"732.824\" cy=\"954.879\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"768.216\" cy=\"1119.07\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"781.488\" cy=\"1222.55\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"815.25\" cy=\"1293.95\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"834.343\" cy=\"1318.28\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"779.974\" cy=\"1337.69\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"813.27\" cy=\"1331.86\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"829.453\" cy=\"1334.41\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"831.316\" cy=\"1338.02\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"806.402\" cy=\"1342.4\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"790.685\" cy=\"1329.76\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"793.828\" cy=\"1319.3\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"796.389\" cy=\"1330.85\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"810.942\" cy=\"1324.43\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"802.56\" cy=\"1324.78\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"804.306\" cy=\"1321.36\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"777.413\" cy=\"1317.89\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"785.213\" cy=\"1319.25\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"788.007\" cy=\"1323.69\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"813.736\" cy=\"1321.64\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"810.593\" cy=\"1316.53\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"795.691\" cy=\"1313.2\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"806.984\" cy=\"1311.46\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"806.984\" cy=\"1308.37\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"797.204\" cy=\"1311\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"804.19\" cy=\"1308.02\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"796.972\" cy=\"1301.91\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"799.3\" cy=\"1310.12\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"805.936\" cy=\"1313.8\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"797.204\" cy=\"1308.24\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"794.41\" cy=\"1307.47\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"799.416\" cy=\"1306.3\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"796.157\" cy=\"1295.66\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"784.398\" cy=\"1290.31\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"775.085\" cy=\"1293.86\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"780.906\" cy=\"1291.43\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"786.028\" cy=\"1292.5\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"784.165\" cy=\"1299.68\" r=\"14\" fill=\"#ed6825\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"584.039\" cy=\"673.46\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"645.625\" cy=\"804.854\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"695.802\" cy=\"930.957\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"756.807\" cy=\"1088.84\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"775.783\" cy=\"1187.31\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"805.237\" cy=\"1273.8\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"793.246\" cy=\"1327.52\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"809.661\" cy=\"1323.51\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"777.646\" cy=\"1322.07\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"771.475\" cy=\"1321.04\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"771.475\" cy=\"1329.92\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"774.386\" cy=\"1319.44\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"784.98\" cy=\"1327.22\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"775.899\" cy=\"1323.51\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"789.404\" cy=\"1306.31\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"781.255\" cy=\"1304.27\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"795.225\" cy=\"1308.51\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"788.706\" cy=\"1304.68\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"785.562\" cy=\"1293.49\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"797.67\" cy=\"1299.05\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"787.542\" cy=\"1299.65\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"811.873\" cy=\"1297.14\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"814.9\" cy=\"1299.49\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"791.5\" cy=\"1289.7\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"788.473\" cy=\"1298.03\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"787.192\" cy=\"1296.94\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"787.309\" cy=\"1290.5\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"780.906\" cy=\"1287.74\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"778.81\" cy=\"1283.9\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"774.502\" cy=\"1285.42\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"776.132\" cy=\"1288.43\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"768.449\" cy=\"1286.74\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"768.449\" cy=\"1286.96\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"778.461\" cy=\"1284.38\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"774.735\" cy=\"1291.06\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"785.562\" cy=\"1287.11\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"792.78\" cy=\"1290.46\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"791.151\" cy=\"1290.52\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"777.646\" cy=\"1285.51\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"781.72\" cy=\"1279.35\" r=\"14\" fill=\"#f1731c\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"583.224\" cy=\"644.431\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"641.667\" cy=\"761.578\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"696.85\" cy=\"906.117\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"730.495\" cy=\"1087.06\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"762.977\" cy=\"1207.7\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"792.431\" cy=\"1283.3\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"756.807\" cy=\"1309.01\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"797.903\" cy=\"1319.41\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"775.783\" cy=\"1310.7\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"774.735\" cy=\"1320.61\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"764.723\" cy=\"1304.15\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"753.663\" cy=\"1321.6\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"762.278\" cy=\"1314.51\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"778.344\" cy=\"1316.57\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"776.132\" cy=\"1312.87\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"762.045\" cy=\"1297.99\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"763.792\" cy=\"1299.03\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"767.401\" cy=\"1302.07\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"780.323\" cy=\"1299.33\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"768.449\" cy=\"1294.97\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"771.01\" cy=\"1299.74\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"775.201\" cy=\"1301.36\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"768.332\" cy=\"1301.03\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"766.004\" cy=\"1303.16\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"772.058\" cy=\"1312.38\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"777.413\" cy=\"1302.16\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"751.917\" cy=\"1294.42\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"767.983\" cy=\"1289.44\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"779.974\" cy=\"1299.3\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"772.523\" cy=\"1292.34\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"768.798\" cy=\"1298.53\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"770.661\" cy=\"1292.77\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"782.768\" cy=\"1297.91\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"777.529\" cy=\"1298.1\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"783.7\" cy=\"1293.16\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"790.568\" cy=\"1297.79\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"780.906\" cy=\"1297.18\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"780.906\" cy=\"1293.91\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"779.858\" cy=\"1300.37\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"782.535\" cy=\"1297.76\" r=\"14\" fill=\"#f57e14\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"571.582\" cy=\"599.711\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"618.965\" cy=\"730.214\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"686.838\" cy=\"882.789\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"711.985\" cy=\"1051.55\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"774.735\" cy=\"1190.06\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"770.311\" cy=\"1256.71\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"747.726\" cy=\"1289.15\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"766.353\" cy=\"1315.65\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"766.702\" cy=\"1312.05\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"776.365\" cy=\"1314.11\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"774.735\" cy=\"1308.13\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"779.392\" cy=\"1322.37\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"771.01\" cy=\"1308.93\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"753.314\" cy=\"1312.98\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"744.582\" cy=\"1300.19\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"758.087\" cy=\"1307.64\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"755.759\" cy=\"1311.3\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"732.475\" cy=\"1295.19\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"736.782\" cy=\"1289.33\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"742.138\" cy=\"1293.86\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"733.755\" cy=\"1299.7\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"725.489\" cy=\"1297.31\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"722.695\" cy=\"1291.39\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"723.627\" cy=\"1291.78\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"740.74\" cy=\"1295.31\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"736.899\" cy=\"1288.68\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"721.415\" cy=\"1281.48\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"735.734\" cy=\"1292.02\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"745.397\" cy=\"1286.7\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"728.749\" cy=\"1282.09\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"734.105\" cy=\"1285.28\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"738.994\" cy=\"1286.4\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"751.218\" cy=\"1290.52\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"747.376\" cy=\"1285.61\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"750.869\" cy=\"1286.85\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"755.759\" cy=\"1283.63\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"744.932\" cy=\"1285.35\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"738.063\" cy=\"1280.23\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"737.597\" cy=\"1281.8\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"736.433\" cy=\"1282.52\" r=\"14\" fill=\"#f8890b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"516.747\" cy=\"563.328\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"575.889\" cy=\"709.011\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"643.646\" cy=\"868.097\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"695.104\" cy=\"1041.61\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"735.851\" cy=\"1170.96\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"761.347\" cy=\"1263.3\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"746.678\" cy=\"1282.77\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"745.514\" cy=\"1285.25\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"745.63\" cy=\"1302.85\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"736.549\" cy=\"1307.44\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"744.699\" cy=\"1303.01\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"740.508\" cy=\"1297.02\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"730.263\" cy=\"1292.68\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"718.504\" cy=\"1293.19\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"733.406\" cy=\"1296.44\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"736.084\" cy=\"1283.58\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"726.77\" cy=\"1289.99\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"737.83\" cy=\"1273.07\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"745.048\" cy=\"1285.03\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"734.221\" cy=\"1287.8\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"718.271\" cy=\"1288.73\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"738.179\" cy=\"1293.65\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"739.576\" cy=\"1288.01\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"740.74\" cy=\"1286.67\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"738.063\" cy=\"1284.29\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"732.358\" cy=\"1286.03\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"737.83\" cy=\"1286.04\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"747.959\" cy=\"1283.47\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"739.227\" cy=\"1283.58\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"757.738\" cy=\"1284.26\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"758.204\" cy=\"1276.66\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"739.576\" cy=\"1277.37\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"739.343\" cy=\"1271.74\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"730.612\" cy=\"1277.91\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"731.078\" cy=\"1277.35\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"734.221\" cy=\"1271.28\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"736.666\" cy=\"1272.07\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"735.967\" cy=\"1258.78\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"729.681\" cy=\"1263.09\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"738.179\" cy=\"1269.39\" r=\"14\" fill=\"#fa9506\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"486.827\" cy=\"518.287\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"550.393\" cy=\"662.134\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"602.317\" cy=\"842.831\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"683.578\" cy=\"1018.66\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"708.841\" cy=\"1164.5\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"739.693\" cy=\"1216.08\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"749.821\" cy=\"1280.36\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"743.185\" cy=\"1289.54\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"765.305\" cy=\"1301.21\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"761.347\" cy=\"1293.19\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"743.418\" cy=\"1280.43\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"762.628\" cy=\"1282.76\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"768.798\" cy=\"1280.33\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"749.239\" cy=\"1272.11\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"774.502\" cy=\"1293.01\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"765.654\" cy=\"1292.78\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"759.95\" cy=\"1281.21\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"749.938\" cy=\"1287.34\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"756.574\" cy=\"1275.03\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"738.063\" cy=\"1267.67\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"725.14\" cy=\"1269.43\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"740.74\" cy=\"1262.06\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"745.397\" cy=\"1269.34\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"747.027\" cy=\"1264.68\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"745.397\" cy=\"1259.39\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"747.726\" cy=\"1260.8\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"738.179\" cy=\"1245.47\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"720.25\" cy=\"1256.18\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"720.949\" cy=\"1259.69\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"709.656\" cy=\"1262.87\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"714.546\" cy=\"1259.37\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"705.814\" cy=\"1260.86\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"717.456\" cy=\"1261.2\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"725.257\" cy=\"1258.49\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"722.113\" cy=\"1253.85\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"717.573\" cy=\"1256.6\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"723.627\" cy=\"1257.37\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"732.591\" cy=\"1253.42\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"725.722\" cy=\"1257.85\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"722.812\" cy=\"1254.26\" r=\"14\" fill=\"#fba208\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"466.687\" cy=\"467.214\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"532.93\" cy=\"625.184\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"574.725\" cy=\"797.528\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"652.843\" cy=\"1002.58\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"706.629\" cy=\"1137.07\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"717.107\" cy=\"1217.65\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"699.528\" cy=\"1261.94\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"710.588\" cy=\"1250.9\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"710.471\" cy=\"1263.24\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"712.101\" cy=\"1256.06\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"697.665\" cy=\"1261.34\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"692.193\" cy=\"1264.32\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"682.763\" cy=\"1253.41\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"710.355\" cy=\"1258.06\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"696.501\" cy=\"1254.98\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"711.286\" cy=\"1258.89\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"702.089\" cy=\"1244.01\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"697.898\" cy=\"1250\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"706.513\" cy=\"1246.49\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"697.548\" cy=\"1233.93\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"720.134\" cy=\"1235.8\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"707.328\" cy=\"1236.31\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"689.748\" cy=\"1238.48\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"697.199\" cy=\"1227.61\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"704.534\" cy=\"1227.95\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"701.623\" cy=\"1223.13\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"702.904\" cy=\"1227.16\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"710.588\" cy=\"1235.03\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"709.889\" cy=\"1230.97\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"699.178\" cy=\"1230.16\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"699.178\" cy=\"1235.52\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"695.453\" cy=\"1231.56\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"681.25\" cy=\"1231.7\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"685.557\" cy=\"1243.53\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"709.889\" cy=\"1241.2\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"703.719\" cy=\"1238.91\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"696.734\" cy=\"1232.41\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"696.966\" cy=\"1229.46\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"695.686\" cy=\"1236.3\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"687.071\" cy=\"1231.36\" r=\"14\" fill=\"#fbae12\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"462.146\" cy=\"448.752\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"508.598\" cy=\"610.077\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"578.683\" cy=\"796.108\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"635.729\" cy=\"985.569\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"680.435\" cy=\"1109.79\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"686.489\" cy=\"1234.37\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"695.802\" cy=\"1220.96\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"721.065\" cy=\"1250.58\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"695.919\" cy=\"1248.61\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"687.653\" cy=\"1239.64\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"706.28\" cy=\"1260.45\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"695.453\" cy=\"1259.34\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"691.378\" cy=\"1249.24\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"703.952\" cy=\"1246.91\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"696.151\" cy=\"1233.9\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"706.746\" cy=\"1241.53\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"703.719\" cy=\"1235.71\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"695.802\" cy=\"1240.68\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"707.328\" cy=\"1216.72\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"703.37\" cy=\"1235.67\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"706.396\" cy=\"1236.93\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"711.053\" cy=\"1234.83\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"713.032\" cy=\"1235.82\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"702.089\" cy=\"1228.91\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"703.486\" cy=\"1232.89\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"700.925\" cy=\"1231.25\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"695.336\" cy=\"1226.91\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"713.032\" cy=\"1243.1\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"715.244\" cy=\"1237.94\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"717.689\" cy=\"1244.6\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"713.265\" cy=\"1244.43\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"715.71\" cy=\"1243.58\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"711.053\" cy=\"1234.24\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"692.659\" cy=\"1231.71\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"693.357\" cy=\"1232.41\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"688.584\" cy=\"1228.74\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"691.145\" cy=\"1228.78\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"690.214\" cy=\"1218.19\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"683.229\" cy=\"1217.52\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"683.229\" cy=\"1210.8\" r=\"14\" fill=\"#fabb20\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"422.563\" cy=\"416.779\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"502.428\" cy=\"570.462\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"568.089\" cy=\"765.757\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"627.347\" cy=\"968.349\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"648.419\" cy=\"1120.91\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"672.984\" cy=\"1199.99\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"692.659\" cy=\"1219.48\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"691.96\" cy=\"1241.85\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"693.474\" cy=\"1239.81\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"688.468\" cy=\"1228.3\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"687.303\" cy=\"1249.33\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"678.456\" cy=\"1239.76\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"675.778\" cy=\"1224.05\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"678.805\" cy=\"1230.06\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"698.363\" cy=\"1231.63\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"701.274\" cy=\"1227.72\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"689.865\" cy=\"1232.52\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"693.939\" cy=\"1227\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"676.127\" cy=\"1222.63\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"667.396\" cy=\"1231.43\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"686.139\" cy=\"1235.88\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"683.462\" cy=\"1238.5\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"666.231\" cy=\"1217.44\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"669.375\" cy=\"1235.33\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"684.16\" cy=\"1226.89\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"679.853\" cy=\"1226.25\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"674.381\" cy=\"1230.08\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"663.437\" cy=\"1241.7\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"673.566\" cy=\"1239.31\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"672.518\" cy=\"1231.72\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"671.47\" cy=\"1224.92\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"657.849\" cy=\"1211.06\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"665.3\" cy=\"1218.01\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"674.497\" cy=\"1222.75\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"672.402\" cy=\"1222.15\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"672.984\" cy=\"1227.44\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"675.429\" cy=\"1222.55\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"669.142\" cy=\"1220.09\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"669.84\" cy=\"1228.88\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"676.011\" cy=\"1222.05\" r=\"14\" fill=\"#f9c830\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"379.371\" cy=\"378.88\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"450.271\" cy=\"523.543\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"531.184\" cy=\"727.139\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"622.807\" cy=\"940.633\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"661.807\" cy=\"1116.64\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"676.942\" cy=\"1182.71\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"642.714\" cy=\"1203.54\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"674.73\" cy=\"1205.54\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"691.844\" cy=\"1226.98\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"652.61\" cy=\"1228.8\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"660.294\" cy=\"1213.78\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"673.682\" cy=\"1211.59\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"680.784\" cy=\"1226.09\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"644.694\" cy=\"1218.16\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"662.273\" cy=\"1227.41\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"641.783\" cy=\"1227.31\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"639.105\" cy=\"1222.6\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"669.84\" cy=\"1226.56\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"657.733\" cy=\"1217.09\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"672.402\" cy=\"1218.56\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"668.211\" cy=\"1220.98\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"679.969\" cy=\"1215.84\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"682.88\" cy=\"1210.13\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"651.912\" cy=\"1202.49\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"659.828\" cy=\"1202.33\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"654.24\" cy=\"1202.55\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"659.945\" cy=\"1220.82\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"677.408\" cy=\"1218.11\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"645.159\" cy=\"1207.47\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"660.061\" cy=\"1214.51\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"647.371\" cy=\"1199.95\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"650.631\" cy=\"1198.36\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"644.577\" cy=\"1204.92\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"657.151\" cy=\"1209.34\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"654.589\" cy=\"1203.28\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"650.98\" cy=\"1205.19\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"644.111\" cy=\"1199.55\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"643.064\" cy=\"1189.67\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"644.694\" cy=\"1192.63\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"661.691\" cy=\"1196.72\" r=\"14\" fill=\"#f6d442\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"393.924\" cy=\"347.158\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"459.818\" cy=\"514.317\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"509.297\" cy=\"695.814\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"617.451\" cy=\"927.795\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"648.768\" cy=\"1072.84\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"647.488\" cy=\"1154.59\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"665.649\" cy=\"1203.6\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"653.774\" cy=\"1221.92\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"631.422\" cy=\"1198.87\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"652.377\" cy=\"1209.93\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"667.046\" cy=\"1214.62\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"659.13\" cy=\"1211.05\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"652.261\" cy=\"1220.28\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"637.476\" cy=\"1205.43\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"656.918\" cy=\"1207.94\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"641.434\" cy=\"1216.81\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"638.058\" cy=\"1207.21\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"650.515\" cy=\"1206.21\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"658.78\" cy=\"1207.81\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"648.652\" cy=\"1194.8\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"650.98\" cy=\"1201.63\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"637.825\" cy=\"1189.51\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"664.485\" cy=\"1197.98\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"638.407\" cy=\"1197.51\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"659.828\" cy=\"1196.84\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"664.019\" cy=\"1199.83\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"659.013\" cy=\"1188.34\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"650.398\" cy=\"1185.05\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"654.007\" cy=\"1191.35\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"653.774\" cy=\"1201.21\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"659.945\" cy=\"1201.86\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"668.094\" cy=\"1205.06\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"665.766\" cy=\"1201.49\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"668.793\" cy=\"1186.87\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"657.966\" cy=\"1194.57\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"653.192\" cy=\"1188.9\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"655.986\" cy=\"1183.02\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"641.201\" cy=\"1189.91\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"646.44\" cy=\"1187.33\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"662.39\" cy=\"1178.04\" r=\"14\" fill=\"#f3e157\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"352.129\" cy=\"283.13\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"411.969\" cy=\"487.754\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"506.27\" cy=\"679.917\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"584.039\" cy=\"903.006\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"614.308\" cy=\"1074.19\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"640.037\" cy=\"1143.79\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"663.903\" cy=\"1184.19\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"639.105\" cy=\"1207.02\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"652.144\" cy=\"1190.78\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"638.174\" cy=\"1197.65\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"677.175\" cy=\"1184.1\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"658.897\" cy=\"1204.76\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"659.595\" cy=\"1199.12\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"636.195\" cy=\"1184.67\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"641.434\" cy=\"1194.22\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"646.207\" cy=\"1197.72\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"640.852\" cy=\"1185.33\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"649.467\" cy=\"1187.65\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"643.064\" cy=\"1187.52\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"619.663\" cy=\"1185.62\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"629.908\" cy=\"1191.75\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"628.511\" cy=\"1188.49\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"612.329\" cy=\"1168.78\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"622.224\" cy=\"1187.87\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"614.424\" cy=\"1186.18\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"623.621\" cy=\"1181.07\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"608.603\" cy=\"1170.56\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"615.472\" cy=\"1165.96\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"611.397\" cy=\"1164.06\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"598.94\" cy=\"1172.73\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"603.946\" cy=\"1176.29\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"606.857\" cy=\"1176.75\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"608.72\" cy=\"1175.33\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"608.254\" cy=\"1164.61\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"612.794\" cy=\"1168.49\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"613.027\" cy=\"1159.86\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"612.911\" cy=\"1165.17\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"604.994\" cy=\"1162.21\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"604.878\" cy=\"1158.74\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"592.421\" cy=\"1158.09\" r=\"14\" fill=\"#f1ed70\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"331.755\" cy=\"260.606\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"397.416\" cy=\"442.182\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"463.194\" cy=\"673.155\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"535.491\" cy=\"877.748\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"598.125\" cy=\"1046.03\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"628.511\" cy=\"1119.44\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"618.383\" cy=\"1165.03\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"643.529\" cy=\"1201.08\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"622.923\" cy=\"1193.18\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"632.353\" cy=\"1186.2\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"630.025\" cy=\"1182.52\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"621.642\" cy=\"1186.95\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"629.093\" cy=\"1188.86\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"615.239\" cy=\"1182.97\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"618.266\" cy=\"1184.71\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"625.484\" cy=\"1179.87\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"598.242\" cy=\"1182.67\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"606.391\" cy=\"1165.26\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"612.562\" cy=\"1168.65\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"609.302\" cy=\"1180.34\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"600.57\" cy=\"1171.9\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"601.734\" cy=\"1172.52\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"613.376\" cy=\"1181.84\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"613.027\" cy=\"1180.31\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"620.827\" cy=\"1182.34\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"620.944\" cy=\"1176.66\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"621.526\" cy=\"1175.85\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"629.675\" cy=\"1174.83\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"627.463\" cy=\"1170.91\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"621.06\" cy=\"1174.04\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"619.198\" cy=\"1177.58\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"614.191\" cy=\"1182.54\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"606.508\" cy=\"1180.69\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"598.125\" cy=\"1179.33\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"605.111\" cy=\"1181.41\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"604.179\" cy=\"1181.45\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"606.275\" cy=\"1179.12\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"616.52\" cy=\"1170.38\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"607.905\" cy=\"1169.25\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"600.687\" cy=\"1171.09\" r=\"14\" fill=\"#f3f68b\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"314.874\" cy=\"207.982\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"362.956\" cy=\"402.766\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"456.092\" cy=\"654.795\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"542.011\" cy=\"868.339\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"558.193\" cy=\"1016.33\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"597.194\" cy=\"1091.28\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"599.29\" cy=\"1140.73\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"583.922\" cy=\"1145.7\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"601.385\" cy=\"1165.59\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"598.475\" cy=\"1152.66\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"602.899\" cy=\"1161.49\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"599.173\" cy=\"1162.28\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"602.084\" cy=\"1171.73\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"580.895\" cy=\"1167.78\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"592.072\" cy=\"1164.29\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"593.352\" cy=\"1153.86\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"591.839\" cy=\"1145.41\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"601.734\" cy=\"1147.1\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"592.537\" cy=\"1152.53\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"592.77\" cy=\"1152.81\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"591.024\" cy=\"1159.12\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"585.436\" cy=\"1158.29\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"563.199\" cy=\"1153.15\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"586.367\" cy=\"1160.53\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"596.612\" cy=\"1152\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"557.96\" cy=\"1146.76\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"566.692\" cy=\"1138.31\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"576.588\" cy=\"1142.77\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"577.286\" cy=\"1142.85\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"548.181\" cy=\"1137.28\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"562.734\" cy=\"1140.85\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"554.817\" cy=\"1148.86\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"557.029\" cy=\"1147.78\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"585.785\" cy=\"1156.5\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"586.251\" cy=\"1151.76\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"576.704\" cy=\"1144.71\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"574.259\" cy=\"1136.89\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"572.164\" cy=\"1133.5\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip482)\" cx=\"565.528\" cy=\"1140.85\" r=\"14\" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
" <rect x=\"2160\" y=\"123\" width=\"73\" height=\"1301\"/>\n",
" </clipPath>\n",
"</defs>\n",
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
"<image width=\"72\" height=\"1300\" xlink:href=\"data:image/png;base64,\n",
"iVBORw0KGgoAAAANSUhEUgAAAEgAAAUUCAYAAAB8mVRsAAALUklEQVR4nO3dwY3kRhBFQbaQ/lsh\n",
"L6WtkgXKdyQPERYMHj641dWc2d+/5+/78L/+evsH+DqBgkBBoCBQmHP/fftn+DQLCgIFgYJAYe79\n",
"8/bP8GkWFAQKAgWBgpN0sKAgUBAoCBTmekivLCgIFAQKAoW5x0N6Y0FBoCBQECg4SQcLCgIFgYJA\n",
"wUM6WFAQKAgUBAquO4IFBYGCQEGgMI+T9MqCgkBBoCBQcN0RLCgIFAQKAoV5XHesLCgIFAQKAoV5\n",
"zj9v/wyfZkFBoCBQECgIFFzaBwsKAgWBgkDBfVCwoCBQECgIFDykgwUFgYJAQaDguiNYUBAoCBQE\n",
"CvNzkl5ZUBAoCBQECvMcf3B7Y0FBoCBQECg4SQcLCgIFgYJAwUk6WFAQKAgUBAre7ggWFAQKAgWB\n",
"wvycpFcWFAQKAgWBglfwggUFgYJAQaDgJB0sKAgUBAoCBV8cBgsKAgWBgkBBoOCjRrCgIFAQKAgU\n",
"fNQIFhQECgIFgYKTdLCgIFAQKAgU5jnn7Z/h0ywoCBQECgIFJ+lgQUGgIFAQKLiTDhYUBAoCBYGC\n",
"h3SwoCBQECgIFObnTnplQUGgIFAQKDhJBwsKAgWBgkDB2x3BgoJAQaAgUHDdESwoCBQECgIF1x3B\n",
"goJAQaAgUHDdESwoCBQECgIFgYJ/xYIFBYGCQEGg4FcygwUFgYJAQaDgJB0sKAgUBAoCBQ/pYEFB\n",
"oCBQECh4SAcLCgIFgYJAwUM6WFAQKAgUBArzXA/pjQUFgYJAQaDgJB0sKAgUBAoCBQ/pYEFBoCBQ\n",
"ECh4SAcLCgIFgYJAYZ5z3/4ZPs2CgkBBoCBQcJIOFhQECgIFgYKTdLCgIFAQKAgUBAo+agQLCgIF\n",
"gYJAwUeNYEFBoCBQECjM4yC9sqAgUBAoCBTmuU7SGwsKAgWBgkDBSTpYUBAoCBQECh7SwYKCQEGg\n",
"IFAYf4BqZ0FBoCBQECg4SQcLCgIFgYJAwUM6WFAQKAgUBArznN/bP8OnWVAQKAgUBApzr4f0xoKC\n",
"QEGgIFBw3REsKAgUBAoCBdcdwYKCQEGgIFAQKMw9Gm3UCQIFgYJAwUeNYEFBoCBQECjM45vVlQUF\n",
"gYJAQaAw10l6ZUFBoCBQECjM4056pU4QKAgUBApO0sGCgkBBoCBQcCcdLCgIFAQKAgWv4AV1gkBB\n",
"oCBQ8ApesKAgUBAoCBTcSQcLCgIFgYJAYe7VaKNOECgIFAQKrjuCBQWBgkBBoCBQcB8ULCgIFAQK\n",
"AoV53Aet1AkCBYGCQMFJOlhQECgIFAQKHtLBgoJAQaAgUPArmcGCgkBBoCBQ8CuZQZ0gUBAoCBT8\n",
"V8bBgoJAQaAgUHAnHSwoCBQECgIFf3A7qBMECgIFgYLrjmBBQaAgUBAouO4IFhQECgIFgYKTdLCg\n",
"IFAQKAgUvIIX1AkCBYGCQEGg4KNGsKAgUBAoCBRc2gcLCgIFgYJAwUk6WFAQKAgUBAr+24hgQUGg\n",
"IFAQKPgP2II6QaAgUBAouO4IFhQECgIFgYIvDoMFBYGCQEGg4CQdLCgIFAQKAoU5HtIrCwoCBYGC\n",
"QMGvZAZ1gkBBoCBQcN0RLCgIFAQKAgUP6WBBQaAgUBAoeLsjWFAQKAgUBAoCBR81ggUFgYJAQaDg\n",
"IR0sKAgUBAoCBb83H9QJAgWBgkBhjkv7lQUFgYJAQaDguiNYUBAoCBQECh7SwYKCQEGgIFDwkA4W\n",
"FAQKAgWBgj9uEiwoCBQECgIFJ+lgQUGgIFAQKHhIBwsKAgWBgkDBe9JBnSBQECgIFLwnHSwoCBQE\n",
"CgIF1x3BgoJAQaAgUBAo+FcsWFAQKAgUBAreUQwWFAQKAgWBgpN0sKAgUBAoCBTmPh7SGwsKAgWB\n",
"gkDBdUewoCBQECgIFFx3BAsKAgWBgkDBSTpYUBAoCBQECk7SwYKCQEGgIFBwkg4WFAQKAgWBgpN0\n",
"sKAgUBAoCBQ8pIMFBYGCQEGgMMd70isLCgIFgYJAwUk6WFAQKAgUBAoCBd+sBgsKAgWBgkBh7n37\n",
"R/g2CwoCBYGCQMFJOlhQECgIFAQK/gJVsKAgUBAoCBScpIMFBYGCQEGg4PWXYEFBoCBQECh4kTxY\n",
"UBAoCBQECt7uCBYUBAoCBYGCO+lgQUGgIFAQKLiTDhYUBAoCBYGCO+lgQUGgIFAQKLjuCBYUBAoC\n",
"BYGCQME3q8GCgkBBoCBQcB8ULCgIFAQKAgXfrAYLCgIFgYJAYc7bP8HHWVAQKAgUBApO0sGCgkBB\n",
"oCBQ8PpLsKAgUBAoCBRcdwQLCgIFgYJAwXVHsKAgUBAoCBScpIMFBYGCQEGg4CQdLCgIFAQKAgVf\n",
"HAYLCgIFgYJAYfxW+M6CgkBBoCBQcJIOFhQECgIFgYJAwTerwYKCQEGgIFDwzWqwoCBQECgIFJyk\n",
"gwUFgYJAQaDgJB0sKAgUBAoChTnef1lZUBAoCBQECq47ggUFgYJAQaDguiNYUBAoCBQECk7SwYKC\n",
"QEGgIFDwP/UGCwoCBYGCQMH/1BssKAgUBAoCBW93BAsKAgWBgkDBX6AKFhQECgIFgYK/QBUsKAgU\n",
"BAoCBYGCb1aDBQWBgkBBoOAdxWBBQaAgUBAo+G2fYEFBoCBQECg4SQcLCgIFgYJAwTuKwYKCQEGg\n",
"IFDwjmKwoCBQECgIFJykgwUFgYJAQaDgFbxgQUGgIFAQKPjjJsGCgkBBoCBQcN0RLCgIFAQKAgVf\n",
"HAYLCgIFgYJAwUk6WFAQKAgUBApO0sGCgkBBoCBQECj4qBEsKAgUBAoCBQ/pYEFBoCBQECi4DwoW\n",
"FAQKAgWBgpN0sKAgUBAoCBScpIMFBYGCQEGg4CQdLCgIFAQKAgV/3CRYUBAoCBQECv5XhGBBQaAg\n",
"UBAouO4IFhQECgIFgcLcx1N6Y0FBoCBQECg4SQcLCgIFgYJAwReHwYKCQEGgIFDwxWGwoCBQECgI\n",
"FAQK7oOCBQWBgkBBoOCb1WBBQaAgUBAoOEkHCwoCBYGCQMEfNwkWFAQKAgWBwhzvv6wsKAgUBAoC\n",
"Ba+/BAsKAgWBgkBhrpP0yoKCQEGgIFBwkg4WFAQKAgWBgjvpYEFBoCBQECh4uyNYUBAoCBQECnP8\n",
"MsvKgoJAQaAgUHDdESwoCBQECgIFgYLfmw8WFAQKAgWBgtdfggUFgYJAQaDg0j5YUBAoCBQECq47\n",
"ggUFgYJAQaAw53HhsbGgIFAQKAgUXHcECwoCBYGCQMFDOlhQECgIFAQK7qSDBQWBgkBBoOBOOlhQ\n",
"ECgIFAQKc35O0hsLCgIFgYJAwUk6WFAQKAgUBApzPaRXFhQECgIFgYKTdLCgIFAQKAgUBApzfv4V\n",
"21hQECgIFAQKPmoECwoCBYGCQMGlfbCgIFAQKAgUnKSDBQWBgkBBoOAhHSwoCBQECgIFXxwGCwoC\n",
"BYGCQGHu8+ftn+HTLCgIFAQKAgXXHcGCgkBBoCBQ8HZHsKAgUBAoCBTmXNcdGwsKAgWBgkDBSTpY\n",
"UBAoCBQECnN8cbiyoCBQECgIFJykgwUFgYJAQaAgUPBRI1hQECgIFAQKc6+PGhsLCgIFgYJAwX1Q\n",
"sKAgUBAoCBS8oxgsKAgUBAoCBSfpYEFBoCBQECjMdZJeWVAQKAgUBApO0sGCgkBBoCBQmOPtjpUF\n",
"BYGCQEGg4G+5BgsKAgWBgkDBe9LBgoJAQaAgUHAnHSwoCBQECgIFJ+lgQUGgIFAQKHhIBwsKAgWB\n",
"gkBBoOCb1WBBQaAgUBAo+KgRLCgIFAQKAoV5fLO6sqAgUBAoCBScpIMFBYGCQEGg4B3FYEFBoCBQ\n",
"ECjM4yS9sqAgUBAoCBS83REsKAgUBAoCBV8cBgsKAgWBgkDBdUewoCBQECgIFOY+9+2f4dMsKAgU\n",
"BAoCBdcdwYKCQEGgIFCYx0l6ZUFBoCBQECj8B4FI7TdsedWZAAAAAElFTkSuQmCC\n",
"\" transform=\"translate(2161, 123)\"/>\n",
"</g>\n",
"<path clip-path=\"url(#clip480)\" d=\"M2280.7 1405.35 Q2277.09 1405.35 2275.26 1408.91 Q2273.45 1412.46 2273.45 1419.59 Q2273.45 1426.69 2275.26 1430.26 Q2277.09 1433.8 2280.7 1433.8 Q2284.33 1433.8 2286.14 1430.26 Q2287.97 1426.69 2287.97 1419.59 Q2287.97 1412.46 2286.14 1408.91 Q2284.33 1405.35 2280.7 1405.35 M2280.7 1401.65 Q2286.51 1401.65 2289.57 1406.25 Q2292.64 1410.84 2292.64 1419.59 Q2292.64 1428.31 2289.57 1432.92 Q2286.51 1437.5 2280.7 1437.5 Q2274.89 1437.5 2271.81 1432.92 Q2268.76 1428.31 2268.76 1419.59 Q2268.76 1410.84 2271.81 1406.25 Q2274.89 1401.65 2280.7 1401.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2280.7 1183.18 Q2277.09 1183.18 2275.26 1186.74 Q2273.45 1190.28 2273.45 1197.41 Q2273.45 1204.52 2275.26 1208.08 Q2277.09 1211.63 2280.7 1211.63 Q2284.33 1211.63 2286.14 1208.08 Q2287.97 1204.52 2287.97 1197.41 Q2287.97 1190.28 2286.14 1186.74 Q2284.33 1183.18 2280.7 1183.18 M2280.7 1179.47 Q2286.51 1179.47 2289.57 1184.08 Q2292.64 1188.66 2292.64 1197.41 Q2292.64 1206.14 2289.57 1210.75 Q2286.51 1215.33 2280.7 1215.33 Q2274.89 1215.33 2271.81 1210.75 Q2268.76 1206.14 2268.76 1197.41 Q2268.76 1188.66 2271.81 1184.08 Q2274.89 1179.47 2280.7 1179.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2300.86 1208.78 L2305.75 1208.78 L2305.75 1214.66 L2300.86 1214.66 L2300.86 1208.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2319.96 1210.72 L2336.28 1210.72 L2336.28 1214.66 L2314.33 1214.66 L2314.33 1210.72 Q2317 1207.97 2321.58 1203.34 Q2326.19 1198.69 2327.37 1197.34 Q2329.61 1194.82 2330.49 1193.08 Q2331.39 1191.33 2331.39 1189.64 Q2331.39 1186.88 2329.45 1185.15 Q2327.53 1183.41 2324.43 1183.41 Q2322.23 1183.41 2319.77 1184.17 Q2317.34 1184.94 2314.57 1186.49 L2314.57 1181.77 Q2317.39 1180.63 2319.84 1180.05 Q2322.3 1179.47 2324.33 1179.47 Q2329.7 1179.47 2332.9 1182.16 Q2336.09 1184.84 2336.09 1189.33 Q2336.09 1191.46 2335.28 1193.39 Q2334.5 1195.28 2332.39 1197.88 Q2331.81 1198.55 2328.71 1201.77 Q2325.61 1204.96 2319.96 1210.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2346.14 1180.1 L2364.5 1180.1 L2364.5 1184.03 L2350.42 1184.03 L2350.42 1192.51 Q2351.44 1192.16 2352.46 1192 Q2353.48 1191.81 2354.5 1191.81 Q2360.28 1191.81 2363.66 1194.98 Q2367.04 1198.15 2367.04 1203.57 Q2367.04 1209.15 2363.57 1212.25 Q2360.1 1215.33 2353.78 1215.33 Q2351.6 1215.33 2349.33 1214.96 Q2347.09 1214.59 2344.68 1213.85 L2344.68 1209.15 Q2346.76 1210.28 2348.99 1210.84 Q2351.21 1211.39 2353.69 1211.39 Q2357.69 1211.39 2360.03 1209.29 Q2362.37 1207.18 2362.37 1203.57 Q2362.37 1199.96 2360.03 1197.85 Q2357.69 1195.75 2353.69 1195.75 Q2351.81 1195.75 2349.94 1196.16 Q2348.08 1196.58 2346.14 1197.46 L2346.14 1180.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2280.7 961.005 Q2277.09 961.005 2275.26 964.57 Q2273.45 968.112 2273.45 975.241 Q2273.45 982.348 2275.26 985.912 Q2277.09 989.454 2280.7 989.454 Q2284.33 989.454 2286.14 985.912 Q2287.97 982.348 2287.97 975.241 Q2287.97 968.112 2286.14 964.57 Q2284.33 961.005 2280.7 961.005 M2280.7 957.302 Q2286.51 957.302 2289.57 961.908 Q2292.64 966.491 2292.64 975.241 Q2292.64 983.968 2289.57 988.575 Q2286.51 993.158 2280.7 993.158 Q2274.89 993.158 2271.81 988.575 Q2268.76 983.968 2268.76 975.241 Q2268.76 966.491 2271.81 961.908 Q2274.89 957.302 2280.7 957.302 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2300.86 986.607 L2305.75 986.607 L2305.75 992.487 L2300.86 992.487 L2300.86 986.607 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2315.98 957.927 L2334.33 957.927 L2334.33 961.862 L2320.26 961.862 L2320.26 970.334 Q2321.28 969.987 2322.3 969.825 Q2323.32 969.639 2324.33 969.639 Q2330.12 969.639 2333.5 972.811 Q2336.88 975.982 2336.88 981.399 Q2336.88 986.977 2333.41 990.079 Q2329.94 993.158 2323.62 993.158 Q2321.44 993.158 2319.17 992.787 Q2316.93 992.417 2314.52 991.676 L2314.52 986.977 Q2316.6 988.112 2318.83 988.667 Q2321.05 989.223 2323.52 989.223 Q2327.53 989.223 2329.87 987.116 Q2332.2 985.01 2332.2 981.399 Q2332.2 977.788 2329.87 975.681 Q2327.53 973.575 2323.52 973.575 Q2321.65 973.575 2319.77 973.991 Q2317.92 974.408 2315.98 975.288 L2315.98 957.927 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2356.09 961.005 Q2352.48 961.005 2350.65 964.57 Q2348.85 968.112 2348.85 975.241 Q2348.85 982.348 2350.65 985.912 Q2352.48 989.454 2356.09 989.454 Q2359.73 989.454 2361.53 985.912 Q2363.36 982.348 2363.36 975.241 Q2363.36 968.112 2361.53 964.57 Q2359.73 961.005 2356.09 961.005 M2356.09 957.302 Q2361.9 957.302 2364.96 961.908 Q2368.04 966.491 2368.04 975.241 Q2368.04 983.968 2364.96 988.575 Q2361.9 993.158 2356.09 993.158 Q2350.28 993.158 2347.2 988.575 Q2344.15 983.968 2344.15 975.241 Q2344.15 966.491 2347.2 961.908 Q2350.28 957.302 2356.09 957.302 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2280.7 738.833 Q2277.09 738.833 2275.26 742.398 Q2273.45 745.939 2273.45 753.069 Q2273.45 760.175 2275.26 763.74 Q2277.09 767.282 2280.7 767.282 Q2284.33 767.282 2286.14 763.74 Q2287.97 760.175 2287.97 753.069 Q2287.97 745.939 2286.14 742.398 Q2284.33 738.833 2280.7 738.833 M2280.7 735.129 Q2286.51 735.129 2289.57 739.736 Q2292.64 744.319 2292.64 753.069 Q2292.64 761.796 2289.57 766.402 Q2286.51 770.986 2280.7 770.986 Q2274.89 770.986 2271.81 766.402 Q2268.76 761.796 2268.76 753.069 Q2268.76 744.319 2271.81 739.736 Q2274.89 735.129 2280.7 735.129 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2300.86 764.435 L2305.75 764.435 L2305.75 770.314 L2300.86 770.314 L2300.86 764.435 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2314.75 735.754 L2336.97 735.754 L2336.97 737.745 L2324.43 770.314 L2319.54 770.314 L2331.35 739.689 L2314.75 739.689 L2314.75 735.754 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2346.14 735.754 L2364.5 735.754 L2364.5 739.689 L2350.42 739.689 L2350.42 748.162 Q2351.44 747.814 2352.46 747.652 Q2353.48 747.467 2354.5 747.467 Q2360.28 747.467 2363.66 750.638 Q2367.04 753.81 2367.04 759.226 Q2367.04 764.805 2363.57 767.907 Q2360.1 770.986 2353.78 770.986 Q2351.6 770.986 2349.33 770.615 Q2347.09 770.245 2344.68 769.504 L2344.68 764.805 Q2346.76 765.939 2348.99 766.495 Q2351.21 767.05 2353.69 767.05 Q2357.69 767.05 2360.03 764.944 Q2362.37 762.837 2362.37 759.226 Q2362.37 755.615 2360.03 753.509 Q2357.69 751.402 2353.69 751.402 Q2351.81 751.402 2349.94 751.819 Q2348.08 752.236 2346.14 753.115 L2346.14 735.754 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2269.43 544.207 L2277.07 544.207 L2277.07 517.841 L2268.76 519.508 L2268.76 515.249 L2277.02 513.582 L2281.7 513.582 L2281.7 544.207 L2289.33 544.207 L2289.33 548.142 L2269.43 548.142 L2269.43 544.207 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2298.78 542.262 L2303.66 542.262 L2303.66 548.142 L2298.78 548.142 L2298.78 542.262 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2323.85 516.661 Q2320.24 516.661 2318.41 520.225 Q2316.6 523.767 2316.6 530.897 Q2316.6 538.003 2318.41 541.568 Q2320.24 545.11 2323.85 545.11 Q2327.48 545.11 2329.29 541.568 Q2331.12 538.003 2331.12 530.897 Q2331.12 523.767 2329.29 520.225 Q2327.48 516.661 2323.85 516.661 M2323.85 512.957 Q2329.66 512.957 2332.71 517.563 Q2335.79 522.147 2335.79 530.897 Q2335.79 539.624 2332.71 544.23 Q2329.66 548.813 2323.85 548.813 Q2318.04 548.813 2314.96 544.23 Q2311.9 539.624 2311.9 530.897 Q2311.9 522.147 2314.96 517.563 Q2318.04 512.957 2323.85 512.957 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2354.01 516.661 Q2350.4 516.661 2348.57 520.225 Q2346.76 523.767 2346.76 530.897 Q2346.76 538.003 2348.57 541.568 Q2350.4 545.11 2354.01 545.11 Q2357.64 545.11 2359.45 541.568 Q2361.28 538.003 2361.28 530.897 Q2361.28 523.767 2359.45 520.225 Q2357.64 516.661 2354.01 516.661 M2354.01 512.957 Q2359.82 512.957 2362.88 517.563 Q2365.95 522.147 2365.95 530.897 Q2365.95 539.624 2362.88 544.23 Q2359.82 548.813 2354.01 548.813 Q2348.2 548.813 2345.12 544.23 Q2342.07 539.624 2342.07 530.897 Q2342.07 522.147 2345.12 517.563 Q2348.2 512.957 2354.01 512.957 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2269.43 322.035 L2277.07 322.035 L2277.07 295.669 L2268.76 297.336 L2268.76 293.076 L2277.02 291.41 L2281.7 291.41 L2281.7 322.035 L2289.33 322.035 L2289.33 325.97 L2269.43 325.97 L2269.43 322.035 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2298.78 320.09 L2303.66 320.09 L2303.66 325.97 L2298.78 325.97 L2298.78 320.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2317.88 322.035 L2334.2 322.035 L2334.2 325.97 L2312.25 325.97 L2312.25 322.035 Q2314.91 319.28 2319.5 314.65 Q2324.1 309.998 2325.28 308.655 Q2327.53 306.132 2328.41 304.396 Q2329.31 302.637 2329.31 300.947 Q2329.31 298.192 2327.37 296.456 Q2325.45 294.72 2322.34 294.72 Q2320.14 294.72 2317.69 295.484 Q2315.26 296.248 2312.48 297.799 L2312.48 293.076 Q2315.31 291.942 2317.76 291.363 Q2320.21 290.785 2322.25 290.785 Q2327.62 290.785 2330.82 293.47 Q2334.01 296.155 2334.01 300.646 Q2334.01 302.775 2333.2 304.697 Q2332.41 306.595 2330.31 309.187 Q2329.73 309.859 2326.63 313.076 Q2323.52 316.271 2317.88 322.035 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2344.06 291.41 L2362.41 291.41 L2362.41 295.345 L2348.34 295.345 L2348.34 303.817 Q2349.36 303.47 2350.38 303.308 Q2351.39 303.123 2352.41 303.123 Q2358.2 303.123 2361.58 306.294 Q2364.96 309.465 2364.96 314.882 Q2364.96 320.461 2361.49 323.562 Q2358.01 326.641 2351.7 326.641 Q2349.52 326.641 2347.25 326.271 Q2345.01 325.9 2342.6 325.16 L2342.6 320.461 Q2344.68 321.595 2346.9 322.15 Q2349.13 322.706 2351.6 322.706 Q2355.61 322.706 2357.95 320.599 Q2360.28 318.493 2360.28 314.882 Q2360.28 311.271 2357.95 309.164 Q2355.61 307.058 2351.6 307.058 Q2349.73 307.058 2347.85 307.474 Q2346 307.891 2344.06 308.771 L2344.06 291.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip480)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2232.76,1423.18 2232.76,1423.18 2256.76,1423.18 2232.76,1423.18 2232.76,1201.01 2256.76,1201.01 2232.76,1201.01 2232.76,978.835 2256.76,978.835 2232.76,978.835 \n",
" 2232.76,756.663 2256.76,756.663 2232.76,756.663 2232.76,534.491 2256.76,534.491 2232.76,534.491 2232.76,312.319 2256.76,312.319 2232.76,312.319 2232.76,123.472 \n",
" \n",
"<path clip-path=\"url(#clip480)\" d=\"\n",
"M1598.56 270.476 L2050.66 270.476 L2050.66 166.796 L1598.56 166.796 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip480)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1598.56,270.476 2050.66,270.476 2050.66,166.796 1598.56,166.796 1598.56,270.476 \n",
"<circle clip-path=\"url(#clip480)\" cx=\"1681.35\" cy=\"218.636\" r=\"23\" fill=\"#000003\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"5.12\"/>\n",
"<path clip-path=\"url(#clip480)\" d=\"M1783.05 213.925 L1783.05 199.897 L1787.3 199.897 L1787.3 235.916 L1783.05 235.916 L1783.05 232.027 Q1781.7 234.342 1779.64 235.476 Q1777.61 236.587 1774.74 236.587 Q1770.04 236.587 1767.07 232.837 Q1764.13 229.087 1764.13 222.976 Q1764.13 216.865 1767.07 213.115 Q1770.04 209.365 1774.74 209.365 Q1777.61 209.365 1779.64 210.499 Q1781.7 211.61 1783.05 213.925 M1768.53 222.976 Q1768.53 227.675 1770.45 230.36 Q1772.4 233.022 1775.78 233.022 Q1779.16 233.022 1781.1 230.36 Q1783.05 227.675 1783.05 222.976 Q1783.05 218.277 1781.1 215.615 Q1779.16 212.93 1775.78 212.93 Q1772.4 212.93 1770.45 215.615 Q1768.53 218.277 1768.53 222.976 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M1800.29 202.629 L1800.29 209.99 L1809.06 209.99 L1809.06 213.3 L1800.29 213.3 L1800.29 227.374 Q1800.29 230.545 1801.15 231.448 Q1802.03 232.351 1804.69 232.351 L1809.06 232.351 L1809.06 235.916 L1804.69 235.916 Q1799.76 235.916 1797.88 234.087 Q1796.01 232.235 1796.01 227.374 L1796.01 213.3 L1792.88 213.3 L1792.88 209.99 L1796.01 209.99 L1796.01 202.629 L1800.29 202.629 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M1834.36 243.786 L1834.36 247.096 L1809.74 247.096 L1809.74 243.786 L1834.36 243.786 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M1860.54 221.888 L1860.54 223.971 L1840.96 223.971 Q1841.24 228.369 1843.6 230.684 Q1845.98 232.976 1850.22 232.976 Q1852.67 232.976 1854.97 232.374 Q1857.28 231.772 1859.55 230.569 L1859.55 234.596 Q1857.26 235.568 1854.85 236.078 Q1852.44 236.587 1849.97 236.587 Q1843.76 236.587 1840.13 232.976 Q1836.52 229.365 1836.52 223.207 Q1836.52 216.842 1839.94 213.115 Q1843.39 209.365 1849.23 209.365 Q1854.46 209.365 1857.49 212.745 Q1860.54 216.101 1860.54 221.888 M1856.29 220.638 Q1856.24 217.143 1854.32 215.059 Q1852.42 212.976 1849.27 212.976 Q1845.71 212.976 1843.55 214.99 Q1841.42 217.004 1841.1 220.661 L1856.29 220.638 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M1879.32 222.883 Q1874.16 222.883 1872.17 224.064 Q1870.17 225.244 1870.17 228.092 Q1870.17 230.36 1871.66 231.703 Q1873.16 233.022 1875.73 233.022 Q1879.27 233.022 1881.4 230.522 Q1883.55 227.999 1883.55 223.832 L1883.55 222.883 L1879.32 222.883 M1887.81 221.124 L1887.81 235.916 L1883.55 235.916 L1883.55 231.981 Q1882.1 234.342 1879.92 235.476 Q1877.74 236.587 1874.6 236.587 Q1870.61 236.587 1868.25 234.365 Q1865.92 232.119 1865.92 228.369 Q1865.92 223.994 1868.83 221.772 Q1871.77 219.55 1877.58 219.55 L1883.55 219.55 L1883.55 219.133 Q1883.55 216.194 1881.61 214.596 Q1879.69 212.976 1876.19 212.976 Q1873.97 212.976 1871.86 213.508 Q1869.76 214.041 1867.81 215.106 L1867.81 211.17 Q1870.15 210.268 1872.35 209.828 Q1874.55 209.365 1876.63 209.365 Q1882.26 209.365 1885.04 212.282 Q1887.81 215.198 1887.81 221.124 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M1911.61 213.971 Q1910.89 213.555 1910.04 213.37 Q1909.2 213.161 1908.18 213.161 Q1904.57 213.161 1902.63 215.522 Q1900.71 217.86 1900.71 222.258 L1900.71 235.916 L1896.42 235.916 L1896.42 209.99 L1900.71 209.99 L1900.71 214.018 Q1902.05 211.657 1904.2 210.522 Q1906.35 209.365 1909.43 209.365 Q1909.87 209.365 1910.41 209.434 Q1910.94 209.481 1911.59 209.596 L1911.61 213.971 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M1916.08 199.897 L1920.34 199.897 L1920.34 235.916 L1916.08 235.916 L1916.08 199.897 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M1929.25 209.99 L1933.51 209.99 L1933.51 235.916 L1929.25 235.916 L1929.25 209.99 M1929.25 199.897 L1933.51 199.897 L1933.51 205.291 L1929.25 205.291 L1929.25 199.897 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M1964.6 221.888 L1964.6 223.971 L1945.01 223.971 Q1945.29 228.369 1947.65 230.684 Q1950.04 232.976 1954.27 232.976 Q1956.73 232.976 1959.02 232.374 Q1961.33 231.772 1963.6 230.569 L1963.6 234.596 Q1961.31 235.568 1958.9 236.078 Q1956.49 236.587 1954.02 236.587 Q1947.81 236.587 1944.18 232.976 Q1940.57 229.365 1940.57 223.207 Q1940.57 216.842 1943.99 213.115 Q1947.44 209.365 1953.28 209.365 Q1958.51 209.365 1961.54 212.745 Q1964.6 216.101 1964.6 221.888 M1960.34 220.638 Q1960.29 217.143 1958.37 215.059 Q1956.47 212.976 1953.32 212.976 Q1949.76 212.976 1947.6 214.99 Q1945.48 217.004 1945.15 220.661 L1960.34 220.638 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M1988.11 210.754 L1988.11 214.782 Q1986.31 213.856 1984.36 213.393 Q1982.42 212.93 1980.34 212.93 Q1977.16 212.93 1975.57 213.902 Q1973.99 214.874 1973.99 216.819 Q1973.99 218.3 1975.13 219.157 Q1976.26 219.99 1979.69 220.754 L1981.15 221.078 Q1985.68 222.05 1987.58 223.832 Q1989.5 225.592 1989.5 228.763 Q1989.5 232.374 1986.63 234.481 Q1983.79 236.587 1978.79 236.587 Q1976.7 236.587 1974.43 236.17 Q1972.19 235.777 1969.69 234.967 L1969.69 230.569 Q1972.05 231.795 1974.34 232.42 Q1976.63 233.022 1978.88 233.022 Q1981.89 233.022 1983.51 232.004 Q1985.13 230.962 1985.13 229.087 Q1985.13 227.351 1983.95 226.425 Q1982.79 225.499 1978.83 224.643 L1977.35 224.295 Q1973.39 223.462 1971.63 221.749 Q1969.87 220.013 1969.87 217.004 Q1969.87 213.346 1972.47 211.356 Q1975.06 209.365 1979.83 209.365 Q1982.19 209.365 1984.27 209.712 Q1986.35 210.059 1988.11 210.754 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip480)\" d=\"M2000.5 202.629 L2000.5 209.99 L2009.27 209.99 L2009.27 213.3 L2000.5 213.3 L2000.5 227.374 Q2000.5 230.545 2001.35 231.448 Q2002.23 232.351 2004.9 232.351 L2009.27 232.351 L2009.27 235.916 L2004.9 235.916 Q1999.97 235.916 1998.09 234.087 Q1996.22 232.235 1996.22 227.374 L1996.22 213.3 L1993.09 213.3 L1993.09 209.99 L1996.22 209.99 L1996.22 202.629 L2000.5 202.629 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"gr()\n",
"getVal(a::Measurement) = a.val\n",
"getVal(a::Float64)=a\n",
"# Plot two colums against each other with coloring of a thirs\n",
"z = getVal.(results.dt_earliest_pickup)\n",
"y = getVal.(results.total_time)\n",
"x = getVal.(results.served)\n",
"\n",
"\n",
"\n",
"scatter(x, y,marker_z = z,label=\"dt_earliest\", xlim=(0.74, 0.9))#, markershape = :rect)\n",
"xlabel!(\"served\")\n",
"ylabel!(\"total_time\")\n",
"savefig(\"dt_earliest.png\")\n",
"title!(\"Total travelling time\")\n"
"id": "09dc0022",
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip730)\" d=\"\n",
"M277.621 1423.18 L2112.76 1423.18 L2112.76 123.472 L277.621 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip732\">\n",
" <rect x=\"277\" y=\"123\" width=\"1836\" height=\"1301\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 277.621,1423.18 277.621,123.472 \n",
"<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 736.404,1423.18 736.404,123.472 \n",
"<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1195.19,1423.18 1195.19,123.472 \n",
"<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1653.97,1423.18 1653.97,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
"<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.621,1423.18 2112.76,1423.18 \n",
"<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.621,1423.18 277.621,1404.28 \n",
"<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 736.404,1423.18 736.404,1404.28 \n",
"<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1195.19,1423.18 1195.19,1404.28 \n",
"<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1653.97,1423.18 1653.97,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
"<path clip-path=\"url(#clip730)\" d=\"M224.843 1454.1 Q221.232 1454.1 219.403 1457.66 Q217.598 1461.2 217.598 1468.33 Q217.598 1475.44 219.403 1479.01 Q221.232 1482.55 224.843 1482.55 Q228.477 1482.55 230.283 1479.01 Q232.112 1475.44 232.112 1468.33 Q232.112 1461.2 230.283 1457.66 Q228.477 1454.1 224.843 1454.1 M224.843 1450.39 Q230.653 1450.39 233.709 1455 Q236.787 1459.58 236.787 1468.33 Q236.787 1477.06 233.709 1481.67 Q230.653 1486.25 224.843 1486.25 Q219.033 1486.25 215.954 1481.67 Q212.899 1477.06 212.899 1468.33 Q212.899 1459.58 215.954 1455 Q219.033 1450.39 224.843 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M245.005 1479.7 L249.889 1479.7 L249.889 1485.58 L245.005 1485.58 L245.005 1479.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M258.894 1451.02 L281.116 1451.02 L281.116 1453.01 L268.57 1485.58 L263.685 1485.58 L275.491 1454.96 L258.894 1454.96 L258.894 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M300.236 1454.1 Q296.625 1454.1 294.796 1457.66 Q292.991 1461.2 292.991 1468.33 Q292.991 1475.44 294.796 1479.01 Q296.625 1482.55 300.236 1482.55 Q303.87 1482.55 305.676 1479.01 Q307.505 1475.44 307.505 1468.33 Q307.505 1461.2 305.676 1457.66 Q303.87 1454.1 300.236 1454.1 M300.236 1450.39 Q306.046 1450.39 309.102 1455 Q312.181 1459.58 312.181 1468.33 Q312.181 1477.06 309.102 1481.67 Q306.046 1486.25 300.236 1486.25 Q294.426 1486.25 291.347 1481.67 Q288.292 1477.06 288.292 1468.33 Q288.292 1459.58 291.347 1455 Q294.426 1450.39 300.236 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M330.398 1454.1 Q326.787 1454.1 324.958 1457.66 Q323.153 1461.2 323.153 1468.33 Q323.153 1475.44 324.958 1479.01 Q326.787 1482.55 330.398 1482.55 Q334.032 1482.55 335.838 1479.01 Q337.667 1475.44 337.667 1468.33 Q337.667 1461.2 335.838 1457.66 Q334.032 1454.1 330.398 1454.1 M330.398 1450.39 Q336.208 1450.39 339.264 1455 Q342.342 1459.58 342.342 1468.33 Q342.342 1477.06 339.264 1481.67 Q336.208 1486.25 330.398 1486.25 Q324.588 1486.25 321.509 1481.67 Q318.454 1477.06 318.454 1468.33 Q318.454 1459.58 321.509 1455 Q324.588 1450.39 330.398 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M684.125 1454.1 Q680.514 1454.1 678.685 1457.66 Q676.879 1461.2 676.879 1468.33 Q676.879 1475.44 678.685 1479.01 Q680.514 1482.55 684.125 1482.55 Q687.759 1482.55 689.564 1479.01 Q691.393 1475.44 691.393 1468.33 Q691.393 1461.2 689.564 1457.66 Q687.759 1454.1 684.125 1454.1 M684.125 1450.39 Q689.935 1450.39 692.99 1455 Q696.069 1459.58 696.069 1468.33 Q696.069 1477.06 692.99 1481.67 Q689.935 1486.25 684.125 1486.25 Q678.314 1486.25 675.236 1481.67 Q672.18 1477.06 672.18 1468.33 Q672.18 1459.58 675.236 1455 Q678.314 1450.39 684.125 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M704.287 1479.7 L709.171 1479.7 L709.171 1485.58 L704.287 1485.58 L704.287 1479.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M718.175 1451.02 L740.397 1451.02 L740.397 1453.01 L727.851 1485.58 L722.967 1485.58 L734.772 1454.96 L718.175 1454.96 L718.175 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M753.546 1481.64 L769.865 1481.64 L769.865 1485.58 L747.921 1485.58 L747.921 1481.64 Q750.583 1478.89 755.166 1474.26 Q759.772 1469.61 760.953 1468.27 Q763.198 1465.74 764.078 1464.01 Q764.981 1462.25 764.981 1460.56 Q764.981 1457.8 763.036 1456.07 Q761.115 1454.33 758.013 1454.33 Q755.814 1454.33 753.36 1455.09 Q750.93 1455.86 748.152 1457.41 L748.152 1452.69 Q750.976 1451.55 753.43 1450.97 Q755.883 1450.39 757.921 1450.39 Q763.291 1450.39 766.485 1453.08 Q769.68 1455.77 769.68 1460.26 Q769.68 1462.39 768.87 1464.31 Q768.082 1466.2 765.976 1468.8 Q765.397 1469.47 762.295 1472.69 Q759.194 1475.88 753.546 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M779.726 1451.02 L798.082 1451.02 L798.082 1454.96 L784.008 1454.96 L784.008 1463.43 Q785.027 1463.08 786.045 1462.92 Q787.064 1462.73 788.082 1462.73 Q793.869 1462.73 797.249 1465.9 Q800.629 1469.08 800.629 1474.49 Q800.629 1480.07 797.156 1483.17 Q793.684 1486.25 787.365 1486.25 Q785.189 1486.25 782.92 1485.88 Q780.675 1485.51 778.268 1484.77 L778.268 1480.07 Q780.351 1481.2 782.573 1481.76 Q784.795 1482.32 787.272 1482.32 Q791.277 1482.32 793.615 1480.21 Q795.953 1478.1 795.953 1474.49 Q795.953 1470.88 793.615 1468.77 Q791.277 1466.67 787.272 1466.67 Q785.397 1466.67 783.522 1467.08 Q781.67 1467.5 779.726 1468.38 L779.726 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1142.41 1454.1 Q1138.8 1454.1 1136.97 1457.66 Q1135.17 1461.2 1135.17 1468.33 Q1135.17 1475.44 1136.97 1479.01 Q1138.8 1482.55 1142.41 1482.55 Q1146.04 1482.55 1147.85 1479.01 Q1149.68 1475.44 1149.68 1468.33 Q1149.68 1461.2 1147.85 1457.66 Q1146.04 1454.1 1142.41 1454.1 M1142.41 1450.39 Q1148.22 1450.39 1151.28 1455 Q1154.36 1459.58 1154.36 1468.33 Q1154.36 1477.06 1151.28 1481.67 Q1148.22 1486.25 1142.41 1486.25 Q1136.6 1486.25 1133.52 1481.67 Q1130.47 1477.06 1130.47 1468.33 Q1130.47 1459.58 1133.52 1455 Q1136.6 1450.39 1142.41 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1162.57 1479.7 L1167.46 1479.7 L1167.46 1485.58 L1162.57 1485.58 L1162.57 1479.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1176.46 1451.02 L1198.68 1451.02 L1198.68 1453.01 L1186.14 1485.58 L1181.25 1485.58 L1193.06 1454.96 L1176.46 1454.96 L1176.46 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1207.85 1451.02 L1226.21 1451.02 L1226.21 1454.96 L1212.13 1454.96 L1212.13 1463.43 Q1213.15 1463.08 1214.17 1462.92 Q1215.19 1462.73 1216.21 1462.73 Q1221.99 1462.73 1225.37 1465.9 Q1228.75 1469.08 1228.75 1474.49 Q1228.75 1480.07 1225.28 1483.17 Q1221.81 1486.25 1215.49 1486.25 Q1213.31 1486.25 1211.04 1485.88 Q1208.8 1485.51 1206.39 1484.77 L1206.39 1480.07 Q1208.48 1481.2 1210.7 1481.76 Q1212.92 1482.32 1215.4 1482.32 Q1219.4 1482.32 1221.74 1480.21 Q1224.08 1478.1 1224.08 1474.49 Q1224.08 1470.88 1221.74 1468.77 Q1219.4 1466.67 1215.4 1466.67 Q1213.52 1466.67 1211.65 1467.08 Q1209.79 1467.5 1207.85 1468.38 L1207.85 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1247.97 1454.1 Q1244.35 1454.1 1242.53 1457.66 Q1240.72 1461.2 1240.72 1468.33 Q1240.72 1475.44 1242.53 1479.01 Q1244.35 1482.55 1247.97 1482.55 Q1251.6 1482.55 1253.41 1479.01 Q1255.23 1475.44 1255.23 1468.33 Q1255.23 1461.2 1253.41 1457.66 Q1251.6 1454.1 1247.97 1454.1 M1247.97 1450.39 Q1253.78 1450.39 1256.83 1455 Q1259.91 1459.58 1259.91 1468.33 Q1259.91 1477.06 1256.83 1481.67 Q1253.78 1486.25 1247.97 1486.25 Q1242.16 1486.25 1239.08 1481.67 Q1236.02 1477.06 1236.02 1468.33 Q1236.02 1459.58 1239.08 1455 Q1242.16 1450.39 1247.97 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1601.69 1454.1 Q1598.08 1454.1 1596.25 1457.66 Q1594.45 1461.2 1594.45 1468.33 Q1594.45 1475.44 1596.25 1479.01 Q1598.08 1482.55 1601.69 1482.55 Q1605.33 1482.55 1607.13 1479.01 Q1608.96 1475.44 1608.96 1468.33 Q1608.96 1461.2 1607.13 1457.66 Q1605.33 1454.1 1601.69 1454.1 M1601.69 1450.39 Q1607.5 1450.39 1610.56 1455 Q1613.64 1459.58 1613.64 1468.33 Q1613.64 1477.06 1610.56 1481.67 Q1607.5 1486.25 1601.69 1486.25 Q1595.88 1486.25 1592.8 1481.67 Q1589.75 1477.06 1589.75 1468.33 Q1589.75 1459.58 1592.8 1455 Q1595.88 1450.39 1601.69 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1621.85 1479.7 L1626.74 1479.7 L1626.74 1485.58 L1621.85 1485.58 L1621.85 1479.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1635.74 1451.02 L1657.97 1451.02 L1657.97 1453.01 L1645.42 1485.58 L1640.53 1485.58 L1652.34 1454.96 L1635.74 1454.96 L1635.74 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1665.9 1451.02 L1688.13 1451.02 L1688.13 1453.01 L1675.58 1485.58 L1670.7 1485.58 L1682.5 1454.96 L1665.9 1454.96 L1665.9 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1697.29 1451.02 L1715.65 1451.02 L1715.65 1454.96 L1701.58 1454.96 L1701.58 1463.43 Q1702.59 1463.08 1703.61 1462.92 Q1704.63 1462.73 1705.65 1462.73 Q1711.44 1462.73 1714.82 1465.9 Q1718.2 1469.08 1718.2 1474.49 Q1718.2 1480.07 1714.72 1483.17 Q1711.25 1486.25 1704.93 1486.25 Q1702.76 1486.25 1700.49 1485.88 Q1698.24 1485.51 1695.84 1484.77 L1695.84 1480.07 Q1697.92 1481.2 1700.14 1481.76 Q1702.36 1482.32 1704.84 1482.32 Q1708.84 1482.32 1711.18 1480.21 Q1713.52 1478.1 1713.52 1474.49 Q1713.52 1470.88 1711.18 1468.77 Q1708.84 1466.67 1704.84 1466.67 Q1702.96 1466.67 1701.09 1467.08 Q1699.24 1467.5 1697.29 1468.38 L1697.29 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2059.98 1454.1 Q2056.37 1454.1 2054.54 1457.66 Q2052.73 1461.2 2052.73 1468.33 Q2052.73 1475.44 2054.54 1479.01 Q2056.37 1482.55 2059.98 1482.55 Q2063.61 1482.55 2065.42 1479.01 Q2067.25 1475.44 2067.25 1468.33 Q2067.25 1461.2 2065.42 1457.66 Q2063.61 1454.1 2059.98 1454.1 M2059.98 1450.39 Q2065.79 1450.39 2068.84 1455 Q2071.92 1459.58 2071.92 1468.33 Q2071.92 1477.06 2068.84 1481.67 Q2065.79 1486.25 2059.98 1486.25 Q2054.17 1486.25 2051.09 1481.67 Q2048.03 1477.06 2048.03 1468.33 Q2048.03 1459.58 2051.09 1455 Q2054.17 1450.39 2059.98 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2080.14 1479.7 L2085.02 1479.7 L2085.02 1485.58 L2080.14 1485.58 L2080.14 1479.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2105.21 1469.17 Q2101.88 1469.17 2099.96 1470.95 Q2098.06 1472.73 2098.06 1475.86 Q2098.06 1478.98 2099.96 1480.77 Q2101.88 1482.55 2105.21 1482.55 Q2108.54 1482.55 2110.46 1480.77 Q2112.39 1478.96 2112.39 1475.86 Q2112.39 1472.73 2110.46 1470.95 Q2108.57 1469.17 2105.21 1469.17 M2100.53 1467.18 Q2097.52 1466.44 2095.83 1464.38 Q2094.17 1462.32 2094.17 1459.35 Q2094.17 1455.21 2097.11 1452.8 Q2100.07 1450.39 2105.21 1450.39 Q2110.37 1450.39 2113.31 1452.8 Q2116.25 1455.21 2116.25 1459.35 Q2116.25 1462.32 2114.56 1464.38 Q2112.89 1466.44 2109.91 1467.18 Q2113.29 1467.96 2115.16 1470.26 Q2117.06 1472.55 2117.06 1475.86 Q2117.06 1480.88 2113.98 1483.57 Q2110.93 1486.25 2105.21 1486.25 Q2099.49 1486.25 2096.41 1483.57 Q2093.36 1480.88 2093.36 1475.86 Q2093.36 1472.55 2095.26 1470.26 Q2097.15 1467.96 2100.53 1467.18 M2098.82 1459.79 Q2098.82 1462.48 2100.49 1463.98 Q2102.18 1465.49 2105.21 1465.49 Q2108.22 1465.49 2109.91 1463.98 Q2111.62 1462.48 2111.62 1459.79 Q2111.62 1457.11 2109.91 1455.6 Q2108.22 1454.1 2105.21 1454.1 Q2102.18 1454.1 2100.49 1455.6 Q2098.82 1457.11 2098.82 1459.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2135.37 1454.1 Q2131.76 1454.1 2129.93 1457.66 Q2128.13 1461.2 2128.13 1468.33 Q2128.13 1475.44 2129.93 1479.01 Q2131.76 1482.55 2135.37 1482.55 Q2139.01 1482.55 2140.81 1479.01 Q2142.64 1475.44 2142.64 1468.33 Q2142.64 1461.2 2140.81 1457.66 Q2139.01 1454.1 2135.37 1454.1 M2135.37 1450.39 Q2141.18 1450.39 2144.24 1455 Q2147.32 1459.58 2147.32 1468.33 Q2147.32 1477.06 2144.24 1481.67 Q2141.18 1486.25 2135.37 1486.25 Q2129.56 1486.25 2126.48 1481.67 Q2123.43 1477.06 2123.43 1468.33 Q2123.43 1459.58 2126.48 1455 Q2129.56 1450.39 2135.37 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2165.53 1454.1 Q2161.92 1454.1 2160.09 1457.66 Q2158.29 1461.2 2158.29 1468.33 Q2158.29 1475.44 2160.09 1479.01 Q2161.92 1482.55 2165.53 1482.55 Q2169.17 1482.55 2170.97 1479.01 Q2172.8 1475.44 2172.8 1468.33 Q2172.8 1461.2 2170.97 1457.66 Q2169.17 1454.1 2165.53 1454.1 M2165.53 1450.39 Q2171.34 1450.39 2174.4 1455 Q2177.48 1459.58 2177.48 1468.33 Q2177.48 1477.06 2174.4 1481.67 Q2171.34 1486.25 2165.53 1486.25 Q2159.72 1486.25 2156.64 1481.67 Q2153.59 1477.06 2153.59 1468.33 Q2153.59 1459.58 2156.64 1455 Q2159.72 1450.39 2165.53 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1114.79 1533.45 L1114.79 1538.98 Q1112.31 1537.71 1109.63 1537.07 Q1106.96 1536.44 1104.09 1536.44 Q1099.73 1536.44 1097.54 1537.77 Q1095.37 1539.11 1095.37 1541.79 Q1095.37 1543.82 1096.93 1545 Q1098.49 1546.15 1103.2 1547.2 L1105.21 1547.64 Q1111.45 1548.98 1114.06 1551.43 Q1116.7 1553.85 1116.7 1558.21 Q1116.7 1563.17 1112.75 1566.07 Q1108.84 1568.97 1101.96 1568.97 Q1099.1 1568.97 1095.98 1568.39 Q1092.89 1567.85 1089.45 1566.74 L1089.45 1560.69 Q1092.7 1562.38 1095.85 1563.24 Q1099 1564.07 1102.09 1564.07 Q1106.23 1564.07 1108.46 1562.66 Q1110.68 1561.23 1110.68 1558.65 Q1110.68 1556.27 1109.06 1554.99 Q1107.47 1553.72 1102.03 1552.54 L1099.99 1552.07 Q1094.55 1550.92 1092.13 1548.56 Q1089.71 1546.18 1089.71 1542.04 Q1089.71 1537.01 1093.27 1534.27 Q1096.84 1531.54 1103.39 1531.54 Q1106.64 1531.54 1109.51 1532.01 Q1112.37 1532.49 1114.79 1533.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1156.52 1548.76 L1156.52 1551.62 L1129.59 1551.62 Q1129.97 1557.67 1133.22 1560.85 Q1136.5 1564 1142.32 1564 Q1145.69 1564 1148.85 1563.17 Q1152.03 1562.35 1155.15 1560.69 L1155.15 1566.23 Q1152 1567.57 1148.69 1568.27 Q1145.38 1568.97 1141.97 1568.97 Q1133.44 1568.97 1128.44 1564 Q1123.48 1559.04 1123.48 1550.57 Q1123.48 1541.82 1128.19 1536.69 Q1132.93 1531.54 1140.95 1531.54 Q1148.15 1531.54 1152.32 1536.18 Q1156.52 1540.8 1156.52 1548.76 M1150.66 1547.04 Q1150.6 1542.23 1147.95 1539.37 Q1145.34 1536.5 1141.02 1536.5 Q1136.11 1536.5 1133.15 1539.27 Q1130.23 1542.04 1129.78 1547.07 L1150.66 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1186.79 1537.87 Q1185.8 1537.3 1184.62 1537.04 Q1183.48 1536.76 1182.07 1536.76 Q1177.11 1536.76 1174.44 1540 Q1171.79 1543.22 1171.79 1549.27 L1171.79 1568.04 L1165.91 1568.04 L1165.91 1532.4 L1171.79 1532.4 L1171.79 1537.93 Q1173.64 1534.69 1176.6 1533.13 Q1179.56 1531.54 1183.79 1531.54 Q1184.4 1531.54 1185.13 1531.63 Q1185.86 1531.7 1186.75 1531.85 L1186.79 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1188.73 1532.4 L1194.93 1532.4 L1206.07 1562.31 L1217.21 1532.4 L1223.42 1532.4 L1210.05 1568.04 L1202.1 1568.04 L1188.73 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1262 1548.76 L1262 1551.62 L1235.07 1551.62 Q1235.45 1557.67 1238.7 1560.85 Q1241.98 1564 1247.8 1564 Q1251.17 1564 1254.33 1563.17 Q1257.51 1562.35 1260.63 1560.69 L1260.63 1566.23 Q1257.48 1567.57 1254.17 1568.27 Q1250.86 1568.97 1247.45 1568.97 Q1238.92 1568.97 1233.92 1564 Q1228.96 1559.04 1228.96 1550.57 Q1228.96 1541.82 1233.67 1536.69 Q1238.41 1531.54 1246.43 1531.54 Q1253.63 1531.54 1257.79 1536.18 Q1262 1540.8 1262 1548.76 M1256.14 1547.04 Q1256.08 1542.23 1253.43 1539.37 Q1250.82 1536.5 1246.5 1536.5 Q1241.59 1536.5 1238.63 1539.27 Q1235.71 1542.04 1235.26 1547.07 L1256.14 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1295.07 1537.81 L1295.07 1518.52 L1300.92 1518.52 L1300.92 1568.04 L1295.07 1568.04 L1295.07 1562.7 Q1293.22 1565.88 1290.39 1567.44 Q1287.59 1568.97 1283.64 1568.97 Q1277.18 1568.97 1273.1 1563.81 Q1269.06 1558.65 1269.06 1550.25 Q1269.06 1541.85 1273.1 1536.69 Q1277.18 1531.54 1283.64 1531.54 Q1287.59 1531.54 1290.39 1533.1 Q1293.22 1534.62 1295.07 1537.81 M1275.11 1550.25 Q1275.11 1556.71 1277.75 1560.4 Q1280.43 1564.07 1285.07 1564.07 Q1289.72 1564.07 1292.39 1560.4 Q1295.07 1556.71 1295.07 1550.25 Q1295.07 1543.79 1292.39 1540.13 Q1289.72 1536.44 1285.07 1536.44 Q1280.43 1536.44 1277.75 1540.13 Q1275.11 1543.79 1275.11 1550.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 277.621,1239.56 2112.76,1239.56 \n",