Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • main
1 result

Target

Select target project
  • algorithmique/cours
  • aurelien.boyer/cours
  • jeremy.meissner/cours
  • radhwan.hassine/cours
  • yassin.elhakoun/cours-algo
  • gaspard.legouic/cours
  • joachim.bach/cours
  • gabriel.marinoja/algo-cours
  • loic.lavorel/cours
  • iliya.saroukha/cours
  • costanti.volta/cours
  • jacquesw.ndoumben/cours
12 results
Select Git revision
  • master
1 result
Show changes
Showing
with 2892 additions and 0 deletions
#include <stdio.h>
double pow_naive(double x, int n) {
if (n == 0) {
return 1.0;
}
double res = x;
for (int i = 1; i < n; i++) {
res *= x;
}
return res;
}
double pow_rec(double x, int n) {
if (n == 0) {
return 1.0;
} else {
return x * pow_rec(x, n - 1);
}
}
double pow_eff(double x, int n) {
if (n == 0) {
return 1.0;
} else if (n % 2 == 0) {
double intermediate = pow_eff(x, n / 2);
return intermediate * intermediate;
} else {
return x * pow_eff(x, n - 1);
}
}
int main() {
double x = 2;
int n = 10000;
double y = 0;
for (int i = 0; i < 1000; ++i) {
// y += pow_eff(x, n);
y += pow_naive(x, n);
}
// printf("%lf^%d = %lf\n", x, n, pow_naive(x, n));
// printf("%d^%d = %lf\n", x, n, pow_rec(x, n));
// printf("%lf^%d = %lf\n", x, n, pow_eff(x, n));
printf("y = %lf\n", y);
}
#include <stdio.h>
int ppcm(int m, int n) {
int tmp_m = m;
int tmp_n = n;
while (m != n) {
if (m < n) {
m += tmp_m;
} else {
n += tmp_n;
}
}
return m;
}
int main() {
int m = 36;
int n = 90;
printf("the ppcm is %d\n", ppcm(m, n));
return 0;
}
#include <stdio.h>
#include <stdlib.h>
#define NX 8
#define NY 8
int main() {
char tab[NX][NY];
int cx = 4;
int cy = 7;
for (int i = 0; i < NX; ++i) {
for (int j = 0; j < NY; ++j) {
if (i == cy || j == cx) {
tab[i][j] = '*';
} else if (abs(cy - i) == abs(cx - j)) {
tab[i][j] = '*';
} else {
tab[i][j] = ' ';
}
}
}
tab[cy][cx] = 'R';
for (int i = 0; i < NX; ++i) {
for (int j = 0; j < NY; ++j) {
printf("%c ", tab[i][j]);
}
printf("\n");
}
}
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <assert.h>
struct element {
int data;
struct element *next;
};
struct queue {
struct element *head;
struct element *tail;
};
void queue_init(struct queue *fa) {
fa->head = NULL;
fa->tail = NULL;
}
bool queue_is_empty(struct queue fa) {
return (fa.head == NULL && fa.tail == NULL);
}
int queue_tail(struct queue fa) {
assert(!queue_is_empty(fa) && "Careful the queue is empty.");
return fa.tail->data;
}
int queue_head(struct queue fa) {
assert(!queue_is_empty(fa) && "Careful the queue is empty.");
return fa.head->data;
}
void queue_enqueue(struct queue *fa, int val) {
struct element *elem = malloc(sizeof(*elem));
elem->data = val;
elem->next = NULL;
if (queue_is_empty(*fa)) {
fa->tail = elem;
fa->head = elem;
} else {
fa->tail->next = elem;
fa->tail = elem;
}
}
int queue_dequeue(struct queue *fa) {
if (queue_is_empty(*fa)) {
assert(false && "Empty queue, impossible to dequeue.");
// do something
return -1;
} else if (fa->head != fa->tail) {
struct element *tmp_elem = fa->head; // 1
int tmp_val = fa->head->data; // 2
fa->head = fa->head->next; // 3
free(tmp_elem); // 4
return tmp_val; // 5
} else {
struct element *tmp_elem = fa->head; // 1
int tmp_val = fa->head->data; // 2
fa->head = NULL; // 3
fa->tail = NULL; // 3
free(tmp_elem); // 4
return tmp_val; // 5
}
}
void queue_destroy(struct queue *fa) {
while (!queue_is_empty(*fa)) {
queue_dequeue(fa);
}
}
int main() {
struct queue fa; // mémoire est allouée
queue_init(&fa);
printf("is fa empty? %s\n", queue_is_empty(fa) ? "yes" : "no");
printf("enqueuing 10\n");
queue_enqueue(&fa, 10);
printf("enqueuing 20\n");
queue_enqueue(&fa, 20);
printf("enqueuing 30\n");
queue_enqueue(&fa, 30);
printf("is fa empty? %s\n", queue_is_empty(fa) ? "yes" : "no");
int v1 = queue_dequeue(&fa);
printf("v1 contains? %d\n", v1);
printf("head contains? %d\n", queue_head(fa));
printf("tail contains? %d\n", queue_tail(fa));
int v2 = queue_dequeue(&fa);
int v3 = queue_dequeue(&fa);
printf("v2 contains? %d\n", v2);
printf("v3 contains? %d\n", v3);
printf("is fa empty? %s\n", queue_is_empty(fa) ? "yes" : "no");
printf("enqueuing 10\n");
queue_enqueue(&fa, 10);
printf("enqueuing 20\n");
queue_enqueue(&fa, 20);
printf("enqueuing 30\n");
queue_enqueue(&fa, 30);
printf("is fa empty? %s\n", queue_is_empty(fa) ? "yes" : "no");
printf("destroying\n");
queue_destroy(&fa);
printf("is fa empty? %s\n", queue_is_empty(fa) ? "yes" : "no");
return EXIT_SUCCESS;
}
#include <stdlib.h>
#include <stdio.h>
void print_tab(int size, int tab[size]) {
for (int i = 0; i < size; ++i) {
printf("%d ", tab[i]);
}
printf("\n");
}
void swap(int *lhs, int *rhs) {
int tmp = *lhs;
*lhs = *rhs;
*rhs = tmp;
}
int partition(int tab[], int ind_min, int ind_max) {
// ind_min == 0
// ind_max == 6
int pivot = tab[ind_max]; // 12
int i = ind_min - 1; // 0
int j = ind_max; // 6
while (i < j) {
do {
i += 1; // 0, tab[0] == 1 < 12
} while (tab[i] < pivot && i < j);
do {
j -= 1; // j == 5, tab[5] < 12
} while (tab[j] > pivot && i < j);
if (i < j) {
swap(&tab[i], &tab[j]);
}
}
swap(&tab[i], &tab[ind_max]);
return i;
}
void quicksort(int tab[], int ind_min, int ind_max) {
int size = ind_max - ind_min + 1;
if (size > 1) {
int ind_pivot = partition(tab, ind_min, ind_max);
if (ind_pivot - ind_min > 0) {
quicksort(tab, ind_min, ind_pivot - 1);
}
if (ind_max - ind_pivot > 0) {
quicksort(tab, ind_pivot + 1, ind_max);
}
}
}
int main(int argc, char *argv[]) {
int size = argc - 1;
int tab[size];
for (int i = 0; i < size; ++i) {
tab[i] = atoi(argv[i + 1]);
}
print_tab(size, tab);
quicksort(tab, 0, size - 1);
print_tab(size, tab);
}
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
#define SIZE 10
void tab_initialize(int size, double tab[size]) {
srand(time(NULL));
for (int i = 0; i < size; ++i) {
double rdm = (double)rand() / (double)RAND_MAX;
tab[i] = rdm;
}
}
void tab_show(int size, double tab[size]) {
for (int i = 0; i < size; ++i) {
printf("%lf ", tab[i]);
}
printf("\n");
}
int tab_find_min_index(int i, int size, double tab[size]) {
int i_min = i;
for (int j = i + 1; j < size; ++j) {
if (tab[j] < tab[i_min]) {
i_min = j;
}
}
return i_min;
}
void swap(int i, int j, double tab[]) {
double tmp = tab[i];
tab[i] = tab[j];
tab[j] = tmp;
}
void tab_selection_sort(int size, double tab[size]) {
for (int i = 0; i < size; ++i) {
int i_min = tab_find_min_index(i, size, tab);
// échange tab[i] et tab[j]
if (i_min != i) {
swap(i, i_min, tab);
}
}
}
bool tab_is_sorted(int size, double tab[size]) {
for (int i = 1; i < size; ++i) {
if (tab[i - 1] > tab[i]) {
return false;
}
}
return true;
}
int main() {
// allocate tab
double tab[SIZE];
tab_initialize(SIZE, tab);
tab_show(SIZE, tab);
tab_selection_sort(SIZE, tab);
tab_show(SIZE, tab);
bool is_sorted = tab_is_sorted(SIZE, tab);
printf("Is the tab sorted? %d\n", is_sorted);
}
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
struct element {
int data;
struct element *next;
};
typedef struct element *list;
list list_create() {
return NULL;
}
bool list_is_empty(list l) {
return l == NULL;
}
list list_push(list l, int val) {
struct element *e = malloc(sizeof(*e));
e->next = NULL;
e->data = val;
if (list_is_empty(l)) {
return e;
} else if (val < l->data) {
e->next = l;
return e;
} else {
struct element *crt = l;
while (NULL != crt && val > crt->next->data) {
crt = crt->next;
}
e->next = crt->next;
crt->next = e;
return l;
}
}
list list_extract(list l, int val) {
struct element *crt = l;
struct element *prec = l;
if (list_is_empty(l)) {
return l;
} else if (val == crt->data) {
l = crt->next;
free(crt);
return l;
} else {
while (crt->next != NULL && crt->data < val) {
prec = crt;
crt = crt->next;
}
if (val == crt->data) {
prec->next = crt->next;
free(crt);
}
return l;
}
}
struct element *list_search(list l, int val) {
struct element *crt = l;
while (crt->next != NULL && crt->data < val) {
crt = crt->next;
}
if (val == crt->data) {
return crt;
}
return NULL;
}
void list_destroy(list *l) {
struct element *crt = *l;
while (crt != NULL) {
struct element *e = crt;
crt = crt->next;
free(e);
}
*l = NULL;
}
void print_safe(struct element *e) {
if (e != NULL) {
printf("%d\n", e->data);
}
}
int main() {
list l = list_create();
l = list_extract(l, 2);
l = list_push(l, 10);
l = list_push(l, 0);
l = list_push(l, 2);
printf("first %d\n", l->data);
printf("second %d\n", l->next->data);
printf("third %d\n", l->next->next->data);
struct element *e = list_search(l, 2);
print_safe(e);
/*printf("two %d\n", e->data);*/
e = list_search(l, 10);
print_safe(e);
/*printf("ten %d\n", e->data);*/
e = list_search(l, 0);
print_safe(e);
/*printf("zero %d\n", e->data);*/
e = list_search(l, 3);
print_safe(e);
/*printf("absent %p\n", e);*/
e = list_search(l, 190);
print_safe(e);
/*printf("bigger %p\n", e);*/
e = list_search(l, -1);
print_safe(e);
/*printf("smaller %p\n", e);*/
l = list_extract(l, 2);
l = list_extract(l, 100);
printf("first %d\n", l->data);
printf("second %d\n", l->next->data);
l = list_extract(l, 0);
printf("first %d\n", l->data);
list_destroy(&l);
}
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <assert.h>
#define MAX_CAPACITY 5
struct stack {
int top;
int data[MAX_CAPACITY];
};
void stack_init(struct stack *s) {
s->top = -1;
}
bool stack_is_empty(struct stack s) {
return s.top == -1;
}
void stack_push(struct stack *s, int val) {
assert(s->top < MAX_CAPACITY - 1);
if (s->top != MAX_CAPACITY - 1) {
s->top += 1;
s->data[s->top] = val;
}
}
/*int stack_pop(struct stack *s) {*/
/* if (!stack_is_empty(*s)) {*/
/* int tmp = s->data[s->top];*/
/* s->top -= 1;*/
/* return tmp;*/
/* }*/
/*}*/
/*void stack_pop(struct stack *s, int *val) {*/
/* if (!stack_is_empty(*s)) {*/
/* *val = s->data[s->top];*/
/* s->top -= 1;*/
/* }*/
/*}*/
int *stack_pop(struct stack *s) {
assert(!stack_is_empty(*s));
if (!stack_is_empty(*s)) {
int *val = &(s->data[s->top]);
s->top -= 1;
return val;
} else {
return NULL;
}
}
int *stack_peek(struct stack s) {
if (!stack_is_empty(s)) {
int *val = &(s.data[s.top]);
return val;
} else {
return NULL;
}
}
void stack_print(struct stack s) {
for (int i = s.top; i >= 0; --i) {
printf("%d\n", s.data[i]);
}
}
int main() {
struct stack s;
stack_init(&s);
stack_print(s);
printf("s.top = %d\n", s.top);
printf("is_empty(): %s\n", stack_is_empty(s) ? "True" : "False");
stack_push(&s, 10);
stack_push(&s, 20);
stack_push(&s, 30);
stack_push(&s, 40);
stack_push(&s, 50);
stack_push(&s, 60);
printf("is_empty(): %s\n", stack_is_empty(s) ? "True" : "False");
stack_print(s);
/*int val = -1;*/
/*stack_pop(&s, &val);*/
/*printf("popped value = %d\n", val);*/
/*stack_pop(&s, &val);*/
/*printf("popped value = %d\n", val);*/
/*stack_pop(&s, &val);*/
/*printf("popped value = %d\n", val);*/
/*stack_pop(&s, &val);*/
/*printf("popped value = %d\n", val);*/
/*stack_pop(&s, &val);*/
/*printf("popped value = %d\n", val);*/
/*stack_pop(&s, &val);*/
/*printf("popped value = %d\n", val);*/
/*printf("popped value = %d\n", stack_pop(&s));*/
/*printf("popped value = %d\n", stack_pop(&s));*/
/*printf("popped value = %d\n", stack_pop(&s));*/
/*printf("popped value = %d\n", stack_pop(&s));*/
/*printf("popped value = %d\n", stack_pop(&s));*/
/*printf("popped value = %d\n", stack_pop(&s));*/
printf("peeked value = %d\n", *stack_peek(s));
printf("peeked value = %d\n", *stack_peek(s));
stack_print(s);
printf("popped value = %d\n", *stack_pop(&s));
printf("popped value = %d\n", *stack_pop(&s));
printf("popped value = %d\n", *stack_pop(&s));
printf("popped value = %d\n", *stack_pop(&s));
printf("popped value = %d\n", *stack_pop(&s));
/*printf("popped value = %d\n", *stack_pop(&s));*/
stack_print(s);
printf("is_empty(): %s\n", stack_is_empty(s) ? "True" : "False");
return EXIT_SUCCESS;
}
size_t strlen(char *str) {
int i = 0;
while (str[i] != '\0') {
i += 1;
}
return i;
}
#include <stdio.h>
int sum(int n) {
if (n <= 1) {
return 1;
} else {
return n + sum(n - 1);
}
}
int sum_imp(int n) {
int i = 1;
int sum = 0;
while (i <= n) {
sum += i;
i += 1;
}
return sum;
}
int main() {
int n = 100;
printf("Sum(%d) = %d, theoretical = %d\n", n, sum(n), n * (n + 1) / 2);
}
#include <stdio.h>
struct key_t {
int k;
};
struct value_t {
int v;
};
struct key_value_t {
struct key_t key;
struct value_t value;
};
struct elem {
struct key_value_t kv;
struct elem *next;
};
struct table {
struct elem *head;
};
struct value_t *sequential(struct table tab, struct key_t key) {
struct elem *e = tab.head;
while (e != NULL) {
if (e->kv.key.k == key.k) {
return &(e->kv.value);
}
e = e->next;
}
return NULL;
}
int main() {
int w = 5;
/*int *v = NULL;*/
int *v = &w;
printf("%d\n", *v);
}
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
bool is_prime(int number) {
for (int i = 2; i <= sqrt(number); i++) {
if (0 == number % i) {
return false;
}
}
return true;
}
int main() {
int max_number = 100000;
for (int i = 2; i <= max_number; ++i) { // max_number * sqrt(max_number)
if (is_prime(i)) {
printf("%d\n", i);
}
}
return 0;
}
slides/figs/Konigsberg_bridges.png

32.2 KiB

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="758.289" height="610.82623" id="svg2">
<defs id="defs4">
<marker refX="0" refY="0" orient="auto" style="overflow:visible" id="Arrow2Lstart">
<path d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " transform="matrix(1.1,0,0,1.1,1.1,0)" style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3495"/>
</marker>
<marker refX="0" refY="0" orient="auto" style="overflow:visible" id="Arrow2Lend">
<path d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " transform="matrix(-1.1,0,0,-1.1,-1.1,0)" style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3498"/>
</marker>
<linearGradient id="linearGradient3349">
<stop style="stop-color:#ffb26a;stop-opacity:1" offset="0" id="stop3351"/>
<stop style="stop-color:#e28a35;stop-opacity:1" offset="0.35802469" id="stop3355"/>
<stop style="stop-color:#d4761a;stop-opacity:1" offset="0.70477062" id="stop3357"/>
<stop style="stop-color:#c66200;stop-opacity:1" offset="1" id="stop3353"/>
</linearGradient>
<linearGradient id="linearGradient3309">
<stop style="stop-color:#5aff62;stop-opacity:1" offset="0" id="stop3311"/>
<stop style="stop-color:#2dba31;stop-opacity:1" offset="0.39197531" id="stop3337"/>
<stop style="stop-color:#179818;stop-opacity:1" offset="0.73727328" id="stop3339"/>
<stop style="stop-color:#017600;stop-opacity:1" offset="1" id="stop3313"/>
</linearGradient>
<linearGradient id="linearGradient3293">
<stop style="stop-color:#ff6a6a;stop-opacity:1" offset="0" id="stop3295"/>
<stop style="stop-color:#dc0000;stop-opacity:1" offset="1" id="stop3299"/>
</linearGradient>
<linearGradient id="linearGradient3273">
<stop style="stop-color:#6aa5ff;stop-opacity:1" offset="0" id="stop3275"/>
<stop style="stop-color:#3564ed;stop-opacity:1" offset="0.58333331" id="stop3281"/>
<stop style="stop-color:#0024dc;stop-opacity:1" offset="1" id="stop3279"/>
</linearGradient>
<linearGradient id="linearGradient3247">
<stop style="stop-color:#be6aff;stop-opacity:1" offset="0" id="stop3249"/>
<stop style="stop-color:#af35ed;stop-opacity:1" offset="0.68209875" id="stop3271"/>
<stop style="stop-color:#a000dc;stop-opacity:1" offset="1" id="stop3253"/>
</linearGradient>
<linearGradient id="linearGradient3229">
<stop style="stop-color:#fff38d;stop-opacity:1" offset="0" id="stop3231"/>
<stop style="stop-color:#d5be00;stop-opacity:1" offset="0.73148149" id="stop3237"/>
<stop style="stop-color:#ac9900;stop-opacity:1" offset="1" id="stop3233"/>
</linearGradient>
<radialGradient cx="284.82056" cy="139.85422" r="133.98128" fx="268.84122" fy="158.243" id="radialGradient3235" xlink:href="#linearGradient3293" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.5240304e-8,1.1446844,-1.1276156,4.4565708e-8,422.77925,-204.00852)"/>
<radialGradient cx="264.09863" cy="124.46253" r="134.00912" fx="244.02435" fy="144.21851" id="radialGradient3245" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-4.6009785e-8,1.1293934,-1.134048,-4.6199407e-8,405.24513,-173.80872)"/>
<radialGradient cx="255.48665" cy="122.76755" r="135.00706" fx="234.57149" fy="136.03662" id="radialGradient3265" xlink:href="#linearGradient3309" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.138057,-1.1958962,0,402.3039,-167.99081)"/>
<radialGradient cx="255.48665" cy="122.76755" r="135.00706" fx="234.57149" fy="136.03662" id="radialGradient3269" xlink:href="#linearGradient3309" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.138057,-1.1958962,0,402.3039,-167.99081)"/>
<radialGradient cx="259.91226" cy="119.38439" r="134.54617" fx="248.89748" fy="136.7305" id="radialGradient3291" xlink:href="#linearGradient3229" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.1662539,-1.1637544,0,398.84637,-183.73929)"/>
<radialGradient cx="261.80862" cy="124.15582" r="135.13818" fx="244.07454" fy="136.66563" id="radialGradient3307" xlink:href="#linearGradient3273" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.1348428,-1.1491215,0,404.47875,-172.95581)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3347" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3361" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3365" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3369" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3373" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3377" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="284.82056" cy="139.85422" r="133.98128" fx="268.84122" fy="160.48532" id="radialGradient3381" xlink:href="#linearGradient3229" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.5240304e-8,1.1446844,-1.1276156,4.4565708e-8,422.77925,-204.00852)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3387" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3391" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3395" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3399" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="255.48665" cy="122.76755" r="135.00706" fx="234.57149" fy="136.03662" id="radialGradient3403" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.138057,-1.1958962,0,402.3039,-167.99081)"/>
<radialGradient cx="264.09863" cy="124.46253" r="134.00912" fx="244.02435" fy="144.21851" id="radialGradient3407" xlink:href="#linearGradient3273" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-4.6009785e-8,1.1293934,-1.134048,-4.6199407e-8,405.24513,-173.80872)"/>
<radialGradient cx="255.48665" cy="122.76755" r="135.00706" fx="234.57149" fy="136.03662" id="radialGradient3411" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.138057,-1.1958962,0,402.3039,-167.99081)"/>
<radialGradient cx="261.80862" cy="124.15582" r="135.13818" fx="244.07454" fy="136.66563" id="radialGradient3415" xlink:href="#linearGradient3309" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.1348428,-1.1491215,0,404.47875,-172.95581)"/>
<radialGradient cx="259.91226" cy="119.38439" r="134.54617" fx="248.89748" fy="136.7305" id="radialGradient3423" xlink:href="#linearGradient3293" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.1662539,-1.1637544,0,398.84637,-183.73929)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3991" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
</defs>
<g transform="translate(9.3270943,38.019965)" id="layer1">
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(1.0420872,0,0,1.0420872,-34.228477,-27.513081)" style="opacity:1;fill:url(#radialGradient3235);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.95961261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path2236"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.9848946,0,0,0.9848946,339.30173,-45.305255)" style="opacity:1;fill:url(#radialGradient3245);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.01533711;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3209"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.4785988,0,0,0.4785988,261.1922,309.13243)" style="opacity:1;fill:url(#radialGradient3291);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.08943272;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3211"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.3054893,0,0,0.3054893,-54.171652,91.386129)" style="opacity:1;fill:url(#radialGradient3307);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.27343702;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3215"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.3320931,0,0,0.3320931,526.01789,245.30336)" style="opacity:1;fill:url(#radialGradient3265);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.01120377;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3219"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.2127124,0,0,0.2127124,17.462513,474.30655)" style="opacity:1;fill:url(#radialGradient3347);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.70118332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3221"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.3320931,0,0,0.3320931,-53.659533,283.94852)" style="opacity:1;fill:url(#radialGradient3269);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.01120377;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3267"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.2127124,0,0,0.2127124,125.4933,500.65552)" style="opacity:1;fill:url(#radialGradient3991);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.70118332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3359"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.2127124,0,0,0.2127124,241.42878,513.83001)" style="opacity:1;fill:url(#radialGradient3365);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.70118332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3363"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.2127124,0,0,0.2127124,456.61206,474.30655)" style="opacity:1;fill:url(#radialGradient3369);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.70118332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3367"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.2127124,0,0,0.2127124,518.9713,406.67752)" style="opacity:1;fill:url(#radialGradient3373);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.70118332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3371"/>
<path d="M 102.68236,500.31508 L 211.95242,269.69223" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3383"/>
<path d="M 204.397,524.40452 L 248.1742,279.9818" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3417"/>
<path d="M 312.74242,537.26661 L 287.18442,281.15417" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3419"/>
<path d="M 328.18707,540.24315 L 376.5138,454.88099" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3425"/>
<path d="M 342.6776,414.58263 L 208.22278,514.15796" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3427"/>
<path d="M 335.20505,399.92746 L 103.7347,493.66339" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;stroke-opacity:1" id="path3434"/>
<path d="M 511.04867,505.3891 L 454.612,445.61887" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3441"/>
<path d="M 565.95317,449.46299 L 472.49937,418.16268" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3443"/>
<path d="M 593.51498,294.47483 L 400.50924,201.81565" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:none;stroke-opacity:1" id="path3445"/>
<path d="M 85.979095,321.71028 L 171.04776,239.36382" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3447"/>
<path d="M 51.587471,308.52767 L 46.665047,198.26531" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3449"/>
<path d="M 366.23532,320.70275 L 325.48974,243.94334" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-opacity:1" id="path3451"/>
<path d="M 582.64819,316.70656 L 560.85977,331.30705 C 554.64545,335.47128 548.94779,337.70621 539.52874,340.02811 L 459.46991,359.76354" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3460"/>
<path d="M 575.73794,304.21047 L 488.86119,328.29044 C 477.1472,331.53726 472.75396,334.18277 463.70269,339.02269 L 451.71778,345.43128" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3458"/>
<path d="M 400.95948,118.3756 L 464.95965,118.04655 C 472.45479,118.00802 476.49306,117.51338 481.05242,116.73679 L 487.38448,115.65825" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3466"/>
<path d="M 396.73246,96.522041 L 405.92763,95.011984 C 410.75233,94.219658 414.97643,93.633648 421.17625,93.633648 L 484.06056,93.633648" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:none;stroke-opacity:1" id="path3468"/>
<path d="M 394.29768,189.0189 L 385.37585,179.83324 L 398.12314,181.05061 C 395.26295,182.57186 393.72788,185.79492 394.29768,189.0189 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3680"/>
<path d="M 473.37011,89.196539 L 485.38858,93.616033 L 473.37011,98.035527 C 475.29016,95.42626 475.2791,91.856329 473.37011,89.196539 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3695"/>
<path d="M 410.80437,122.75769 L 398.76334,118.40004 L 410.75892,113.91882 C 408.85232,116.53792 408.88173,120.10775 410.80437,122.75769 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3712"/>
<path d="M 326.58289,255.4663 L 324.85153,242.7786 L 334.39012,251.32205 C 331.1852,250.84951 328.03716,252.53308 326.58289,255.4663 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3724"/>
<path d="M 28.780558,187.71948 L 32.65965,175.51587 L 37.610751,187.32527 C 34.918449,185.5235 31.352564,185.69377 28.780558,187.71948 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3736"/>
<path d="M 146.35192,222.18757 L 158.06113,217.00397 L 152.49958,228.53847 C 152.06437,225.32826 149.57347,222.77093 146.35192,222.18757 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3748"/>
<path d="M 100.15985,358.54808 L 346.71991,389.2103" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3752"/>
<path d="M 94.96408,342.41547 L 83.582893,336.54657 L 96.054895,333.64405 C 93.827516,335.99642 93.397932,339.54043 94.96408,342.41547 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3762"/>
<path d="M 467.29861,404.18818 L 457.30594,396.18056 L 470.10577,395.8068 C 467.45646,397.67119 466.33318,401.05982 467.29861,404.18818 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3776"/>
<path d="M 444.79666,435.01453 L 439.75888,423.24184 L 451.22342,428.94621 C 448.00805,429.34153 445.41998,431.80047 444.79666,435.01453 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3788"/>
<path d="M 353.87619,439.74774 L 363.63918,431.46164 L 361.57015,444.09867 C 360.24403,441.14296 357.13111,439.39531 353.87619,439.74774 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3800"/>
<path d="M 331.44585,417.37928 L 343.73433,413.77811 L 336.70634,424.48244 C 336.69643,421.24288 334.5629,418.38061 331.44585,417.37928 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3812"/>
<path d="M 323.63079,399.82743 L 336.42936,399.41266 L 326.9485,408.02014 C 327.74877,404.88097 326.39854,401.57621 323.63079,399.82743 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3824"/>
<path d="M 190.10935,254.38925 L 199.24579,245.41702 L 198.09856,258.17081 C 196.5616,255.31904 193.33015,253.80173 190.10935,254.38925 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3836"/>
<path d="M 228.06583,267.93473 L 234.53528,256.88386 L 236.76632,269.4933 C 234.5365,267.14325 231.02055,266.52465 228.06583,267.93473 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3848"/>
<path d="M 269.90222,270.80885 L 273.10645,258.41093 L 278.69752,269.93115 C 275.91049,268.27969 272.3593,268.64519 269.90222,270.80885 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3871"/>
<path d="M 564.25073,302.79003 L 577.013,303.83878 L 566.61166,311.30788 C 567.765,308.28056 566.8008,304.84329 564.25073,302.79003 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3886"/>
<path d="M 470.91164,361.51296 L 458.18471,360.0985 L 468.79606,352.93088 C 467.55634,355.92387 468.42153,359.38739 470.91164,361.51296 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3901"/>
<text x="76.673607" y="512.97437" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3905" xml:space="preserve"><tspan x="76.673607" y="512.97437" id="tspan3907">1.6%</tspan></text>
<text x="578.18237" y="445.34531" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3909" xml:space="preserve"><tspan x="578.18237" y="445.34531" id="tspan3911">1.6%</tspan></text>
<text x="515.82318" y="512.97437" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3913" xml:space="preserve"><tspan x="515.82318" y="512.97437" id="tspan3915">1.6%</tspan></text>
<text x="300.63986" y="552.4978" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3917" xml:space="preserve"><tspan x="300.63986" y="552.4978" id="tspan3919">1.6%</tspan></text>
<text x="184.70439" y="539.3233" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3921" xml:space="preserve"><tspan x="184.70439" y="539.3233" id="tspan3923">1.6%</tspan></text>
<g transform="translate(0,0.5174147)" id="g3935">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3927" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3929">D</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3931" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3933">3.9%</tspan></text>
</g>
<g transform="translate(579.67742,-38.127745)" id="g3941">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3943" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3945">F</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3947" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3949">3.9%</tspan></text>
</g>
<g transform="translate(356.15667,46.418133)" id="g3951">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3953" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3955">E</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3957" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3959">8.1%</tspan></text>
</g>
<g transform="translate(577.00821,-236.42621)" id="g3961">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3963" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3965">C</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3967" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3969">34.3%</tspan></text>
</g>
<g transform="translate(221.31796,-210.54071)" id="g3971">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3973" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3975">B</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3977" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3979">38.4%</tspan></text>
</g>
<g transform="translate(-8.0126361,-195.80692)" id="g3981">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3983" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3985">A</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3987" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3989">3.3%</tspan></text>
</g>
</g>
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" width="680px" height="800px" viewBox="0 0 680 800" version="1.1">
<g stroke="#4B32E9" stroke-width="0.625" stroke-opacity="0.6">
<line x1="174" y1="88" x2="240" y2="87"/>
<line x1="174" y1="88" x2="162" y2="196"/>
<line x1="174" y1="88" x2="241" y2="195"/>
<line x1="240" y1="87" x2="162" y2="196"/>
<line x1="240" y1="87" x2="241" y2="195"/>
<line x1="207" y1="171" x2="240" y2="87"/>
<line x1="207" y1="171" x2="198" y2="195"/>
<line x1="207" y1="171" x2="189" y2="290"/>
<line x1="207" y1="171" x2="215" y2="290"/>
<line x1="162" y1="196" x2="241" y2="195"/>
<line x1="198" y1="195" x2="128" y2="221"/>
<line x1="198" y1="195" x2="215" y2="290"/>
<line x1="241" y1="195" x2="193" y2="322"/>
<line x1="128" y1="221" x2="189" y2="290"/>
<line x1="128" y1="221" x2="90" y2="298"/>
<line x1="128" y1="221" x2="61" y2="316"/>
<line x1="128" y1="221" x2="50" y2="382"/>
<line x1="128" y1="221" x2="175" y2="373"/>
<line x1="128" y1="221" x2="218" y2="374"/>
<line x1="128" y1="221" x2="103" y2="415"/>
<line x1="128" y1="221" x2="43" y2="440"/>
<line x1="128" y1="221" x2="218" y2="436"/>
<line x1="128" y1="221" x2="227" y2="412"/>
<line x1="128" y1="221" x2="110" y2="472"/>
<line x1="128" y1="221" x2="201" y2="457"/>
<line x1="128" y1="221" x2="206" y2="510"/>
<line x1="128" y1="221" x2="204" y2="541"/>
<line x1="128" y1="221" x2="243" y2="566"/>
<line x1="301" y1="192" x2="207" y2="251"/>
<line x1="301" y1="192" x2="189" y2="290"/>
<line x1="301" y1="192" x2="269" y2="329"/>
<line x1="155" y1="224" x2="305" y2="300"/>
<line x1="155" y1="224" x2="90" y2="298"/>
<line x1="155" y1="224" x2="20" y2="390"/>
<line x1="155" y1="224" x2="335" y2="405"/>
<line x1="155" y1="224" x2="105" y2="455"/>
<line x1="155" y1="224" x2="216" y2="420"/>
<line x1="155" y1="224" x2="218" y2="436"/>
<line x1="155" y1="224" x2="246" y2="420"/>
<line x1="155" y1="224" x2="258" y2="428"/>
<line x1="155" y1="224" x2="280" y2="456"/>
<line x1="155" y1="224" x2="172" y2="484"/>
<line x1="155" y1="224" x2="201" y2="457"/>
<line x1="155" y1="224" x2="39" y2="500"/>
<line x1="155" y1="224" x2="130" y2="549"/>
<line x1="155" y1="224" x2="243" y2="566"/>
<line x1="241" y1="226" x2="215" y2="290"/>
<line x1="241" y1="226" x2="149" y2="361"/>
<line x1="241" y1="226" x2="243" y2="350"/>
<line x1="241" y1="226" x2="20" y2="390"/>
<line x1="241" y1="226" x2="197" y2="369"/>
<line x1="241" y1="226" x2="142" y2="424"/>
<line x1="241" y1="226" x2="332" y2="457"/>
<line x1="241" y1="226" x2="293" y2="519"/>
<line x1="241" y1="226" x2="130" y2="549"/>
<line x1="72" y1="232" x2="215" y2="290"/>
<line x1="72" y1="232" x2="154" y2="334"/>
<line x1="207" y1="251" x2="174" y2="277"/>
<line x1="207" y1="251" x2="149" y2="361"/>
<line x1="207" y1="251" x2="20" y2="390"/>
<line x1="207" y1="251" x2="218" y2="374"/>
<line x1="207" y1="251" x2="70" y2="448"/>
<line x1="207" y1="251" x2="258" y2="428"/>
<line x1="207" y1="251" x2="236" y2="474"/>
<line x1="207" y1="251" x2="291" y2="483"/>
<line x1="207" y1="251" x2="39" y2="500"/>
<line x1="269" y1="253" x2="305" y2="300"/>
<line x1="269" y1="253" x2="90" y2="298"/>
<line x1="269" y1="253" x2="154" y2="334"/>
<line x1="269" y1="253" x2="193" y2="322"/>
<line x1="269" y1="253" x2="61" y2="316"/>
<line x1="269" y1="253" x2="218" y2="374"/>
<line x1="269" y1="253" x2="116" y2="410"/>
<line x1="269" y1="253" x2="191" y2="398"/>
<line x1="269" y1="253" x2="135" y2="444"/>
<line x1="269" y1="253" x2="190" y2="421"/>
<line x1="269" y1="253" x2="159" y2="477"/>
<line x1="269" y1="253" x2="39" y2="500"/>
<line x1="269" y1="253" x2="142" y2="576"/>
<line x1="88" y1="267" x2="288" y2="282"/>
<line x1="88" y1="267" x2="107" y2="337"/>
<line x1="88" y1="267" x2="269" y2="329"/>
<line x1="88" y1="267" x2="20" y2="390"/>
<line x1="88" y1="267" x2="191" y2="398"/>
<line x1="88" y1="267" x2="335" y2="405"/>
<line x1="88" y1="267" x2="291" y2="434"/>
<line x1="88" y1="267" x2="140" y2="479"/>
<line x1="88" y1="267" x2="243" y2="465"/>
<line x1="88" y1="267" x2="291" y2="483"/>
<line x1="88" y1="267" x2="146" y2="507"/>
<line x1="88" y1="267" x2="206" y2="510"/>
<line x1="88" y1="267" x2="234" y2="510"/>
<line x1="88" y1="267" x2="45" y2="531"/>
<line x1="88" y1="267" x2="162" y2="598"/>
<line x1="118" y1="270" x2="55" y2="303"/>
<line x1="118" y1="270" x2="149" y2="361"/>
<line x1="118" y1="270" x2="197" y2="369"/>
<line x1="118" y1="270" x2="186" y2="440"/>
<line x1="118" y1="270" x2="172" y2="484"/>
<line x1="118" y1="270" x2="186" y2="509"/>
<line x1="118" y1="270" x2="243" y2="566"/>
<line x1="174" y1="277" x2="20" y2="390"/>
<line x1="174" y1="277" x2="117" y2="376"/>
<line x1="174" y1="277" x2="175" y2="373"/>
<line x1="174" y1="277" x2="197" y2="369"/>
<line x1="174" y1="277" x2="240" y2="374"/>
<line x1="174" y1="277" x2="142" y2="424"/>
<line x1="174" y1="277" x2="301" y2="451"/>
<line x1="174" y1="277" x2="140" y2="479"/>
<line x1="174" y1="277" x2="243" y2="465"/>
<line x1="174" y1="277" x2="146" y2="507"/>
<line x1="174" y1="277" x2="186" y2="509"/>
<line x1="174" y1="277" x2="229" y2="496"/>
<line x1="174" y1="277" x2="234" y2="510"/>
<line x1="174" y1="277" x2="293" y2="519"/>
<line x1="174" y1="277" x2="272" y2="542"/>
<line x1="189" y1="290" x2="215" y2="290"/>
<line x1="189" y1="290" x2="154" y2="334"/>
<line x1="189" y1="290" x2="219" y2="322"/>
<line x1="189" y1="290" x2="240" y2="327"/>
<line x1="189" y1="290" x2="269" y2="329"/>
<line x1="189" y1="290" x2="243" y2="350"/>
<line x1="189" y1="290" x2="272" y2="357"/>
<line x1="189" y1="290" x2="301" y2="346"/>
<line x1="189" y1="290" x2="75" y2="383"/>
<line x1="189" y1="290" x2="117" y2="376"/>
<line x1="189" y1="290" x2="137" y2="382"/>
<line x1="189" y1="290" x2="175" y2="373"/>
<line x1="189" y1="290" x2="103" y2="415"/>
<line x1="189" y1="290" x2="116" y2="410"/>
<line x1="189" y1="290" x2="129" y2="400"/>
<line x1="189" y1="290" x2="191" y2="398"/>
<line x1="189" y1="290" x2="335" y2="405"/>
<line x1="189" y1="290" x2="43" y2="440"/>
<line x1="189" y1="290" x2="105" y2="455"/>
<line x1="189" y1="290" x2="186" y2="440"/>
<line x1="189" y1="290" x2="190" y2="421"/>
<line x1="189" y1="290" x2="218" y2="436"/>
<line x1="189" y1="290" x2="227" y2="412"/>
<line x1="189" y1="290" x2="291" y2="434"/>
<line x1="189" y1="290" x2="315" y2="435"/>
<line x1="189" y1="290" x2="280" y2="456"/>
<line x1="189" y1="290" x2="110" y2="472"/>
<line x1="189" y1="290" x2="140" y2="479"/>
<line x1="189" y1="290" x2="159" y2="477"/>
<line x1="189" y1="290" x2="167" y2="450"/>
<line x1="189" y1="290" x2="172" y2="484"/>
<line x1="189" y1="290" x2="236" y2="474"/>
<line x1="189" y1="290" x2="243" y2="465"/>
<line x1="189" y1="290" x2="291" y2="483"/>
<line x1="189" y1="290" x2="186" y2="509"/>
<line x1="189" y1="290" x2="206" y2="510"/>
<line x1="189" y1="290" x2="234" y2="510"/>
<line x1="189" y1="290" x2="263" y2="507"/>
<line x1="189" y1="290" x2="130" y2="549"/>
<line x1="189" y1="290" x2="272" y2="542"/>
<line x1="189" y1="290" x2="275" y2="527"/>
<line x1="215" y1="290" x2="219" y2="322"/>
<line x1="215" y1="290" x2="240" y2="327"/>
<line x1="215" y1="290" x2="149" y2="361"/>
<line x1="215" y1="290" x2="272" y2="357"/>
<line x1="215" y1="290" x2="301" y2="346"/>
<line x1="215" y1="290" x2="75" y2="383"/>
<line x1="215" y1="290" x2="137" y2="382"/>
<line x1="215" y1="290" x2="175" y2="373"/>
<line x1="215" y1="290" x2="191" y2="398"/>
<line x1="215" y1="290" x2="311" y2="405"/>
<line x1="215" y1="290" x2="105" y2="455"/>
<line x1="215" y1="290" x2="135" y2="444"/>
<line x1="215" y1="290" x2="190" y2="421"/>
<line x1="215" y1="290" x2="216" y2="420"/>
<line x1="215" y1="290" x2="218" y2="436"/>
<line x1="215" y1="290" x2="227" y2="412"/>
<line x1="215" y1="290" x2="246" y2="420"/>
<line x1="215" y1="290" x2="258" y2="428"/>
<line x1="215" y1="290" x2="315" y2="435"/>
<line x1="215" y1="290" x2="332" y2="457"/>
<line x1="215" y1="290" x2="159" y2="477"/>
<line x1="215" y1="290" x2="172" y2="484"/>
<line x1="215" y1="290" x2="201" y2="457"/>
<line x1="215" y1="290" x2="209" y2="480"/>
<line x1="215" y1="290" x2="236" y2="474"/>
<line x1="215" y1="290" x2="146" y2="507"/>
<line x1="215" y1="290" x2="206" y2="510"/>
<line x1="215" y1="290" x2="229" y2="496"/>
<line x1="215" y1="290" x2="234" y2="510"/>
<line x1="215" y1="290" x2="130" y2="549"/>
<line x1="215" y1="290" x2="275" y2="527"/>
<line x1="288" y1="282" x2="90" y2="298"/>
<line x1="288" y1="282" x2="193" y2="322"/>
<line x1="288" y1="282" x2="240" y2="327"/>
<line x1="288" y1="282" x2="50" y2="382"/>
<line x1="288" y1="282" x2="116" y2="410"/>
<line x1="288" y1="282" x2="142" y2="424"/>
<line x1="288" y1="282" x2="191" y2="398"/>
<line x1="288" y1="282" x2="332" y2="457"/>
<line x1="288" y1="282" x2="201" y2="457"/>
<line x1="288" y1="282" x2="186" y2="509"/>
<line x1="288" y1="282" x2="293" y2="519"/>
<line x1="288" y1="282" x2="169" y2="556"/>
<line x1="288" y1="282" x2="204" y2="541"/>
<line x1="288" y1="282" x2="162" y2="598"/>
<line x1="55" y1="303" x2="269" y2="397"/>
<line x1="55" y1="303" x2="43" y2="440"/>
<line x1="55" y1="303" x2="70" y2="448"/>
<line x1="55" y1="303" x2="258" y2="428"/>
<line x1="55" y1="303" x2="167" y2="450"/>
<line x1="55" y1="303" x2="243" y2="465"/>
<line x1="55" y1="303" x2="229" y2="496"/>
<line x1="55" y1="303" x2="45" y2="531"/>
<line x1="55" y1="303" x2="73" y2="532"/>
<line x1="55" y1="303" x2="94" y2="563"/>
<line x1="55" y1="303" x2="130" y2="549"/>
<line x1="55" y1="303" x2="204" y2="541"/>
<line x1="55" y1="303" x2="243" y2="566"/>
<line x1="55" y1="303" x2="272" y2="542"/>
<line x1="305" y1="300" x2="240" y2="327"/>
<line x1="305" y1="300" x2="61" y2="316"/>
<line x1="305" y1="300" x2="301" y2="346"/>
<line x1="305" y1="300" x2="137" y2="382"/>
<line x1="305" y1="300" x2="315" y2="381"/>
<line x1="305" y1="300" x2="43" y2="440"/>
<line x1="305" y1="300" x2="246" y2="420"/>
<line x1="305" y1="300" x2="258" y2="428"/>
<line x1="305" y1="300" x2="159" y2="477"/>
<line x1="305" y1="300" x2="172" y2="484"/>
<line x1="305" y1="300" x2="243" y2="465"/>
<line x1="90" y1="298" x2="218" y2="374"/>
<line x1="90" y1="298" x2="315" y2="381"/>
<line x1="90" y1="298" x2="13" y2="430"/>
<line x1="90" y1="298" x2="163" y2="413"/>
<line x1="90" y1="298" x2="43" y2="440"/>
<line x1="90" y1="298" x2="135" y2="444"/>
<line x1="90" y1="298" x2="186" y2="440"/>
<line x1="90" y1="298" x2="140" y2="479"/>
<line x1="90" y1="298" x2="201" y2="457"/>
<line x1="90" y1="298" x2="142" y2="576"/>
<line x1="107" y1="337" x2="154" y2="334"/>
<line x1="107" y1="337" x2="193" y2="322"/>
<line x1="107" y1="337" x2="106" y2="355"/>
<line x1="107" y1="337" x2="149" y2="361"/>
<line x1="107" y1="337" x2="243" y2="350"/>
<line x1="107" y1="337" x2="301" y2="346"/>
<line x1="107" y1="337" x2="175" y2="373"/>
<line x1="107" y1="337" x2="218" y2="374"/>
<line x1="107" y1="337" x2="129" y2="400"/>
<line x1="107" y1="337" x2="191" y2="398"/>
<line x1="107" y1="337" x2="269" y2="397"/>
<line x1="107" y1="337" x2="311" y2="405"/>
<line x1="107" y1="337" x2="105" y2="455"/>
<line x1="107" y1="337" x2="186" y2="440"/>
<line x1="107" y1="337" x2="190" y2="421"/>
<line x1="107" y1="337" x2="227" y2="412"/>
<line x1="107" y1="337" x2="246" y2="420"/>
<line x1="107" y1="337" x2="258" y2="428"/>
<line x1="107" y1="337" x2="291" y2="434"/>
<line x1="107" y1="337" x2="301" y2="451"/>
<line x1="107" y1="337" x2="332" y2="457"/>
<line x1="107" y1="337" x2="280" y2="456"/>
<line x1="107" y1="337" x2="110" y2="472"/>
<line x1="107" y1="337" x2="167" y2="450"/>
<line x1="107" y1="337" x2="209" y2="480"/>
<line x1="107" y1="337" x2="236" y2="474"/>
<line x1="107" y1="337" x2="291" y2="483"/>
<line x1="107" y1="337" x2="206" y2="510"/>
<line x1="107" y1="337" x2="293" y2="519"/>
<line x1="107" y1="337" x2="275" y2="527"/>
<line x1="154" y1="334" x2="219" y2="322"/>
<line x1="154" y1="334" x2="240" y2="327"/>
<line x1="154" y1="334" x2="243" y2="350"/>
<line x1="154" y1="334" x2="75" y2="383"/>
<line x1="154" y1="334" x2="117" y2="376"/>
<line x1="154" y1="334" x2="175" y2="373"/>
<line x1="154" y1="334" x2="197" y2="369"/>
<line x1="154" y1="334" x2="218" y2="374"/>
<line x1="154" y1="334" x2="315" y2="381"/>
<line x1="154" y1="334" x2="103" y2="415"/>
<line x1="154" y1="334" x2="116" y2="410"/>
<line x1="154" y1="334" x2="224" y2="393"/>
<line x1="154" y1="334" x2="269" y2="397"/>
<line x1="154" y1="334" x2="311" y2="405"/>
<line x1="154" y1="334" x2="335" y2="405"/>
<line x1="154" y1="334" x2="70" y2="448"/>
<line x1="154" y1="334" x2="135" y2="444"/>
<line x1="154" y1="334" x2="186" y2="440"/>
<line x1="154" y1="334" x2="190" y2="421"/>
<line x1="154" y1="334" x2="315" y2="435"/>
<line x1="154" y1="334" x2="301" y2="451"/>
<line x1="154" y1="334" x2="332" y2="457"/>
<line x1="154" y1="334" x2="280" y2="456"/>
<line x1="154" y1="334" x2="110" y2="472"/>
<line x1="154" y1="334" x2="209" y2="480"/>
<line x1="154" y1="334" x2="236" y2="474"/>
<line x1="154" y1="334" x2="146" y2="507"/>
<line x1="154" y1="334" x2="234" y2="510"/>
<line x1="154" y1="334" x2="263" y2="507"/>
<line x1="154" y1="334" x2="293" y2="519"/>
<line x1="154" y1="334" x2="312" y2="504"/>
<line x1="154" y1="334" x2="169" y2="556"/>
<line x1="154" y1="334" x2="243" y2="566"/>
<line x1="154" y1="334" x2="272" y2="542"/>
<line x1="193" y1="322" x2="219" y2="322"/>
<line x1="193" y1="322" x2="240" y2="327"/>
<line x1="193" y1="322" x2="269" y2="329"/>
<line x1="193" y1="322" x2="243" y2="350"/>
<line x1="193" y1="322" x2="272" y2="357"/>
<line x1="193" y1="322" x2="137" y2="382"/>
<line x1="193" y1="322" x2="218" y2="374"/>
<line x1="193" y1="322" x2="240" y2="374"/>
<line x1="193" y1="322" x2="315" y2="381"/>
<line x1="193" y1="322" x2="103" y2="415"/>
<line x1="193" y1="322" x2="116" y2="410"/>
<line x1="193" y1="322" x2="129" y2="400"/>
<line x1="193" y1="322" x2="142" y2="424"/>
<line x1="193" y1="322" x2="163" y2="413"/>
<line x1="193" y1="322" x2="191" y2="398"/>
<line x1="193" y1="322" x2="224" y2="393"/>
<line x1="193" y1="322" x2="269" y2="397"/>
<line x1="193" y1="322" x2="335" y2="405"/>
<line x1="193" y1="322" x2="70" y2="448"/>
<line x1="193" y1="322" x2="105" y2="455"/>
<line x1="193" y1="322" x2="135" y2="444"/>
<line x1="193" y1="322" x2="216" y2="420"/>
<line x1="193" y1="322" x2="218" y2="436"/>
<line x1="193" y1="322" x2="246" y2="420"/>
<line x1="193" y1="322" x2="258" y2="428"/>
<line x1="193" y1="322" x2="301" y2="451"/>
<line x1="193" y1="322" x2="140" y2="479"/>
<line x1="193" y1="322" x2="201" y2="457"/>
<line x1="193" y1="322" x2="209" y2="480"/>
<line x1="193" y1="322" x2="236" y2="474"/>
<line x1="193" y1="322" x2="206" y2="510"/>
<line x1="193" y1="322" x2="234" y2="510"/>
<line x1="193" y1="322" x2="130" y2="549"/>
<line x1="193" y1="322" x2="272" y2="542"/>
<line x1="193" y1="322" x2="275" y2="527"/>
<line x1="219" y1="322" x2="240" y2="327"/>
<line x1="219" y1="322" x2="195" y2="347"/>
<line x1="219" y1="322" x2="243" y2="350"/>
<line x1="219" y1="322" x2="272" y2="357"/>
<line x1="219" y1="322" x2="75" y2="383"/>
<line x1="219" y1="322" x2="137" y2="382"/>
<line x1="219" y1="322" x2="175" y2="373"/>
<line x1="219" y1="322" x2="197" y2="369"/>
<line x1="219" y1="322" x2="218" y2="374"/>
<line x1="219" y1="322" x2="240" y2="374"/>
<line x1="219" y1="322" x2="315" y2="381"/>
<line x1="219" y1="322" x2="142" y2="424"/>
<line x1="219" y1="322" x2="163" y2="413"/>
<line x1="219" y1="322" x2="311" y2="405"/>
<line x1="219" y1="322" x2="335" y2="405"/>
<line x1="219" y1="322" x2="43" y2="440"/>
<line x1="219" y1="322" x2="70" y2="448"/>
<line x1="219" y1="322" x2="135" y2="444"/>
<line x1="219" y1="322" x2="190" y2="421"/>
<line x1="219" y1="322" x2="227" y2="412"/>
<line x1="219" y1="322" x2="246" y2="420"/>
<line x1="219" y1="322" x2="258" y2="428"/>
<line x1="219" y1="322" x2="250" y2="440"/>
<line x1="219" y1="322" x2="301" y2="451"/>
<line x1="219" y1="322" x2="332" y2="457"/>
<line x1="219" y1="322" x2="140" y2="479"/>
<line x1="219" y1="322" x2="201" y2="457"/>
<line x1="219" y1="322" x2="209" y2="480"/>
<line x1="219" y1="322" x2="236" y2="474"/>
<line x1="219" y1="322" x2="243" y2="465"/>
<line x1="219" y1="322" x2="260" y2="471"/>
<line x1="219" y1="322" x2="291" y2="483"/>
<line x1="219" y1="322" x2="146" y2="507"/>
<line x1="219" y1="322" x2="186" y2="509"/>
<line x1="219" y1="322" x2="206" y2="510"/>
<line x1="219" y1="322" x2="234" y2="510"/>
<line x1="219" y1="322" x2="263" y2="507"/>
<line x1="219" y1="322" x2="312" y2="504"/>
<line x1="219" y1="322" x2="130" y2="549"/>
<line x1="219" y1="322" x2="275" y2="527"/>
<line x1="240" y1="327" x2="106" y2="355"/>
<line x1="240" y1="327" x2="243" y2="350"/>
<line x1="240" y1="327" x2="117" y2="376"/>
<line x1="240" y1="327" x2="175" y2="373"/>
<line x1="240" y1="327" x2="218" y2="374"/>
<line x1="240" y1="327" x2="240" y2="374"/>
<line x1="240" y1="327" x2="315" y2="381"/>
<line x1="240" y1="327" x2="129" y2="400"/>
<line x1="240" y1="327" x2="163" y2="413"/>
<line x1="240" y1="327" x2="191" y2="398"/>
<line x1="240" y1="327" x2="335" y2="405"/>
<line x1="240" y1="327" x2="190" y2="421"/>
<line x1="240" y1="327" x2="216" y2="420"/>
<line x1="240" y1="327" x2="227" y2="412"/>
<line x1="240" y1="327" x2="258" y2="428"/>
<line x1="240" y1="327" x2="291" y2="434"/>
<line x1="240" y1="327" x2="301" y2="451"/>
<line x1="240" y1="327" x2="280" y2="456"/>
<line x1="240" y1="327" x2="167" y2="450"/>
<line x1="240" y1="327" x2="209" y2="480"/>
<line x1="240" y1="327" x2="243" y2="465"/>
<line x1="240" y1="327" x2="260" y2="471"/>
<line x1="240" y1="327" x2="291" y2="483"/>
<line x1="240" y1="327" x2="186" y2="509"/>
<line x1="240" y1="327" x2="293" y2="519"/>
<line x1="240" y1="327" x2="275" y2="527"/>
<line x1="269" y1="329" x2="195" y2="347"/>
<line x1="269" y1="329" x2="272" y2="357"/>
<line x1="269" y1="329" x2="75" y2="383"/>
<line x1="269" y1="329" x2="117" y2="376"/>
<line x1="269" y1="329" x2="197" y2="369"/>
<line x1="269" y1="329" x2="218" y2="374"/>
<line x1="269" y1="329" x2="240" y2="374"/>
<line x1="269" y1="329" x2="129" y2="400"/>
<line x1="269" y1="329" x2="269" y2="397"/>
<line x1="269" y1="329" x2="311" y2="405"/>
<line x1="269" y1="329" x2="70" y2="448"/>
<line x1="269" y1="329" x2="105" y2="455"/>
<line x1="269" y1="329" x2="190" y2="421"/>
<line x1="269" y1="329" x2="218" y2="436"/>
<line x1="269" y1="329" x2="227" y2="412"/>
<line x1="269" y1="329" x2="258" y2="428"/>
<line x1="269" y1="329" x2="280" y2="456"/>
<line x1="269" y1="329" x2="140" y2="479"/>
<line x1="269" y1="329" x2="201" y2="457"/>
<line x1="269" y1="329" x2="236" y2="474"/>
<line x1="269" y1="329" x2="260" y2="471"/>
<line x1="269" y1="329" x2="291" y2="483"/>
<line x1="269" y1="329" x2="146" y2="507"/>
<line x1="269" y1="329" x2="186" y2="509"/>
<line x1="269" y1="329" x2="206" y2="510"/>
<line x1="269" y1="329" x2="229" y2="496"/>
<line x1="269" y1="329" x2="234" y2="510"/>
<line x1="269" y1="329" x2="130" y2="549"/>
<line x1="269" y1="329" x2="243" y2="566"/>
<line x1="269" y1="329" x2="272" y2="542"/>
<line x1="269" y1="329" x2="275" y2="527"/>
<line x1="61" y1="316" x2="195" y2="347"/>
<line x1="61" y1="316" x2="240" y2="374"/>
<line x1="61" y1="316" x2="103" y2="415"/>
<line x1="61" y1="316" x2="163" y2="413"/>
<line x1="61" y1="316" x2="70" y2="448"/>
<line x1="61" y1="316" x2="332" y2="457"/>
<line x1="61" y1="316" x2="159" y2="477"/>
<line x1="61" y1="316" x2="146" y2="507"/>
<line x1="49" y1="342" x2="272" y2="357"/>
<line x1="49" y1="342" x2="20" y2="390"/>
<line x1="49" y1="342" x2="50" y2="382"/>
<line x1="49" y1="342" x2="137" y2="382"/>
<line x1="49" y1="342" x2="191" y2="398"/>
<line x1="49" y1="342" x2="311" y2="405"/>
<line x1="49" y1="342" x2="190" y2="421"/>
<line x1="49" y1="342" x2="216" y2="420"/>
<line x1="49" y1="342" x2="218" y2="436"/>
<line x1="49" y1="342" x2="258" y2="428"/>
<line x1="49" y1="342" x2="236" y2="474"/>
<line x1="49" y1="342" x2="130" y2="549"/>
<line x1="49" y1="342" x2="243" y2="566"/>
<line x1="49" y1="342" x2="275" y2="527"/>
<line x1="106" y1="355" x2="195" y2="347"/>
<line x1="106" y1="355" x2="272" y2="357"/>
<line x1="106" y1="355" x2="301" y2="346"/>
<line x1="106" y1="355" x2="75" y2="383"/>
<line x1="106" y1="355" x2="218" y2="374"/>
<line x1="106" y1="355" x2="240" y2="374"/>
<line x1="106" y1="355" x2="224" y2="393"/>
<line x1="106" y1="355" x2="135" y2="444"/>
<line x1="106" y1="355" x2="216" y2="420"/>
<line x1="106" y1="355" x2="218" y2="436"/>
<line x1="106" y1="355" x2="227" y2="412"/>
<line x1="106" y1="355" x2="246" y2="420"/>
<line x1="106" y1="355" x2="258" y2="428"/>
<line x1="106" y1="355" x2="291" y2="434"/>
<line x1="106" y1="355" x2="315" y2="435"/>
<line x1="106" y1="355" x2="301" y2="451"/>
<line x1="106" y1="355" x2="332" y2="457"/>
<line x1="106" y1="355" x2="110" y2="472"/>
<line x1="106" y1="355" x2="140" y2="479"/>
<line x1="106" y1="355" x2="159" y2="477"/>
<line x1="106" y1="355" x2="167" y2="450"/>
<line x1="106" y1="355" x2="172" y2="484"/>
<line x1="106" y1="355" x2="201" y2="457"/>
<line x1="106" y1="355" x2="209" y2="480"/>
<line x1="106" y1="355" x2="236" y2="474"/>
<line x1="106" y1="355" x2="291" y2="483"/>
<line x1="106" y1="355" x2="186" y2="509"/>
<line x1="106" y1="355" x2="293" y2="519"/>
<line x1="106" y1="355" x2="312" y2="504"/>
<line x1="106" y1="355" x2="169" y2="556"/>
<line x1="106" y1="355" x2="243" y2="566"/>
<line x1="149" y1="361" x2="272" y2="357"/>
<line x1="149" y1="361" x2="301" y2="346"/>
<line x1="149" y1="361" x2="75" y2="383"/>
<line x1="149" y1="361" x2="117" y2="376"/>
<line x1="149" y1="361" x2="175" y2="373"/>
<line x1="149" y1="361" x2="240" y2="374"/>
<line x1="149" y1="361" x2="315" y2="381"/>
<line x1="149" y1="361" x2="103" y2="415"/>
<line x1="149" y1="361" x2="116" y2="410"/>
<line x1="149" y1="361" x2="163" y2="413"/>
<line x1="149" y1="361" x2="269" y2="397"/>
<line x1="149" y1="361" x2="311" y2="405"/>
<line x1="149" y1="361" x2="335" y2="405"/>
<line x1="149" y1="361" x2="70" y2="448"/>
<line x1="149" y1="361" x2="135" y2="444"/>
<line x1="149" y1="361" x2="186" y2="440"/>
<line x1="149" y1="361" x2="218" y2="436"/>
<line x1="149" y1="361" x2="246" y2="420"/>
<line x1="149" y1="361" x2="258" y2="428"/>
<line x1="149" y1="361" x2="250" y2="440"/>
<line x1="149" y1="361" x2="280" y2="456"/>
<line x1="149" y1="361" x2="140" y2="479"/>
<line x1="149" y1="361" x2="159" y2="477"/>
<line x1="149" y1="361" x2="167" y2="450"/>
<line x1="149" y1="361" x2="172" y2="484"/>
<line x1="149" y1="361" x2="201" y2="457"/>
<line x1="149" y1="361" x2="243" y2="465"/>
<line x1="149" y1="361" x2="260" y2="471"/>
<line x1="149" y1="361" x2="291" y2="483"/>
<line x1="149" y1="361" x2="186" y2="509"/>
<line x1="149" y1="361" x2="206" y2="510"/>
<line x1="149" y1="361" x2="234" y2="510"/>
<line x1="149" y1="361" x2="312" y2="504"/>
<line x1="149" y1="361" x2="130" y2="549"/>
<line x1="149" y1="361" x2="243" y2="566"/>
<line x1="195" y1="347" x2="243" y2="350"/>
<line x1="195" y1="347" x2="75" y2="383"/>
<line x1="195" y1="347" x2="175" y2="373"/>
<line x1="195" y1="347" x2="197" y2="369"/>
<line x1="195" y1="347" x2="218" y2="374"/>
<line x1="195" y1="347" x2="315" y2="381"/>
<line x1="195" y1="347" x2="129" y2="400"/>
<line x1="195" y1="347" x2="142" y2="424"/>
<line x1="195" y1="347" x2="163" y2="413"/>
<line x1="195" y1="347" x2="191" y2="398"/>
<line x1="195" y1="347" x2="269" y2="397"/>
<line x1="195" y1="347" x2="311" y2="405"/>
<line x1="195" y1="347" x2="70" y2="448"/>
<line x1="195" y1="347" x2="135" y2="444"/>
<line x1="195" y1="347" x2="186" y2="440"/>
<line x1="195" y1="347" x2="227" y2="412"/>
<line x1="195" y1="347" x2="246" y2="420"/>
<line x1="195" y1="347" x2="258" y2="428"/>
<line x1="195" y1="347" x2="250" y2="440"/>
<line x1="195" y1="347" x2="291" y2="434"/>
<line x1="195" y1="347" x2="301" y2="451"/>
<line x1="195" y1="347" x2="280" y2="456"/>
<line x1="195" y1="347" x2="140" y2="479"/>
<line x1="195" y1="347" x2="167" y2="450"/>
<line x1="195" y1="347" x2="243" y2="465"/>
<line x1="195" y1="347" x2="291" y2="483"/>
<line x1="195" y1="347" x2="146" y2="507"/>
<line x1="195" y1="347" x2="229" y2="496"/>
<line x1="195" y1="347" x2="234" y2="510"/>
<line x1="195" y1="347" x2="263" y2="507"/>
<line x1="195" y1="347" x2="293" y2="519"/>
<line x1="195" y1="347" x2="204" y2="541"/>
<line x1="195" y1="347" x2="243" y2="566"/>
<line x1="195" y1="347" x2="275" y2="527"/>
<line x1="243" y1="350" x2="272" y2="357"/>
<line x1="243" y1="350" x2="137" y2="382"/>
<line x1="243" y1="350" x2="175" y2="373"/>
<line x1="243" y1="350" x2="240" y2="374"/>
<line x1="243" y1="350" x2="315" y2="381"/>
<line x1="243" y1="350" x2="103" y2="415"/>
<line x1="243" y1="350" x2="142" y2="424"/>
<line x1="243" y1="350" x2="163" y2="413"/>
<line x1="243" y1="350" x2="269" y2="397"/>
<line x1="243" y1="350" x2="335" y2="405"/>
<line x1="243" y1="350" x2="105" y2="455"/>
<line x1="243" y1="350" x2="186" y2="440"/>
<line x1="243" y1="350" x2="246" y2="420"/>
<line x1="243" y1="350" x2="258" y2="428"/>
<line x1="243" y1="350" x2="250" y2="440"/>
<line x1="243" y1="350" x2="315" y2="435"/>
<line x1="243" y1="350" x2="301" y2="451"/>
<line x1="243" y1="350" x2="280" y2="456"/>
<line x1="243" y1="350" x2="140" y2="479"/>
<line x1="243" y1="350" x2="167" y2="450"/>
<line x1="243" y1="350" x2="201" y2="457"/>
<line x1="243" y1="350" x2="209" y2="480"/>
<line x1="243" y1="350" x2="236" y2="474"/>
<line x1="243" y1="350" x2="243" y2="465"/>
<line x1="243" y1="350" x2="146" y2="507"/>
<line x1="243" y1="350" x2="186" y2="509"/>
<line x1="243" y1="350" x2="206" y2="510"/>
<line x1="243" y1="350" x2="229" y2="496"/>
<line x1="243" y1="350" x2="312" y2="504"/>
<line x1="243" y1="350" x2="130" y2="549"/>
<line x1="243" y1="350" x2="169" y2="556"/>
<line x1="243" y1="350" x2="275" y2="527"/>
<line x1="272" y1="357" x2="75" y2="383"/>
<line x1="272" y1="357" x2="137" y2="382"/>
<line x1="272" y1="357" x2="240" y2="374"/>
<line x1="272" y1="357" x2="315" y2="381"/>
<line x1="272" y1="357" x2="116" y2="410"/>
<line x1="272" y1="357" x2="129" y2="400"/>
<line x1="272" y1="357" x2="142" y2="424"/>
<line x1="272" y1="357" x2="191" y2="398"/>
<line x1="272" y1="357" x2="224" y2="393"/>
<line x1="272" y1="357" x2="269" y2="397"/>
<line x1="272" y1="357" x2="335" y2="405"/>
<line x1="272" y1="357" x2="43" y2="440"/>
<line x1="272" y1="357" x2="70" y2="448"/>
<line x1="272" y1="357" x2="190" y2="421"/>
<line x1="272" y1="357" x2="216" y2="420"/>
<line x1="272" y1="357" x2="246" y2="420"/>
<line x1="272" y1="357" x2="258" y2="428"/>
<line x1="272" y1="357" x2="291" y2="434"/>
<line x1="272" y1="357" x2="280" y2="456"/>
<line x1="272" y1="357" x2="140" y2="479"/>
<line x1="272" y1="357" x2="167" y2="450"/>
<line x1="272" y1="357" x2="172" y2="484"/>
<line x1="272" y1="357" x2="291" y2="483"/>
<line x1="272" y1="357" x2="146" y2="507"/>
<line x1="272" y1="357" x2="206" y2="510"/>
<line x1="272" y1="357" x2="229" y2="496"/>
<line x1="272" y1="357" x2="293" y2="519"/>
<line x1="272" y1="357" x2="130" y2="549"/>
<line x1="272" y1="357" x2="169" y2="556"/>
<line x1="272" y1="357" x2="204" y2="541"/>
<line x1="272" y1="357" x2="243" y2="566"/>
<line x1="272" y1="357" x2="275" y2="527"/>
<line x1="301" y1="346" x2="75" y2="383"/>
<line x1="301" y1="346" x2="137" y2="382"/>
<line x1="301" y1="346" x2="197" y2="369"/>
<line x1="301" y1="346" x2="240" y2="374"/>
<line x1="301" y1="346" x2="315" y2="381"/>
<line x1="301" y1="346" x2="116" y2="410"/>
<line x1="301" y1="346" x2="191" y2="398"/>
<line x1="301" y1="346" x2="224" y2="393"/>
<line x1="301" y1="346" x2="269" y2="397"/>
<line x1="301" y1="346" x2="311" y2="405"/>
<line x1="301" y1="346" x2="43" y2="440"/>
<line x1="301" y1="346" x2="135" y2="444"/>
<line x1="301" y1="346" x2="186" y2="440"/>
<line x1="301" y1="346" x2="190" y2="421"/>
<line x1="301" y1="346" x2="216" y2="420"/>
<line x1="301" y1="346" x2="227" y2="412"/>
<line x1="301" y1="346" x2="246" y2="420"/>
<line x1="301" y1="346" x2="315" y2="435"/>
<line x1="301" y1="346" x2="301" y2="451"/>
<line x1="301" y1="346" x2="280" y2="456"/>
<line x1="301" y1="346" x2="140" y2="479"/>
<line x1="301" y1="346" x2="172" y2="484"/>
<line x1="301" y1="346" x2="243" y2="465"/>
<line x1="301" y1="346" x2="291" y2="483"/>
<line x1="301" y1="346" x2="186" y2="509"/>
<line x1="301" y1="346" x2="229" y2="496"/>
<line x1="301" y1="346" x2="263" y2="507"/>
<line x1="301" y1="346" x2="312" y2="504"/>
<line x1="301" y1="346" x2="130" y2="549"/>
<line x1="301" y1="346" x2="204" y2="541"/>
<line x1="20" y1="390" x2="13" y2="430"/>
<line x1="20" y1="390" x2="142" y2="424"/>
<line x1="20" y1="390" x2="167" y2="450"/>
<line x1="20" y1="390" x2="39" y2="500"/>
<line x1="20" y1="390" x2="206" y2="510"/>
<line x1="20" y1="390" x2="45" y2="531"/>
<line x1="50" y1="382" x2="163" y2="413"/>
<line x1="50" y1="382" x2="191" y2="398"/>
<line x1="50" y1="382" x2="216" y2="420"/>
<line x1="50" y1="382" x2="332" y2="457"/>
<line x1="50" y1="382" x2="201" y2="457"/>
<line x1="50" y1="382" x2="209" y2="480"/>
<line x1="50" y1="382" x2="260" y2="471"/>
<line x1="50" y1="382" x2="146" y2="507"/>
<line x1="50" y1="382" x2="186" y2="509"/>
<line x1="50" y1="382" x2="206" y2="510"/>
<line x1="75" y1="383" x2="175" y2="373"/>
<line x1="75" y1="383" x2="218" y2="374"/>
<line x1="75" y1="383" x2="116" y2="410"/>
<line x1="75" y1="383" x2="191" y2="398"/>
<line x1="75" y1="383" x2="224" y2="393"/>
<line x1="75" y1="383" x2="269" y2="397"/>
<line x1="75" y1="383" x2="311" y2="405"/>
<line x1="75" y1="383" x2="43" y2="440"/>
<line x1="75" y1="383" x2="105" y2="455"/>
<line x1="75" y1="383" x2="218" y2="436"/>
<line x1="75" y1="383" x2="258" y2="428"/>
<line x1="75" y1="383" x2="291" y2="434"/>
<line x1="75" y1="383" x2="315" y2="435"/>
<line x1="75" y1="383" x2="332" y2="457"/>
<line x1="75" y1="383" x2="110" y2="472"/>
<line x1="75" y1="383" x2="201" y2="457"/>
<line x1="75" y1="383" x2="209" y2="480"/>
<line x1="75" y1="383" x2="236" y2="474"/>
<line x1="75" y1="383" x2="146" y2="507"/>
<line x1="75" y1="383" x2="206" y2="510"/>
<line x1="75" y1="383" x2="263" y2="507"/>
<line x1="75" y1="383" x2="312" y2="504"/>
<line x1="75" y1="383" x2="204" y2="541"/>
<line x1="75" y1="383" x2="243" y2="566"/>
<line x1="75" y1="383" x2="272" y2="542"/>
<line x1="117" y1="376" x2="197" y2="369"/>
<line x1="117" y1="376" x2="218" y2="374"/>
<line x1="117" y1="376" x2="315" y2="381"/>
<line x1="117" y1="376" x2="103" y2="415"/>
<line x1="117" y1="376" x2="142" y2="424"/>
<line x1="117" y1="376" x2="163" y2="413"/>
<line x1="117" y1="376" x2="224" y2="393"/>
<line x1="117" y1="376" x2="269" y2="397"/>
<line x1="117" y1="376" x2="70" y2="448"/>
<line x1="117" y1="376" x2="186" y2="440"/>
<line x1="117" y1="376" x2="218" y2="436"/>
<line x1="117" y1="376" x2="250" y2="440"/>
<line x1="117" y1="376" x2="291" y2="434"/>
<line x1="117" y1="376" x2="315" y2="435"/>
<line x1="117" y1="376" x2="332" y2="457"/>
<line x1="117" y1="376" x2="280" y2="456"/>
<line x1="117" y1="376" x2="140" y2="479"/>
<line x1="117" y1="376" x2="159" y2="477"/>
<line x1="117" y1="376" x2="167" y2="450"/>
<line x1="117" y1="376" x2="201" y2="457"/>
<line x1="117" y1="376" x2="236" y2="474"/>
<line x1="117" y1="376" x2="291" y2="483"/>
<line x1="117" y1="376" x2="206" y2="510"/>
<line x1="117" y1="376" x2="229" y2="496"/>
<line x1="117" y1="376" x2="234" y2="510"/>
<line x1="117" y1="376" x2="263" y2="507"/>
<line x1="117" y1="376" x2="293" y2="519"/>
<line x1="117" y1="376" x2="312" y2="504"/>
<line x1="117" y1="376" x2="130" y2="549"/>
<line x1="117" y1="376" x2="275" y2="527"/>
<line x1="137" y1="382" x2="175" y2="373"/>
<line x1="137" y1="382" x2="129" y2="400"/>
<line x1="137" y1="382" x2="163" y2="413"/>
<line x1="137" y1="382" x2="43" y2="440"/>
<line x1="137" y1="382" x2="70" y2="448"/>
<line x1="137" y1="382" x2="105" y2="455"/>
<line x1="137" y1="382" x2="135" y2="444"/>
<line x1="137" y1="382" x2="190" y2="421"/>
<line x1="137" y1="382" x2="216" y2="420"/>
<line x1="137" y1="382" x2="227" y2="412"/>
<line x1="137" y1="382" x2="246" y2="420"/>
<line x1="137" y1="382" x2="258" y2="428"/>
<line x1="137" y1="382" x2="250" y2="440"/>
<line x1="137" y1="382" x2="315" y2="435"/>
<line x1="137" y1="382" x2="280" y2="456"/>
<line x1="137" y1="382" x2="110" y2="472"/>
<line x1="137" y1="382" x2="140" y2="479"/>
<line x1="137" y1="382" x2="159" y2="477"/>
<line x1="137" y1="382" x2="172" y2="484"/>
<line x1="137" y1="382" x2="209" y2="480"/>
<line x1="137" y1="382" x2="260" y2="471"/>
<line x1="137" y1="382" x2="291" y2="483"/>
<line x1="137" y1="382" x2="229" y2="496"/>
<line x1="137" y1="382" x2="263" y2="507"/>
<line x1="137" y1="382" x2="293" y2="519"/>
<line x1="137" y1="382" x2="130" y2="549"/>
<line x1="137" y1="382" x2="204" y2="541"/>
<line x1="137" y1="382" x2="275" y2="527"/>
<line x1="175" y1="373" x2="240" y2="374"/>
<line x1="175" y1="373" x2="103" y2="415"/>
<line x1="175" y1="373" x2="163" y2="413"/>
<line x1="175" y1="373" x2="224" y2="393"/>
<line x1="175" y1="373" x2="269" y2="397"/>
<line x1="175" y1="373" x2="311" y2="405"/>
<line x1="175" y1="373" x2="105" y2="455"/>
<line x1="175" y1="373" x2="190" y2="421"/>
<line x1="175" y1="373" x2="250" y2="440"/>
<line x1="175" y1="373" x2="301" y2="451"/>
<line x1="175" y1="373" x2="332" y2="457"/>
<line x1="175" y1="373" x2="140" y2="479"/>
<line x1="175" y1="373" x2="167" y2="450"/>
<line x1="175" y1="373" x2="236" y2="474"/>
<line x1="175" y1="373" x2="260" y2="471"/>
<line x1="175" y1="373" x2="291" y2="483"/>
<line x1="175" y1="373" x2="186" y2="509"/>
<line x1="175" y1="373" x2="263" y2="507"/>
<line x1="175" y1="373" x2="130" y2="549"/>
<line x1="175" y1="373" x2="204" y2="541"/>
<line x1="175" y1="373" x2="272" y2="542"/>
<line x1="175" y1="373" x2="275" y2="527"/>
<line x1="197" y1="369" x2="218" y2="374"/>
<line x1="197" y1="369" x2="103" y2="415"/>
<line x1="197" y1="369" x2="129" y2="400"/>
<line x1="197" y1="369" x2="142" y2="424"/>
<line x1="197" y1="369" x2="311" y2="405"/>
<line x1="197" y1="369" x2="335" y2="405"/>
<line x1="197" y1="369" x2="43" y2="440"/>
<line x1="197" y1="369" x2="70" y2="448"/>
<line x1="197" y1="369" x2="105" y2="455"/>
<line x1="197" y1="369" x2="135" y2="444"/>
<line x1="197" y1="369" x2="218" y2="436"/>
<line x1="197" y1="369" x2="227" y2="412"/>
<line x1="197" y1="369" x2="246" y2="420"/>
<line x1="197" y1="369" x2="258" y2="428"/>
<line x1="197" y1="369" x2="291" y2="434"/>
<line x1="197" y1="369" x2="280" y2="456"/>
<line x1="197" y1="369" x2="110" y2="472"/>
<line x1="197" y1="369" x2="159" y2="477"/>
<line x1="197" y1="369" x2="172" y2="484"/>
<line x1="197" y1="369" x2="291" y2="483"/>
<line x1="197" y1="369" x2="186" y2="509"/>
<line x1="197" y1="369" x2="206" y2="510"/>
<line x1="197" y1="369" x2="234" y2="510"/>
<line x1="197" y1="369" x2="263" y2="507"/>
<line x1="197" y1="369" x2="293" y2="519"/>
<line x1="197" y1="369" x2="204" y2="541"/>
<line x1="218" y1="374" x2="129" y2="400"/>
<line x1="218" y1="374" x2="142" y2="424"/>
<line x1="218" y1="374" x2="311" y2="405"/>
<line x1="218" y1="374" x2="335" y2="405"/>
<line x1="218" y1="374" x2="70" y2="448"/>
<line x1="218" y1="374" x2="135" y2="444"/>
<line x1="218" y1="374" x2="186" y2="440"/>
<line x1="218" y1="374" x2="216" y2="420"/>
<line x1="218" y1="374" x2="258" y2="428"/>
<line x1="218" y1="374" x2="315" y2="435"/>
<line x1="218" y1="374" x2="280" y2="456"/>
<line x1="218" y1="374" x2="159" y2="477"/>
<line x1="218" y1="374" x2="167" y2="450"/>
<line x1="218" y1="374" x2="172" y2="484"/>
<line x1="218" y1="374" x2="236" y2="474"/>
<line x1="218" y1="374" x2="243" y2="465"/>
<line x1="218" y1="374" x2="186" y2="509"/>
<line x1="218" y1="374" x2="206" y2="510"/>
<line x1="218" y1="374" x2="229" y2="496"/>
<line x1="218" y1="374" x2="234" y2="510"/>
<line x1="218" y1="374" x2="263" y2="507"/>
<line x1="218" y1="374" x2="312" y2="504"/>
<line x1="218" y1="374" x2="130" y2="549"/>
<line x1="218" y1="374" x2="169" y2="556"/>
<line x1="218" y1="374" x2="204" y2="541"/>
<line x1="218" y1="374" x2="272" y2="542"/>
<line x1="218" y1="374" x2="275" y2="527"/>
<line x1="240" y1="374" x2="142" y2="424"/>
<line x1="240" y1="374" x2="163" y2="413"/>
<line x1="240" y1="374" x2="269" y2="397"/>
<line x1="240" y1="374" x2="43" y2="440"/>
<line x1="240" y1="374" x2="105" y2="455"/>
<line x1="240" y1="374" x2="135" y2="444"/>
<line x1="240" y1="374" x2="186" y2="440"/>
<line x1="240" y1="374" x2="216" y2="420"/>
<line x1="240" y1="374" x2="227" y2="412"/>
<line x1="240" y1="374" x2="246" y2="420"/>
<line x1="240" y1="374" x2="315" y2="435"/>
<line x1="240" y1="374" x2="332" y2="457"/>
<line x1="240" y1="374" x2="110" y2="472"/>
<line x1="240" y1="374" x2="167" y2="450"/>
<line x1="240" y1="374" x2="236" y2="474"/>
<line x1="240" y1="374" x2="260" y2="471"/>
<line x1="240" y1="374" x2="146" y2="507"/>
<line x1="240" y1="374" x2="186" y2="509"/>
<line x1="240" y1="374" x2="206" y2="510"/>
<line x1="240" y1="374" x2="229" y2="496"/>
<line x1="240" y1="374" x2="263" y2="507"/>
<line x1="240" y1="374" x2="312" y2="504"/>
<line x1="240" y1="374" x2="130" y2="549"/>
<line x1="240" y1="374" x2="169" y2="556"/>
<line x1="240" y1="374" x2="243" y2="566"/>
<line x1="240" y1="374" x2="275" y2="527"/>
<line x1="282" y1="381" x2="163" y2="413"/>
<line x1="282" y1="381" x2="191" y2="398"/>
<line x1="282" y1="381" x2="216" y2="420"/>
<line x1="282" y1="381" x2="332" y2="457"/>
<line x1="282" y1="381" x2="201" y2="457"/>
<line x1="282" y1="381" x2="209" y2="480"/>
<line x1="282" y1="381" x2="260" y2="471"/>
<line x1="282" y1="381" x2="146" y2="507"/>
<line x1="282" y1="381" x2="186" y2="509"/>
<line x1="282" y1="381" x2="206" y2="510"/>
<line x1="282" y1="381" x2="392" y2="347"/>
<line x1="315" y1="381" x2="116" y2="410"/>
<line x1="315" y1="381" x2="142" y2="424"/>
<line x1="315" y1="381" x2="191" y2="398"/>
<line x1="315" y1="381" x2="43" y2="440"/>
<line x1="315" y1="381" x2="70" y2="448"/>
<line x1="315" y1="381" x2="135" y2="444"/>
<line x1="315" y1="381" x2="186" y2="440"/>
<line x1="315" y1="381" x2="190" y2="421"/>
<line x1="315" y1="381" x2="218" y2="436"/>
<line x1="315" y1="381" x2="227" y2="412"/>
<line x1="315" y1="381" x2="246" y2="420"/>
<line x1="315" y1="381" x2="258" y2="428"/>
<line x1="315" y1="381" x2="315" y2="435"/>
<line x1="315" y1="381" x2="332" y2="457"/>
<line x1="315" y1="381" x2="110" y2="472"/>
<line x1="315" y1="381" x2="140" y2="479"/>
<line x1="315" y1="381" x2="159" y2="477"/>
<line x1="315" y1="381" x2="167" y2="450"/>
<line x1="315" y1="381" x2="172" y2="484"/>
<line x1="315" y1="381" x2="236" y2="474"/>
<line x1="315" y1="381" x2="186" y2="509"/>
<line x1="315" y1="381" x2="206" y2="510"/>
<line x1="315" y1="381" x2="312" y2="504"/>
<line x1="315" y1="381" x2="130" y2="549"/>
<line x1="315" y1="381" x2="204" y2="541"/>
<line x1="13" y1="430" x2="135" y2="444"/>
<line x1="13" y1="430" x2="167" y2="450"/>
<line x1="13" y1="430" x2="243" y2="465"/>
<line x1="13" y1="430" x2="260" y2="471"/>
<line x1="13" y1="430" x2="263" y2="507"/>
<line x1="13" y1="430" x2="142" y2="576"/>
<line x1="13" y1="430" x2="162" y2="598"/>
<line x1="103" y1="415" x2="116" y2="410"/>
<line x1="103" y1="415" x2="129" y2="400"/>
<line x1="103" y1="415" x2="269" y2="397"/>
<line x1="103" y1="415" x2="43" y2="440"/>
<line x1="103" y1="415" x2="70" y2="448"/>
<line x1="103" y1="415" x2="135" y2="444"/>
<line x1="103" y1="415" x2="190" y2="421"/>
<line x1="103" y1="415" x2="216" y2="420"/>
<line x1="103" y1="415" x2="227" y2="412"/>
<line x1="103" y1="415" x2="246" y2="420"/>
<line x1="103" y1="415" x2="258" y2="428"/>
<line x1="103" y1="415" x2="250" y2="440"/>
<line x1="103" y1="415" x2="291" y2="434"/>
<line x1="103" y1="415" x2="315" y2="435"/>
<line x1="103" y1="415" x2="301" y2="451"/>
<line x1="103" y1="415" x2="280" y2="456"/>
<line x1="103" y1="415" x2="110" y2="472"/>
<line x1="103" y1="415" x2="140" y2="479"/>
<line x1="103" y1="415" x2="159" y2="477"/>
<line x1="103" y1="415" x2="172" y2="484"/>
<line x1="103" y1="415" x2="260" y2="471"/>
<line x1="103" y1="415" x2="186" y2="509"/>
<line x1="103" y1="415" x2="206" y2="510"/>
<line x1="103" y1="415" x2="293" y2="519"/>
<line x1="103" y1="415" x2="130" y2="549"/>
<line x1="103" y1="415" x2="169" y2="556"/>
<line x1="103" y1="415" x2="243" y2="566"/>
<line x1="103" y1="415" x2="272" y2="542"/>
<line x1="116" y1="410" x2="129" y2="400"/>
<line x1="116" y1="410" x2="163" y2="413"/>
<line x1="116" y1="410" x2="269" y2="397"/>
<line x1="116" y1="410" x2="311" y2="405"/>
<line x1="116" y1="410" x2="335" y2="405"/>
<line x1="116" y1="410" x2="43" y2="440"/>
<line x1="116" y1="410" x2="105" y2="455"/>
<line x1="116" y1="410" x2="186" y2="440"/>
<line x1="116" y1="410" x2="216" y2="420"/>
<line x1="116" y1="410" x2="218" y2="436"/>
<line x1="116" y1="410" x2="246" y2="420"/>
<line x1="116" y1="410" x2="258" y2="428"/>
<line x1="116" y1="410" x2="250" y2="440"/>
<line x1="116" y1="410" x2="291" y2="434"/>
<line x1="116" y1="410" x2="301" y2="451"/>
<line x1="116" y1="410" x2="332" y2="457"/>
<line x1="116" y1="410" x2="140" y2="479"/>
<line x1="116" y1="410" x2="172" y2="484"/>
<line x1="116" y1="410" x2="201" y2="457"/>
<line x1="116" y1="410" x2="236" y2="474"/>
<line x1="116" y1="410" x2="243" y2="465"/>
<line x1="116" y1="410" x2="186" y2="509"/>
<line x1="116" y1="410" x2="206" y2="510"/>
<line x1="116" y1="410" x2="229" y2="496"/>
<line x1="116" y1="410" x2="234" y2="510"/>
<line x1="116" y1="410" x2="312" y2="504"/>
<line x1="116" y1="410" x2="130" y2="549"/>
<line x1="116" y1="410" x2="169" y2="556"/>
<line x1="116" y1="410" x2="204" y2="541"/>
<line x1="116" y1="410" x2="272" y2="542"/>
<line x1="116" y1="410" x2="275" y2="527"/>
<line x1="129" y1="400" x2="142" y2="424"/>
<line x1="129" y1="400" x2="224" y2="393"/>
<line x1="129" y1="400" x2="269" y2="397"/>
<line x1="129" y1="400" x2="335" y2="405"/>
<line x1="129" y1="400" x2="105" y2="455"/>
<line x1="129" y1="400" x2="135" y2="444"/>
<line x1="129" y1="400" x2="216" y2="420"/>
<line x1="129" y1="400" x2="227" y2="412"/>
<line x1="129" y1="400" x2="291" y2="434"/>
<line x1="129" y1="400" x2="315" y2="435"/>
<line x1="129" y1="400" x2="110" y2="472"/>
<line x1="129" y1="400" x2="140" y2="479"/>
<line x1="129" y1="400" x2="159" y2="477"/>
<line x1="129" y1="400" x2="172" y2="484"/>
<line x1="129" y1="400" x2="201" y2="457"/>
<line x1="129" y1="400" x2="209" y2="480"/>
<line x1="129" y1="400" x2="243" y2="465"/>
<line x1="129" y1="400" x2="260" y2="471"/>
<line x1="129" y1="400" x2="146" y2="507"/>
<line x1="129" y1="400" x2="206" y2="510"/>
<line x1="129" y1="400" x2="234" y2="510"/>
<line x1="129" y1="400" x2="243" y2="566"/>
<line x1="142" y1="424" x2="163" y2="413"/>
<line x1="142" y1="424" x2="224" y2="393"/>
<line x1="142" y1="424" x2="311" y2="405"/>
<line x1="142" y1="424" x2="335" y2="405"/>
<line x1="142" y1="424" x2="43" y2="440"/>
<line x1="142" y1="424" x2="105" y2="455"/>
<line x1="142" y1="424" x2="135" y2="444"/>
<line x1="142" y1="424" x2="186" y2="440"/>
<line x1="142" y1="424" x2="218" y2="436"/>
<line x1="142" y1="424" x2="227" y2="412"/>
<line x1="142" y1="424" x2="258" y2="428"/>
<line x1="142" y1="424" x2="291" y2="434"/>
<line x1="142" y1="424" x2="315" y2="435"/>
<line x1="142" y1="424" x2="301" y2="451"/>
<line x1="142" y1="424" x2="332" y2="457"/>
<line x1="142" y1="424" x2="280" y2="456"/>
<line x1="142" y1="424" x2="140" y2="479"/>
<line x1="142" y1="424" x2="159" y2="477"/>
<line x1="142" y1="424" x2="201" y2="457"/>
<line x1="142" y1="424" x2="209" y2="480"/>
<line x1="142" y1="424" x2="291" y2="483"/>
<line x1="142" y1="424" x2="186" y2="509"/>
<line x1="142" y1="424" x2="206" y2="510"/>
<line x1="142" y1="424" x2="263" y2="507"/>
<line x1="142" y1="424" x2="312" y2="504"/>
<line x1="142" y1="424" x2="204" y2="541"/>
<line x1="163" y1="413" x2="224" y2="393"/>
<line x1="163" y1="413" x2="269" y2="397"/>
<line x1="163" y1="413" x2="135" y2="444"/>
<line x1="163" y1="413" x2="190" y2="421"/>
<line x1="163" y1="413" x2="227" y2="412"/>
<line x1="163" y1="413" x2="246" y2="420"/>
<line x1="163" y1="413" x2="250" y2="440"/>
<line x1="163" y1="413" x2="291" y2="434"/>
<line x1="163" y1="413" x2="280" y2="456"/>
<line x1="163" y1="413" x2="110" y2="472"/>
<line x1="163" y1="413" x2="140" y2="479"/>
<line x1="163" y1="413" x2="159" y2="477"/>
<line x1="163" y1="413" x2="172" y2="484"/>
<line x1="163" y1="413" x2="260" y2="471"/>
<line x1="163" y1="413" x2="291" y2="483"/>
<line x1="163" y1="413" x2="146" y2="507"/>
<line x1="163" y1="413" x2="186" y2="509"/>
<line x1="163" y1="413" x2="206" y2="510"/>
<line x1="163" y1="413" x2="234" y2="510"/>
<line x1="163" y1="413" x2="263" y2="507"/>
<line x1="163" y1="413" x2="293" y2="519"/>
<line x1="163" y1="413" x2="312" y2="504"/>
<line x1="163" y1="413" x2="130" y2="549"/>
<line x1="163" y1="413" x2="243" y2="566"/>
<line x1="163" y1="413" x2="272" y2="542"/>
<line x1="191" y1="398" x2="269" y2="397"/>
<line x1="191" y1="398" x2="311" y2="405"/>
<line x1="191" y1="398" x2="43" y2="440"/>
<line x1="191" y1="398" x2="70" y2="448"/>
<line x1="191" y1="398" x2="105" y2="455"/>
<line x1="191" y1="398" x2="216" y2="420"/>
<line x1="191" y1="398" x2="246" y2="420"/>
<line x1="191" y1="398" x2="291" y2="434"/>
<line x1="191" y1="398" x2="315" y2="435"/>
<line x1="191" y1="398" x2="332" y2="457"/>
<line x1="191" y1="398" x2="159" y2="477"/>
<line x1="191" y1="398" x2="260" y2="471"/>
<line x1="191" y1="398" x2="291" y2="483"/>
<line x1="191" y1="398" x2="229" y2="496"/>
<line x1="191" y1="398" x2="234" y2="510"/>
<line x1="191" y1="398" x2="312" y2="504"/>
<line x1="191" y1="398" x2="130" y2="549"/>
<line x1="191" y1="398" x2="275" y2="527"/>
<line x1="224" y1="393" x2="311" y2="405"/>
<line x1="224" y1="393" x2="43" y2="440"/>
<line x1="224" y1="393" x2="105" y2="455"/>
<line x1="224" y1="393" x2="135" y2="444"/>
<line x1="224" y1="393" x2="216" y2="420"/>
<line x1="224" y1="393" x2="218" y2="436"/>
<line x1="224" y1="393" x2="258" y2="428"/>
<line x1="224" y1="393" x2="291" y2="434"/>
<line x1="224" y1="393" x2="110" y2="472"/>
<line x1="224" y1="393" x2="140" y2="479"/>
<line x1="224" y1="393" x2="159" y2="477"/>
<line x1="224" y1="393" x2="167" y2="450"/>
<line x1="224" y1="393" x2="172" y2="484"/>
<line x1="224" y1="393" x2="236" y2="474"/>
<line x1="224" y1="393" x2="186" y2="509"/>
<line x1="224" y1="393" x2="206" y2="510"/>
<line x1="224" y1="393" x2="263" y2="507"/>
<line x1="224" y1="393" x2="293" y2="519"/>
<line x1="224" y1="393" x2="130" y2="549"/>
<line x1="224" y1="393" x2="204" y2="541"/>
<line x1="224" y1="393" x2="275" y2="527"/>
<line x1="269" y1="397" x2="335" y2="405"/>
<line x1="269" y1="397" x2="70" y2="448"/>
<line x1="269" y1="397" x2="105" y2="455"/>
<line x1="269" y1="397" x2="135" y2="444"/>
<line x1="269" y1="397" x2="227" y2="412"/>
<line x1="269" y1="397" x2="246" y2="420"/>
<line x1="269" y1="397" x2="258" y2="428"/>
<line x1="269" y1="397" x2="301" y2="451"/>
<line x1="269" y1="397" x2="332" y2="457"/>
<line x1="269" y1="397" x2="280" y2="456"/>
<line x1="269" y1="397" x2="140" y2="479"/>
<line x1="269" y1="397" x2="159" y2="477"/>
<line x1="269" y1="397" x2="201" y2="457"/>
<line x1="269" y1="397" x2="209" y2="480"/>
<line x1="269" y1="397" x2="243" y2="465"/>
<line x1="269" y1="397" x2="146" y2="507"/>
<line x1="269" y1="397" x2="186" y2="509"/>
<line x1="269" y1="397" x2="229" y2="496"/>
<line x1="269" y1="397" x2="263" y2="507"/>
<line x1="269" y1="397" x2="312" y2="504"/>
<line x1="269" y1="397" x2="130" y2="549"/>
<line x1="269" y1="397" x2="169" y2="556"/>
<line x1="269" y1="397" x2="204" y2="541"/>
<line x1="269" y1="397" x2="243" y2="566"/>
<line x1="269" y1="397" x2="275" y2="527"/>
<line x1="311" y1="405" x2="43" y2="440"/>
<line x1="311" y1="405" x2="70" y2="448"/>
<line x1="311" y1="405" x2="135" y2="444"/>
<line x1="311" y1="405" x2="186" y2="440"/>
<line x1="311" y1="405" x2="218" y2="436"/>
<line x1="311" y1="405" x2="246" y2="420"/>
<line x1="311" y1="405" x2="250" y2="440"/>
<line x1="311" y1="405" x2="291" y2="434"/>
<line x1="311" y1="405" x2="301" y2="451"/>
<line x1="311" y1="405" x2="280" y2="456"/>
<line x1="311" y1="405" x2="172" y2="484"/>
<line x1="311" y1="405" x2="201" y2="457"/>
<line x1="311" y1="405" x2="236" y2="474"/>
<line x1="311" y1="405" x2="243" y2="465"/>
<line x1="311" y1="405" x2="260" y2="471"/>
<line x1="311" y1="405" x2="146" y2="507"/>
<line x1="311" y1="405" x2="186" y2="509"/>
<line x1="311" y1="405" x2="263" y2="507"/>
<line x1="311" y1="405" x2="130" y2="549"/>
<line x1="311" y1="405" x2="204" y2="541"/>
<line x1="311" y1="405" x2="243" y2="566"/>
<line x1="311" y1="405" x2="272" y2="542"/>
<line x1="311" y1="405" x2="275" y2="527"/>
<line x1="311" y1="405" x2="399" y2="451"/>
<line x1="311" y1="405" x2="425" y2="481"/>
<line x1="311" y1="405" x2="437" y2="457"/>
<line x1="311" y1="405" x2="444" y2="428"/>
<line x1="311" y1="405" x2="443" y2="408"/>
<line x1="311" y1="405" x2="429" y2="387"/>
<line x1="311" y1="405" x2="392" y2="347"/>
<line x1="311" y1="405" x2="440" y2="348"/>
<line x1="311" y1="405" x2="437" y2="369"/>
<line x1="335" y1="405" x2="70" y2="448"/>
<line x1="335" y1="405" x2="135" y2="444"/>
<line x1="335" y1="405" x2="186" y2="440"/>
<line x1="335" y1="405" x2="190" y2="421"/>
<line x1="335" y1="405" x2="218" y2="436"/>
<line x1="335" y1="405" x2="227" y2="412"/>
<line x1="335" y1="405" x2="258" y2="428"/>
<line x1="335" y1="405" x2="250" y2="440"/>
<line x1="335" y1="405" x2="301" y2="451"/>
<line x1="335" y1="405" x2="332" y2="457"/>
<line x1="335" y1="405" x2="280" y2="456"/>
<line x1="335" y1="405" x2="110" y2="472"/>
<line x1="335" y1="405" x2="140" y2="479"/>
<line x1="335" y1="405" x2="159" y2="477"/>
<line x1="335" y1="405" x2="167" y2="450"/>
<line x1="335" y1="405" x2="243" y2="465"/>
<line x1="335" y1="405" x2="291" y2="483"/>
<line x1="335" y1="405" x2="186" y2="509"/>
<line x1="335" y1="405" x2="229" y2="496"/>
<line x1="335" y1="405" x2="204" y2="541"/>
<line x1="335" y1="405" x2="272" y2="542"/>
<line x1="43" y1="440" x2="70" y2="448"/>
<line x1="43" y1="440" x2="105" y2="455"/>
<line x1="43" y1="440" x2="135" y2="444"/>
<line x1="43" y1="440" x2="218" y2="436"/>
<line x1="43" y1="440" x2="227" y2="412"/>
<line x1="43" y1="440" x2="250" y2="440"/>
<line x1="43" y1="440" x2="291" y2="434"/>
<line x1="43" y1="440" x2="301" y2="451"/>
<line x1="43" y1="440" x2="280" y2="456"/>
<line x1="43" y1="440" x2="159" y2="477"/>
<line x1="43" y1="440" x2="201" y2="457"/>
<line x1="43" y1="440" x2="209" y2="480"/>
<line x1="43" y1="440" x2="243" y2="465"/>
<line x1="43" y1="440" x2="186" y2="509"/>
<line x1="43" y1="440" x2="206" y2="510"/>
<line x1="43" y1="440" x2="229" y2="496"/>
<line x1="43" y1="440" x2="293" y2="519"/>
<line x1="43" y1="440" x2="243" y2="566"/>
<line x1="43" y1="440" x2="275" y2="527"/>
<line x1="70" y1="448" x2="105" y2="455"/>
<line x1="70" y1="448" x2="135" y2="444"/>
<line x1="70" y1="448" x2="218" y2="436"/>
<line x1="70" y1="448" x2="250" y2="440"/>
<line x1="70" y1="448" x2="291" y2="434"/>
<line x1="70" y1="448" x2="332" y2="457"/>
<line x1="70" y1="448" x2="280" y2="456"/>
<line x1="70" y1="448" x2="110" y2="472"/>
<line x1="70" y1="448" x2="140" y2="479"/>
<line x1="70" y1="448" x2="159" y2="477"/>
<line x1="70" y1="448" x2="172" y2="484"/>
<line x1="70" y1="448" x2="209" y2="480"/>
<line x1="70" y1="448" x2="291" y2="483"/>
<line x1="70" y1="448" x2="206" y2="510"/>
<line x1="70" y1="448" x2="293" y2="519"/>
<line x1="70" y1="448" x2="312" y2="504"/>
<line x1="70" y1="448" x2="130" y2="549"/>
<line x1="70" y1="448" x2="243" y2="566"/>
<line x1="70" y1="448" x2="275" y2="527"/>
<line x1="105" y1="455" x2="190" y2="421"/>
<line x1="105" y1="455" x2="218" y2="436"/>
<line x1="105" y1="455" x2="227" y2="412"/>
<line x1="105" y1="455" x2="315" y2="435"/>
<line x1="105" y1="455" x2="332" y2="457"/>
<line x1="105" y1="455" x2="280" y2="456"/>
<line x1="105" y1="455" x2="159" y2="477"/>
<line x1="105" y1="455" x2="167" y2="450"/>
<line x1="105" y1="455" x2="172" y2="484"/>
<line x1="105" y1="455" x2="201" y2="457"/>
<line x1="105" y1="455" x2="243" y2="465"/>
<line x1="105" y1="455" x2="260" y2="471"/>
<line x1="105" y1="455" x2="146" y2="507"/>
<line x1="105" y1="455" x2="229" y2="496"/>
<line x1="105" y1="455" x2="234" y2="510"/>
<line x1="105" y1="455" x2="263" y2="507"/>
<line x1="105" y1="455" x2="293" y2="519"/>
<line x1="105" y1="455" x2="312" y2="504"/>
<line x1="105" y1="455" x2="130" y2="549"/>
<line x1="105" y1="455" x2="204" y2="541"/>
<line x1="105" y1="455" x2="243" y2="566"/>
<line x1="105" y1="455" x2="272" y2="542"/>
<line x1="105" y1="455" x2="275" y2="527"/>
<line x1="135" y1="444" x2="190" y2="421"/>
<line x1="135" y1="444" x2="216" y2="420"/>
<line x1="135" y1="444" x2="246" y2="420"/>
<line x1="135" y1="444" x2="258" y2="428"/>
<line x1="135" y1="444" x2="291" y2="434"/>
<line x1="135" y1="444" x2="301" y2="451"/>
<line x1="135" y1="444" x2="332" y2="457"/>
<line x1="135" y1="444" x2="280" y2="456"/>
<line x1="135" y1="444" x2="172" y2="484"/>
<line x1="135" y1="444" x2="201" y2="457"/>
<line x1="135" y1="444" x2="236" y2="474"/>
<line x1="135" y1="444" x2="243" y2="465"/>
<line x1="135" y1="444" x2="260" y2="471"/>
<line x1="135" y1="444" x2="146" y2="507"/>
<line x1="135" y1="444" x2="186" y2="509"/>
<line x1="135" y1="444" x2="206" y2="510"/>
<line x1="135" y1="444" x2="263" y2="507"/>
<line x1="135" y1="444" x2="293" y2="519"/>
<line x1="135" y1="444" x2="130" y2="549"/>
<line x1="135" y1="444" x2="169" y2="556"/>
<line x1="186" y1="440" x2="190" y2="421"/>
<line x1="186" y1="440" x2="246" y2="420"/>
<line x1="186" y1="440" x2="258" y2="428"/>
<line x1="186" y1="440" x2="301" y2="451"/>
<line x1="186" y1="440" x2="332" y2="457"/>
<line x1="186" y1="440" x2="140" y2="479"/>
<line x1="186" y1="440" x2="167" y2="450"/>
<line x1="186" y1="440" x2="236" y2="474"/>
<line x1="186" y1="440" x2="291" y2="483"/>
<line x1="186" y1="440" x2="186" y2="509"/>
<line x1="186" y1="440" x2="206" y2="510"/>
<line x1="186" y1="440" x2="263" y2="507"/>
<line x1="186" y1="440" x2="293" y2="519"/>
<line x1="186" y1="440" x2="312" y2="504"/>
<line x1="186" y1="440" x2="130" y2="549"/>
<line x1="186" y1="440" x2="169" y2="556"/>
<line x1="186" y1="440" x2="204" y2="541"/>
<line x1="186" y1="440" x2="272" y2="542"/>
<line x1="186" y1="440" x2="275" y2="527"/>
<line x1="190" y1="421" x2="216" y2="420"/>
<line x1="190" y1="421" x2="258" y2="428"/>
<line x1="190" y1="421" x2="250" y2="440"/>
<line x1="190" y1="421" x2="315" y2="435"/>
<line x1="190" y1="421" x2="301" y2="451"/>
<line x1="190" y1="421" x2="110" y2="472"/>
<line x1="190" y1="421" x2="140" y2="479"/>
<line x1="190" y1="421" x2="159" y2="477"/>
<line x1="190" y1="421" x2="167" y2="450"/>
<line x1="190" y1="421" x2="201" y2="457"/>
<line x1="190" y1="421" x2="209" y2="480"/>
<line x1="190" y1="421" x2="260" y2="471"/>
<line x1="190" y1="421" x2="206" y2="510"/>
<line x1="190" y1="421" x2="234" y2="510"/>
<line x1="190" y1="421" x2="263" y2="507"/>
<line x1="190" y1="421" x2="293" y2="519"/>
<line x1="190" y1="421" x2="312" y2="504"/>
<line x1="190" y1="421" x2="130" y2="549"/>
<line x1="190" y1="421" x2="169" y2="556"/>
<line x1="190" y1="421" x2="243" y2="566"/>
<line x1="190" y1="421" x2="275" y2="527"/>
<line x1="216" y1="420" x2="218" y2="436"/>
<line x1="216" y1="420" x2="227" y2="412"/>
<line x1="216" y1="420" x2="246" y2="420"/>
<line x1="216" y1="420" x2="258" y2="428"/>
<line x1="216" y1="420" x2="250" y2="440"/>
<line x1="216" y1="420" x2="291" y2="434"/>
<line x1="216" y1="420" x2="315" y2="435"/>
<line x1="216" y1="420" x2="280" y2="456"/>
<line x1="216" y1="420" x2="110" y2="472"/>
<line x1="216" y1="420" x2="159" y2="477"/>
<line x1="216" y1="420" x2="167" y2="450"/>
<line x1="216" y1="420" x2="172" y2="484"/>
<line x1="216" y1="420" x2="209" y2="480"/>
<line x1="216" y1="420" x2="243" y2="465"/>
<line x1="216" y1="420" x2="291" y2="483"/>
<line x1="216" y1="420" x2="186" y2="509"/>
<line x1="216" y1="420" x2="229" y2="496"/>
<line x1="216" y1="420" x2="263" y2="507"/>
<line x1="216" y1="420" x2="293" y2="519"/>
<line x1="216" y1="420" x2="312" y2="504"/>
<line x1="216" y1="420" x2="130" y2="549"/>
<line x1="216" y1="420" x2="169" y2="556"/>
<line x1="216" y1="420" x2="204" y2="541"/>
<line x1="216" y1="420" x2="243" y2="566"/>
<line x1="218" y1="436" x2="227" y2="412"/>
<line x1="218" y1="436" x2="258" y2="428"/>
<line x1="218" y1="436" x2="250" y2="440"/>
<line x1="218" y1="436" x2="291" y2="434"/>
<line x1="218" y1="436" x2="315" y2="435"/>
<line x1="218" y1="436" x2="280" y2="456"/>
<line x1="218" y1="436" x2="159" y2="477"/>
<line x1="218" y1="436" x2="167" y2="450"/>
<line x1="218" y1="436" x2="172" y2="484"/>
<line x1="218" y1="436" x2="201" y2="457"/>
<line x1="218" y1="436" x2="209" y2="480"/>
<line x1="218" y1="436" x2="260" y2="471"/>
<line x1="218" y1="436" x2="229" y2="496"/>
<line x1="218" y1="436" x2="263" y2="507"/>
<line x1="218" y1="436" x2="169" y2="556"/>
<line x1="218" y1="436" x2="204" y2="541"/>
<line x1="227" y1="412" x2="315" y2="435"/>
<line x1="227" y1="412" x2="140" y2="479"/>
<line x1="227" y1="412" x2="159" y2="477"/>
<line x1="227" y1="412" x2="167" y2="450"/>
<line x1="227" y1="412" x2="201" y2="457"/>
<line x1="227" y1="412" x2="209" y2="480"/>
<line x1="227" y1="412" x2="243" y2="465"/>
<line x1="227" y1="412" x2="260" y2="471"/>
<line x1="227" y1="412" x2="186" y2="509"/>
<line x1="227" y1="412" x2="206" y2="510"/>
<line x1="227" y1="412" x2="263" y2="507"/>
<line x1="227" y1="412" x2="312" y2="504"/>
<line x1="227" y1="412" x2="130" y2="549"/>
<line x1="227" y1="412" x2="243" y2="566"/>
<line x1="227" y1="412" x2="272" y2="542"/>
<line x1="227" y1="412" x2="275" y2="527"/>
<line x1="246" y1="420" x2="258" y2="428"/>
<line x1="246" y1="420" x2="250" y2="440"/>
<line x1="246" y1="420" x2="291" y2="434"/>
<line x1="246" y1="420" x2="332" y2="457"/>
<line x1="246" y1="420" x2="110" y2="472"/>
<line x1="246" y1="420" x2="140" y2="479"/>
<line x1="246" y1="420" x2="167" y2="450"/>
<line x1="246" y1="420" x2="172" y2="484"/>
<line x1="246" y1="420" x2="146" y2="507"/>
<line x1="246" y1="420" x2="186" y2="509"/>
<line x1="246" y1="420" x2="229" y2="496"/>
<line x1="246" y1="420" x2="234" y2="510"/>
<line x1="246" y1="420" x2="130" y2="549"/>
<line x1="246" y1="420" x2="243" y2="566"/>
<line x1="246" y1="420" x2="272" y2="542"/>
<line x1="258" y1="428" x2="250" y2="440"/>
<line x1="258" y1="428" x2="315" y2="435"/>
<line x1="258" y1="428" x2="301" y2="451"/>
<line x1="258" y1="428" x2="110" y2="472"/>
<line x1="258" y1="428" x2="140" y2="479"/>
<line x1="258" y1="428" x2="167" y2="450"/>
<line x1="258" y1="428" x2="172" y2="484"/>
<line x1="258" y1="428" x2="236" y2="474"/>
<line x1="258" y1="428" x2="243" y2="465"/>
<line x1="258" y1="428" x2="260" y2="471"/>
<line x1="258" y1="428" x2="291" y2="483"/>
<line x1="258" y1="428" x2="186" y2="509"/>
<line x1="258" y1="428" x2="206" y2="510"/>
<line x1="258" y1="428" x2="229" y2="496"/>
<line x1="258" y1="428" x2="234" y2="510"/>
<line x1="258" y1="428" x2="293" y2="519"/>
<line x1="258" y1="428" x2="312" y2="504"/>
<line x1="258" y1="428" x2="169" y2="556"/>
<line x1="258" y1="428" x2="243" y2="566"/>
<line x1="258" y1="428" x2="272" y2="542"/>
<line x1="250" y1="440" x2="301" y2="451"/>
<line x1="250" y1="440" x2="332" y2="457"/>
<line x1="250" y1="440" x2="110" y2="472"/>
<line x1="250" y1="440" x2="172" y2="484"/>
<line x1="250" y1="440" x2="260" y2="471"/>
<line x1="250" y1="440" x2="146" y2="507"/>
<line x1="250" y1="440" x2="186" y2="509"/>
<line x1="250" y1="440" x2="206" y2="510"/>
<line x1="250" y1="440" x2="234" y2="510"/>
<line x1="250" y1="440" x2="263" y2="507"/>
<line x1="250" y1="440" x2="293" y2="519"/>
<line x1="250" y1="440" x2="130" y2="549"/>
<line x1="250" y1="440" x2="243" y2="566"/>
<line x1="291" y1="434" x2="301" y2="451"/>
<line x1="291" y1="434" x2="140" y2="479"/>
<line x1="291" y1="434" x2="159" y2="477"/>
<line x1="291" y1="434" x2="167" y2="450"/>
<line x1="291" y1="434" x2="236" y2="474"/>
<line x1="291" y1="434" x2="146" y2="507"/>
<line x1="291" y1="434" x2="186" y2="509"/>
<line x1="291" y1="434" x2="206" y2="510"/>
<line x1="291" y1="434" x2="293" y2="519"/>
<line x1="291" y1="434" x2="204" y2="541"/>
<line x1="291" y1="434" x2="272" y2="542"/>
<line x1="315" y1="435" x2="301" y2="451"/>
<line x1="315" y1="435" x2="332" y2="457"/>
<line x1="315" y1="435" x2="280" y2="456"/>
<line x1="315" y1="435" x2="110" y2="472"/>
<line x1="315" y1="435" x2="167" y2="450"/>
<line x1="315" y1="435" x2="172" y2="484"/>
<line x1="315" y1="435" x2="243" y2="465"/>
<line x1="315" y1="435" x2="146" y2="507"/>
<line x1="315" y1="435" x2="229" y2="496"/>
<line x1="315" y1="435" x2="234" y2="510"/>
<line x1="315" y1="435" x2="293" y2="519"/>
<line x1="315" y1="435" x2="312" y2="504"/>
<line x1="315" y1="435" x2="169" y2="556"/>
<line x1="315" y1="435" x2="204" y2="541"/>
<line x1="315" y1="435" x2="243" y2="566"/>
<line x1="315" y1="435" x2="272" y2="542"/>
<line x1="315" y1="435" x2="275" y2="527"/>
<line x1="315" y1="435" x2="399" y2="451"/>
<line x1="301" y1="451" x2="332" y2="457"/>
<line x1="301" y1="451" x2="280" y2="456"/>
<line x1="301" y1="451" x2="167" y2="450"/>
<line x1="301" y1="451" x2="172" y2="484"/>
<line x1="301" y1="451" x2="260" y2="471"/>
<line x1="301" y1="451" x2="146" y2="507"/>
<line x1="301" y1="451" x2="186" y2="509"/>
<line x1="301" y1="451" x2="234" y2="510"/>
<line x1="301" y1="451" x2="130" y2="549"/>
<line x1="301" y1="451" x2="272" y2="542"/>
<line x1="332" y1="457" x2="280" y2="456"/>
<line x1="332" y1="457" x2="140" y2="479"/>
<line x1="332" y1="457" x2="167" y2="450"/>
<line x1="332" y1="457" x2="201" y2="457"/>
<line x1="332" y1="457" x2="209" y2="480"/>
<line x1="332" y1="457" x2="260" y2="471"/>
<line x1="332" y1="457" x2="291" y2="483"/>
<line x1="332" y1="457" x2="146" y2="507"/>
<line x1="332" y1="457" x2="206" y2="510"/>
<line x1="332" y1="457" x2="234" y2="510"/>
<line x1="332" y1="457" x2="293" y2="519"/>
<line x1="332" y1="457" x2="130" y2="549"/>
<line x1="332" y1="457" x2="169" y2="556"/>
<line x1="332" y1="457" x2="204" y2="541"/>
<line x1="332" y1="457" x2="243" y2="566"/>
<line x1="332" y1="457" x2="272" y2="542"/>
<line x1="280" y1="456" x2="140" y2="479"/>
<line x1="280" y1="456" x2="159" y2="477"/>
<line x1="280" y1="456" x2="172" y2="484"/>
<line x1="280" y1="456" x2="209" y2="480"/>
<line x1="280" y1="456" x2="236" y2="474"/>
<line x1="280" y1="456" x2="243" y2="465"/>
<line x1="280" y1="456" x2="291" y2="483"/>
<line x1="280" y1="456" x2="146" y2="507"/>
<line x1="280" y1="456" x2="130" y2="549"/>
<line x1="280" y1="456" x2="272" y2="542"/>
<line x1="280" y1="456" x2="275" y2="527"/>
<line x1="110" y1="472" x2="140" y2="479"/>
<line x1="110" y1="472" x2="159" y2="477"/>
<line x1="110" y1="472" x2="167" y2="450"/>
<line x1="110" y1="472" x2="172" y2="484"/>
<line x1="110" y1="472" x2="201" y2="457"/>
<line x1="110" y1="472" x2="260" y2="471"/>
<line x1="110" y1="472" x2="291" y2="483"/>
<line x1="110" y1="472" x2="146" y2="507"/>
<line x1="110" y1="472" x2="229" y2="496"/>
<line x1="110" y1="472" x2="234" y2="510"/>
<line x1="110" y1="472" x2="263" y2="507"/>
<line x1="110" y1="472" x2="94" y2="563"/>
<line x1="110" y1="472" x2="169" y2="556"/>
<line x1="110" y1="472" x2="204" y2="541"/>
<line x1="140" y1="479" x2="167" y2="450"/>
<line x1="140" y1="479" x2="236" y2="474"/>
<line x1="140" y1="479" x2="243" y2="465"/>
<line x1="140" y1="479" x2="146" y2="507"/>
<line x1="140" y1="479" x2="186" y2="509"/>
<line x1="140" y1="479" x2="206" y2="510"/>
<line x1="140" y1="479" x2="234" y2="510"/>
<line x1="140" y1="479" x2="263" y2="507"/>
<line x1="140" y1="479" x2="293" y2="519"/>
<line x1="140" y1="479" x2="312" y2="504"/>
<line x1="140" y1="479" x2="169" y2="556"/>
<line x1="140" y1="479" x2="204" y2="541"/>
<line x1="140" y1="479" x2="243" y2="566"/>
<line x1="140" y1="479" x2="272" y2="542"/>
<line x1="159" y1="477" x2="172" y2="484"/>
<line x1="159" y1="477" x2="209" y2="480"/>
<line x1="159" y1="477" x2="236" y2="474"/>
<line x1="159" y1="477" x2="243" y2="465"/>
<line x1="159" y1="477" x2="234" y2="510"/>
<line x1="159" y1="477" x2="263" y2="507"/>
<line x1="159" y1="477" x2="204" y2="541"/>
<line x1="159" y1="477" x2="243" y2="566"/>
<line x1="167" y1="450" x2="172" y2="484"/>
<line x1="167" y1="450" x2="236" y2="474"/>
<line x1="167" y1="450" x2="243" y2="465"/>
<line x1="167" y1="450" x2="260" y2="471"/>
<line x1="167" y1="450" x2="186" y2="509"/>
<line x1="167" y1="450" x2="206" y2="510"/>
<line x1="167" y1="450" x2="263" y2="507"/>
<line x1="167" y1="450" x2="312" y2="504"/>
<line x1="167" y1="450" x2="130" y2="549"/>
<line x1="167" y1="450" x2="169" y2="556"/>
<line x1="167" y1="450" x2="275" y2="527"/>
<line x1="172" y1="484" x2="243" y2="465"/>
<line x1="172" y1="484" x2="260" y2="471"/>
<line x1="172" y1="484" x2="291" y2="483"/>
<line x1="172" y1="484" x2="186" y2="509"/>
<line x1="172" y1="484" x2="206" y2="510"/>
<line x1="172" y1="484" x2="293" y2="519"/>
<line x1="172" y1="484" x2="130" y2="549"/>
<line x1="172" y1="484" x2="169" y2="556"/>
<line x1="172" y1="484" x2="243" y2="566"/>
<line x1="172" y1="484" x2="272" y2="542"/>
<line x1="172" y1="484" x2="275" y2="527"/>
<line x1="201" y1="457" x2="146" y2="507"/>
<line x1="201" y1="457" x2="206" y2="510"/>
<line x1="201" y1="457" x2="229" y2="496"/>
<line x1="201" y1="457" x2="263" y2="507"/>
<line x1="201" y1="457" x2="293" y2="519"/>
<line x1="201" y1="457" x2="169" y2="556"/>
<line x1="201" y1="457" x2="204" y2="541"/>
<line x1="209" y1="480" x2="236" y2="474"/>
<line x1="209" y1="480" x2="260" y2="471"/>
<line x1="209" y1="480" x2="291" y2="483"/>
<line x1="209" y1="480" x2="146" y2="507"/>
<line x1="209" y1="480" x2="229" y2="496"/>
<line x1="209" y1="480" x2="234" y2="510"/>
<line x1="209" y1="480" x2="293" y2="519"/>
<line x1="209" y1="480" x2="243" y2="566"/>
<line x1="209" y1="480" x2="275" y2="527"/>
<line x1="236" y1="474" x2="260" y2="471"/>
<line x1="236" y1="474" x2="146" y2="507"/>
<line x1="236" y1="474" x2="186" y2="509"/>
<line x1="236" y1="474" x2="206" y2="510"/>
<line x1="236" y1="474" x2="229" y2="496"/>
<line x1="236" y1="474" x2="263" y2="507"/>
<line x1="236" y1="474" x2="293" y2="519"/>
<line x1="236" y1="474" x2="204" y2="541"/>
<line x1="236" y1="474" x2="272" y2="542"/>
<line x1="243" y1="465" x2="291" y2="483"/>
<line x1="243" y1="465" x2="206" y2="510"/>
<line x1="243" y1="465" x2="229" y2="496"/>
<line x1="243" y1="465" x2="263" y2="507"/>
<line x1="243" y1="465" x2="293" y2="519"/>
<line x1="243" y1="465" x2="312" y2="504"/>
<line x1="243" y1="465" x2="243" y2="566"/>
<line x1="243" y1="465" x2="272" y2="542"/>
<line x1="243" y1="465" x2="275" y2="527"/>
<line x1="260" y1="471" x2="291" y2="483"/>
<line x1="260" y1="471" x2="186" y2="509"/>
<line x1="260" y1="471" x2="206" y2="510"/>
<line x1="260" y1="471" x2="263" y2="507"/>
<line x1="260" y1="471" x2="130" y2="549"/>
<line x1="260" y1="471" x2="272" y2="542"/>
<line x1="260" y1="471" x2="275" y2="527"/>
<line x1="291" y1="483" x2="146" y2="507"/>
<line x1="291" y1="483" x2="186" y2="509"/>
<line x1="291" y1="483" x2="206" y2="510"/>
<line x1="291" y1="483" x2="229" y2="496"/>
<line x1="291" y1="483" x2="234" y2="510"/>
<line x1="291" y1="483" x2="293" y2="519"/>
<line x1="291" y1="483" x2="130" y2="549"/>
<line x1="291" y1="483" x2="204" y2="541"/>
<line x1="291" y1="483" x2="243" y2="566"/>
<line x1="291" y1="483" x2="272" y2="542"/>
<line x1="291" y1="483" x2="275" y2="527"/>
<line x1="39" y1="500" x2="206" y2="510"/>
<line x1="146" y1="507" x2="186" y2="509"/>
<line x1="146" y1="507" x2="206" y2="510"/>
<line x1="146" y1="507" x2="263" y2="507"/>
<line x1="146" y1="507" x2="293" y2="519"/>
<line x1="146" y1="507" x2="130" y2="549"/>
<line x1="146" y1="507" x2="169" y2="556"/>
<line x1="146" y1="507" x2="204" y2="541"/>
<line x1="146" y1="507" x2="243" y2="566"/>
<line x1="186" y1="509" x2="263" y2="507"/>
<line x1="186" y1="509" x2="293" y2="519"/>
<line x1="186" y1="509" x2="130" y2="549"/>
<line x1="186" y1="509" x2="169" y2="556"/>
<line x1="186" y1="509" x2="204" y2="541"/>
<line x1="186" y1="509" x2="272" y2="542"/>
<line x1="206" y1="510" x2="229" y2="496"/>
<line x1="206" y1="510" x2="293" y2="519"/>
<line x1="206" y1="510" x2="130" y2="549"/>
<line x1="206" y1="510" x2="169" y2="556"/>
<line x1="206" y1="510" x2="243" y2="566"/>
<line x1="229" y1="496" x2="263" y2="507"/>
<line x1="229" y1="496" x2="312" y2="504"/>
<line x1="229" y1="496" x2="130" y2="549"/>
<line x1="229" y1="496" x2="243" y2="566"/>
<line x1="229" y1="496" x2="162" y2="598"/>
<line x1="229" y1="496" x2="272" y2="542"/>
<line x1="234" y1="510" x2="312" y2="504"/>
<line x1="234" y1="510" x2="272" y2="542"/>
<line x1="263" y1="507" x2="293" y2="519"/>
<line x1="263" y1="507" x2="312" y2="504"/>
<line x1="263" y1="507" x2="130" y2="549"/>
<line x1="263" y1="507" x2="272" y2="542"/>
<line x1="263" y1="507" x2="275" y2="527"/>
<line x1="263" y1="507" x2="263" y2="605"/>
<line x1="293" y1="519" x2="312" y2="504"/>
<line x1="293" y1="519" x2="204" y2="541"/>
<line x1="293" y1="519" x2="243" y2="566"/>
<line x1="293" y1="519" x2="275" y2="527"/>
<line x1="312" y1="504" x2="130" y2="549"/>
<line x1="312" y1="504" x2="169" y2="556"/>
<line x1="45" y1="531" x2="142" y2="576"/>
<line x1="45" y1="531" x2="204" y2="541"/>
<line x1="45" y1="531" x2="272" y2="542"/>
<line x1="73" y1="532" x2="243" y2="566"/>
<line x1="73" y1="532" x2="275" y2="527"/>
<line x1="130" y1="549" x2="169" y2="556"/>
<line x1="130" y1="549" x2="204" y2="541"/>
<line x1="130" y1="549" x2="272" y2="542"/>
<line x1="130" y1="549" x2="275" y2="527"/>
<line x1="142" y1="576" x2="243" y2="566"/>
<line x1="169" y1="556" x2="204" y2="541"/>
<line x1="169" y1="556" x2="243" y2="566"/>
<line x1="169" y1="556" x2="272" y2="542"/>
<line x1="204" y1="541" x2="275" y2="527"/>
<line x1="162" y1="598" x2="272" y2="542"/>
<line x1="272" y1="542" x2="275" y2="527"/>
<line x1="357" y1="283" x2="272" y2="357"/>
<line x1="263" y1="605" x2="146" y2="507"/>
<line x1="263" y1="605" x2="209" y2="719"/>
<line x1="263" y1="605" x2="257" y2="716"/>
<line x1="263" y1="605" x2="308" y2="707"/>
<line x1="263" y1="605" x2="357" y2="687"/>
<line x1="209" y1="719" x2="257" y2="716"/>
<line x1="209" y1="719" x2="328" y2="783"/>
<line x1="257" y1="716" x2="308" y2="707"/>
<line x1="257" y1="716" x2="357" y2="687"/>
<line x1="308" y1="707" x2="357" y2="687"/>
<line x1="427" y1="753" x2="451" y2="743"/>
<line x1="427" y1="753" x2="484" y2="741"/>
<line x1="427" y1="753" x2="479" y2="697"/>
<line x1="427" y1="753" x2="525" y2="719"/>
<line x1="427" y1="753" x2="514" y2="672"/>
<line x1="427" y1="753" x2="555" y2="683"/>
<line x1="427" y1="753" x2="563" y2="647"/>
<line x1="451" y1="743" x2="484" y2="741"/>
<line x1="451" y1="743" x2="479" y2="697"/>
<line x1="451" y1="743" x2="525" y2="719"/>
<line x1="451" y1="743" x2="514" y2="672"/>
<line x1="451" y1="743" x2="555" y2="683"/>
<line x1="451" y1="743" x2="563" y2="647"/>
<line x1="484" y1="741" x2="479" y2="697"/>
<line x1="484" y1="741" x2="525" y2="719"/>
<line x1="484" y1="741" x2="514" y2="672"/>
<line x1="484" y1="741" x2="555" y2="683"/>
<line x1="484" y1="741" x2="563" y2="647"/>
<line x1="479" y1="697" x2="525" y2="719"/>
<line x1="479" y1="697" x2="514" y2="672"/>
<line x1="479" y1="697" x2="555" y2="683"/>
<line x1="479" y1="697" x2="563" y2="647"/>
<line x1="525" y1="719" x2="514" y2="672"/>
<line x1="525" y1="719" x2="555" y2="683"/>
<line x1="525" y1="719" x2="563" y2="647"/>
<line x1="514" y1="672" x2="555" y2="683"/>
<line x1="514" y1="672" x2="563" y2="647"/>
<line x1="555" y1="683" x2="563" y2="647"/>
<line x1="399" y1="451" x2="425" y2="481"/>
<line x1="399" y1="451" x2="437" y2="457"/>
<line x1="399" y1="451" x2="444" y2="428"/>
<line x1="399" y1="451" x2="443" y2="408"/>
<line x1="399" y1="451" x2="429" y2="387"/>
<line x1="399" y1="451" x2="424" y2="326"/>
<line x1="399" y1="451" x2="440" y2="348"/>
<line x1="399" y1="451" x2="437" y2="369"/>
<line x1="399" y1="451" x2="508" y2="329"/>
<line x1="399" y1="451" x2="513" y2="362"/>
<line x1="399" y1="451" x2="516" y2="386"/>
<line x1="399" y1="451" x2="516" y2="416"/>
<line x1="399" y1="451" x2="511" y2="443"/>
<line x1="399" y1="451" x2="502" y2="483"/>
<line x1="399" y1="451" x2="571" y2="439"/>
<line x1="399" y1="451" x2="570" y2="362"/>
<line x1="425" y1="481" x2="437" y2="457"/>
<line x1="425" y1="481" x2="444" y2="428"/>
<line x1="425" y1="481" x2="443" y2="408"/>
<line x1="425" y1="481" x2="429" y2="387"/>
<line x1="425" y1="481" x2="392" y2="347"/>
<line x1="425" y1="481" x2="424" y2="326"/>
<line x1="425" y1="481" x2="440" y2="348"/>
<line x1="425" y1="481" x2="437" y2="369"/>
<line x1="425" y1="481" x2="508" y2="329"/>
<line x1="425" y1="481" x2="513" y2="362"/>
<line x1="425" y1="481" x2="516" y2="386"/>
<line x1="425" y1="481" x2="516" y2="416"/>
<line x1="425" y1="481" x2="511" y2="443"/>
<line x1="425" y1="481" x2="502" y2="483"/>
<line x1="425" y1="481" x2="571" y2="439"/>
<line x1="425" y1="481" x2="570" y2="362"/>
<line x1="437" y1="457" x2="444" y2="428"/>
<line x1="437" y1="457" x2="443" y2="408"/>
<line x1="437" y1="457" x2="429" y2="387"/>
<line x1="437" y1="457" x2="392" y2="347"/>
<line x1="437" y1="457" x2="424" y2="326"/>
<line x1="437" y1="457" x2="440" y2="348"/>
<line x1="437" y1="457" x2="437" y2="369"/>
<line x1="437" y1="457" x2="508" y2="329"/>
<line x1="437" y1="457" x2="513" y2="362"/>
<line x1="437" y1="457" x2="516" y2="386"/>
<line x1="437" y1="457" x2="516" y2="416"/>
<line x1="437" y1="457" x2="511" y2="443"/>
<line x1="437" y1="457" x2="502" y2="483"/>
<line x1="437" y1="457" x2="571" y2="439"/>
<line x1="437" y1="457" x2="570" y2="362"/>
<line x1="444" y1="428" x2="443" y2="408"/>
<line x1="444" y1="428" x2="429" y2="387"/>
<line x1="444" y1="428" x2="392" y2="347"/>
<line x1="444" y1="428" x2="424" y2="326"/>
<line x1="444" y1="428" x2="440" y2="348"/>
<line x1="444" y1="428" x2="437" y2="369"/>
<line x1="444" y1="428" x2="508" y2="329"/>
<line x1="444" y1="428" x2="513" y2="362"/>
<line x1="444" y1="428" x2="516" y2="386"/>
<line x1="444" y1="428" x2="516" y2="416"/>
<line x1="444" y1="428" x2="511" y2="443"/>
<line x1="444" y1="428" x2="502" y2="483"/>
<line x1="444" y1="428" x2="571" y2="439"/>
<line x1="444" y1="428" x2="570" y2="362"/>
<line x1="443" y1="408" x2="429" y2="387"/>
<line x1="443" y1="408" x2="392" y2="347"/>
<line x1="443" y1="408" x2="424" y2="326"/>
<line x1="443" y1="408" x2="440" y2="348"/>
<line x1="443" y1="408" x2="437" y2="369"/>
<line x1="443" y1="408" x2="508" y2="329"/>
<line x1="443" y1="408" x2="513" y2="362"/>
<line x1="443" y1="408" x2="516" y2="386"/>
<line x1="443" y1="408" x2="516" y2="416"/>
<line x1="443" y1="408" x2="511" y2="443"/>
<line x1="443" y1="408" x2="502" y2="483"/>
<line x1="443" y1="408" x2="571" y2="439"/>
<line x1="443" y1="408" x2="570" y2="362"/>
<line x1="429" y1="387" x2="392" y2="347"/>
<line x1="429" y1="387" x2="424" y2="326"/>
<line x1="429" y1="387" x2="440" y2="348"/>
<line x1="429" y1="387" x2="437" y2="369"/>
<line x1="429" y1="387" x2="508" y2="329"/>
<line x1="429" y1="387" x2="513" y2="362"/>
<line x1="429" y1="387" x2="516" y2="386"/>
<line x1="429" y1="387" x2="516" y2="416"/>
<line x1="429" y1="387" x2="511" y2="443"/>
<line x1="429" y1="387" x2="502" y2="483"/>
<line x1="429" y1="387" x2="571" y2="439"/>
<line x1="429" y1="387" x2="570" y2="362"/>
<line x1="392" y1="347" x2="424" y2="326"/>
<line x1="392" y1="347" x2="440" y2="348"/>
<line x1="392" y1="347" x2="437" y2="369"/>
<line x1="392" y1="347" x2="508" y2="329"/>
<line x1="392" y1="347" x2="513" y2="362"/>
<line x1="392" y1="347" x2="516" y2="386"/>
<line x1="392" y1="347" x2="516" y2="416"/>
<line x1="392" y1="347" x2="511" y2="443"/>
<line x1="392" y1="347" x2="502" y2="483"/>
<line x1="392" y1="347" x2="571" y2="439"/>
<line x1="392" y1="347" x2="570" y2="362"/>
<line x1="424" y1="326" x2="440" y2="348"/>
<line x1="424" y1="326" x2="437" y2="369"/>
<line x1="424" y1="326" x2="508" y2="329"/>
<line x1="424" y1="326" x2="513" y2="362"/>
<line x1="424" y1="326" x2="516" y2="386"/>
<line x1="424" y1="326" x2="516" y2="416"/>
<line x1="424" y1="326" x2="511" y2="443"/>
<line x1="424" y1="326" x2="502" y2="483"/>
<line x1="424" y1="326" x2="571" y2="439"/>
<line x1="424" y1="326" x2="570" y2="362"/>
<line x1="424" y1="326" x2="475" y2="233"/>
<line x1="440" y1="348" x2="437" y2="369"/>
<line x1="440" y1="348" x2="508" y2="329"/>
<line x1="440" y1="348" x2="513" y2="362"/>
<line x1="440" y1="348" x2="516" y2="386"/>
<line x1="440" y1="348" x2="516" y2="416"/>
<line x1="440" y1="348" x2="511" y2="443"/>
<line x1="440" y1="348" x2="502" y2="483"/>
<line x1="440" y1="348" x2="571" y2="439"/>
<line x1="440" y1="348" x2="570" y2="362"/>
<line x1="437" y1="369" x2="508" y2="329"/>
<line x1="437" y1="369" x2="513" y2="362"/>
<line x1="437" y1="369" x2="516" y2="386"/>
<line x1="437" y1="369" x2="516" y2="416"/>
<line x1="437" y1="369" x2="511" y2="443"/>
<line x1="437" y1="369" x2="502" y2="483"/>
<line x1="437" y1="369" x2="571" y2="439"/>
<line x1="437" y1="369" x2="570" y2="362"/>
<line x1="508" y1="329" x2="513" y2="362"/>
<line x1="508" y1="329" x2="516" y2="386"/>
<line x1="508" y1="329" x2="516" y2="416"/>
<line x1="508" y1="329" x2="511" y2="443"/>
<line x1="508" y1="329" x2="502" y2="483"/>
<line x1="508" y1="329" x2="571" y2="439"/>
<line x1="508" y1="329" x2="570" y2="362"/>
<line x1="513" y1="362" x2="516" y2="386"/>
<line x1="513" y1="362" x2="516" y2="416"/>
<line x1="513" y1="362" x2="511" y2="443"/>
<line x1="513" y1="362" x2="502" y2="483"/>
<line x1="513" y1="362" x2="571" y2="439"/>
<line x1="513" y1="362" x2="570" y2="362"/>
<line x1="516" y1="386" x2="516" y2="416"/>
<line x1="516" y1="386" x2="511" y2="443"/>
<line x1="516" y1="386" x2="502" y2="483"/>
<line x1="516" y1="386" x2="571" y2="439"/>
<line x1="516" y1="386" x2="570" y2="362"/>
<line x1="516" y1="416" x2="511" y2="443"/>
<line x1="516" y1="416" x2="502" y2="483"/>
<line x1="516" y1="416" x2="571" y2="439"/>
<line x1="516" y1="416" x2="570" y2="362"/>
<line x1="511" y1="443" x2="502" y2="483"/>
<line x1="511" y1="443" x2="571" y2="439"/>
<line x1="511" y1="443" x2="570" y2="362"/>
<line x1="502" y1="483" x2="571" y2="439"/>
<line x1="502" y1="483" x2="570" y2="362"/>
<line x1="571" y1="439" x2="570" y2="362"/>
<line x1="475" y1="233" x2="486" y2="126"/>
<line x1="475" y1="233" x2="519" y2="154"/>
<line x1="475" y1="233" x2="544" y2="176"/>
<line x1="475" y1="233" x2="583" y2="204"/>
<line x1="475" y1="233" x2="606" y2="228"/>
<line x1="475" y1="233" x2="580" y2="186"/>
<line x1="475" y1="233" x2="592" y2="142"/>
<line x1="475" y1="233" x2="564" y2="117"/>
<line x1="475" y1="233" x2="531" y2="100"/>
<line x1="475" y1="233" x2="490" y2="82"/>
<line x1="486" y1="126" x2="519" y2="154"/>
<line x1="486" y1="126" x2="544" y2="176"/>
<line x1="486" y1="126" x2="583" y2="204"/>
<line x1="486" y1="126" x2="606" y2="228"/>
<line x1="486" y1="126" x2="580" y2="186"/>
<line x1="486" y1="126" x2="592" y2="142"/>
<line x1="486" y1="126" x2="564" y2="117"/>
<line x1="486" y1="126" x2="531" y2="100"/>
<line x1="486" y1="126" x2="490" y2="82"/>
<line x1="519" y1="154" x2="544" y2="176"/>
<line x1="519" y1="154" x2="583" y2="204"/>
<line x1="519" y1="154" x2="606" y2="228"/>
<line x1="519" y1="154" x2="580" y2="186"/>
<line x1="519" y1="154" x2="592" y2="142"/>
<line x1="519" y1="154" x2="564" y2="117"/>
<line x1="519" y1="154" x2="531" y2="100"/>
<line x1="519" y1="154" x2="490" y2="82"/>
<line x1="544" y1="176" x2="583" y2="204"/>
<line x1="544" y1="176" x2="606" y2="228"/>
<line x1="544" y1="176" x2="580" y2="186"/>
<line x1="544" y1="176" x2="592" y2="142"/>
<line x1="544" y1="176" x2="564" y2="117"/>
<line x1="544" y1="176" x2="531" y2="100"/>
<line x1="544" y1="176" x2="490" y2="82"/>
<line x1="583" y1="204" x2="606" y2="228"/>
<line x1="583" y1="204" x2="580" y2="186"/>
<line x1="583" y1="204" x2="592" y2="142"/>
<line x1="583" y1="204" x2="564" y2="117"/>
<line x1="583" y1="204" x2="531" y2="100"/>
<line x1="583" y1="204" x2="490" y2="82"/>
<line x1="606" y1="228" x2="580" y2="186"/>
<line x1="606" y1="228" x2="592" y2="142"/>
<line x1="606" y1="228" x2="564" y2="117"/>
<line x1="606" y1="228" x2="531" y2="100"/>
<line x1="606" y1="228" x2="490" y2="82"/>
<line x1="580" y1="186" x2="592" y2="142"/>
<line x1="580" y1="186" x2="564" y2="117"/>
<line x1="580" y1="186" x2="531" y2="100"/>
<line x1="580" y1="186" x2="490" y2="82"/>
<line x1="592" y1="142" x2="564" y2="117"/>
<line x1="592" y1="142" x2="531" y2="100"/>
<line x1="592" y1="142" x2="490" y2="82"/>
<line x1="564" y1="117" x2="531" y2="100"/>
<line x1="564" y1="117" x2="490" y2="82"/>
<line x1="531" y1="100" x2="490" y2="82"/>
<line x1="667" y1="450" x2="670" y2="414"/>
<line x1="667" y1="450" x2="667" y2="340"/>
<line x1="670" y1="414" x2="672" y2="374"/>
<line x1="672" y1="374" x2="667" y2="340"/>
<line x1="667" y1="340" x2="651" y2="279"/>
<line x1="372" y1="28" x2="301" y2="15"/>
</g>
<g stroke="white" stroke-width="0.5" stroke-opacity="0.8" fill="black">
<circle cx="174" cy="88" r="4"/>
<circle cx="240" cy="87" r="4"/>
<circle cx="207" cy="171" r="4"/>
<circle cx="162" cy="196" r="4"/>
<circle cx="198" cy="195" r="4"/>
<circle cx="241" cy="195" r="4"/>
<circle cx="128" cy="221" r="4"/>
<circle cx="301" cy="192" r="4"/>
<circle cx="155" cy="224" r="4"/>
<circle cx="241" cy="226" r="4"/>
<circle cx="72" cy="232" r="4"/>
<circle cx="207" cy="251" r="4"/>
<circle cx="269" cy="253" r="4"/>
<circle cx="88" cy="267" r="4"/>
<circle cx="118" cy="270" r="4"/>
<circle cx="174" cy="277" r="4"/>
<circle cx="189" cy="290" r="4"/>
<circle cx="215" cy="290" r="4"/>
<circle cx="288" cy="282" r="4"/>
<circle cx="55" cy="303" r="4"/>
<circle cx="305" cy="300" r="4"/>
<circle cx="90" cy="298" r="4"/>
<circle cx="107" cy="337" r="4"/>
<circle cx="154" cy="334" r="4"/>
<circle cx="193" cy="322" r="4"/>
<circle cx="219" cy="322" r="4"/>
<circle cx="240" cy="327" r="4"/>
<circle cx="269" cy="329" r="4"/>
<circle cx="61" cy="316" r="4"/>
<circle cx="49" cy="342" r="4"/>
<circle cx="106" cy="355" r="4"/>
<circle cx="149" cy="361" r="4"/>
<circle cx="195" cy="347" r="4"/>
<circle cx="243" cy="350" r="4"/>
<circle cx="272" cy="357" r="4"/>
<circle cx="301" cy="346" r="4"/>
<circle cx="20" cy="390" r="4"/>
<circle cx="50" cy="382" r="4"/>
<circle cx="75" cy="383" r="4"/>
<circle cx="117" cy="376" r="4"/>
<circle cx="137" cy="382" r="4"/>
<circle cx="175" cy="373" r="4"/>
<circle cx="197" cy="369" r="4"/>
<circle cx="218" cy="374" r="4"/>
<circle cx="240" cy="374" r="4"/>
<circle cx="282" cy="381" r="4"/>
<circle cx="315" cy="381" r="4"/>
<circle cx="13" cy="430" r="4"/>
<circle cx="103" cy="415" r="4"/>
<circle cx="116" cy="410" r="4"/>
<circle cx="129" cy="400" r="4"/>
<circle cx="142" cy="424" r="4"/>
<circle cx="163" cy="413" r="4"/>
<circle cx="191" cy="398" r="4"/>
<circle cx="269" cy="397" r="4"/>
<circle cx="311" cy="405" r="4"/>
<circle cx="335" cy="405" r="4"/>
<circle cx="43" cy="440" r="4"/>
<circle cx="70" cy="448" r="4"/>
<circle cx="105" cy="455" r="4"/>
<circle cx="135" cy="444" r="4"/>
<circle cx="186" cy="440" r="4"/>
<circle cx="190" cy="421" r="4"/>
<circle cx="216" cy="420" r="4"/>
<circle cx="218" cy="436" r="4"/>
<circle cx="227" cy="412" r="4"/>
<circle cx="246" cy="420" r="4"/>
<circle cx="258" cy="428" r="4"/>
<circle cx="250" cy="440" r="4"/>
<circle cx="291" cy="434" r="4"/>
<circle cx="315" cy="435" r="4"/>
<circle cx="301" cy="451" r="4"/>
<circle cx="332" cy="457" r="4"/>
<circle cx="280" cy="456" r="4"/>
<circle cx="110" cy="472" r="4"/>
<circle cx="140" cy="479" r="4"/>
<circle cx="159" cy="477" r="4"/>
<circle cx="167" cy="450" r="4"/>
<circle cx="172" cy="484" r="4"/>
<circle cx="201" cy="457" r="4"/>
<circle cx="209" cy="480" r="4"/>
<circle cx="236" cy="474" r="4"/>
<circle cx="243" cy="465" r="4"/>
<circle cx="260" cy="471" r="4"/>
<circle cx="291" cy="483" r="4"/>
<circle cx="39" cy="500" r="4"/>
<circle cx="146" cy="507" r="4"/>
<circle cx="186" cy="509" r="4"/>
<circle cx="206" cy="510" r="4"/>
<circle cx="229" cy="496" r="4"/>
<circle cx="234" cy="510" r="4"/>
<circle cx="263" cy="507" r="4"/>
<circle cx="293" cy="519" r="4"/>
<circle cx="312" cy="504" r="4"/>
<circle cx="45" cy="531" r="4"/>
<circle cx="73" cy="532" r="4"/>
<circle cx="94" cy="563" r="4"/>
<circle cx="130" cy="549" r="4"/>
<circle cx="142" cy="576" r="4"/>
<circle cx="169" cy="556" r="4"/>
<circle cx="204" cy="541" r="4"/>
<circle cx="243" cy="566" r="4"/>
<circle cx="162" cy="598" r="4"/>
<circle cx="272" cy="542" r="4"/>
<circle cx="275" cy="527" r="4"/>
<circle cx="357" cy="283" r="4"/>
<circle cx="263" cy="605" r="4"/>
<circle cx="209" cy="719" r="4"/>
<circle cx="257" cy="716" r="4"/>
<circle cx="308" cy="707" r="4"/>
<circle cx="357" cy="687" r="4"/>
<circle cx="328" cy="783" r="4"/>
<circle cx="307" cy="790" r="4"/>
<circle cx="427" cy="753" r="4"/>
<circle cx="451" cy="743" r="4"/>
<circle cx="484" cy="741" r="4"/>
<circle cx="479" cy="697" r="4"/>
<circle cx="525" cy="719" r="4"/>
<circle cx="514" cy="672" r="4"/>
<circle cx="555" cy="683" r="4"/>
<circle cx="563" cy="647" r="4"/>
<circle cx="399" cy="451" r="4"/>
<circle cx="425" cy="481" r="4"/>
<circle cx="437" cy="457" r="4"/>
<circle cx="444" cy="428" r="4"/>
<circle cx="443" cy="408" r="4"/>
<circle cx="429" cy="387" r="4"/>
<circle cx="392" cy="347" r="4"/>
<circle cx="424" cy="326" r="4"/>
<circle cx="440" cy="348" r="4"/>
<circle cx="437" cy="369" r="4"/>
<circle cx="508" cy="329" r="4"/>
<circle cx="513" cy="362" r="4"/>
<circle cx="516" cy="386" r="4"/>
<circle cx="516" cy="416" r="4"/>
<circle cx="511" cy="443" r="4"/>
<circle cx="502" cy="483" r="4"/>
<circle cx="571" cy="439" r="4"/>
<circle cx="570" cy="362" r="4"/>
<circle cx="475" cy="233" r="4"/>
<circle cx="486" cy="126" r="4"/>
<circle cx="519" cy="154" r="4"/>
<circle cx="544" cy="176" r="4"/>
<circle cx="583" cy="204" r="4"/>
<circle cx="606" cy="228" r="4"/>
<circle cx="580" cy="186" r="4"/>
<circle cx="592" cy="142" r="4"/>
<circle cx="564" cy="117" r="4"/>
<circle cx="531" cy="100" r="4"/>
<circle cx="490" cy="82" r="4"/>
<circle cx="595" cy="618" r="4"/>
<circle cx="611" cy="598" r="4"/>
<circle cx="632" cy="560" r="4"/>
<circle cx="643" cy="535" r="4"/>
<circle cx="656" cy="501" r="4"/>
<circle cx="667" cy="450" r="4"/>
<circle cx="670" cy="414" r="4"/>
<circle cx="672" cy="374" r="4"/>
<circle cx="667" cy="340" r="4"/>
<circle cx="651" cy="279" r="4"/>
<circle cx="424" cy="48" r="4"/>
<circle cx="393" cy="36" r="4"/>
<circle cx="372" cy="28" r="4"/>
<circle cx="301" cy="15" r="4"/>
<circle cx="224" cy="393" r="4" fill="yellow"/>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg width="332pt" height="340pt" viewBox="0 0 332 340" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g transform="translate(4 336)">
<g style="fill:none;stroke:black;">
<path d="M145,-134C157,-140 188,-155 200,-161"/>
<path d="M168,-191C173,-204 185,-236 189,-249"/>
<path d="M170,-52C179,-43 200,-19 208,-10"/>
<path d="M189,-260C186,-274 176,-307 173,-321"/>
<path d="M195,-250C204,-239 226,-212 234,-202"/>
<path d="M214,-11C219,-24 233,-59 238,-72"/>
<path d="M232,-197C218,-195 185,-189 171,-187"/>
<path d="M235,-75C221,-72 185,-61 171,-58"/>
<path d="M240,-82C238,-96 235,-136 234,-150"/>
<path d="M243,-195C256,-189 287,-174 299,-168"/>
<path d="M245,-76C259,-74 298,-68 312,-66"/>
<path d="M48,-31C54,-43 70,-73 76,-85"/>
<path d="M73,-90C59,-89 25,-87 11,-86"/>
<path d="M84,-93C95,-101 124,-120 135,-128"/>
<path d="M9,-81C16,-70 34,-42 42,-31"/>
</g>
<g style="fill:blue;stroke:black;">
<circle cx="140" cy="-131" r="5.4"/>
<circle cx="166" cy="-186" r="5.4"/>
<circle cx="166" cy="-56" r="5.4"/>
<circle cx="171" cy="-326" r="5.4"/>
<circle cx="191" cy="-254" r="5.4"/>
<circle cx="205" cy="-163" r="5.4"/>
<circle cx="212" cy="-6" r="5.4"/>
<circle cx="234" cy="-156" r="5.4"/>
<circle cx="238" cy="-198" r="5.4"/>
<circle cx="240" cy="-77" r="5.4"/>
<circle cx="304" cy="-166" r="5.4"/>
<circle cx="318" cy="-65" r="5.4"/>
<circle cx="45" cy="-26" r="5.4"/>
<circle cx="6" cy="-86" r="5.4"/>
<circle cx="79" cy="-90" r="5.4"/>
</g>
</g>
</svg>
\ No newline at end of file
<svg width="201mm" height="95mm" version="1.1" viewBox="0 0 201 95" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="201" height="95" fill="#fff"/>
<g transform="translate(-3-3)" stroke-width="1.5" stroke="#000">
<path d="m103.3 61c-56.6 .4-56.2 34.2 0 34 56.2 0 56.6-33.7 0-34z" fill="#eef" stroke-dasharray="1.5"/>
<g id="c"><path d="m6 5.7 0 89.3c46-.4 86-55.8 85.8-89.3z" fill="#eef" stroke-dasharray="1.5"/><g fill="#fff"><circle cx="18" cy="21.6" r="9.4"/><circle cx="74.6" cy="78" r="9.4"/><circle cx="74.6" cy="21.6" r="9.4"/><circle cx="18" cy="78.2" r="9.4"/></g>
<use transform="rotate(90 74.6 78.2)" xlink:href="#a"/><path d="m27.4 78.2h29.5"/>
<path id="a" d="m50.3 71.5 3.3 6.7-3.3 6.7 13.4-6.7z" stroke="none" fill="#000"/><path d="m74.6 31 0 29.6"/></g>
<use transform="translate(0-56.6)" xlink:href="#a"/><use transform="rotate(-90 17.5 77.6)" xlink:href="#a"/><use transform="rotate(135 46 66.8)" xlink:href="#a"/><use transform="matrix(-1 0 0 1 207 0)" xlink:href="#c"/><use transform="translate(57.8-56.6)" xlink:href="#a"/>
<g id="b" fill="none"><use transform="rotate(133 74.8 82)" stroke="none" xlink:href="#a"/><path d="m88.7 72.7c8-8.7 19.2-10 34.3 5.5"/>
<g transform="rotate(180 104 77.4)"><use transform="rotate(133.4 74.8 82)" stroke="none" xlink:href="#a"/><path d="m88.6 73c9-10.3 17.7-9.7 34.4 5"/></g></g>
<use transform="translate(56.4-55)" xlink:href="#b"/><use transform="rotate(-90 131.8 22.2)" xlink:href="#b"/>
<g fill="none"><path d="m27.4 21.6 29.5 0"/><path d="m18 69v-30.7"/><path d="m68 28.4-38.5 38"/><path d="m84 21.6h30.8"/></g>
<g style="font-family:'Arial';-inkscape-font-specification:'Arial'" font-weight="bold" text-anchor="middle" font-size="12px" stroke="none"><text x="18" y="24.7">a</text><text x="74.4" y="26">b</text><text x="132" y="24.7">c</text><text x="189" y="24.7">d</text><text x="18" y="81.3">e</text>
<text x="74.3" y="82.6">f</text><text x="132.5" y="80">g</text><text x="188.8" y="82.5">h</text></g></g></svg>
\ No newline at end of file
slides/figs/dijkstra_0.png

53.6 KiB

slides/figs/dijkstra_1.png

60.1 KiB

slides/figs/dijkstra_2.png

71.2 KiB