Skip to content

Instantly share code, notes, and snippets.

@michalskop
Last active November 22, 2020 12:52
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save michalskop/7e55931562cb3e5a9344 to your computer and use it in GitHub Desktop.
Save michalskop/7e55931562cb3e5a9344 to your computer and use it in GitHub Desktop.
Hemicycle chart (general)
# calculates optimal numbers of representives for hemicycle chart
import math
import csv
import numpy as np
import timeit
start = timeit.default_timer()
#benchmark:
#n0 = 200 : 4:23s, 5:52s, 6:132s, 7:285s, 8:579s, 9:1167s , 10:2342s, 11: 4632s
#n0=751 : 7:217s, 8:570s, 9:1331, 10:2816s, 11: 5686s, 12: 10905s, 13:21918s,14:44362s
# number of representatives
n0=751
optim = {}
# loss function 1 (gaps between rows)
def loss1(g):
return (g-1.2)*(g-1.2) #looks best
# loss function 2 (spaces in rows)
def loss2(w,s,n):
n0 = sum(n)
l2 = 0
i = 0
ln = len(n)
for item in n:
if s[i] > 0:
#l2 = l2 + item*(s[i] - 0.1*w)*(s[i] - 0.1*w)/n0
l2 = l2 + (s[i] - 0.1*w)*(s[i] - 0.1*w)/ln
else:
l2 = l2 + 10
i = i + 1
return l2
# loss function
def lossf(w,g,s,n):
l1 = loss1(g)
l2 = loss2(w,s,n)
l = l1 + l2 + (l1 - l2)*(l1 - l2)
return l
# spaces in rows
def ss(w,g,n):
s = [0]*len(n)
i = 0
for item in n:
s[i] = (math.pi/w + math.pi*i*g-n[i])/(n[i] - 1)
i = i + 1
return s
# max n in row for grid search
def nmax(k,n):
return math.floor(n-((k-1)*k/2))/k
# nrow for grid search
def nrow(n):
return {'max':round(math.sqrt(n)*3/4),'min':round(max(math.sqrt(n)/4,1))}
# grid search
def grid(n):
out = []
for k in np.arange (0.01,1,0.01): #(0.01,1,0.005):
for kk in np.arange (1.15,1.25,0.01): #(1,1.35,0.01)
g = kk
w = k
s = ss(w,g,n)
l1 = loss1(g)
l2 = loss2(w,s,n)
l = l1 + l2 + (l1-l2)*(l1-l2)
try:
if l < mmin:
out = [w,g]
mmin = l
except:
out = [w,g]
mmin = l
#print(out,mmin)
return {'w':out[0],'g':out[1],'loss':mmin}
#outwriter.writerow(row)
# recursion
def go(level,n,nrows,n0):
# print(n,level)
global optim
# print('optim:',optim)
global ll
while level < (nrows-1):
#conservative (slow):
# jmin = max(level+2,n[level-1]+1)
# jmax = int(nmax(nrows-level,n0-sum(n[0:level]))+1)
#faster (aritmetic series):
if level > 0:
if (nrows>1):
q = 2*(n0-nrows*n[0])/(nrows-1)/nrows
jmin = math.floor(n[0] + level*q - 0.5) #better with -1, but slower
jmax = math.ceil(n[0] + level*q + 0.5) #better with +1, but slower
else:
jmin = max(level+2+round(sqrt(level)),n[level-1]+1)
jmax = int(nmax(nrows-level,n0-sum(n[0:level]))+1)
else:
jmin = max(level+2,n[level-1]+1)
jmax = int(nmax(nrows-level,n0-sum(n[0:level]))+1)
for j in range(jmin,jmax):
n[level] = j
go(level+1,n,nrows,n0)
return False
n[level] = n0-sum(n)
# print("calculating:",level,k,n)
opt = grid(n)
# print(opt,ll)
try:
if ll > opt['loss']:
optim = opt.copy()
optim['n'] = n.copy()
ll = optim['loss']
except:
optim = opt.copy()
optim['n'] = n.copy()
ll = optim['loss']
# print('optim2:',optim)
n[level] = 0
return True
# for each reasonable number of rows:
nr = nrow(n0)
for k in range(nr['min'],nr['max']+1):
n = [0]*k
optim = {}
ll = 100000000
go(0,n,k,n0)
print("final optim:",optim)
print("time:",timeit.default_timer() - start)
#example of results:
#n = 200:
#final optim: {'n': [44, 48, 52, 56], 'loss': 6.0494609377272378e-05, 'w': 0.069999999999999993, 'g': 1.2000000000000002}
#time: 23.457229251012905
#final optim: {'n': [34, 37, 40, 43, 46], 'loss': 0.003021820005212728, 'w': 0.089999999999999997, 'g': 1.1900000000000002}
#time: 51.52483937999932
#final optim: {'n': [24, 28, 31, 35, 39, 43], 'loss': 0.0009935459225664401, 'w': 0.13, 'g': 1.2300000000000002}
#time: 131.58585535301245
#final optim: {'n': [18, 21, 25, 29, 32, 36, 39], 'loss': 0.000796945129917957, 'w': 0.17000000000000001, 'g': 1.1900000000000002}
#time: 284.771323367022
#final optim: {'n': [12, 16, 19, 23, 27, 31, 34, 38], 'loss': 0.00031275649495655434, 'w': 0.25, 'g': 1.2000000000000002}
#time: 579.2367971060157
#final optim: {'n': [8, 11, 15, 19, 22, 26, 29, 33, 37], 'loss': 0.00043985954926300044, 'w': 0.39000000000000001, 'g': 1.2000000000000002}
#time: 1167.0518377900007
#final optim: {'n': [4, 8, 11, 15, 18, 22, 25, 29, 32, 36], 'loss': 0.00064177079858304589, 'w': 0.72999999999999998, 'g': 1.2000000000000002}
#time: 2341.9838014570123
#final optim: {'n': [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 35], 'loss': 0.0087001372112743003, 'w': 0.98999999999999999, 'g': 1.1400000000000001}
#time: 4631.68083341801
#n = 751 (Euro Parliament)
#final optim: {'n': [98, 101, 104, 107, 110, 113, 118], 'loss': 0.0062929076050250469, 'w': 0.029999999999999999, 'g': 1.1899999999999999}
#time: 217.3275479080039
#final optim: {'n': [85, 88, 90, 93, 95, 98, 100, 102], 'loss': 0.068194024500854655, 'w': 0.029999999999999999, 'g': 1.1599999999999999}
#time: 570.2674658489996
#final optim: {'n': [71, 74, 77, 80, 83, 87, 90, 93, 96], 'loss': 0.014035298736485213, 'w': 0.040000000000000001, 'g': 1.1799999999999999}
#time: 1331.067573258013
#final optim: {'n': [60, 63, 67, 70, 73, 77, 80, 83, 87, 91], 'loss': 0.0032756194901112823, 'w': 0.050000000000000003, 'g': 1.1899999999999999}
#time: 2816.806992516009
#final optim: {'n': [51, 54, 58, 61, 65, 68, 72, 75, 79, 82, 86], 'loss': 0.0013354982259395371, 'w': 0.060000000000000005, 'g': 1.1899999999999999}
#time: 5686.576568382996
#final optim: {'n': [44, 47, 51, 54, 57, 61, 64, 68, 71, 74, 78, 82], 'loss': 0.0016497989012379932, 'w': 0.069999999999999993, 'g': 1.1899999999999999}
#time: 10905.816249452997
#final optim: {'n': [34, 38, 42, 46, 50, 54, 58, 62, 66, 70, 73, 77, 81], 'loss': 0.0025690587369525267, 'w': 0.089999999999999997, 'g': 1.25}
#time: 21918.771677729994
#final optim: {'n': [31, 34, 38, 41, 45, 48, 52, 55, 59, 62, 66, 69, 73, 78], 'loss': 0.00099189844185821208, 'w': 0.099999999999999992, 'g': 1.1899999999999999}
#time: 44362.27788667599
# ...
# n = 81 (CZ Senate)
#final optim: {'n': [39, 42], 'loss': 0.00015113520955957024, 'w': 0.080000000000000002, 'g': 1.2}
#time: 2.056351581995841
#final optim: {'n': [23, 27, 31], 'loss': 0.00074731223308436374, 'w': 0.13, 'g': 1.2}
#time: 3.672953786997823
#final optim: {'n': [15, 18, 22, 26], 'loss': 0.0017986444368775138, 'w': 0.20000000000000001, 'g': 1.1899999999999999}
#time: 5.949895355995977
#final optim: {'n': [9, 13, 16, 20, 23], 'loss': 0.0004283781313137963, 'w': 0.34000000000000002, 'g': 1.2}
#time: 10.962005101988325
#final optim: {'n': [5, 8, 12, 15, 19, 22], 'loss': 0.0011676166427925727, 'w': 0.62, 'g': 1.1899999999999999}
#time: 21.31037131600897
#final optim: {'n': [3, 6, 9, 12, 14, 17, 20], 'loss': 0.017012374030482232, 'w': 0.98999999999999999, 'g': 1.1499999999999999}
#time: 41.0609374709893
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="600" height="300" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style type="text/css"><![CDATA[
.axis path, .axis line { fill: none; stroke: rgb(0, 0, 0); shape-rendering: crispedges; }
path, line { stroke: rgb(187, 187, 187); stroke-width: 1px; }
text.shadow { stroke: rgb(128, 128, 128); stroke-width: 1px; opacity: 0.9; }
.half { fill: rgb(136, 136, 136); opacity: 0.5; }]]></style></defs><g transform="translate(0,0)"><path d="M-245.46752026449215,-172.46940741824636A300,300 0 0,1 172.4694074182464,-245.46752026449212L0,0Z" transform="translate(300,300)" class="half"></path><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="13.4460717589923" y="294.37395476961296" transform="rotate(-88.87523008415621,13.4460717589923,294.37395476961296)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="26.839625899243615" y="294.3739910596229" transform="rotate(-88.82010338729236,26.839625899243615,294.3739910596229)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="40.23345897323775" y="294.37403310377493" transform="rotate(-88.75929451032738,40.23345897323775,294.37403310377493)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="53.62761644366694" y="294.3740821861115" transform="rotate(-88.69187718006663,53.62761644366694,294.3740821861115)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="67.02215422010892" y="294.3741399698936" transform="rotate(-88.61671222807624,67.02215422010892,294.3741399698936)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="80.4171418424861" y="294.374208640382" transform="rotate(-88.53238269689848,80.4171418424861,294.374208640382)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="93.81266690410763" y="294.37429111451456" transform="rotate(-88.43710366849203,93.81266690410763,294.37429111451456)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="107.20884131644583" y="294.37439135584464" transform="rotate(-88.32859452995677,107.20884131644583,294.37439135584464)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="120.60581037699755" y="294.3745148597733" transform="rotate(-88.20389405915103,120.60581037699755,294.3745148597733)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="134.003766221228" y="294.374669423045" transform="rotate(-88.05908605985493,134.003766221228,294.374669423045)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="147.40296834786025" y="294.3748664050701" transform="rotate(-87.88888063695347,147.40296834786025,294.3748664050701)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="160.80377597290143" y="294.37512287609593" transform="rotate(-87.68595397766225,160.80377597290143,294.37512287609593)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="174.2067010090378" y="294.37546544361066" transform="rotate(-87.4398668671545,174.2067010090378,294.37546544361066)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="187.61249883027398" y="294.37593744140906" transform="rotate(-87.13521102434589,187.61249883027398,294.37593744140906)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="13.90523173120213" y="282.8363831168991" transform="rotate(-86.56678254950279,13.90523173120213,282.8363831168991)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="27.335030749620394" y="282.62022729860576" transform="rotate(-86.35287829320092,27.335030749620394,282.62022729860576)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="40.75929551859335" y="282.5482241445172" transform="rotate(-86.14872702472951,40.75929551859335,282.5482241445172)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="54.17488186029221" y="282.650255849835" transform="rotate(-85.96289634375685,54.17488186029221,282.650255849835)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="67.60680597126083" y="282.57214027948675" transform="rotate(-85.71124625338521,67.60680597126083,282.57214027948675)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="81.02837658539876" y="282.6878867777834" transform="rotate(-85.47954191424682,81.02837658539876,282.6878867777834)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="94.47092802247097" y="282.60271567984273" transform="rotate(-85.16165538447382,94.47092802247097,282.60271567984273)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="107.90094540884223" y="282.73640928578345" transform="rotate(-84.8647280778016,107.90094540884223,282.73640928578345)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="121.35884814124621" y="282.64315074288095" transform="rotate(-84.45053686514461,121.35884814124621,282.64315074288095)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="14.828742204899545" y="271.3266691358066" transform="rotate(-84.25833501484942,14.828742204899545,271.3266691358066)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="134.8013339323431" y="282.8013168439105" transform="rotate(-84.0564003298615,134.8013339323431,282.8013168439105)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="28.33595114906428" y="270.8986852981029" transform="rotate(-83.88565319910944,28.33595114906428,270.8986852981029)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="41.82321924215956" y="270.7586385740349" transform="rotate(-83.53815953913164,41.82321924215956,270.7586385740349)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="148.28258600778574" y="282.69906105091303" transform="rotate(-83.49443660510579,148.28258600778574,282.69906105091303)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="55.279717868208856" y="270.9657815015807" transform="rotate(-83.23391550744714,55.279717868208856,270.9657815015807)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="161.74457772844465" y="282.8925092846676" transform="rotate(-82.94617268157242,161.74457772844465,282.8925092846676)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="68.7889284883575" y="270.8149467063138" transform="rotate(-82.80578027869419,68.7889284883575,270.8149467063138)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="82.26112134748752" y="271.05070211229247" transform="rotate(-82.42670113159514,82.26112134748752,271.05070211229247)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="175.26386232197325" y="282.78124809476617" transform="rotate(-82.14048099641786,175.26386232197325,282.78124809476617)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="16.215104262246534" y="259.8634938441373" transform="rotate(-81.94988748019597,16.215104262246534,259.8634938441373)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="95.80069717025881" y="270.8879809441471" transform="rotate(-81.88620710045558,95.80069717025881,270.8879809441471)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="29.84053141062399" y="259.2310965689739" transform="rotate(-81.418428105018,29.84053141062399,259.2310965689739)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="109.29494096752943" y="271.161504918138" transform="rotate(-81.40086162564643,109.29494096752943,271.161504918138)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="188.75885857885578" y="283.0297626958523" transform="rotate(-81.32619695605618,188.75885857885578,283.0297626958523)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="43.42302183442156" y="259.0297471823014" transform="rotate(-80.9275920535338,43.42302183442156,259.0297471823014)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="122.87822454563587" y="270.98624440975476" transform="rotate(-80.6971796711382,122.87822454563587,270.98624440975476)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="56.93961852306511" y="259.3471613935209" transform="rotate(-80.50493467113739,56.93961852306511,259.3471613935209)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="136.40481364169946" y="271.31186703130186" transform="rotate(-80.05371459986813,136.40481364169946,271.31186703130186)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="70.56548259613973" y="259.13278638107386" transform="rotate(-79.90031430400319,70.56548259613973,259.13278638107386)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="18.06206774704329" y="248.4654627243599" transform="rotate(-79.64143994554257,18.06206774704329,248.4654627243599)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="84.1118772131908" y="259.4956846171625" transform="rotate(-79.37386034894348,84.1118772131908,259.4956846171625)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="150.05424532618576" y="271.1249787479681" transform="rotate(-79.0999925732581,150.05424532618576,271.1249787479681)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="31.84598207176159" y="247.6390925937623" transform="rotate(-78.95120301092652,31.84598207176159,247.6390925937623)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="97.79762970341933" y="259.26836148514053" transform="rotate(-78.61075881643734,97.79762970341933,259.26836148514053)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="45.55538270085967" y="247.38589478077316" transform="rotate(-78.31702456793593,45.55538270085967,247.38589478077316)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="163.63097592543286" y="271.52690218800575" transform="rotate(-78.20639138548253,163.63097592543286,271.52690218800575)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="111.38573461196637" y="259.69197063490924" transform="rotate(-77.93699517349125,111.38573461196637,259.69197063490924)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkred" text-anchor="middle" class="shadow" x="59.15081890532645" y="247.82074840990404" transform="rotate(-77.77595383482765,59.15081890532645,247.82074840990404)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="20.36663491687873" y="237.15107552569543" transform="rotate(-77.33299241088918,20.36663491687873,237.15107552569543)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="72.93190086677065" y="247.55569352790417" transform="rotate(-76.99484832931213,72.93190086677065,247.55569352790417)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="125.15742173671843" y="259.4538019068998" transform="rotate(-76.94382247713176,125.15742173671843,259.4538019068998)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="177.38734592306542" y="271.33422737452173" transform="rotate(-76.84109512568125,177.38734592306542,271.33422737452173)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="34.34858506596286" y="236.14416472234927" transform="rotate(-76.48397791683507,34.34858506596286,236.14416472234927)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="86.57539115795831" y="248.05563104949385" transform="rotate(-76.32101956629182,86.57539115795831,248.05563104949385)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="138.80638286763028" y="259.9623705919071" transform="rotate(-76.0510288698747,138.80638286763028,259.9623705919071)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="48.21587585426681" y="235.85124967162636" transform="rotate(-75.70645708233806,48.21587585426681,235.85124967162636)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="191.0477098318783" y="271.85787914958246" transform="rotate(-75.51718288776644,191.0477098318783,271.85787914958246)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="100.45520121050414" y="247.78182111830904" transform="rotate(-75.33531053241913,100.45520121050414,247.78182111830904)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="61.90830365970997" y="236.41268629450755" transform="rotate(-75.0469729985179,61.90830365970997,236.41268629450755)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="23.125065308662396" y="225.93869623781586" transform="rotate(-75.02454487623575,23.125065308662396,225.93869623781586)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="152.7075296087927" y="259.7206707719668" transform="rotate(-74.70554854141048,152.7075296087927,259.7206707719668)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="114.16568700098084" y="248.36971381691617" transform="rotate(-74.47312872133608,114.16568700098084,248.36971381691617)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="75.88209936245418" y="236.113432247958" transform="rotate(-74.08938235462111,75.88209936245418,236.113432247958)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="37.34370061595667" y="224.76762432740668" transform="rotate(-74.01675282274363,37.34370061595667,224.76762432740668)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="166.45006856412587" y="260.35603653096035" transform="rotate(-73.46661008939267,166.45006856412587,260.35603653096035)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="89.64467095797986" y="236.76301186276945" transform="rotate(-73.26817878364014,89.64467095797986,236.76301186276945)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="128.18666236555805" y="248.09529535321585" transform="rotate(-73.19046528312532,128.18666236555805,248.09529535321585)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="51.398979101450784" y="224.4497534833597" transform="rotate(-73.09588959674016,51.398979101450784,224.4497534833597)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="26.33288180964064" y="214.84652328488917" transform="rotate(-72.71609734158235,26.33288180964064,214.84652328488917)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="65.20581837081559" y="225.1488503524563" transform="rotate(-72.31799216220818,65.20581837081559,225.1488503524563)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="103.76472882933373" y="236.46588886089765" transform="rotate(-72.05986224840089,103.76472882933373,236.46588886089765)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="141.9943256955954" y="248.80819537809595" transform="rotate(-72.0483431398813,141.9943256955954,248.80819537809595)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="40.82577583577479" y="213.5305632935284" transform="rotate(-71.54952772865215,40.82577583577479,213.5305632935284)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="180.55899895032474" y="260.13225955415686" transform="rotate(-71.54170925494458,180.55899895032474,260.13225955415686)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="79.40849327692129" y="224.835419997455" transform="rotate(-71.18391637993008,79.40849327692129,224.835419997455)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="117.62464074539287" y="237.23610372262078" transform="rotate(-71.00926226918091,117.62464074539287,237.23610372262078)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="55.09808550524997" y="213.20507147688835" transform="rotate(-70.48532211114232,55.09808550524997,213.20507147688835)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="29.98487792404321" y="203.8925599883479" transform="rotate(-70.40764980692896,29.98487792404321,203.8925599883479)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="156.22683853623923" y="248.5531901890863" transform="rotate(-70.31110450956277,156.22683853623923,248.5531901890863)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="93.31100503630468" y="225.64987904554323" transform="rotate(-70.21533800098845,93.31100503630468,225.64987904554323)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="194.4555451614412" y="260.9750265641405" transform="rotate(-69.70816881947673,194.4555451614412,260.9750265641405)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="69.03588374913262" y="214.0547887609012" transform="rotate(-69.58901132589844,69.03588374913262,214.0547887609012)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="131.9529515308119" y="236.95945071344175" transform="rotate(-69.43710808911891,131.9529515308119,236.95945071344175)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="44.78835502569433" y="202.4538149132866" transform="rotate(-69.08230263456073,44.78835502569433,202.4538149132866)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="107.71539961579198" y="225.35753631647663" transform="rotate(-68.78441396438268,107.71539961579198,225.35753631647663)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="170.18257449139801" y="249.45631532644475" transform="rotate(-68.72682879330281,170.18257449139801,249.45631532644475)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="83.50201643557124" y="213.7506519569373" transform="rotate(-68.27845040523908,83.50201643557124,213.7506519569373)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="34.07512622356598" y="193.09458534632185" transform="rotate(-68.09920227227553,34.07512622356598,193.09458534632185)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="145.95308993358307" y="237.90375637910108" transform="rotate(-68.0456574098879,145.95308993358307,237.90375637910108)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="59.305517098075256" y="202.14054342527285" transform="rotate(-67.87475462554445,59.305517098075256,202.14054342527285)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="121.74995752108063" y="226.3318203331446" transform="rotate(-67.54539581702576,121.74995752108063,226.3318203331446)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="97.56398718902473" y="214.7477751478619" transform="rotate(-67.1624972183368,97.56398718902473,214.7477751478619)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="73.38981259526643" y="203.15566462167737" transform="rotate(-66.86003048958867,73.38981259526643,203.15566462167737)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="49.22409164097714" y="191.55791526271094" transform="rotate(-66.61507754046926,49.22409164097714,191.55791526271094)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="184.75170813588656" y="249.27110603995231" transform="rotate(-66.24232338420794,184.75170813588656,249.27110603995231)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="160.59147988810236" y="237.6881976089958" transform="rotate(-65.91666047771511,160.59147988810236,237.6881976089958)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="38.59698796797425" y="182.47012517716297" transform="rotate(-65.79075473762214,38.59698796797425,182.47012517716297)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="green" text-anchor="middle" class="shadow" x="136.44013252453652" y="226.09403877246825" transform="rotate(-65.6837508951125,136.44013252453652,226.09403877246825)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="112.29430587205637" y="214.4930568806978" transform="rotate(-65.50896568036444,112.29430587205637,214.4930568806978)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="88.15214460413269" y="202.88762648617467" transform="rotate(-65.37298443054806,88.15214460413269,202.88762648617467)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="64.01254081851233" y="191.27913516904135" transform="rotate(-65.26418713994659,64.01254081851233,191.27913516904135)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="54.12476191222319" y="180.86306512780482" transform="rotate(-64.14785244637781,54.12476191222319,180.86306512780482)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="78.25772950388986" y="192.47619888737495" transform="rotate(-64.13104965327895,78.25772950388986,192.47619888737495)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="102.39154612133908" y="204.0876437536329" transform="rotate(-64.10965643568511,102.39154612133908,204.0876437536329)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="126.52656424688428" y="215.69670571576575" transform="rotate(-64.08152936487059,126.52656424688428,215.69670571576575)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="150.66336298256613" y="227.3022502606858" transform="rotate(-64.04297167989446,150.66336298256613,227.3022502606858)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="174.8029652739732" y="238.90228709786857" transform="rotate(-63.987047497212984,174.8029652739732,238.90228709786857)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="198.94736472070005" y="250.49297623622573" transform="rotate(-63.899154751186984,198.94736472070005,250.49297623622573)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="43.54312388021158" y="172.0364236738966" transform="rotate(-63.48230720296874,43.54312388021158,172.0364236738966)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="69.20938663790545" y="180.6433909476554" transform="rotate(-62.653619654348745,69.20938663790545,180.6433909476554)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="93.34692254592068" y="192.27427185636964" transform="rotate(-62.467518455857004,93.34692254592068,192.27427185636964)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="117.48648731884677" y="203.90794716290435" transform="rotate(-62.23351739634623,117.48648731884677,203.90794716290435)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="141.6289561415794" y="215.54567020720128" transform="rotate(-61.93039370110603,141.6289561415794,215.54567020720128)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="59.48128009207919" y="170.38909255268095" transform="rotate(-61.680627352286365,59.48128009207919,170.38909255268095)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="165.7757912054216" y="227.1895751250253" transform="rotate(-61.52221644586743,165.7757912054216,227.1895751250253)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="83.62859326273893" y="182.04061429027232" transform="rotate(-61.40206881696918,83.62859326273893,182.04061429027232)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="48.90550605852619" y="161.81041541576974" transform="rotate(-61.173859668315345,48.90550605852619,161.81041541576974)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="107.77997970966754" y="193.6997416530464" transform="rotate(-61.05681565303345,107.77997970966754,193.6997416530464)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="189.9296315871322" y="238.8436147449737" transform="rotate(-60.94293751347129,189.9296315871322,238.8436147449737)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="131.937008158625" y="205.36961844898596" transform="rotate(-60.61766291271542,131.937008158625,205.36961844898596)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="74.88526783929986" y="170.25538660606264" transform="rotate(-60.043052168750876,74.88526783929986,170.25538660606264)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="156.10216605188265" y="217.05539584833255" transform="rotate(-60.04028594990109,156.10216605188265,217.05539584833255)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="99.07299475812542" y="181.9378744480313" transform="rotate(-59.562052481166006,99.07299475812542,181.9378744480313)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="180.27963979986404" y="228.7661360053312" transform="rotate(-59.24726620112315,180.27963979986404,228.7661360053312)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="65.28371530003436" y="160.15541607875156" transform="rotate(-59.21340225819489,65.28371530003436,160.15541607875156)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="123.27497997389875" y="193.63679101101337" transform="rotate(-58.95806911232805,123.27497997389875,193.63679101101337)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="54.67543100628049" y="151.80869788232238" transform="rotate(-58.86541213366192,54.67543100628049,151.80869788232238)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="89.49022189584551" y="171.87258040131684" transform="rotate(-58.67308798065946,89.49022189584551,171.87258040131684)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="147.4971632552318" y="205.3595956350821" transform="rotate(-58.17703650709964,147.4971632552318,205.3595956350821)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="204.47703570644578" y="240.51938306128218" transform="rotate(-58.09014068289727,204.47703570644578,240.51938306128218)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="113.71399389256685" y="183.61355296433226" transform="rotate(-58.00397487038174,113.71399389256685,183.61355296433226)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="81.02840340664847" y="160.13668377346258" transform="rotate(-57.43248468315301,81.02840340664847,160.13668377346258)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="137.96152057801038" y="195.38829164106863" transform="rotate(-57.153796460560244,137.96152057801038,195.38829164106863)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="171.749290676361" y="217.1190507113464" transform="rotate(-57.127772414019745,171.749290676361,217.1190507113464)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="71.52130993408346" y="150.1810087431322" transform="rotate(-56.74617716410347,71.52130993408346,150.1810087431322)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="105.31563980811306" y="171.90500859911504" transform="rotate(-56.65658650647498,105.31563980811306,171.90500859911504)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="60.84353375829468" y="142.04750451459392" transform="rotate(-56.556964599008495,60.84353375829468,142.04750451459392)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="162.24296625991843" y="207.21318181998708" transform="rotate(-56.03760021990769,162.24296625991843,207.21318181998708)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="95.82932029419916" y="161.99515994375838" transform="rotate(-55.944107144349715,95.82932029419916,161.99515994375838)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="129.64087157697287" y="183.7131465185887" transform="rotate(-55.68262082830981,129.64087157697287,183.7131465185887)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="196.0485051855374" y="228.9389263672128" transform="rotate(-55.64355164273468,196.0485051855374,228.9389263672128)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="120.17674608006533" y="173.85770544860208" transform="rotate(-54.95113408773011,120.17674608006533,173.85770544860208)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="87.62604247781509" y="150.30828510939202" transform="rotate(-54.821917197555166,87.62604247781509,150.30828510939202)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="186.57514041382984" y="219.11718814285177" transform="rotate(-54.507484905033294,186.57514041382984,219.11718814285177)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="154.01958030490738" y="195.57951149701893" transform="rotate(-54.42367931309323,154.01958030490738,195.57951149701893)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="78.18249961511042" y="140.48436290299975" transform="rotate(-54.27895207001197,78.18249961511042,140.48436290299975)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="67.39980308079653" y="132.54267836718822" transform="rotate(-54.2485170643551,67.39980308079653,132.54267836718822)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="112.05880818146005" y="162.2014682837877" transform="rotate(-53.751120531783954,112.05880818146005,162.2014682837877)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="144.57808914342502" y="185.78919506081976" transform="rotate(-53.68993000840507,144.57808914342502,185.78919506081976)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="102.63151037117996" y="152.43075648321633" transform="rotate(-53.21512630803997,102.63151037117996,152.43075648321633)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="178.4768563578638" y="207.53583528556777" transform="rotate(-52.73332838217209,178.4768563578638,207.53583528556777)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="136.5633633803061" y="174.16943638327425" transform="rotate(-52.40717254429157,136.5633633803061,174.16943638327425)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="210.9877661616483" y="231.1566798741905" transform="rotate(-52.28112661460753,210.9877661616483,231.1566798741905)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="94.66449081061768" y="140.7905907100241" transform="rotate(-52.2113497119573,94.66449081061768,140.7905907100241)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="169.0558060732122" y="197.82362283922714" transform="rotate(-52.034914489914286,169.0558060732122,197.82362283922714)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="74.3335977203085" y="123.3096463939597" transform="rotate(-51.940069529701674,74.3335977203085,123.3096463939597)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="127.14989295820597" y="164.45988925530094" transform="rotate(-51.898293305078425,127.14989295820597,164.45988925530094)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="85.25493462702002" y="131.08345595112053" transform="rotate(-51.81172697592052,85.25493462702002,131.08345595112053)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="119.28516354441628" y="152.85220079746756" transform="rotate(-50.8456545570929,119.28516354441628,152.85220079746756)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="161.1682272862215" y="186.24737260745871" transform="rotate(-50.67032211908679,161.1682272862215,186.24737260745871)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="109.88136367434907" y="143.20106361281546" transform="rotate(-50.486145471730225,109.88136367434907,143.20106361281546)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="203.05602098396002" y="219.64171235931389" transform="rotate(-50.344165771998036,203.05602098396002,219.64171235931389)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="151.7625382386893" y="176.60740188435727" transform="rotate(-50.2260635562499,151.7625382386893,176.60740188435727)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="193.6464091085976" y="210.021437383311" transform="rotate(-49.767703608943435,193.6464091085976,210.021437383311)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="81.63366367509688" y="114.36339440905977" transform="rotate(-49.63162199504828,81.63366367509688,114.36339440905977)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="102.12913920697568" y="131.6033557651649" transform="rotate(-49.60078222635943,102.12913920697568,131.6033557651649)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="92.72550281287486" y="121.99571698611572" transform="rotate(-49.344501881829075,92.72550281287486,121.99571698611572)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="144.01983810263147" y="165.03684197481388" transform="rotate(-49.13172426027336,144.01983810263147,165.03684197481388)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="134.61364255311395" y="155.44677832889448" transform="rotate(-48.84545252242674,134.61364255311395,155.44677832889448)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="185.91893267954356" y="198.4962745706817" transform="rotate(-48.338884350324406,185.91893267954356,198.4962745706817)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="176.50744945252512" y="188.93252531854307" transform="rotate(-48.032228759920855,176.50744945252512,188.93252531854307)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="126.97612731471405" y="143.88124261862995" transform="rotate(-47.9401885824019,126.97612731471405,143.88124261862995)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="117.56243637964356" y="134.32701574865652" transform="rotate(-47.75716463542048,117.56243637964356,134.32701574865652)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="89.28815246115214" y="105.71844276398159" transform="rotate(-47.32317446039488,89.28815246115214,105.71844276398159)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="110.00449383616542" y="122.76564955383432" transform="rotate(-46.99021474076156,110.00449383616542,122.76564955383432)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="168.9124377802135" y="177.40321217572534" transform="rotate(-46.91696492508035,168.9124377802135,177.40321217572534)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="100.58035388457756" y="113.23799449925039" transform="rotate(-46.87727678773763,100.58035388457756,113.23799449925039)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="159.48861732591942" y="167.87646054475115" transform="rotate(-46.76219710409475,159.48861732591942,167.87646054475115)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="218.4126882518197" y="222.50102542263326" transform="rotate(-46.47211254631782,218.4126882518197,222.50102542263326)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="151.98593382473638" y="156.34520145875587" transform="rotate(-45.85627597625512,151.98593382473638,156.34520145875587)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="142.54681040681456" y="146.84395469986404" transform="rotate(-45.79261173977508,142.54681040681456,146.84395469986404)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="210.8922743675901" y="211.03145110419746" transform="rotate(-45.04477990126139,210.8922743675901,211.03145110419746)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="135.11192642613298" y="135.31165761227632" transform="rotate(-45.034722607710904,135.11192642613298,135.31165761227632)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="125.6573065885919" y="125.82874064722057" transform="rotate(-45.028183799110735,125.6573065885919,125.82874064722057)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="201.44508201962995" y="201.54109401408246" transform="rotate(-45.027922312853576,201.44508201962995,201.54109401408246)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="97.28464034305277" y="97.38882278008063" transform="rotate(-45.014726925741485,97.28464034305277,97.38882278008063)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="108.80492510103413" y="104.82652513765782" transform="rotate(-44.41005169364615,108.80492510103413,104.82652513765782)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="118.27420839424383" y="114.29581586354297" transform="rotate(-44.37964725516372,118.27420839424383,114.29581586354297)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="184.56154399290773" y="180.58326395544327" transform="rotate(-44.02954302992745,184.56154399290773,180.58326395544327)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="194.0317630156458" y="190.0535178032843" transform="rotate(-43.94444031847672,194.0317630156458,190.0535178032843)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="167.72809685973456" y="159.62827215276963" transform="rotate(-43.29833065193958,167.72809685973456,159.62827215276963)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="177.2189905068078" y="169.08497007070088" transform="rotate(-43.16360773107391,177.2189905068078,169.08497007070088)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="150.92687970535735" y="138.67583587489477" transform="rotate(-42.7397709571234,150.92687970535735,138.67583587489477)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="105.61014849849968" y="89.3880539748236" transform="rotate(-42.70627939108806,105.61014849849968,89.3880539748236)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="160.43562358513574" y="148.12291230870028" transform="rotate(-42.58082769223691,160.43562358513574,148.12291230870028)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="134.1476138439586" y="117.72551375240448" transform="rotate(-42.29920296280099,134.1476138439586,117.72551375240448)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="143.67164416402073" y="127.16547773394205" transform="rotate(-42.12925663301985,143.67164416402073,127.16547773394205)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="117.38396826719544" y="96.77690360191377" transform="rotate(-41.942826599554735,117.38396826719544,96.77690360191377)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="126.92111803288941" y="106.21143491541903" transform="rotate(-41.76907976956582,126.92111803288941,106.21143491541903)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="226.67554502471395" y="214.64131677787339" transform="rotate(-40.663098478028076,226.67554502471395,214.64131677787339)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="114.2511640837925" y="81.72912211872824" transform="rotate(-40.397831856434664,114.2511640837925,81.72912211872824)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="209.91782020924558" y="193.73415925045606" transform="rotate(-40.288141016763745,209.91782020924558,193.73415925045606)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="193.1787982667742" y="172.81657013153722" transform="rotate(-40.02685729993405,193.1787982667742,172.81657013153722)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="176.45087143236105" y="151.89297393661022" transform="rotate(-39.834464199784406,176.45087143236105,151.89297393661022)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="219.49027615595318" y="203.1817484842813" transform="rotate(-39.74539403052475,219.49027615595318,203.1817484842813)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="159.7300651885829" y="130.96560553234843" transform="rotate(-39.68693017447174,159.7300651885829,130.96560553234843)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="143.0141007741934" y="110.03571447574078" transform="rotate(-39.570222126491245,143.0141007741934,110.03571447574078)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="202.76764695764462" y="182.25720523593918" transform="rotate(-39.54999628662907,202.76764695764462,182.25720523593918)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="126.30157800391267" y="89.10405373376298" transform="rotate(-39.47560150546326,126.30157800391267,89.10405373376298)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="186.05225183817282" y="161.32833006556297" transform="rotate(-39.4102505370675,186.05225183817282,161.32833006556297)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="169.3413004157943" y="140.39683852559486" transform="rotate(-39.30537940821867,169.3413004157943,140.39683852559486)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="152.63327394107367" y="119.46364638668919" transform="rotate(-39.223790658328824,152.63327394107367,119.46364638668919)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="135.92727498723622" y="98.52928687421587" transform="rotate(-39.15851228396795,135.92727498723622,98.52928687421587)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="123.19366216605805" y="74.4244581586091" transform="rotate(-38.08938432178124,123.19366216605805,74.4244581586091)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="135.54122123620002" y="81.82220084760687" transform="rotate(-37.00837641137183,135.54122123620002,81.82220084760687)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="152.2366567722192" y="102.7767845089565" transform="rotate(-36.84124129018154,152.2366567722192,102.7767845089565)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="168.93138066013753" y="123.73514771972532" transform="rotate(-36.634089391820055,168.93138066013753,123.73514771972532)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="145.2739858287514" y="91.2653170189376" transform="rotate(-36.54794479837011,145.2739858287514,91.2653170189376)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="185.62506977276112" y="144.69882912650402" transform="rotate(-36.37059774762925,185.62506977276112,144.69882912650402)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="161.97377587512406" y="112.22596457671108" transform="rotate(-36.31832468363781,161.97377587512406,112.22596457671108)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="178.67386754007825" y="133.19222286722308" transform="rotate(-36.02993112420046,178.67386754007825,133.19222286722308)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="202.31717350482634" y="165.67033320688049" transform="rotate(-36.02417156994065,202.31717350482634,165.67033320688049)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="132.42312848663215" y="67.48591804133844" transform="rotate(-35.78093678712784,132.42312848663215,67.48591804133844)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="195.37432866062073" y="154.16656676077034" transform="rotate(-35.65689334306106,195.37432866062073,154.16656676077034)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="219.00667447769686" y="186.65402853696338" transform="rotate(-35.5483597206739,219.00667447769686,186.65402853696338)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="212.07522077480664" y="175.15317627105617" transform="rotate(-35.155552254781384,212.07522077480664,175.15317627105617)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="235.6914736000619" y="207.65827632588514" transform="rotate(-34.85408440973836,235.6914736000619,207.65827632588514)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="145.08576784523655" y="74.94484535704908" transform="rotate(-34.54115131728037,145.08576784523655,74.94484535704908)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="228.776525268198" y="196.1597086524984" transform="rotate(-34.446008159788136,228.776525268198,196.1597086524984)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="161.79436360950137" y="95.96518826343686" transform="rotate(-34.11226045387177,161.79436360950137,95.96518826343686)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="154.94185026583233" y="84.43460264637619" transform="rotate(-33.937377312772256,154.94185026583233,84.43460264637619)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="178.5047099061212" y="117.00498473988682" transform="rotate(-33.581248609168384,178.5047099061212,117.00498473988682)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="141.9245830186503" y="60.92476347087009" transform="rotate(-33.47248925247443,141.9245830186503,60.92476347087009)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="171.66913602347375" y="105.47104000597898" transform="rotate(-33.41285870894677,171.66913602347375,105.47104000597898)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="195.21717119787408" y="138.07212368653438" transform="rotate(-32.90673129547409,195.21717119787408,138.07212368653438)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="188.40283343822855" y="126.5326043746405" transform="rotate(-32.75448284018222,188.40283343822855,126.5326043746405)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="154.91752242727108" y="68.48473774538976" transform="rotate(-32.073926223188906,154.91752242727108,68.48473774538976)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="211.93208867972234" y="159.17941567895542" transform="rotate(-32.02148583994726,211.93208867972234,159.17941567895542)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="205.14523092929866" y="147.6304028419692" transform="rotate(-31.903536149054645,205.14523092929866,147.6304028419692)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="171.66554288192418" y="89.616375526311" transform="rotate(-31.38327961756204,171.66554288192418,89.616375526311)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="164.91080141158818" y="78.05132177625731" transform="rotate(-31.326809827174372,164.91080141158818,78.05132177625731)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="151.68260428061024" y="54.75164362975846" transform="rotate(-31.164041717821007,151.68260428061024,54.75164362975846)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="228.64948170608537" y="180.34912634982138" transform="rotate(-30.80857842458404,228.64948170608537,180.34912634982138)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="221.8997594137198" y="168.7831999423469" transform="rotate(-30.761108222933743,221.8997594137198,168.7831999423469)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="188.42288082107805" y="110.79421890233525" transform="rotate(-30.528407826516712,188.42288082107805,110.79421890233525)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="181.6944281214869" y="99.21623923281265" transform="rotate(-30.50739273425576,181.6944281214869,99.21623923281265)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="165.01825710055698" y="62.45385492647702" transform="rotate(-29.606701129097445,165.01825710055698,62.45385492647702)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="198.49641146976842" y="120.43974146502768" transform="rotate(-29.47903455616401,198.49641146976842,120.43974146502768)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="205.19212809047795" y="132.0370702709901" transform="rotate(-29.442864843318915,205.19212809047795,132.0370702709901)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="238.67163705616974" y="190.02536038415275" transform="rotate(-29.146622289051507,238.67163705616974,190.02536038415275)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="245.36787674566685" y="201.62362271580906" transform="rotate(-29.045070341448664,245.36787674566685,201.62362271580906)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="161.68135436644334" y="48.976577894839124" transform="rotate(-28.855594183167597,161.68135436644334,48.976577894839124)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="175.16014743522592" y="72.12872372295064" transform="rotate(-28.716242341576503,175.16014743522592,72.12872372295064)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="181.82780517987285" y="83.74474641786972" transform="rotate(-28.654298781252294,181.82780517987285,83.74474641786972)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="215.32304321833962" y="141.7478772851577" transform="rotate(-28.15017895504822,215.32304321833962,141.7478772851577)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="221.976637992003" y="153.3754831080226" transform="rotate(-28.01880010995383,221.976637992003,153.3754831080226)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="192.02387766671453" y="93.47764302336523" transform="rotate(-27.60192675956472,192.02387766671453,93.47764302336523)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="198.65774253093858" y="105.12047830487867" transform="rotate(-27.47556704386504,198.65774253093858,105.12047830487867)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="175.36924529949152" y="56.86337803974459" transform="rotate(-27.139476035006012,175.36924529949152,56.86337803974459)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="171.90460465147166" y="43.60893957512593" transform="rotate(-26.5471466485142,171.90460465147166,43.60893957512593)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="232.18349826114323" y="163.1847293285265" transform="rotate(-26.36666419108606,232.18349826114323,163.1847293285265)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="208.92162372734546" y="114.93354084222196" transform="rotate(-26.20358627214577,208.92162372734546,114.93354084222196)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="185.66861451058705" y="66.67910159482653" transform="rotate(-26.105674855978663,185.66861451058705,66.67910159482653)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="238.78029002032966" y="174.86257499825928" transform="rotate(-26.068797128494182,238.78029002032966,174.86257499825928)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="215.51349395616154" y="126.61571975617565" transform="rotate(-25.978998391163742,215.51349395616154,126.61571975617565)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="192.25810087098628" y="78.36361872979691" transform="rotate(-25.925317944942535,192.25810087098628,78.36361872979691)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="202.63092818379442" y="88.27000500881365" transform="rotate(-24.69646078487372,202.63092818379442,88.27000500881365)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="185.9512964933031" y="51.72367172059296" transform="rotate(-24.67225094091455,185.9512964933031,51.72367172059296)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="209.18024529401305" y="99.99986679957146" transform="rotate(-24.42272626121337,209.18024529401305,99.99986679957146)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="225.86410453055444" y="136.54422507448652" transform="rotate(-24.396821761041778,225.86410453055444,136.54422507448652)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="182.3357621325257" y="38.65744069831726" transform="rotate(-24.238699113860804,182.3357621325257,38.65744069831726)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="232.4018196972813" y="148.28684963854363" transform="rotate(-24.016114379960428,232.4018196972813,148.28684963854363)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="249.0910219338853" y="184.83114391351495" transform="rotate(-23.84723641831485,249.0910219338853,184.83114391351495)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="196.41439097268977" y="61.71376677834019" transform="rotate(-23.495107370380765,196.41439097268977,61.71376677834019)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="255.60537388842295" y="196.59933428042453" transform="rotate(-23.236056273158923,255.60537388842295,196.59933428042453)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="202.9327723803999" y="73.4851977182897" transform="rotate(-23.196337108632818,202.9327723803999,73.4851977182897)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="219.6444087827053" y="110.0319924572043" transform="rotate(-22.928137988127574,219.6444087827053,110.0319924572043)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="226.14355659151477" y="121.82788067092591" transform="rotate(-22.515131939008583,226.14355659151477,121.82788067092591)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="196.74479176492167" y="47.044264884559" transform="rotate(-22.20502584682309,196.74479176492167,47.044264884559)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="242.86597277833073" y="158.39068134321644" transform="rotate(-21.972220159238375,242.86597277833073,158.39068134321644)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="192.9578963594725" y="34.13011787060657" transform="rotate(-21.930251579207393,192.9578963594725,34.13011787060657)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="213.4883094997624" y="83.60671375454308" transform="rotate(-21.790994810182696,213.4883094997624,83.60671375454308)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="219.960522953253" y="95.44691828493987" transform="rotate(-21.3698854785617,219.960522953253,95.44691828493987)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="249.32980986828406" y="170.23189968995857" transform="rotate(-21.329015832404323,249.32980986828406,170.23189968995857)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="207.37517259062327" y="57.24302545980461" transform="rotate(-20.884539884782924,207.37517259062327,57.24302545980461)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="236.72319559531246" y="132.041768948683" transform="rotate(-20.643464567035366,236.72319559531246,132.041768948683)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="213.8276078499024" y="69.1205484205941" transform="rotate(-20.46735627232306,213.8276078499024,69.1205484205941)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="243.1567751583776" y="143.93833987028881" transform="rotate(-20.01342864996701,243.1567751583776,143.93833987028881)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="red" text-anchor="middle" class="shadow" x="207.7297201840711" y="42.83383306089303" transform="rotate(-19.73780075273163,207.7297201840711,42.83383306089303)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="230.6297329727596" y="105.75111073102596" transform="rotate(-19.652689704109335,230.6297329727596,105.75111073102596)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="203.75376691444288" y="30.034319232744735" transform="rotate(-19.621804044553954,203.75376691444288,30.034319232744735)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="237.04347587696617" y="117.69104682021089" transform="rotate(-19.051265486853424,237.04347587696617,117.69104682021089)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="224.56810785424304" y="79.49975833884452" transform="rotate(-18.885528835491655,224.56810785424304,79.49975833884452)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="259.94560850206284" y="180.62146264199902" transform="rotate(-18.547850547578236,259.94560850206284,180.62146264199902)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="230.9679777057549" y="91.47455545422838" transform="rotate(-18.317044695910027,230.9679777057549,91.47455545422838)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="218.5282088628273" y="53.276157233584826" transform="rotate(-18.27397239918504,218.5282088628273,53.276157233584826)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="224.91789605429085" y="65.27957055773092" transform="rotate(-17.738375436013314,224.91789605429085,65.27957055773092)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="253.8843740099082" y="154.42924319580226" transform="rotate(-17.577776127390692,253.8843740099082,154.42924319580226)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="266.2988217929865" y="192.6370124936102" transform="rotate(-17.42704220486918,266.2988217929865,192.6370124936102)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="214.7058513941558" y="26.3766925335284" transform="rotate(-17.313356509900558,214.7058513941558,26.3766925335284)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="218.88571590714264" y="39.100182308293654" transform="rotate(-17.27057565864017,218.88571590714264,39.100182308293654)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="247.85373285113798" y="128.25982364048838" transform="rotate(-16.890107373028926,247.85373285113798,128.25982364048838)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="260.22588792486886" y="166.48877187780738" transform="rotate(-16.58923453631448,260.22588792486886,166.48877187780738)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="241.84170486215854" y="102.10488223222796" transform="rotate(-16.37724142009111,241.84170486215854,102.10488223222796)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="254.1890369561958" y="140.35116775298368" transform="rotate(-16.010742919973623,254.1890369561958,140.35116775298368)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="235.8418376642697" y="75.95969752962051" transform="rotate(-15.980062860800643,235.8418376642697,75.95969752962051)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="229.8503502386624" y="49.82139584111593" transform="rotate(-15.663404913587186,229.8503502386624,49.82139584111593)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="248.17342569079972" y="114.22033336627615" transform="rotate(-15.587399034698265,248.17342569079972,114.22033336627615)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="242.1713669489037" y="88.09405311675062" transform="rotate(-15.264203913258356,242.1713669489037,88.09405311675062)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="236.17848245037445" y="61.97097608035202" transform="rotate(-15.009394599703583,236.17848245037445,61.97097608035202)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="225.7963738499237" y="23.163174340069247" transform="rotate(-15.004908975247147,225.7963738499237,23.163174340069247)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="230.19209593507375" y="35.85023474262823" transform="rotate(-14.803350564548722,230.19209593507375,35.85023474262823)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="271.1426049859864" y="177.43230355019787" transform="rotate(-13.248464676841579,271.1426049859864,177.43230355019787)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="265.173917877043" y="151.3237066611829" transform="rotate(-13.183332095543022,265.173917877043,151.3237066611829)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="259.2079682808695" y="125.21461301990351" transform="rotate(-13.136750179022513,259.2079682808695,125.21461301990351)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="253.24369250838888" y="99.10521997968519" transform="rotate(-13.1017931360729,253.24369250838888,99.10521997968519)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="247.28051475923104" y="72.99563263834466" transform="rotate(-13.074596886109617,247.28051475923104,72.99563263834466)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="241.31809616825774" y="46.88591208072154" transform="rotate(-13.052837427989331,241.31809616825774,46.88591208072154)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="237.0073336391791" y="20.39898040235704" transform="rotate(-12.696461440593737,237.0073336391791,20.39898040235704)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="241.62789845922663" y="33.090015703465895" transform="rotate(-12.336125470457262,241.62789845922663,33.090015703465895)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="247.58382623149066" y="59.202269408644895" transform="rotate(-12.280413763393838,247.58382623149066,59.202269408644895)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="253.53889195666005" y="85.31500619645078" transform="rotate(-12.211363130606685,253.53889195666005,85.31500619645078)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="259.4927394258256" y="111.42842160086667" transform="rotate(-12.123532582543092,259.4927394258256,111.42842160086667)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="265.44478484894944" y="137.54283309530055" transform="rotate(-12.008057189980207,265.44478484894944,137.54283309530055)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="271.3940005839447" y="163.65879264334674" transform="rotate(-11.84945324022462,271.3940005839447,163.65879264334674)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="277.3383944253195" y="189.77735200234162" transform="rotate(-11.61802813657944,277.3383944253195,189.77735200234162)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="252.9076438809027" y="44.475798923706435" transform="rotate(-10.442269942391462,252.9076438809027,44.475798923706435)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="248.320534641693" y="18.08859718775716" transform="rotate(-10.388013905940326,248.320534641693,18.08859718775716)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="258.8547308976599" y="70.61518412106466" transform="rotate(-10.169130911418591,258.8547308976599,70.61518412106466)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="253.17192172417228" y="30.82464258321238" transform="rotate(-9.86890037636583,253.17192172417228,30.82464258321238)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="264.7984431462719" y="96.76192452019632" transform="rotate(-9.826344852054675,264.7984431462719,96.76192452019632)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="259.1080582581307" y="56.979730411109244" transform="rotate(-9.551432927084107,259.1080582581307,56.979730411109244)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="270.73719424212726" y="122.91920049668397" transform="rotate(-9.383392985016087,270.73719424212726,122.91920049668397)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="265.03828813429993" y="83.14530249850554" transform="rotate(-9.158522347955014,265.03828813429993,83.14530249850554)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="276.66822608360116" y="149.0923311328447" transform="rotate(-8.788888063695339,276.66822608360116,149.0923311328447)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="270.9600585770173" y="109.32551261032754" transform="rotate(-8.659666130387919,270.9600585770173,109.32551261032754)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="259.7176147930671" y="16.235774599180218" transform="rotate(-8.079566371286944,259.7176147930671,16.235774599180218)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="276.86910833105213" y="135.52703619306854" transform="rotate(-8.005371459986819,276.86910833105213,135.52703619306854)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="282.58629247745904" y="175.29092955873233" transform="rotate(-7.949078806104964,282.58629247745904,175.29092955873233)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="264.5949377907356" y="42.59605886761557" transform="rotate(-7.831702456793593,264.5949377907356,42.59605886761557)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="264.80276333533396" y="29.058315339566036" transform="rotate(-7.40167528227434,264.80276333533396,29.058315339566036)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="270.5347293742864" y="68.82447198660805" transform="rotate(-7.263664936727565,270.5347293742864,68.82447198660805)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="282.75776366169765" y="161.76131759845447" transform="rotate(-7.10967194413476,282.75776366169765,161.76131759845447)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="270.7250397332756" y="55.30840016081652" transform="rotate(-6.822452090774362,270.7250397332756,55.30840016081652)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="276.4682049008211" y="95.08265190796797" transform="rotate(-6.550896568036464,276.4682049008211,95.08265190796797)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="276.63691659543497" y="81.59110032126381" transform="rotate(-6.1056815653033425,276.63691659543497,81.59110032126381)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="288.6107109104689" y="188.04972267621127" transform="rotate(-5.809014068289741,288.6107109104689,188.04972267621127)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="271.1800758875641" y="14.843519888745277" transform="rotate(-5.7711188366335335,271.1800758875641,14.843519888745277)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="282.39195241440063" y="121.38343298064464" transform="rotate(-5.630035791009647,282.39195241440063,121.38343298064464)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="276.35571942718406" y="41.25059355291302" transform="rotate(-5.221134971195738,276.35571942718406,41.25059355291302)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="282.53348385720454" y="107.91929000287888" transform="rotate(-5.19579967823276,282.53348385720454,107.91929000287888)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="276.4988599386095" y="27.794308708878532" transform="rotate(-4.9344501881829075,276.4988599386095,27.794308708878532)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="288.29971639570584" y="147.7482362644555" transform="rotate(-4.394444031847655,288.29971639570584,147.7482362644555)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="282.2904815229733" y="67.62810006235907" transform="rotate(-4.358198962036539,282.2904815229733,67.62810006235907)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="282.40842148935786" y="54.19206950144698" transform="rotate(-4.093471254464603,282.40842148935786,54.19206950144698)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="yellow" text-anchor="middle" class="shadow" x="288.4062745107974" y="134.31361099318448" transform="rotate(-4.002685729993402,288.4062745107974,134.31361099318448)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="282.6893136019043" y="13.914092776813163" transform="rotate(-3.462671301980123,282.6893136019043,13.914092776813163)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="288.21485013080195" y="94.07288869063112" transform="rotate(-3.275448284018239,288.21485013080195,94.07288869063112)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="288.30185680139044" y="80.6568109770678" transform="rotate(-3.0528407826516712,288.30185680139044,80.6568109770678)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="294.1788431997194" y="174.21564646780502" transform="rotate(-2.649692935368307,294.1788431997194,174.21564646780502)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="288.1655777865171" y="40.442195664628514" transform="rotate(-2.610567485597869,288.1655777865171,40.442195664628514)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="288.23852719841074" y="27.034966134854756" transform="rotate(-2.4672250940914466,288.23852719841074,27.034966134854756)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="294.2394548254248" y="160.80932450285005" transform="rotate(-2.3698906480449295,294.2394548254248,160.80932450285005)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="294.12224596641084" y="120.61389864017553" transform="rotate(-1.8766785970032345,294.12224596641084,120.61389864017553)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="294.1707282886759" y="107.21489183424947" transform="rotate(-1.7319332260775866,294.1707282886759,107.21489183424947)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="294.09176391884836" y="67.02914415805873" transform="rotate(-1.452732987345513,294.09176391884836,67.02914415805873)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="294.1317037523783" y="53.633270449056795" transform="rotate(-1.3644904181548725,294.1317037523783,53.633270449056795)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="294.22664769129784" y="13.449001784312713" transform="rotate(-1.1542237673267124,294.22664769129784,13.449001784312713)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="299.99999999999994" y="40.17254313578394" transform="rotate(-1.4210854715202004e-14,299.99999999999994,40.17254313578394)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="300" y="147.29932483120783" transform="rotate(0,300,147.29932483120783)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="300" y="26.78169542385598" transform="rotate(0,300,26.78169542385598)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="300" y="93.73593398349587" transform="rotate(0,300,93.73593398349587)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="300" y="187.47186796699174" transform="rotate(0,300,187.47186796699174)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="300.00000000000006" y="80.34508627156791" transform="rotate(1.4210854715202004e-14,300.00000000000006,80.34508627156791)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="300.00000000000006" y="133.90847711927984" transform="rotate(1.4210854715202004e-14,300.00000000000006,133.90847711927984)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="305.7733523087021" y="13.449001784312713" transform="rotate(1.1542237673266982,305.7733523087021,13.449001784312713)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="305.8682962476218" y="53.633270449056795" transform="rotate(1.3644904181548725,305.8682962476218,53.633270449056795)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="305.9082360811517" y="67.02914415805873" transform="rotate(1.452732987345513,305.9082360811517,67.02914415805873)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="305.82927171132417" y="107.21489183424947" transform="rotate(1.7319332260775866,305.82927171132417,107.21489183424947)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="305.87775403358916" y="120.6138986401755" transform="rotate(1.876678597003206,305.87775403358916,120.6138986401755)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="305.7605451745753" y="160.80932450285005" transform="rotate(2.3698906480449295,305.7605451745753,160.80932450285005)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="311.7614728015894" y="27.034966134854756" transform="rotate(2.467225094091461,311.7614728015894,27.034966134854756)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="311.834422213483" y="40.442195664628514" transform="rotate(2.610567485597855,311.834422213483,40.442195664628514)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="305.8211568002806" y="174.21564646780502" transform="rotate(2.649692935368307,305.8211568002806,174.21564646780502)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="311.69814319860967" y="80.6568109770678" transform="rotate(3.0528407826516855,311.69814319860967,80.6568109770678)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="311.7851498691981" y="94.07288869063112" transform="rotate(3.275448284018225,311.7851498691981,94.07288869063112)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="317.31068639809564" y="13.914092776813163" transform="rotate(3.4626713019801088,317.31068639809564,13.914092776813163)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="311.59372548920265" y="134.31361099318448" transform="rotate(4.002685729993416,311.59372548920265,134.31361099318448)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="317.5915785106422" y="54.19206950144698" transform="rotate(4.0934712544646175,317.5915785106422,54.19206950144698)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="317.70951847702673" y="67.62810006235907" transform="rotate(4.358198962036525,317.70951847702673,67.62810006235907)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="311.7002836042942" y="147.74823626445553" transform="rotate(4.394444031847684,311.7002836042942,147.74823626445553)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="323.5011400613907" y="27.794308708878532" transform="rotate(4.934450188182922,323.5011400613907,27.794308708878532)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="317.4665161427955" y="107.91929000287891" transform="rotate(5.19579967823276,317.4665161427955,107.91929000287891)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="323.64428057281594" y="41.25059355291302" transform="rotate(5.221134971195724,323.64428057281594,41.25059355291302)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="317.6080475855993" y="121.38343298064464" transform="rotate(5.630035791009632,317.6080475855993,121.38343298064464)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="328.8199241124359" y="14.843519888745277" transform="rotate(5.7711188366335335,328.8199241124359,14.843519888745277)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="311.3892890895311" y="188.04972267621125" transform="rotate(5.809014068289713,311.3892890895311,188.04972267621125)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="323.3630834045651" y="81.59110032126381" transform="rotate(6.1056815653033425,323.3630834045651,81.59110032126381)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="323.53179509917896" y="95.08265190796797" transform="rotate(6.55089656803645,323.53179509917896,95.08265190796797)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="329.2749602667244" y="55.30840016081652" transform="rotate(6.822452090774348,329.2749602667244,55.30840016081652)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="317.2422363383025" y="161.76131759845447" transform="rotate(7.109671944134789,317.2422363383025,161.76131759845447)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="329.4652706257137" y="68.82447198660807" transform="rotate(7.263664936727565,329.4652706257137,68.82447198660807)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="335.19723666466615" y="29.05831533956598" transform="rotate(7.401675282274368,335.19723666466615,29.05831533956598)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="335.4050622092643" y="42.59605886761557" transform="rotate(7.831702456793593,335.4050622092643,42.59605886761557)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="317.4137075225411" y="175.29092955873233" transform="rotate(7.949078806104964,317.4137075225411,175.29092955873233)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="323.1308916689479" y="135.52703619306854" transform="rotate(8.005371459986819,323.1308916689479,135.52703619306854)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="340.282385206933" y="16.235774599180218" transform="rotate(8.07956637128693,340.282385206933,16.235774599180218)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="329.03994142298274" y="109.32551261032754" transform="rotate(8.659666130387919,329.03994142298274,109.32551261032754)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="323.331773916399" y="149.0923311328447" transform="rotate(8.788888063695353,323.331773916399,149.0923311328447)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="334.9617118657001" y="83.14530249850554" transform="rotate(9.158522347955028,334.9617118657001,83.14530249850554)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="329.26280575787274" y="122.91920049668397" transform="rotate(9.383392985016059,329.26280575787274,122.91920049668397)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="340.89194174186935" y="56.979730411109244" transform="rotate(9.551432927084093,340.89194174186935,56.979730411109244)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="335.20155685372816" y="96.76192452019632" transform="rotate(9.82634485205466,335.20155685372816,96.76192452019632)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="346.8280782758278" y="30.82464258321238" transform="rotate(9.86890037636583,346.8280782758278,30.82464258321238)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="341.14526910234" y="70.61518412106466" transform="rotate(10.169130911418577,341.14526910234,70.61518412106466)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="351.679465358307" y="18.08859718775716" transform="rotate(10.38801390594034,351.679465358307,18.08859718775716)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="347.0923561190973" y="44.475798923706435" transform="rotate(10.442269942391448,347.0923561190973,44.475798923706435)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="322.66160557468055" y="189.77735200234162" transform="rotate(11.618028136579454,322.66160557468055,189.77735200234162)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="328.60599941605534" y="163.65879264334674" transform="rotate(11.849453240224634,328.60599941605534,163.65879264334674)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="334.5552151510507" y="137.54283309530055" transform="rotate(12.00805718998022,334.5552151510507,137.54283309530055)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="340.5072605741745" y="111.42842160086667" transform="rotate(12.123532582543092,340.5072605741745,111.42842160086667)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="346.46110804334" y="85.31500619645078" transform="rotate(12.2113631306067,346.46110804334,85.31500619645078)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="352.4161737685094" y="59.202269408644895" transform="rotate(12.280413763393838,352.4161737685094,59.202269408644895)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="358.3721015407735" y="33.09001570346595" transform="rotate(12.33612547045729,358.3721015407735,33.09001570346595)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="362.9926663608209" y="20.39898040235704" transform="rotate(12.696461440593751,362.9926663608209,20.39898040235704)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="358.6819038317423" y="46.88591208072154" transform="rotate(13.052837427989317,358.6819038317423,46.88591208072154)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="352.719485240769" y="72.99563263834466" transform="rotate(13.074596886109617,352.719485240769,72.99563263834466)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="346.7563074916112" y="99.10521997968522" transform="rotate(13.1017931360729,346.7563074916112,99.10521997968522)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="340.7920317191304" y="125.21461301990345" transform="rotate(13.13675017902247,340.7920317191304,125.21461301990345)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="334.8260821229571" y="151.32370666118294" transform="rotate(13.183332095543037,334.8260821229571,151.32370666118294)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="328.8573950140137" y="177.43230355019787" transform="rotate(13.248464676841607,328.8573950140137,177.43230355019787)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="369.80790406492633" y="35.85023474262823" transform="rotate(14.803350564548737,369.80790406492633,35.85023474262823)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="374.2036261500763" y="23.163174340069247" transform="rotate(15.004908975247147,374.2036261500763,23.163174340069247)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="363.82151754962564" y="61.97097608035202" transform="rotate(15.009394599703583,363.82151754962564,61.97097608035202)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="357.8286330510964" y="88.09405311675064" transform="rotate(15.26420391325837,357.8286330510964,88.09405311675064)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="351.82657430920034" y="114.22033336627615" transform="rotate(15.587399034698251,351.82657430920034,114.22033336627615)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="370.1496497613377" y="49.82139584111593" transform="rotate(15.663404913587172,370.1496497613377,49.82139584111593)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="364.1581623357303" y="75.95969752962048" transform="rotate(15.98006286080063,364.1581623357303,75.95969752962048)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="345.81096304380424" y="140.35116775298368" transform="rotate(16.010742919973623,345.81096304380424,140.35116775298368)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="358.1582951378415" y="102.10488223222796" transform="rotate(16.37724142009111,358.1582951378415,102.10488223222796)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="339.7741120751312" y="166.48877187780738" transform="rotate(16.589234536314493,339.7741120751312,166.48877187780738)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="352.14626714886197" y="128.25982364048832" transform="rotate(16.89010737302891,352.14626714886197,128.25982364048832)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="381.1142840928575" y="39.10018230829371" transform="rotate(17.270575658640183,381.1142840928575,39.10018230829371)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="385.2941486058443" y="26.3766925335284" transform="rotate(17.313356509900558,385.2941486058443,26.3766925335284)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="333.7011782070136" y="192.6370124936102" transform="rotate(17.42704220486918,333.7011782070136,192.6370124936102)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="346.11562599009187" y="154.42924319580226" transform="rotate(17.577776127390706,346.11562599009187,154.42924319580226)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="375.08210394570926" y="65.27957055773092" transform="rotate(17.738375436013328,375.08210394570926,65.27957055773092)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="381.4717911371727" y="53.276157233584826" transform="rotate(18.273972399185027,381.4717911371727,53.276157233584826)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="369.03202229424517" y="91.47455545422838" transform="rotate(18.31704469591004,369.03202229424517,91.47455545422838)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="340.0543914979372" y="180.62146264199902" transform="rotate(18.547850547578236,340.0543914979372,180.62146264199902)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="375.43189214575705" y="79.49975833884452" transform="rotate(18.88552883549167,375.43189214575705,79.49975833884452)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="362.9565241230339" y="117.69104682021089" transform="rotate(19.051265486853424,362.9565241230339,117.69104682021089)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="396.24623308555715" y="30.034319232744735" transform="rotate(19.62180404455397,396.24623308555715,30.034319232744735)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="369.37026702724046" y="105.75111073102596" transform="rotate(19.652689704109335,369.37026702724046,105.75111073102596)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="392.270279815929" y="42.83383306089303" transform="rotate(19.737800752731644,392.270279815929,42.83383306089303)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="356.84322484162254" y="143.93833987028884" transform="rotate(20.01342864996704,356.84322484162254,143.93833987028884)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="386.17239215009766" y="69.1205484205941" transform="rotate(20.46735627232306,386.17239215009766,69.1205484205941)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="363.27680440468754" y="132.041768948683" transform="rotate(20.643464567035338,363.27680440468754,132.041768948683)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="392.6248274093768" y="57.24302545980461" transform="rotate(20.88453988478291,392.6248274093768,57.24302545980461)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="350.67019013171597" y="170.23189968995857" transform="rotate(21.329015832404323,350.67019013171597,170.23189968995857)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="380.0394770467471" y="95.44691828493987" transform="rotate(21.369885478561713,380.0394770467471,95.44691828493987)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="386.51169050023765" y="83.60671375454308" transform="rotate(21.79099481018268,386.51169050023765,83.60671375454308)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="407.0421036405275" y="34.13011787060657" transform="rotate(21.93025157920738,407.0421036405275,34.13011787060657)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="357.1340272216693" y="158.39068134321644" transform="rotate(21.97222015923836,357.1340272216693,158.39068134321644)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="403.25520823507844" y="47.044264884559" transform="rotate(22.205025846823105,403.25520823507844,47.044264884559)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="373.85644340848535" y="121.82788067092594" transform="rotate(22.515131939008583,373.85644340848535,121.82788067092594)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="380.3555912172948" y="110.0319924572043" transform="rotate(22.92813798812756,380.3555912172948,110.0319924572043)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="397.0672276196002" y="73.4851977182897" transform="rotate(23.196337108632818,397.0672276196002,73.4851977182897)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="344.3946261115771" y="196.59933428042453" transform="rotate(23.236056273158894,344.3946261115771,196.59933428042453)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="403.5856090273103" y="61.71376677834019" transform="rotate(23.495107370380765,403.5856090273103,61.71376677834019)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="350.9089780661148" y="184.83114391351495" transform="rotate(23.84723641831488,350.9089780661148,184.83114391351495)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="367.59818030271873" y="148.28684963854366" transform="rotate(24.01611437996044,367.59818030271873,148.28684963854366)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="417.6642378674743" y="38.65744069831726" transform="rotate(24.238699113860775,417.6642378674743,38.65744069831726)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="374.13589546944553" y="136.5442250744865" transform="rotate(24.39682176104175,374.13589546944553,136.5442250744865)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="390.81975470598707" y="99.99986679957149" transform="rotate(24.422726261213384,390.81975470598707,99.99986679957149)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="414.04870350669705" y="51.72367172059296" transform="rotate(24.67225094091455,414.04870350669705,51.72367172059296)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="397.3690718162056" y="88.27000500881365" transform="rotate(24.696460784873693,397.3690718162056,88.27000500881365)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="407.74189912901375" y="78.36361872979691" transform="rotate(25.925317944942535,407.74189912901375,78.36361872979691)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="384.4865060438386" y="126.61571975617571" transform="rotate(25.978998391163756,384.4865060438386,126.61571975617571)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="361.2197099796704" y="174.86257499825928" transform="rotate(26.068797128494182,361.2197099796704,174.86257499825928)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="414.3313854894129" y="66.67910159482653" transform="rotate(26.105674855978634,414.3313854894129,66.67910159482653)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="391.07837627265474" y="114.93354084222207" transform="rotate(26.203586272145778,391.07837627265474,114.93354084222207)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="367.8165017388568" y="163.1847293285265" transform="rotate(26.366664191086045,367.8165017388568,163.1847293285265)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="428.0953953485283" y="43.60893957512593" transform="rotate(26.547146648514186,428.0953953485283,43.60893957512593)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="424.63075470050853" y="56.86337803974459" transform="rotate(27.139476035006012,424.63075470050853,56.86337803974459)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="401.34225746906156" y="105.12047830487876" transform="rotate(27.475567043865063,401.34225746906156,105.12047830487876)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="407.9761223332855" y="93.47764302336523" transform="rotate(27.601926759564726,407.9761223332855,93.47764302336523)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="378.0233620079971" y="153.3754831080226" transform="rotate(28.018800109953837,378.0233620079971,153.3754831080226)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="384.67695678166035" y="141.74787728515764" transform="rotate(28.150178955048197,384.67695678166035,141.74787728515764)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="418.17219482012723" y="83.74474641786975" transform="rotate(28.654298781252287,418.17219482012723,83.74474641786975)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="424.8398525647741" y="72.12872372295061" transform="rotate(28.71624234157649,424.8398525647741,72.12872372295061)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="438.3186456335567" y="48.976577894839124" transform="rotate(28.855594183167604,438.3186456335567,48.976577894839124)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="354.6321232543332" y="201.62362271580906" transform="rotate(29.04507034144863,354.6321232543332,201.62362271580906)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="361.32836294383037" y="190.02536038415275" transform="rotate(29.1466222890515,361.32836294383037,190.02536038415275)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="394.80787190952213" y="132.0370702709901" transform="rotate(29.442864843318922,394.80787190952213,132.0370702709901)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="401.50358853023164" y="120.43974146502768" transform="rotate(29.479034556163995,401.50358853023164,120.43974146502768)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="434.98174289944313" y="62.45385492647708" transform="rotate(29.606701129097452,434.98174289944313,62.45385492647708)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="418.30557187851315" y="99.21623923281265" transform="rotate(30.507392734255752,418.30557187851315,99.21623923281265)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="411.57711917892203" y="110.79421890233525" transform="rotate(30.528407826516734,411.57711917892203,110.79421890233525)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="378.1002405862802" y="168.78319994234693" transform="rotate(30.76110822293373,378.1002405862802,168.78319994234693)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="371.35051829391466" y="180.34912634982138" transform="rotate(30.80857842458404,371.35051829391466,180.34912634982138)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="448.31739571938976" y="54.75164362975846" transform="rotate(31.164041717821014,448.31739571938976,54.75164362975846)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="435.0891985884119" y="78.05132177625731" transform="rotate(31.326809827174365,435.0891985884119,78.05132177625731)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="428.3344571180758" y="89.61637552631097" transform="rotate(31.383279617562025,428.3344571180758,89.61637552631097)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="394.85476907070137" y="147.63040284196916" transform="rotate(31.903536149054624,394.85476907070137,147.63040284196916)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="388.0679113202777" y="159.17941567895545" transform="rotate(32.02148583994726,388.0679113202777,159.17941567895545)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="445.08247757272903" y="68.48473774538976" transform="rotate(32.07392622318891,445.08247757272903,68.48473774538976)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="411.5971665617715" y="126.5326043746405" transform="rotate(32.75448284018223,411.5971665617715,126.5326043746405)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="404.782828802126" y="138.0721236865344" transform="rotate(32.906731295474096,404.782828802126,138.0721236865344)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="428.3308639765263" y="105.47104000597898" transform="rotate(33.41285870894677,428.3308639765263,105.47104000597898)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="458.07541698134963" y="60.92476347087006" transform="rotate(33.47248925247441,458.07541698134963,60.92476347087006)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="421.49529009387896" y="117.00498473988691" transform="rotate(33.581248609168405,421.49529009387896,117.00498473988691)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="445.05814973416767" y="84.43460264637613" transform="rotate(33.937377312772234,445.05814973416767,84.43460264637613)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="438.2056363904987" y="95.96518826343689" transform="rotate(34.11226045387178,438.2056363904987,95.96518826343689)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="371.2234747318021" y="196.15970865249844" transform="rotate(34.446008159788136,371.2234747318021,196.15970865249844)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="454.91423215476357" y="74.9448453570491" transform="rotate(34.541151317280374,454.91423215476357,74.9448453570491)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="364.3085263999382" y="207.65827632588514" transform="rotate(34.854084409738356,364.3085263999382,207.65827632588514)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="387.92477922519345" y="175.15317627105617" transform="rotate(35.1555522547814,387.92477922519345,175.15317627105617)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="380.9933255223032" y="186.65402853696338" transform="rotate(35.54835972067389,380.9933255223032,186.65402853696338)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="404.62567133937927" y="154.16656676077034" transform="rotate(35.65689334306104,404.62567133937927,154.16656676077034)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="467.5768715133679" y="67.48591804133844" transform="rotate(35.78093678712783,467.5768715133679,67.48591804133844)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="397.6828264951737" y="165.6703332068805" transform="rotate(36.024171569940656,397.6828264951737,165.6703332068805)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="421.32613245992184" y="133.1922228672231" transform="rotate(36.02993112420045,421.32613245992184,133.1922228672231)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="438.026224124876" y="112.22596457671108" transform="rotate(36.318324683637805,438.026224124876,112.22596457671108)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="414.374930227239" y="144.69882912650402" transform="rotate(36.370597747629255,414.374930227239,144.69882912650402)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="454.7260141712486" y="91.26531701893754" transform="rotate(36.54794479837009,454.7260141712486,91.26531701893754)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="431.0686193398626" y="123.73514771972538" transform="rotate(36.634089391820076,431.0686193398626,123.73514771972538)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="447.76334322778075" y="102.77678450895644" transform="rotate(36.841241290181515,447.76334322778075,102.77678450895644)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="464.4587787638" y="81.82220084760687" transform="rotate(37.00837641137182,464.4587787638,81.82220084760687)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="476.8063378339419" y="74.42445815860907" transform="rotate(38.08938432178124,476.8063378339419,74.42445815860907)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="464.0727250127637" y="98.52928687421587" transform="rotate(39.15851228396795,464.0727250127637,98.52928687421587)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="447.36672605892636" y="119.46364638668919" transform="rotate(39.223790658328824,447.36672605892636,119.46364638668919)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="430.65869958420564" y="140.39683852559486" transform="rotate(39.305379408218684,430.65869958420564,140.39683852559486)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="413.9477481618272" y="161.3283300655629" transform="rotate(39.41025053706747,413.9477481618272,161.3283300655629)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="473.6984219960874" y="89.10405373376304" transform="rotate(39.475601505463274,473.6984219960874,89.10405373376304)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="397.23235304235544" y="182.25720523593924" transform="rotate(39.549996286629074,397.23235304235544,182.25720523593924)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="456.98589922580663" y="110.03571447574078" transform="rotate(39.57022212649126,456.98589922580663,110.03571447574078)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="440.2699348114173" y="130.96560553234852" transform="rotate(39.68693017447175,440.2699348114173,130.96560553234852)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="380.5097238440469" y="203.18174848428134" transform="rotate(39.74539403052477,380.5097238440469,203.18174848428134)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="423.54912856763906" y="151.89297393661028" transform="rotate(39.83446419978442,423.54912856763906,151.89297393661028)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="406.8212017332259" y="172.81657013153728" transform="rotate(40.02685729993407,406.8212017332259,172.81657013153728)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="390.0821797907545" y="193.73415925045612" transform="rotate(40.288141016763745,390.0821797907545,193.73415925045612)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="485.74883591620744" y="81.72912211872824" transform="rotate(40.39783185643465,485.74883591620744,81.72912211872824)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="373.3244549752861" y="214.64131677787339" transform="rotate(40.663098478028076,373.3244549752861,214.64131677787339)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="473.0788819671106" y="106.211434915419" transform="rotate(41.76907976956582,473.0788819671106,106.211434915419)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="482.6160317328047" y="96.77690360191386" transform="rotate(41.942826599554735,482.6160317328047,96.77690360191386)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="456.3283558359794" y="127.16547773394205" transform="rotate(42.12925663301985,456.3283558359794,127.16547773394205)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="465.85238615604146" y="117.72551375240448" transform="rotate(42.299202962801,465.85238615604146,117.72551375240448)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="439.56437641486434" y="148.1229123087003" transform="rotate(42.5808276922369,439.56437641486434,148.1229123087003)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="494.3898515015003" y="89.38805397482355" transform="rotate(42.706279391088046,494.3898515015003,89.38805397482355)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="449.07312029464276" y="138.6758358748949" transform="rotate(42.73977095712342,449.07312029464276,138.6758358748949)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="422.7810094931922" y="169.08497007070085" transform="rotate(43.1636077310739,422.7810094931922,169.08497007070085)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="432.2719031402655" y="159.62827215276965" transform="rotate(43.29833065193959,432.2719031402655,159.62827215276965)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="405.9682369843543" y="190.05351780328434" transform="rotate(43.944440318476744,405.9682369843543,190.05351780328434)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="415.4384560070923" y="180.58326395544333" transform="rotate(44.02954302992747,415.4384560070923,180.58326395544333)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="481.72579160575617" y="114.29581586354286" transform="rotate(44.37964725516368,481.72579160575617,114.29581586354286)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="491.195074898966" y="104.82652513765794" transform="rotate(44.41005169364619,491.195074898966,104.82652513765794)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="502.71535965694727" y="97.38882278008063" transform="rotate(45.014726925741456,502.71535965694727,97.38882278008063)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="398.5549179803701" y="201.5410940140825" transform="rotate(45.02792231285359,398.5549179803701,201.5410940140825)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="474.3426934114082" y="125.82874064722063" transform="rotate(45.02818379911074,474.3426934114082,125.82874064722063)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="464.888073573867" y="135.3116576122763" transform="rotate(45.03472260771087,464.888073573867,135.3116576122763)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="389.10772563240994" y="211.0314511041975" transform="rotate(45.04477990126141,389.10772563240994,211.0314511041975)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="457.4531895931855" y="146.8439546998641" transform="rotate(45.7926117397751,457.4531895931855,146.8439546998641)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="448.0140661752636" y="156.3452014587559" transform="rotate(45.85627597625512,448.0140661752636,156.3452014587559)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="381.5873117481803" y="222.50102542263326" transform="rotate(46.47211254631781,381.5873117481803,222.50102542263326)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="440.5113826740806" y="167.87646054475118" transform="rotate(46.76219710409475,440.5113826740806,167.87646054475118)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="499.41964611542267" y="113.23799449925042" transform="rotate(46.87727678773764,499.41964611542267,113.23799449925042)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="431.08756221978643" y="177.40321217572532" transform="rotate(46.91696492508033,431.08756221978643,177.40321217572532)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="489.9955061638346" y="122.76564955383432" transform="rotate(46.990214740761544,489.9955061638346,122.76564955383432)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="510.71184753884796" y="105.71844276398161" transform="rotate(47.323174460394874,510.71184753884796,105.71844276398161)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="482.43756362035646" y="134.32701574865646" transform="rotate(47.75716463542048,482.43756362035646,134.32701574865646)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="473.02387268528605" y="143.88124261862995" transform="rotate(47.940188582401895,473.02387268528605,143.88124261862995)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="423.49255054747493" y="188.9325253185431" transform="rotate(48.03222875992088,423.49255054747493,188.9325253185431)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="414.08106732045655" y="198.4962745706818" transform="rotate(48.33888435032443,414.08106732045655,198.4962745706818)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="465.38635744688617" y="155.4467783288946" transform="rotate(48.84545252242677,465.38635744688617,155.4467783288946)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="455.9801618973686" y="165.03684197481388" transform="rotate(49.131724260273344,455.9801618973686,165.03684197481388)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="blue" text-anchor="middle" class="shadow" x="507.27449718712523" y="121.99571698611572" transform="rotate(49.344501881829096,507.27449718712523,121.99571698611572)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="497.8708607930244" y="131.60335576516488" transform="rotate(49.6007822263594,497.8708607930244,131.60335576516488)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="518.3663363249032" y="114.3633944090598" transform="rotate(49.63162199504828,518.3663363249032,114.3633944090598)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="406.3535908914025" y="210.02143738331102" transform="rotate(49.76770360894345,406.3535908914025,210.02143738331102)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="448.23746176131067" y="176.6074018843573" transform="rotate(50.22606355624992,448.23746176131067,176.6074018843573)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="396.94397901604003" y="219.6417123593139" transform="rotate(50.34416577199805,396.94397901604003,219.6417123593139)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="490.118636325651" y="143.20106361281543" transform="rotate(50.486145471730225,490.118636325651,143.20106361281543)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="438.83177271377855" y="186.24737260745866" transform="rotate(50.670322119086755,438.83177271377855,186.24737260745866)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="480.71483645558385" y="152.85220079746762" transform="rotate(50.84565455709292,480.71483645558385,152.85220079746762)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="514.7450653729801" y="131.08345595112067" transform="rotate(51.81172697592055,514.7450653729801,131.08345595112067)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="472.8501070417941" y="164.45988925530102" transform="rotate(51.89829330507844,472.8501070417941,164.45988925530102)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="525.6664022796915" y="123.3096463939597" transform="rotate(51.94006952970168,525.6664022796915,123.3096463939597)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="430.9441939267879" y="197.82362283922714" transform="rotate(52.034914489914286,430.9441939267879,197.82362283922714)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="505.3355091893823" y="140.79059071002405" transform="rotate(52.21134971195727,505.3355091893823,140.79059071002405)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="389.01223383835173" y="231.1566798741905" transform="rotate(52.28112661460753,389.01223383835173,231.1566798741905)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="463.436636619694" y="174.16943638327427" transform="rotate(52.407172544291576,463.436636619694,174.16943638327427)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="421.52314364213623" y="207.53583528556777" transform="rotate(52.73332838217209,421.52314364213623,207.53583528556777)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="497.3684896288201" y="152.43075648321636" transform="rotate(53.21512630803996,497.3684896288201,152.43075648321636)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="455.4219108565751" y="185.7891950608198" transform="rotate(53.68993000840509,455.4219108565751,185.7891950608198)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="487.94119181854" y="162.2014682837877" transform="rotate(53.75112053178395,487.94119181854,162.2014682837877)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="532.6001969192035" y="132.5426783671883" transform="rotate(54.24851706435509,532.6001969192035,132.5426783671883)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="521.8175003848896" y="140.4843629029999" transform="rotate(54.27895207001201,521.8175003848896,140.4843629029999)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="445.98041969509256" y="195.57951149701884" transform="rotate(54.42367931309318,445.98041969509256,195.57951149701884)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="413.4248595861702" y="219.11718814285183" transform="rotate(54.5074849050333,413.4248595861702,219.11718814285183)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="512.3739575221848" y="150.30828510939196" transform="rotate(54.82191719755513,512.3739575221848,150.30828510939196)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="479.82325391993476" y="173.85770544860213" transform="rotate(54.95113408773011,479.82325391993476,173.85770544860213)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="403.9514948144626" y="228.93892636721282" transform="rotate(55.64355164273468,403.9514948144626,228.93892636721282)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="470.35912842302724" y="183.7131465185887" transform="rotate(55.682620828309794,470.35912842302724,183.7131465185887)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="504.17067970580086" y="161.9951599437584" transform="rotate(55.944107144349715,504.17067970580086,161.9951599437584)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="437.75703374008157" y="207.21318181998714" transform="rotate(56.03760021990769,437.75703374008157,207.21318181998714)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="539.1564662417054" y="142.04750451459404" transform="rotate(56.5569645990085,539.1564662417054,142.04750451459404)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="494.6843601918869" y="171.90500859911498" transform="rotate(56.656586506474966,494.6843601918869,171.90500859911498)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="528.4786900659166" y="150.18100874313222" transform="rotate(56.746177164103464,528.4786900659166,150.18100874313222)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="428.2507093236391" y="217.11905071134643" transform="rotate(57.12777241401977,428.2507093236391,217.11905071134643)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="462.0384794219896" y="195.3882916410687" transform="rotate(57.15379646056026,462.0384794219896,195.3882916410687)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="518.9715965933516" y="160.13668377346255" transform="rotate(57.432484683153,518.9715965933516,160.13668377346255)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="486.2860061074332" y="183.61355296433234" transform="rotate(58.00397487038178,486.2860061074332,183.61355296433234)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="395.5229642935543" y="240.51938306128216" transform="rotate(58.09014068289725,395.5229642935543,240.51938306128216)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="452.5028367447682" y="205.35959563508203" transform="rotate(58.1770365070996,452.5028367447682,205.35959563508203)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="510.5097781041544" y="171.87258040131678" transform="rotate(58.673087980659446,510.5097781041544,171.87258040131678)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="545.3245689937194" y="151.8086978823223" transform="rotate(58.865412133661906,545.3245689937194,151.8086978823223)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="476.7250200261012" y="193.63679101101337" transform="rotate(58.95806911232802,476.7250200261012,193.63679101101337)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="534.7162846999656" y="160.15541607875156" transform="rotate(59.21340225819492,534.7162846999656,160.15541607875156)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="419.72036020013604" y="228.76613600533122" transform="rotate(59.24726620112315,419.72036020013604,228.76613600533122)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="500.9270052418746" y="181.9378744480313" transform="rotate(59.56205248116599,500.9270052418746,181.9378744480313)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="443.89783394811735" y="217.05539584833258" transform="rotate(60.0402859499011,443.89783394811735,217.05539584833258)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="525.1147321607001" y="170.25538660606261" transform="rotate(60.04305216875086,525.1147321607001,170.25538660606261)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="468.06299184137504" y="205.36961844898596" transform="rotate(60.617662912715424,468.06299184137504,205.36961844898596)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="410.0703684128679" y="238.84361474497373" transform="rotate(60.94293751347132,410.0703684128679,238.84361474497373)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="492.22002029033257" y="193.69974165304646" transform="rotate(61.05681565303345,492.22002029033257,193.69974165304646)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="551.0944939414738" y="161.81041541576965" transform="rotate(61.173859668315316,551.0944939414738,161.81041541576965)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="516.371406737261" y="182.04061429027232" transform="rotate(61.40206881696919,516.371406737261,182.04061429027232)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="434.22420879457843" y="227.18957512502533" transform="rotate(61.52221644586744,434.22420879457843,227.18957512502533)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="540.5187199079209" y="170.38909255268098" transform="rotate(61.68062735228637,540.5187199079209,170.38909255268098)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="458.3710438584206" y="215.54567020720123" transform="rotate(61.93039370110603,458.3710438584206,215.54567020720123)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="482.5135126811533" y="203.90794716290435" transform="rotate(62.233517396346244,482.5135126811533,203.90794716290435)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="506.6530774540794" y="192.27427185636967" transform="rotate(62.46751845585702,506.6530774540794,192.27427185636967)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="530.7906133620945" y="180.6433909476553" transform="rotate(62.65361965434873,530.7906133620945,180.6433909476553)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="556.4568761197884" y="172.0364236738966" transform="rotate(63.48230720296873,556.4568761197884,172.0364236738966)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="401.0526352793" y="250.4929762362257" transform="rotate(63.899154751186984,401.0526352793,250.4929762362257)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="425.1970347260269" y="238.90228709786862" transform="rotate(63.987047497213005,425.1970347260269,238.90228709786862)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="449.336637017434" y="227.30225026068587" transform="rotate(64.04297167989449,449.336637017434,227.30225026068587)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="473.47343575311584" y="215.69670571576575" transform="rotate(64.08152936487059,473.47343575311584,215.69670571576575)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="497.608453878661" y="204.08764375363296" transform="rotate(64.10965643568512,497.608453878661,204.08764375363296)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="521.7422704961101" y="192.47619888737495" transform="rotate(64.13104965327894,521.7422704961101,192.47619888737495)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="545.8752380877769" y="180.86306512780493" transform="rotate(64.14785244637783,545.8752380877769,180.86306512780493)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="535.9874591814877" y="191.2791351690413" transform="rotate(65.26418713994659,535.9874591814877,191.2791351690413)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="511.8478553958672" y="202.88762648617455" transform="rotate(65.37298443054804,511.8478553958672,202.88762648617455)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="487.70569412794373" y="214.4930568806978" transform="rotate(65.50896568036447,487.70569412794373,214.4930568806978)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="463.5598674754634" y="226.09403877246817" transform="rotate(65.68375089511247,463.5598674754634,226.09403877246817)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="darkblue" text-anchor="middle" class="shadow" x="561.4030120320258" y="182.4701251771629" transform="rotate(65.79075473762214,561.4030120320258,182.4701251771629)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="439.4085201118977" y="237.68819760899584" transform="rotate(65.91666047771511,439.4085201118977,237.68819760899584)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="415.24829186411347" y="249.27110603995231" transform="rotate(66.24232338420795,415.24829186411347,249.27110603995231)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="550.7759083590229" y="191.55791526271096" transform="rotate(66.61507754046929,550.7759083590229,191.55791526271096)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="526.6101874047337" y="203.15566462167743" transform="rotate(66.86003048958868,526.6101874047337,203.15566462167743)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="502.4360128109753" y="214.7477751478619" transform="rotate(67.1624972183368,502.4360128109753,214.7477751478619)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="478.2500424789194" y="226.3318203331446" transform="rotate(67.54539581702576,478.2500424789194,226.3318203331446)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="540.6944829019246" y="202.14054342527277" transform="rotate(67.87475462554445,540.6944829019246,202.14054342527277)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="454.046910066417" y="237.90375637910108" transform="rotate(68.04565740988791,454.046910066417,237.90375637910108)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="565.9248737764341" y="193.09458534632182" transform="rotate(68.09920227227553,565.9248737764341,193.09458534632182)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="516.4979835644289" y="213.75065195693725" transform="rotate(68.27845040523907,516.4979835644289,213.75065195693725)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="429.81742550860207" y="249.4563153264448" transform="rotate(68.72682879330286,429.81742550860207,249.4563153264448)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="492.28460038420803" y="225.35753631647668" transform="rotate(68.78441396438268,492.28460038420803,225.35753631647668)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="555.2116449743057" y="202.4538149132866" transform="rotate(69.08230263456073,555.2116449743057,202.4538149132866)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="468.0470484691881" y="236.95945071344173" transform="rotate(69.4371080891189,468.0470484691881,236.95945071344173)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="530.9641162508674" y="214.0547887609011" transform="rotate(69.58901132589841,530.9641162508674,214.0547887609011)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="405.5444548385588" y="260.9750265641405" transform="rotate(69.7081688194767,405.5444548385588,260.9750265641405)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="506.6889949636954" y="225.64987904554332" transform="rotate(70.21533800098847,506.6889949636954,225.64987904554332)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="443.7731614637608" y="248.55319018908637" transform="rotate(70.3111045095628,443.7731614637608,248.55319018908637)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="570.0151220759568" y="203.89255998834787" transform="rotate(70.40764980692896,570.0151220759568,203.89255998834787)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="544.90191449475" y="213.20507147688826" transform="rotate(70.48532211114232,544.90191449475,213.20507147688826)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="482.37535925460713" y="237.23610372262078" transform="rotate(71.00926226918092,482.37535925460713,237.23610372262078)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="520.5915067230787" y="224.83541999745498" transform="rotate(71.18391637993008,520.5915067230787,224.83541999745498)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="419.44100104967526" y="260.1322595541569" transform="rotate(71.54170925494459,419.44100104967526,260.1322595541569)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="559.1742241642254" y="213.5305632935285" transform="rotate(71.5495277286522,559.1742241642254,213.5305632935285)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="458.0056743044047" y="248.80819537809603" transform="rotate(72.04834313988131,458.0056743044047,248.80819537809603)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="496.23527117066635" y="236.4658888608977" transform="rotate(72.05986224840092,496.23527117066635,236.4658888608977)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="534.7941816291845" y="225.14885035245626" transform="rotate(72.31799216220816,534.7941816291845,225.14885035245626)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="573.6671181903595" y="214.8465232848892" transform="rotate(72.71609734158235,573.6671181903595,214.8465232848892)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="548.6010208985492" y="224.44975348335964" transform="rotate(73.09588959674018,548.6010208985492,224.44975348335964)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="471.813337634442" y="248.0952953532158" transform="rotate(73.19046528312532,471.813337634442,248.0952953532158)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="510.35532904202023" y="236.76301186276945" transform="rotate(73.26817878364014,510.35532904202023,236.76301186276945)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="433.54993143587416" y="260.3560365309604" transform="rotate(73.4666100893927,433.54993143587416,260.3560365309604)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="562.6562993840433" y="224.76762432740674" transform="rotate(74.01675282274364,562.6562993840433,224.76762432740674)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="524.1179006375459" y="236.11343224795803" transform="rotate(74.08938235462111,524.1179006375459,236.11343224795803)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="485.8343129990192" y="248.36971381691617" transform="rotate(74.4731287213361,485.8343129990192,248.36971381691617)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="447.29247039120736" y="259.7206707719668" transform="rotate(74.70554854141047,447.29247039120736,259.7206707719668)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="576.8749346913377" y="225.93869623781592" transform="rotate(75.02454487623577,576.8749346913377,225.93869623781592)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="538.09169634029" y="236.41268629450752" transform="rotate(75.0469729985179,538.09169634029,236.41268629450752)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="499.54479878949587" y="247.78182111830907" transform="rotate(75.33531053241913,499.54479878949587,247.78182111830907)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="408.95229016812175" y="271.85787914958246" transform="rotate(75.51718288776644,408.95229016812175,271.85787914958246)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="551.7841241457332" y="235.8512496716263" transform="rotate(75.70645708233805,551.7841241457332,235.8512496716263)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="461.1936171323698" y="259.96237059190713" transform="rotate(76.05102886987471,461.1936171323698,259.96237059190713)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="513.4246088420417" y="248.0556310494938" transform="rotate(76.32101956629182,513.4246088420417,248.0556310494938)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="565.6514149340371" y="236.14416472234933" transform="rotate(76.4839779168351,565.6514149340371,236.14416472234933)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="422.6126540769346" y="271.33422737452173" transform="rotate(76.84109512568122,422.6126540769346,271.33422737452173)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="474.84257826328155" y="259.45380190689974" transform="rotate(76.94382247713175,474.84257826328155,259.45380190689974)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="527.0680991332295" y="247.55569352790417" transform="rotate(76.99484832931213,527.0680991332295,247.55569352790417)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="aqua" text-anchor="middle" class="shadow" x="579.6333650831212" y="237.15107552569546" transform="rotate(77.33299241088918,579.6333650831212,237.15107552569546)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="540.8491810946736" y="247.82074840990404" transform="rotate(77.77595383482765,540.8491810946736,247.82074840990404)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="488.61426538803363" y="259.69197063490924" transform="rotate(77.93699517349125,488.61426538803363,259.69197063490924)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="436.36902407456716" y="271.5269021880058" transform="rotate(78.20639138548256,436.36902407456716,271.5269021880058)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="554.4446172991404" y="247.38589478077307" transform="rotate(78.3170245679359,554.4446172991404,247.38589478077307)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="502.20237029658074" y="259.2683614851406" transform="rotate(78.61075881643735,502.20237029658074,259.2683614851406)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="568.1540179282384" y="247.63909259376243" transform="rotate(78.95120301092655,568.1540179282384,247.63909259376243)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="449.94575467381435" y="271.1249787479681" transform="rotate(79.09999257325813,449.94575467381435,271.1249787479681)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="515.8881227868092" y="259.4956846171625" transform="rotate(79.3738603489435,515.8881227868092,259.4956846171625)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="581.9379322529568" y="248.46546272435995" transform="rotate(79.64143994554259,581.9379322529568,248.46546272435995)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="529.4345174038602" y="259.13278638107386" transform="rotate(79.90031430400316,529.4345174038602,259.13278638107386)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="463.5951863583005" y="271.31186703130186" transform="rotate(80.05371459986813,463.5951863583005,271.31186703130186)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="543.0603814769349" y="259.3471613935209" transform="rotate(80.50493467113739,543.0603814769349,259.3471613935209)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="477.1217754543642" y="270.9862444097547" transform="rotate(80.69717967113817,477.1217754543642,270.9862444097547)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="556.5769781655785" y="259.02974718230126" transform="rotate(80.92759205353377,556.5769781655785,259.02974718230126)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="411.2411414211443" y="283.0297626958523" transform="rotate(81.32619695605615,411.2411414211443,283.0297626958523)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="490.7050590324706" y="271.161504918138" transform="rotate(81.40086162564643,490.7050590324706,271.161504918138)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="570.1594685893762" y="259.2310965689739" transform="rotate(81.41842810501801,570.1594685893762,259.2310965689739)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="504.1993028297412" y="270.88798094414716" transform="rotate(81.88620710045558,504.1993028297412,270.88798094414716)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="583.7848957377536" y="259.86349384413734" transform="rotate(81.949887480196,583.7848957377536,259.86349384413734)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="424.7361376780268" y="282.78124809476617" transform="rotate(82.14048099641786,424.7361376780268,282.78124809476617)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="517.7388786525125" y="271.0507021122925" transform="rotate(82.42670113159517,517.7388786525125,271.0507021122925)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="531.2110715116424" y="270.8149467063138" transform="rotate(82.80578027869419,531.2110715116424,270.8149467063138)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="438.25542227155546" y="282.8925092846676" transform="rotate(82.94617268157242,438.25542227155546,282.8925092846676)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="544.7202821317911" y="270.96578150158064" transform="rotate(83.23391550744714,544.7202821317911,270.96578150158064)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="451.7174139922143" y="282.69906105091303" transform="rotate(83.49443660510582,451.7174139922143,282.69906105091303)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="558.1767807578404" y="270.7586385740349" transform="rotate(83.53815953913164,558.1767807578404,270.7586385740349)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="571.6640488509357" y="270.898685298103" transform="rotate(83.88565319910947,571.6640488509357,270.898685298103)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="465.19866606765686" y="282.80131684391057" transform="rotate(84.05640032986153,465.19866606765686,282.80131684391057)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="585.1712577951005" y="271.3266691358065" transform="rotate(84.2583350148494,585.1712577951005,271.3266691358065)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="478.6411518587538" y="282.64315074288095" transform="rotate(84.4505368651446,478.6411518587538,282.64315074288095)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="492.0990545911578" y="282.73640928578345" transform="rotate(84.86472807780159,492.0990545911578,282.73640928578345)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="505.5290719775291" y="282.6027156798427" transform="rotate(85.1616553844738,505.5290719775291,282.6027156798427)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="518.9716234146013" y="282.68788677778343" transform="rotate(85.47954191424684,518.9716234146013,282.68788677778343)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="532.3931940287392" y="282.57214027948675" transform="rotate(85.71124625338521,532.3931940287392,282.57214027948675)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="545.8251181397078" y="282.650255849835" transform="rotate(85.96289634375687,545.8251181397078,282.650255849835)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="559.2407044814066" y="282.5482241445171" transform="rotate(86.1487270247295,559.2407044814066,282.5482241445171)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="572.6649692503796" y="282.6202272986058" transform="rotate(86.35287829320092,572.6649692503796,282.6202272986058)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="586.0947682687979" y="282.8363831168991" transform="rotate(86.5667825495028,586.0947682687979,282.8363831168991)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="412.387501169726" y="294.37593744140906" transform="rotate(87.13521102434588,412.387501169726,294.37593744140906)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="425.7932989909623" y="294.37546544361066" transform="rotate(87.43986686715449,425.7932989909623,294.37546544361066)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="439.1962240270986" y="294.375122876096" transform="rotate(87.68595397766227,439.1962240270986,294.375122876096)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="452.5970316521397" y="294.3748664050701" transform="rotate(87.88888063695349,452.5970316521397,294.3748664050701)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="465.996233778772" y="294.374669423045" transform="rotate(88.05908605985493,465.996233778772,294.374669423045)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="479.3941896230025" y="294.3745148597733" transform="rotate(88.20389405915103,479.3941896230025,294.3745148597733)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="492.7911586835543" y="294.37439135584464" transform="rotate(88.32859452995676,492.7911586835543,294.37439135584464)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="506.18733309589237" y="294.37429111451456" transform="rotate(88.43710366849203,506.18733309589237,294.37429111451456)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="519.5828581575139" y="294.3742086403821" transform="rotate(88.53238269689851,519.5828581575139,294.3742086403821)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="532.9778457798911" y="294.3741399698936" transform="rotate(88.61671222807624,532.9778457798911,294.3741399698936)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="546.372383556333" y="294.3740821861115" transform="rotate(88.69187718006661,546.372383556333,294.3740821861115)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="559.7665410267623" y="294.3740331037748" transform="rotate(88.75929451032736,559.7665410267623,294.3740331037748)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="573.1603741007565" y="294.3739910596229" transform="rotate(88.82010338729238,573.1603741007565,294.3739910596229)"></text><text font-family="FontAwesome" font-size="12.940735183795946" fill="gray" text-anchor="middle" class="shadow" x="586.5539282410077" y="294.37395476961296" transform="rotate(88.87523008415621,586.5539282410077,294.37395476961296)"></text><text font-family="sans-serif" font-size="19.692423105776445" font-weight="bold" text-anchor="middle" fill="#444" x="300" y="300">Euro Parliament 2014</text></g></svg>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!--<script src="d3.v3.js"></script>-->
<script src="http://d3js.org/d3.v3.min.js"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <!-- note: http://stackoverflow.com/questions/20032426/fontawesome-doesnt-display-in-firefox -->
<link href="//maxcdn.bootstrapcdn.com/bootswatch/3.2.0/united/bootstrap.min.css" rel="stylesheet">
<style>
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
path, line {
stroke:#bbb;
stroke-width:1
}
/*http://www.d3noob.org/2013/01/adding-drop-shadow-to-allow-text-to.html*/
text.shadow {
stroke: gray;
stroke-width: 1px;
opacity: 0.9;
}
.half {
fill: #888;
opacity:0.5;
}
</style>
</head>
<body>
<div class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<span class="navbar-brand">Hemicycle - for parliaments/councils of any size, with draggable majority arc</span>
</div>
</div>
</div>
<div id="chart"></div>
<div class="alert alert-info">
The <strong>algorithm.py</strong> calculates optimal number of representatives in each row for several numbers of rows (+ size of icons and gap between the rows). These numbers are used as parameters for the chart.
<br/><em>It may be slow for big parliaments, but it is needed just once for any number (e.g., 200 representatives took about 1 hour, due to the grid search - further optimization possible, my trial using steepest descent algorithm did not converge many times).</em>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="list-group">
<a href="#" class="list-group-item active">Legend</a>
<a href="#" class="list-group-item">
<div id="legend"></div>
</a>
</div>
</div>
<div class="alert alert-info">
The legend is also created as a svg picture.
</div>
</div>
<script>
// 2:1!
var margin = {top: 0, right: 0, bottom: 0, left: 0},
width = 600 - margin.left - margin.right,
height = 300 - margin.top - margin.bottom;
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
/*examples of parliaments*/
/*Plasy 2010*/
/*var groups = [
{'name':'KSČM','n':2,'color':'red'},
{'name':'ČSSD','n':4,'color':'orange'},
{'name':'KDU-ČSL','n':2,'color':'yellow'},
{'name':'TOP 09','n':2,'color':'violet'},
{'name':'ODS','n':5,'color':'blue'}
];*/
/*Czech Republic 2013*/
var groups = [
{'name':'KSČM','n':33,'color':'red'},
{'name':'Úsvit','n':14,'color':'pink'},
{'name':'ČSSD','n':50,'color':'orange'},
{'name':'KDU-ČSL','n':14,'color':'yellow'},
{'name':'ANO','n':47,'color':'aqua'},
{'name':'TOP 09','n':26,'color':'purple'},
{'name':'ODS','n':16,'color':'blue'}
];
/*Czech Republic Senate 2013*/
/*var groups = [
{'name':'KSČM','n':2,'color':'red'},
{'name':'ČSSD','n':46,'color':'orange'},
{'name':'SPOZ','n':1,'color':'pink'},
{'name':'Severočeši','n':2,'color':'darkred'},
{'name':'Piráti','n':1,'color':'black'},
{'name':'Zelení','n':1,'color':'green'},
{'name':'KDU-ČSL','n':5,'color':'yellow'},
{'name':'Nezávislí kand.','n':1,'color':'gray'},
{'name':'Nestraníci','n':1,'color':'aqua'},
{'name':'TOP 09 + STAN','n':4,'color':'purple'},
{'name':'Ostravak','n':1,'color':'brown'},
{'name':'ODS','n':15,'color':'blue'},
{'name':'Neobsazeno','n':1,'color':'white'}
];*/
/*European Parliament 2014*/
/*var groups = [
{'name':'GUE-NGL','n':52,'color':'darkred'},
{'name':'Greens-EFA','n':50,'color':'green'},
{'name':'S&D','n':191,'color':'red'},
{'name':'ALDE','n':67,'color':'yellow'},
{'name':'EPP','n':221,'color':'blue'},
{'name':'ECR','n':70,'color':'darkblue'},
{'name':'EFDD','n':48,'color':'aqua'},
{'name':'Non-inscrits','n':52,'color':'gray'}
];*/
/*Plasy*/
/*var h = {
'n': [6,9],
'g': 1.19,
'w': 0.52,
}*/
/*CZ*/
/*var h = {
'n': [33,37,40,43,47],
'g': 1.17,
'w': 0.09,
}
var h = {
'n': [24,28,31,35,39,43],
'g': 1.23,
'w': 0.13,
}
var h = {
'n': [18,21,25,29,32,36,39],
'g': 1.19,
'w': 0.17,
}*/
var h = {
'n': [8,11,15,19,22,26,29,33,37],
'g': 1.20,
'w': 0.39,
}
/*var h = {
'n': [4,8,11,15,18,22,25,29,32,36],
'g': 1.20,
'w': 0.73,
}*/
/*CZ Senate*/
/*var h = {
'n': [9,13,16,20,23],
'g': 1.2,
'w': 0.34,
}*/
/*EP*/
/*var h = {
'n': [85,88,90,93,95,98,100,102],
'g': 1.16,
'w': 0.03,
}
var h = {
'n': [31,34,38,41,45,48,52,55,59,62,66,69,73,78],
'g': 1.19,
'w': 0.1,
}*/
//max radius (for scales)
rmax = 1 + h['n'].length *h['g']*h['w'];
var
xScale = d3.scale.linear()
.domain([-1*rmax, rmax])
.range([0, width]),
yScale = d3.scale.linear()
.domain([0, rmax])
.range([height,0])
x0Scale = d3.scale.linear()
.domain([0, 2*rmax])
.range([0, width]);
//generate data: 1 representative ~ 1 datum
data = [];
s = [];
for (i in h['n']) {
s.push((Math.PI/h['w'] + Math.PI*i*h['g']-h['n'][i])/(h['n'][i] - 1));
ninrow = h['n'][i];
radwidth = Math.PI/(h['n'][i]+(h['n'][i]-1)*s[i]);
radspace = radwidth*s[i];
r = 1 + i*h['g']*h['w'];
for (j=0;j<ninrow;j++) {
x = Math.cos(radwidth*(0.5+j)+j*radspace)*r;
y = Math.sin(radwidth*(0.5+j)+j*radspace)*r;
rot = -1*(radwidth*(0.5+j)+j*radspace)/Math.PI*180+90;
data.push({'x':x,'y':y,'rot':rot});
}
}
//sort data by rotation (representatives from 1 parl. groups together)
data.sort(function(x,y) {
if (x['rot'] < y['rot']) return -1;
if (x['rot'] > y['rot']) return 1;
return 0
});
//add colors and names to data - may be used later
i = 0;
for (gkey in groups) {
group = groups[gkey];
for (j=0;j<group['n'];j++) {
data[i]['color'] = group['color'];
data[i]['name'] = group['name'];
i++;
}
}
/* MAJORITY ARC */
var angle = [{'startangle':0,'endangle':Math.PI/2}];
var arci = d3.svg.arc()
.startAngle(function(d){return d.startangle})
.endAngle(function(d){return d.endangle})
.outerRadius(x0Scale(rmax))
.innerRadius(0);
var position = [xScale(0),yScale(0)];
//http://stackoverflow.com/questions/8538651/d3-update-data-and-update-graph
var arc = svg.selectAll('.half')
.data(angle)
.enter()
.append("path")
.attr("d",arci)
.attr("transform", "translate(" + position + ")")
.attr("class","half");
//http://stackoverflow.com/questions/15303342/how-to-apply-drag-behavior-to-a-d3-svg-arc
var drag = d3.behavior.drag()
.on("drag", function(d,i) {
alpha1 = Math.atan((d3.event.x - xScale(0))/(-d3.event.y + yScale(0)));
x2 = d3.event.dx + d3.event.x;
y2 = d3.event.dy + d3.event.y;
alpha2 = Math.atan((x2 - xScale(0))/(-y2 + yScale(0)));
alpha = alpha2-alpha1;
angle[0]['startangle'] += alpha;
angle[0]['endangle'] += alpha;
/*angle[0]['startangle'] = Math.min(0,angle[0]['startangle']);
angle[0]['startangle'] = Math.max(Math.PI/2,angle[0]['startangle']);
angle[0]['endangle'] = Math.min(Math.PI/2,angle[0]['endangle']);
angle[0]['endangle'] = Math.max(Math.PI,angle[0]['endangle']);*/
arc.attr("d",arci); // redraw the arc
/*position[0] += d3.event.dx;
position[1] += d3.event.dy;
d3.select(this)
.attr("transform", function(d,i){
return "translate(" + position + ")"
})*/
});
arc.call(drag);
// creating HEMICYCLE
var icons = svg.selectAll(".icon")
.data(data)
.enter().append("text")
.attr('font-family', 'FontAwesome')
.attr('font-size',x0Scale(h['w']*1.15)) //the icon is about 1.15times higher then wide
.attr('fill', function(d) {return d.color;})
.attr('text-anchor',"middle")
.attr('class', 'shadow')
.attr('x',function(d) {return xScale(d.x);})
.attr('y',function(d) {return yScale(d.y);})
.attr("transform",function(d) {return "rotate("+d.rot+","+xScale(d.x)+","+yScale(d.y)+")"})
.text('\uf007');
//custom text
svg.append("text")
.attr('font-family', 'sans-serif')
.attr('font-size',x0Scale(h['w']*1)) //adjust as needed
.attr('font-weight','bold')
.attr('text-anchor',"middle")
.attr('fill', '#444')
.attr('x',xScale(0))
.attr('y',yScale(0))
.text("CZ 2013");
/* LEGEND */
heightleg = x0Scale(groups.length * h['w']*1.15*h['g']);
var svgleg = d3.select("#legend").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", heightleg + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
//sorting for legend
groups.sort(function(x,y) {
if (x.n > y.n) return -1;
if (x.n < y.n) return 1;
return 0;
});
//creating legend
var iconsleg = svgleg.selectAll(".iconleg")
.data(groups)
.enter().append("text")
.attr('font-family', 'FontAwesome')
.attr('font-size',x0Scale(h['w']*1.15))
.attr('fill', function(d) {return d.color;})
.attr('text-anchor',"middle")
.attr('class', 'shadow')
.attr('x',x0Scale(h['w']*1.15))
.attr('y',function(d,i) {return (i+1)*x0Scale(h['w']*1.15);})
.text('\uf007');
var textleg = svgleg.selectAll(".textleg")
.data(groups)
.enter().append("text")
.attr('font-family', 'sans-serif')
.attr('font-size',x0Scale(h['w']*0.9))
//.attr('fill', function(d) {return d.color;})
//.attr('text-anchor',"middle")
//.attr('class', 'shadow')
.attr('x',x0Scale(2*h['w']*1.15))
.attr('y',function(d,i) {return (i+1)*x0Scale(h['w']*1.15);})
.text(function(d){return d.name + ' (' + d.n + ')'});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment